{
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
  "name": "@agence-adeliom/awc",
  "version": "2.0.0",
  "description-markup": "markdown",
  "contributions": {
    "html": {
      "elements": [
        {
          "name": "awc-alert",
          "description": "Alerts are used to display important messages inline or as toast notifications.\n---\n\n\n### **Events:**\n - **awc-show** - Emitted when the alert opens.\n- **awc-after-show** - Emitted after the alert opens and all animations are complete.\n- **awc-hide** - Emitted when the alert closes.\n- **awc-after-hide** - Emitted after the alert closes and all animations are complete.\n\n### **Methods:**\n - **show()** - Shows the alert.\n- **hide()** - Hides the alert\n- **toast()** - Displays the alert as a toast notification. This will move the alert out of its position in the DOM and, when\ndismissed, it will be removed from the DOM completely. By storing a reference to the alert, you can reuse it by\ncalling this method again. The returned promise will resolve after the alert is hidden.\n\n### **Slots:**\n - _default_ - The alert's main content.\n- **icon** - An icon to show in the alert. Works best with `<awc-icon>`.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **icon** - The container that wraps the optional icon.\n- **message** - The container that wraps the alert's main content.\n- **close-button** - The close button, an `<awc-icon-button>`.\n- **close-button__base** - The close button's exported `base` part.",
          "doc-url": "",
          "attributes": [
            {
              "name": "open",
              "description": "Indicates whether or not the alert is open. You can toggle this attribute to show and hide the alert, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the alert's open state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "closable",
              "description": "Enables a close button that allows the user to dismiss the alert.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "variant",
              "description": "The alert's theme variant.",
              "value": {
                "type": "| 'primary'\n    | 'secondary'\n    | 'tertiary'\n    | 'success'\n    | 'neutral'\n    | 'warning'\n    | 'danger'",
                "default": "'primary'"
              }
            },
            {
              "name": "duration",
              "description": "The length of time, in milliseconds, the alert will show before closing itself. If the user interacts with\nthe alert before it closes (e.g. moves the mouse over it), the timer will restart. Defaults to `Infinity`, meaning\nthe alert will not close on its own.",
              "value": { "type": "string", "default": "Infinity" }
            }
          ],
          "slots": [
            { "name": "", "description": "The alert's main content." },
            {
              "name": "icon",
              "description": "An icon to show in the alert. Works best with `<awc-icon>`."
            }
          ],
          "events": [
            {
              "name": "awc-show",
              "description": "Emitted when the alert opens."
            },
            {
              "name": "awc-after-show",
              "description": "Emitted after the alert opens and all animations are complete."
            },
            {
              "name": "awc-hide",
              "description": "Emitted when the alert closes."
            },
            {
              "name": "awc-after-hide",
              "description": "Emitted after the alert closes and all animations are complete."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "open",
                "description": "Indicates whether or not the alert is open. You can toggle this attribute to show and hide the alert, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the alert's open state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "closable",
                "description": "Enables a close button that allows the user to dismiss the alert.",
                "value": { "type": "boolean" }
              },
              {
                "name": "variant",
                "description": "The alert's theme variant.",
                "value": {
                  "type": "| 'primary'\n    | 'secondary'\n    | 'tertiary'\n    | 'success'\n    | 'neutral'\n    | 'warning'\n    | 'danger'"
                }
              },
              {
                "name": "duration",
                "description": "The length of time, in milliseconds, the alert will show before closing itself. If the user interacts with\nthe alert before it closes (e.g. moves the mouse over it), the timer will restart. Defaults to `Infinity`, meaning\nthe alert will not close on its own.",
                "value": {}
              }
            ],
            "events": [
              {
                "name": "awc-show",
                "description": "Emitted when the alert opens."
              },
              {
                "name": "awc-after-show",
                "description": "Emitted after the alert opens and all animations are complete."
              },
              {
                "name": "awc-hide",
                "description": "Emitted when the alert closes."
              },
              {
                "name": "awc-after-hide",
                "description": "Emitted after the alert closes and all animations are complete."
              }
            ]
          }
        },
        {
          "name": "awc-animated-image",
          "description": "A component for displaying animated GIFs and WEBPs that play and pause on interaction.\n---\n\n\n### **Events:**\n - **awc-load** - Emitted when the image loads successfully.\n- **awc-error** - Emitted when the image fails to load.\n\n### **Slots:**\n - **play-icon** - Optional play icon to use instead of the default. Works best with `<awc-icon>`.\n- **pause-icon** - Optional pause icon to use instead of the default. Works best with `<awc-icon>`.\n\n### **CSS Properties:**\n - **--control-box-size** - The size of the icon box. _(default: undefined)_\n- **--icon-size** - The size of the play/pause icons. _(default: undefined)_\n\n### **CSS Parts:**\n - **control-box** - The container that surrounds the pause/play icons and provides their background.",
          "doc-url": "",
          "attributes": [
            {
              "name": "src",
              "description": "The path to the image to load.",
              "value": { "type": "string" }
            },
            {
              "name": "alt",
              "description": "A description of the image used by assistive devices.",
              "value": { "type": "string" }
            },
            {
              "name": "play",
              "description": "Plays the animation. When this attribute is remove, the animation will pause.",
              "value": { "type": "boolean" }
            }
          ],
          "slots": [
            {
              "name": "play-icon",
              "description": "Optional play icon to use instead of the default. Works best with `<awc-icon>`."
            },
            {
              "name": "pause-icon",
              "description": "Optional pause icon to use instead of the default. Works best with `<awc-icon>`."
            }
          ],
          "events": [
            {
              "name": "awc-load",
              "description": "Emitted when the image loads successfully."
            },
            {
              "name": "awc-error",
              "description": "Emitted when the image fails to load."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "src",
                "description": "The path to the image to load.",
                "value": { "type": "string" }
              },
              {
                "name": "alt",
                "description": "A description of the image used by assistive devices.",
                "value": { "type": "string" }
              },
              {
                "name": "play",
                "description": "Plays the animation. When this attribute is remove, the animation will pause.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-load",
                "description": "Emitted when the image loads successfully."
              },
              {
                "name": "awc-error",
                "description": "Emitted when the image fails to load."
              }
            ]
          }
        },
        {
          "name": "awc-animation",
          "description": "Animate elements declaratively with nearly 100 baked-in presets, or roll your own with custom keyframes. Powered by the [Web Animations API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API).\n---\n\n\n### **Events:**\n - **awc-cancel** - Emitted when the animation is canceled.\n- **awc-finish** - Emitted when the animation finishes.\n- **awc-start** - Emitted when the animation starts or restarts.\n\n### **Methods:**\n - **cancel()** - Clears all keyframe effects caused by this animation and aborts its playback.\n- **finish()** - Sets the playback time to the end of the animation corresponding to the current playback direction.\n\n### **Slots:**\n - _default_ - The element to animate. Avoid slotting in more than one element, as subsequent ones will be ignored. To animate multiple elements, either wrap them in a single container or use multiple `<awc-animation>` elements.",
          "doc-url": "",
          "attributes": [
            {
              "name": "name",
              "description": "The name of the built-in animation to use. For custom animations, use the `keyframes` prop.",
              "value": { "type": "string", "default": "'none'" }
            },
            {
              "name": "play",
              "description": "Plays the animation. When omitted, the animation will be paused. This attribute will be automatically removed when\nthe animation finishes or gets canceled.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "delay",
              "description": "The number of milliseconds to delay the start of the animation.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "direction",
              "description": "Determines the direction of playback as well as the behavior when reaching the end of an iteration.\n[Learn more](https://developer.mozilla.org/en-US/docs/Web/CSS/animation-direction)",
              "value": { "type": "PlaybackDirection", "default": "'normal'" }
            },
            {
              "name": "duration",
              "description": "The number of milliseconds each iteration of the animation takes to complete.",
              "value": { "type": "number", "default": "1000" }
            },
            {
              "name": "easing",
              "description": "The easing function to use for the animation. This can be a AWC easing function or a custom easing function\nsuch as `cubic-bezier(0, 1, .76, 1.14)`.",
              "value": { "type": "string", "default": "'linear'" }
            },
            {
              "name": "end-delay",
              "description": "The number of milliseconds to delay after the active period of an animation sequence.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "fill",
              "description": "Sets how the animation applies styles to its target before and after its execution.",
              "value": { "type": "FillMode", "default": "'auto'" }
            },
            {
              "name": "iterations",
              "description": "The number of iterations to run before the animation completes. Defaults to `Infinity`, which loops.",
              "value": { "type": "string", "default": "Infinity" }
            },
            {
              "name": "iteration-start",
              "description": "The offset at which to start the animation, usually between 0 (start) and 1 (end).",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "playback-rate",
              "description": "Sets the animation's playback rate. The default is `1`, which plays the animation at a normal speed. Setting this\nto `2`, for example, will double the animation's speed. A negative value can be used to reverse the animation. This\nvalue can be changed without causing the animation to restart.",
              "value": { "type": "number", "default": "1" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "The element to animate. Avoid slotting in more than one element, as subsequent ones will be ignored. To animate multiple elements, either wrap them in a single container or use multiple `<awc-animation>` elements."
            }
          ],
          "events": [
            {
              "name": "awc-cancel",
              "description": "Emitted when the animation is canceled."
            },
            {
              "name": "awc-finish",
              "description": "Emitted when the animation finishes."
            },
            {
              "name": "awc-start",
              "description": "Emitted when the animation starts or restarts."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "name",
                "description": "The name of the built-in animation to use. For custom animations, use the `keyframes` prop.",
                "value": { "type": "string" }
              },
              {
                "name": "play",
                "description": "Plays the animation. When omitted, the animation will be paused. This attribute will be automatically removed when\nthe animation finishes or gets canceled.",
                "value": { "type": "boolean" }
              },
              {
                "name": "delay",
                "description": "The number of milliseconds to delay the start of the animation.",
                "value": { "type": "number" }
              },
              {
                "name": "direction",
                "description": "Determines the direction of playback as well as the behavior when reaching the end of an iteration.\n[Learn more](https://developer.mozilla.org/en-US/docs/Web/CSS/animation-direction)",
                "value": { "type": "PlaybackDirection" }
              },
              {
                "name": "duration",
                "description": "The number of milliseconds each iteration of the animation takes to complete.",
                "value": { "type": "number" }
              },
              {
                "name": "easing",
                "description": "The easing function to use for the animation. This can be a AWC easing function or a custom easing function\nsuch as `cubic-bezier(0, 1, .76, 1.14)`.",
                "value": { "type": "string" }
              },
              {
                "name": "end-delay",
                "description": "The number of milliseconds to delay after the active period of an animation sequence.",
                "value": { "type": "number" }
              },
              {
                "name": "fill",
                "description": "Sets how the animation applies styles to its target before and after its execution.",
                "value": { "type": "FillMode" }
              },
              {
                "name": "iterations",
                "description": "The number of iterations to run before the animation completes. Defaults to `Infinity`, which loops.",
                "value": {}
              },
              {
                "name": "iteration-start",
                "description": "The offset at which to start the animation, usually between 0 (start) and 1 (end).",
                "value": { "type": "number" }
              },
              {
                "name": "playback-rate",
                "description": "Sets the animation's playback rate. The default is `1`, which plays the animation at a normal speed. Setting this\nto `2`, for example, will double the animation's speed. A negative value can be used to reverse the animation. This\nvalue can be changed without causing the animation to restart.",
                "value": { "type": "number" }
              }
            ],
            "events": [
              {
                "name": "awc-cancel",
                "description": "Emitted when the animation is canceled."
              },
              {
                "name": "awc-finish",
                "description": "Emitted when the animation finishes."
              },
              {
                "name": "awc-start",
                "description": "Emitted when the animation starts or restarts."
              }
            ]
          }
        },
        {
          "name": "awc-avatar",
          "description": "Avatars are used to represent a person or object.\n---\n\n\n### **Slots:**\n - **icon** - The default icon to use when no image or initials are present. Works best with `<awc-icon>`.\n\n### **CSS Properties:**\n - **--size** - The size of the avatar. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **icon** - The container that wraps the avatar's icon.\n- **initials** - The container that wraps the avatar's initials.\n- **image** - The avatar image. Only shown when the `image` attribute is set.",
          "doc-url": "",
          "attributes": [
            {
              "name": "image",
              "description": "The image source to use for the avatar.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "label",
              "description": "A label to use to describe the avatar to assistive devices.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "initials",
              "description": "Initials to use as a fallback when no image is available (1-2 characters max recommended).",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "loading",
              "description": "Indicates how the browser should load the image.",
              "value": { "type": "'eager' | 'lazy'", "default": "'eager'" }
            },
            {
              "name": "shape",
              "description": "The shape of the avatar.",
              "value": {
                "type": "'circle' | 'square' | 'rounded'",
                "default": "'circle'"
              }
            }
          ],
          "slots": [
            {
              "name": "icon",
              "description": "The default icon to use when no image or initials are present. Works best with `<awc-icon>`."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "image",
                "description": "The image source to use for the avatar.",
                "value": { "type": "string" }
              },
              {
                "name": "label",
                "description": "A label to use to describe the avatar to assistive devices.",
                "value": { "type": "string" }
              },
              {
                "name": "initials",
                "description": "Initials to use as a fallback when no image is available (1-2 characters max recommended).",
                "value": { "type": "string" }
              },
              {
                "name": "loading",
                "description": "Indicates how the browser should load the image.",
                "value": { "type": "'eager' | 'lazy'" }
              },
              {
                "name": "shape",
                "description": "The shape of the avatar.",
                "value": { "type": "'circle' | 'square' | 'rounded'" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-badge",
          "description": "Badges are used to draw attention and display statuses or counts.\n---\n\n\n### **Slots:**\n - _default_ - The badge's content.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
          "doc-url": "",
          "attributes": [
            {
              "name": "variant",
              "description": "The badge's theme variant.",
              "value": {
                "type": "| 'primary'\n    | 'secondary'\n    | 'tertiary'\n    | 'success'\n    | 'neutral'\n    | 'warning'\n    | 'danger'",
                "default": "'primary'"
              }
            },
            {
              "name": "pill",
              "description": "Draws a pill-style badge with rounded edges.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "pulse",
              "description": "Makes the badge pulsate to draw attention.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [{ "name": "", "description": "The badge's content." }],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "variant",
                "description": "The badge's theme variant.",
                "value": {
                  "type": "| 'primary'\n    | 'secondary'\n    | 'tertiary'\n    | 'success'\n    | 'neutral'\n    | 'warning'\n    | 'danger'"
                }
              },
              {
                "name": "pill",
                "description": "Draws a pill-style badge with rounded edges.",
                "value": { "type": "boolean" }
              },
              {
                "name": "pulse",
                "description": "Makes the badge pulsate to draw attention.",
                "value": { "type": "boolean" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-breadcrumb",
          "description": "Breadcrumbs provide a group of links so users can easily navigate a website's hierarchy.\n---\n\n\n### **Slots:**\n - _default_ - One or more breadcrumb items to display.\n- **separator** - The separator to use between breadcrumb items. Works best with `<awc-icon>`.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
          "doc-url": "",
          "attributes": [
            {
              "name": "label",
              "description": "The label to use for the breadcrumb control. This will not be shown on the screen, but it will be announced by\nscreen readers and other assistive devices to provide more context for users.",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "One or more breadcrumb items to display."
            },
            {
              "name": "separator",
              "description": "The separator to use between breadcrumb items. Works best with `<awc-icon>`."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "label",
                "description": "The label to use for the breadcrumb control. This will not be shown on the screen, but it will be announced by\nscreen readers and other assistive devices to provide more context for users.",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-breadcrumb-item",
          "description": "Breadcrumb Items are used inside [breadcrumbs](?path=/docs/components-breadcrumb--documentation) to represent different links.\n---\n\n\n### **Slots:**\n - _default_ - The breadcrumb item's label.\n- **prefix** - An optional prefix, usually an icon or icon button.\n- **suffix** - An optional suffix, usually an icon or icon button.\n- **separator** - The separator to use for the breadcrumb item. This will only change the separator for this item. If you want to change it for all items in the group, set the separator on `<awc-breadcrumb>` instead.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **label** - The breadcrumb item's label.\n- **prefix** - The container that wraps the prefix.\n- **suffix** - The container that wraps the suffix.\n- **separator** - The container that wraps the separator.",
          "doc-url": "",
          "attributes": [
            {
              "name": "href",
              "description": "Optional URL to direct the user to when the breadcrumb item is activated. When set, a link will be rendered\ninternally. When unset, a button will be rendered instead.",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "target",
              "description": "Tells the browser where to open the link. Only used when `href` is set.",
              "value": {
                "type": "'_blank' | '_parent' | '_self' | '_top' | undefined"
              }
            },
            {
              "name": "rel",
              "description": "The `rel` attribute to use on the link. Only used when `href` is set.",
              "value": { "type": "string", "default": "'noreferrer noopener'" }
            }
          ],
          "slots": [
            { "name": "", "description": "The breadcrumb item's label." },
            {
              "name": "prefix",
              "description": "An optional prefix, usually an icon or icon button."
            },
            {
              "name": "suffix",
              "description": "An optional suffix, usually an icon or icon button."
            },
            {
              "name": "separator",
              "description": "The separator to use for the breadcrumb item. This will only change the separator for this item. If you want to change it for all items in the group, set the separator on `<awc-breadcrumb>` instead."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "href",
                "description": "Optional URL to direct the user to when the breadcrumb item is activated. When set, a link will be rendered\ninternally. When unset, a button will be rendered instead.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "target",
                "description": "Tells the browser where to open the link. Only used when `href` is set.",
                "value": {
                  "type": "'_blank' | '_parent' | '_self' | '_top' | undefined"
                }
              },
              {
                "name": "rel",
                "description": "The `rel` attribute to use on the link. Only used when `href` is set.",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-button",
          "description": "Buttons represent actions that are available to the user.\n---\n\n\n### **Events:**\n - **awc-blur** - Emitted when the button loses focus.\n- **awc-focus** - Emitted when the button gains focus.\n- **awc-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n\n### **Methods:**\n - **click()** - Simulates a click on the button.\n- **focus(options: _FocusOptions_)** - Sets focus on the button.\n- **blur()** - Removes focus from the button.\n- **checkValidity()** - Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity()** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message: _string_)** - Sets a custom validation message. Pass an empty string to restore validity.\n\n### **Slots:**\n - _default_ - The button's label.\n- **prefix** - A presentational prefix icon or similar element.\n- **suffix** - A presentational suffix icon or similar element.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **prefix** - The container that wraps the prefix.\n- **label** - The button's label.\n- **suffix** - The container that wraps the suffix.\n- **caret** - The button's caret icon, an `<awc-icon>` element.\n- **spinner** - The spinner that shows when the button is in the loading state.",
          "doc-url": "",
          "attributes": [
            { "name": "title", "value": { "type": "string", "default": "''" } },
            {
              "name": "variant",
              "description": "The button's theme variant.",
              "value": {
                "type": "| 'default'\n    | 'primary'\n    | 'secondary'\n    | 'tertiary'\n    | 'success'\n    | 'neutral'\n    | 'warning'\n    | 'danger'\n    | 'ghost'\n    | 'text'\n    | 'link'",
                "default": "'default'"
              }
            },
            {
              "name": "size",
              "description": "The button's size.",
              "value": {
                "type": "'small' | 'medium' | 'large'",
                "default": "'medium'"
              }
            },
            {
              "name": "caret",
              "description": "Draws the button with a caret. Used to indicate that the button triggers a dropdown menu or similar behavior.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "Disables the button.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "loading",
              "description": "Draws the button in a loading state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "outline",
              "description": "Draws an outlined button.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "colored",
              "description": "Draws an colored button.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "pill",
              "description": "Draws a pill-style button with rounded edges.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "icon",
              "description": "Draws a icon button with the corresponding shape. When this attribute is present, the button expects a single `<awc-icon>` in the\ndefault slot.",
              "value": {
                "type": "'circle' | 'square' | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "type",
              "description": "The type of button. Note that the default value is `button` instead of `submit`, which is opposite of how native\n`<button>` elements behave. When the type is `submit`, the button will submit the surrounding form.",
              "value": {
                "type": "'button' | 'submit' | 'reset'",
                "default": "'button'"
              }
            },
            {
              "name": "name",
              "description": "The name of the button, submitted as a name/value pair with form data, but only when this button is the submitter.\nThis attribute is ignored when `href` is present.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "value",
              "description": "The value of the button, submitted as a pair with the button's name as part of the form data, but only when this\nbutton is the submitter. This attribute is ignored when `href` is present.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "href",
              "description": "When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "target",
              "description": "Tells the browser where to open the link. Only used when `href` is present.",
              "value": { "type": "'_blank' | '_parent' | '_self' | '_top'" }
            },
            {
              "name": "rel",
              "description": "When using `href`, this attribute will map to the underlying link's `rel` attribute. Unlike regular links, the\ndefault is `noreferrer noopener` to prevent security exploits. However, if you're using `target` to point to a\nspecific tab/window, this will prevent that from working correctly. You can remove or change the default value by\nsetting the attribute to an empty string or a value of your choice, respectively.",
              "value": { "type": "string", "default": "'noreferrer noopener'" }
            },
            {
              "name": "download",
              "description": "Tells the browser to download the linked file as this filename. Only used when `href` is present.",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "form",
              "description": "The \"form owner\" to associate the button with. If omitted, the closest containing form will be used instead. The\nvalue of this attribute must be an id of a form in the same document or shadow root as the button.",
              "value": { "type": "string" }
            },
            {
              "name": "formaction",
              "description": "Used to override the form owner's `action` attribute.",
              "value": { "type": "string" }
            },
            {
              "name": "formenctype",
              "description": "Used to override the form owner's `enctype` attribute.",
              "value": {
                "type": "'application/x-www-form-urlencoded' | 'multipart/form-data' | 'text/plain'"
              }
            },
            {
              "name": "formmethod",
              "description": "Used to override the form owner's `method` attribute.",
              "value": { "type": "'post' | 'get'" }
            },
            {
              "name": "formnovalidate",
              "description": "Used to override the form owner's `novalidate` attribute.",
              "value": { "type": "boolean" }
            },
            {
              "name": "formtarget",
              "description": "Used to override the form owner's `target` attribute.",
              "value": {
                "type": "'_self' | '_blank' | '_parent' | '_top' | string"
              }
            }
          ],
          "slots": [
            { "name": "", "description": "The button's label." },
            {
              "name": "prefix",
              "description": "A presentational prefix icon or similar element."
            },
            {
              "name": "suffix",
              "description": "A presentational suffix icon or similar element."
            }
          ],
          "events": [
            {
              "name": "awc-blur",
              "description": "Emitted when the button loses focus."
            },
            {
              "name": "awc-focus",
              "description": "Emitted when the button gains focus."
            },
            {
              "name": "awc-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              { "name": "title", "value": { "type": "string" } },
              {
                "name": "variant",
                "description": "The button's theme variant.",
                "value": {
                  "type": "| 'default'\n    | 'primary'\n    | 'secondary'\n    | 'tertiary'\n    | 'success'\n    | 'neutral'\n    | 'warning'\n    | 'danger'\n    | 'ghost'\n    | 'text'\n    | 'link'"
                }
              },
              {
                "name": "size",
                "description": "The button's size.",
                "value": { "type": "'small' | 'medium' | 'large'" }
              },
              {
                "name": "caret",
                "description": "Draws the button with a caret. Used to indicate that the button triggers a dropdown menu or similar behavior.",
                "value": { "type": "boolean" }
              },
              {
                "name": "disabled",
                "description": "Disables the button.",
                "value": { "type": "boolean" }
              },
              {
                "name": "loading",
                "description": "Draws the button in a loading state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "outline",
                "description": "Draws an outlined button.",
                "value": { "type": "boolean" }
              },
              {
                "name": "colored",
                "description": "Draws an colored button.",
                "value": { "type": "boolean" }
              },
              {
                "name": "pill",
                "description": "Draws a pill-style button with rounded edges.",
                "value": { "type": "boolean" }
              },
              {
                "name": "icon",
                "description": "Draws a icon button with the corresponding shape. When this attribute is present, the button expects a single `<awc-icon>` in the\ndefault slot.",
                "value": { "type": "'circle' | 'square' | undefined" }
              },
              {
                "name": "type",
                "description": "The type of button. Note that the default value is `button` instead of `submit`, which is opposite of how native\n`<button>` elements behave. When the type is `submit`, the button will submit the surrounding form.",
                "value": { "type": "'button' | 'submit' | 'reset'" }
              },
              {
                "name": "name",
                "description": "The name of the button, submitted as a name/value pair with form data, but only when this button is the submitter.\nThis attribute is ignored when `href` is present.",
                "value": { "type": "string" }
              },
              {
                "name": "value",
                "description": "The value of the button, submitted as a pair with the button's name as part of the form data, but only when this\nbutton is the submitter. This attribute is ignored when `href` is present.",
                "value": { "type": "string" }
              },
              {
                "name": "href",
                "description": "When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.",
                "value": { "type": "string" }
              },
              {
                "name": "target",
                "description": "Tells the browser where to open the link. Only used when `href` is present.",
                "value": { "type": "'_blank' | '_parent' | '_self' | '_top'" }
              },
              {
                "name": "rel",
                "description": "When using `href`, this attribute will map to the underlying link's `rel` attribute. Unlike regular links, the\ndefault is `noreferrer noopener` to prevent security exploits. However, if you're using `target` to point to a\nspecific tab/window, this will prevent that from working correctly. You can remove or change the default value by\nsetting the attribute to an empty string or a value of your choice, respectively.",
                "value": { "type": "string" }
              },
              {
                "name": "download",
                "description": "Tells the browser to download the linked file as this filename. Only used when `href` is present.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "form",
                "description": "The \"form owner\" to associate the button with. If omitted, the closest containing form will be used instead. The\nvalue of this attribute must be an id of a form in the same document or shadow root as the button.",
                "value": { "type": "string" }
              },
              {
                "name": "formaction",
                "description": "Used to override the form owner's `action` attribute.",
                "value": { "type": "string" }
              },
              {
                "name": "formenctype",
                "description": "Used to override the form owner's `enctype` attribute.",
                "value": {
                  "type": "'application/x-www-form-urlencoded' | 'multipart/form-data' | 'text/plain'"
                }
              },
              {
                "name": "formmethod",
                "description": "Used to override the form owner's `method` attribute.",
                "value": { "type": "'post' | 'get'" }
              },
              {
                "name": "formnovalidate",
                "description": "Used to override the form owner's `novalidate` attribute.",
                "value": { "type": "boolean" }
              },
              {
                "name": "formtarget",
                "description": "Used to override the form owner's `target` attribute.",
                "value": {
                  "type": "'_self' | '_blank' | '_parent' | '_top' | string"
                }
              }
            ],
            "events": [
              {
                "name": "awc-blur",
                "description": "Emitted when the button loses focus."
              },
              {
                "name": "awc-focus",
                "description": "Emitted when the button gains focus."
              },
              {
                "name": "awc-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "awc-button-group",
          "description": "Button groups can be used to group related buttons into sections.\n---\n\n\n### **Slots:**\n - _default_ - One or more `<awc-button>` elements to display in the button group.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
          "doc-url": "",
          "attributes": [
            {
              "name": "label",
              "description": "A label to use for the button group. This won't be displayed on the screen, but it will be announced by assistive\ndevices when interacting with the control and is strongly recommended.",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "One or more `<awc-button>` elements to display in the button group."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "label",
                "description": "A label to use for the button group. This won't be displayed on the screen, but it will be announced by assistive\ndevices when interacting with the control and is strongly recommended.",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-card",
          "description": "Cards can be used to group related subjects in a container.\n---\n\n\n### **Slots:**\n - _default_ - The card's main content.\n- **header** - An optional header for the card.\n- **footer** - An optional footer for the card.\n- **image** - An optional image to render at the start of the card.\n\n### **CSS Properties:**\n - **--border-color** - The card's border color, including borders that occur inside the card. _(default: undefined)_\n- **--border-radius** - The border radius for the card's edges. _(default: undefined)_\n- **--border-width** - The width of the card's borders. _(default: undefined)_\n- **--padding** - The padding to use for the card's sections. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **image** - The container that wraps the card's image.\n- **header** - The container that wraps the card's header.\n- **body** - The container that wraps the card's main content.\n- **footer** - The container that wraps the card's footer.",
          "doc-url": "",
          "attributes": [
            {
              "name": "bordered",
              "description": "Indicates if card has border.",
              "value": { "type": "boolean | undefined", "default": "false" }
            },
            {
              "name": "shadow",
              "description": "Indicates if card has shadow.",
              "value": { "type": "boolean | undefined", "default": "false" }
            },
            {
              "name": "horizontal",
              "description": "Indicates if card is horizontal.",
              "value": { "type": "boolean | undefined", "default": "false" }
            },
            {
              "name": "inner",
              "description": "Indicates if card is inner.",
              "value": { "type": "boolean | undefined", "default": "false" }
            },
            {
              "name": "href",
              "description": "When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "target",
              "description": "Tells the browser where to open the link. Only used when `href` is present.",
              "value": { "type": "'_blank' | '_parent' | '_self' | '_top'" }
            },
            {
              "name": "rel",
              "description": "When using `href`, this attribute will map to the underlying link's `rel` attribute. Unlike regular links, the\ndefault is `noreferrer noopener` to prevent security exploits. However, if you're using `target` to point to a\nspecific tab/window, this will prevent that from working correctly. You can remove or change the default value by\nsetting the attribute to an empty string or a value of your choice, respectively.",
              "value": { "type": "string", "default": "'noreferrer noopener'" }
            },
            {
              "name": "download",
              "description": "Tells the browser to download the linked file as this filename. Only used when `href` is present.",
              "value": { "type": "string | undefined" }
            }
          ],
          "slots": [
            { "name": "", "description": "The card's main content." },
            {
              "name": "header",
              "description": "An optional header for the card."
            },
            {
              "name": "footer",
              "description": "An optional footer for the card."
            },
            {
              "name": "image",
              "description": "An optional image to render at the start of the card."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "bordered",
                "description": "Indicates if card has border.",
                "value": { "type": "boolean | undefined" }
              },
              {
                "name": "shadow",
                "description": "Indicates if card has shadow.",
                "value": { "type": "boolean | undefined" }
              },
              {
                "name": "horizontal",
                "description": "Indicates if card is horizontal.",
                "value": { "type": "boolean | undefined" }
              },
              {
                "name": "inner",
                "description": "Indicates if card is inner.",
                "value": { "type": "boolean | undefined" }
              },
              {
                "name": "href",
                "description": "When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.",
                "value": { "type": "string" }
              },
              {
                "name": "target",
                "description": "Tells the browser where to open the link. Only used when `href` is present.",
                "value": { "type": "'_blank' | '_parent' | '_self' | '_top'" }
              },
              {
                "name": "rel",
                "description": "When using `href`, this attribute will map to the underlying link's `rel` attribute. Unlike regular links, the\ndefault is `noreferrer noopener` to prevent security exploits. However, if you're using `target` to point to a\nspecific tab/window, this will prevent that from working correctly. You can remove or change the default value by\nsetting the attribute to an empty string or a value of your choice, respectively.",
                "value": { "type": "string" }
              },
              {
                "name": "download",
                "description": "Tells the browser to download the linked file as this filename. Only used when `href` is present.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-checkbox",
          "description": "Checkboxes allow the user to toggle an option on or off.\n---\n\n\n### **Events:**\n - **awc-blur** - Emitted when the checkbox loses focus.\n- **awc-change** - Emitted when the checked state changes.\n- **awc-focus** - Emitted when the checkbox gains focus.\n- **awc-input** - Emitted when the checkbox receives input.\n- **awc-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n\n### **Methods:**\n - **click()** - Simulates a click on the checkbox.\n- **focus(options: _FocusOptions_)** - Sets focus on the checkbox.\n- **blur()** - Removes focus from the checkbox.\n- **checkValidity()** - Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity()** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message: _string_)** - Sets a custom validation message. The value provided will be shown to the user when the form is submitted. To clear\nthe custom validation message, call this method with an empty string.\n\n### **Slots:**\n - _default_ - The checkbox's label.\n- **help-text** - Text that describes how to use the checkbox. Alternatively, you can use the `help-text` attribute.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **control** - The square container that wraps the checkbox's checked state.\n- **control--checked** - Matches the control part when the checkbox is checked.\n- **control--indeterminate** - Matches the control part when the checkbox is indeterminate.\n- **checked-icon** - The checked icon, an `<awc-icon>` element.\n- **indeterminate-icon** - The indeterminate icon, an `<awc-icon>` element.\n- **label** - The container that wraps the checkbox's label.\n- **form-control-help-text** - The help text's wrapper.",
          "doc-url": "",
          "attributes": [
            {
              "name": "type",
              "value": { "type": "string", "default": "'checkbox'" }
            },
            { "name": "title", "value": { "type": "string", "default": "''" } },
            {
              "name": "name",
              "description": "The name of the checkbox, submitted as a name/value pair with form data.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "value",
              "description": "The current value of the checkbox, submitted as a name/value pair with form data.",
              "value": { "type": "string" }
            },
            {
              "name": "size",
              "description": "The checkbox's size.",
              "value": {
                "type": "'small' | 'medium' | 'large'",
                "default": "'medium'"
              }
            },
            {
              "name": "disabled",
              "description": "Disables the checkbox.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "checked",
              "description": "Draws the checkbox in a checked state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "indeterminate",
              "description": "Draws the checkbox in an indeterminate state. This is usually applied to checkboxes that represents a \"select\nall/none\" behavior when associated checkboxes have a mix of checked and unchecked states.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "form",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "required",
              "description": "Makes the checkbox a required field.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "help-text",
              "description": "The checkbox's help text. If you need to display HTML, use the `help-text` slot instead.",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "slots": [
            { "name": "", "description": "The checkbox's label." },
            {
              "name": "help-text",
              "description": "Text that describes how to use the checkbox. Alternatively, you can use the `help-text` attribute."
            }
          ],
          "events": [
            {
              "name": "awc-blur",
              "description": "Emitted when the checkbox loses focus."
            },
            {
              "name": "awc-change",
              "description": "Emitted when the checked state changes."
            },
            {
              "name": "awc-focus",
              "description": "Emitted when the checkbox gains focus."
            },
            {
              "name": "awc-input",
              "description": "Emitted when the checkbox receives input."
            },
            {
              "name": "awc-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              { "name": "type", "value": { "type": "string" } },
              { "name": "title", "value": { "type": "string" } },
              {
                "name": "name",
                "description": "The name of the checkbox, submitted as a name/value pair with form data.",
                "value": { "type": "string" }
              },
              {
                "name": "value",
                "description": "The current value of the checkbox, submitted as a name/value pair with form data.",
                "value": { "type": "string" }
              },
              {
                "name": "size",
                "description": "The checkbox's size.",
                "value": { "type": "'small' | 'medium' | 'large'" }
              },
              {
                "name": "disabled",
                "description": "Disables the checkbox.",
                "value": { "type": "boolean" }
              },
              {
                "name": "checked",
                "description": "Draws the checkbox in a checked state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "indeterminate",
                "description": "Draws the checkbox in an indeterminate state. This is usually applied to checkboxes that represents a \"select\nall/none\" behavior when associated checkboxes have a mix of checked and unchecked states.",
                "value": { "type": "boolean" }
              },
              {
                "name": "form",
                "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
                "value": { "type": "string" }
              },
              {
                "name": "required",
                "description": "Makes the checkbox a required field.",
                "value": { "type": "boolean" }
              },
              {
                "name": "help-text",
                "description": "The checkbox's help text. If you need to display HTML, use the `help-text` slot instead.",
                "value": { "type": "string" }
              }
            ],
            "events": [
              {
                "name": "awc-blur",
                "description": "Emitted when the checkbox loses focus."
              },
              {
                "name": "awc-change",
                "description": "Emitted when the checked state changes."
              },
              {
                "name": "awc-focus",
                "description": "Emitted when the checkbox gains focus."
              },
              {
                "name": "awc-input",
                "description": "Emitted when the checkbox receives input."
              },
              {
                "name": "awc-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "awc-color-picker",
          "description": "Color pickers allow the user to select a color.\n---\n\n\n### **Events:**\n - **awc-blur** - Emitted when the color picker loses focus.\n- **awc-change** - Emitted when the color picker's value changes.\n- **awc-focus** - Emitted when the color picker receives focus.\n- **awc-input** - Emitted when the color picker receives input.\n- **awc-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n\n### **Methods:**\n - **focus(options: _FocusOptions_)** - Sets focus on the color picker.\n- **blur()** - Removes focus from the color picker.\n- **getFormattedValue(format: _'hex' | 'hexa' | 'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hsv' | 'hsva'_)** - Returns the current value as a string in the specified format.\n- **checkValidity()** - Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity()** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message: _string_)** - Sets a custom validation message. Pass an empty string to restore validity.\n\n### **Slots:**\n - **label** - The color picker's form label. Alternatively, you can use the `label` attribute.\n\n### **CSS Properties:**\n - **--grid-width** - The width of the color grid. _(default: undefined)_\n- **--grid-height** - The height of the color grid. _(default: undefined)_\n- **--grid-handle-size** - The size of the color grid's handle. _(default: undefined)_\n- **--slider-height** - The height of the hue and alpha sliders. _(default: undefined)_\n- **--slider-handle-size** - The diameter of the slider's handle. _(default: undefined)_\n- **--swatch-size** - The size of each predefined color swatch. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **trigger** - The color picker's dropdown trigger.\n- **swatches** - The container that holds the swatches.\n- **swatch** - Each individual swatch.\n- **grid** - The color grid.\n- **grid-handle** - The color grid's handle.\n- **slider** - Hue and opacity sliders.\n- **slider-handle** - Hue and opacity slider handles.\n- **hue-slider** - The hue slider.\n- **hue-slider-handle** - The hue slider's handle.\n- **opacity-slider** - The opacity slider.\n- **opacity-slider-handle** - The opacity slider's handle.\n- **preview** - The preview color.\n- **input** - The text input.\n- **eye-dropper-button** - The eye dropper button.\n- **eye-dropper-button__base** - The eye dropper button's exported `button` part.\n- **eye-dropper-button__prefix** - The eye dropper button's exported `prefix` part.\n- **eye-dropper-button__label** - The eye dropper button's exported `label` part.\n- **eye-dropper-button__suffix** - The eye dropper button's exported `suffix` part.\n- **eye-dropper-button__caret** - The eye dropper button's exported `caret` part.\n- **format-button** - The format button.\n- **format-button__base** - The format button's exported `button` part.\n- **format-button__prefix** - The format button's exported `prefix` part.\n- **format-button__label** - The format button's exported `label` part.\n- **format-button__suffix** - The format button's exported `suffix` part.\n- **format-button__caret** - The format button's exported `caret` part.",
          "doc-url": "",
          "attributes": [
            {
              "name": "value",
              "description": "The current value of the color picker. The value's format will vary based the `format` attribute. To get the value\nin a specific format, use the `getFormattedValue()` method. The value is submitted as a name/value pair with form\ndata.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "label",
              "description": "The color picker's label. This will not be displayed, but it will be announced by assistive devices. If you need to\ndisplay HTML, you can use the `label` slot` instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "format",
              "description": "The format to use. If opacity is enabled, these will translate to HEXA, RGBA, HSLA, and HSVA respectively. The color\npicker will accept user input in any format (including CSS color names) and convert it to the desired format.",
              "value": {
                "type": "'hex' | 'rgb' | 'hsl' | 'hsv'",
                "default": "'hex'"
              }
            },
            {
              "name": "inline",
              "description": "Renders the color picker inline rather than in a dropdown.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "size",
              "description": "Determines the size of the color picker's trigger. This has no effect on inline color pickers.",
              "value": {
                "type": "'small' | 'medium' | 'large'",
                "default": "'medium'"
              }
            },
            {
              "name": "no-format-toggle",
              "description": "Removes the button that lets users toggle between format.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "name",
              "description": "The name of the form control, submitted as a name/value pair with form data.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "disabled",
              "description": "Disables the color picker.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "hoist",
              "description": "Enable this option to prevent the panel from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "opacity",
              "description": "Shows the opacity slider. Enabling this will cause the formatted value to be HEXA, RGBA, or HSLA.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "uppercase",
              "description": "By default, values are lowercase. With this attribute, values will be uppercase instead.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "swatches",
              "description": "One or more predefined color swatches to display as presets in the color picker. Can include any format the color\npicker can parse, including HEX(A), RGB(A), HSL(A), HSV(A), and CSS color names. Each color must be separated by a\nsemicolon (`;`). Alternatively, you can pass an array of color values to this property using JavaScript.",
              "value": { "type": "string | string[]", "default": "''" }
            },
            {
              "name": "form",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "required",
              "description": "Makes the color picker a required field.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "label",
              "description": "The color picker's form label. Alternatively, you can use the `label` attribute."
            }
          ],
          "events": [
            {
              "name": "awc-blur",
              "description": "Emitted when the color picker loses focus."
            },
            {
              "name": "awc-change",
              "description": "Emitted when the color picker's value changes."
            },
            {
              "name": "awc-focus",
              "description": "Emitted when the color picker receives focus."
            },
            {
              "name": "awc-input",
              "description": "Emitted when the color picker receives input."
            },
            {
              "name": "awc-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "value",
                "description": "The current value of the color picker. The value's format will vary based the `format` attribute. To get the value\nin a specific format, use the `getFormattedValue()` method. The value is submitted as a name/value pair with form\ndata.",
                "value": { "type": "string" }
              },
              {
                "name": "label",
                "description": "The color picker's label. This will not be displayed, but it will be announced by assistive devices. If you need to\ndisplay HTML, you can use the `label` slot` instead.",
                "value": { "type": "string" }
              },
              {
                "name": "format",
                "description": "The format to use. If opacity is enabled, these will translate to HEXA, RGBA, HSLA, and HSVA respectively. The color\npicker will accept user input in any format (including CSS color names) and convert it to the desired format.",
                "value": { "type": "'hex' | 'rgb' | 'hsl' | 'hsv'" }
              },
              {
                "name": "inline",
                "description": "Renders the color picker inline rather than in a dropdown.",
                "value": { "type": "boolean" }
              },
              {
                "name": "size",
                "description": "Determines the size of the color picker's trigger. This has no effect on inline color pickers.",
                "value": { "type": "'small' | 'medium' | 'large'" }
              },
              {
                "name": "no-format-toggle",
                "description": "Removes the button that lets users toggle between format.",
                "value": { "type": "boolean" }
              },
              {
                "name": "name",
                "description": "The name of the form control, submitted as a name/value pair with form data.",
                "value": { "type": "string" }
              },
              {
                "name": "disabled",
                "description": "Disables the color picker.",
                "value": { "type": "boolean" }
              },
              {
                "name": "hoist",
                "description": "Enable this option to prevent the panel from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.",
                "value": { "type": "boolean" }
              },
              {
                "name": "opacity",
                "description": "Shows the opacity slider. Enabling this will cause the formatted value to be HEXA, RGBA, or HSLA.",
                "value": { "type": "boolean" }
              },
              {
                "name": "uppercase",
                "description": "By default, values are lowercase. With this attribute, values will be uppercase instead.",
                "value": { "type": "boolean" }
              },
              {
                "name": "swatches",
                "description": "One or more predefined color swatches to display as presets in the color picker. Can include any format the color\npicker can parse, including HEX(A), RGB(A), HSL(A), HSV(A), and CSS color names. Each color must be separated by a\nsemicolon (`;`). Alternatively, you can pass an array of color values to this property using JavaScript.",
                "value": { "type": "string | string[]" }
              },
              {
                "name": "form",
                "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
                "value": { "type": "string" }
              },
              {
                "name": "required",
                "description": "Makes the color picker a required field.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-blur",
                "description": "Emitted when the color picker loses focus."
              },
              {
                "name": "awc-change",
                "description": "Emitted when the color picker's value changes."
              },
              {
                "name": "awc-focus",
                "description": "Emitted when the color picker receives focus."
              },
              {
                "name": "awc-input",
                "description": "Emitted when the color picker receives input."
              },
              {
                "name": "awc-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "awc-copy-button",
          "description": "Copies text data to the clipboard when the user clicks the trigger.\n---\n\n\n### **Events:**\n - **awc-copy** - Emitted when the data has been copied.\n- **awc-error** - Emitted when the data could not be copied.\n\n### **Slots:**\n - **copy-icon** - The icon to show in the default copy state. Works best with `<awc-icon>`.\n- **success-icon** - The icon to show when the content is copied. Works best with `<awc-icon>`.\n- **error-icon** - The icon to show when a copy error occurs. Works best with `<awc-icon>`.\n\n### **CSS Properties:**\n - **--success-color** - The color to use for success feedback. _(default: undefined)_\n- **--error-color** - The color to use for error feedback. _(default: undefined)_\n\n### **CSS Parts:**\n - **button** - The internal `<button>` element.\n- **copy-icon** - The container that holds the copy icon.\n- **success-icon** - The container that holds the success icon.\n- **error-icon** - The container that holds the error icon.\n- **tooltip__base** - The tooltip's exported `base` part.\n- **tooltip__base__popup** - The tooltip's exported `popup` part.\n- **tooltip__base__arrow** - The tooltip's exported `arrow` part.\n- **tooltip__body** - The tooltip's exported `body` part.",
          "doc-url": "",
          "attributes": [
            {
              "name": "value",
              "description": "The text value to copy.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "from",
              "description": "An id that references an element in the same document from which data will be copied. If both this and `value` are\npresent, this value will take precedence. By default, the target element's `textContent` will be copied. To copy an\nattribute, append the attribute name wrapped in square brackets, e.g. `from=\"el[value]\"`. To copy a property,\nappend a dot and the property name, e.g. `from=\"el.value\"`.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "disabled",
              "description": "Disables the copy button.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "copy-label",
              "description": "A custom label to show in the tooltip.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "success-label",
              "description": "A custom label to show in the tooltip after copying.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "error-label",
              "description": "A custom label to show in the tooltip when a copy error occurs.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "feedback-duration",
              "description": "The length of time to show feedback before restoring the default trigger.",
              "value": { "type": "number", "default": "1000" }
            },
            {
              "name": "tooltip-placement",
              "description": "The preferred placement of the tooltip.",
              "value": {
                "type": "'top' | 'right' | 'bottom' | 'left'",
                "default": "'top'"
              }
            },
            {
              "name": "hoist",
              "description": "Enable this option to prevent the tooltip from being clipped when the component is placed inside a container with\n`overflow: auto|hidden|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all,\nscenarios.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "copy-icon",
              "description": "The icon to show in the default copy state. Works best with `<awc-icon>`."
            },
            {
              "name": "success-icon",
              "description": "The icon to show when the content is copied. Works best with `<awc-icon>`."
            },
            {
              "name": "error-icon",
              "description": "The icon to show when a copy error occurs. Works best with `<awc-icon>`."
            }
          ],
          "events": [
            {
              "name": "awc-copy",
              "description": "Emitted when the data has been copied."
            },
            {
              "name": "awc-error",
              "description": "Emitted when the data could not be copied."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "value",
                "description": "The text value to copy.",
                "value": { "type": "string" }
              },
              {
                "name": "from",
                "description": "An id that references an element in the same document from which data will be copied. If both this and `value` are\npresent, this value will take precedence. By default, the target element's `textContent` will be copied. To copy an\nattribute, append the attribute name wrapped in square brackets, e.g. `from=\"el[value]\"`. To copy a property,\nappend a dot and the property name, e.g. `from=\"el.value\"`.",
                "value": { "type": "string" }
              },
              {
                "name": "disabled",
                "description": "Disables the copy button.",
                "value": { "type": "boolean" }
              },
              {
                "name": "copy-label",
                "description": "A custom label to show in the tooltip.",
                "value": { "type": "string" }
              },
              {
                "name": "success-label",
                "description": "A custom label to show in the tooltip after copying.",
                "value": { "type": "string" }
              },
              {
                "name": "error-label",
                "description": "A custom label to show in the tooltip when a copy error occurs.",
                "value": { "type": "string" }
              },
              {
                "name": "feedback-duration",
                "description": "The length of time to show feedback before restoring the default trigger.",
                "value": { "type": "number" }
              },
              {
                "name": "tooltip-placement",
                "description": "The preferred placement of the tooltip.",
                "value": { "type": "'top' | 'right' | 'bottom' | 'left'" }
              },
              {
                "name": "hoist",
                "description": "Enable this option to prevent the tooltip from being clipped when the component is placed inside a container with\n`overflow: auto|hidden|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all,\nscenarios.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-copy",
                "description": "Emitted when the data has been copied."
              },
              {
                "name": "awc-error",
                "description": "Emitted when the data could not be copied."
              }
            ]
          }
        },
        {
          "name": "awc-details",
          "description": "Details show a brief summary and expand to show additional content.\n---\n\n\n### **Events:**\n - **awc-show** - Emitted when the details opens.\n- **awc-after-show** - Emitted after the details opens and all animations are complete.\n- **awc-hide** - Emitted when the details closes.\n- **awc-after-hide** - Emitted after the details closes and all animations are complete.\n\n### **Methods:**\n - **show()** - Shows the details.\n- **hide()** - Hides the details\n\n### **Slots:**\n - _default_ - The details' main content.\n- **summary** - The details' summary. Alternatively, you can use the `summary` attribute.\n- **expand-icon** - Optional expand icon to use instead of the default. Works best with `<awc-icon>`.\n- **collapse-icon** - Optional collapse icon to use instead of the default. Works best with `<awc-icon>`.\n\n### **CSS Properties:**\n - **--padding** - The details's padding. _(default: var(--awc-spacing-medium))_\n- **--border-width** - The details's border width. _(default: 1px)_\n- **--border-radius** - The details's border radius. _(default: var(--awc-card-border-radius))_\n- **--border-color** - The details's border color. _(default: var(--awc-color-neutral-200))_\n- **--background-color** - The details's background color. _(default: transparent)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **header** - The header that wraps both the summary and the expand/collapse icon.\n- **summary** - The container that wraps the summary.\n- **summary-icon** - The container that wraps the expand/collapse icons.\n- **body** - The details content wrapper.\n- **content** - The details content.",
          "doc-url": "",
          "attributes": [
            {
              "name": "open",
              "description": "Indicates whether or not the details is open. You can toggle this attribute to show and hide the details, or you\ncan use the `show()` and `hide()` methods and this attribute will reflect the details' open state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "summary",
              "description": "The summary to show in the header. If you need to display HTML, use the `summary` slot instead.",
              "value": { "type": "string" }
            },
            {
              "name": "disabled",
              "description": "Disables the details so it can't be toggled.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "", "description": "The details' main content." },
            {
              "name": "summary",
              "description": "The details' summary. Alternatively, you can use the `summary` attribute."
            },
            {
              "name": "expand-icon",
              "description": "Optional expand icon to use instead of the default. Works best with `<awc-icon>`."
            },
            {
              "name": "collapse-icon",
              "description": "Optional collapse icon to use instead of the default. Works best with `<awc-icon>`."
            }
          ],
          "events": [
            {
              "name": "awc-show",
              "description": "Emitted when the details opens."
            },
            {
              "name": "awc-after-show",
              "description": "Emitted after the details opens and all animations are complete."
            },
            {
              "name": "awc-hide",
              "description": "Emitted when the details closes."
            },
            {
              "name": "awc-after-hide",
              "description": "Emitted after the details closes and all animations are complete."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "open",
                "description": "Indicates whether or not the details is open. You can toggle this attribute to show and hide the details, or you\ncan use the `show()` and `hide()` methods and this attribute will reflect the details' open state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "summary",
                "description": "The summary to show in the header. If you need to display HTML, use the `summary` slot instead.",
                "value": { "type": "string" }
              },
              {
                "name": "disabled",
                "description": "Disables the details so it can't be toggled.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-show",
                "description": "Emitted when the details opens."
              },
              {
                "name": "awc-after-show",
                "description": "Emitted after the details opens and all animations are complete."
              },
              {
                "name": "awc-hide",
                "description": "Emitted when the details closes."
              },
              {
                "name": "awc-after-hide",
                "description": "Emitted after the details closes and all animations are complete."
              }
            ]
          }
        },
        {
          "name": "awc-dialog",
          "description": "Dialogs, sometimes called \"modals\", appear above the page and require the user's immediate attention.\n---\n\n\n### **Events:**\n - **awc-show** - Emitted when the dialog opens.\n- **awc-after-show** - Emitted after the dialog opens and all animations are complete.\n- **awc-hide** - Emitted when the dialog closes.\n- **awc-after-hide** - Emitted after the dialog closes and all animations are complete.\n- **awc-initial-focus** - Emitted when the dialog opens and is ready to receive focus. Calling `event.preventDefault()` will prevent focusing and allow you to set it on a different element, such as an input.\n- **awc-request-close** - Emitted when the user attempts to close the dialog by clicking the close button, clicking the overlay, or pressing escape. Calling `event.preventDefault()` will keep the dialog open. Avoid using this unless closing the dialog will result in destructive behavior such as data loss.\n\n### **Methods:**\n - **show()** - Shows the dialog.\n- **hide()** - Hides the dialog\n\n### **Slots:**\n - _default_ - The dialog's main content.\n- **label** - The dialog's label. Alternatively, you can use the `label` attribute.\n- **header-actions** - Optional actions to add to the header. Works best with `<awc-icon-button>`.\n- **footer** - The dialog's footer, usually one or more buttons representing various options.\n\n### **CSS Properties:**\n - **--width** - The preferred width of the dialog. Note that the dialog will shrink to accommodate smaller screens. _(default: undefined)_\n- **--header-spacing** - The amount of padding to use for the header. _(default: undefined)_\n- **--body-spacing** - The amount of padding to use for the body. _(default: undefined)_\n- **--footer-spacing** - The amount of padding to use for the footer. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **overlay** - The overlay that covers the screen behind the dialog.\n- **panel** - The dialog's panel (where the dialog and its content are rendered).\n- **header** - The dialog's header. This element wraps the title and header actions.\n- **header-actions** - Optional actions to add to the header. Works best with `<awc-icon-button>`.\n- **title** - The dialog's title.\n- **close-button** - The close button, an `<awc-icon-button>`.\n- **close-button__base** - The close button's exported `base` part.\n- **body** - The dialog's body.\n- **footer** - The dialog's footer.",
          "doc-url": "",
          "attributes": [
            {
              "name": "open",
              "description": "Indicates whether or not the dialog is open. You can toggle this attribute to show and hide the dialog, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the dialog's open state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "label",
              "description": "The dialog's label as displayed in the header. You should always include a relevant label even when using\n`no-header`, as it is required for proper accessibility. If you need to display HTML, use the `label` slot instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "no-header",
              "description": "Disables the header. This will also remove the default close button, so please ensure you provide an easy,\naccessible way for users to dismiss the dialog.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "", "description": "The dialog's main content." },
            {
              "name": "label",
              "description": "The dialog's label. Alternatively, you can use the `label` attribute."
            },
            {
              "name": "header-actions",
              "description": "Optional actions to add to the header. Works best with `<awc-icon-button>`."
            },
            {
              "name": "footer",
              "description": "The dialog's footer, usually one or more buttons representing various options."
            }
          ],
          "events": [
            {
              "name": "awc-show",
              "description": "Emitted when the dialog opens."
            },
            {
              "name": "awc-after-show",
              "description": "Emitted after the dialog opens and all animations are complete."
            },
            {
              "name": "awc-hide",
              "description": "Emitted when the dialog closes."
            },
            {
              "name": "awc-after-hide",
              "description": "Emitted after the dialog closes and all animations are complete."
            },
            {
              "name": "awc-initial-focus",
              "description": "Emitted when the dialog opens and is ready to receive focus. Calling `event.preventDefault()` will prevent focusing and allow you to set it on a different element, such as an input."
            },
            {
              "name": "awc-request-close",
              "description": "Emitted when the user attempts to close the dialog by clicking the close button, clicking the overlay, or pressing escape. Calling `event.preventDefault()` will keep the dialog open. Avoid using this unless closing the dialog will result in destructive behavior such as data loss."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "open",
                "description": "Indicates whether or not the dialog is open. You can toggle this attribute to show and hide the dialog, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the dialog's open state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "label",
                "description": "The dialog's label as displayed in the header. You should always include a relevant label even when using\n`no-header`, as it is required for proper accessibility. If you need to display HTML, use the `label` slot instead.",
                "value": { "type": "string" }
              },
              {
                "name": "no-header",
                "description": "Disables the header. This will also remove the default close button, so please ensure you provide an easy,\naccessible way for users to dismiss the dialog.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-show",
                "description": "Emitted when the dialog opens."
              },
              {
                "name": "awc-after-show",
                "description": "Emitted after the dialog opens and all animations are complete."
              },
              {
                "name": "awc-hide",
                "description": "Emitted when the dialog closes."
              },
              {
                "name": "awc-after-hide",
                "description": "Emitted after the dialog closes and all animations are complete."
              },
              {
                "name": "awc-initial-focus",
                "description": "Emitted when the dialog opens and is ready to receive focus. Calling `event.preventDefault()` will prevent focusing and allow you to set it on a different element, such as an input."
              },
              {
                "name": "awc-request-close",
                "description": "Emitted when the user attempts to close the dialog by clicking the close button, clicking the overlay, or pressing escape. Calling `event.preventDefault()` will keep the dialog open. Avoid using this unless closing the dialog will result in destructive behavior such as data loss."
              }
            ]
          }
        },
        {
          "name": "awc-divider",
          "description": "Dividers are used to visually separate or group elements.\n---\n\n\n### **CSS Properties:**\n - **--color** - The color of the divider. _(default: undefined)_\n- **--width** - The width of the divider. _(default: undefined)_\n- **--style** - The style of the divider. _(default: undefined)_\n- **--spacing** - The spacing of the divider. _(default: undefined)_",
          "doc-url": "",
          "attributes": [
            {
              "name": "vertical",
              "description": "Draws the divider in a vertical orientation.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "vertical",
                "description": "Draws the divider in a vertical orientation.",
                "value": { "type": "boolean" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-drawer",
          "description": "Drawers slide in from a container to expose additional options and information.\n---\n\n\n### **Events:**\n - **awc-show** - Emitted when the drawer opens.\n- **awc-after-show** - Emitted after the drawer opens and all animations are complete.\n- **awc-hide** - Emitted when the drawer closes.\n- **awc-after-hide** - Emitted after the drawer closes and all animations are complete.\n- **awc-initial-focus** - Emitted when the drawer opens and is ready to receive focus. Calling `event.preventDefault()` will prevent focusing and allow you to set it on a different element, such as an input.\n- **awc-request-close** - Emitted when the user attempts to close the drawer by clicking the close button, clicking the overlay, or pressing escape. Calling `event.preventDefault()` will keep the drawer open. Avoid using this unless closing the drawer will result in destructive behavior such as data loss.\n\n### **Methods:**\n - **show()** - Shows the drawer.\n- **hide()** - Hides the drawer\n\n### **Slots:**\n - _default_ - The drawer's main content.\n- **label** - The drawer's label. Alternatively, you can use the `label` attribute.\n- **header-actions** - Optional actions to add to the header. Works best with `<awc-icon-button>`.\n- **footer** - The drawer's footer, usually one or more buttons representing various options.\n\n### **CSS Properties:**\n - **--size** - The preferred size of the drawer. This will be applied to the drawer's width or height depending on its `placement`. Note that the drawer will shrink to accommodate smaller screens. _(default: undefined)_\n- **--header-spacing** - The amount of padding to use for the header. _(default: undefined)_\n- **--body-spacing** - The amount of padding to use for the body. _(default: undefined)_\n- **--footer-spacing** - The amount of padding to use for the footer. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **overlay** - The overlay that covers the screen behind the drawer.\n- **panel** - The drawer's panel (where the drawer and its content are rendered).\n- **header** - The drawer's header. This element wraps the title and header actions.\n- **header-actions** - Optional actions to add to the header. Works best with `<awc-icon-button>`.\n- **title** - The drawer's title.\n- **close-button** - The close button, an `<awc-icon-button>`.\n- **close-button__base** - The close button's exported `base` part.\n- **body** - The drawer's body.\n- **footer** - The drawer's footer.",
          "doc-url": "",
          "attributes": [
            {
              "name": "open",
              "description": "Indicates whether or not the drawer is open. You can toggle this attribute to show and hide the drawer, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the drawer's open state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "label",
              "description": "The drawer's label as displayed in the header. You should always include a relevant label even when using\n`no-header`, as it is required for proper accessibility. If you need to display HTML, use the `label` slot instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "placement",
              "description": "The direction from which the drawer will open.",
              "value": {
                "type": "'top' | 'end' | 'bottom' | 'start'",
                "default": "'end'"
              }
            },
            {
              "name": "contained",
              "description": "By default, the drawer slides out of its containing block (usually the viewport). To make the drawer slide out of\nits parent element, set this attribute and add `position: relative` to the parent.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "no-header",
              "description": "Removes the header. This will also remove the default close button, so please ensure you provide an easy,\naccessible way for users to dismiss the drawer.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "", "description": "The drawer's main content." },
            {
              "name": "label",
              "description": "The drawer's label. Alternatively, you can use the `label` attribute."
            },
            {
              "name": "header-actions",
              "description": "Optional actions to add to the header. Works best with `<awc-icon-button>`."
            },
            {
              "name": "footer",
              "description": "The drawer's footer, usually one or more buttons representing various options."
            }
          ],
          "events": [
            {
              "name": "awc-show",
              "description": "Emitted when the drawer opens."
            },
            {
              "name": "awc-after-show",
              "description": "Emitted after the drawer opens and all animations are complete."
            },
            {
              "name": "awc-hide",
              "description": "Emitted when the drawer closes."
            },
            {
              "name": "awc-after-hide",
              "description": "Emitted after the drawer closes and all animations are complete."
            },
            {
              "name": "awc-initial-focus",
              "description": "Emitted when the drawer opens and is ready to receive focus. Calling `event.preventDefault()` will prevent focusing and allow you to set it on a different element, such as an input."
            },
            {
              "name": "awc-request-close",
              "description": "Emitted when the user attempts to close the drawer by clicking the close button, clicking the overlay, or pressing escape. Calling `event.preventDefault()` will keep the drawer open. Avoid using this unless closing the drawer will result in destructive behavior such as data loss."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "open",
                "description": "Indicates whether or not the drawer is open. You can toggle this attribute to show and hide the drawer, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the drawer's open state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "label",
                "description": "The drawer's label as displayed in the header. You should always include a relevant label even when using\n`no-header`, as it is required for proper accessibility. If you need to display HTML, use the `label` slot instead.",
                "value": { "type": "string" }
              },
              {
                "name": "placement",
                "description": "The direction from which the drawer will open.",
                "value": { "type": "'top' | 'end' | 'bottom' | 'start'" }
              },
              {
                "name": "contained",
                "description": "By default, the drawer slides out of its containing block (usually the viewport). To make the drawer slide out of\nits parent element, set this attribute and add `position: relative` to the parent.",
                "value": { "type": "boolean" }
              },
              {
                "name": "no-header",
                "description": "Removes the header. This will also remove the default close button, so please ensure you provide an easy,\naccessible way for users to dismiss the drawer.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-show",
                "description": "Emitted when the drawer opens."
              },
              {
                "name": "awc-after-show",
                "description": "Emitted after the drawer opens and all animations are complete."
              },
              {
                "name": "awc-hide",
                "description": "Emitted when the drawer closes."
              },
              {
                "name": "awc-after-hide",
                "description": "Emitted after the drawer closes and all animations are complete."
              },
              {
                "name": "awc-initial-focus",
                "description": "Emitted when the drawer opens and is ready to receive focus. Calling `event.preventDefault()` will prevent focusing and allow you to set it on a different element, such as an input."
              },
              {
                "name": "awc-request-close",
                "description": "Emitted when the user attempts to close the drawer by clicking the close button, clicking the overlay, or pressing escape. Calling `event.preventDefault()` will keep the drawer open. Avoid using this unless closing the drawer will result in destructive behavior such as data loss."
              }
            ]
          }
        },
        {
          "name": "awc-dropdown",
          "description": "Dropdowns expose additional content that \"drops down\" in a panel.\n---\n\n\n### **Events:**\n - **awc-show** - Emitted when the dropdown opens.\n- **awc-after-show** - Emitted after the dropdown opens and all animations are complete.\n- **awc-hide** - Emitted when the dropdown closes.\n- **awc-after-hide** - Emitted after the dropdown closes and all animations are complete.\n\n### **Methods:**\n - **show()** - Shows the dropdown panel.\n- **hide()** - Hides the dropdown panel\n- **reposition()** - Instructs the dropdown menu to reposition. Useful when the position or size of the trigger changes when the menu\nis activated.\n\n### **Slots:**\n - _default_ - The dropdown's main content.\n- **trigger** - The dropdown's trigger, usually a `<awc-button>` element.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **trigger** - The container that wraps the trigger.\n- **panel** - The panel that gets shown when the dropdown is open.",
          "doc-url": "",
          "attributes": [
            {
              "name": "open",
              "description": "Indicates whether or not the dropdown is open. You can toggle this attribute to show and hide the dropdown, or you\ncan use the `show()` and `hide()` methods and this attribute will reflect the dropdown's open state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "placement",
              "description": "The preferred placement of the dropdown panel. Note that the actual placement may vary as needed to keep the panel\ninside of the viewport.",
              "value": {
                "type": "| 'top'\n    | 'top-start'\n    | 'top-end'\n    | 'bottom'\n    | 'bottom-start'\n    | 'bottom-end'\n    | 'right'\n    | 'right-start'\n    | 'right-end'\n    | 'left'\n    | 'left-start'\n    | 'left-end'",
                "default": "'bottom-start'"
              }
            },
            {
              "name": "disabled",
              "description": "Disables the dropdown so the panel will not open.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "stay-open-on-select",
              "description": "By default, the dropdown is closed when an item is selected. This attribute will keep it open instead. Useful for\ndropdowns that allow for multiple interactions.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "distance",
              "description": "The distance in pixels from which to offset the panel away from its trigger.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "skidding",
              "description": "The distance in pixels from which to offset the panel along its trigger.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "hoist",
              "description": "Enable this option to prevent the panel from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "sync",
              "description": "Syncs the popup width or height to that of the trigger element.",
              "value": {
                "type": "'width' | 'height' | 'both' | undefined",
                "default": "undefined"
              }
            }
          ],
          "slots": [
            { "name": "", "description": "The dropdown's main content." },
            {
              "name": "trigger",
              "description": "The dropdown's trigger, usually a `<awc-button>` element."
            }
          ],
          "events": [
            {
              "name": "awc-show",
              "description": "Emitted when the dropdown opens."
            },
            {
              "name": "awc-after-show",
              "description": "Emitted after the dropdown opens and all animations are complete."
            },
            {
              "name": "awc-hide",
              "description": "Emitted when the dropdown closes."
            },
            {
              "name": "awc-after-hide",
              "description": "Emitted after the dropdown closes and all animations are complete."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "open",
                "description": "Indicates whether or not the dropdown is open. You can toggle this attribute to show and hide the dropdown, or you\ncan use the `show()` and `hide()` methods and this attribute will reflect the dropdown's open state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "placement",
                "description": "The preferred placement of the dropdown panel. Note that the actual placement may vary as needed to keep the panel\ninside of the viewport.",
                "value": {
                  "type": "| 'top'\n    | 'top-start'\n    | 'top-end'\n    | 'bottom'\n    | 'bottom-start'\n    | 'bottom-end'\n    | 'right'\n    | 'right-start'\n    | 'right-end'\n    | 'left'\n    | 'left-start'\n    | 'left-end'"
                }
              },
              {
                "name": "disabled",
                "description": "Disables the dropdown so the panel will not open.",
                "value": { "type": "boolean" }
              },
              {
                "name": "stay-open-on-select",
                "description": "By default, the dropdown is closed when an item is selected. This attribute will keep it open instead. Useful for\ndropdowns that allow for multiple interactions.",
                "value": { "type": "boolean" }
              },
              {
                "name": "distance",
                "description": "The distance in pixels from which to offset the panel away from its trigger.",
                "value": { "type": "number" }
              },
              {
                "name": "skidding",
                "description": "The distance in pixels from which to offset the panel along its trigger.",
                "value": { "type": "number" }
              },
              {
                "name": "hoist",
                "description": "Enable this option to prevent the panel from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.",
                "value": { "type": "boolean" }
              },
              {
                "name": "sync",
                "description": "Syncs the popup width or height to that of the trigger element.",
                "value": { "type": "'width' | 'height' | 'both' | undefined" }
              }
            ],
            "events": [
              {
                "name": "awc-show",
                "description": "Emitted when the dropdown opens."
              },
              {
                "name": "awc-after-show",
                "description": "Emitted after the dropdown opens and all animations are complete."
              },
              {
                "name": "awc-hide",
                "description": "Emitted when the dropdown closes."
              },
              {
                "name": "awc-after-hide",
                "description": "Emitted after the dropdown closes and all animations are complete."
              }
            ]
          }
        },
        {
          "name": "awc-file-upload",
          "description": "File Upload provides an area where files can be dragged and dropped onto from the Operating System to be uploaded or to be used for other tasks. It also provides a button to open a file dialog and select files from the file system. Per default the File Dropzone shows a list of all selected files below the dropzone.\n---\n\n\n### **Events:**\n - **awc-drop** - Emitted when dragged files have been dropped on the dropzone area.\n- **awc-select** - Emitted when files have been selected via the file dialog.\n- **awc-change** - Emitted when files have been uploaded via the dropzone or file dialog.\n- **awc-load** - Emitted when a file transfer was finished\n- **awc-error** - Emitted when a file transfer threw an error\n- **awc-abort** - Emitted when a file transfer was aborted by the user\n- **awc-remove** - Emitted when a file was removed\n\n### **Methods:**\n - **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity()** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **checkValidity()** - Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **setCustomValidity(message: _string_)** - Sets a custom validation message. Pass an empty string to restore validity.\n\n### **Slots:**\n - **content** - The dropzone's content. Alternatively, you can use the image slot and label prop.\n- **image** - The dropzone's image.\n- **button** - The dropzone's button.\n- **help-text** - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.\n\n### **CSS Properties:**\n - **--border-radius** - --border-radius - The border radius of the dropzone borders. _(default: var(--awc-border-radius-medium))_\n- **--border-width** - --border-width - The width of the dropzone borders. _(default: var(--awc-input-border-width))_\n- **--border-style** - --border-style - The style of the dropzone borders. _(default: solid)_\n- **--list-border-style** - --list-border-style - The style of the file list borders. _(default: solid)_\n\n### **CSS Parts:**\n - **base** - The component's internal wrapper.\n- **content** - The dropzone container.\n- **image** - The dropzone image.\n- **button** - The dropzone button.\n- **help-text** - The help text's wrapper.",
          "doc-url": "",
          "attributes": [
            {
              "name": "type",
              "value": { "type": "string", "default": "'file'" }
            },
            {
              "name": "files",
              "value": { "type": "FileInfo[]", "default": "[]" }
            },
            {
              "name": "name",
              "description": "The input's name attribute.",
              "value": { "type": "string" }
            },
            {
              "name": "disabled",
              "description": "Disables the dropzone.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "no-button",
              "description": "If true, hides button to open the native file selection dialog",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "button-only",
              "description": "If true, shows only a button as a file input",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "no-file-list",
              "description": "If true, no file list will be shown",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "label",
              "description": "An optional overwrite for the upload label",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "button-label",
              "description": "An optional overwrite for the preview button label",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "lang",
              "description": "The locale to render the component in.",
              "value": { "type": "string" }
            },
            {
              "name": "accept",
              "description": "A string that defines the file types the file dropzone should accept. Defaults to '*'",
              "value": { "type": "string", "default": "'*'" }
            },
            {
              "name": "max-file-size",
              "description": "An optional maximum size of a file that will be considered valid.",
              "value": { "type": "number | undefined" }
            },
            {
              "name": "max-files",
              "description": "The maximum amount of files that are allowed.",
              "value": { "type": "number" }
            },
            {
              "name": "multiple",
              "description": "Indicates if multiple files can be uploaded",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "help-text",
              "description": "The input's help text. If you need to display HTML, use the `help-text` slot instead.",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "slots": [
            {
              "name": "content",
              "description": "The dropzone's content. Alternatively, you can use the image slot and label prop."
            },
            { "name": "image", "description": "The dropzone's image." },
            { "name": "button", "description": "The dropzone's button." },
            {
              "name": "help-text",
              "description": "Text that describes how to use the input. Alternatively, you can use the `help-text` attribute."
            }
          ],
          "events": [
            {
              "name": "awc-drop",
              "description": "Emitted when dragged files have been dropped on the dropzone area."
            },
            {
              "name": "awc-select",
              "description": "Emitted when files have been selected via the file dialog."
            },
            {
              "name": "awc-change",
              "description": "Emitted when files have been uploaded via the dropzone or file dialog."
            },
            {
              "name": "awc-load",
              "description": "Emitted when a file transfer was finished"
            },
            {
              "name": "awc-error",
              "description": "Emitted when a file transfer threw an error"
            },
            {
              "name": "awc-abort",
              "description": "Emitted when a file transfer was aborted by the user"
            },
            {
              "name": "awc-remove",
              "description": "Emitted when a file was removed"
            }
          ],
          "js": {
            "properties": [
              { "name": "type", "value": { "type": "string" } },
              { "name": "files", "value": { "type": "FileInfo[]" } },
              {
                "name": "name",
                "description": "The input's name attribute.",
                "value": { "type": "string" }
              },
              {
                "name": "disabled",
                "description": "Disables the dropzone.",
                "value": { "type": "boolean" }
              },
              {
                "name": "no-button",
                "description": "If true, hides button to open the native file selection dialog",
                "value": { "type": "boolean" }
              },
              {
                "name": "button-only",
                "description": "If true, shows only a button as a file input",
                "value": { "type": "boolean" }
              },
              {
                "name": "no-file-list",
                "description": "If true, no file list will be shown",
                "value": { "type": "boolean" }
              },
              {
                "name": "label",
                "description": "An optional overwrite for the upload label",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "button-label",
                "description": "An optional overwrite for the preview button label",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "lang",
                "description": "The locale to render the component in.",
                "value": { "type": "string" }
              },
              {
                "name": "accept",
                "description": "A string that defines the file types the file dropzone should accept. Defaults to '*'",
                "value": { "type": "string" }
              },
              {
                "name": "max-file-size",
                "description": "An optional maximum size of a file that will be considered valid.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "max-files",
                "description": "The maximum amount of files that are allowed.",
                "value": { "type": "number" }
              },
              {
                "name": "multiple",
                "description": "Indicates if multiple files can be uploaded",
                "value": { "type": "boolean" }
              },
              {
                "name": "help-text",
                "description": "The input's help text. If you need to display HTML, use the `help-text` slot instead.",
                "value": { "type": "string" }
              }
            ],
            "events": [
              {
                "name": "awc-drop",
                "description": "Emitted when dragged files have been dropped on the dropzone area."
              },
              {
                "name": "awc-select",
                "description": "Emitted when files have been selected via the file dialog."
              },
              {
                "name": "awc-change",
                "description": "Emitted when files have been uploaded via the dropzone or file dialog."
              },
              {
                "name": "awc-load",
                "description": "Emitted when a file transfer was finished"
              },
              {
                "name": "awc-error",
                "description": "Emitted when a file transfer threw an error"
              },
              {
                "name": "awc-abort",
                "description": "Emitted when a file transfer was aborted by the user"
              },
              {
                "name": "awc-remove",
                "description": "Emitted when a file was removed"
              }
            ]
          }
        },
        {
          "name": "awc-file-upload-item",
          "description": "File items represent an uploaded file and provides information about file type, file size etc.\n---\n\n\n### **Events:**\n - **awc-show** - Emitted when the item is added.\n- **awc-after-show** - Emitted after the item is added and all animations are complete.\n- **awc-hide** - Emitted when the item is removed.\n- **awc-after-hide** - Emitted after the item is removed and all animations are complete.\n\n### **Methods:**\n - **show()** - Shows the item.\n- **hide()** - Hides the item\n\n### **Slots:**\n - _default_ - The default slot.\n- **image** - The image or icon slot.\n- **error** - The error slot.\n- **close-button** - The close button slot.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **image** - The icon wrapper.\n- **label** - The file name wrapper.\n- **error** - The error wrapper.\n- **close-button** - The close button, an `<awc-icon-button>`.\n- **close-button__base** - The close button's exported `base` part.",
          "doc-url": "",
          "attributes": [
            {
              "name": "loading",
              "description": "Draws the item in a loading state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "progress",
              "description": "The current progress, 0 to 100. Only respects is loading prop is true.",
              "value": { "type": "number" }
            },
            {
              "name": "label",
              "description": "A custom label for the progress bar's aria label. Only respects if loading prop is true.",
              "value": { "type": "string" }
            },
            {
              "name": "lang",
              "description": "The locale to render the component in.",
              "value": { "type": "string" }
            },
            {
              "name": "error",
              "description": "Draws the item in a error state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "closable",
              "description": "Makes the item closable.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "value",
              "description": "A unique value to store in the menu item. This can be used as a way to identify menu items when selected.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "size",
              "description": "The size of the file in bytes as a read-only 64-bit integer.",
              "value": { "type": "number" }
            },
            {
              "name": "hidden",
              "description": "Indicates whether or not the file list item is hidden.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "", "description": "The default slot." },
            { "name": "image", "description": "The image or icon slot." },
            { "name": "error", "description": "The error slot." },
            { "name": "close-button", "description": "The close button slot." }
          ],
          "events": [
            {
              "name": "awc-show",
              "description": "Emitted when the item is added."
            },
            {
              "name": "awc-after-show",
              "description": "Emitted after the item is added and all animations are complete."
            },
            {
              "name": "awc-hide",
              "description": "Emitted when the item is removed."
            },
            {
              "name": "awc-after-hide",
              "description": "Emitted after the item is removed and all animations are complete."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "loading",
                "description": "Draws the item in a loading state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "progress",
                "description": "The current progress, 0 to 100. Only respects is loading prop is true.",
                "value": { "type": "number" }
              },
              {
                "name": "label",
                "description": "A custom label for the progress bar's aria label. Only respects if loading prop is true.",
                "value": { "type": "string" }
              },
              {
                "name": "lang",
                "description": "The locale to render the component in.",
                "value": { "type": "string" }
              },
              {
                "name": "error",
                "description": "Draws the item in a error state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "closable",
                "description": "Makes the item closable.",
                "value": { "type": "boolean" }
              },
              {
                "name": "value",
                "description": "A unique value to store in the menu item. This can be used as a way to identify menu items when selected.",
                "value": { "type": "string" }
              },
              {
                "name": "size",
                "description": "The size of the file in bytes as a read-only 64-bit integer.",
                "value": { "type": "number" }
              },
              {
                "name": "hidden",
                "description": "Indicates whether or not the file list item is hidden.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-show",
                "description": "Emitted when the item is added."
              },
              {
                "name": "awc-after-show",
                "description": "Emitted after the item is added and all animations are complete."
              },
              {
                "name": "awc-hide",
                "description": "Emitted when the item is removed."
              },
              {
                "name": "awc-after-hide",
                "description": "Emitted after the item is removed and all animations are complete."
              }
            ]
          }
        },
        {
          "name": "awc-format-bytes",
          "description": "Formats a number as a human readable bytes value.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "value",
              "description": "The number to format in bytes.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "unit",
              "description": "The type of unit to display.",
              "value": { "type": "'byte' | 'bit'", "default": "'byte'" }
            },
            {
              "name": "display",
              "description": "Determines how to display the result, e.g. \"100 bytes\", \"100 b\", or \"100b\".",
              "value": {
                "type": "'long' | 'short' | 'narrow'",
                "default": "'short'"
              }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "value",
                "description": "The number to format in bytes.",
                "value": { "type": "number" }
              },
              {
                "name": "unit",
                "description": "The type of unit to display.",
                "value": { "type": "'byte' | 'bit'" }
              },
              {
                "name": "display",
                "description": "Determines how to display the result, e.g. \"100 bytes\", \"100 b\", or \"100b\".",
                "value": { "type": "'long' | 'short' | 'narrow'" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-format-date",
          "description": "Formats a date/time using the specified locale and options.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "date",
              "description": "The date/time to format. If not set, the current date and time will be used. When passing a string, it's strongly\nrecommended to use the ISO 8601 format to ensure timezones are handled correctly. To convert a date to this format\nin JavaScript, use [`date.toISOString()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString).",
              "value": { "type": "Date | string", "default": "new Date()" }
            },
            {
              "name": "weekday",
              "description": "The format for displaying the weekday.",
              "value": { "type": "'narrow' | 'short' | 'long'" }
            },
            {
              "name": "era",
              "description": "The format for displaying the era.",
              "value": { "type": "'narrow' | 'short' | 'long'" }
            },
            {
              "name": "year",
              "description": "The format for displaying the year.",
              "value": { "type": "'numeric' | '2-digit'" }
            },
            {
              "name": "month",
              "description": "The format for displaying the month.",
              "value": {
                "type": "'numeric' | '2-digit' | 'narrow' | 'short' | 'long'"
              }
            },
            {
              "name": "day",
              "description": "The format for displaying the day.",
              "value": { "type": "'numeric' | '2-digit'" }
            },
            {
              "name": "hour",
              "description": "The format for displaying the hour.",
              "value": { "type": "'numeric' | '2-digit'" }
            },
            {
              "name": "minute",
              "description": "The format for displaying the minute.",
              "value": { "type": "'numeric' | '2-digit'" }
            },
            {
              "name": "second",
              "description": "The format for displaying the second.",
              "value": { "type": "'numeric' | '2-digit'" }
            },
            {
              "name": "time-zone-name",
              "description": "The format for displaying the time.",
              "value": { "type": "'short' | 'long'" }
            },
            {
              "name": "time-zone",
              "description": "The time zone to express the time in.",
              "value": { "type": "string" }
            },
            {
              "name": "hour-format",
              "description": "The format for displaying the hour.",
              "value": { "type": "'auto' | '12' | '24'", "default": "'auto'" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "date",
                "description": "The date/time to format. If not set, the current date and time will be used. When passing a string, it's strongly\nrecommended to use the ISO 8601 format to ensure timezones are handled correctly. To convert a date to this format\nin JavaScript, use [`date.toISOString()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString).",
                "value": { "type": "Date | string" }
              },
              {
                "name": "weekday",
                "description": "The format for displaying the weekday.",
                "value": { "type": "'narrow' | 'short' | 'long'" }
              },
              {
                "name": "era",
                "description": "The format for displaying the era.",
                "value": { "type": "'narrow' | 'short' | 'long'" }
              },
              {
                "name": "year",
                "description": "The format for displaying the year.",
                "value": { "type": "'numeric' | '2-digit'" }
              },
              {
                "name": "month",
                "description": "The format for displaying the month.",
                "value": {
                  "type": "'numeric' | '2-digit' | 'narrow' | 'short' | 'long'"
                }
              },
              {
                "name": "day",
                "description": "The format for displaying the day.",
                "value": { "type": "'numeric' | '2-digit'" }
              },
              {
                "name": "hour",
                "description": "The format for displaying the hour.",
                "value": { "type": "'numeric' | '2-digit'" }
              },
              {
                "name": "minute",
                "description": "The format for displaying the minute.",
                "value": { "type": "'numeric' | '2-digit'" }
              },
              {
                "name": "second",
                "description": "The format for displaying the second.",
                "value": { "type": "'numeric' | '2-digit'" }
              },
              {
                "name": "time-zone-name",
                "description": "The format for displaying the time.",
                "value": { "type": "'short' | 'long'" }
              },
              {
                "name": "time-zone",
                "description": "The time zone to express the time in.",
                "value": { "type": "string" }
              },
              {
                "name": "hour-format",
                "description": "The format for displaying the hour.",
                "value": { "type": "'auto' | '12' | '24'" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-format-number",
          "description": "Formats a number using the specified locale and options.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "value",
              "description": "The number to format.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "type",
              "description": "The formatting style to use.",
              "value": {
                "type": "'currency' | 'decimal' | 'percent'",
                "default": "'decimal'"
              }
            },
            {
              "name": "no-grouping",
              "description": "Turns off grouping separators.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "currency",
              "description": "The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code to use when formatting.",
              "value": { "type": "string", "default": "'USD'" }
            },
            {
              "name": "currency-display",
              "description": "How to display the currency.",
              "value": {
                "type": "'symbol' | 'narrowSymbol' | 'code' | 'name'",
                "default": "'symbol'"
              }
            },
            {
              "name": "minimum-integer-digits",
              "description": "The minimum number of integer digits to use. Possible values are 1-21.",
              "value": { "type": "number" }
            },
            {
              "name": "minimum-fraction-digits",
              "description": "The minimum number of fraction digits to use. Possible values are 0-20.",
              "value": { "type": "number" }
            },
            {
              "name": "maximum-fraction-digits",
              "description": "The maximum number of fraction digits to use. Possible values are 0-0.",
              "value": { "type": "number" }
            },
            {
              "name": "minimum-significant-digits",
              "description": "The minimum number of significant digits to use. Possible values are 1-21.",
              "value": { "type": "number" }
            },
            {
              "name": "maximum-significant-digits",
              "description": "The maximum number of significant digits to use,. Possible values are 1-21.",
              "value": { "type": "number" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "value",
                "description": "The number to format.",
                "value": { "type": "number" }
              },
              {
                "name": "type",
                "description": "The formatting style to use.",
                "value": { "type": "'currency' | 'decimal' | 'percent'" }
              },
              {
                "name": "no-grouping",
                "description": "Turns off grouping separators.",
                "value": { "type": "boolean" }
              },
              {
                "name": "currency",
                "description": "The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code to use when formatting.",
                "value": { "type": "string" }
              },
              {
                "name": "currency-display",
                "description": "How to display the currency.",
                "value": {
                  "type": "'symbol' | 'narrowSymbol' | 'code' | 'name'"
                }
              },
              {
                "name": "minimum-integer-digits",
                "description": "The minimum number of integer digits to use. Possible values are 1-21.",
                "value": { "type": "number" }
              },
              {
                "name": "minimum-fraction-digits",
                "description": "The minimum number of fraction digits to use. Possible values are 0-20.",
                "value": { "type": "number" }
              },
              {
                "name": "maximum-fraction-digits",
                "description": "The maximum number of fraction digits to use. Possible values are 0-0.",
                "value": { "type": "number" }
              },
              {
                "name": "minimum-significant-digits",
                "description": "The minimum number of significant digits to use. Possible values are 1-21.",
                "value": { "type": "number" }
              },
              {
                "name": "maximum-significant-digits",
                "description": "The maximum number of significant digits to use,. Possible values are 1-21.",
                "value": { "type": "number" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-icon",
          "description": "Icons are symbols that can be used to represent various options within an application.\n---\n\n\n### **Events:**\n - **awc-load** - Emitted when the icon has loaded. When using `spriteSheet: true` this will not emit.\n- **awc-error** - Emitted when the icon fails to load due to an error. When using `spriteSheet: true` this will not emit.\n\n### **CSS Parts:**\n - **svg** - The internal SVG element.\n- **use** - The <use> element generated when using `spriteSheet: true`",
          "doc-url": "",
          "attributes": [
            {
              "name": "name",
              "description": "The name of the icon to draw. Available names depend on the icon library being used.",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "src",
              "description": "An external URL of an SVG file. Be sure you trust the content you are including, as it will be executed as code and\ncan result in XSS attacks.",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "label",
              "description": "An alternate description to use for assistive devices. If omitted, the icon will be considered presentational and\nignored by assistive devices.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "library",
              "description": "The name of a registered custom icon library.",
              "value": { "type": "string", "default": "'default'" }
            },
            {
              "name": "loading",
              "description": "How the icon should be loaded.",
              "value": { "type": "'eager' | 'lazy'", "default": "'eager'" }
            }
          ],
          "events": [
            {
              "name": "awc-load",
              "description": "Emitted when the icon has loaded. When using `spriteSheet: true` this will not emit."
            },
            {
              "name": "awc-error",
              "description": "Emitted when the icon fails to load due to an error. When using `spriteSheet: true` this will not emit."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "name",
                "description": "The name of the icon to draw. Available names depend on the icon library being used.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "src",
                "description": "An external URL of an SVG file. Be sure you trust the content you are including, as it will be executed as code and\ncan result in XSS attacks.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "label",
                "description": "An alternate description to use for assistive devices. If omitted, the icon will be considered presentational and\nignored by assistive devices.",
                "value": { "type": "string" }
              },
              {
                "name": "library",
                "description": "The name of a registered custom icon library.",
                "value": { "type": "string" }
              },
              {
                "name": "loading",
                "description": "How the icon should be loaded.",
                "value": { "type": "'eager' | 'lazy'" }
              }
            ],
            "events": [
              {
                "name": "awc-load",
                "description": "Emitted when the icon has loaded. When using `spriteSheet: true` this will not emit."
              },
              {
                "name": "awc-error",
                "description": "Emitted when the icon fails to load due to an error. When using `spriteSheet: true` this will not emit."
              }
            ]
          }
        },
        {
          "name": "awc-icon-button",
          "description": "Icons buttons are simple, icon-only buttons that can be used for actions and in toolbars.\n---\n\n\n### **Events:**\n - **awc-blur** - Emitted when the icon button loses focus.\n- **awc-focus** - Emitted when the icon button gains focus.\n\n### **Methods:**\n - **click()** - Simulates a click on the icon button.\n- **focus(options: _FocusOptions_)** - Sets focus on the icon button.\n- **blur()** - Removes focus from the icon button.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
          "doc-url": "",
          "attributes": [
            {
              "name": "name",
              "description": "The name of the icon to draw. Available names depend on the icon library being used.",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "library",
              "description": "The name of a registered custom icon library.",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "src",
              "description": "An external URL of an SVG file. Be sure you trust the content you are including, as it will be executed as code and\ncan result in XSS attacks.",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "href",
              "description": "When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "target",
              "description": "Tells the browser where to open the link. Only used when `href` is set.",
              "value": {
                "type": "'_blank' | '_parent' | '_self' | '_top' | undefined"
              }
            },
            {
              "name": "download",
              "description": "Tells the browser to download the linked file as this filename. Only used when `href` is set.",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "label",
              "description": "A description that gets read by assistive devices. For optimal accessibility, you should always include a label\nthat describes what the icon button does.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "disabled",
              "description": "Disables the button.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "events": [
            {
              "name": "awc-blur",
              "description": "Emitted when the icon button loses focus."
            },
            {
              "name": "awc-focus",
              "description": "Emitted when the icon button gains focus."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "name",
                "description": "The name of the icon to draw. Available names depend on the icon library being used.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "library",
                "description": "The name of a registered custom icon library.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "src",
                "description": "An external URL of an SVG file. Be sure you trust the content you are including, as it will be executed as code and\ncan result in XSS attacks.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "href",
                "description": "When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "target",
                "description": "Tells the browser where to open the link. Only used when `href` is set.",
                "value": {
                  "type": "'_blank' | '_parent' | '_self' | '_top' | undefined"
                }
              },
              {
                "name": "download",
                "description": "Tells the browser to download the linked file as this filename. Only used when `href` is set.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "label",
                "description": "A description that gets read by assistive devices. For optimal accessibility, you should always include a label\nthat describes what the icon button does.",
                "value": { "type": "string" }
              },
              {
                "name": "disabled",
                "description": "Disables the button.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-blur",
                "description": "Emitted when the icon button loses focus."
              },
              {
                "name": "awc-focus",
                "description": "Emitted when the icon button gains focus."
              }
            ]
          }
        },
        {
          "name": "awc-image",
          "description": "A image component for responsive, high-performance images using image CDNs\n---\n\n\n### **Events:**\n - **awc-load** - Emitted when the image is loaded successfully.\n- **awc-error** - Emitted if an error occurs while loading.\n- **awc-abort** - Emitted occurs when a download is aborted, not when an error occurs.",
          "doc-url": "",
          "attributes": [
            {
              "name": "src",
              "description": "The image URL",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "alt",
              "description": "Defines an alternative text description of the image.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "height",
              "description": "The intrinsic height of the image in pixels. Must be an integer without a unit.",
              "value": { "type": "number | undefined" }
            },
            {
              "name": "width",
              "description": "The intrinsic width of the image in pixels. Must be an integer without a unit.",
              "value": { "type": "number | undefined" }
            },
            {
              "name": "objectFit",
              "description": "By default, images cover the container. If `objectFit` is set, the property is used to specify how an images should be resized to fit its container.",
              "value": {
                "type": "'contain' | 'cover' | 'fill' | 'none' | 'scale-down' | 'inherit' | 'initial'",
                "default": "'cover'"
              }
            },
            {
              "name": "layout",
              "description": "The resizing behaviour of the image.",
              "value": { "type": "Layout", "default": "'constrained'" }
            },
            {
              "name": "priority",
              "description": "By default, images are loaded lazily. If `priority` is set to `true`, the image will be loaded eagerly, and will be given high priority by the browser. This is useful for images that are above the fold, particularly large ones such as hero images.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "background",
              "description": "Either an image URL, CSS gradient or CSS colour value. If set to `auto`, a low-resolution version of the image will be rendered as a background image, with a blurred placeholder effect. This is still loaded from the remote server, so if you can instead provide an inline base64-encoded version of the image or background colour, you should do that instead. Look at [`@unpic/placeholder`](/placeholder/) for a library that can generate these placeholders.\n\nBear in mind that this is not removed after the image loads, so it will be visible if the image has transparency.",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "aspectRatio",
              "description": "Instead of specifying both `width` and `height`, you can specify can `aspectRatio`.",
              "value": { "type": "number | undefined" }
            },
            {
              "name": "cdn",
              "description": "By default, the CDN is auto-detected from the `src` URL. If you want to override this, you can specify a CDN object. See the [unpic](https://github.com/ascorbic/unpic) for supported values.",
              "value": { "type": "ImageCdn | undefined" }
            },
            {
              "name": "breakpoints",
              "description": "By default, the image breakpoints used in the `srcset` are generated based on the layout and image size. You can override this by specifying an array of breakpoints. The breakpoints are specified as an array of numbers, representing the width of the image in pixels.",
              "value": { "type": "number[] | undefined" }
            },
            {
              "name": "crossOrigin",
              "description": "Indicates if the fetching of the image must be done using a CORS request. see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#crossorigin)",
              "value": { "type": "'anonymous' | 'use-credentials' | undefined" }
            },
            {
              "name": "fetchPriority",
              "description": "Provides a hint of the relative priority to use when fetching the image. see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#fetchpriority)",
              "value": { "type": "'high' | 'low' | undefined" }
            },
            {
              "name": "loading",
              "description": "Indicates how the browser should load the image. see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#loading)",
              "value": { "type": "'eager' | 'lazy' | undefined" }
            },
            {
              "name": "decoding",
              "description": "Provides an image decoding hint to the browser. see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#decoding)",
              "value": { "type": "'sync' | 'async' | 'auto' | undefined" }
            },
            {
              "name": "referrerPolicy",
              "description": "A string indicating which referrer to use when fetching the resource. see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#referrerpolicy)",
              "value": {
                "type": "| 'no-referrer'\n    | 'no-referrer-when-downgrade'\n    | 'origin'\n    | 'origin-when-cross-origin'\n    | 'same-origin'\n    | 'strict-origin'\n    | 'strict-origin-when-cross-origin'\n    | 'unsafe-url' | undefined"
              }
            },
            {
              "name": "sizes",
              "description": "One or more strings separated by commas, indicating a set of source sizes. see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes)",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "isMap",
              "description": "This Boolean attribute indicates that the image is part of a [server-side map](https://en.wikipedia.org/wiki/Image_map#Server-side). If so, the coordinates where the user clicked on the image are sent to the server.",
              "value": { "type": "boolean | undefined" }
            },
            {
              "name": "useMap",
              "description": "The partial URL (starting with #) of an image map associated with the element.",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "transformer",
              "description": "Customized URL Transformer",
              "value": { "type": "UrlTransformer | undefined" }
            }
          ],
          "events": [
            {
              "name": "awc-load",
              "description": "Emitted when the image is loaded successfully."
            },
            {
              "name": "awc-error",
              "description": "Emitted if an error occurs while loading."
            },
            {
              "name": "awc-abort",
              "description": "Emitted occurs when a download is aborted, not when an error occurs."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "src",
                "description": "The image URL",
                "value": { "type": "string" }
              },
              {
                "name": "alt",
                "description": "Defines an alternative text description of the image.",
                "value": { "type": "string" }
              },
              {
                "name": "height",
                "description": "The intrinsic height of the image in pixels. Must be an integer without a unit.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "width",
                "description": "The intrinsic width of the image in pixels. Must be an integer without a unit.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "objectFit",
                "description": "By default, images cover the container. If `objectFit` is set, the property is used to specify how an images should be resized to fit its container.",
                "value": {
                  "type": "'contain' | 'cover' | 'fill' | 'none' | 'scale-down' | 'inherit' | 'initial'"
                }
              },
              {
                "name": "layout",
                "description": "The resizing behaviour of the image.",
                "value": { "type": "Layout" }
              },
              {
                "name": "priority",
                "description": "By default, images are loaded lazily. If `priority` is set to `true`, the image will be loaded eagerly, and will be given high priority by the browser. This is useful for images that are above the fold, particularly large ones such as hero images.",
                "value": { "type": "boolean" }
              },
              {
                "name": "background",
                "description": "Either an image URL, CSS gradient or CSS colour value. If set to `auto`, a low-resolution version of the image will be rendered as a background image, with a blurred placeholder effect. This is still loaded from the remote server, so if you can instead provide an inline base64-encoded version of the image or background colour, you should do that instead. Look at [`@unpic/placeholder`](/placeholder/) for a library that can generate these placeholders.\n\nBear in mind that this is not removed after the image loads, so it will be visible if the image has transparency.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "aspectRatio",
                "description": "Instead of specifying both `width` and `height`, you can specify can `aspectRatio`.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "cdn",
                "description": "By default, the CDN is auto-detected from the `src` URL. If you want to override this, you can specify a CDN object. See the [unpic](https://github.com/ascorbic/unpic) for supported values.",
                "value": { "type": "ImageCdn | undefined" }
              },
              {
                "name": "breakpoints",
                "description": "By default, the image breakpoints used in the `srcset` are generated based on the layout and image size. You can override this by specifying an array of breakpoints. The breakpoints are specified as an array of numbers, representing the width of the image in pixels.",
                "value": { "type": "number[] | undefined" }
              },
              {
                "name": "crossOrigin",
                "description": "Indicates if the fetching of the image must be done using a CORS request. see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#crossorigin)",
                "value": {
                  "type": "'anonymous' | 'use-credentials' | undefined"
                }
              },
              {
                "name": "fetchPriority",
                "description": "Provides a hint of the relative priority to use when fetching the image. see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#fetchpriority)",
                "value": { "type": "'high' | 'low' | undefined" }
              },
              {
                "name": "loading",
                "description": "Indicates how the browser should load the image. see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#loading)",
                "value": { "type": "'eager' | 'lazy' | undefined" }
              },
              {
                "name": "decoding",
                "description": "Provides an image decoding hint to the browser. see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#decoding)",
                "value": { "type": "'sync' | 'async' | 'auto' | undefined" }
              },
              {
                "name": "referrerPolicy",
                "description": "A string indicating which referrer to use when fetching the resource. see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#referrerpolicy)",
                "value": {
                  "type": "| 'no-referrer'\n    | 'no-referrer-when-downgrade'\n    | 'origin'\n    | 'origin-when-cross-origin'\n    | 'same-origin'\n    | 'strict-origin'\n    | 'strict-origin-when-cross-origin'\n    | 'unsafe-url' | undefined"
                }
              },
              {
                "name": "sizes",
                "description": "One or more strings separated by commas, indicating a set of source sizes. see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#sizes)",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "isMap",
                "description": "This Boolean attribute indicates that the image is part of a [server-side map](https://en.wikipedia.org/wiki/Image_map#Server-side). If so, the coordinates where the user clicked on the image are sent to the server.",
                "value": { "type": "boolean | undefined" }
              },
              {
                "name": "useMap",
                "description": "The partial URL (starting with #) of an image map associated with the element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "transformer",
                "description": "Customized URL Transformer",
                "value": { "type": "UrlTransformer | undefined" }
              }
            ],
            "events": [
              {
                "name": "awc-load",
                "description": "Emitted when the image is loaded successfully."
              },
              {
                "name": "awc-error",
                "description": "Emitted if an error occurs while loading."
              },
              {
                "name": "awc-abort",
                "description": "Emitted occurs when a download is aborted, not when an error occurs."
              }
            ]
          }
        },
        {
          "name": "awc-image-comparer",
          "description": "Compare visual differences between similar photos with a sliding panel.\n---\n\n\n### **Events:**\n - **awc-change** - Emitted when the position changes.\n\n### **Slots:**\n - **before** - The before image, an `<img>` or `<svg>` element.\n- **after** - The after image, an `<img>` or `<svg>` element.\n- **handle** - The icon used inside the handle.\n\n### **CSS Properties:**\n - **--divider-width** - The width of the dividing line. _(default: undefined)_\n- **--handle-size** - The size of the compare handle. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **before** - The container that wraps the before image.\n- **after** - The container that wraps the after image.\n- **divider** - The divider that separates the images.\n- **handle** - The handle that the user drags to expose the after image.",
          "doc-url": "",
          "attributes": [
            {
              "name": "position",
              "description": "The position of the divider as a percentage.",
              "value": { "type": "number", "default": "50" }
            }
          ],
          "slots": [
            {
              "name": "before",
              "description": "The before image, an `<img>` or `<svg>` element."
            },
            {
              "name": "after",
              "description": "The after image, an `<img>` or `<svg>` element."
            },
            {
              "name": "handle",
              "description": "The icon used inside the handle."
            }
          ],
          "events": [
            {
              "name": "awc-change",
              "description": "Emitted when the position changes."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "position",
                "description": "The position of the divider as a percentage.",
                "value": { "type": "number" }
              }
            ],
            "events": [
              {
                "name": "awc-change",
                "description": "Emitted when the position changes."
              }
            ]
          }
        },
        {
          "name": "awc-include",
          "description": "Includes give you the power to embed external HTML files into the page.\n---\n\n\n### **Events:**\n - **awc-load** - Emitted when the included file is loaded.\n- **awc-error** - Emitted when the included file fails to load due to an error.",
          "doc-url": "",
          "attributes": [
            {
              "name": "src",
              "description": "The location of the HTML file to include. Be sure you trust the content you are including as it will be executed as\ncode and can result in XSS attacks.",
              "value": { "type": "string" }
            },
            {
              "name": "mode",
              "description": "The fetch mode to use.",
              "value": {
                "type": "'cors' | 'no-cors' | 'same-origin'",
                "default": "'cors'"
              }
            },
            {
              "name": "allow-scripts",
              "description": "Allows included scripts to be executed. Be sure you trust the content you are including as it will be executed as\ncode and can result in XSS attacks.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "events": [
            {
              "name": "awc-load",
              "description": "Emitted when the included file is loaded."
            },
            {
              "name": "awc-error",
              "description": "Emitted when the included file fails to load due to an error."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "src",
                "description": "The location of the HTML file to include. Be sure you trust the content you are including as it will be executed as\ncode and can result in XSS attacks.",
                "value": { "type": "string" }
              },
              {
                "name": "mode",
                "description": "The fetch mode to use.",
                "value": { "type": "'cors' | 'no-cors' | 'same-origin'" }
              },
              {
                "name": "allow-scripts",
                "description": "Allows included scripts to be executed. Be sure you trust the content you are including as it will be executed as\ncode and can result in XSS attacks.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-load",
                "description": "Emitted when the included file is loaded."
              },
              {
                "name": "awc-error",
                "description": "Emitted when the included file fails to load due to an error."
              }
            ]
          }
        },
        {
          "name": "awc-input",
          "description": "Inputs collect data from the user.\n---\n\n\n### **Events:**\n - **awc-blur** - Emitted when the control loses focus.\n- **awc-change** - Emitted when an alteration to the control's value is committed by the user.\n- **awc-clear** - Emitted when the clear button is activated.\n- **awc-focus** - Emitted when the control gains focus.\n- **awc-input** - Emitted when the control receives input.\n- **awc-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n\n### **Methods:**\n - **focus(options: _FocusOptions_)** - Sets focus on the input.\n- **blur()** - Removes focus from the input.\n- **select()** - Selects all the text in the input.\n- **setSelectionRange(selectionStart: _number_, selectionEnd: _number_, selectionDirection: _'forward' | 'backward' | 'none'_)** - Sets the start and end positions of the text selection (0-based).\n- **setRangeText(replacement: _string_, start: _number_, end: _number_, selectMode: _'select' | 'start' | 'end' | 'preserve'_)** - Replaces a range of text with a new string.\n- **showPicker()** - Displays the browser picker for an input element (only works if the browser supports it for the input type).\n- **stepUp()** - Increments the value of a numeric input type by the value of the step attribute.\n- **stepDown()** - Decrements the value of a numeric input type by the value of the step attribute.\n- **checkValidity()** - Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity()** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message: _string_)** - Sets a custom validation message. Pass an empty string to restore validity.\n\n### **Slots:**\n - **label** - The input's label. Alternatively, you can use the `label` attribute.\n- **prefix** - Used to prepend a presentational icon or similar element to the input.\n- **suffix** - Used to append a presentational icon or similar element to the input.\n- **clear-icon** - An icon to use in lieu of the default clear icon.\n- **show-password-icon** - An icon to use in lieu of the default show password icon.\n- **hide-password-icon** - An icon to use in lieu of the default hide password icon.\n- **help-text** - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.\n\n### **CSS Parts:**\n - **form-control** - The form control that wraps the label, input, and help text.\n- **form-control-label** - The label's wrapper.\n- **form-control-input** - The input's wrapper.\n- **form-control-help-text** - The help text's wrapper.\n- **base** - The component's base wrapper.\n- **input** - The internal `<input>` control.\n- **prefix** - The container that wraps the prefix.\n- **clear-button** - The clear button.\n- **password-toggle-button** - The password toggle button.\n- **suffix** - The container that wraps the suffix.",
          "doc-url": "",
          "attributes": [
            { "name": "title", "value": { "type": "string", "default": "''" } },
            {
              "name": "type",
              "description": "The type of input. Works the same as a native `<input>` element, but only a subset of types are supported. Defaults\nto `text`.",
              "value": {
                "type": "| 'date'\n    | 'datetime-local'\n    | 'email'\n    | 'number'\n    | 'password'\n    | 'search'\n    | 'tel'\n    | 'text'\n    | 'time'\n    | 'url'",
                "default": "'text'"
              }
            },
            {
              "name": "name",
              "description": "The name of the input, submitted as a name/value pair with form data.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "value",
              "description": "The current value of the input, submitted as a name/value pair with form data.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "size",
              "description": "The input's size.",
              "value": {
                "type": "'small' | 'medium' | 'large'",
                "default": "'medium'"
              }
            },
            {
              "name": "filled",
              "description": "Draws a filled input.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "pill",
              "description": "Draws a pill-style input with rounded edges.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "label",
              "description": "The input's label. If you need to display HTML, use the `label` slot instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "help-text",
              "description": "The input's help text. If you need to display HTML, use the `help-text` slot instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "clearable",
              "description": "Adds a clear button when the input is not empty.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "Disables the input.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "placeholder",
              "description": "Placeholder text to show as a hint when the input is empty.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "readonly",
              "description": "Makes the input readonly.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "password-toggle",
              "description": "Adds a button to toggle the password's visibility. Only applies to password types.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "password-visible",
              "description": "Determines whether or not the password is currently visible. Only applies to password input types.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "no-spin-buttons",
              "description": "Hides the browser's built-in increment/decrement spin buttons for number inputs.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "form",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "required",
              "description": "Makes the input a required field.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "pattern",
              "description": "A regular expression pattern to validate input against.",
              "value": { "type": "string" }
            },
            {
              "name": "minlength",
              "description": "The minimum length of input that will be considered valid.",
              "value": { "type": "number" }
            },
            {
              "name": "maxlength",
              "description": "The maximum length of input that will be considered valid.",
              "value": { "type": "number" }
            },
            {
              "name": "min",
              "description": "The input's minimum value. Only applies to date and number input types.",
              "value": { "type": "number | string" }
            },
            {
              "name": "max",
              "description": "The input's maximum value. Only applies to date and number input types.",
              "value": { "type": "number | string" }
            },
            {
              "name": "step",
              "description": "Specifies the granularity that the value must adhere to, or the special value `any` which means no stepping is\nimplied, allowing any numeric value. Only applies to date and number input types.",
              "value": { "type": "number | 'any'" }
            },
            {
              "name": "autocapitalize",
              "description": "Controls whether and how text input is automatically capitalized as it is entered by the user.",
              "value": {
                "type": "'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters'"
              }
            },
            {
              "name": "autocorrect",
              "description": "Indicates whether the browser's autocorrect feature is on or off.",
              "value": { "type": "'off' | 'on'" }
            },
            {
              "name": "autocomplete",
              "description": "Specifies what permission the browser has to provide assistance in filling out form field values. Refer to\n[this page on MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) for available values.",
              "value": { "type": "string" }
            },
            {
              "name": "autofocus",
              "description": "Indicates that the input should receive focus on page load.",
              "value": { "type": "boolean" }
            },
            {
              "name": "enterkeyhint",
              "description": "Used to customize the label or icon of the Enter key on virtual keyboards.",
              "value": {
                "type": "'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send'"
              }
            },
            {
              "name": "spellcheck",
              "description": "Enables spell checking on the input.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "inputmode",
              "description": "Tells the browser what type of data will be entered by the user, allowing it to display the appropriate virtual\nkeyboard on supportive devices.",
              "value": {
                "type": "'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url'"
              }
            }
          ],
          "slots": [
            {
              "name": "label",
              "description": "The input's label. Alternatively, you can use the `label` attribute."
            },
            {
              "name": "prefix",
              "description": "Used to prepend a presentational icon or similar element to the input."
            },
            {
              "name": "suffix",
              "description": "Used to append a presentational icon or similar element to the input."
            },
            {
              "name": "clear-icon",
              "description": "An icon to use in lieu of the default clear icon."
            },
            {
              "name": "show-password-icon",
              "description": "An icon to use in lieu of the default show password icon."
            },
            {
              "name": "hide-password-icon",
              "description": "An icon to use in lieu of the default hide password icon."
            },
            {
              "name": "help-text",
              "description": "Text that describes how to use the input. Alternatively, you can use the `help-text` attribute."
            }
          ],
          "events": [
            {
              "name": "awc-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "awc-change",
              "description": "Emitted when an alteration to the control's value is committed by the user."
            },
            {
              "name": "awc-clear",
              "description": "Emitted when the clear button is activated."
            },
            {
              "name": "awc-focus",
              "description": "Emitted when the control gains focus."
            },
            {
              "name": "awc-input",
              "description": "Emitted when the control receives input."
            },
            {
              "name": "awc-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              { "name": "title", "value": { "type": "string" } },
              {
                "name": "type",
                "description": "The type of input. Works the same as a native `<input>` element, but only a subset of types are supported. Defaults\nto `text`.",
                "value": {
                  "type": "| 'date'\n    | 'datetime-local'\n    | 'email'\n    | 'number'\n    | 'password'\n    | 'search'\n    | 'tel'\n    | 'text'\n    | 'time'\n    | 'url'"
                }
              },
              {
                "name": "name",
                "description": "The name of the input, submitted as a name/value pair with form data.",
                "value": { "type": "string" }
              },
              {
                "name": "value",
                "description": "The current value of the input, submitted as a name/value pair with form data.",
                "value": { "type": "string" }
              },
              {
                "name": "size",
                "description": "The input's size.",
                "value": { "type": "'small' | 'medium' | 'large'" }
              },
              {
                "name": "filled",
                "description": "Draws a filled input.",
                "value": { "type": "boolean" }
              },
              {
                "name": "pill",
                "description": "Draws a pill-style input with rounded edges.",
                "value": { "type": "boolean" }
              },
              {
                "name": "label",
                "description": "The input's label. If you need to display HTML, use the `label` slot instead.",
                "value": { "type": "string" }
              },
              {
                "name": "help-text",
                "description": "The input's help text. If you need to display HTML, use the `help-text` slot instead.",
                "value": { "type": "string" }
              },
              {
                "name": "clearable",
                "description": "Adds a clear button when the input is not empty.",
                "value": { "type": "boolean" }
              },
              {
                "name": "disabled",
                "description": "Disables the input.",
                "value": { "type": "boolean" }
              },
              {
                "name": "placeholder",
                "description": "Placeholder text to show as a hint when the input is empty.",
                "value": { "type": "string" }
              },
              {
                "name": "readonly",
                "description": "Makes the input readonly.",
                "value": { "type": "boolean" }
              },
              {
                "name": "password-toggle",
                "description": "Adds a button to toggle the password's visibility. Only applies to password types.",
                "value": { "type": "boolean" }
              },
              {
                "name": "password-visible",
                "description": "Determines whether or not the password is currently visible. Only applies to password input types.",
                "value": { "type": "boolean" }
              },
              {
                "name": "no-spin-buttons",
                "description": "Hides the browser's built-in increment/decrement spin buttons for number inputs.",
                "value": { "type": "boolean" }
              },
              {
                "name": "form",
                "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
                "value": { "type": "string" }
              },
              {
                "name": "required",
                "description": "Makes the input a required field.",
                "value": { "type": "boolean" }
              },
              {
                "name": "pattern",
                "description": "A regular expression pattern to validate input against.",
                "value": { "type": "string" }
              },
              {
                "name": "minlength",
                "description": "The minimum length of input that will be considered valid.",
                "value": { "type": "number" }
              },
              {
                "name": "maxlength",
                "description": "The maximum length of input that will be considered valid.",
                "value": { "type": "number" }
              },
              {
                "name": "min",
                "description": "The input's minimum value. Only applies to date and number input types.",
                "value": { "type": "number | string" }
              },
              {
                "name": "max",
                "description": "The input's maximum value. Only applies to date and number input types.",
                "value": { "type": "number | string" }
              },
              {
                "name": "step",
                "description": "Specifies the granularity that the value must adhere to, or the special value `any` which means no stepping is\nimplied, allowing any numeric value. Only applies to date and number input types.",
                "value": { "type": "number | 'any'" }
              },
              {
                "name": "autocapitalize",
                "description": "Controls whether and how text input is automatically capitalized as it is entered by the user.",
                "value": {
                  "type": "'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters'"
                }
              },
              {
                "name": "autocorrect",
                "description": "Indicates whether the browser's autocorrect feature is on or off.",
                "value": { "type": "'off' | 'on'" }
              },
              {
                "name": "autocomplete",
                "description": "Specifies what permission the browser has to provide assistance in filling out form field values. Refer to\n[this page on MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) for available values.",
                "value": { "type": "string" }
              },
              {
                "name": "autofocus",
                "description": "Indicates that the input should receive focus on page load.",
                "value": { "type": "boolean" }
              },
              {
                "name": "enterkeyhint",
                "description": "Used to customize the label or icon of the Enter key on virtual keyboards.",
                "value": {
                  "type": "'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send'"
                }
              },
              {
                "name": "spellcheck",
                "description": "Enables spell checking on the input.",
                "value": { "type": "boolean" }
              },
              {
                "name": "inputmode",
                "description": "Tells the browser what type of data will be entered by the user, allowing it to display the appropriate virtual\nkeyboard on supportive devices.",
                "value": {
                  "type": "'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url'"
                }
              }
            ],
            "events": [
              {
                "name": "awc-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "awc-change",
                "description": "Emitted when an alteration to the control's value is committed by the user."
              },
              {
                "name": "awc-clear",
                "description": "Emitted when the clear button is activated."
              },
              {
                "name": "awc-focus",
                "description": "Emitted when the control gains focus."
              },
              {
                "name": "awc-input",
                "description": "Emitted when the control receives input."
              },
              {
                "name": "awc-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "awc-lottie-player",
          "description": "Web Component for playing Lottie animations in your web app.\n---\n\n\n### **Events:**\n - **awc-lottie-complete** - -\tAnimation is complete – including all loops\n- **awc-lottie-destroyed** - -\tAnimation is destroyed\n- **awc-lottie-error** - -\tThe source cannot be parsed, fails to load or has format errors\n- **awc-lottie-frame** - -\tA new frame is entered\n- **awc-lottie-freeze** - -\tAnimation is paused due to player being out of view\n- **awc-lottie-load** - -\tAnimation is loaded\n- **awc-lottie-loop** - -\tA loop is completed\n- **awc-lottie-play** - -\tAnimation has started playing\n- **awc-lottie-pause** - -\tAnimation has paused\n- **awc-lottie-ready** - -\tAnimation is loaded and player is ready\n- **awc-lottie-stop** - -\tAnimation has stopped\n\n### **Methods:**\n - **load(src: _string | LottieJSON_)** - Initialize Lottie Web player\n- **getManifest()** - Get Lottie Manifest\n- **addAnimation(configs: _[ AnimationConfig ]_, fileName: _string_, shouldDownload: _boolean_)** - Creates a new dotLottie file, by combinig several animations\n- **getLottie()** - Returns the lottie-web instance used in the component\n- **play()** - Play\n- **pause()** - Pause\n- **stop()** - Stop\n- **destroy()** - Destroy animation and element\n- **seek(value: _number | string_)** - Seek to a given frame\n- **snapshot()** - Snapshot and download the current frame as SVG\n- **setSubframe(value: _boolean_)** - Toggles subframe, for more smooth animations\n- **setCount(value: _number_)** - Dynamically set count for loops\n- **reload()** - Reload animation\n- **setSpeed(value: _number_)** - Set animation playback speed\n- **setDirection(value: _AnimationDirection_)** - Animation play direction\n- **setLooping(value: _boolean_)** - Set loop\n- **setMultiAnimationSettings(settings: _AnimationSettings[]_)** - Set Multi-animation settings\n- **togglePlay()** - Toggle playing state\n- **toggleLooping()** - Toggle loop\n- **toggleBoomerang()** - Toggle Boomerang\n- **next()** - Skip to next animation\n- **prev()** - Skip to previous animation\n\n### **CSS Properties:**\n - **--toolbar-height** - The height of the toolbar. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **animation** - The animation container.\n- **error** - The error container.\n- **controls** - The controls container.\n- **button** - All buttons in the controls.\n- **button-prev** - The previous button.\n- **button-next** - The next button.\n- **button-playpause** - The play/pause button.\n- **button-stop** - The stop button.\n- **button-loop** - The loop button.\n- **button-boomerang** - The boomerang button.",
          "doc-url": "",
          "attributes": [
            {
              "name": "autoplay",
              "description": "Play animation on load\tand if visible.",
              "value": { "type": "Autoplay | undefined" }
            },
            {
              "name": "background",
              "description": "Background color",
              "value": {
                "type": "string | undefined",
                "default": "'transparent'"
              }
            },
            {
              "name": "controls",
              "description": "Show controls",
              "value": { "type": "Controls | undefined", "default": "false" }
            },
            {
              "name": "count",
              "description": "Number of times to loop the animation",
              "value": { "type": "number | undefined" }
            },
            {
              "name": "currentState",
              "description": "Current player state",
              "value": { "type": "PlayerState | undefined" }
            },
            {
              "name": "description",
              "description": "Description for screen readers",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "direction",
              "description": "Direction of animation (1 = forward, -1 = backward)",
              "value": {
                "type": "AnimationDirection | undefined",
                "default": "1"
              }
            },
            {
              "name": "hover",
              "description": "Whether to play on mouseover",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "intermission",
              "description": "Intermission time in seconds between animation loops",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "loop",
              "description": "Whether to loop the animation",
              "value": { "type": "Loop | undefined", "default": "false" }
            },
            {
              "name": "mode",
              "description": "Play mode (bounce or normal)",
              "value": { "type": "PlayMode | undefined" }
            },
            {
              "name": "multiAnimationSettings",
              "description": "Multi-animation settings\nIf set, these will override conflicting settings",
              "value": { "type": "AnimationSettings[] | undefined" }
            },
            {
              "name": "objectfit",
              "description": "Resizing to container",
              "value": {
                "type": "ObjectFit | undefined",
                "default": "'contain'"
              }
            },
            {
              "name": "renderer",
              "description": "Renderer to use (svg, canvas or html)",
              "value": {
                "type": "RendererType | undefined",
                "default": "'svg'"
              }
            },
            {
              "name": "segment",
              "description": "Play only part of an animation.\nE.g. from frame 10 to frame 60 would be [10, 60]",
              "value": { "type": "AnimationSegment | undefined" }
            },
            {
              "name": "simple",
              "description": "Hide advanced controls like loop and boomerang",
              "value": { "type": "boolean | undefined", "default": "false" }
            },
            {
              "name": "speed",
              "description": "Speed",
              "value": { "type": "number | undefined", "default": "1" }
            },
            {
              "name": "src",
              "description": "JSON/dotLottie data or URL",
              "value": { "type": "string" }
            },
            {
              "name": "subframe",
              "description": "When enabled this can help to reduce flicker on some animations, especially on Safari and iOS devices.",
              "value": { "type": "Subframe | undefined", "default": "true" }
            }
          ],
          "events": [
            {
              "name": "awc-lottie-complete",
              "description": "-\tAnimation is complete – including all loops"
            },
            {
              "name": "awc-lottie-destroyed",
              "description": "-\tAnimation is destroyed"
            },
            {
              "name": "awc-lottie-error",
              "description": "-\tThe source cannot be parsed, fails to load or has format errors"
            },
            {
              "name": "awc-lottie-frame",
              "description": "-\tA new frame is entered"
            },
            {
              "name": "awc-lottie-freeze",
              "description": "-\tAnimation is paused due to player being out of view"
            },
            {
              "name": "awc-lottie-load",
              "description": "-\tAnimation is loaded"
            },
            {
              "name": "awc-lottie-loop",
              "description": "-\tA loop is completed"
            },
            {
              "name": "awc-lottie-play",
              "description": "-\tAnimation has started playing"
            },
            {
              "name": "awc-lottie-pause",
              "description": "-\tAnimation has paused"
            },
            {
              "name": "awc-lottie-ready",
              "description": "-\tAnimation is loaded and player is ready"
            },
            {
              "name": "awc-lottie-stop",
              "description": "-\tAnimation has stopped"
            }
          ],
          "js": {
            "properties": [
              {
                "name": "autoplay",
                "description": "Play animation on load\tand if visible.",
                "value": { "type": "Autoplay | undefined" }
              },
              {
                "name": "background",
                "description": "Background color",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "controls",
                "description": "Show controls",
                "value": { "type": "Controls | undefined" }
              },
              {
                "name": "count",
                "description": "Number of times to loop the animation",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "currentState",
                "description": "Current player state",
                "value": { "type": "PlayerState | undefined" }
              },
              {
                "name": "description",
                "description": "Description for screen readers",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "direction",
                "description": "Direction of animation (1 = forward, -1 = backward)",
                "value": { "type": "AnimationDirection | undefined" }
              },
              {
                "name": "hover",
                "description": "Whether to play on mouseover",
                "value": { "type": "boolean" }
              },
              {
                "name": "intermission",
                "description": "Intermission time in seconds between animation loops",
                "value": { "type": "number" }
              },
              {
                "name": "loop",
                "description": "Whether to loop the animation",
                "value": { "type": "Loop | undefined" }
              },
              {
                "name": "mode",
                "description": "Play mode (bounce or normal)",
                "value": { "type": "PlayMode | undefined" }
              },
              {
                "name": "multiAnimationSettings",
                "description": "Multi-animation settings\nIf set, these will override conflicting settings",
                "value": { "type": "AnimationSettings[] | undefined" }
              },
              {
                "name": "objectfit",
                "description": "Resizing to container",
                "value": { "type": "ObjectFit | undefined" }
              },
              {
                "name": "renderer",
                "description": "Renderer to use (svg, canvas or html)",
                "value": { "type": "RendererType | undefined" }
              },
              {
                "name": "segment",
                "description": "Play only part of an animation.\nE.g. from frame 10 to frame 60 would be [10, 60]",
                "value": { "type": "AnimationSegment | undefined" }
              },
              {
                "name": "simple",
                "description": "Hide advanced controls like loop and boomerang",
                "value": { "type": "boolean | undefined" }
              },
              {
                "name": "speed",
                "description": "Speed",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "src",
                "description": "JSON/dotLottie data or URL",
                "value": { "type": "string" }
              },
              {
                "name": "subframe",
                "description": "When enabled this can help to reduce flicker on some animations, especially on Safari and iOS devices.",
                "value": { "type": "Subframe | undefined" }
              }
            ],
            "events": [
              {
                "name": "awc-lottie-complete",
                "description": "-\tAnimation is complete – including all loops"
              },
              {
                "name": "awc-lottie-destroyed",
                "description": "-\tAnimation is destroyed"
              },
              {
                "name": "awc-lottie-error",
                "description": "-\tThe source cannot be parsed, fails to load or has format errors"
              },
              {
                "name": "awc-lottie-frame",
                "description": "-\tA new frame is entered"
              },
              {
                "name": "awc-lottie-freeze",
                "description": "-\tAnimation is paused due to player being out of view"
              },
              {
                "name": "awc-lottie-load",
                "description": "-\tAnimation is loaded"
              },
              {
                "name": "awc-lottie-loop",
                "description": "-\tA loop is completed"
              },
              {
                "name": "awc-lottie-play",
                "description": "-\tAnimation has started playing"
              },
              {
                "name": "awc-lottie-pause",
                "description": "-\tAnimation has paused"
              },
              {
                "name": "awc-lottie-ready",
                "description": "-\tAnimation is loaded and player is ready"
              },
              {
                "name": "awc-lottie-stop",
                "description": "-\tAnimation has stopped"
              }
            ]
          }
        },
        {
          "name": "awc-map",
          "description": "Element which defines a Leaflet map.\n---\n\n\n### **Events:**\n - **awc-map** - type : popupclose - Emitted when a popup bound to the marker is closed.\n\n### **Methods:**\n - **toGeoJSON(): _{ type: 'FeatureCollection'; features: unknown }_** - Returns a GeoJSON including all the features of the map\n\n### **CSS Properties:**\n - **--link-color** - --link-color - The color of the links. _(default: var(--awc-color-primary-600))_\n- **--popup-tip-size** - --popup-tip-size - The size of the popup tip. _(default: 1rem)_\n- **--popup-text-color** - --popup-text-color - The color of the popup text. _(default: var(--awc-text-paragraph-color))_\n- **--popup-background-color** - --popup-background-color - The background color of the popup. _(default: var(--awc-panel-background-color))_\n- **--popup-border-radius** - --popup-border-radius - The border radius of the popup. _(default: var(--awc-panel-border-radius))_\n- **--popup-padding** - --popup-padding - The padding of the popup. _(default: var(--awc-spacing-large) var(--awc-spacing-large) var(--awc-spacing-medium))_\n- **--popup-box-shadow** - --popup-box-shadow - The box shadow of the popup. _(default: var(--awc-shadow-medium))_\n- **--controls-background-color** - --controls-background-color - The background color of the controls. _(default: var(--awc-panel-background-color))_\n- **--controls-border-color** - --controls-border-color - The border color of the controls. _(default: var(--awc-panel-border-color))_\n- **--controls-border-width** - --controls-border-width - The border width of the controls. _(default: var(--awc-panel-border-width))_\n- **--controls-border-radius** - --controls-border-radius - The border radius of the controls. _(default: var(--awc-panel-border-radius))_\n- **--controls-text-color** - --controls-text-color - The text color of the controls. _(default: var(--awc-color-neutral-900))_\n- **--controls-box-shadow** - --controls-box-shadow - The box shadow of the controls. _(default: var(--awc-shadow-medium))_\n- **--controls-location-active-color** - --controls-location-active-color - The active color of the location control. _(default: var(--awc-color-secondary-600))_\n- **--controls-location-following-color** - --controls-location-following-color - The following color of the location control. _(default: var(--awc-color-primary-600))_\n- **--attribution-background-color** - --attribution-background-color - The background color of the attribution. _(default: var(--awc-panel-background-color))_\n- **--attribution-text-color** - --attribution-text-color - The text color of the attribution. _(default: var(--awc-color-neutral-900))_\n- **--attribution-opacity** - --attribution-opacity - The opacity of the attribution. _(default: 0.8)_\n- **--cluster-opacity** - --cluster-opacity - The opacity of the cluster. _(default: 0.8)_\n- **--cluster-ring-opacity** - --cluster-ring-opacity - The opacity of the cluster ring. _(default: 0.6)_\n- **--cluster-small-color** - --cluster-small-color - The color of the small cluster. _(default: var(--awc-color-neutral-0))_\n- **--cluster-small-background-color** - --cluster-small-background-color - The background color of the small cluster. _(default: var(--awc-color-primary-600))_\n- **--cluster-medium-color** - --cluster-medium-color - The color of the medium cluster. _(default: var(--awc-color-neutral-0))_\n- **--cluster-medium-background-color** - --cluster-medium-background-color - The background color of the medium cluster. _(default: var(--awc-color-primary-600))_\n- **--cluster-large-color** - --cluster-large-color - The color of the large cluster. _(default: var(--awc-color-neutral-0))_\n- **--cluster-large-background-color** - --cluster-large-background-color - The background color of the large cluster. _(default: var(--awc-color-primary-600))_\n- **--legend-contents-background** - --legend-contents-background - The background color of the legend contents. _(default: rgba(0, 0, 0, 0.25))_",
          "doc-url": "",
          "attributes": [
            {
              "name": "latitude",
              "description": "The `latitude` attribute sets the map center.",
              "value": { "type": "number", "default": "51" }
            },
            {
              "name": "longitude",
              "description": "The `longitude` attribute sets the map center.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "fullscreen-control",
              "description": "Whether the map should display a fullscreen control",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "zoom",
              "description": "The `zoom` attribute sets the map zoom.",
              "value": { "type": "number", "default": "-1" }
            },
            {
              "name": "min-zoom",
              "description": "The `min-zoom` attribute sets the minimum zoom level of the map. Overrides any minZoom set on map layers.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "max-zoom",
              "description": "The `maxZoom` attribute sets the maximum zoom level of the map. This overrides any maxZoom set on map layers.",
              "value": {
                "type": "string",
                "default": "DEFAULT_TILE_LAYER_MAX_ZOOM"
              }
            },
            {
              "name": "no-dragging",
              "description": "The `no-dragging` attribute disables whether the map is draggable with mouse/touch or not.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "no-touch-zoom",
              "description": "The `no-touch-zoom` attribute disables whether the map can be zoomed by touch-dragging with two fingers.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "no-scroll-wheel-zoom",
              "description": "The `no-scroll-wheel-zoom` attribute disables whether the map can be zoomed by using the mouse wheel. If passed 'center', it will zoom to the center of the view regardless of where the mouse was.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "no-double-click-zoom",
              "description": "The `no-double-click-zoom` attribute disables the whether the map can be zoomed in by double clicking on it and zoomed out by double clicking while holding shift. If passed 'center', double-click zoom will zoom to the center of the view regardless of where the mouse was.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "no-box-zoom",
              "description": "The `no-box-zoom` attribute disable the whether the map can be zoomed to a rectangular area specified by dragging the mouse while pressing shift.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "no-tap",
              "description": "The `no-tap` attribute disables mobile hacks for supporting instant taps (fixing 200ms click delay on iOS/Android) and touch holds (fired as contextmenu events).",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "tap-tolerance",
              "description": "The `tap-tolerance` attribute sets the max number of pixels a user can shift his finger during touch for it to be considered a valid tap.",
              "value": { "type": "number", "default": "15" }
            },
            {
              "name": "no-track-resize",
              "description": "The `no-track-resize` attribute disables whether the map automatically handles browser window resize to update itself.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "world-copy-jump",
              "description": "The `world-copy-jump` attribute sets whether the map tracks when you pan to another \"copy\" of the world and seamlessly jumps to the original one so that all overlays like markers and vector layers are still visible.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "no-close-popup-on-click",
              "description": "The `no-close-popup-on-click` attribute disables whether popups are closed when user clicks the map.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "no-bounce-at-zoom-limits",
              "description": "The `no-bounce-at-zoom-limits` attribute disables whether the map to zoom beyond min/max zoom and then bounce back when pinch-zooming.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "no-keyboard",
              "description": "The `no-keyboard` attribute disables whether the map is focusable and allows users to navigate the map with keyboard arrows and +/- keys.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "no-inertia",
              "description": "The `no-inertia` attribute disables panning of the map will have an inertia effect where the map builds momentum while dragging and continues moving in the same direction for some time. Feels especially nice on touch devices.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "inertia-deceleration",
              "description": "The `inertia-deceleration` attribute sets the rate with which the inertial movement slows down, in pixels/second2.",
              "value": { "type": "number", "default": "3000" }
            },
            {
              "name": "inertia-max-speed",
              "description": "The `inertia-max-speed` attribute sets the max speed of the inertial movement, in pixels/second.",
              "value": { "type": "number", "default": "1500" }
            },
            {
              "name": "no-zoom-control",
              "description": "The `no-zoom-control` attribute disables the zoom control is added to the map by default.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "no-attribution-control",
              "description": "The `no-attribution-control` attribute disable the attribution control is added to the map by default.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "zoom-animation-threshold",
              "description": "The `zoom-animation-threshold` attribute sets the maximum number of zoom level differences that still use animation",
              "value": { "type": "number", "default": "4" }
            },
            {
              "name": "image-path",
              "description": "`L.Icon.Default.imagePath` url. When unset, the element will attempt to guess using `import.meta.url`.",
              "value": { "type": "string" }
            },
            {
              "name": "fit-to-markers",
              "description": "If set, the map is zoomed such that all elements in it are visible",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "stylesheet",
              "description": "External CSS stylesheet",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [
            {
              "name": "awc-map",
              "description": "type : popupclose - Emitted when a popup bound to the marker is closed."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "latitude",
                "description": "The `latitude` attribute sets the map center.",
                "value": { "type": "number" }
              },
              {
                "name": "longitude",
                "description": "The `longitude` attribute sets the map center.",
                "value": { "type": "number" }
              },
              {
                "name": "fullscreen-control",
                "description": "Whether the map should display a fullscreen control",
                "value": { "type": "boolean" }
              },
              {
                "name": "zoom",
                "description": "The `zoom` attribute sets the map zoom.",
                "value": { "type": "number" }
              },
              {
                "name": "min-zoom",
                "description": "The `min-zoom` attribute sets the minimum zoom level of the map. Overrides any minZoom set on map layers.",
                "value": { "type": "number" }
              },
              {
                "name": "max-zoom",
                "description": "The `maxZoom` attribute sets the maximum zoom level of the map. This overrides any maxZoom set on map layers.",
                "value": {}
              },
              {
                "name": "no-dragging",
                "description": "The `no-dragging` attribute disables whether the map is draggable with mouse/touch or not.",
                "value": { "type": "boolean" }
              },
              {
                "name": "no-touch-zoom",
                "description": "The `no-touch-zoom` attribute disables whether the map can be zoomed by touch-dragging with two fingers.",
                "value": { "type": "boolean" }
              },
              {
                "name": "no-scroll-wheel-zoom",
                "description": "The `no-scroll-wheel-zoom` attribute disables whether the map can be zoomed by using the mouse wheel. If passed 'center', it will zoom to the center of the view regardless of where the mouse was.",
                "value": { "type": "boolean" }
              },
              {
                "name": "no-double-click-zoom",
                "description": "The `no-double-click-zoom` attribute disables the whether the map can be zoomed in by double clicking on it and zoomed out by double clicking while holding shift. If passed 'center', double-click zoom will zoom to the center of the view regardless of where the mouse was.",
                "value": { "type": "boolean" }
              },
              {
                "name": "no-box-zoom",
                "description": "The `no-box-zoom` attribute disable the whether the map can be zoomed to a rectangular area specified by dragging the mouse while pressing shift.",
                "value": { "type": "boolean" }
              },
              {
                "name": "no-tap",
                "description": "The `no-tap` attribute disables mobile hacks for supporting instant taps (fixing 200ms click delay on iOS/Android) and touch holds (fired as contextmenu events).",
                "value": { "type": "boolean" }
              },
              {
                "name": "tap-tolerance",
                "description": "The `tap-tolerance` attribute sets the max number of pixels a user can shift his finger during touch for it to be considered a valid tap.",
                "value": { "type": "number" }
              },
              {
                "name": "no-track-resize",
                "description": "The `no-track-resize` attribute disables whether the map automatically handles browser window resize to update itself.",
                "value": { "type": "boolean" }
              },
              {
                "name": "world-copy-jump",
                "description": "The `world-copy-jump` attribute sets whether the map tracks when you pan to another \"copy\" of the world and seamlessly jumps to the original one so that all overlays like markers and vector layers are still visible.",
                "value": { "type": "boolean" }
              },
              {
                "name": "no-close-popup-on-click",
                "description": "The `no-close-popup-on-click` attribute disables whether popups are closed when user clicks the map.",
                "value": { "type": "boolean" }
              },
              {
                "name": "no-bounce-at-zoom-limits",
                "description": "The `no-bounce-at-zoom-limits` attribute disables whether the map to zoom beyond min/max zoom and then bounce back when pinch-zooming.",
                "value": { "type": "boolean" }
              },
              {
                "name": "no-keyboard",
                "description": "The `no-keyboard` attribute disables whether the map is focusable and allows users to navigate the map with keyboard arrows and +/- keys.",
                "value": { "type": "boolean" }
              },
              {
                "name": "no-inertia",
                "description": "The `no-inertia` attribute disables panning of the map will have an inertia effect where the map builds momentum while dragging and continues moving in the same direction for some time. Feels especially nice on touch devices.",
                "value": { "type": "boolean" }
              },
              {
                "name": "inertia-deceleration",
                "description": "The `inertia-deceleration` attribute sets the rate with which the inertial movement slows down, in pixels/second2.",
                "value": { "type": "number" }
              },
              {
                "name": "inertia-max-speed",
                "description": "The `inertia-max-speed` attribute sets the max speed of the inertial movement, in pixels/second.",
                "value": { "type": "number" }
              },
              {
                "name": "no-zoom-control",
                "description": "The `no-zoom-control` attribute disables the zoom control is added to the map by default.",
                "value": { "type": "boolean" }
              },
              {
                "name": "no-attribution-control",
                "description": "The `no-attribution-control` attribute disable the attribution control is added to the map by default.",
                "value": { "type": "boolean" }
              },
              {
                "name": "zoom-animation-threshold",
                "description": "The `zoom-animation-threshold` attribute sets the maximum number of zoom level differences that still use animation",
                "value": { "type": "number" }
              },
              {
                "name": "image-path",
                "description": "`L.Icon.Default.imagePath` url. When unset, the element will attempt to guess using `import.meta.url`.",
                "value": { "type": "string" }
              },
              {
                "name": "fit-to-markers",
                "description": "If set, the map is zoomed such that all elements in it are visible",
                "value": { "type": "boolean" }
              },
              {
                "name": "stylesheet",
                "description": "External CSS stylesheet",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": [
              {
                "name": "awc-map",
                "description": "type : popupclose - Emitted when a popup bound to the marker is closed."
              }
            ]
          }
        },
        {
          "name": "awc-map-circle",
          "description": "Element for putting a circle on the map\n---\n\n\n### **Slots:**\n - _default_ - The default slot for popup content.",
          "doc-url": "",
          "attributes": [
            {
              "name": "longitude",
              "description": "The circle's longitude coordinate",
              "value": { "type": "number | string | undefined" }
            },
            {
              "name": "latitude",
              "description": "The circle's latitude coordinate",
              "value": { "type": "number | string | undefined" }
            },
            {
              "name": "radius",
              "description": "The circle's radius is metres",
              "value": {
                "type": "number | string | undefined",
                "default": "100"
              }
            },
            {
              "name": "stroke",
              "description": "The attribute `stroke` sets whether to draw stroke along the path. Set it to false to disable borders on polygons or circles.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "color",
              "description": "The attribute `color` sets the stroke color.",
              "value": { "type": "string", "default": "'#03f'" }
            },
            {
              "name": "weight",
              "description": "The attribute `weight` sets the stroke width in pixels.",
              "value": { "type": "number | string | undefined", "default": "5" }
            },
            {
              "name": "opacity",
              "description": "The attribute `opacity` sets the stroke opacity.",
              "value": {
                "type": "number | string | undefined",
                "default": "0.5"
              }
            },
            {
              "name": "fill",
              "description": "The attribute `fill` sets the whether to fill the path with color. Set it to false to disable filling on polygons or circles.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "fill-color",
              "description": "The attribute `fill-color` sets the fill color.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "fill-opacity",
              "description": "The attribute `fill-opacity` sets the fill opacity.",
              "value": {
                "type": "number | string | undefined",
                "default": "0.2"
              }
            },
            {
              "name": "dash-array",
              "description": "The attribute `dash-array` sets a string that defines the stroke dash pattern. Doesn't work on canvas-powered layers (e.g. Android 2).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "line-cap",
              "description": "The attribute `line-cap` defines the shape to be used at the end of the stroke.",
              "value": { "type": "string", "default": "undefined" }
            },
            {
              "name": "line-join",
              "description": "The attribute `line-join` sets the string that defines shape to be used at the corners of the stroke.",
              "value": { "type": "string", "default": "undefined" }
            },
            {
              "name": "pointer-events",
              "description": "The attribute `pointer-events` sets the pointer-events attribute on the path if SVG backend is used.",
              "value": { "type": "string", "default": "undefined" }
            },
            {
              "name": "clickable",
              "description": "The attribute `clickable` sets whether the vector will emit mouse events or will act as a part of the underlying map.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "class-name",
              "description": "The attribute `class-name` sets the custom class name set on an element.",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "slots": [
            { "name": "", "description": "The default slot for popup content." }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "longitude",
                "description": "The circle's longitude coordinate",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "latitude",
                "description": "The circle's latitude coordinate",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "radius",
                "description": "The circle's radius is metres",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "stroke",
                "description": "The attribute `stroke` sets whether to draw stroke along the path. Set it to false to disable borders on polygons or circles.",
                "value": { "type": "boolean" }
              },
              {
                "name": "color",
                "description": "The attribute `color` sets the stroke color.",
                "value": { "type": "string" }
              },
              {
                "name": "weight",
                "description": "The attribute `weight` sets the stroke width in pixels.",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "opacity",
                "description": "The attribute `opacity` sets the stroke opacity.",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "fill",
                "description": "The attribute `fill` sets the whether to fill the path with color. Set it to false to disable filling on polygons or circles.",
                "value": { "type": "boolean" }
              },
              {
                "name": "fill-color",
                "description": "The attribute `fill-color` sets the fill color.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "fill-opacity",
                "description": "The attribute `fill-opacity` sets the fill opacity.",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "dash-array",
                "description": "The attribute `dash-array` sets a string that defines the stroke dash pattern. Doesn't work on canvas-powered layers (e.g. Android 2).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "line-cap",
                "description": "The attribute `line-cap` defines the shape to be used at the end of the stroke.",
                "value": {}
              },
              {
                "name": "line-join",
                "description": "The attribute `line-join` sets the string that defines shape to be used at the corners of the stroke.",
                "value": {}
              },
              {
                "name": "pointer-events",
                "description": "The attribute `pointer-events` sets the pointer-events attribute on the path if SVG backend is used.",
                "value": {}
              },
              {
                "name": "clickable",
                "description": "The attribute `clickable` sets whether the vector will emit mouse events or will act as a part of the underlying map.",
                "value": { "type": "boolean" }
              },
              {
                "name": "class-name",
                "description": "The attribute `class-name` sets the custom class name set on an element.",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-map-divicon",
          "description": "Element which defines an divicon template for markers\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "icon-width",
              "description": "The `icon-width` attribute sets the size of the icon image in pixels.",
              "value": { "type": "number" }
            },
            {
              "name": "icon-height",
              "description": "The `icon-height` attribute sets the size of the icon image in pixels.",
              "value": { "type": "number" }
            },
            {
              "name": "icon-anchor-x",
              "description": "The `icon-anchor-x` attribute sets the coordinates of the \"tip\" of the icon (relative to its top left corner). The icon will be aligned so that this point is at the marker's geographical location. Centered by default if size is specified, also can be set in CSS with negative margins.",
              "value": { "type": "number" }
            },
            {
              "name": "icon-anchor-y",
              "description": "The `icon-anchor-y` attribute sets the coordinates of the \"tip\" of the icon (relative to its top left corner). The icon will be aligned so that this point is at the marker's geographical location. Centered by default if size is specified, also can be set in CSS with negative margins.",
              "value": { "type": "number" }
            },
            {
              "name": "class-name",
              "description": "The `class-name` attribute sets a custom class name to assign to both icon and shadow images. Empty by default.",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "icon-width",
                "description": "The `icon-width` attribute sets the size of the icon image in pixels.",
                "value": { "type": "number" }
              },
              {
                "name": "icon-height",
                "description": "The `icon-height` attribute sets the size of the icon image in pixels.",
                "value": { "type": "number" }
              },
              {
                "name": "icon-anchor-x",
                "description": "The `icon-anchor-x` attribute sets the coordinates of the \"tip\" of the icon (relative to its top left corner). The icon will be aligned so that this point is at the marker's geographical location. Centered by default if size is specified, also can be set in CSS with negative margins.",
                "value": { "type": "number" }
              },
              {
                "name": "icon-anchor-y",
                "description": "The `icon-anchor-y` attribute sets the coordinates of the \"tip\" of the icon (relative to its top left corner). The icon will be aligned so that this point is at the marker's geographical location. Centered by default if size is specified, also can be set in CSS with negative margins.",
                "value": { "type": "number" }
              },
              {
                "name": "class-name",
                "description": "The `class-name` attribute sets a custom class name to assign to both icon and shadow images. Empty by default.",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-map-fullscreen-control",
          "description": "Fullscreen control.\n---\n\n\n### **Slots:**\n - **fullscreen-icon** - Enter fullscreen icon.\n- **exit-icon** - Exit fullscreen icon.",
          "doc-url": "",
          "attributes": [
            {
              "name": "position",
              "description": "The position of the control (one of the map corners).\nPossible values are 'topleft', 'topright', 'bottomleft' or 'bottomright'",
              "value": {
                "type": "'topleft' | 'topright' | 'bottomleft' | 'bottomright'",
                "default": "'topleft'"
              }
            },
            {
              "name": "pseudo-fullscreen",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "true-text",
              "value": { "type": "string", "default": "'Exit Fullscreen'" }
            },
            {
              "name": "false-text",
              "value": { "type": "string", "default": "'View Fullscreen'" }
            }
          ],
          "slots": [
            {
              "name": "fullscreen-icon",
              "description": "Enter fullscreen icon."
            },
            { "name": "exit-icon", "description": "Exit fullscreen icon." }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "position",
                "description": "The position of the control (one of the map corners).\nPossible values are 'topleft', 'topright', 'bottomleft' or 'bottomright'",
                "value": {
                  "type": "'topleft' | 'topright' | 'bottomleft' | 'bottomright'"
                }
              },
              { "name": "pseudo-fullscreen", "value": { "type": "boolean" } },
              { "name": "true-text", "value": { "type": "string" } },
              { "name": "false-text", "value": { "type": "string" } }
            ],
            "events": []
          }
        },
        {
          "name": "awc-map-geojson",
          "description": "An element which represents a geojson layer on the map\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "stroke",
              "description": "The attribute `stroke` sets whether to draw stroke along the path. Set it to false to disable borders on polygons or circles.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "color",
              "description": "The attribute `color` sets the stroke color.",
              "value": { "type": "string", "default": "'#03f'" }
            },
            {
              "name": "weight",
              "description": "The attribute `weight` sets the stroke width in pixels.",
              "value": { "type": "number | string | undefined", "default": "5" }
            },
            {
              "name": "opacity",
              "description": "The attribute `opacity` sets the stroke opacity.",
              "value": {
                "type": "number | string | undefined",
                "default": "0.5"
              }
            },
            {
              "name": "fill",
              "description": "The attribute `fill` sets the whether to fill the path with color. Set it to false to disable filling on polygons or circles.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "fill-color",
              "description": "The attribute `fill-color` sets the fill color.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "fill-opacity",
              "description": "The attribute `fill-opacity` sets the fill opacity.",
              "value": {
                "type": "number | string | undefined",
                "default": "0.2"
              }
            },
            {
              "name": "dash-array",
              "description": "The attribute `dash-array` sets a string that defines the stroke dash pattern. Doesn't work on canvas-powered layers (e.g. Android 2).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "line-cap",
              "description": "The attribute `line-cap` defines the shape to be used at the end of the stroke.",
              "value": { "type": "string", "default": "undefined" }
            },
            {
              "name": "line-join",
              "description": "The attribute `line-join` sets the string that defines shape to be used at the corners of the stroke.",
              "value": { "type": "string", "default": "undefined" }
            },
            {
              "name": "pointer-events",
              "description": "The attribute `pointer-events` sets the pointer-events attribute on the path if SVG backend is used.",
              "value": { "type": "string", "default": "undefined" }
            },
            {
              "name": "clickable",
              "description": "The attribute `clickable` sets whether the vector will emit mouse events or will act as a part of the underlying map.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "class-name",
              "description": "The attribute `class-name` sets the custom class name set on an element.",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "stroke",
                "description": "The attribute `stroke` sets whether to draw stroke along the path. Set it to false to disable borders on polygons or circles.",
                "value": { "type": "boolean" }
              },
              {
                "name": "color",
                "description": "The attribute `color` sets the stroke color.",
                "value": { "type": "string" }
              },
              {
                "name": "weight",
                "description": "The attribute `weight` sets the stroke width in pixels.",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "opacity",
                "description": "The attribute `opacity` sets the stroke opacity.",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "fill",
                "description": "The attribute `fill` sets the whether to fill the path with color. Set it to false to disable filling on polygons or circles.",
                "value": { "type": "boolean" }
              },
              {
                "name": "fill-color",
                "description": "The attribute `fill-color` sets the fill color.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "fill-opacity",
                "description": "The attribute `fill-opacity` sets the fill opacity.",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "dash-array",
                "description": "The attribute `dash-array` sets a string that defines the stroke dash pattern. Doesn't work on canvas-powered layers (e.g. Android 2).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "line-cap",
                "description": "The attribute `line-cap` defines the shape to be used at the end of the stroke.",
                "value": {}
              },
              {
                "name": "line-join",
                "description": "The attribute `line-join` sets the string that defines shape to be used at the corners of the stroke.",
                "value": {}
              },
              {
                "name": "pointer-events",
                "description": "The attribute `pointer-events` sets the pointer-events attribute on the path if SVG backend is used.",
                "value": {}
              },
              {
                "name": "clickable",
                "description": "The attribute `clickable` sets whether the vector will emit mouse events or will act as a part of the underlying map.",
                "value": { "type": "boolean" }
              },
              {
                "name": "class-name",
                "description": "The attribute `class-name` sets the custom class name set on an element.",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-map-geolocation",
          "description": "Element which controls geolocation\n---\n\n\n### **Events:**\n - **awc-map** - type : locationerror - when geolocation (using the locate method) failed.",
          "doc-url": "",
          "attributes": [
            {
              "name": "position",
              "description": "The position of the control (one of the map corners).\nPossible values are 'topleft', 'topright', 'bottomleft' or 'bottomright'",
              "value": {
                "type": "'topleft' | 'topright' | 'bottomleft' | 'bottomright'",
                "default": "'topright'"
              }
            },
            {
              "name": "start",
              "description": "The `start` attribute sets wether location should be detected immediately using W3C geolocation method. You can later stop watching using map.stop() method.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "watch",
              "description": "The `watch` attribute sets wether location changes should be continous watching (instead of detecting it once) using W3C watchPosition method. You can later stop watching using map.stop() method.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "set-view",
              "description": "The `set-view` attribute sets whether the map view to the user location with respect to detection accuracy, or to world view if geolocation failed.",
              "value": {
                "type": "| false\n    | 'once'\n    | 'always'\n    | 'untilPan'\n    | 'untilPanOrZoom'",
                "default": "'always'"
              }
            },
            {
              "name": "keep-current-zoom-level",
              "description": "Keep the current map zoom level when setting the view and only pan.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "initial-zoom-level",
              "description": "After activating the plugin by clicking on the icon, zoom to the selected zoom level, even when keepCurrentZoomLevel is true. Set to 'false' to disable this feature.",
              "value": { "type": "false | number", "default": "false" }
            },
            {
              "name": "fly-to",
              "description": "Smooth pan and zoom to the location of the marker.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "click-behavior",
              "description": "The user location can be inside and outside the current view when the user clicks on the\ncontrol that is already active. Both cases can be configures separately.\nPossible values are:\n - 'setView': zoom and pan to the current location\n - 'stop': stop locating and remove the location marker",
              "value": {
                "type": "object",
                "default": "{\n    /** What should happen if the user clicks on the control while the location is within the current view. */\n    inView: 'stop',\n    /** What should happen if the user clicks on the control while the location is outside the current view. */\n    outOfView: 'setView',\n    /**\n     * What should happen if the user clicks on the control while the location is within the current view\n     * and we could be following but are not. Defaults to a special value which inherits from 'inView';\n     */\n    inViewNotFollowing: 'inView'\n  }"
              }
            },
            {
              "name": "return-to-prev-bounds",
              "description": "If set, save the map bounds just before centering to the user's\nlocation. When control is disabled, set the view back to the\nbounds that were saved.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "cache-location",
              "description": "Keep a cache of the location after the user deactivates the control. If set to false, the user has to wait\nuntil the locate API returns a new location before they see where they are again.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "draw-circle",
              "description": "If set, a circle that shows the location accuracy is drawn.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "draw-marker",
              "description": "If set, the marker at the users' location is drawn.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "show-compass",
              "description": "If set and supported then show the compass heading",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "show-popup",
              "description": "Display a pop-up when the user click on the inner marker.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "metric",
              "description": "Use metric units.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "max-zoom",
              "description": "The `max-zoom` attribute sets the maximum zoom for automatic view setting when using `setView` option.",
              "value": { "type": "string" }
            },
            {
              "name": "timeout",
              "description": "The `timeout` attribute sets the number of milliseconds to wait for a response from geolocation before firing a locationerror event.",
              "value": { "type": "number", "default": "10_000" }
            },
            {
              "name": "maximum-age",
              "description": "The `maximum-age` attribute sets maximum age of detected location. If less than this amount of milliseconds passed since last geolocation response, locate will return a cached location.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "enable-high-accuracy",
              "description": "The `enable-high-accuracy` attribute sets whether high accuracy is enabled, see description in the W3C spec.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "latitude",
              "description": "The `latitude` attribute returns the detected geographical location of the user.",
              "value": { "type": "number | null", "default": "null" }
            },
            {
              "name": "longitude",
              "description": "The `longitude` attribute returns the detected geographical location of the user.",
              "value": { "type": "number | null", "default": "null" }
            },
            {
              "name": "bounds",
              "description": "The `bounds` attribute returns the geographical bounds of the area user is located in (with respect to the accuracy of location).",
              "value": { "type": "LatLngBounds | null", "default": "null" }
            },
            {
              "name": "accuracy",
              "description": "The `accuracy` attribute returns the accuracy of location in meters.",
              "value": { "type": "number | null", "default": "null" }
            },
            {
              "name": "altitude",
              "description": "The `altitude` attribute returns the height of the position above the WGS84 ellipsoid in meters.",
              "value": { "type": "number | null", "default": "null" }
            },
            {
              "name": "altitude-accuracy",
              "description": "The `altitude-accuracy` attribute returns the accuracy of altitude in meters.",
              "value": { "type": "number | null", "default": "null" }
            },
            {
              "name": "heading",
              "description": "The `heading` attribute returns the direction of travel in degrees counting clockwise from true North.",
              "value": { "type": "number | null", "default": "null" }
            },
            {
              "name": "speed",
              "description": "The `speed` attribute returns the current velocity in meters per second.",
              "value": { "type": "number | null", "default": "null" }
            },
            {
              "name": "timestamp",
              "description": "The `timestamp` attribute returns the time when the position was acquired.",
              "value": { "type": "number | null", "default": "null" }
            },
            {
              "name": "circle-style",
              "description": "Accuracy circle style properties. NOTE these styles should match the css animations styles",
              "value": {
                "type": "L.PathOptions | undefined",
                "default": "{\n    className: 'leaflet-control-locate-circle',\n    color: '#136AEC',\n    fillColor: '#136AEC',\n    fillOpacity: 0.15,\n    weight: 0\n  }"
              }
            },
            {
              "name": "marker-style",
              "description": "Inner marker style properties. Only works if your marker class supports `setStyle`.",
              "value": {
                "type": "L.CircleMarkerOptions | L.MarkerOptions | undefined",
                "default": "{\n    className: 'leaflet-control-locate-marker',\n    color: '#fff',\n    fillColor: '#2A93EE',\n    fillOpacity: 1,\n    weight: 3,\n    opacity: 1,\n    radius: 9\n  }"
              }
            },
            {
              "name": "compass-style",
              "description": "Compass style properties.",
              "value": {
                "type": "L.CircleMarkerOptions & {\n    width: number;\n    depth: number;\n  } | undefined",
                "default": "{\n    fillColor: '#2A93EE',\n    fillOpacity: 1,\n    weight: 0,\n    color: '#fff',\n    opacity: 1,\n    radius: 9, // How far is the arrow from the center of the marker\n    width: 9, // Width of the arrow\n    depth: 6 // Length of the arrow\n  }"
              }
            },
            {
              "name": "icon",
              "description": "The `icon` attribute sets the icon for the locate control.",
              "value": { "type": "string", "default": "'cursor-fill'" }
            }
          ],
          "events": [
            {
              "name": "awc-map",
              "description": "type : locationerror - when geolocation (using the locate method) failed."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "position",
                "description": "The position of the control (one of the map corners).\nPossible values are 'topleft', 'topright', 'bottomleft' or 'bottomright'",
                "value": {
                  "type": "'topleft' | 'topright' | 'bottomleft' | 'bottomright'"
                }
              },
              {
                "name": "start",
                "description": "The `start` attribute sets wether location should be detected immediately using W3C geolocation method. You can later stop watching using map.stop() method.",
                "value": { "type": "boolean" }
              },
              {
                "name": "watch",
                "description": "The `watch` attribute sets wether location changes should be continous watching (instead of detecting it once) using W3C watchPosition method. You can later stop watching using map.stop() method.",
                "value": { "type": "boolean" }
              },
              {
                "name": "set-view",
                "description": "The `set-view` attribute sets whether the map view to the user location with respect to detection accuracy, or to world view if geolocation failed.",
                "value": {
                  "type": "| false\n    | 'once'\n    | 'always'\n    | 'untilPan'\n    | 'untilPanOrZoom'"
                }
              },
              {
                "name": "keep-current-zoom-level",
                "description": "Keep the current map zoom level when setting the view and only pan.",
                "value": { "type": "boolean" }
              },
              {
                "name": "initial-zoom-level",
                "description": "After activating the plugin by clicking on the icon, zoom to the selected zoom level, even when keepCurrentZoomLevel is true. Set to 'false' to disable this feature.",
                "value": { "type": "false | number" }
              },
              {
                "name": "fly-to",
                "description": "Smooth pan and zoom to the location of the marker.",
                "value": { "type": "boolean" }
              },
              {
                "name": "click-behavior",
                "description": "The user location can be inside and outside the current view when the user clicks on the\ncontrol that is already active. Both cases can be configures separately.\nPossible values are:\n - 'setView': zoom and pan to the current location\n - 'stop': stop locating and remove the location marker",
                "value": { "type": "object" }
              },
              {
                "name": "return-to-prev-bounds",
                "description": "If set, save the map bounds just before centering to the user's\nlocation. When control is disabled, set the view back to the\nbounds that were saved.",
                "value": { "type": "boolean" }
              },
              {
                "name": "cache-location",
                "description": "Keep a cache of the location after the user deactivates the control. If set to false, the user has to wait\nuntil the locate API returns a new location before they see where they are again.",
                "value": { "type": "boolean" }
              },
              {
                "name": "draw-circle",
                "description": "If set, a circle that shows the location accuracy is drawn.",
                "value": { "type": "boolean" }
              },
              {
                "name": "draw-marker",
                "description": "If set, the marker at the users' location is drawn.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-compass",
                "description": "If set and supported then show the compass heading",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-popup",
                "description": "Display a pop-up when the user click on the inner marker.",
                "value": { "type": "boolean" }
              },
              {
                "name": "metric",
                "description": "Use metric units.",
                "value": { "type": "boolean" }
              },
              {
                "name": "max-zoom",
                "description": "The `max-zoom` attribute sets the maximum zoom for automatic view setting when using `setView` option.",
                "value": {}
              },
              {
                "name": "timeout",
                "description": "The `timeout` attribute sets the number of milliseconds to wait for a response from geolocation before firing a locationerror event.",
                "value": { "type": "number" }
              },
              {
                "name": "maximum-age",
                "description": "The `maximum-age` attribute sets maximum age of detected location. If less than this amount of milliseconds passed since last geolocation response, locate will return a cached location.",
                "value": { "type": "number" }
              },
              {
                "name": "enable-high-accuracy",
                "description": "The `enable-high-accuracy` attribute sets whether high accuracy is enabled, see description in the W3C spec.",
                "value": { "type": "boolean" }
              },
              {
                "name": "latitude",
                "description": "The `latitude` attribute returns the detected geographical location of the user.",
                "value": { "type": "number | null" }
              },
              {
                "name": "longitude",
                "description": "The `longitude` attribute returns the detected geographical location of the user.",
                "value": { "type": "number | null" }
              },
              {
                "name": "bounds",
                "description": "The `bounds` attribute returns the geographical bounds of the area user is located in (with respect to the accuracy of location).",
                "value": { "type": "LatLngBounds | null" }
              },
              {
                "name": "accuracy",
                "description": "The `accuracy` attribute returns the accuracy of location in meters.",
                "value": { "type": "number | null" }
              },
              {
                "name": "altitude",
                "description": "The `altitude` attribute returns the height of the position above the WGS84 ellipsoid in meters.",
                "value": { "type": "number | null" }
              },
              {
                "name": "altitude-accuracy",
                "description": "The `altitude-accuracy` attribute returns the accuracy of altitude in meters.",
                "value": { "type": "number | null" }
              },
              {
                "name": "heading",
                "description": "The `heading` attribute returns the direction of travel in degrees counting clockwise from true North.",
                "value": { "type": "number | null" }
              },
              {
                "name": "speed",
                "description": "The `speed` attribute returns the current velocity in meters per second.",
                "value": { "type": "number | null" }
              },
              {
                "name": "timestamp",
                "description": "The `timestamp` attribute returns the time when the position was acquired.",
                "value": { "type": "number | null" }
              },
              {
                "name": "circle-style",
                "description": "Accuracy circle style properties. NOTE these styles should match the css animations styles",
                "value": { "type": "L.PathOptions | undefined" }
              },
              {
                "name": "marker-style",
                "description": "Inner marker style properties. Only works if your marker class supports `setStyle`.",
                "value": {
                  "type": "L.CircleMarkerOptions | L.MarkerOptions | undefined"
                }
              },
              {
                "name": "compass-style",
                "description": "Compass style properties.",
                "value": {
                  "type": "L.CircleMarkerOptions & {\n    width: number;\n    depth: number;\n  } | undefined"
                }
              },
              {
                "name": "icon",
                "description": "The `icon` attribute sets the icon for the locate control.",
                "value": { "type": "string" }
              }
            ],
            "events": [
              {
                "name": "awc-map",
                "description": "type : locationerror - when geolocation (using the locate method) failed."
              }
            ]
          }
        },
        {
          "name": "awc-map-icon",
          "description": "Element which defines an icon template for markers.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "icon-url",
              "description": "The `icon-url` attribute sets the URL to the icon image (absolute or relative to your script path).",
              "value": { "type": "string" }
            },
            {
              "name": "icon-retina-url",
              "description": "The `icon-retina-url` attribute sets the URL to a retina sized version of the icon image (absolute or relative to your script path). Used for Retina screen devices.",
              "value": { "type": "string" }
            },
            {
              "name": "icon-width",
              "description": "The `icon-width` attribute sets the size of the icon image in pixels.",
              "value": { "type": "number" }
            },
            {
              "name": "icon-height",
              "description": "The `icon-height` attribute sets the size of the icon image in pixels.",
              "value": { "type": "number" }
            },
            {
              "name": "icon-anchor-x",
              "description": "The `icon-anchor-x` attribute sets the coordinates of the \"tip\" of the icon (relative to its top left corner). The icon will be aligned so that this point is at the marker's geographical location. Centered by default if size is specified, also can be set in CSS with negative margins.",
              "value": { "type": "number" }
            },
            {
              "name": "icon-anchor-y",
              "description": "The `icon-anchor-y` attribute sets the coordinates of the \"tip\" of the icon (relative to its top left corner). The icon will be aligned so that this point is at the marker's geographical location. Centered by default if size is specified, also can be set in CSS with negative margins.",
              "value": { "type": "number" }
            },
            {
              "name": "shadow-url",
              "description": "The `shadow-url` attribute sets the URL to the icon shadow image. If not specified, no shadow image will be created.",
              "value": { "type": "string" }
            },
            {
              "name": "shadow-retina-url",
              "description": "The `shadow-retina-url` attribute sets the URL to the retina sized version of the icon shadow image. If not specified, no shadow image will be created. Used for Retina screen devices.",
              "value": { "type": "string" }
            },
            {
              "name": "shadow-width",
              "description": "The `shadow-width` attribute sets the size of the shadow image in pixels.",
              "value": { "type": "number" }
            },
            {
              "name": "shadow-height",
              "description": "The `shadow-height` attribute sets the size of the shadow image in pixels.",
              "value": { "type": "number" }
            },
            {
              "name": "shadow-anchor-x",
              "description": "The `shadow-anchor-x` attribute sets the coordinates of the \"tip\" of the shadow (relative to its top left corner) (the same as iconAnchor if not specified).",
              "value": { "type": "number" }
            },
            {
              "name": "shadow-anchor-y",
              "description": "The `shadow-anchor-y` attribute sets the coordinates of the \"tip\" of the shadow (relative to its top left corner) (the same as iconAnchor if not specified).",
              "value": { "type": "number" }
            },
            {
              "name": "popup-anchor-x",
              "description": "The `popup-anchor-x` attribute sets the coordinates of the point from which popups will \"open\", relative to the icon anchor.",
              "value": { "type": "number" }
            },
            {
              "name": "popup-anchor-y",
              "description": "The `popupanchory` attribute sets the coordinates of the point from which popups will \"open\", relative to the icon anchor.",
              "value": { "type": "number" }
            },
            {
              "name": "class-name",
              "description": "The `class-name` attribute sets a custom class name to assign to both icon and shadow images. Empty by default.",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "icon-url",
                "description": "The `icon-url` attribute sets the URL to the icon image (absolute or relative to your script path).",
                "value": { "type": "string" }
              },
              {
                "name": "icon-retina-url",
                "description": "The `icon-retina-url` attribute sets the URL to a retina sized version of the icon image (absolute or relative to your script path). Used for Retina screen devices.",
                "value": { "type": "string" }
              },
              {
                "name": "icon-width",
                "description": "The `icon-width` attribute sets the size of the icon image in pixels.",
                "value": { "type": "number" }
              },
              {
                "name": "icon-height",
                "description": "The `icon-height` attribute sets the size of the icon image in pixels.",
                "value": { "type": "number" }
              },
              {
                "name": "icon-anchor-x",
                "description": "The `icon-anchor-x` attribute sets the coordinates of the \"tip\" of the icon (relative to its top left corner). The icon will be aligned so that this point is at the marker's geographical location. Centered by default if size is specified, also can be set in CSS with negative margins.",
                "value": { "type": "number" }
              },
              {
                "name": "icon-anchor-y",
                "description": "The `icon-anchor-y` attribute sets the coordinates of the \"tip\" of the icon (relative to its top left corner). The icon will be aligned so that this point is at the marker's geographical location. Centered by default if size is specified, also can be set in CSS with negative margins.",
                "value": { "type": "number" }
              },
              {
                "name": "shadow-url",
                "description": "The `shadow-url` attribute sets the URL to the icon shadow image. If not specified, no shadow image will be created.",
                "value": { "type": "string" }
              },
              {
                "name": "shadow-retina-url",
                "description": "The `shadow-retina-url` attribute sets the URL to the retina sized version of the icon shadow image. If not specified, no shadow image will be created. Used for Retina screen devices.",
                "value": { "type": "string" }
              },
              {
                "name": "shadow-width",
                "description": "The `shadow-width` attribute sets the size of the shadow image in pixels.",
                "value": { "type": "number" }
              },
              {
                "name": "shadow-height",
                "description": "The `shadow-height` attribute sets the size of the shadow image in pixels.",
                "value": { "type": "number" }
              },
              {
                "name": "shadow-anchor-x",
                "description": "The `shadow-anchor-x` attribute sets the coordinates of the \"tip\" of the shadow (relative to its top left corner) (the same as iconAnchor if not specified).",
                "value": { "type": "number" }
              },
              {
                "name": "shadow-anchor-y",
                "description": "The `shadow-anchor-y` attribute sets the coordinates of the \"tip\" of the shadow (relative to its top left corner) (the same as iconAnchor if not specified).",
                "value": { "type": "number" }
              },
              {
                "name": "popup-anchor-x",
                "description": "The `popup-anchor-x` attribute sets the coordinates of the point from which popups will \"open\", relative to the icon anchor.",
                "value": { "type": "number" }
              },
              {
                "name": "popup-anchor-y",
                "description": "The `popupanchory` attribute sets the coordinates of the point from which popups will \"open\", relative to the icon anchor.",
                "value": { "type": "number" }
              },
              {
                "name": "class-name",
                "description": "The `class-name` attribute sets a custom class name to assign to both icon and shadow images. Empty by default.",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-map-image-overlay",
          "description": "Element which defines a image overlay.\n---\n\n\n### **Events:**\n - **awc-map** - type : contextmenu\t- If interactive, emitted when the user right-clicks on the layer, prevents default browser context menu from showing if there are listeners on this event. Also fired on mobile when the user holds a single touch for a second (also called long press).",
          "doc-url": "",
          "attributes": [
            {
              "name": "lat-lng-bounds",
              "description": "The attribute `latLngBounds` represents a rectangular geographical area on a map..",
              "value": { "type": "L.LatLngBoundsExpression | undefined" }
            },
            {
              "name": "url",
              "description": "Instantiates an image overlay object given the URL of the image and the geographical bounds it is tied to.",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "alt",
              "description": "Text for the alt attribute of the image (useful for accessibility).",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "error-overlay-url",
              "description": "URL to the overlay image to show in place of the overlay that failed to load.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "attribution",
              "description": "The `attribution` attribute sets the attribute. As html code needs to be escaped here, it is preferable to define it as child element.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "opacity",
              "description": "The `opacity` attribute sets the opacity of the tile layer.",
              "value": { "type": "number", "default": "1.0" }
            },
            {
              "name": "z-index",
              "description": "The `z-index` attribute sets the explicit zIndex of the tile layer. Not set by default.",
              "value": { "type": "number", "default": "1" }
            },
            {
              "name": "interactive",
              "description": "If `true`, the image overlay will emit mouse events when clicked or hovered.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "cross-origin",
              "description": "If `true`, the image overlay will emit mouse events when clicked or hovered.",
              "value": {
                "type": "boolean | 'anonymous' | 'use-credentials' | ''",
                "default": "false"
              }
            }
          ],
          "events": [
            {
              "name": "awc-map",
              "description": "type : contextmenu\t- If interactive, emitted when the user right-clicks on the layer, prevents default browser context menu from showing if there are listeners on this event. Also fired on mobile when the user holds a single touch for a second (also called long press)."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "lat-lng-bounds",
                "description": "The attribute `latLngBounds` represents a rectangular geographical area on a map..",
                "value": { "type": "L.LatLngBoundsExpression | undefined" }
              },
              {
                "name": "url",
                "description": "Instantiates an image overlay object given the URL of the image and the geographical bounds it is tied to.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "alt",
                "description": "Text for the alt attribute of the image (useful for accessibility).",
                "value": { "type": "string" }
              },
              {
                "name": "error-overlay-url",
                "description": "URL to the overlay image to show in place of the overlay that failed to load.",
                "value": { "type": "string" }
              },
              {
                "name": "attribution",
                "description": "The `attribution` attribute sets the attribute. As html code needs to be escaped here, it is preferable to define it as child element.",
                "value": { "type": "string" }
              },
              {
                "name": "opacity",
                "description": "The `opacity` attribute sets the opacity of the tile layer.",
                "value": { "type": "number" }
              },
              {
                "name": "z-index",
                "description": "The `z-index` attribute sets the explicit zIndex of the tile layer. Not set by default.",
                "value": { "type": "number" }
              },
              {
                "name": "interactive",
                "description": "If `true`, the image overlay will emit mouse events when clicked or hovered.",
                "value": { "type": "boolean" }
              },
              {
                "name": "cross-origin",
                "description": "If `true`, the image overlay will emit mouse events when clicked or hovered.",
                "value": {
                  "type": "boolean | 'anonymous' | 'use-credentials' | ''"
                }
              }
            ],
            "events": [
              {
                "name": "awc-map",
                "description": "type : contextmenu\t- If interactive, emitted when the user right-clicks on the layer, prevents default browser context menu from showing if there are listeners on this event. Also fired on mobile when the user holds a single touch for a second (also called long press)."
              }
            ]
          }
        },
        {
          "name": "awc-map-layer-group",
          "description": "Element which represents a layer group\n---\n",
          "doc-url": "",
          "attributes": [],
          "events": [],
          "js": {
            "properties": [
              { "name": "feature", "value": { "type": "L.LayerGroup" } },
              {
                "name": "children",
                "value": { "type": "HTMLCollectionOf<AWCMapMarker>" }
              },
              {
                "name": "mutationObserver",
                "value": { "type": "MutationObserver" }
              },
              { "name": "containerChanged", "value": {} },
              { "name": "registerContainerOnChildren", "value": {} }
            ],
            "events": []
          }
        },
        {
          "name": "awc-map-marker",
          "description": "Element which defines a [marker](http://leafletjs.com/reference.html#marker). The content is used as popup window, unless it is empty.\n---\n\n\n### **Events:**\n - **awc-map** - type : remove\t-\tFired after the layer is removed from a map\n\n### **Slots:**\n - _default_ - The default slot for popup content.",
          "doc-url": "",
          "attributes": [
            {
              "name": "latitude",
              "description": "The `latitude` attribute sets the positions of the marker.",
              "value": { "type": "number" }
            },
            {
              "name": "longitude",
              "description": "The `longitude` attribute sets the positions of the marker.",
              "value": { "type": "number" }
            },
            {
              "name": "icon",
              "description": "The `icon` attribute sets the Icon class to use for rendering the marker.\nThis attribute may be refer to an id-attribute of an leaflet-icon-element,\ncontain json syntax or it be assigned an instance of L.icon.\nSee Icon documentation for details on how to customize the marker icon. Set to new L.Icon.Default() by default.",
              "value": { "type": "string | L.Icon" }
            },
            {
              "name": "draggable",
              "description": "The `draggable` attribute sets the whether the marker is draggable with mouse/touch or not.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "keyboard",
              "description": "The `no-keyboard` attribute disables whether the marker can be tabbed to with a keyboard and clicked by pressing enter.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "title",
              "description": "The `title` attribute sets the text for the browser tooltip that appear on marker hover (no tooltip by default).",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "alt",
              "description": "The `alt` attribute sets the text for the alt attribute of the icon image (useful for accessibility).",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "z-index-offset",
              "description": "The `z-index-offset` attribute sets the zIndexOffset. By default, marker images zIndex is set automatically based on its latitude",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "opacity",
              "description": "The `opacity` attribute sets the opacity of the marker.",
              "value": { "type": "number", "default": "1.0" }
            },
            {
              "name": "rise-on-hover",
              "description": "The `rise-on-hover` attribute sets the whether the marker will get on top of others when you hover the mouse over it.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "rise-offset",
              "description": "The `rise-offset` attribute sets the z-index offset used for the riseOnHover feature.",
              "value": { "type": "number", "default": "250" }
            }
          ],
          "slots": [
            { "name": "", "description": "The default slot for popup content." }
          ],
          "events": [
            {
              "name": "awc-map",
              "description": "type : remove\t-\tFired after the layer is removed from a map"
            }
          ],
          "js": {
            "properties": [
              {
                "name": "latitude",
                "description": "The `latitude` attribute sets the positions of the marker.",
                "value": { "type": "number" }
              },
              {
                "name": "longitude",
                "description": "The `longitude` attribute sets the positions of the marker.",
                "value": { "type": "number" }
              },
              {
                "name": "icon",
                "description": "The `icon` attribute sets the Icon class to use for rendering the marker.\nThis attribute may be refer to an id-attribute of an leaflet-icon-element,\ncontain json syntax or it be assigned an instance of L.icon.\nSee Icon documentation for details on how to customize the marker icon. Set to new L.Icon.Default() by default.",
                "value": { "type": "string | L.Icon" }
              },
              {
                "name": "draggable",
                "description": "The `draggable` attribute sets the whether the marker is draggable with mouse/touch or not.",
                "value": { "type": "boolean" }
              },
              {
                "name": "keyboard",
                "description": "The `no-keyboard` attribute disables whether the marker can be tabbed to with a keyboard and clicked by pressing enter.",
                "value": { "type": "boolean" }
              },
              {
                "name": "title",
                "description": "The `title` attribute sets the text for the browser tooltip that appear on marker hover (no tooltip by default).",
                "value": { "type": "string" }
              },
              {
                "name": "alt",
                "description": "The `alt` attribute sets the text for the alt attribute of the icon image (useful for accessibility).",
                "value": { "type": "string" }
              },
              {
                "name": "z-index-offset",
                "description": "The `z-index-offset` attribute sets the zIndexOffset. By default, marker images zIndex is set automatically based on its latitude",
                "value": { "type": "number" }
              },
              {
                "name": "opacity",
                "description": "The `opacity` attribute sets the opacity of the marker.",
                "value": { "type": "number" }
              },
              {
                "name": "rise-on-hover",
                "description": "The `rise-on-hover` attribute sets the whether the marker will get on top of others when you hover the mouse over it.",
                "value": { "type": "boolean" }
              },
              {
                "name": "rise-offset",
                "description": "The `rise-offset` attribute sets the z-index offset used for the riseOnHover feature.",
                "value": { "type": "number" }
              }
            ],
            "events": [
              {
                "name": "awc-map",
                "description": "type : remove\t-\tFired after the layer is removed from a map"
              }
            ]
          }
        },
        {
          "name": "awc-map-marker-cluster-group",
          "description": "Element which represents a marker cluster group\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "show-coverage-on-hover",
              "description": "When you mouse over a cluster it shows the bounds of its markers.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "zoom-to-bounds-on-click",
              "description": "When you click a cluster we zoom to its bounds.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "spiderfy-on-max-zoom",
              "description": "When you click a cluster at the bottom zoom level we spiderfy it so you can see all of its markers. (Note: the spiderfy occurs at the current zoom level if all items within the cluster are still clustered at the maximum zoom level or at zoom specified by `disableClusteringAtZoom` option)",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "remove-outside-visible-bounds",
              "description": "Clusters and markers too far from the viewport are removed from the map for performance.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "spider-leg-polyline-options",
              "description": "Clusters and markers too far from the viewport are removed from the map for performance.",
              "value": {
                "type": "L.PolylineOptions",
                "default": "{\n    weight: 1.5,\n    color: '#222',\n    opacity: 0.5\n  }"
              }
            },
            {
              "name": "chunked-loading",
              "description": "Boolean to split the addLayers processing in to small intervals so that the page does not freeze.",
              "value": { "type": "boolean", "default": "true" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "show-coverage-on-hover",
                "description": "When you mouse over a cluster it shows the bounds of its markers.",
                "value": { "type": "boolean" }
              },
              {
                "name": "zoom-to-bounds-on-click",
                "description": "When you click a cluster we zoom to its bounds.",
                "value": { "type": "boolean" }
              },
              {
                "name": "spiderfy-on-max-zoom",
                "description": "When you click a cluster at the bottom zoom level we spiderfy it so you can see all of its markers. (Note: the spiderfy occurs at the current zoom level if all items within the cluster are still clustered at the maximum zoom level or at zoom specified by `disableClusteringAtZoom` option)",
                "value": { "type": "boolean" }
              },
              {
                "name": "remove-outside-visible-bounds",
                "description": "Clusters and markers too far from the viewport are removed from the map for performance.",
                "value": { "type": "boolean" }
              },
              {
                "name": "spider-leg-polyline-options",
                "description": "Clusters and markers too far from the viewport are removed from the map for performance.",
                "value": { "type": "L.PolylineOptions" }
              },
              {
                "name": "chunked-loading",
                "description": "Boolean to split the addLayers processing in to small intervals so that the page does not freeze.",
                "value": { "type": "boolean" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-map-point",
          "description": "Element for adding a point to a polyline or polygon on the map\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "latitude",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "longitude",
              "value": { "type": "number", "default": "0" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              { "name": "latitude", "value": { "type": "number" } },
              { "name": "longitude", "value": { "type": "number" } }
            ],
            "events": []
          }
        },
        {
          "name": "awc-map-polygon",
          "description": "Element for putting a polygon on the map\n---\n\n\n### **Slots:**\n - _default_ - The default slot.",
          "doc-url": "",
          "attributes": [
            {
              "name": "stroke",
              "description": "The attribute `stroke` sets whether to draw stroke along the path. Set it to false to disable borders on polygons or circles.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "color",
              "description": "The attribute `color` sets the stroke color.",
              "value": { "type": "string", "default": "'#03f'" }
            },
            {
              "name": "weight",
              "description": "The attribute `weight` sets the stroke width in pixels.",
              "value": { "type": "number | string | undefined", "default": "5" }
            },
            {
              "name": "opacity",
              "description": "The attribute `opacity` sets the stroke opacity.",
              "value": {
                "type": "number | string | undefined",
                "default": "0.5"
              }
            },
            {
              "name": "fill",
              "description": "The attribute `fill` sets the whether to fill the path with color. Set it to false to disable filling on polygons or circles.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "fill-color",
              "description": "The attribute `fill-color` sets the fill color.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "fill-opacity",
              "description": "The attribute `fill-opacity` sets the fill opacity.",
              "value": {
                "type": "number | string | undefined",
                "default": "0.2"
              }
            },
            {
              "name": "dash-array",
              "description": "The attribute `dash-array` sets a string that defines the stroke dash pattern. Doesn't work on canvas-powered layers (e.g. Android 2).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "line-cap",
              "description": "The attribute `line-cap` defines the shape to be used at the end of the stroke.",
              "value": { "type": "string", "default": "undefined" }
            },
            {
              "name": "line-join",
              "description": "The attribute `line-join` sets the string that defines shape to be used at the corners of the stroke.",
              "value": { "type": "string", "default": "undefined" }
            },
            {
              "name": "pointer-events",
              "description": "The attribute `pointer-events` sets the pointer-events attribute on the path if SVG backend is used.",
              "value": { "type": "string", "default": "undefined" }
            },
            {
              "name": "clickable",
              "description": "The attribute `clickable` sets whether the vector will emit mouse events or will act as a part of the underlying map.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "class-name",
              "description": "The attribute `class-name` sets the custom class name set on an element.",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "slots": [{ "name": "", "description": "The default slot." }],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "stroke",
                "description": "The attribute `stroke` sets whether to draw stroke along the path. Set it to false to disable borders on polygons or circles.",
                "value": { "type": "boolean" }
              },
              {
                "name": "color",
                "description": "The attribute `color` sets the stroke color.",
                "value": { "type": "string" }
              },
              {
                "name": "weight",
                "description": "The attribute `weight` sets the stroke width in pixels.",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "opacity",
                "description": "The attribute `opacity` sets the stroke opacity.",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "fill",
                "description": "The attribute `fill` sets the whether to fill the path with color. Set it to false to disable filling on polygons or circles.",
                "value": { "type": "boolean" }
              },
              {
                "name": "fill-color",
                "description": "The attribute `fill-color` sets the fill color.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "fill-opacity",
                "description": "The attribute `fill-opacity` sets the fill opacity.",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "dash-array",
                "description": "The attribute `dash-array` sets a string that defines the stroke dash pattern. Doesn't work on canvas-powered layers (e.g. Android 2).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "line-cap",
                "description": "The attribute `line-cap` defines the shape to be used at the end of the stroke.",
                "value": {}
              },
              {
                "name": "line-join",
                "description": "The attribute `line-join` sets the string that defines shape to be used at the corners of the stroke.",
                "value": {}
              },
              {
                "name": "pointer-events",
                "description": "The attribute `pointer-events` sets the pointer-events attribute on the path if SVG backend is used.",
                "value": {}
              },
              {
                "name": "clickable",
                "description": "The attribute `clickable` sets whether the vector will emit mouse events or will act as a part of the underlying map.",
                "value": { "type": "boolean" }
              },
              {
                "name": "class-name",
                "description": "The attribute `class-name` sets the custom class name set on an element.",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-map-polyline",
          "description": "Element for putting a polyline on the map\n---\n\n\n### **Slots:**\n - _default_ - The default slot.",
          "doc-url": "",
          "attributes": [
            {
              "name": "stroke",
              "description": "The attribute `stroke` sets whether to draw stroke along the path. Set it to false to disable borders on polygons or circles.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "color",
              "description": "The attribute `color` sets the stroke color.",
              "value": { "type": "string", "default": "'#03f'" }
            },
            {
              "name": "weight",
              "description": "The attribute `weight` sets the stroke width in pixels.",
              "value": { "type": "number | string | undefined", "default": "5" }
            },
            {
              "name": "opacity",
              "description": "The attribute `opacity` sets the stroke opacity.",
              "value": {
                "type": "number | string | undefined",
                "default": "0.5"
              }
            },
            {
              "name": "fill",
              "description": "The attribute `fill` sets the whether to fill the path with color. Set it to false to disable filling on polygons or circles.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "fill-color",
              "description": "The attribute `fill-color` sets the fill color.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "fill-opacity",
              "description": "The attribute `fill-opacity` sets the fill opacity.",
              "value": {
                "type": "number | string | undefined",
                "default": "0.2"
              }
            },
            {
              "name": "dash-array",
              "description": "The attribute `dash-array` sets a string that defines the stroke dash pattern. Doesn't work on canvas-powered layers (e.g. Android 2).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "line-cap",
              "description": "The attribute `line-cap` defines the shape to be used at the end of the stroke.",
              "value": { "type": "string", "default": "undefined" }
            },
            {
              "name": "line-join",
              "description": "The attribute `line-join` sets the string that defines shape to be used at the corners of the stroke.",
              "value": { "type": "string", "default": "undefined" }
            },
            {
              "name": "pointer-events",
              "description": "The attribute `pointer-events` sets the pointer-events attribute on the path if SVG backend is used.",
              "value": { "type": "string", "default": "undefined" }
            },
            {
              "name": "clickable",
              "description": "The attribute `clickable` sets whether the vector will emit mouse events or will act as a part of the underlying map.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "class-name",
              "description": "The attribute `class-name` sets the custom class name set on an element.",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "slots": [{ "name": "", "description": "The default slot." }],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "stroke",
                "description": "The attribute `stroke` sets whether to draw stroke along the path. Set it to false to disable borders on polygons or circles.",
                "value": { "type": "boolean" }
              },
              {
                "name": "color",
                "description": "The attribute `color` sets the stroke color.",
                "value": { "type": "string" }
              },
              {
                "name": "weight",
                "description": "The attribute `weight` sets the stroke width in pixels.",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "opacity",
                "description": "The attribute `opacity` sets the stroke opacity.",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "fill",
                "description": "The attribute `fill` sets the whether to fill the path with color. Set it to false to disable filling on polygons or circles.",
                "value": { "type": "boolean" }
              },
              {
                "name": "fill-color",
                "description": "The attribute `fill-color` sets the fill color.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "fill-opacity",
                "description": "The attribute `fill-opacity` sets the fill opacity.",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "dash-array",
                "description": "The attribute `dash-array` sets a string that defines the stroke dash pattern. Doesn't work on canvas-powered layers (e.g. Android 2).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "line-cap",
                "description": "The attribute `line-cap` defines the shape to be used at the end of the stroke.",
                "value": {}
              },
              {
                "name": "line-join",
                "description": "The attribute `line-join` sets the string that defines shape to be used at the corners of the stroke.",
                "value": {}
              },
              {
                "name": "pointer-events",
                "description": "The attribute `pointer-events` sets the pointer-events attribute on the path if SVG backend is used.",
                "value": {}
              },
              {
                "name": "clickable",
                "description": "The attribute `clickable` sets whether the vector will emit mouse events or will act as a part of the underlying map.",
                "value": { "type": "boolean" }
              },
              {
                "name": "class-name",
                "description": "The attribute `class-name` sets the custom class name set on an element.",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-map-rectangle",
          "description": "Element for putting a rectangle on the map\n---\n\n\n### **Slots:**\n - _default_ - The default slot for popup content.",
          "doc-url": "",
          "attributes": [
            {
              "name": "lat-lng-bounds",
              "description": "The attribute `latLngBounds` represents a rectangular geographical area on a map..",
              "value": { "type": "L.LatLngBoundsExpression | undefined" }
            },
            {
              "name": "stroke",
              "description": "The attribute `stroke` sets whether to draw stroke along the path. Set it to false to disable borders on polygons or circles.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "color",
              "description": "The attribute `color` sets the stroke color.",
              "value": { "type": "string", "default": "'#03f'" }
            },
            {
              "name": "weight",
              "description": "The attribute `weight` sets the stroke width in pixels.",
              "value": { "type": "number | string | undefined", "default": "5" }
            },
            {
              "name": "opacity",
              "description": "The attribute `opacity` sets the stroke opacity.",
              "value": {
                "type": "number | string | undefined",
                "default": "0.5"
              }
            },
            {
              "name": "fill",
              "description": "The attribute `fill` sets the whether to fill the path with color. Set it to false to disable filling on polygons or circles.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "fill-color",
              "description": "The attribute `fill-color` sets the fill color.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "fill-opacity",
              "description": "The attribute `fill-opacity` sets the fill opacity.",
              "value": {
                "type": "number | string | undefined",
                "default": "0.2"
              }
            },
            {
              "name": "dash-array",
              "description": "The attribute `dash-array` sets a string that defines the stroke dash pattern. Doesn't work on canvas-powered layers (e.g. Android 2).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "line-cap",
              "description": "The attribute `line-cap` defines the shape to be used at the end of the stroke.",
              "value": { "type": "string", "default": "undefined" }
            },
            {
              "name": "line-join",
              "description": "The attribute `line-join` sets the string that defines shape to be used at the corners of the stroke.",
              "value": { "type": "string", "default": "undefined" }
            },
            {
              "name": "pointer-events",
              "description": "The attribute `pointer-events` sets the pointer-events attribute on the path if SVG backend is used.",
              "value": { "type": "string", "default": "undefined" }
            },
            {
              "name": "clickable",
              "description": "The attribute `clickable` sets whether the vector will emit mouse events or will act as a part of the underlying map.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "class-name",
              "description": "The attribute `class-name` sets the custom class name set on an element.",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "slots": [
            { "name": "", "description": "The default slot for popup content." }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "lat-lng-bounds",
                "description": "The attribute `latLngBounds` represents a rectangular geographical area on a map..",
                "value": { "type": "L.LatLngBoundsExpression | undefined" }
              },
              {
                "name": "stroke",
                "description": "The attribute `stroke` sets whether to draw stroke along the path. Set it to false to disable borders on polygons or circles.",
                "value": { "type": "boolean" }
              },
              {
                "name": "color",
                "description": "The attribute `color` sets the stroke color.",
                "value": { "type": "string" }
              },
              {
                "name": "weight",
                "description": "The attribute `weight` sets the stroke width in pixels.",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "opacity",
                "description": "The attribute `opacity` sets the stroke opacity.",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "fill",
                "description": "The attribute `fill` sets the whether to fill the path with color. Set it to false to disable filling on polygons or circles.",
                "value": { "type": "boolean" }
              },
              {
                "name": "fill-color",
                "description": "The attribute `fill-color` sets the fill color.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "fill-opacity",
                "description": "The attribute `fill-opacity` sets the fill opacity.",
                "value": { "type": "number | string | undefined" }
              },
              {
                "name": "dash-array",
                "description": "The attribute `dash-array` sets a string that defines the stroke dash pattern. Doesn't work on canvas-powered layers (e.g. Android 2).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "line-cap",
                "description": "The attribute `line-cap` defines the shape to be used at the end of the stroke.",
                "value": {}
              },
              {
                "name": "line-join",
                "description": "The attribute `line-join` sets the string that defines shape to be used at the corners of the stroke.",
                "value": {}
              },
              {
                "name": "pointer-events",
                "description": "The attribute `pointer-events` sets the pointer-events attribute on the path if SVG backend is used.",
                "value": {}
              },
              {
                "name": "clickable",
                "description": "The attribute `clickable` sets whether the vector will emit mouse events or will act as a part of the underlying map.",
                "value": { "type": "boolean" }
              },
              {
                "name": "class-name",
                "description": "The attribute `class-name` sets the custom class name set on an element.",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-map-scale-control",
          "description": "Scale control that shows the scale of the current center of screen in metric (m/km) and imperial (mi/ft) systems.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "position",
              "description": "The `position` attribute sets the position of the control (one of the map corners). See control positions.",
              "value": {
                "type": "'topleft' | 'topright' | 'bottomleft' | 'bottomright'",
                "default": "'topright'"
              }
            },
            {
              "name": "max-width",
              "description": "The `max-width` attribute sets the maximum width of the control in pixels. The width is set dynamically to show round values (e.g. 100, 200, 500).",
              "value": { "type": "number", "default": "100" }
            },
            {
              "name": "metric",
              "description": "The `metric` attribute sets whether to show the metric scale line (m/km).",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "imperial",
              "description": "The `imperial` attribute sets whether to show the imperial scale line (mi/ft).",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "update-when-idle",
              "description": "The `update-when-idle` attribute sets whether the control is updated on moveend, otherwise it's always up-to-date (updated on move).",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "position",
                "description": "The `position` attribute sets the position of the control (one of the map corners). See control positions.",
                "value": {
                  "type": "'topleft' | 'topright' | 'bottomleft' | 'bottomright'"
                }
              },
              {
                "name": "max-width",
                "description": "The `max-width` attribute sets the maximum width of the control in pixels. The width is set dynamically to show round values (e.g. 100, 200, 500).",
                "value": { "type": "number" }
              },
              {
                "name": "metric",
                "description": "The `metric` attribute sets whether to show the metric scale line (m/km).",
                "value": { "type": "boolean" }
              },
              {
                "name": "imperial",
                "description": "The `imperial` attribute sets whether to show the imperial scale line (mi/ft).",
                "value": { "type": "boolean" }
              },
              {
                "name": "update-when-idle",
                "description": "The `update-when-idle` attribute sets whether the control is updated on moveend, otherwise it's always up-to-date (updated on move).",
                "value": { "type": "boolean" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-map-svg-overlay",
          "description": "Element which defines a SVG overlay.\n---\n\n\n### **Events:**\n - **awc-map** - type : contextmenu\t- If interactive, emitted when the user right-clicks on the layer, prevents default browser context menu from showing if there are listeners on this event. Also fired on mobile when the user holds a single touch for a second (also called long press).\n\n### **Slots:**\n - _default_ - The SVG content.",
          "doc-url": "",
          "attributes": [
            {
              "name": "lat-lng-bounds",
              "description": "The attribute `latLngBounds` represents a rectangular geographical area on a map..",
              "value": { "type": "L.LatLngBoundsExpression | undefined" }
            },
            {
              "name": "url",
              "description": "Instantiates an image overlay object given the URL of the image and the geographical bounds it is tied to.",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "alt",
              "description": "Text for the alt attribute of the image (useful for accessibility).",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "error-overlay-url",
              "description": "URL to the overlay image to show in place of the overlay that failed to load.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "attribution",
              "description": "The `attribution` attribute sets the attribute. As html code needs to be escaped here, it is preferable to define it as child element.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "opacity",
              "description": "The `opacity` attribute sets the opacity of the tile layer.",
              "value": { "type": "number", "default": "1.0" }
            },
            {
              "name": "z-index",
              "description": "The `z-index` attribute sets the explicit zIndex of the tile layer. Not set by default.",
              "value": { "type": "number", "default": "1" }
            },
            {
              "name": "interactive",
              "description": "If `true`, the image overlay will emit mouse events when clicked or hovered.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "cross-origin",
              "description": "If `true`, the image overlay will emit mouse events when clicked or hovered.",
              "value": {
                "type": "boolean | 'anonymous' | 'use-credentials' | ''",
                "default": "false"
              }
            }
          ],
          "slots": [{ "name": "", "description": "The SVG content." }],
          "events": [
            {
              "name": "awc-map",
              "description": "type : contextmenu\t- If interactive, emitted when the user right-clicks on the layer, prevents default browser context menu from showing if there are listeners on this event. Also fired on mobile when the user holds a single touch for a second (also called long press)."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "lat-lng-bounds",
                "description": "The attribute `latLngBounds` represents a rectangular geographical area on a map..",
                "value": { "type": "L.LatLngBoundsExpression | undefined" }
              },
              {
                "name": "url",
                "description": "Instantiates an image overlay object given the URL of the image and the geographical bounds it is tied to.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "alt",
                "description": "Text for the alt attribute of the image (useful for accessibility).",
                "value": { "type": "string" }
              },
              {
                "name": "error-overlay-url",
                "description": "URL to the overlay image to show in place of the overlay that failed to load.",
                "value": { "type": "string" }
              },
              {
                "name": "attribution",
                "description": "The `attribution` attribute sets the attribute. As html code needs to be escaped here, it is preferable to define it as child element.",
                "value": { "type": "string" }
              },
              {
                "name": "opacity",
                "description": "The `opacity` attribute sets the opacity of the tile layer.",
                "value": { "type": "number" }
              },
              {
                "name": "z-index",
                "description": "The `z-index` attribute sets the explicit zIndex of the tile layer. Not set by default.",
                "value": { "type": "number" }
              },
              {
                "name": "interactive",
                "description": "If `true`, the image overlay will emit mouse events when clicked or hovered.",
                "value": { "type": "boolean" }
              },
              {
                "name": "cross-origin",
                "description": "If `true`, the image overlay will emit mouse events when clicked or hovered.",
                "value": {
                  "type": "boolean | 'anonymous' | 'use-credentials' | ''"
                }
              }
            ],
            "events": [
              {
                "name": "awc-map",
                "description": "type : contextmenu\t- If interactive, emitted when the user right-clicks on the layer, prevents default browser context menu from showing if there are listeners on this event. Also fired on mobile when the user holds a single touch for a second (also called long press)."
              }
            ]
          }
        },
        {
          "name": "awc-map-tilelayer",
          "description": "Element which defines a tile layer. The content of the `awc-map-tilelayer` is used as attribution.\n---\n\n\n### **Events:**\n - **awc-map** - type : tileunload - Emitted when a tile is removed (e.g. when you have unloadInvisibleTiles on).\n\n### **Slots:**\n - _default_ - The default slot for attribution.",
          "doc-url": "",
          "attributes": [
            {
              "name": "url",
              "description": "The `url` attribute sets the address template for tilesets.\n\n'http://{s}.somedomain.com/blabla/{z}/{x}/{y}.png'\n\n{s} means one of the available subdomains (used sequentially to help with\nbrowser parallel requests per domain limitation; subdomain values are specified\nin options; a, b or c by default, can be omitted), {z} — zoom level, {x} and {y}\n— tile coordinates.",
              "value": {
                "type": "string",
                "default": "'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png'"
              }
            },
            {
              "name": "min-zoom",
              "description": "The `min-zoom` attribute sets the minimum zoom number.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "max-zoom",
              "description": "The `max-zoom` attribute sets the maximum zoom number.",
              "value": { "type": "number", "default": "18" }
            },
            {
              "name": "max-native-zoom",
              "description": "The `maxnativezoom` attribute sets the maximum zoom number the tiles source has available. If it is specified, the tiles on all zoom levels higher than maxNativeZoom will be loaded from maxZoom level and auto-scaled.",
              "value": { "type": "number" }
            },
            {
              "name": "tile-size",
              "description": "The `tile-size` attribute sets the tile size (width and height in pixels, assuming tiles are square).",
              "value": { "type": "number", "default": "256" }
            },
            {
              "name": "subdomains",
              "description": "The `subdomains` attribute sets the subdomains of the tile service. Can be passed in the form of one string (where each letter is a subdomain name) or an array of strings.",
              "value": { "type": "string | string[]", "default": "'abc'" }
            },
            {
              "name": "error-tile-url",
              "description": "The `error-tile-url` attribute sets the URL to the tile image to show in place of the tile that failed to load.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "attribution",
              "description": "The `attribution` attribute sets the attribute. As html code needs to be escaped here, it is preferable to define it as child element.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "tms",
              "description": "The `tms` attribute sets whether inverses Y axis numbering for tiles should be used (turn this on for TMS services).",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "continuous-world",
              "description": "The `continuous-world` attribute sets the wether tile coordinates won't be wrapped by world width (-180 to 180 longitude) or clamped to lie within world height (-90 to 90). Use this if you use Leaflet for maps that don't reflect the real world (e.g. game, indoor or photo maps).",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "noWrap",
              "description": "The `nowrap` attribute sets wether the tiles just won't load outside the world width (-180 to 180 longitude) instead of repeating.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "zoom-offset",
              "description": "The `zoom-offset` attribute sets the zoom number used in tile URLs will be offset with this value.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "zoom-reverse",
              "description": "The `zoom-reverse` attribute sets whether the zoom number used in tile URLs will be reversed (maxZoom - zoom instead of zoom)",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "opacity",
              "description": "The `opacity` attribute sets the opacity of the tile layer.",
              "value": { "type": "number", "default": "1.0" }
            },
            {
              "name": "z-index",
              "description": "The `z-index` attribute sets the explicit zIndex of the tile layer. Not set by default.",
              "value": { "type": "number", "default": "1" }
            },
            {
              "name": "detect-retina",
              "description": "The `detect-retina` attribute sets whether if user is on a retina display, it will request four tiles of half the specified size and a bigger zoom level in place of one to utilize the high resolution.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "reuse-tiles",
              "description": "The `reuse-tiles` attribute sets whether all the tiles that are not visible after panning are placed in a reuse queue from which they will be fetched when new tiles become visible (as opposed to dynamically creating new ones). This will in theory keep memory usage low and eliminate the need for reserving new memory whenever a new tile is needed.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "", "description": "The default slot for attribution." }
          ],
          "events": [
            {
              "name": "awc-map",
              "description": "type : tileunload - Emitted when a tile is removed (e.g. when you have unloadInvisibleTiles on)."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "url",
                "description": "The `url` attribute sets the address template for tilesets.\n\n'http://{s}.somedomain.com/blabla/{z}/{x}/{y}.png'\n\n{s} means one of the available subdomains (used sequentially to help with\nbrowser parallel requests per domain limitation; subdomain values are specified\nin options; a, b or c by default, can be omitted), {z} — zoom level, {x} and {y}\n— tile coordinates.",
                "value": { "type": "string" }
              },
              {
                "name": "min-zoom",
                "description": "The `min-zoom` attribute sets the minimum zoom number.",
                "value": { "type": "number" }
              },
              {
                "name": "max-zoom",
                "description": "The `max-zoom` attribute sets the maximum zoom number.",
                "value": { "type": "number" }
              },
              {
                "name": "max-native-zoom",
                "description": "The `maxnativezoom` attribute sets the maximum zoom number the tiles source has available. If it is specified, the tiles on all zoom levels higher than maxNativeZoom will be loaded from maxZoom level and auto-scaled.",
                "value": { "type": "number" }
              },
              {
                "name": "tile-size",
                "description": "The `tile-size` attribute sets the tile size (width and height in pixels, assuming tiles are square).",
                "value": { "type": "number" }
              },
              {
                "name": "subdomains",
                "description": "The `subdomains` attribute sets the subdomains of the tile service. Can be passed in the form of one string (where each letter is a subdomain name) or an array of strings.",
                "value": { "type": "string | string[]" }
              },
              {
                "name": "error-tile-url",
                "description": "The `error-tile-url` attribute sets the URL to the tile image to show in place of the tile that failed to load.",
                "value": { "type": "string" }
              },
              {
                "name": "attribution",
                "description": "The `attribution` attribute sets the attribute. As html code needs to be escaped here, it is preferable to define it as child element.",
                "value": { "type": "string" }
              },
              {
                "name": "tms",
                "description": "The `tms` attribute sets whether inverses Y axis numbering for tiles should be used (turn this on for TMS services).",
                "value": { "type": "boolean" }
              },
              {
                "name": "continuous-world",
                "description": "The `continuous-world` attribute sets the wether tile coordinates won't be wrapped by world width (-180 to 180 longitude) or clamped to lie within world height (-90 to 90). Use this if you use Leaflet for maps that don't reflect the real world (e.g. game, indoor or photo maps).",
                "value": { "type": "boolean" }
              },
              {
                "name": "noWrap",
                "description": "The `nowrap` attribute sets wether the tiles just won't load outside the world width (-180 to 180 longitude) instead of repeating.",
                "value": { "type": "boolean" }
              },
              {
                "name": "zoom-offset",
                "description": "The `zoom-offset` attribute sets the zoom number used in tile URLs will be offset with this value.",
                "value": { "type": "number" }
              },
              {
                "name": "zoom-reverse",
                "description": "The `zoom-reverse` attribute sets whether the zoom number used in tile URLs will be reversed (maxZoom - zoom instead of zoom)",
                "value": { "type": "boolean" }
              },
              {
                "name": "opacity",
                "description": "The `opacity` attribute sets the opacity of the tile layer.",
                "value": { "type": "number" }
              },
              {
                "name": "z-index",
                "description": "The `z-index` attribute sets the explicit zIndex of the tile layer. Not set by default.",
                "value": { "type": "number" }
              },
              {
                "name": "detect-retina",
                "description": "The `detect-retina` attribute sets whether if user is on a retina display, it will request four tiles of half the specified size and a bigger zoom level in place of one to utilize the high resolution.",
                "value": { "type": "boolean" }
              },
              {
                "name": "reuse-tiles",
                "description": "The `reuse-tiles` attribute sets whether all the tiles that are not visible after panning are placed in a reuse queue from which they will be fetched when new tiles become visible (as opposed to dynamically creating new ones). This will in theory keep memory usage low and eliminate the need for reserving new memory whenever a new tile is needed.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-map",
                "description": "type : tileunload - Emitted when a tile is removed (e.g. when you have unloadInvisibleTiles on)."
              }
            ]
          }
        },
        {
          "name": "awc-map-tilelayer-google",
          "description": "Element which defines a tile layer for Google. The content of the `awc-map-tilelayer-google` is used as attribution. It inherits attributes and events from `awc-map-tilelayer`;\n---\n\n\n### **Events:**\n - **awc-map** - type : tileunload - Emitted when a tile is removed (e.g. when you have unloadInvisibleTiles on).\n\n### **Slots:**\n - _default_ - The default slot for attribution.",
          "doc-url": "",
          "attributes": [
            {
              "name": "type",
              "description": "Google's map type. 'hybrid' is not really supported.",
              "value": {
                "type": "'roadmap' | 'satellite' | 'terrain' | 'hybrid'",
                "default": "'roadmap'"
              }
            },
            {
              "name": "map-styles",
              "description": "Google's map styles.",
              "value": {
                "type": "L.GoogleMutantStyle[] | undefined | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "min-zoom",
              "description": "The `min-zoom` attribute sets the minimum zoom number.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "max-zoom",
              "description": "The `max-zoom` attribute sets the maximum zoom number.",
              "value": { "type": "number", "default": "18" }
            },
            {
              "name": "max-native-zoom",
              "description": "The `maxnativezoom` attribute sets the maximum zoom number the tiles source has available. If it is specified, the tiles on all zoom levels higher than maxNativeZoom will be loaded from maxZoom level and auto-scaled.",
              "value": { "type": "number" }
            },
            {
              "name": "tile-size",
              "description": "The `tile-size` attribute sets the tile size (width and height in pixels, assuming tiles are square).",
              "value": { "type": "number", "default": "256" }
            },
            {
              "name": "subdomains",
              "description": "The `subdomains` attribute sets the subdomains of the tile service. Can be passed in the form of one string (where each letter is a subdomain name) or an array of strings.",
              "value": { "type": "string | string[]", "default": "'abc'" }
            },
            {
              "name": "error-tile-url",
              "description": "The `error-tile-url` attribute sets the URL to the tile image to show in place of the tile that failed to load.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "attribution",
              "description": "The `attribution` attribute sets the attribute. As html code needs to be escaped here, it is preferable to define it as child element.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "continuous-world",
              "description": "The `continuous-world` attribute sets the wether tile coordinates won't be wrapped by world width (-180 to 180 longitude) or clamped to lie within world height (-90 to 90). Use this if you use Leaflet for maps that don't reflect the real world (e.g. game, indoor or photo maps).",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "noWrap",
              "description": "The `nowrap` attribute sets wether the tiles just won't load outside the world width (-180 to 180 longitude) instead of repeating.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "opacity",
              "description": "The `opacity` attribute sets the opacity of the tile layer.",
              "value": { "type": "number", "default": "1.0" }
            },
            {
              "name": "z-index",
              "description": "The `z-index` attribute sets the explicit zIndex of the tile layer. Not set by default.",
              "value": { "type": "number", "default": "10" }
            }
          ],
          "slots": [
            { "name": "", "description": "The default slot for attribution." }
          ],
          "events": [
            {
              "name": "awc-map",
              "description": "type : tileunload - Emitted when a tile is removed (e.g. when you have unloadInvisibleTiles on)."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "type",
                "description": "Google's map type. 'hybrid' is not really supported.",
                "value": {
                  "type": "'roadmap' | 'satellite' | 'terrain' | 'hybrid'"
                }
              },
              {
                "name": "map-styles",
                "description": "Google's map styles.",
                "value": {
                  "type": "L.GoogleMutantStyle[] | undefined | undefined"
                }
              },
              {
                "name": "min-zoom",
                "description": "The `min-zoom` attribute sets the minimum zoom number.",
                "value": { "type": "number" }
              },
              {
                "name": "max-zoom",
                "description": "The `max-zoom` attribute sets the maximum zoom number.",
                "value": { "type": "number" }
              },
              {
                "name": "max-native-zoom",
                "description": "The `maxnativezoom` attribute sets the maximum zoom number the tiles source has available. If it is specified, the tiles on all zoom levels higher than maxNativeZoom will be loaded from maxZoom level and auto-scaled.",
                "value": { "type": "number" }
              },
              {
                "name": "tile-size",
                "description": "The `tile-size` attribute sets the tile size (width and height in pixels, assuming tiles are square).",
                "value": { "type": "number" }
              },
              {
                "name": "subdomains",
                "description": "The `subdomains` attribute sets the subdomains of the tile service. Can be passed in the form of one string (where each letter is a subdomain name) or an array of strings.",
                "value": { "type": "string | string[]" }
              },
              {
                "name": "error-tile-url",
                "description": "The `error-tile-url` attribute sets the URL to the tile image to show in place of the tile that failed to load.",
                "value": { "type": "string" }
              },
              {
                "name": "attribution",
                "description": "The `attribution` attribute sets the attribute. As html code needs to be escaped here, it is preferable to define it as child element.",
                "value": { "type": "string" }
              },
              {
                "name": "continuous-world",
                "description": "The `continuous-world` attribute sets the wether tile coordinates won't be wrapped by world width (-180 to 180 longitude) or clamped to lie within world height (-90 to 90). Use this if you use Leaflet for maps that don't reflect the real world (e.g. game, indoor or photo maps).",
                "value": { "type": "boolean" }
              },
              {
                "name": "noWrap",
                "description": "The `nowrap` attribute sets wether the tiles just won't load outside the world width (-180 to 180 longitude) instead of repeating.",
                "value": { "type": "boolean" }
              },
              {
                "name": "opacity",
                "description": "The `opacity` attribute sets the opacity of the tile layer.",
                "value": { "type": "number" }
              },
              {
                "name": "z-index",
                "description": "The `z-index` attribute sets the explicit zIndex of the tile layer. Not set by default.",
                "value": { "type": "number" }
              }
            ],
            "events": [
              {
                "name": "awc-map",
                "description": "type : tileunload - Emitted when a tile is removed (e.g. when you have unloadInvisibleTiles on)."
              }
            ]
          }
        },
        {
          "name": "awc-map-tilelayer-wms",
          "description": "Element which defines a tile layer for WMS. The content of the `awc-map-tilelayer-wms` is used as attribution. It inherits attributes and events from `awc-map-tilelayer`;\n---\n\n\n### **Events:**\n - **awc-map** - type : tileunload - Emitted when a tile is removed (e.g. when you have unloadInvisibleTiles on).\n\n### **Slots:**\n - _default_ - The default slot for attribution.",
          "doc-url": "",
          "attributes": [
            {
              "name": "url",
              "description": "The `url` attribute sets the URL of the WMS service and a WMS parameters/options object.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "min-zoom",
              "description": "The `min-zoom` attribute sets the minimum zoom number.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "max-zoom",
              "description": "The `max-zoom` attribute sets the maximum zoom number.",
              "value": { "type": "number", "default": "18" }
            },
            {
              "name": "max-native-zoom",
              "description": "The `maxnativezoom` attribute sets the maximum zoom number the tiles source has available. If it is specified, the tiles on all zoom levels higher than maxNativeZoom will be loaded from maxZoom level and auto-scaled.",
              "value": { "type": "number" }
            },
            {
              "name": "tile-size",
              "description": "The `tile-size` attribute sets the tile size (width and height in pixels, assuming tiles are square).",
              "value": { "type": "number", "default": "256" }
            },
            {
              "name": "subdomains",
              "description": "The `subdomains` attribute sets the subdomains of the tile service. Can be passed in the form of one string (where each letter is a subdomain name) or an array of strings.",
              "value": { "type": "string | string[]", "default": "'abc'" }
            },
            {
              "name": "error-tile-url",
              "description": "The `error-tile-url` attribute sets the URL to the tile image to show in place of the tile that failed to load.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "attribution",
              "description": "The `attribution` attribute sets the attribute. As html code needs to be escaped here, it is preferable to define it as child element.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "tms",
              "description": "The `tms` attribute sets whether inverses Y axis numbering for tiles should be used (turn this on for TMS services).",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "continuous-world",
              "description": "The `continuous-world` attribute sets the wether tile coordinates won't be wrapped by world width (-180 to 180 longitude) or clamped to lie within world height (-90 to 90). Use this if you use Leaflet for maps that don't reflect the real world (e.g. game, indoor or photo maps).",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "noWrap",
              "description": "The `nowrap` attribute sets wether the tiles just won't load outside the world width (-180 to 180 longitude) instead of repeating.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "zoom-offset",
              "description": "The `zoom-offset` attribute sets the zoom number used in tile URLs will be offset with this value.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "zoom-reverse",
              "description": "The `zoom-reverse` attribute sets whether the zoom number used in tile URLs will be reversed (maxZoom - zoom instead of zoom)",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "opacity",
              "description": "The `opacity` attribute sets the opacity of the tile layer.",
              "value": { "type": "number", "default": "1.0" }
            },
            {
              "name": "z-index",
              "description": "The `z-index` attribute sets the explicit zIndex of the tile layer. Not set by default.",
              "value": { "type": "number", "default": "10" }
            },
            {
              "name": "detect-retina",
              "description": "The `detect-retina` attribute sets whether if user is on a retina display, it will request four tiles of half the specified size and a bigger zoom level in place of one to utilize the high resolution.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "reuse-tiles",
              "description": "The `reuse-tiles` attribute sets whether all the tiles that are not visible after panning are placed in a reuse queue from which they will be fetched when new tiles become visible (as opposed to dynamically creating new ones). This will in theory keep memory usage low and eliminate the need for reserving new memory whenever a new tile is needed.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "layers",
              "description": "The `layers` attribute sets the comma-separated list of WMS layers to show (required).",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "styles",
              "description": "The `styles` attribute sets the comma-separated list of WMS styles.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "format",
              "description": "The `format` attribute sets the WMS image format (use 'image/png' for layers with transparency).",
              "value": { "type": "string", "default": "'image/jpeg'" }
            },
            {
              "name": "transparent",
              "description": "The `transparent` attribute whether the WMS service will return images with transparency.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "version",
              "description": "The `version` attribute sets the version of the WMS service to use.",
              "value": { "type": "string", "default": "'1.1.1'" }
            }
          ],
          "slots": [
            { "name": "", "description": "The default slot for attribution." }
          ],
          "events": [
            {
              "name": "awc-map",
              "description": "type : tileunload - Emitted when a tile is removed (e.g. when you have unloadInvisibleTiles on)."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "url",
                "description": "The `url` attribute sets the URL of the WMS service and a WMS parameters/options object.",
                "value": { "type": "string" }
              },
              {
                "name": "min-zoom",
                "description": "The `min-zoom` attribute sets the minimum zoom number.",
                "value": { "type": "number" }
              },
              {
                "name": "max-zoom",
                "description": "The `max-zoom` attribute sets the maximum zoom number.",
                "value": { "type": "number" }
              },
              {
                "name": "max-native-zoom",
                "description": "The `maxnativezoom` attribute sets the maximum zoom number the tiles source has available. If it is specified, the tiles on all zoom levels higher than maxNativeZoom will be loaded from maxZoom level and auto-scaled.",
                "value": { "type": "number" }
              },
              {
                "name": "tile-size",
                "description": "The `tile-size` attribute sets the tile size (width and height in pixels, assuming tiles are square).",
                "value": { "type": "number" }
              },
              {
                "name": "subdomains",
                "description": "The `subdomains` attribute sets the subdomains of the tile service. Can be passed in the form of one string (where each letter is a subdomain name) or an array of strings.",
                "value": { "type": "string | string[]" }
              },
              {
                "name": "error-tile-url",
                "description": "The `error-tile-url` attribute sets the URL to the tile image to show in place of the tile that failed to load.",
                "value": { "type": "string" }
              },
              {
                "name": "attribution",
                "description": "The `attribution` attribute sets the attribute. As html code needs to be escaped here, it is preferable to define it as child element.",
                "value": { "type": "string" }
              },
              {
                "name": "tms",
                "description": "The `tms` attribute sets whether inverses Y axis numbering for tiles should be used (turn this on for TMS services).",
                "value": { "type": "boolean" }
              },
              {
                "name": "continuous-world",
                "description": "The `continuous-world` attribute sets the wether tile coordinates won't be wrapped by world width (-180 to 180 longitude) or clamped to lie within world height (-90 to 90). Use this if you use Leaflet for maps that don't reflect the real world (e.g. game, indoor or photo maps).",
                "value": { "type": "boolean" }
              },
              {
                "name": "noWrap",
                "description": "The `nowrap` attribute sets wether the tiles just won't load outside the world width (-180 to 180 longitude) instead of repeating.",
                "value": { "type": "boolean" }
              },
              {
                "name": "zoom-offset",
                "description": "The `zoom-offset` attribute sets the zoom number used in tile URLs will be offset with this value.",
                "value": { "type": "number" }
              },
              {
                "name": "zoom-reverse",
                "description": "The `zoom-reverse` attribute sets whether the zoom number used in tile URLs will be reversed (maxZoom - zoom instead of zoom)",
                "value": { "type": "boolean" }
              },
              {
                "name": "opacity",
                "description": "The `opacity` attribute sets the opacity of the tile layer.",
                "value": { "type": "number" }
              },
              {
                "name": "z-index",
                "description": "The `z-index` attribute sets the explicit zIndex of the tile layer. Not set by default.",
                "value": { "type": "number" }
              },
              {
                "name": "detect-retina",
                "description": "The `detect-retina` attribute sets whether if user is on a retina display, it will request four tiles of half the specified size and a bigger zoom level in place of one to utilize the high resolution.",
                "value": { "type": "boolean" }
              },
              {
                "name": "reuse-tiles",
                "description": "The `reuse-tiles` attribute sets whether all the tiles that are not visible after panning are placed in a reuse queue from which they will be fetched when new tiles become visible (as opposed to dynamically creating new ones). This will in theory keep memory usage low and eliminate the need for reserving new memory whenever a new tile is needed.",
                "value": { "type": "boolean" }
              },
              {
                "name": "layers",
                "description": "The `layers` attribute sets the comma-separated list of WMS layers to show (required).",
                "value": { "type": "string" }
              },
              {
                "name": "styles",
                "description": "The `styles` attribute sets the comma-separated list of WMS styles.",
                "value": { "type": "string" }
              },
              {
                "name": "format",
                "description": "The `format` attribute sets the WMS image format (use 'image/png' for layers with transparency).",
                "value": { "type": "string" }
              },
              {
                "name": "transparent",
                "description": "The `transparent` attribute whether the WMS service will return images with transparency.",
                "value": { "type": "boolean" }
              },
              {
                "name": "version",
                "description": "The `version` attribute sets the version of the WMS service to use.",
                "value": { "type": "string" }
              }
            ],
            "events": [
              {
                "name": "awc-map",
                "description": "type : tileunload - Emitted when a tile is removed (e.g. when you have unloadInvisibleTiles on)."
              }
            ]
          }
        },
        {
          "name": "awc-map-video-overlay",
          "description": "Element which defines a video overlay.\n---\n\n\n### **Events:**\n - **awc-map** - type : contextmenu\t- If interactive, emitted when the user right-clicks on the layer, prevents default browser context menu from showing if there are listeners on this event. Also fired on mobile when the user holds a single touch for a second (also called long press).",
          "doc-url": "",
          "attributes": [
            {
              "name": "lat-lng-bounds",
              "description": "The attribute `latLngBounds` represents a rectangular geographical area on a map..",
              "value": { "type": "L.LatLngBoundsExpression | undefined" }
            },
            {
              "name": "url",
              "description": "Instantiates an image overlay object given the URL of the image and the geographical bounds it is tied to.",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "alt",
              "description": "Text for the alt attribute of the image (useful for accessibility).",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "error-overlay-url",
              "description": "URL to the overlay image to show in place of the overlay that failed to load.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "attribution",
              "description": "The `attribution` attribute sets the attribute. As html code needs to be escaped here, it is preferable to define it as child element.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "opacity",
              "description": "The `opacity` attribute sets the opacity of the tile layer.",
              "value": { "type": "number", "default": "1.0" }
            },
            {
              "name": "z-index",
              "description": "The `z-index` attribute sets the explicit zIndex of the tile layer. Not set by default.",
              "value": { "type": "number", "default": "1" }
            },
            {
              "name": "interactive",
              "description": "If `true`, the image overlay will emit mouse events when clicked or hovered.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "cross-origin",
              "description": "If `true`, the image overlay will emit mouse events when clicked or hovered.",
              "value": {
                "type": "boolean | 'anonymous' | 'use-credentials' | ''",
                "default": "false"
              }
            },
            {
              "name": "autoplay",
              "description": "Whether the video starts playing automatically when loaded. On some browsers autoplay will only work with `muted: true`",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "loop",
              "description": "Whether the video will loop back to the beginning when played.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "keep-aspect-ratio",
              "description": "Whether the video will save aspect ratio after the projection. Relevant for supported browsers. See [browser compatibility](https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit)",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "muted",
              "description": "Whether the video starts on mute when loaded.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "plays-inline",
              "description": "Mobile browsers will play the video right where it is instead of open it up in fullscreen mode.",
              "value": { "type": "boolean", "default": "true" }
            }
          ],
          "events": [
            {
              "name": "awc-map",
              "description": "type : contextmenu\t- If interactive, emitted when the user right-clicks on the layer, prevents default browser context menu from showing if there are listeners on this event. Also fired on mobile when the user holds a single touch for a second (also called long press)."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "lat-lng-bounds",
                "description": "The attribute `latLngBounds` represents a rectangular geographical area on a map..",
                "value": { "type": "L.LatLngBoundsExpression | undefined" }
              },
              {
                "name": "url",
                "description": "Instantiates an image overlay object given the URL of the image and the geographical bounds it is tied to.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "alt",
                "description": "Text for the alt attribute of the image (useful for accessibility).",
                "value": { "type": "string" }
              },
              {
                "name": "error-overlay-url",
                "description": "URL to the overlay image to show in place of the overlay that failed to load.",
                "value": { "type": "string" }
              },
              {
                "name": "attribution",
                "description": "The `attribution` attribute sets the attribute. As html code needs to be escaped here, it is preferable to define it as child element.",
                "value": { "type": "string" }
              },
              {
                "name": "opacity",
                "description": "The `opacity` attribute sets the opacity of the tile layer.",
                "value": { "type": "number" }
              },
              {
                "name": "z-index",
                "description": "The `z-index` attribute sets the explicit zIndex of the tile layer. Not set by default.",
                "value": { "type": "number" }
              },
              {
                "name": "interactive",
                "description": "If `true`, the image overlay will emit mouse events when clicked or hovered.",
                "value": { "type": "boolean" }
              },
              {
                "name": "cross-origin",
                "description": "If `true`, the image overlay will emit mouse events when clicked or hovered.",
                "value": {
                  "type": "boolean | 'anonymous' | 'use-credentials' | ''"
                }
              },
              {
                "name": "autoplay",
                "description": "Whether the video starts playing automatically when loaded. On some browsers autoplay will only work with `muted: true`",
                "value": { "type": "boolean" }
              },
              {
                "name": "loop",
                "description": "Whether the video will loop back to the beginning when played.",
                "value": { "type": "boolean" }
              },
              {
                "name": "keep-aspect-ratio",
                "description": "Whether the video will save aspect ratio after the projection. Relevant for supported browsers. See [browser compatibility](https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit)",
                "value": { "type": "boolean" }
              },
              {
                "name": "muted",
                "description": "Whether the video starts on mute when loaded.",
                "value": { "type": "boolean" }
              },
              {
                "name": "plays-inline",
                "description": "Mobile browsers will play the video right where it is instead of open it up in fullscreen mode.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-map",
                "description": "type : contextmenu\t- If interactive, emitted when the user right-clicks on the layer, prevents default browser context menu from showing if there are listeners on this event. Also fired on mobile when the user holds a single touch for a second (also called long press)."
              }
            ]
          }
        },
        {
          "name": "awc-map-zoom-control",
          "description": "Short summary of the component's intended use.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "position",
              "description": "The position of the control (one of the map corners).\nPossible values are 'topleft', 'topright', 'bottomleft' or 'bottomright'",
              "value": {
                "type": "'topleft' | 'topright' | 'bottomleft' | 'bottomright'",
                "default": "'topright'"
              }
            },
            {
              "name": "zoomInText",
              "description": "The text set on the 'zoom in' button.",
              "value": { "type": "string" }
            },
            {
              "name": "zoomInTitle",
              "description": "The title set on the 'zoom in' button.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "zoomOutText",
              "description": "The text set on the 'zoom out' button.",
              "value": { "type": "string" }
            },
            {
              "name": "zoomOutTitle",
              "description": "The title set on the 'zoom out' button.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "position",
                "description": "The position of the control (one of the map corners).\nPossible values are 'topleft', 'topright', 'bottomleft' or 'bottomright'",
                "value": {
                  "type": "'topleft' | 'topright' | 'bottomleft' | 'bottomright'"
                }
              },
              {
                "name": "zoomInText",
                "description": "The text set on the 'zoom in' button.",
                "value": {}
              },
              {
                "name": "zoomInTitle",
                "description": "The title set on the 'zoom in' button.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "zoomOutText",
                "description": "The text set on the 'zoom out' button.",
                "value": {}
              },
              {
                "name": "zoomOutTitle",
                "description": "The title set on the 'zoom out' button.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-menu",
          "description": "Menus provide a list of options for the user to choose from.\n---\n\n\n### **Events:**\n - **awc-select** - Emitted when a menu item is selected.\n\n### **Slots:**\n - _default_ - The menu's content, including menu items, menu labels, and dividers.",
          "doc-url": "",
          "attributes": [],
          "slots": [
            {
              "name": "",
              "description": "The menu's content, including menu items, menu labels, and dividers."
            }
          ],
          "events": [
            {
              "name": "awc-select",
              "description": "Emitted when a menu item is selected."
            }
          ],
          "js": {
            "properties": [
              { "name": "defaultSlot", "value": { "type": "HTMLSlotElement" } },
              { "name": "handleClick", "value": {} },
              { "name": "handleKeyDown", "value": {} },
              { "name": "handleMouseDown", "value": {} },
              { "name": "handleSlotChange", "value": {} },
              { "name": "isMenuItem", "value": {} }
            ],
            "events": [
              {
                "name": "awc-select",
                "description": "Emitted when a menu item is selected."
              }
            ]
          }
        },
        {
          "name": "awc-menu-item",
          "description": "Menu items provide options for the user to pick from in a menu.\n---\n\n\n### **Methods:**\n - **getTextLabel()** - Returns a text label based on the contents of the menu item's default slot.\n\n### **Slots:**\n - _default_ - The menu item's label.\n- **prefix** - Used to prepend an icon or similar element to the menu item.\n- **suffix** - Used to append an icon or similar element to the menu item.\n- **submenu** - Used to denote a nested menu.\n\n### **CSS Properties:**\n - **--submenu-offset** - The distance submenus shift to overlap the parent menu. _(default: -2px)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **checked-icon** - The checked icon, which is only visible when the menu item is checked.\n- **prefix** - The prefix container.\n- **label** - The menu item label.\n- **suffix** - The suffix container.\n- **spinner** - The spinner that shows when the menu item is in the loading state.\n- **spinner__base** - The spinner's base part.\n- **submenu-icon** - The submenu icon, visible only when the menu item has a submenu (not yet implemented).",
          "doc-url": "",
          "attributes": [
            {
              "name": "type",
              "description": "The type of menu item to render. To use `checked`, this value must be set to `checkbox`.",
              "value": {
                "type": "'normal' | 'checkbox'",
                "default": "'normal'"
              }
            },
            {
              "name": "checked",
              "description": "Draws the item in a checked state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "value",
              "description": "A unique value to store in the menu item. This can be used as a way to identify menu items when selected.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "loading",
              "description": "Draws the menu item in a loading state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "Draws the menu item in a disabled state, preventing selection.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "", "description": "The menu item's label." },
            {
              "name": "prefix",
              "description": "Used to prepend an icon or similar element to the menu item."
            },
            {
              "name": "suffix",
              "description": "Used to append an icon or similar element to the menu item."
            },
            {
              "name": "submenu",
              "description": "Used to denote a nested menu."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "type",
                "description": "The type of menu item to render. To use `checked`, this value must be set to `checkbox`.",
                "value": { "type": "'normal' | 'checkbox'" }
              },
              {
                "name": "checked",
                "description": "Draws the item in a checked state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "value",
                "description": "A unique value to store in the menu item. This can be used as a way to identify menu items when selected.",
                "value": { "type": "string" }
              },
              {
                "name": "loading",
                "description": "Draws the menu item in a loading state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "disabled",
                "description": "Draws the menu item in a disabled state, preventing selection.",
                "value": { "type": "boolean" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-menu-label",
          "description": "Menu labels are used to describe a group of menu items.\n---\n\n\n### **Slots:**\n - _default_ - The menu label's content.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
          "doc-url": "",
          "attributes": [],
          "slots": [{ "name": "", "description": "The menu label's content." }],
          "events": [],
          "js": { "properties": [], "events": [] }
        },
        {
          "name": "awc-mutation-observer",
          "description": "The Mutation Observer component offers a thin, declarative interface to the [`MutationObserver API`](https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver).\n---\n\n\n### **Events:**\n - **awc-mutation** - Emitted when a mutation occurs.\n\n### **Slots:**\n - _default_ - The content to watch for mutations.",
          "doc-url": "",
          "attributes": [
            {
              "name": "attr",
              "description": "Watches for changes to attributes. To watch only specific attributes, separate them by a space, e.g.\n`attr=\"class id title\"`. To watch all attributes, use `*`.",
              "value": { "type": "string" }
            },
            {
              "name": "attr-old-value",
              "description": "Indicates whether or not the attribute's previous value should be recorded when monitoring changes.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "char-data",
              "description": "Watches for changes to the character data contained within the node.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "char-data-old-value",
              "description": "Indicates whether or not the previous value of the node's text should be recorded.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "child-list",
              "description": "Watches for the addition or removal of new child nodes.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "Disables the observer.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "", "description": "The content to watch for mutations." }
          ],
          "events": [
            {
              "name": "awc-mutation",
              "description": "Emitted when a mutation occurs."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "attr",
                "description": "Watches for changes to attributes. To watch only specific attributes, separate them by a space, e.g.\n`attr=\"class id title\"`. To watch all attributes, use `*`.",
                "value": { "type": "string" }
              },
              {
                "name": "attr-old-value",
                "description": "Indicates whether or not the attribute's previous value should be recorded when monitoring changes.",
                "value": { "type": "boolean" }
              },
              {
                "name": "char-data",
                "description": "Watches for changes to the character data contained within the node.",
                "value": { "type": "boolean" }
              },
              {
                "name": "char-data-old-value",
                "description": "Indicates whether or not the previous value of the node's text should be recorded.",
                "value": { "type": "boolean" }
              },
              {
                "name": "child-list",
                "description": "Watches for the addition or removal of new child nodes.",
                "value": { "type": "boolean" }
              },
              {
                "name": "disabled",
                "description": "Disables the observer.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-mutation",
                "description": "Emitted when a mutation occurs."
              }
            ]
          }
        },
        {
          "name": "awc-oembed",
          "description": "An embedded representation of a URL on third party sites\n---\n\n\n### **Events:**\n - **awc-load** - Emitted when the image loads successfully.\n- **awc-error** - Emitted when the image fails to load.\n\n### **Slots:**\n - **base** - The base component slot.\n- **embed** - Slot for the embed content.\n- **thumbnail** - Optional thumbnail to use instead of the default. Works best with `<awc-image>`.\n- **play-icon** - Optional play icon to use instead of the default. Works best with `<awc-icon>`.\n\n### **CSS Properties:**\n - **--control-box-size** - The size of the icon box. _(default: undefined)_\n- **--icon-size** - The size of the play icon. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **thumbnail** - The container who containe the thumbnail image.\n- **control-box** - The container that surrounds the play icon and provides their background.",
          "doc-url": "",
          "attributes": [
            {
              "name": "src",
              "description": "The URL",
              "value": { "type": "string" }
            },
            {
              "name": "width",
              "description": "The intrinsic width of the embed in pixels. Must be an integer without a unit.",
              "value": { "type": "number | undefined" }
            },
            {
              "name": "height",
              "description": "The intrinsic height of the embed in pixels. Must be an integer without a unit.",
              "value": { "type": "number | undefined" }
            },
            {
              "name": "aspectRatio",
              "description": "Instead of specifying both `width` and `height`, you can specify can `aspectRatio`.",
              "value": { "type": "number | undefined" }
            },
            {
              "name": "layout",
              "description": "The resizing behaviour of the embed.",
              "value": {
                "type": "'fixed' | 'constrained' | 'fullWidth'",
                "default": "'constrained'"
              }
            },
            {
              "name": "frameBorder",
              "description": "Set the frameborder attribute, only used in iframe embeds.",
              "value": { "type": "string", "default": "'0'" }
            },
            {
              "name": "allowFullscreen",
              "description": "Allow fullscreen mode",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "privacyEnhancedMode",
              "description": "For YouTube only. Enable privacy mode.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "loading",
              "description": "Indicates how the browser should load the iframe. see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe#loading)",
              "value": { "type": "'eager' | 'lazy' | undefined" }
            },
            {
              "name": "thumbnail",
              "description": "Override the default thumbnail",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "play",
              "description": "Plays the embed. When this attribute is remove, the embed will reset.",
              "value": { "type": "boolean" }
            }
          ],
          "slots": [
            { "name": "base", "description": "The base component slot." },
            { "name": "embed", "description": "Slot for the embed content." },
            {
              "name": "thumbnail",
              "description": "Optional thumbnail to use instead of the default. Works best with `<awc-image>`."
            },
            {
              "name": "play-icon",
              "description": "Optional play icon to use instead of the default. Works best with `<awc-icon>`."
            }
          ],
          "events": [
            {
              "name": "awc-load",
              "description": "Emitted when the image loads successfully."
            },
            {
              "name": "awc-error",
              "description": "Emitted when the image fails to load."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "src",
                "description": "The URL",
                "value": { "type": "string" }
              },
              {
                "name": "width",
                "description": "The intrinsic width of the embed in pixels. Must be an integer without a unit.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "height",
                "description": "The intrinsic height of the embed in pixels. Must be an integer without a unit.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "aspectRatio",
                "description": "Instead of specifying both `width` and `height`, you can specify can `aspectRatio`.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "layout",
                "description": "The resizing behaviour of the embed.",
                "value": { "type": "'fixed' | 'constrained' | 'fullWidth'" }
              },
              {
                "name": "frameBorder",
                "description": "Set the frameborder attribute, only used in iframe embeds.",
                "value": { "type": "string" }
              },
              {
                "name": "allowFullscreen",
                "description": "Allow fullscreen mode",
                "value": { "type": "boolean" }
              },
              {
                "name": "privacyEnhancedMode",
                "description": "For YouTube only. Enable privacy mode.",
                "value": { "type": "boolean" }
              },
              {
                "name": "loading",
                "description": "Indicates how the browser should load the iframe. see [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe#loading)",
                "value": { "type": "'eager' | 'lazy' | undefined" }
              },
              {
                "name": "thumbnail",
                "description": "Override the default thumbnail",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "play",
                "description": "Plays the embed. When this attribute is remove, the embed will reset.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-load",
                "description": "Emitted when the image loads successfully."
              },
              {
                "name": "awc-error",
                "description": "Emitted when the image fails to load."
              }
            ]
          }
        },
        {
          "name": "awc-option",
          "description": "Options define the selectable items within various form controls such as [select](?path=/docs/components-select--documentation).\n---\n\n\n### **Methods:**\n - **getTextLabel()** - Returns a plain text label based on the option's content.\n\n### **Slots:**\n - _default_ - The option's label.\n- **prefix** - Used to prepend an icon or similar element to the menu item.\n- **suffix** - Used to append an icon or similar element to the menu item.\n\n### **CSS Parts:**\n - **checked-icon** - The checked icon, an `<awc-icon>` element.\n- **base** - The component's base wrapper.\n- **label** - The option's label.\n- **prefix** - The container that wraps the prefix.\n- **suffix** - The container that wraps the suffix.",
          "doc-url": "",
          "attributes": [
            {
              "name": "value",
              "description": "The option's value. When selected, the containing form control will receive this value. The value must be unique\nfrom other options in the same group. Values may not contain spaces, as spaces are used as delimiters when listing\nmultiple values.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "disabled",
              "description": "Draws the option in a disabled state, preventing selection.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "", "description": "The option's label." },
            {
              "name": "prefix",
              "description": "Used to prepend an icon or similar element to the menu item."
            },
            {
              "name": "suffix",
              "description": "Used to append an icon or similar element to the menu item."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "value",
                "description": "The option's value. When selected, the containing form control will receive this value. The value must be unique\nfrom other options in the same group. Values may not contain spaces, as spaces are used as delimiters when listing\nmultiple values.",
                "value": { "type": "string" }
              },
              {
                "name": "disabled",
                "description": "Draws the option in a disabled state, preventing selection.",
                "value": { "type": "boolean" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-popup",
          "description": "Popup is a utility that lets you declaratively anchor \"popup\" containers to another element.\n---\n\n\n### **Events:**\n - **awc-reposition** - Emitted when the popup is repositioned. This event can fire a lot, so avoid putting expensive operations in your listener or consider debouncing it.\n\n### **Methods:**\n - **reposition()** - Forces the popup to recalculate and reposition itself.\n\n### **Slots:**\n - _default_ - The popup's content.\n- **anchor** - The element the popup will be anchored to. If the anchor lives outside of the popup, you can use the `anchor` attribute or property instead.\n\n### **CSS Properties:**\n - **--arrow-size** - The size of the arrow. Note that an arrow won't be shown unless the `arrow` attribute is used. _(default: 6px)_\n- **--arrow-color** - The color of the arrow. _(default: var(--awc-color-neutral-0))_\n- **--auto-size-available-width** - A read-only custom property that determines the amount of width the popup can be before overflowing. Useful for positioning child elements that need to overflow. This property is only available when using `auto-size`. _(default: undefined)_\n- **--auto-size-available-height** - A read-only custom property that determines the amount of height the popup can be before overflowing. Useful for positioning child elements that need to overflow. This property is only available when using `auto-size`. _(default: undefined)_\n\n### **CSS Parts:**\n - **arrow** - The arrow's container. Avoid setting `top|bottom|left|right` properties, as these values are assigned dynamically as the popup moves. This is most useful for applying a background color to match the popup, and maybe a border or box shadow.\n- **popup** - The popup's container. Useful for setting a background color, box shadow, etc.\n- **hover-bridge** - The hover bridge element. Only available when the `hover-bridge` option is enabled.",
          "doc-url": "",
          "attributes": [
            {
              "name": "anchor",
              "description": "The element the popup will be anchored to. If the anchor lives outside of the popup, you can provide the anchor\nelement `id`, a DOM element reference, or a `VirtualElement`. If the anchor lives inside the popup, use the\n`anchor` slot instead.",
              "value": { "type": "Element | string | VirtualElement" }
            },
            {
              "name": "active",
              "description": "Activates the positioning logic and shows the popup. When this attribute is removed, the positioning logic is torn\ndown and the popup will be hidden.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "placement",
              "description": "The preferred placement of the popup. Note that the actual placement will vary as configured to keep the\npanel inside of the viewport.",
              "value": {
                "type": "| 'top'\n    | 'top-start'\n    | 'top-end'\n    | 'bottom'\n    | 'bottom-start'\n    | 'bottom-end'\n    | 'right'\n    | 'right-start'\n    | 'right-end'\n    | 'left'\n    | 'left-start'\n    | 'left-end'",
                "default": "'top'"
              }
            },
            {
              "name": "strategy",
              "description": "Determines how the popup is positioned. The `absolute` strategy works well in most cases, but if overflow is\nclipped, using a `fixed` position strategy can often workaround it.",
              "value": {
                "type": "'absolute' | 'fixed'",
                "default": "'absolute'"
              }
            },
            {
              "name": "distance",
              "description": "The distance in pixels from which to offset the panel away from its anchor.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "skidding",
              "description": "The distance in pixels from which to offset the panel along its anchor.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "arrow",
              "description": "Attaches an arrow to the popup. The arrow's size and color can be customized using the `--arrow-size` and\n`--arrow-color` custom properties. For additional customizations, you can also target the arrow using\n`::part(arrow)` in your stylesheet.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "arrow-placement",
              "description": "The placement of the arrow. The default is `anchor`, which will align the arrow as close to the center of the\nanchor as possible, considering available space and `arrow-padding`. A value of `start`, `end`, or `center` will\nalign the arrow to the start, end, or center of the popover instead.",
              "value": {
                "type": "'start' | 'end' | 'center' | 'anchor'",
                "default": "'anchor'"
              }
            },
            {
              "name": "arrow-padding",
              "description": "The amount of padding between the arrow and the edges of the popup. If the popup has a border-radius, for example,\nthis will prevent it from overflowing the corners.",
              "value": { "type": "number", "default": "10" }
            },
            {
              "name": "flip",
              "description": "When set, placement of the popup will flip to the opposite site to keep it in view. You can use\n`flipFallbackPlacements` to further configure how the fallback placement is determined.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "flip-fallback-placements",
              "description": "If the preferred placement doesn't fit, popup will be tested in these fallback placements until one fits. Must be a\nstring of any number of placements separated by a space, e.g. \"top bottom left\". If no placement fits, the flip\nfallback strategy will be used instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "flip-fallback-strategy",
              "description": "When neither the preferred placement nor the fallback placements fit, this value will be used to determine whether\nthe popup should be positioned using the best available fit based on available space or as it was initially\npreferred.",
              "value": {
                "type": "'best-fit' | 'initial'",
                "default": "'best-fit'"
              }
            },
            {
              "name": "flipBoundary",
              "description": "The flip boundary describes clipping element(s) that overflow will be checked relative to when flipping. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
              "value": { "type": "Element | Element[]" }
            },
            {
              "name": "flip-padding",
              "description": "The amount of padding, in pixels, to exceed before the flip behavior will occur.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "shift",
              "description": "Moves the popup along the axis to keep it in view when clipped.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "shiftBoundary",
              "description": "The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
              "value": { "type": "Element | Element[]" }
            },
            {
              "name": "shift-padding",
              "description": "The amount of padding, in pixels, to exceed before the shift behavior will occur.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "auto-size",
              "description": "When set, this will cause the popup to automatically resize itself to prevent it from overflowing.",
              "value": { "type": "'horizontal' | 'vertical' | 'both'" }
            },
            {
              "name": "sync",
              "description": "Syncs the popup's width or height to that of the anchor element.",
              "value": { "type": "'width' | 'height' | 'both'" }
            },
            {
              "name": "autoSizeBoundary",
              "description": "The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
              "value": { "type": "Element | Element[]" }
            },
            {
              "name": "auto-size-padding",
              "description": "The amount of padding, in pixels, to exceed before the auto-size behavior will occur.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "hover-bridge",
              "description": "When a gap exists between the anchor and the popup element, this option will add a \"hover bridge\" that fills the\ngap using an invisible element. This makes listening for events such as `mouseenter` and `mouseleave` more sane\nbecause the pointer never technically leaves the element. The hover bridge will only be drawn when the popover is\nactive.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "", "description": "The popup's content." },
            {
              "name": "anchor",
              "description": "The element the popup will be anchored to. If the anchor lives outside of the popup, you can use the `anchor` attribute or property instead."
            }
          ],
          "events": [
            {
              "name": "awc-reposition",
              "description": "Emitted when the popup is repositioned. This event can fire a lot, so avoid putting expensive operations in your listener or consider debouncing it."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "anchor",
                "description": "The element the popup will be anchored to. If the anchor lives outside of the popup, you can provide the anchor\nelement `id`, a DOM element reference, or a `VirtualElement`. If the anchor lives inside the popup, use the\n`anchor` slot instead.",
                "value": { "type": "Element | string | VirtualElement" }
              },
              {
                "name": "active",
                "description": "Activates the positioning logic and shows the popup. When this attribute is removed, the positioning logic is torn\ndown and the popup will be hidden.",
                "value": { "type": "boolean" }
              },
              {
                "name": "placement",
                "description": "The preferred placement of the popup. Note that the actual placement will vary as configured to keep the\npanel inside of the viewport.",
                "value": {
                  "type": "| 'top'\n    | 'top-start'\n    | 'top-end'\n    | 'bottom'\n    | 'bottom-start'\n    | 'bottom-end'\n    | 'right'\n    | 'right-start'\n    | 'right-end'\n    | 'left'\n    | 'left-start'\n    | 'left-end'"
                }
              },
              {
                "name": "strategy",
                "description": "Determines how the popup is positioned. The `absolute` strategy works well in most cases, but if overflow is\nclipped, using a `fixed` position strategy can often workaround it.",
                "value": { "type": "'absolute' | 'fixed'" }
              },
              {
                "name": "distance",
                "description": "The distance in pixels from which to offset the panel away from its anchor.",
                "value": { "type": "number" }
              },
              {
                "name": "skidding",
                "description": "The distance in pixels from which to offset the panel along its anchor.",
                "value": { "type": "number" }
              },
              {
                "name": "arrow",
                "description": "Attaches an arrow to the popup. The arrow's size and color can be customized using the `--arrow-size` and\n`--arrow-color` custom properties. For additional customizations, you can also target the arrow using\n`::part(arrow)` in your stylesheet.",
                "value": { "type": "boolean" }
              },
              {
                "name": "arrow-placement",
                "description": "The placement of the arrow. The default is `anchor`, which will align the arrow as close to the center of the\nanchor as possible, considering available space and `arrow-padding`. A value of `start`, `end`, or `center` will\nalign the arrow to the start, end, or center of the popover instead.",
                "value": { "type": "'start' | 'end' | 'center' | 'anchor'" }
              },
              {
                "name": "arrow-padding",
                "description": "The amount of padding between the arrow and the edges of the popup. If the popup has a border-radius, for example,\nthis will prevent it from overflowing the corners.",
                "value": { "type": "number" }
              },
              {
                "name": "flip",
                "description": "When set, placement of the popup will flip to the opposite site to keep it in view. You can use\n`flipFallbackPlacements` to further configure how the fallback placement is determined.",
                "value": { "type": "boolean" }
              },
              {
                "name": "flip-fallback-placements",
                "description": "If the preferred placement doesn't fit, popup will be tested in these fallback placements until one fits. Must be a\nstring of any number of placements separated by a space, e.g. \"top bottom left\". If no placement fits, the flip\nfallback strategy will be used instead.",
                "value": { "type": "string" }
              },
              {
                "name": "flip-fallback-strategy",
                "description": "When neither the preferred placement nor the fallback placements fit, this value will be used to determine whether\nthe popup should be positioned using the best available fit based on available space or as it was initially\npreferred.",
                "value": { "type": "'best-fit' | 'initial'" }
              },
              {
                "name": "flipBoundary",
                "description": "The flip boundary describes clipping element(s) that overflow will be checked relative to when flipping. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
                "value": { "type": "Element | Element[]" }
              },
              {
                "name": "flip-padding",
                "description": "The amount of padding, in pixels, to exceed before the flip behavior will occur.",
                "value": { "type": "number" }
              },
              {
                "name": "shift",
                "description": "Moves the popup along the axis to keep it in view when clipped.",
                "value": { "type": "boolean" }
              },
              {
                "name": "shiftBoundary",
                "description": "The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
                "value": { "type": "Element | Element[]" }
              },
              {
                "name": "shift-padding",
                "description": "The amount of padding, in pixels, to exceed before the shift behavior will occur.",
                "value": { "type": "number" }
              },
              {
                "name": "auto-size",
                "description": "When set, this will cause the popup to automatically resize itself to prevent it from overflowing.",
                "value": { "type": "'horizontal' | 'vertical' | 'both'" }
              },
              {
                "name": "sync",
                "description": "Syncs the popup's width or height to that of the anchor element.",
                "value": { "type": "'width' | 'height' | 'both'" }
              },
              {
                "name": "autoSizeBoundary",
                "description": "The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
                "value": { "type": "Element | Element[]" }
              },
              {
                "name": "auto-size-padding",
                "description": "The amount of padding, in pixels, to exceed before the auto-size behavior will occur.",
                "value": { "type": "number" }
              },
              {
                "name": "hover-bridge",
                "description": "When a gap exists between the anchor and the popup element, this option will add a \"hover bridge\" that fills the\ngap using an invisible element. This makes listening for events such as `mouseenter` and `mouseleave` more sane\nbecause the pointer never technically leaves the element. The hover bridge will only be drawn when the popover is\nactive.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-reposition",
                "description": "Emitted when the popup is repositioned. This event can fire a lot, so avoid putting expensive operations in your listener or consider debouncing it."
              }
            ]
          }
        },
        {
          "name": "awc-progress-bar",
          "description": "Progress bars are used to show the status of an ongoing operation.\n---\n\n\n### **Slots:**\n - _default_ - A label to show inside the progress indicator.\n\n### **CSS Properties:**\n - **--height** - The progress bar's height. _(default: 1rem)_\n- **--track-radius** - The progress bar's track border radius. _(default: var(--awc-border-radius-none))_\n- **--indicator-radius** - The progress bar's indicator border radius. _(default: var(--awc-border-radius-none))_\n- **--track-color** - The color of the track. _(default: var(--awc-color-neutral-200))_\n- **--indicator-color** - The color of the indicator. _(default: var(--awc-color-primary-600))_\n- **--label-color** - The color of the label. _(default: var(--awc-color-neutral-0))_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **indicator** - The progress bar's indicator.\n- **label** - The progress bar's label.",
          "doc-url": "",
          "attributes": [
            {
              "name": "value",
              "description": "The current progress as a percentage, 0 to 100.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "indeterminate",
              "description": "When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "label",
              "description": "A custom label for assistive devices.",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "A label to show inside the progress indicator."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "value",
                "description": "The current progress as a percentage, 0 to 100.",
                "value": { "type": "number" }
              },
              {
                "name": "indeterminate",
                "description": "When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "label",
                "description": "A custom label for assistive devices.",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-progress-ring",
          "description": "Progress rings are used to show the progress of a determinate operation in a circular fashion.\n---\n\n\n### **Slots:**\n - _default_ - A label to show inside the ring.\n\n### **CSS Properties:**\n - **--size** - The diameter of the progress ring (cannot be a percentage). _(default: undefined)_\n- **--track-width** - The width of the track. _(default: undefined)_\n- **--track-color** - The color of the track. _(default: undefined)_\n- **--indicator-width** - The width of the indicator. Defaults to the track width. _(default: undefined)_\n- **--indicator-color** - The color of the indicator. _(default: undefined)_\n- **--indicator-transition-duration** - The duration of the indicator's transition when the value changes. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **label** - The progress ring label.",
          "doc-url": "",
          "attributes": [
            {
              "name": "value",
              "description": "The current progress as a percentage, 0 to 100.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "indeterminate",
              "description": "When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "label",
              "description": "A custom label for assistive devices.",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "slots": [
            { "name": "", "description": "A label to show inside the ring." }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "value",
                "description": "The current progress as a percentage, 0 to 100.",
                "value": { "type": "number" }
              },
              {
                "name": "indeterminate",
                "description": "When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "label",
                "description": "A custom label for assistive devices.",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-qr-code",
          "description": "Generates a [QR code](https://www.qrcode.com/) and renders it using the [Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API).\n---\n\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
          "doc-url": "",
          "attributes": [
            {
              "name": "value",
              "description": "The QR code's value.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "label",
              "description": "The label for assistive devices to announce. If unspecified, the value will be used instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "size",
              "description": "The size of the QR code, in pixels.",
              "value": { "type": "number", "default": "128" }
            },
            {
              "name": "fill",
              "description": "The fill color. This can be any valid CSS color, but not a CSS custom property.",
              "value": { "type": "string", "default": "'black'" }
            },
            {
              "name": "background",
              "description": "The background color. This can be any valid CSS color or `transparent`. It cannot be a CSS custom property.",
              "value": { "type": "string", "default": "'white'" }
            },
            {
              "name": "radius",
              "description": "The edge radius of each module. Must be between 0 and 0.5.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "error-correction",
              "description": "The level of error correction to use. [Learn more](https://www.qrcode.com/en/about/error_correction.html)",
              "value": { "type": "'L' | 'M' | 'Q' | 'H'", "default": "'H'" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "value",
                "description": "The QR code's value.",
                "value": { "type": "string" }
              },
              {
                "name": "label",
                "description": "The label for assistive devices to announce. If unspecified, the value will be used instead.",
                "value": { "type": "string" }
              },
              {
                "name": "size",
                "description": "The size of the QR code, in pixels.",
                "value": { "type": "number" }
              },
              {
                "name": "fill",
                "description": "The fill color. This can be any valid CSS color, but not a CSS custom property.",
                "value": { "type": "string" }
              },
              {
                "name": "background",
                "description": "The background color. This can be any valid CSS color or `transparent`. It cannot be a CSS custom property.",
                "value": { "type": "string" }
              },
              {
                "name": "radius",
                "description": "The edge radius of each module. Must be between 0 and 0.5.",
                "value": { "type": "number" }
              },
              {
                "name": "error-correction",
                "description": "The level of error correction to use. [Learn more](https://www.qrcode.com/en/about/error_correction.html)",
                "value": { "type": "'L' | 'M' | 'Q' | 'H'" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-radio",
          "description": "Radios allow the user to select a single option from a group.\n---\n\n\n### **Events:**\n - **awc-change** - Emitted when the radio selected value changes.\n- **awc-blur** - Emitted when the control loses focus.\n- **awc-focus** - Emitted when the control gains focus.\n\n### **Slots:**\n - _default_ - The radio's label.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **control** - The circular container that wraps the radio's checked state.\n- **control--checked** - The radio control when the radio is checked.\n- **checked-icon** - The checked icon, an `<awc-icon>` element.\n- **label** - The container that wraps the radio's label.",
          "doc-url": "",
          "attributes": [
            {
              "name": "type",
              "value": { "type": "string", "default": "'radio'" }
            },
            {
              "name": "value",
              "description": "The radio's value. When selected, the radio group will receive this value.",
              "value": { "type": "string" }
            },
            {
              "name": "size",
              "description": "The radio's size. When used inside a radio group, the size will be determined by the radio group's size so this\nattribute can typically be omitted.",
              "value": {
                "type": "'small' | 'medium' | 'large'",
                "default": "'medium'"
              }
            },
            {
              "name": "disabled",
              "description": "Disables the radio.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [{ "name": "", "description": "The radio's label." }],
          "events": [
            {
              "name": "awc-change",
              "description": "Emitted when the radio selected value changes."
            },
            {
              "name": "awc-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "awc-focus",
              "description": "Emitted when the control gains focus."
            }
          ],
          "js": {
            "properties": [
              { "name": "type", "value": { "type": "string" } },
              {
                "name": "value",
                "description": "The radio's value. When selected, the radio group will receive this value.",
                "value": { "type": "string" }
              },
              {
                "name": "size",
                "description": "The radio's size. When used inside a radio group, the size will be determined by the radio group's size so this\nattribute can typically be omitted.",
                "value": { "type": "'small' | 'medium' | 'large'" }
              },
              {
                "name": "disabled",
                "description": "Disables the radio.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-change",
                "description": "Emitted when the radio selected value changes."
              },
              {
                "name": "awc-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "awc-focus",
                "description": "Emitted when the control gains focus."
              }
            ]
          }
        },
        {
          "name": "awc-radio-button",
          "description": "Radios buttons allow the user to select a single option from a group using a button-like control.\n---\n\n\n### **Events:**\n - **awc-blur** - Emitted when the button loses focus.\n- **awc-focus** - Emitted when the button gains focus.\n\n### **Methods:**\n - **focus(options: _FocusOptions_)** - Sets focus on the radio button.\n- **blur()** - Removes focus from the radio button.\n\n### **Slots:**\n - _default_ - The radio button's label.\n- **prefix** - A presentational prefix icon or similar element.\n- **suffix** - A presentational suffix icon or similar element.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **button** - The internal `<button>` element.\n- **button--checked** - The internal button element when the radio button is checked.\n- **prefix** - The container that wraps the prefix.\n- **label** - The container that wraps the radio button's label.\n- **suffix** - The container that wraps the suffix.",
          "doc-url": "",
          "attributes": [
            {
              "name": "value",
              "description": "The radio's value. When selected, the radio group will receive this value.",
              "value": { "type": "string" }
            },
            {
              "name": "disabled",
              "description": "Disables the radio button.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "size",
              "description": "The radio button's size. When used inside a radio group, the size will be determined by the radio group's size so\nthis attribute can typically be omitted.",
              "value": {
                "type": "'small' | 'medium' | 'large'",
                "default": "'medium'"
              }
            },
            {
              "name": "pill",
              "description": "Draws a pill-style radio button with rounded edges.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "", "description": "The radio button's label." },
            {
              "name": "prefix",
              "description": "A presentational prefix icon or similar element."
            },
            {
              "name": "suffix",
              "description": "A presentational suffix icon or similar element."
            }
          ],
          "events": [
            {
              "name": "awc-blur",
              "description": "Emitted when the button loses focus."
            },
            {
              "name": "awc-focus",
              "description": "Emitted when the button gains focus."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "value",
                "description": "The radio's value. When selected, the radio group will receive this value.",
                "value": { "type": "string" }
              },
              {
                "name": "disabled",
                "description": "Disables the radio button.",
                "value": { "type": "boolean" }
              },
              {
                "name": "size",
                "description": "The radio button's size. When used inside a radio group, the size will be determined by the radio group's size so\nthis attribute can typically be omitted.",
                "value": { "type": "'small' | 'medium' | 'large'" }
              },
              {
                "name": "pill",
                "description": "Draws a pill-style radio button with rounded edges.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-blur",
                "description": "Emitted when the button loses focus."
              },
              {
                "name": "awc-focus",
                "description": "Emitted when the button gains focus."
              }
            ]
          }
        },
        {
          "name": "awc-radio-group",
          "description": "Radio groups are used to group multiple [radios](?path=/docs/components-radio--documentation) or [radio buttons](?path=/docs/components-radio-button--documentation) so they function as a single form control.\n---\n\n\n### **Events:**\n - **awc-change** - Emitted when the radio group's selected value changes.\n- **awc-input** - Emitted when the radio group receives user input.\n- **awc-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n\n### **Methods:**\n - **checkValidity()** - Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity(): _boolean_** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message)** - Sets a custom validation message. Pass an empty string to restore validity.\n\n### **Slots:**\n - _default_ - The default slot where `<awc-radio>` or `<awc-radio-button>` elements are placed.\n- **label** - The radio group's label. Required for proper accessibility. Alternatively, you can use the `label` attribute.\n- **help-text** - Text that describes how to use the radio group. Alternatively, you can use the `help-text` attribute.\n\n### **CSS Parts:**\n - **form-control** - The form control that wraps the label, input, and help text.\n- **form-control-label** - The label's wrapper.\n- **form-control-input** - The input's wrapper.\n- **form-control-help-text** - The help text's wrapper.\n- **button-group** - The button group that wraps radio buttons.\n- **button-group__base** - The button group's `base` part.",
          "doc-url": "",
          "attributes": [
            {
              "name": "label",
              "description": "The radio group's label. Required for proper accessibility. If you need to display HTML, use the `label` slot\ninstead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "help-text",
              "description": "The radio groups's help text. If you need to display HTML, use the `help-text` slot instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "name",
              "description": "The name of the radio group, submitted as a name/value pair with form data.",
              "value": { "type": "string", "default": "'option'" }
            },
            {
              "name": "value",
              "description": "The current value of the radio group, submitted as a name/value pair with form data.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "size",
              "description": "The radio group's size. This size will be applied to all child radios and radio buttons.",
              "value": {
                "type": "'small' | 'medium' | 'large'",
                "default": "'medium'"
              }
            },
            {
              "name": "form",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "required",
              "description": "Ensures a child radio is checked before allowing the containing form to submit.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "The default slot where `<awc-radio>` or `<awc-radio-button>` elements are placed."
            },
            {
              "name": "label",
              "description": "The radio group's label. Required for proper accessibility. Alternatively, you can use the `label` attribute."
            },
            {
              "name": "help-text",
              "description": "Text that describes how to use the radio group. Alternatively, you can use the `help-text` attribute."
            }
          ],
          "events": [
            {
              "name": "awc-change",
              "description": "Emitted when the radio group's selected value changes."
            },
            {
              "name": "awc-input",
              "description": "Emitted when the radio group receives user input."
            },
            {
              "name": "awc-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "label",
                "description": "The radio group's label. Required for proper accessibility. If you need to display HTML, use the `label` slot\ninstead.",
                "value": { "type": "string" }
              },
              {
                "name": "help-text",
                "description": "The radio groups's help text. If you need to display HTML, use the `help-text` slot instead.",
                "value": { "type": "string" }
              },
              {
                "name": "name",
                "description": "The name of the radio group, submitted as a name/value pair with form data.",
                "value": { "type": "string" }
              },
              {
                "name": "value",
                "description": "The current value of the radio group, submitted as a name/value pair with form data.",
                "value": { "type": "string" }
              },
              {
                "name": "size",
                "description": "The radio group's size. This size will be applied to all child radios and radio buttons.",
                "value": { "type": "'small' | 'medium' | 'large'" }
              },
              {
                "name": "form",
                "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
                "value": { "type": "string" }
              },
              {
                "name": "required",
                "description": "Ensures a child radio is checked before allowing the containing form to submit.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-change",
                "description": "Emitted when the radio group's selected value changes."
              },
              {
                "name": "awc-input",
                "description": "Emitted when the radio group receives user input."
              },
              {
                "name": "awc-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "awc-range",
          "description": "Ranges allow the user to select a single value within a given range using a slider.\n---\n\n\n### **Events:**\n - **awc-blur** - Emitted when the control loses focus.\n- **awc-change** - Emitted when an alteration to the control's value is committed by the user.\n- **awc-focus** - Emitted when the control gains focus.\n- **awc-input** - Emitted when the control receives input.\n- **awc-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n\n### **Methods:**\n - **focus(options: _FocusOptions_)** - Sets focus on the range.\n- **blur()** - Removes focus from the range.\n- **stepUp()** - Increments the value of the range by the value of the step attribute.\n- **stepDown()** - Decrements the value of the range by the value of the step attribute.\n- **checkValidity()** - Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity()** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message: _string_)** - Sets a custom validation message. Pass an empty string to restore validity.\n\n### **Slots:**\n - **label** - The range's label. Alternatively, you can use the `label` attribute.\n- **help-text** - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.\n\n### **CSS Properties:**\n - **--thumb-size** - The size of the thumb. _(default: undefined)_\n- **--tooltip-offset** - The vertical distance the tooltip is offset from the track. _(default: undefined)_\n- **--track-color-active** - The color of the portion of the track that represents the current value. _(default: undefined)_\n- **--track-color-inactive** - The of the portion of the track that represents the remaining value. _(default: undefined)_\n- **--track-height** - The height of the track. _(default: undefined)_\n- **--track-active-offset** - The point of origin of the active track. _(default: undefined)_\n\n### **CSS Parts:**\n - **form-control** - The form control that wraps the label, input, and help text.\n- **form-control-label** - The label's wrapper.\n- **form-control-input** - The range's wrapper.\n- **form-control-help-text** - The help text's wrapper.\n- **base** - The component's base wrapper.\n- **input** - The internal `<input>` element.\n- **tooltip** - The range's tooltip.",
          "doc-url": "",
          "attributes": [
            {
              "name": "type",
              "value": { "type": "string", "default": "'range'" }
            },
            { "name": "title", "value": { "type": "string", "default": "''" } },
            {
              "name": "name",
              "description": "The name of the range, submitted as a name/value pair with form data.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "value",
              "description": "The current value of the range, submitted as a name/value pair with form data.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "label",
              "description": "The range's label. If you need to display HTML, use the `label` slot instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "help-text",
              "description": "The range's help text. If you need to display HTML, use the help-text slot instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "disabled",
              "description": "Disables the range.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "min",
              "description": "The minimum acceptable value of the range.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "max",
              "description": "The maximum acceptable value of the range.",
              "value": { "type": "number", "default": "100" }
            },
            {
              "name": "step",
              "description": "The interval at which the range will increase and decrease.",
              "value": { "type": "number", "default": "1" }
            },
            {
              "name": "tooltip",
              "description": "The preferred placement of the range's tooltip.",
              "value": {
                "type": "'top' | 'bottom' | 'none'",
                "default": "'top'"
              }
            },
            {
              "name": "form",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "slots": [
            {
              "name": "label",
              "description": "The range's label. Alternatively, you can use the `label` attribute."
            },
            {
              "name": "help-text",
              "description": "Text that describes how to use the input. Alternatively, you can use the `help-text` attribute."
            }
          ],
          "events": [
            {
              "name": "awc-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "awc-change",
              "description": "Emitted when an alteration to the control's value is committed by the user."
            },
            {
              "name": "awc-focus",
              "description": "Emitted when the control gains focus."
            },
            {
              "name": "awc-input",
              "description": "Emitted when the control receives input."
            },
            {
              "name": "awc-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              { "name": "type", "value": { "type": "string" } },
              { "name": "title", "value": { "type": "string" } },
              {
                "name": "name",
                "description": "The name of the range, submitted as a name/value pair with form data.",
                "value": { "type": "string" }
              },
              {
                "name": "value",
                "description": "The current value of the range, submitted as a name/value pair with form data.",
                "value": { "type": "number" }
              },
              {
                "name": "label",
                "description": "The range's label. If you need to display HTML, use the `label` slot instead.",
                "value": { "type": "string" }
              },
              {
                "name": "help-text",
                "description": "The range's help text. If you need to display HTML, use the help-text slot instead.",
                "value": { "type": "string" }
              },
              {
                "name": "disabled",
                "description": "Disables the range.",
                "value": { "type": "boolean" }
              },
              {
                "name": "min",
                "description": "The minimum acceptable value of the range.",
                "value": { "type": "number" }
              },
              {
                "name": "max",
                "description": "The maximum acceptable value of the range.",
                "value": { "type": "number" }
              },
              {
                "name": "step",
                "description": "The interval at which the range will increase and decrease.",
                "value": { "type": "number" }
              },
              {
                "name": "tooltip",
                "description": "The preferred placement of the range's tooltip.",
                "value": { "type": "'top' | 'bottom' | 'none'" }
              },
              {
                "name": "form",
                "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
                "value": { "type": "string" }
              }
            ],
            "events": [
              {
                "name": "awc-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "awc-change",
                "description": "Emitted when an alteration to the control's value is committed by the user."
              },
              {
                "name": "awc-focus",
                "description": "Emitted when the control gains focus."
              },
              {
                "name": "awc-input",
                "description": "Emitted when the control receives input."
              },
              {
                "name": "awc-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "awc-rating",
          "description": "Ratings give users a way to quickly view and provide feedback.\n---\n\n\n### **Events:**\n - **awc-change** - Emitted when the rating's value changes.\n- **awc-hover** - Emitted when the user hovers over a value. The `phase` property indicates when hovering starts, moves to a new value, or ends. The `value` property tells what the rating's value would be if the user were to commit to the hovered value.\n\n### **Methods:**\n - **focus(options: _FocusOptions_)** - Sets focus on the rating.\n- **blur()** - Removes focus from the rating.\n\n### **CSS Properties:**\n - **--symbol-color** - The inactive color for symbols. _(default: undefined)_\n- **--symbol-color-active** - The active color for symbols. _(default: undefined)_\n- **--symbol-size** - The size of symbols. _(default: undefined)_\n- **--symbol-spacing** - The spacing to use around symbols. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **value** - The value wrapper.",
          "doc-url": "",
          "attributes": [
            {
              "name": "type",
              "value": { "type": "string", "default": "'range'" }
            },
            {
              "name": "label",
              "description": "A label that describes the rating to assistive devices.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "value",
              "description": "The current rating.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "max",
              "description": "The highest rating to show.",
              "value": { "type": "number", "default": "5" }
            },
            {
              "name": "precision",
              "description": "The precision at which the rating will increase and decrease. For example, to allow half-star ratings, set this\nattribute to `0.5`.",
              "value": { "type": "number", "default": "1" }
            },
            {
              "name": "readonly",
              "description": "Makes the rating readonly.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "Disables the rating.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-rate",
              "description": "Show the rating value.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "getSymbol",
              "description": "A function that customizes the symbol to be rendered. The first and only argument is the rating's current value.\nThe function should return a string containing trusted HTML of the symbol to render at the specified value. Works\nwell with `<awc-icon>` elements.",
              "value": { "type": "(value: number) => string" }
            }
          ],
          "events": [
            {
              "name": "awc-change",
              "description": "Emitted when the rating's value changes."
            },
            {
              "name": "awc-hover",
              "description": "Emitted when the user hovers over a value. The `phase` property indicates when hovering starts, moves to a new value, or ends. The `value` property tells what the rating's value would be if the user were to commit to the hovered value."
            }
          ],
          "js": {
            "properties": [
              { "name": "type", "value": { "type": "string" } },
              {
                "name": "label",
                "description": "A label that describes the rating to assistive devices.",
                "value": { "type": "string" }
              },
              {
                "name": "value",
                "description": "The current rating.",
                "value": { "type": "number" }
              },
              {
                "name": "max",
                "description": "The highest rating to show.",
                "value": { "type": "number" }
              },
              {
                "name": "precision",
                "description": "The precision at which the rating will increase and decrease. For example, to allow half-star ratings, set this\nattribute to `0.5`.",
                "value": { "type": "number" }
              },
              {
                "name": "readonly",
                "description": "Makes the rating readonly.",
                "value": { "type": "boolean" }
              },
              {
                "name": "disabled",
                "description": "Disables the rating.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-rate",
                "description": "Show the rating value.",
                "value": { "type": "boolean" }
              },
              {
                "name": "getSymbol",
                "description": "A function that customizes the symbol to be rendered. The first and only argument is the rating's current value.\nThe function should return a string containing trusted HTML of the symbol to render at the specified value. Works\nwell with `<awc-icon>` elements.",
                "value": { "type": "(value: number) => string" }
              }
            ],
            "events": [
              {
                "name": "awc-change",
                "description": "Emitted when the rating's value changes."
              },
              {
                "name": "awc-hover",
                "description": "Emitted when the user hovers over a value. The `phase` property indicates when hovering starts, moves to a new value, or ends. The `value` property tells what the rating's value would be if the user were to commit to the hovered value."
              }
            ]
          }
        },
        {
          "name": "awc-relative-time",
          "description": "Outputs a localized time phrase relative to the current date and time.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "date",
              "description": "The date from which to calculate time from. If not set, the current date and time will be used. When passing a\nstring, it's strongly recommended to use the ISO 8601 format to ensure timezones are handled correctly. To convert\na date to this format in JavaScript, use [`date.toISOString()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString).",
              "value": { "type": "Date | string", "default": "new Date()" }
            },
            {
              "name": "format",
              "description": "The formatting style to use.",
              "value": {
                "type": "'long' | 'short' | 'narrow'",
                "default": "'long'"
              }
            },
            {
              "name": "numeric",
              "description": "When `auto`, values such as \"yesterday\" and \"tomorrow\" will be shown when possible. When `always`, values such as\n\"1 day ago\" and \"in 1 day\" will be shown.",
              "value": { "type": "'always' | 'auto'", "default": "'auto'" }
            },
            {
              "name": "sync",
              "description": "Keep the displayed value up to date as time passes.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "date",
                "description": "The date from which to calculate time from. If not set, the current date and time will be used. When passing a\nstring, it's strongly recommended to use the ISO 8601 format to ensure timezones are handled correctly. To convert\na date to this format in JavaScript, use [`date.toISOString()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString).",
                "value": { "type": "Date | string" }
              },
              {
                "name": "format",
                "description": "The formatting style to use.",
                "value": { "type": "'long' | 'short' | 'narrow'" }
              },
              {
                "name": "numeric",
                "description": "When `auto`, values such as \"yesterday\" and \"tomorrow\" will be shown when possible. When `always`, values such as\n\"1 day ago\" and \"in 1 day\" will be shown.",
                "value": { "type": "'always' | 'auto'" }
              },
              {
                "name": "sync",
                "description": "Keep the displayed value up to date as time passes.",
                "value": { "type": "boolean" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-resize-observer",
          "description": "The Resize Observer component offers a thin, declarative interface to the [`ResizeObserver API`](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver).\n---\n\n\n### **Events:**\n - **awc-resize** - Emitted when the element is resized.\n\n### **Slots:**\n - _default_ - One or more elements to watch for resizing.",
          "doc-url": "",
          "attributes": [
            {
              "name": "disabled",
              "description": "Disables the observer.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "One or more elements to watch for resizing."
            }
          ],
          "events": [
            {
              "name": "awc-resize",
              "description": "Emitted when the element is resized."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "disabled",
                "description": "Disables the observer.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-resize",
                "description": "Emitted when the element is resized."
              }
            ]
          }
        },
        {
          "name": "awc-select",
          "description": "Selects allow you to choose items from a menu of predefined options.\n---\n\n\n### **Events:**\n - **awc-change** - Emitted when the control's value changes.\n- **awc-clear** - Emitted when the control's value is cleared.\n- **awc-input** - Emitted when the control receives input.\n- **awc-focus** - Emitted when the control gains focus.\n- **awc-blur** - Emitted when the control loses focus.\n- **awc-show** - Emitted when the select's menu opens.\n- **awc-after-show** - Emitted after the select's menu opens and all animations are complete.\n- **awc-hide** - Emitted when the select's menu closes.\n- **awc-after-hide** - Emitted after the select's menu closes and all animations are complete.\n- **awc-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n\n### **Methods:**\n - **show()** - Shows the listbox.\n- **hide()** - Hides the listbox.\n- **checkValidity()** - Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity()** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message: _string_)** - Sets a custom validation message. Pass an empty string to restore validity.\n- **focus(options: _FocusOptions_)** - Sets focus on the control.\n- **blur()** - Removes focus from the control.\n\n### **Slots:**\n - _default_ - The listbox options. Must be `<awc-option>` elements. You can use `<awc-divider>` to group items visually.\n- **label** - The input's label. Alternatively, you can use the `label` attribute.\n- **prefix** - Used to prepend a presentational icon or similar element to the combobox.\n- **clear-icon** - An icon to use in lieu of the default clear icon.\n- **expand-icon** - The icon to show when the control is expanded and collapsed. Rotates on open and close.\n- **help-text** - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.\n\n### **CSS Parts:**\n - **form-control** - The form control that wraps the label, input, and help text.\n- **form-control-label** - The label's wrapper.\n- **form-control-input** - The select's wrapper.\n- **form-control-help-text** - The help text's wrapper.\n- **combobox** - The container the wraps the prefix, combobox, clear icon, and expand button.\n- **prefix** - The container that wraps the prefix slot.\n- **display-input** - The element that displays the selected option's label, an `<input>` element.\n- **listbox** - The listbox container where options are slotted.\n- **tags** - The container that houses option tags when `multiselect` is used.\n- **tag** - The individual tags that represent each multiselect option.\n- **tag__base** - The tag's base part.\n- **tag__content** - The tag's content part.\n- **tag__remove-button** - The tag's remove button.\n- **tag__remove-button__base** - The tag's remove button base part.\n- **clear-button** - The clear button.\n- **expand-icon** - The container that wraps the expand icon.",
          "doc-url": "",
          "attributes": [
            {
              "name": "name",
              "description": "The name of the select, submitted as a name/value pair with form data.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "value",
              "description": "The current value of the select, submitted as a name/value pair with form data. When `multiple` is enabled, the\nvalue attribute will be a comma-delimited list of values based on the options selected, and the value property will\nbe an array.",
              "value": { "type": "string | string[]", "default": "''" }
            },
            {
              "name": "size",
              "description": "The select's size.",
              "value": {
                "type": "'small' | 'medium' | 'large'",
                "default": "'medium'"
              }
            },
            {
              "name": "placeholder",
              "description": "Placeholder text to show as a hint when the select is empty.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "multiple",
              "description": "Allows more than one option to be selected.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "max-options-visible",
              "description": "The maximum number of selected options to show when `multiple` is true. After the maximum, \"+n\" will be shown to\nindicate the number of additional items that are selected. Set to 0 to remove the limit.",
              "value": { "type": "number", "default": "3" }
            },
            {
              "name": "disabled",
              "description": "Disables the select control.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "clearable",
              "description": "Adds a clear button when the select is not empty.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "open",
              "description": "Indicates whether or not the select is open. You can toggle this attribute to show and hide the menu, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the select's open state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "hoist",
              "description": "Enable this option to prevent the listbox from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "filled",
              "description": "Draws a filled select.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "pill",
              "description": "Draws a pill-style select with rounded edges.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "label",
              "description": "The select's label. If you need to display HTML, use the `label` slot instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "placement",
              "description": "The preferred placement of the select's menu. Note that the actual placement may vary as needed to keep the listbox\ninside of the viewport.",
              "value": { "type": "'top' | 'bottom'", "default": "'bottom'" }
            },
            {
              "name": "help-text",
              "description": "The select's help text. If you need to display HTML, use the `help-text` slot instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "form",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "required",
              "description": "The select's required attribute.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "getTag",
              "description": "A function that customizes the tags to be rendered when multiple=true. The first argument is the option, the second\nis the current tag's index.  The function should return either a Lit TemplateResult or a string containing trusted HTML of the symbol to render at\nthe specified value.",
              "value": {
                "type": "(option: AWCOption, index: number) => TemplateResult | string | HTMLElement"
              }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "The listbox options. Must be `<awc-option>` elements. You can use `<awc-divider>` to group items visually."
            },
            {
              "name": "label",
              "description": "The input's label. Alternatively, you can use the `label` attribute."
            },
            {
              "name": "prefix",
              "description": "Used to prepend a presentational icon or similar element to the combobox."
            },
            {
              "name": "clear-icon",
              "description": "An icon to use in lieu of the default clear icon."
            },
            {
              "name": "expand-icon",
              "description": "The icon to show when the control is expanded and collapsed. Rotates on open and close."
            },
            {
              "name": "help-text",
              "description": "Text that describes how to use the input. Alternatively, you can use the `help-text` attribute."
            }
          ],
          "events": [
            {
              "name": "awc-change",
              "description": "Emitted when the control's value changes."
            },
            {
              "name": "awc-clear",
              "description": "Emitted when the control's value is cleared."
            },
            {
              "name": "awc-input",
              "description": "Emitted when the control receives input."
            },
            {
              "name": "awc-focus",
              "description": "Emitted when the control gains focus."
            },
            {
              "name": "awc-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "awc-show",
              "description": "Emitted when the select's menu opens."
            },
            {
              "name": "awc-after-show",
              "description": "Emitted after the select's menu opens and all animations are complete."
            },
            {
              "name": "awc-hide",
              "description": "Emitted when the select's menu closes."
            },
            {
              "name": "awc-after-hide",
              "description": "Emitted after the select's menu closes and all animations are complete."
            },
            {
              "name": "awc-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "name",
                "description": "The name of the select, submitted as a name/value pair with form data.",
                "value": { "type": "string" }
              },
              {
                "name": "value",
                "description": "The current value of the select, submitted as a name/value pair with form data. When `multiple` is enabled, the\nvalue attribute will be a comma-delimited list of values based on the options selected, and the value property will\nbe an array.",
                "value": { "type": "string | string[]" }
              },
              {
                "name": "size",
                "description": "The select's size.",
                "value": { "type": "'small' | 'medium' | 'large'" }
              },
              {
                "name": "placeholder",
                "description": "Placeholder text to show as a hint when the select is empty.",
                "value": { "type": "string" }
              },
              {
                "name": "multiple",
                "description": "Allows more than one option to be selected.",
                "value": { "type": "boolean" }
              },
              {
                "name": "max-options-visible",
                "description": "The maximum number of selected options to show when `multiple` is true. After the maximum, \"+n\" will be shown to\nindicate the number of additional items that are selected. Set to 0 to remove the limit.",
                "value": { "type": "number" }
              },
              {
                "name": "disabled",
                "description": "Disables the select control.",
                "value": { "type": "boolean" }
              },
              {
                "name": "clearable",
                "description": "Adds a clear button when the select is not empty.",
                "value": { "type": "boolean" }
              },
              {
                "name": "open",
                "description": "Indicates whether or not the select is open. You can toggle this attribute to show and hide the menu, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the select's open state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "hoist",
                "description": "Enable this option to prevent the listbox from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.",
                "value": { "type": "boolean" }
              },
              {
                "name": "filled",
                "description": "Draws a filled select.",
                "value": { "type": "boolean" }
              },
              {
                "name": "pill",
                "description": "Draws a pill-style select with rounded edges.",
                "value": { "type": "boolean" }
              },
              {
                "name": "label",
                "description": "The select's label. If you need to display HTML, use the `label` slot instead.",
                "value": { "type": "string" }
              },
              {
                "name": "placement",
                "description": "The preferred placement of the select's menu. Note that the actual placement may vary as needed to keep the listbox\ninside of the viewport.",
                "value": { "type": "'top' | 'bottom'" }
              },
              {
                "name": "help-text",
                "description": "The select's help text. If you need to display HTML, use the `help-text` slot instead.",
                "value": { "type": "string" }
              },
              {
                "name": "form",
                "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
                "value": { "type": "string" }
              },
              {
                "name": "required",
                "description": "The select's required attribute.",
                "value": { "type": "boolean" }
              },
              {
                "name": "getTag",
                "description": "A function that customizes the tags to be rendered when multiple=true. The first argument is the option, the second\nis the current tag's index.  The function should return either a Lit TemplateResult or a string containing trusted HTML of the symbol to render at\nthe specified value.",
                "value": {
                  "type": "(option: AWCOption, index: number) => TemplateResult | string | HTMLElement"
                }
              }
            ],
            "events": [
              {
                "name": "awc-change",
                "description": "Emitted when the control's value changes."
              },
              {
                "name": "awc-clear",
                "description": "Emitted when the control's value is cleared."
              },
              {
                "name": "awc-input",
                "description": "Emitted when the control receives input."
              },
              {
                "name": "awc-focus",
                "description": "Emitted when the control gains focus."
              },
              {
                "name": "awc-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "awc-show",
                "description": "Emitted when the select's menu opens."
              },
              {
                "name": "awc-after-show",
                "description": "Emitted after the select's menu opens and all animations are complete."
              },
              {
                "name": "awc-hide",
                "description": "Emitted when the select's menu closes."
              },
              {
                "name": "awc-after-hide",
                "description": "Emitted after the select's menu closes and all animations are complete."
              },
              {
                "name": "awc-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "awc-skeleton",
          "description": "Skeletons are used to provide a visual representation of where content will eventually be drawn.\n---\n\n\n### **CSS Properties:**\n - **--border-radius** - The skeleton's border radius. _(default: undefined)_\n- **--color** - The color of the skeleton. _(default: undefined)_\n- **--sheen-color** - The sheen color when the skeleton is in its loading state. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **indicator** - The skeleton's indicator which is responsible for its color and animation.",
          "doc-url": "",
          "attributes": [
            {
              "name": "effect",
              "description": "Determines which effect the skeleton will use.",
              "value": {
                "type": "'pulse' | 'sheen' | 'none'",
                "default": "'none'"
              }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "effect",
                "description": "Determines which effect the skeleton will use.",
                "value": { "type": "'pulse' | 'sheen' | 'none'" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-spinner",
          "description": "Spinners are used to show the progress of an indeterminate operation.\n---\n\n\n### **CSS Properties:**\n - **--track-width** - The width of the track. _(default: undefined)_\n- **--track-color** - The color of the track. _(default: undefined)_\n- **--indicator-color** - The color of the spinner's indicator. _(default: undefined)_\n- **--speed** - The time it takes for the spinner to complete one animation cycle. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
          "doc-url": "",
          "attributes": [],
          "events": [],
          "js": {
            "properties": [{ "name": "localize", "value": {} }],
            "events": []
          }
        },
        {
          "name": "awc-split-panel",
          "description": "Split panels display two adjacent panels, allowing the user to reposition them.\n---\n\n\n### **Events:**\n - **awc-reposition** - Emitted when the divider's position changes.\n\n### **Slots:**\n - **start** - Content to place in the start panel.\n- **end** - Content to place in the end panel.\n- **divider** - The divider. Useful for slotting in a custom icon that renders as a handle.\n\n### **CSS Properties:**\n - **--divider-width** - The width of the visible divider. _(default: 4px)_\n- **--divider-hit-area** - The invisible region around the divider where dragging can occur. This is usually wider than the divider to facilitate easier dragging. _(default: 12px)_\n- **--min** - The minimum allowed size of the primary panel. _(default: 0)_\n- **--max** - The maximum allowed size of the primary panel. _(default: 100%)_\n\n### **CSS Parts:**\n - **start** - The start panel.\n- **end** - The end panel.\n- **panel** - Targets both the start and end panels.\n- **divider** - The divider that separates the start and end panels.",
          "doc-url": "",
          "attributes": [
            {
              "name": "position",
              "description": "The current position of the divider from the primary panel's edge as a percentage 0-100. Defaults to 50% of the\ncontainer's initial size.",
              "value": { "type": "number", "default": "50" }
            },
            {
              "name": "position-in-pixels",
              "description": "The current position of the divider from the primary panel's edge in pixels.",
              "value": { "type": "number" }
            },
            {
              "name": "vertical",
              "description": "Draws the split panel in a vertical orientation with the start and end panels stacked.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "Disables resizing. Note that the position may still change as a result of resizing the host element.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "primary",
              "description": "If no primary panel is designated, both panels will resize proportionally when the host element is resized. If a\nprimary panel is designated, it will maintain its size and the other panel will grow or shrink as needed when the\nhost element is resized.",
              "value": { "type": "'start' | 'end' | undefined" }
            },
            {
              "name": "snap",
              "description": "One or more space-separated values at which the divider should snap. Values can be in pixels or percentages, e.g.\n`\"100px 50%\"`.",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "snap-threshold",
              "description": "How close the divider must be to a snap point until snapping occurs.",
              "value": { "type": "number", "default": "12" }
            }
          ],
          "slots": [
            {
              "name": "start",
              "description": "Content to place in the start panel."
            },
            {
              "name": "end",
              "description": "Content to place in the end panel."
            },
            {
              "name": "divider",
              "description": "The divider. Useful for slotting in a custom icon that renders as a handle."
            }
          ],
          "events": [
            {
              "name": "awc-reposition",
              "description": "Emitted when the divider's position changes."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "position",
                "description": "The current position of the divider from the primary panel's edge as a percentage 0-100. Defaults to 50% of the\ncontainer's initial size.",
                "value": { "type": "number" }
              },
              {
                "name": "position-in-pixels",
                "description": "The current position of the divider from the primary panel's edge in pixels.",
                "value": { "type": "number" }
              },
              {
                "name": "vertical",
                "description": "Draws the split panel in a vertical orientation with the start and end panels stacked.",
                "value": { "type": "boolean" }
              },
              {
                "name": "disabled",
                "description": "Disables resizing. Note that the position may still change as a result of resizing the host element.",
                "value": { "type": "boolean" }
              },
              {
                "name": "primary",
                "description": "If no primary panel is designated, both panels will resize proportionally when the host element is resized. If a\nprimary panel is designated, it will maintain its size and the other panel will grow or shrink as needed when the\nhost element is resized.",
                "value": { "type": "'start' | 'end' | undefined" }
              },
              {
                "name": "snap",
                "description": "One or more space-separated values at which the divider should snap. Values can be in pixels or percentages, e.g.\n`\"100px 50%\"`.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "snap-threshold",
                "description": "How close the divider must be to a snap point until snapping occurs.",
                "value": { "type": "number" }
              }
            ],
            "events": [
              {
                "name": "awc-reposition",
                "description": "Emitted when the divider's position changes."
              }
            ]
          }
        },
        {
          "name": "awc-stepper",
          "description": "The stepper component can be used to show a numbered list of steps.\n---\n\n\n### **Slots:**\n - _default_ - The default slot who contain the steps items `<awc-stepper-item>`.\n- **completed-icon** - An icon to show when the step is completed, it will be forwarded to the `<awc-stepper-item>`.\n\n### **CSS Properties:**\n - **--gap** - The gap between step badge and label. _(default: var(--awc-spacing-medium))_\n- **--size** - The size of the step badge. _(default: var(--awc-spacing-5xlarge))_\n- **--font-size** - The font size of the step badge. _(default: var(--awc-font-size-medium))_\n- **--badge-radius** - The radius of the step badge. _(default: 50%)_\n- **--track-height** - The height of the step track and the badge border. _(default: var(--awc-spacing-3xsmall))_\n- **--track-gap** - The gap between the step track and the badge border. _(default: var(--awc-spacing-xsmall))_\n- **--color** - The color of the step badge content. _(default: var(--awc-color-neutral-400))_\n- **--badge-color** - The color of the step badge. _(default: var(--awc-color-neutral-400))_\n- **--backgound-color** - The background color of the step badge. _(default: var(--awc-color-neutral-0))_\n- **--active-color** - The color of the step badge when active content. _(default: var(--awc-color-primary-600))_\n- **--active-badge-color** - The color of the step badge when active. _(default: var(--awc-color-primary-600))_\n- **--active-backgound-color** - The background color of the step badge when active. _(default: var(--awc-color-neutral-0))_\n- **--completed-color** - The color of the step badge when completed content. _(default: var(--awc-color-neutral-0))_\n- **--completed-badge-color** - The color of the step badge when completed. _(default: var(--awc-color-primary-600))_\n- **--completed-backgound-color** - The background color of the step badge when completed. _(default: var(--awc-color-primary-600))_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
          "doc-url": "",
          "attributes": [
            {
              "name": "vertical",
              "description": "An example attribute.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "The default slot who contain the steps items `<awc-stepper-item>`."
            },
            {
              "name": "completed-icon",
              "description": "An icon to show when the step is completed, it will be forwarded to the `<awc-stepper-item>`."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "vertical",
                "description": "An example attribute.",
                "value": { "type": "boolean" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-stepper-item",
          "description": "The stepper-item component can be used to show a numbered list of steps.\n---\n\n\n### **Slots:**\n - _default_ - The default slot is used for step content.\n- **step** - The step badge content.\n- **completed-icon** - The icon to show when the step is completed.\n\n### **CSS Properties:**\n - **--gap** - The gap between step badge and label (Inherited from the parent stepper). _(default: var(--awc-spacing-medium))_\n- **--size** - The size of the step badge (Inherited from the parent stepper). _(default: var(--awc-spacing-5xlarge))_\n- **--font-size** - The font size of the step badge (Inherited from the parent stepper). _(default: var(--awc-font-size-medium))_\n- **--badge-radius** - The radius of the step badge (Inherited from the parent stepper). _(default: 50%)_\n- **--track-height** - The height of the step track and the badge border (Inherited from the parent stepper). _(default: var(--awc-spacing-3xsmall))_\n- **--track-gap** - The gap between the step track and the badge border (Inherited from the parent stepper). _(default: var(--awc-spacing-xsmall))_\n- **--color** - The color of the step badge content (Inherited from the parent stepper). _(default: var(--awc-color-neutral-400))_\n- **--badge-color** - The color of the step badge (Inherited from the parent stepper). _(default: var(--awc-color-neutral-400))_\n- **--backgound-color** - The background color of the step badge (Inherited from the parent stepper). _(default: var(--awc-color-neutral-0))_\n- **--active-color** - The color of the step badge when active content (Inherited from the parent stepper). _(default: var(--awc-color-primary-600))_\n- **--active-badge-color** - The color of the step badge when active (Inherited from the parent stepper). _(default: var(--awc-color-primary-600))_\n- **--active-backgound-color** - The background color of the step badge when active (Inherited from the parent stepper). _(default: var(--awc-color-neutral-0))_\n- **--completed-color** - The color of the step badge when completed content (Inherited from the parent stepper). _(default: var(--awc-color-neutral-0))_\n- **--completed-badge-color** - The color of the step badge when completed (Inherited from the parent stepper). _(default: var(--awc-color-primary-600))_\n- **--completed-backgound-color** - The background color of the step badge when completed (Inherited from the parent stepper). _(default: var(--awc-color-primary-600))_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **badge** - The badge wrapper.\n- **step** - The badge's step wrapper.\n- **completed** - The badge's completed wrapper.\n- **label** - The step's label.",
          "doc-url": "",
          "attributes": [
            {
              "name": "label",
              "description": "A accessibility label for the step item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "step",
              "description": "The step number.",
              "value": { "type": "number | undefined", "default": "undefined" }
            },
            {
              "name": "completed",
              "description": "Mark the step as completed.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "active",
              "description": "Mark the step as active.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "The default slot is used for step content."
            },
            { "name": "step", "description": "The step badge content." },
            {
              "name": "completed-icon",
              "description": "The icon to show when the step is completed."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "label",
                "description": "A accessibility label for the step item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "step",
                "description": "The step number.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "completed",
                "description": "Mark the step as completed.",
                "value": { "type": "boolean" }
              },
              {
                "name": "active",
                "description": "Mark the step as active.",
                "value": { "type": "boolean" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-switch",
          "description": "Switches allow the user to toggle an option on or off.\n---\n\n\n### **Events:**\n - **awc-blur** - Emitted when the control loses focus.\n- **awc-change** - Emitted when the control's checked state changes.\n- **awc-input** - Emitted when the control receives input.\n- **awc-focus** - Emitted when the control gains focus.\n- **awc-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n\n### **Methods:**\n - **click()** - Simulates a click on the switch.\n- **focus(options: _FocusOptions_)** - Sets focus on the switch.\n- **blur()** - Removes focus from the switch.\n- **checkValidity()** - Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity()** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message: _string_)** - Sets a custom validation message. Pass an empty string to restore validity.\n\n### **Slots:**\n - _default_ - The switch's label.\n- **help-text** - Text that describes how to use the switch. Alternatively, you can use the `help-text` attribute.\n\n### **CSS Properties:**\n - **--width** - The width of the switch. _(default: undefined)_\n- **--height** - The height of the switch. _(default: undefined)_\n- **--thumb-size** - The size of the thumb. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **control** - The control that houses the switch's thumb.\n- **thumb** - The switch's thumb.\n- **label** - The switch's label.\n- **form-control-help-text** - The help text's wrapper.",
          "doc-url": "",
          "attributes": [
            { "name": "title", "value": { "type": "string", "default": "''" } },
            {
              "name": "name",
              "description": "The name of the switch, submitted as a name/value pair with form data.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "value",
              "description": "The current value of the switch, submitted as a name/value pair with form data.",
              "value": { "type": "string" }
            },
            {
              "name": "size",
              "description": "The switch's size.",
              "value": {
                "type": "'small' | 'medium' | 'large'",
                "default": "'medium'"
              }
            },
            {
              "name": "disabled",
              "description": "Disables the switch.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "checked",
              "description": "Draws the switch in a checked state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "form",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "required",
              "description": "Makes the switch a required field.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "help-text",
              "description": "The switch's help text. If you need to display HTML, use the `help-text` slot instead.",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "slots": [
            { "name": "", "description": "The switch's label." },
            {
              "name": "help-text",
              "description": "Text that describes how to use the switch. Alternatively, you can use the `help-text` attribute."
            }
          ],
          "events": [
            {
              "name": "awc-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "awc-change",
              "description": "Emitted when the control's checked state changes."
            },
            {
              "name": "awc-input",
              "description": "Emitted when the control receives input."
            },
            {
              "name": "awc-focus",
              "description": "Emitted when the control gains focus."
            },
            {
              "name": "awc-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              { "name": "title", "value": { "type": "string" } },
              {
                "name": "name",
                "description": "The name of the switch, submitted as a name/value pair with form data.",
                "value": { "type": "string" }
              },
              {
                "name": "value",
                "description": "The current value of the switch, submitted as a name/value pair with form data.",
                "value": { "type": "string" }
              },
              {
                "name": "size",
                "description": "The switch's size.",
                "value": { "type": "'small' | 'medium' | 'large'" }
              },
              {
                "name": "disabled",
                "description": "Disables the switch.",
                "value": { "type": "boolean" }
              },
              {
                "name": "checked",
                "description": "Draws the switch in a checked state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "form",
                "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
                "value": { "type": "string" }
              },
              {
                "name": "required",
                "description": "Makes the switch a required field.",
                "value": { "type": "boolean" }
              },
              {
                "name": "help-text",
                "description": "The switch's help text. If you need to display HTML, use the `help-text` slot instead.",
                "value": { "type": "string" }
              }
            ],
            "events": [
              {
                "name": "awc-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "awc-change",
                "description": "Emitted when the control's checked state changes."
              },
              {
                "name": "awc-input",
                "description": "Emitted when the control receives input."
              },
              {
                "name": "awc-focus",
                "description": "Emitted when the control gains focus."
              },
              {
                "name": "awc-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "awc-tab",
          "description": "Tabs are used inside [tab groups](?path=/docs/components-tab-group--documentation) to represent and activate [tab panels](?path=/docs/components-tab-panel--documentation).\n---\n\n\n### **Events:**\n - **awc-close** - Emitted when the tab is closable and the close button is activated.\n\n### **Methods:**\n - **focus(options: _FocusOptions_)** - Sets focus to the tab.\n- **blur()** - Removes focus from the tab.\n\n### **Slots:**\n - _default_ - The tab's label.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **close-button** - The close button, an `<awc-icon-button>`.\n- **close-button__base** - The close button's exported `base` part.",
          "doc-url": "",
          "attributes": [
            {
              "name": "panel",
              "description": "The name of the tab panel this tab is associated with. The panel must be located in the same tab group.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "active",
              "description": "Draws the tab in an active state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "closable",
              "description": "Makes the tab closable and shows a close button.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "Disables the tab and prevents selection.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [{ "name": "", "description": "The tab's label." }],
          "events": [
            {
              "name": "awc-close",
              "description": "Emitted when the tab is closable and the close button is activated."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "panel",
                "description": "The name of the tab panel this tab is associated with. The panel must be located in the same tab group.",
                "value": { "type": "string" }
              },
              {
                "name": "active",
                "description": "Draws the tab in an active state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "closable",
                "description": "Makes the tab closable and shows a close button.",
                "value": { "type": "boolean" }
              },
              {
                "name": "disabled",
                "description": "Disables the tab and prevents selection.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-close",
                "description": "Emitted when the tab is closable and the close button is activated."
              }
            ]
          }
        },
        {
          "name": "awc-tab-group",
          "description": "Tab groups organize content into a container that shows one section at a time.\n---\n\n\n### **Events:**\n - **awc-tab-show** - Emitted when a tab is shown.\n- **awc-tab-hide** - Emitted when a tab is hidden.\n\n### **Methods:**\n - **show(panel: _string_)** - Shows the specified tab panel.\n\n### **Slots:**\n - _default_ - Used for grouping tab panels in the tab group. Must be `<awc-tab-panel>` elements.\n- **nav** - Used for grouping tabs in the tab group. Must be `<awc-tab>` elements.\n\n### **CSS Properties:**\n - **--indicator-color** - The color of the active tab indicator. _(default: undefined)_\n- **--track-color** - The color of the indicator's track (the line that separates tabs from panels). _(default: undefined)_\n- **--track-width** - The width of the indicator's track (the line that separates tabs from panels). _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **nav** - The tab group's navigation container where tabs are slotted in.\n- **tabs** - The container that wraps the tabs.\n- **active-tab-indicator** - The line that highlights the currently selected tab.\n- **body** - The tab group's body where tab panels are slotted in.\n- **scroll-button** - The previous/next scroll buttons that show when tabs are scrollable, an `<awc-icon-button>`.\n- **scroll-button--start** - The starting scroll button.\n- **scroll-button--end** - The ending scroll button.\n- **scroll-button__base** - The scroll button's exported `base` part.",
          "doc-url": "",
          "attributes": [
            {
              "name": "placement",
              "description": "The placement of the tabs.",
              "value": {
                "type": "'top' | 'bottom' | 'start' | 'end'",
                "default": "'top'"
              }
            },
            {
              "name": "activation",
              "description": "When set to auto, navigating tabs with the arrow keys will instantly show the corresponding tab panel. When set to\nmanual, the tab will receive focus but will not show until the user presses spacebar or enter.",
              "value": { "type": "'auto' | 'manual'", "default": "'auto'" }
            },
            {
              "name": "no-scroll-controls",
              "description": "Disables the scroll arrows that appear when tabs overflow.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "Used for grouping tab panels in the tab group. Must be `<awc-tab-panel>` elements."
            },
            {
              "name": "nav",
              "description": "Used for grouping tabs in the tab group. Must be `<awc-tab>` elements."
            }
          ],
          "events": [
            {
              "name": "awc-tab-show",
              "description": "Emitted when a tab is shown."
            },
            {
              "name": "awc-tab-hide",
              "description": "Emitted when a tab is hidden."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "placement",
                "description": "The placement of the tabs.",
                "value": { "type": "'top' | 'bottom' | 'start' | 'end'" }
              },
              {
                "name": "activation",
                "description": "When set to auto, navigating tabs with the arrow keys will instantly show the corresponding tab panel. When set to\nmanual, the tab will receive focus but will not show until the user presses spacebar or enter.",
                "value": { "type": "'auto' | 'manual'" }
              },
              {
                "name": "no-scroll-controls",
                "description": "Disables the scroll arrows that appear when tabs overflow.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-tab-show",
                "description": "Emitted when a tab is shown."
              },
              {
                "name": "awc-tab-hide",
                "description": "Emitted when a tab is hidden."
              }
            ]
          }
        },
        {
          "name": "awc-tab-panel",
          "description": "Tab panels are used inside [tab groups](?path=/docs/components-tab-group--documentation) to display tabbed content.\n---\n\n\n### **Slots:**\n - _default_ - The tab panel's content.\n\n### **CSS Properties:**\n - **--padding** - The tab panel's padding. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
          "doc-url": "",
          "attributes": [
            {
              "name": "name",
              "description": "The tab panel's name.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "active",
              "description": "When true, the tab panel will be shown.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [{ "name": "", "description": "The tab panel's content." }],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "name",
                "description": "The tab panel's name.",
                "value": { "type": "string" }
              },
              {
                "name": "active",
                "description": "When true, the tab panel will be shown.",
                "value": { "type": "boolean" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "awc-tag",
          "description": "Tags are used as labels to organize things or to indicate a selection.\n---\n\n\n### **Events:**\n - **awc-remove** - Emitted when the remove button is activated.\n\n### **Slots:**\n - _default_ - The tag's content.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **content** - The tag's content.\n- **remove-button** - The tag's remove button, an `<awc-icon-button>`.\n- **remove-button__base** - The remove button's exported `base` part.",
          "doc-url": "",
          "attributes": [
            {
              "name": "variant",
              "description": "The tag's theme variant.",
              "value": {
                "type": "| 'primary'\n    | 'secondary'\n    | 'tertiary'\n    | 'success'\n    | 'neutral'\n    | 'warning'\n    | 'danger'\n    | 'text'",
                "default": "'neutral'"
              }
            },
            {
              "name": "size",
              "description": "The tag's size.",
              "value": {
                "type": "'small' | 'medium' | 'large'",
                "default": "'medium'"
              }
            },
            {
              "name": "pill",
              "description": "Draws a pill-style tag with rounded edges.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "removable",
              "description": "Makes the tag removable and shows a remove button.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [{ "name": "", "description": "The tag's content." }],
          "events": [
            {
              "name": "awc-remove",
              "description": "Emitted when the remove button is activated."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "variant",
                "description": "The tag's theme variant.",
                "value": {
                  "type": "| 'primary'\n    | 'secondary'\n    | 'tertiary'\n    | 'success'\n    | 'neutral'\n    | 'warning'\n    | 'danger'\n    | 'text'"
                }
              },
              {
                "name": "size",
                "description": "The tag's size.",
                "value": { "type": "'small' | 'medium' | 'large'" }
              },
              {
                "name": "pill",
                "description": "Draws a pill-style tag with rounded edges.",
                "value": { "type": "boolean" }
              },
              {
                "name": "removable",
                "description": "Makes the tag removable and shows a remove button.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-remove",
                "description": "Emitted when the remove button is activated."
              }
            ]
          }
        },
        {
          "name": "awc-textarea",
          "description": "Textareas collect data from the user and allow multiple lines of text.\n---\n\n\n### **Events:**\n - **awc-blur** - Emitted when the control loses focus.\n- **awc-change** - Emitted when an alteration to the control's value is committed by the user.\n- **awc-focus** - Emitted when the control gains focus.\n- **awc-input** - Emitted when the control receives input.\n- **awc-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n\n### **Methods:**\n - **focus(options: _FocusOptions_)** - Sets focus on the textarea.\n- **blur()** - Removes focus from the textarea.\n- **select()** - Selects all the text in the textarea.\n- **scrollPosition(position: _{ top?: number; left?: number }_): _{ top: number; left: number } | undefined_** - Gets or sets the textarea's scroll position.\n- **setSelectionRange(selectionStart: _number_, selectionEnd: _number_, selectionDirection: _'forward' | 'backward' | 'none'_)** - Sets the start and end positions of the text selection (0-based).\n- **setRangeText(replacement: _string_, start: _number_, end: _number_, selectMode: _'select' | 'start' | 'end' | 'preserve'_)** - Replaces a range of text with a new string.\n- **checkValidity()** - Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid.\n- **getForm(): _HTMLFormElement | null_** - Gets the associated form, if one exists.\n- **reportValidity()** - Checks for validity and shows the browser's validation message if the control is invalid.\n- **setCustomValidity(message: _string_)** - Sets a custom validation message. Pass an empty string to restore validity.\n\n### **Slots:**\n - **label** - The textarea's label. Alternatively, you can use the `label` attribute.\n- **help-text** - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.\n\n### **CSS Parts:**\n - **form-control** - The form control that wraps the label, input, and help text.\n- **form-control-label** - The label's wrapper.\n- **form-control-input** - The input's wrapper.\n- **form-control-help-text** - The help text's wrapper.\n- **base** - The component's base wrapper.\n- **textarea** - The internal `<textarea>` control.",
          "doc-url": "",
          "attributes": [
            { "name": "title", "value": { "type": "string", "default": "''" } },
            {
              "name": "name",
              "description": "The name of the textarea, submitted as a name/value pair with form data.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "value",
              "description": "The current value of the textarea, submitted as a name/value pair with form data.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "size",
              "description": "The textarea's size.",
              "value": {
                "type": "'small' | 'medium' | 'large'",
                "default": "'medium'"
              }
            },
            {
              "name": "filled",
              "description": "Draws a filled textarea.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "label",
              "description": "The textarea's label. If you need to display HTML, use the `label` slot instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "help-text",
              "description": "The textarea's help text. If you need to display HTML, use the `help-text` slot instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "placeholder",
              "description": "Placeholder text to show as a hint when the input is empty.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "rows",
              "description": "The number of rows to display by default.",
              "value": { "type": "number", "default": "4" }
            },
            {
              "name": "resize",
              "description": "Controls how the textarea can be resized.",
              "value": {
                "type": "'none' | 'vertical' | 'auto'",
                "default": "'vertical'"
              }
            },
            {
              "name": "disabled",
              "description": "Disables the textarea.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "readonly",
              "description": "Makes the textarea readonly.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "form",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "required",
              "description": "Makes the textarea a required field.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "minlength",
              "description": "The minimum length of input that will be considered valid.",
              "value": { "type": "number" }
            },
            {
              "name": "maxlength",
              "description": "The maximum length of input that will be considered valid.",
              "value": { "type": "number" }
            },
            {
              "name": "autocapitalize",
              "description": "Controls whether and how text input is automatically capitalized as it is entered by the user.",
              "value": {
                "type": "'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters'"
              }
            },
            {
              "name": "autocorrect",
              "description": "Indicates whether the browser's autocorrect feature is on or off.",
              "value": { "type": "string" }
            },
            {
              "name": "autocomplete",
              "description": "Specifies what permission the browser has to provide assistance in filling out form field values. Refer to\n[this page on MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) for available values.",
              "value": { "type": "string" }
            },
            {
              "name": "autofocus",
              "description": "Indicates that the input should receive focus on page load.",
              "value": { "type": "boolean" }
            },
            {
              "name": "enterkeyhint",
              "description": "Used to customize the label or icon of the Enter key on virtual keyboards.",
              "value": {
                "type": "'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send'"
              }
            },
            {
              "name": "spellcheck",
              "description": "Enables spell checking on the textarea.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "inputmode",
              "description": "Tells the browser what type of data will be entered by the user, allowing it to display the appropriate virtual\nkeyboard on supportive devices.",
              "value": {
                "type": "'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url'"
              }
            }
          ],
          "slots": [
            {
              "name": "label",
              "description": "The textarea's label. Alternatively, you can use the `label` attribute."
            },
            {
              "name": "help-text",
              "description": "Text that describes how to use the input. Alternatively, you can use the `help-text` attribute."
            }
          ],
          "events": [
            {
              "name": "awc-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "awc-change",
              "description": "Emitted when an alteration to the control's value is committed by the user."
            },
            {
              "name": "awc-focus",
              "description": "Emitted when the control gains focus."
            },
            {
              "name": "awc-input",
              "description": "Emitted when the control receives input."
            },
            {
              "name": "awc-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              { "name": "title", "value": { "type": "string" } },
              {
                "name": "name",
                "description": "The name of the textarea, submitted as a name/value pair with form data.",
                "value": { "type": "string" }
              },
              {
                "name": "value",
                "description": "The current value of the textarea, submitted as a name/value pair with form data.",
                "value": { "type": "string" }
              },
              {
                "name": "size",
                "description": "The textarea's size.",
                "value": { "type": "'small' | 'medium' | 'large'" }
              },
              {
                "name": "filled",
                "description": "Draws a filled textarea.",
                "value": { "type": "boolean" }
              },
              {
                "name": "label",
                "description": "The textarea's label. If you need to display HTML, use the `label` slot instead.",
                "value": { "type": "string" }
              },
              {
                "name": "help-text",
                "description": "The textarea's help text. If you need to display HTML, use the `help-text` slot instead.",
                "value": { "type": "string" }
              },
              {
                "name": "placeholder",
                "description": "Placeholder text to show as a hint when the input is empty.",
                "value": { "type": "string" }
              },
              {
                "name": "rows",
                "description": "The number of rows to display by default.",
                "value": { "type": "number" }
              },
              {
                "name": "resize",
                "description": "Controls how the textarea can be resized.",
                "value": { "type": "'none' | 'vertical' | 'auto'" }
              },
              {
                "name": "disabled",
                "description": "Disables the textarea.",
                "value": { "type": "boolean" }
              },
              {
                "name": "readonly",
                "description": "Makes the textarea readonly.",
                "value": { "type": "boolean" }
              },
              {
                "name": "form",
                "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
                "value": { "type": "string" }
              },
              {
                "name": "required",
                "description": "Makes the textarea a required field.",
                "value": { "type": "boolean" }
              },
              {
                "name": "minlength",
                "description": "The minimum length of input that will be considered valid.",
                "value": { "type": "number" }
              },
              {
                "name": "maxlength",
                "description": "The maximum length of input that will be considered valid.",
                "value": { "type": "number" }
              },
              {
                "name": "autocapitalize",
                "description": "Controls whether and how text input is automatically capitalized as it is entered by the user.",
                "value": {
                  "type": "'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters'"
                }
              },
              {
                "name": "autocorrect",
                "description": "Indicates whether the browser's autocorrect feature is on or off.",
                "value": { "type": "string" }
              },
              {
                "name": "autocomplete",
                "description": "Specifies what permission the browser has to provide assistance in filling out form field values. Refer to\n[this page on MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) for available values.",
                "value": { "type": "string" }
              },
              {
                "name": "autofocus",
                "description": "Indicates that the input should receive focus on page load.",
                "value": { "type": "boolean" }
              },
              {
                "name": "enterkeyhint",
                "description": "Used to customize the label or icon of the Enter key on virtual keyboards.",
                "value": {
                  "type": "'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send'"
                }
              },
              {
                "name": "spellcheck",
                "description": "Enables spell checking on the textarea.",
                "value": { "type": "boolean" }
              },
              {
                "name": "inputmode",
                "description": "Tells the browser what type of data will be entered by the user, allowing it to display the appropriate virtual\nkeyboard on supportive devices.",
                "value": {
                  "type": "'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url'"
                }
              }
            ],
            "events": [
              {
                "name": "awc-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "awc-change",
                "description": "Emitted when an alteration to the control's value is committed by the user."
              },
              {
                "name": "awc-focus",
                "description": "Emitted when the control gains focus."
              },
              {
                "name": "awc-input",
                "description": "Emitted when the control receives input."
              },
              {
                "name": "awc-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "awc-tooltip",
          "description": "Tooltips display additional information based on a specific action.\n---\n\n\n### **Events:**\n - **awc-show** - Emitted when the tooltip begins to show.\n- **awc-after-show** - Emitted after the tooltip has shown and all animations are complete.\n- **awc-hide** - Emitted when the tooltip begins to hide.\n- **awc-after-hide** - Emitted after the tooltip has hidden and all animations are complete.\n\n### **Methods:**\n - **show()** - Shows the tooltip.\n- **hide()** - Hides the tooltip\n\n### **Slots:**\n - _default_ - The tooltip's target element. Avoid slotting in more than one element, as subsequent ones will be ignored.\n- **content** - The content to render in the tooltip. Alternatively, you can use the `content` attribute.\n\n### **CSS Properties:**\n - **--max-width** - The maximum width of the tooltip before its content will wrap. _(default: undefined)_\n- **--hide-delay** - The amount of time to wait before hiding the tooltip when hovering. _(default: undefined)_\n- **--show-delay** - The amount of time to wait before showing the tooltip when hovering. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper, an `<awc-popup>` element.\n- **base__popup** - The popup's exported `popup` part. Use this to target the tooltip's popup container.\n- **base__arrow** - The popup's exported `arrow` part. Use this to target the tooltip's arrow.\n- **body** - The tooltip's body where its content is rendered.",
          "doc-url": "",
          "attributes": [
            {
              "name": "content",
              "description": "The tooltip's content. If you need to display HTML, use the `content` slot instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "placement",
              "description": "The preferred placement of the tooltip. Note that the actual placement may vary as needed to keep the tooltip\ninside of the viewport.",
              "value": {
                "type": "| 'top'\n    | 'top-start'\n    | 'top-end'\n    | 'right'\n    | 'right-start'\n    | 'right-end'\n    | 'bottom'\n    | 'bottom-start'\n    | 'bottom-end'\n    | 'left'\n    | 'left-start'\n    | 'left-end'",
                "default": "'top'"
              }
            },
            {
              "name": "disabled",
              "description": "Disables the tooltip so it won't show when triggered.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "distance",
              "description": "The distance in pixels from which to offset the tooltip away from its target.",
              "value": { "type": "number", "default": "8" }
            },
            {
              "name": "open",
              "description": "Indicates whether or not the tooltip is open. You can use this in lieu of the show/hide methods.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "skidding",
              "description": "The distance in pixels from which to offset the tooltip along its target.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "trigger",
              "description": "Controls how the tooltip is activated. Possible options include `click`, `hover`, `focus`, and `manual`. Multiple\noptions can be passed by separating them with a space. When manual is used, the tooltip must be activated\nprogrammatically.",
              "value": { "type": "string", "default": "'hover focus'" }
            },
            {
              "name": "hoist",
              "description": "Enable this option to prevent the tooltip from being clipped when the component is placed inside a container with\n`overflow: auto|hidden|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all,\nscenarios.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "The tooltip's target element. Avoid slotting in more than one element, as subsequent ones will be ignored."
            },
            {
              "name": "content",
              "description": "The content to render in the tooltip. Alternatively, you can use the `content` attribute."
            }
          ],
          "events": [
            {
              "name": "awc-show",
              "description": "Emitted when the tooltip begins to show."
            },
            {
              "name": "awc-after-show",
              "description": "Emitted after the tooltip has shown and all animations are complete."
            },
            {
              "name": "awc-hide",
              "description": "Emitted when the tooltip begins to hide."
            },
            {
              "name": "awc-after-hide",
              "description": "Emitted after the tooltip has hidden and all animations are complete."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "content",
                "description": "The tooltip's content. If you need to display HTML, use the `content` slot instead.",
                "value": { "type": "string" }
              },
              {
                "name": "placement",
                "description": "The preferred placement of the tooltip. Note that the actual placement may vary as needed to keep the tooltip\ninside of the viewport.",
                "value": {
                  "type": "| 'top'\n    | 'top-start'\n    | 'top-end'\n    | 'right'\n    | 'right-start'\n    | 'right-end'\n    | 'bottom'\n    | 'bottom-start'\n    | 'bottom-end'\n    | 'left'\n    | 'left-start'\n    | 'left-end'"
                }
              },
              {
                "name": "disabled",
                "description": "Disables the tooltip so it won't show when triggered.",
                "value": { "type": "boolean" }
              },
              {
                "name": "distance",
                "description": "The distance in pixels from which to offset the tooltip away from its target.",
                "value": { "type": "number" }
              },
              {
                "name": "open",
                "description": "Indicates whether or not the tooltip is open. You can use this in lieu of the show/hide methods.",
                "value": { "type": "boolean" }
              },
              {
                "name": "skidding",
                "description": "The distance in pixels from which to offset the tooltip along its target.",
                "value": { "type": "number" }
              },
              {
                "name": "trigger",
                "description": "Controls how the tooltip is activated. Possible options include `click`, `hover`, `focus`, and `manual`. Multiple\noptions can be passed by separating them with a space. When manual is used, the tooltip must be activated\nprogrammatically.",
                "value": { "type": "string" }
              },
              {
                "name": "hoist",
                "description": "Enable this option to prevent the tooltip from being clipped when the component is placed inside a container with\n`overflow: auto|hidden|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all,\nscenarios.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-show",
                "description": "Emitted when the tooltip begins to show."
              },
              {
                "name": "awc-after-show",
                "description": "Emitted after the tooltip has shown and all animations are complete."
              },
              {
                "name": "awc-hide",
                "description": "Emitted when the tooltip begins to hide."
              },
              {
                "name": "awc-after-hide",
                "description": "Emitted after the tooltip has hidden and all animations are complete."
              }
            ]
          }
        },
        {
          "name": "awc-tree",
          "description": "Trees allow you to display a hierarchical list of selectable [tree items](?path=/docs/components-tree-item--documentation). Items with children can be expanded and collapsed as desired by the user.\n---\n\n\n### **Events:**\n - **awc-selection-change** - Emitted when a tree item is selected or deselected.\n\n### **Slots:**\n - _default_ - The default slot.\n- **expand-icon** - The icon to show when the tree item is expanded. Works best with `<awc-icon>`.\n- **collapse-icon** - The icon to show when the tree item is collapsed. Works best with `<awc-icon>`.\n\n### **CSS Properties:**\n - **--indent-size** - The size of the indentation for nested items. _(default: var(--awc-spacing-medium))_\n- **--indent-guide-color** - The color of the indentation line. _(default: var(--awc-color-neutral-200))_\n- **--indent-guide-offset** - The amount of vertical spacing to leave between the top and bottom of the indentation line's starting position. _(default: 0)_\n- **--indent-guide-style** - The style of the indentation line, e.g. solid, dotted, dashed. _(default: solid)_\n- **--indent-guide-width** - The width of the indentation line. _(default: 0)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
          "doc-url": "",
          "attributes": [
            {
              "name": "selection",
              "description": "The selection behavior of the tree. Single selection allows only one node to be selected at a time. Multiple\ndisplays checkboxes and allows more than one node to be selected. Leaf allows only leaf nodes to be selected.",
              "value": {
                "type": "'single' | 'multiple' | 'leaf'",
                "default": "'single'"
              }
            }
          ],
          "slots": [
            { "name": "", "description": "The default slot." },
            {
              "name": "expand-icon",
              "description": "The icon to show when the tree item is expanded. Works best with `<awc-icon>`."
            },
            {
              "name": "collapse-icon",
              "description": "The icon to show when the tree item is collapsed. Works best with `<awc-icon>`."
            }
          ],
          "events": [
            {
              "name": "awc-selection-change",
              "description": "Emitted when a tree item is selected or deselected."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "selection",
                "description": "The selection behavior of the tree. Single selection allows only one node to be selected at a time. Multiple\ndisplays checkboxes and allows more than one node to be selected. Leaf allows only leaf nodes to be selected.",
                "value": { "type": "'single' | 'multiple' | 'leaf'" }
              }
            ],
            "events": [
              {
                "name": "awc-selection-change",
                "description": "Emitted when a tree item is selected or deselected."
              }
            ]
          }
        },
        {
          "name": "awc-tree-item",
          "description": "A tree item serves as a hierarchical node that lives inside a [tree](?path=/docs/components-tree--documentation).\n---\n\n\n### **Events:**\n - **awc-expand** - Emitted when the tree item expands.\n- **awc-after-expand** - Emitted after the tree item expands and all animations are complete.\n- **awc-collapse** - Emitted when the tree item collapses.\n- **awc-after-collapse** - Emitted after the tree item collapses and all animations are complete.\n- **awc-lazy-change** - Emitted when the tree item's lazy state changes.\n- **awc-lazy-load** - Emitted when a lazy item is selected. Use this event to asynchronously load data and append items to the tree before expanding. After appending new items, remove the `lazy` attribute to remove the loading state and update the tree.\n\n### **Methods:**\n - **getChildrenItems({ includeDisabled = true }: _{ includeDisabled?: boolean }_): _AWCTreeItem[]_** - Gets all the nested tree items in this node.\n\n### **Slots:**\n - _default_ - The default slot.\n- **expand-icon** - The icon to show when the tree item is expanded.\n- **collapse-icon** - The icon to show when the tree item is collapsed.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **item** - The tree item's container. This element wraps everything except slotted tree item children.\n- **item--disabled** - Applied when the tree item is disabled.\n- **item--expanded** - Applied when the tree item is expanded.\n- **item--indeterminate** - Applied when the selection is indeterminate.\n- **item--selected** - Applied when the tree item is selected.\n- **indentation** - The tree item's indentation container.\n- **expand-button** - The container that wraps the tree item's expand button and spinner.\n- **spinner** - The spinner that shows when a lazy tree item is in the loading state.\n- **spinner__base** - The spinner's base part.\n- **label** - The tree item's label.\n- **children** - The container that wraps the tree item's nested children.\n- **checkbox** - The checkbox that shows when using multiselect.\n- **checkbox__base** - The checkbox's exported `base` part.\n- **checkbox__control** - The checkbox's exported `control` part.\n- **checkbox__control--checked** - The checkbox's exported `control--checked` part.\n- **checkbox__control--indeterminate** - The checkbox's exported `control--indeterminate` part.\n- **checkbox__checked-icon** - The checkbox's exported `checked-icon` part.\n- **checkbox__indeterminate-icon** - The checkbox's exported `indeterminate-icon` part.\n- **checkbox__label** - The checkbox's exported `label` part.",
          "doc-url": "",
          "attributes": [
            {
              "name": "expanded",
              "description": "Expands the tree item.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "selected",
              "description": "Draws the tree item in a selected state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "Disables the tree item.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "lazy",
              "description": "Enables lazy loading behavior.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "", "description": "The default slot." },
            {
              "name": "expand-icon",
              "description": "The icon to show when the tree item is expanded."
            },
            {
              "name": "collapse-icon",
              "description": "The icon to show when the tree item is collapsed."
            }
          ],
          "events": [
            {
              "name": "awc-expand",
              "description": "Emitted when the tree item expands."
            },
            {
              "name": "awc-after-expand",
              "description": "Emitted after the tree item expands and all animations are complete."
            },
            {
              "name": "awc-collapse",
              "description": "Emitted when the tree item collapses."
            },
            {
              "name": "awc-after-collapse",
              "description": "Emitted after the tree item collapses and all animations are complete."
            },
            {
              "name": "awc-lazy-change",
              "description": "Emitted when the tree item's lazy state changes."
            },
            {
              "name": "awc-lazy-load",
              "description": "Emitted when a lazy item is selected. Use this event to asynchronously load data and append items to the tree before expanding. After appending new items, remove the `lazy` attribute to remove the loading state and update the tree."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "expanded",
                "description": "Expands the tree item.",
                "value": { "type": "boolean" }
              },
              {
                "name": "selected",
                "description": "Draws the tree item in a selected state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "disabled",
                "description": "Disables the tree item.",
                "value": { "type": "boolean" }
              },
              {
                "name": "lazy",
                "description": "Enables lazy loading behavior.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "awc-expand",
                "description": "Emitted when the tree item expands."
              },
              {
                "name": "awc-after-expand",
                "description": "Emitted after the tree item expands and all animations are complete."
              },
              {
                "name": "awc-collapse",
                "description": "Emitted when the tree item collapses."
              },
              {
                "name": "awc-after-collapse",
                "description": "Emitted after the tree item collapses and all animations are complete."
              },
              {
                "name": "awc-lazy-change",
                "description": "Emitted when the tree item's lazy state changes."
              },
              {
                "name": "awc-lazy-load",
                "description": "Emitted when a lazy item is selected. Use this event to asynchronously load data and append items to the tree before expanding. After appending new items, remove the `lazy` attribute to remove the loading state and update the tree."
              }
            ]
          }
        },
        {
          "name": "awc-visually-hidden",
          "description": "The visually hidden utility makes content accessible to assistive devices without displaying it on the screen.\n---\n\n\n### **Slots:**\n - _default_ - The content to be visually hidden.",
          "doc-url": "",
          "attributes": [],
          "slots": [
            { "name": "", "description": "The content to be visually hidden." }
          ],
          "events": [],
          "js": { "properties": [], "events": [] }
        }
      ]
    }
  }
}
