{
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
  "name": "@kdcloudjs/shoelace",
  "version": "1.0.52",
  "description-markup": "markdown",
  "contributions": {
    "html": {
      "elements": [
        {
          "name": "sl-animated-image",
          "description": "A component for displaying animated GIFs and WEBPs that play and pause on interaction.\n---\n\n\n### **Events:**\n - **sl-load** - Emitted when the image loads successfully.\n- **sl-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 `<sl-icon>`.\n- **pause-icon** - Optional pause icon to use instead of the default. Works best with `<sl-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 `<sl-icon>`."
            },
            {
              "name": "pause-icon",
              "description": "Optional pause icon to use instead of the default. Works best with `<sl-icon>`."
            }
          ],
          "events": [
            {
              "name": "sl-load",
              "description": "Emitted when the image loads successfully."
            },
            {
              "name": "sl-error",
              "description": "Emitted when the image fails to load."
            }
          ],
          "js": {
            "properties": [
              { "name": "animatedImage", "type": "HTMLImageElement" },
              { "name": "frozenFrame", "type": "string" },
              { "name": "isLoaded", "type": "boolean" },
              {
                "name": "src",
                "description": "The path to the image to load.",
                "type": "string"
              },
              {
                "name": "alt",
                "description": "A description of the image used by assistive devices.",
                "type": "string"
              },
              {
                "name": "play",
                "description": "Plays the animation. When this attribute is remove, the animation will pause.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-load",
                "description": "Emitted when the image loads successfully."
              },
              {
                "name": "sl-error",
                "description": "Emitted when the image fails to load."
              }
            ]
          }
        },
        {
          "name": "sl-alert",
          "description": "Alerts are used to display important messages inline or as toast notifications.\n---\n\n\n### **Events:**\n - **sl-show** - Emitted when the alert opens.\n- **sl-after-show** - Emitted after the alert opens and all animations are complete.\n- **sl-hide** - Emitted when the alert closes.\n- **sl-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 `<sl-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 `<sl-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' | 'success' | 'neutral' | 'warning' | '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" }
            },
            {
              "name": "countdown",
              "description": "Enables a countdown that indicates the remaining time the alert will be displayed.\nTypically used to indicate the remaining time before a whole app refresh.",
              "value": { "type": "'rtl' | 'ltr' | undefined" }
            }
          ],
          "slots": [
            { "name": "", "description": "The alert's main content." },
            {
              "name": "icon",
              "description": "An icon to show in the alert. Works best with `<sl-icon>`."
            }
          ],
          "events": [
            {
              "name": "sl-show",
              "description": "Emitted when the alert opens."
            },
            {
              "name": "sl-after-show",
              "description": "Emitted after the alert opens and all animations are complete."
            },
            {
              "name": "sl-hide",
              "description": "Emitted when the alert closes."
            },
            {
              "name": "sl-after-hide",
              "description": "Emitted after the alert closes and all animations are complete."
            }
          ],
          "js": {
            "properties": [
              { "name": "base", "type": "HTMLElement" },
              { "name": "countdownElement", "type": "HTMLElement" },
              {
                "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.",
                "type": "boolean"
              },
              {
                "name": "closable",
                "description": "Enables a close button that allows the user to dismiss the alert.",
                "type": "boolean"
              },
              {
                "name": "variant",
                "description": "The alert's theme variant.",
                "type": "'primary' | 'success' | 'neutral' | 'warning' | '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."
              },
              {
                "name": "countdown",
                "description": "Enables a countdown that indicates the remaining time the alert will be displayed.\nTypically used to indicate the remaining time before a whole app refresh.",
                "type": "'rtl' | 'ltr' | undefined"
              }
            ],
            "events": [
              {
                "name": "sl-show",
                "description": "Emitted when the alert opens."
              },
              {
                "name": "sl-after-show",
                "description": "Emitted after the alert opens and all animations are complete."
              },
              {
                "name": "sl-hide",
                "description": "Emitted when the alert closes."
              },
              {
                "name": "sl-after-hide",
                "description": "Emitted after the alert closes and all animations are complete."
              }
            ]
          }
        },
        {
          "name": "sl-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' | 'success' | 'neutral' | 'warning' | '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.",
                "type": "'primary' | 'success' | 'neutral' | 'warning' | 'danger'"
              },
              {
                "name": "pill",
                "description": "Draws a pill-style badge with rounded edges.",
                "type": "boolean"
              },
              {
                "name": "pulse",
                "description": "Makes the badge pulsate to draw attention.",
                "type": "boolean"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-avatar",
          "description": "Avatars are used to represent a person or object.\n---\n\n\n### **Events:**\n - **sl-error** - The image could not be loaded. This may because of an invalid URL, a temporary network condition, or some unknown cause.\n\n### **Slots:**\n - **icon** - The default icon to use when no image or initials are present. Works best with `<sl-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 `<sl-icon>`."
            }
          ],
          "events": [
            {
              "name": "sl-error",
              "description": "The image could not be loaded. This may because of an invalid URL, a temporary network condition, or some unknown cause."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "image",
                "description": "The image source to use for the avatar.",
                "type": "string"
              },
              {
                "name": "label",
                "description": "A label to use to describe the avatar to assistive devices.",
                "type": "string"
              },
              {
                "name": "initials",
                "description": "Initials to use as a fallback when no image is available (1-2 characters max recommended).",
                "type": "string"
              },
              {
                "name": "loading",
                "description": "Indicates how the browser should load the image.",
                "type": "'eager' | 'lazy'"
              },
              {
                "name": "shape",
                "description": "The shape of the avatar.",
                "type": "'circle' | 'square' | 'rounded'"
              }
            ],
            "events": [
              {
                "name": "sl-error",
                "description": "The image could not be loaded. This may because of an invalid URL, a temporary network condition, or some unknown cause."
              }
            ]
          }
        },
        {
          "name": "sl-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 `<sl-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 `<sl-icon>`."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              { "name": "defaultSlot", "type": "HTMLSlotElement" },
              { "name": "separatorSlot", "type": "HTMLSlotElement" },
              {
                "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.",
                "type": "string"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-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 - **sl-cancel** - Emitted when the animation is canceled.\n- **sl-finish** - Emitted when the animation finishes.\n- **sl-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 `<sl-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 Shoelace 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 `<sl-animation>` elements."
            }
          ],
          "events": [
            {
              "name": "sl-cancel",
              "description": "Emitted when the animation is canceled."
            },
            {
              "name": "sl-finish",
              "description": "Emitted when the animation finishes."
            },
            {
              "name": "sl-start",
              "description": "Emitted when the animation starts or restarts."
            }
          ],
          "js": {
            "properties": [
              { "name": "defaultSlot", "type": "Promise<HTMLSlotElement>" },
              {
                "name": "name",
                "description": "The name of the built-in animation to use. For custom animations, use the `keyframes` prop.",
                "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.",
                "type": "boolean"
              },
              {
                "name": "delay",
                "description": "The number of milliseconds to delay the start of the animation.",
                "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)",
                "type": "PlaybackDirection"
              },
              {
                "name": "duration",
                "description": "The number of milliseconds each iteration of the animation takes to complete.",
                "type": "number"
              },
              {
                "name": "easing",
                "description": "The easing function to use for the animation. This can be a Shoelace easing function or a custom easing function\nsuch as `cubic-bezier(0, 1, .76, 1.14)`.",
                "type": "string"
              },
              {
                "name": "endDelay",
                "description": "The number of milliseconds to delay after the active period of an animation sequence.",
                "type": "number"
              },
              {
                "name": "fill",
                "description": "Sets how the animation applies styles to its target before and after its execution.",
                "type": "FillMode"
              },
              {
                "name": "iterations",
                "description": "The number of iterations to run before the animation completes. Defaults to `Infinity`, which loops."
              },
              {
                "name": "iterationStart",
                "description": "The offset at which to start the animation, usually between 0 (start) and 1 (end).",
                "type": "number"
              },
              {
                "name": "keyframes",
                "description": "The keyframes to use for the animation. If this is set, `name` will be ignored.",
                "type": "Keyframe[] | undefined"
              },
              {
                "name": "playbackRate",
                "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.",
                "type": "number"
              },
              {
                "name": "currentTime",
                "description": "Gets and sets the current animation time.",
                "type": "CSSNumberish"
              }
            ],
            "events": [
              {
                "name": "sl-cancel",
                "description": "Emitted when the animation is canceled."
              },
              {
                "name": "sl-finish",
                "description": "Emitted when the animation finishes."
              },
              {
                "name": "sl-start",
                "description": "Emitted when the animation starts or restarts."
              }
            ]
          }
        },
        {
          "name": "sl-breadcrumb-item",
          "description": "Breadcrumb Items are used inside [breadcrumbs](/components/breadcrumb) 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 `<sl-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 `<sl-breadcrumb>` instead."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              { "name": "defaultSlot", "type": "HTMLSlotElement" },
              {
                "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.",
                "type": "string | undefined"
              },
              {
                "name": "target",
                "description": "Tells the browser where to open the link. Only used when `href` is set.",
                "type": "'_blank' | '_parent' | '_self' | '_top' | undefined"
              },
              {
                "name": "rel",
                "description": "The `rel` attribute to use on the link. Only used when `href` is set.",
                "type": "string"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-bubble",
          "description": "Bubble is a chat bubble component commonly used in conversational UIs.\n---\n\n\n### **Events:**\n - **sl-typing-complete** - Emitted when the typing animation finishes rendering all content.\n- **sl-edit-confirm** - Emitted when the user confirms an edit. `event.detail.content` contains the edited text.\n- **sl-edit-cancel** - Emitted when the user cancels editing.\n\n### **Slots:**\n - _default_ - The default slot for bubble content. Used when the `content` attribute is not set.\n- **avatar** - An avatar to display beside the bubble. Works well with `<sl-avatar>`.\n- **header** - Header content displayed above the bubble content area.\n- **footer** - Footer content displayed below the bubble content area.\n- **extra** - Extra content displayed on the opposite side of the avatar.\n- **loading** - Custom loading indicator. Overrides the default loading dots.\n\n### **CSS Properties:**\n - **--sl-bubble-filled-background** - Background color for the `filled` variant (start placement). _(default: undefined)_\n- **--sl-bubble-filled-color** - Text color for the `filled` variant. _(default: undefined)_\n- **--sl-bubble-filled-background-end** - Background color for the `filled` variant when placement is `end`. _(default: undefined)_\n- **--sl-bubble-filled-color-end** - Text color for the `filled` variant when placement is `end`. _(default: undefined)_\n- **--sl-bubble-outlined-background** - Background color for the `outlined` variant. _(default: undefined)_\n- **--sl-bubble-outlined-border-color** - Border color for the `outlined` variant. _(default: undefined)_\n- **--sl-bubble-outlined-color** - Text color for the `outlined` variant. _(default: undefined)_\n- **--sl-bubble-shadow-background** - Background color for the `shadow` variant. _(default: undefined)_\n- **--sl-bubble-shadow-box-shadow** - Box shadow for the `shadow` variant. _(default: undefined)_\n- **--sl-bubble-shadow-color** - Text color for the `shadow` variant. _(default: undefined)_\n- **--sl-bubble-borderless-color** - Text color for the `borderless` variant. _(default: undefined)_\n- **--sl-bubble-loading-dot-color** - Color of the loading indicator dots. _(default: undefined)_\n- **--sl-bubble-cursor-color** - Color of the typing cursor indicator. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's outermost wrapper.\n- **avatar** - The container that wraps the avatar slot.\n- **body** - The body wrapper containing header, content, and footer.\n- **header** - The header container.\n- **content** - The main content bubble area.\n- **footer** - The footer container.\n- **extra** - The extra content container.\n- **loading** - The default loading indicator container.",
          "doc-url": "",
          "attributes": [
            {
              "name": "placement",
              "description": "The position of the bubble. Use `start` for messages from others (left-aligned)\nand `end` for messages from the current user (right-aligned).",
              "value": { "type": "'start' | 'end'", "default": "'start'" }
            },
            {
              "name": "content",
              "description": "The text content to display in the bubble. If omitted, the default slot content is rendered instead.\nWhen `typing` is enabled, the content will be animated character by character.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "variant",
              "description": "The visual style variant of the bubble.\n- `filled`: Solid background (default)\n- `outlined`: Border with transparent background\n- `shadow`: White background with drop shadow\n- `borderless`: No background or border",
              "value": {
                "type": "'filled' | 'outlined' | 'shadow' | 'borderless'",
                "default": "'filled'"
              }
            },
            {
              "name": "shape",
              "description": "The shape of the bubble.\n- `default`: Standard rounded corners\n- `round`: Pill-shaped corners\n- `corner`: Asymmetric corner (chat-style notch)",
              "value": {
                "type": "'default' | 'round' | 'corner'",
                "default": "'default'"
              }
            },
            {
              "name": "loading",
              "description": "When true, shows a loading indicator instead of content.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "typing",
              "description": "Enables a character-by-character typing animation for the `content` attribute.\nOnly works with string content set via the `content` attribute.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "typing-step",
              "description": "Number of characters to reveal per animation step during typing.",
              "value": { "type": "number", "default": "2" }
            },
            {
              "name": "typing-interval",
              "description": "Interval in milliseconds between each typing animation step.",
              "value": { "type": "number", "default": "50" }
            },
            {
              "name": "streaming",
              "description": "Indicates the content is being streamed. When typing is enabled and streaming is true,\nthe typing animation keeps running as new content arrives. The `sl-typing-complete` event\nis only emitted after streaming ends.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "footer-placement",
              "description": "Controls the position of the footer slot relative to the content bubble.\n- `outer-start`: Footer outside the content area, aligned to start (default when placement is `start`)\n- `outer-end`: Footer outside the content area, aligned to end (default when placement is `end`)\n- `inner-start`: Footer inside the content area (shares background), aligned to start\n- `inner-end`: Footer inside the content area (shares background), aligned to end\n\nWhen not set, defaults to `outer-start` if placement is `start`, or `outer-end` if placement is `end`.",
              "value": {
                "type": "'outer-start' | 'outer-end' | 'inner-start' | 'inner-end' | undefined"
              }
            },
            {
              "name": "editable",
              "description": "Enables editing mode on the bubble content. When true, the content area becomes\na contentEditable region with OK and Cancel buttons.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "ok-text",
              "description": "Custom text for the edit confirm button.",
              "value": { "type": "string", "default": "'OK'" }
            },
            {
              "name": "cancel-text",
              "description": "Custom text for the edit cancel button.",
              "value": { "type": "string", "default": "'Cancel'" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "The default slot for bubble content. Used when the `content` attribute is not set."
            },
            {
              "name": "avatar",
              "description": "An avatar to display beside the bubble. Works well with `<sl-avatar>`."
            },
            {
              "name": "header",
              "description": "Header content displayed above the bubble content area."
            },
            {
              "name": "footer",
              "description": "Footer content displayed below the bubble content area."
            },
            {
              "name": "extra",
              "description": "Extra content displayed on the opposite side of the avatar."
            },
            {
              "name": "loading",
              "description": "Custom loading indicator. Overrides the default loading dots."
            }
          ],
          "events": [
            {
              "name": "sl-typing-complete",
              "description": "Emitted when the typing animation finishes rendering all content."
            },
            {
              "name": "sl-edit-confirm",
              "description": "Emitted when the user confirms an edit. `event.detail.content` contains the edited text."
            },
            {
              "name": "sl-edit-cancel",
              "description": "Emitted when the user cancels editing."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "placement",
                "description": "The position of the bubble. Use `start` for messages from others (left-aligned)\nand `end` for messages from the current user (right-aligned).",
                "type": "'start' | 'end'"
              },
              {
                "name": "content",
                "description": "The text content to display in the bubble. If omitted, the default slot content is rendered instead.\nWhen `typing` is enabled, the content will be animated character by character.",
                "type": "string"
              },
              {
                "name": "variant",
                "description": "The visual style variant of the bubble.\n- `filled`: Solid background (default)\n- `outlined`: Border with transparent background\n- `shadow`: White background with drop shadow\n- `borderless`: No background or border",
                "type": "'filled' | 'outlined' | 'shadow' | 'borderless'"
              },
              {
                "name": "shape",
                "description": "The shape of the bubble.\n- `default`: Standard rounded corners\n- `round`: Pill-shaped corners\n- `corner`: Asymmetric corner (chat-style notch)",
                "type": "'default' | 'round' | 'corner'"
              },
              {
                "name": "loading",
                "description": "When true, shows a loading indicator instead of content.",
                "type": "boolean"
              },
              {
                "name": "typing",
                "description": "Enables a character-by-character typing animation for the `content` attribute.\nOnly works with string content set via the `content` attribute.",
                "type": "boolean"
              },
              {
                "name": "typingStep",
                "description": "Number of characters to reveal per animation step during typing.",
                "type": "number"
              },
              {
                "name": "typingInterval",
                "description": "Interval in milliseconds between each typing animation step.",
                "type": "number"
              },
              {
                "name": "streaming",
                "description": "Indicates the content is being streamed. When typing is enabled and streaming is true,\nthe typing animation keeps running as new content arrives. The `sl-typing-complete` event\nis only emitted after streaming ends.",
                "type": "boolean"
              },
              {
                "name": "footerPlacement",
                "description": "Controls the position of the footer slot relative to the content bubble.\n- `outer-start`: Footer outside the content area, aligned to start (default when placement is `start`)\n- `outer-end`: Footer outside the content area, aligned to end (default when placement is `end`)\n- `inner-start`: Footer inside the content area (shares background), aligned to start\n- `inner-end`: Footer inside the content area (shares background), aligned to end\n\nWhen not set, defaults to `outer-start` if placement is `start`, or `outer-end` if placement is `end`.",
                "type": "'outer-start' | 'outer-end' | 'inner-start' | 'inner-end' | undefined"
              },
              {
                "name": "editable",
                "description": "Enables editing mode on the bubble content. When true, the content area becomes\na contentEditable region with OK and Cancel buttons.",
                "type": "boolean"
              },
              {
                "name": "okText",
                "description": "Custom text for the edit confirm button.",
                "type": "string"
              },
              {
                "name": "cancelText",
                "description": "Custom text for the edit cancel button.",
                "type": "string"
              }
            ],
            "events": [
              {
                "name": "sl-typing-complete",
                "description": "Emitted when the typing animation finishes rendering all content."
              },
              {
                "name": "sl-edit-confirm",
                "description": "Emitted when the user confirms an edit. `event.detail.content` contains the edited text."
              },
              {
                "name": "sl-edit-cancel",
                "description": "Emitted when the user cancels editing."
              }
            ]
          }
        },
        {
          "name": "sl-button",
          "description": "Buttons represent actions that are available to the user.\n---\n\n\n### **Events:**\n - **sl-blur** - Emitted when the button loses focus.\n- **sl-focus** - Emitted when the button gains focus.\n- **sl-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 `<sl-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' | 'primary' | 'success' | 'neutral' | 'warning' | 'danger' | 'text'",
                "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": "pill",
              "description": "Draws a pill-style button with rounded edges.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "circle",
              "description": "Draws a circular icon button. When this attribute is present, the button expects a single `<sl-icon>` in the\ndefault slot.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "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": "sl-blur",
              "description": "Emitted when the button loses focus."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the button gains focus."
            },
            {
              "name": "sl-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "button",
                "type": "HTMLButtonElement | HTMLLinkElement"
              },
              { "name": "invalid", "type": "boolean" },
              { "name": "title", "type": "string" },
              {
                "name": "variant",
                "description": "The button's theme variant.",
                "type": "'default' | 'primary' | 'success' | 'neutral' | 'warning' | 'danger' | 'text'"
              },
              {
                "name": "size",
                "description": "The button's size.",
                "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.",
                "type": "boolean"
              },
              {
                "name": "disabled",
                "description": "Disables the button.",
                "type": "boolean"
              },
              {
                "name": "loading",
                "description": "Draws the button in a loading state.",
                "type": "boolean"
              },
              {
                "name": "outline",
                "description": "Draws an outlined button.",
                "type": "boolean"
              },
              {
                "name": "pill",
                "description": "Draws a pill-style button with rounded edges.",
                "type": "boolean"
              },
              {
                "name": "circle",
                "description": "Draws a circular icon button. When this attribute is present, the button expects a single `<sl-icon>` in the\ndefault slot.",
                "type": "boolean"
              },
              {
                "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.",
                "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.",
                "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.",
                "type": "string"
              },
              {
                "name": "href",
                "description": "When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.",
                "type": "string"
              },
              {
                "name": "target",
                "description": "Tells the browser where to open the link. Only used when `href` is present.",
                "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.",
                "type": "string"
              },
              {
                "name": "download",
                "description": "Tells the browser to download the linked file as this filename. Only used when `href` is present.",
                "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.",
                "type": "string"
              },
              {
                "name": "formAction",
                "description": "Used to override the form owner's `action` attribute.",
                "type": "string"
              },
              {
                "name": "formEnctype",
                "description": "Used to override the form owner's `enctype` attribute.",
                "type": "'application/x-www-form-urlencoded' | 'multipart/form-data' | 'text/plain'"
              },
              {
                "name": "formMethod",
                "description": "Used to override the form owner's `method` attribute.",
                "type": "'post' | 'get'"
              },
              {
                "name": "formNoValidate",
                "description": "Used to override the form owner's `novalidate` attribute.",
                "type": "boolean"
              },
              {
                "name": "formTarget",
                "description": "Used to override the form owner's `target` attribute.",
                "type": "'_self' | '_blank' | '_parent' | '_top' | string"
              },
              {
                "name": "validity",
                "description": "Gets the validity state object"
              },
              {
                "name": "validationMessage",
                "description": "Gets the validation message"
              }
            ],
            "events": [
              {
                "name": "sl-blur",
                "description": "Emitted when the button loses focus."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the button gains focus."
              },
              {
                "name": "sl-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "sl-button-group",
          "description": "Button groups can be used to group related buttons into sections.\n---\n\n\n### **Slots:**\n - _default_ - One or more `<sl-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 `<sl-button>` elements to display in the button group."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              { "name": "defaultSlot", "type": "HTMLSlotElement" },
              { "name": "disableRole", "type": "boolean" },
              {
                "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.",
                "type": "string"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-calendar",
          "description": "日历组件，用于按日历形式展示数据，支持全屏和卡片模式\n---\n\n\n### **Events:**\n - **sl-panel-change** - 当面板切换时触发\n- **sl-calendar-change** - 当日期发生变化时触发\n- **sl-calendar-select** - 当日期被选中时触发，包含来源信息\n\n### **CSS Properties:**\n - **--sl-calendar-item-active-bg** - Background color of selected date _(default: undefined)_\n- **--sl-calendar-full-bg** - Background color of full calendar _(default: undefined)_\n- **--sl-calendar-full-panel-bg** - Background color of calendar panel _(default: undefined)_\n- **--sl-calendar-mini-content-height** - Height of mini calendar content _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **header** - The calendar header.\n- **header-left** - The header left section (year/month selects).\n- **header-right** - The header right section (mode switch).\n- **body** - The calendar body.\n- **table** - The calendar table.\n- **cell** - Individual calendar cells.\n- **cell-inner** - Inner content of calendar cells.\n- **date-value** - The date number display.\n- **date-content** - The custom content area in cells.",
          "doc-url": "",
          "attributes": [
            {
              "name": "mode",
              "description": "The display mode: 'month' shows days, 'year' shows months.",
              "value": { "type": "CalendarMode", "default": "'month'" }
            },
            {
              "name": "fullscreen",
              "description": "Whether to display in fullscreen mode. Set to false for card mode.",
              "value": { "type": "boolean", "default": "true" }
            }
          ],
          "events": [
            {
              "name": "sl-panel-change",
              "type": "CustomEvent",
              "description": "当面板切换时触发"
            },
            {
              "name": "sl-calendar-change",
              "type": "CustomEvent",
              "description": "当日期发生变化时触发"
            },
            {
              "name": "sl-calendar-select",
              "type": "CustomEvent",
              "description": "当日期被选中时触发，包含来源信息"
            }
          ],
          "js": {
            "properties": [
              {
                "name": "value",
                "description": "The currently selected date.",
                "type": "Date"
              },
              {
                "name": "defaultValue",
                "description": "The default value when no value is set.",
                "type": "Date | undefined"
              },
              {
                "name": "mode",
                "description": "The display mode: 'month' shows days, 'year' shows months.",
                "type": "CalendarMode"
              },
              {
                "name": "fullscreen",
                "description": "Whether to display in fullscreen mode. Set to false for card mode.",
                "type": "boolean"
              },
              {
                "name": "disabledDate",
                "description": "A function to determine if a date should be disabled.",
                "type": "(date: Date) => boolean | undefined"
              },
              {
                "name": "dateCellRender",
                "description": "Custom render function for date cells. Return content to append to the cell.",
                "type": "(date: Date) => TemplateResult | HTMLElement | string | undefined | undefined"
              },
              {
                "name": "dateFullCellRender",
                "description": "Custom render function to replace the entire date cell.",
                "type": "(\n    date: Date\n  ) => TemplateResult | HTMLElement | string | undefined | undefined"
              },
              {
                "name": "monthCellRender",
                "description": "Custom render function for month cells (in year mode).",
                "type": "(date: Date) => TemplateResult | HTMLElement | string | undefined | undefined"
              },
              {
                "name": "monthFullCellRender",
                "description": "Custom render function to replace entire month cell.",
                "type": "(\n    date: Date\n  ) => TemplateResult | HTMLElement | string | undefined | undefined"
              },
              {
                "name": "getListData",
                "description": "Shorthand for providing list data to display in cells.",
                "type": "(date: Date) => ListDataItem[] | undefined"
              },
              {
                "name": "validRange",
                "description": "Valid date range [start, end]. Dates outside this range will be disabled.",
                "type": "[Date, Date] | undefined"
              },
              {
                "name": "headerRender",
                "description": "Custom header render function for complete header customization.",
                "type": "(props: {\n    value: Date;\n    type: CalendarMode;\n    onChange: (date: Date) => void;\n    onTypeChange: (type: CalendarMode) => void;\n  }) => TemplateResult | HTMLElement | undefined"
              }
            ],
            "events": [
              {
                "name": "sl-panel-change",
                "type": "CustomEvent",
                "description": "当面板切换时触发"
              },
              {
                "name": "sl-calendar-change",
                "type": "CustomEvent",
                "description": "当日期发生变化时触发"
              },
              {
                "name": "sl-calendar-select",
                "type": "CustomEvent",
                "description": "当日期被选中时触发，包含来源信息"
              }
            ]
          }
        },
        {
          "name": "sl-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": [],
          "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": [], "events": [] }
        },
        {
          "name": "sl-carousel-item",
          "description": "A carousel item represent a slide within a [carousel](/components/carousel).\n---\n\n\n### **Slots:**\n - _default_ - The carousel item's content..\n\n### **CSS Properties:**\n - **--aspect-ratio** - The slide's aspect ratio. Inherited from the carousel by default. _(default: undefined)_",
          "doc-url": "",
          "attributes": [],
          "slots": [
            { "name": "", "description": "The carousel item's content.." }
          ],
          "events": [],
          "js": { "properties": [], "events": [] }
        },
        {
          "name": "sl-carousel",
          "description": "Carousels display an arbitrary number of content slides along a horizontal or vertical axis.\n---\n\n\n### **Events:**\n - **sl-slide-change** - Emitted when the active slide changes.\n\n### **Methods:**\n - **previous(behavior: _ScrollBehavior_)** - Move the carousel backward by `slides-per-move` slides.\n- **next(behavior: _ScrollBehavior_)** - Move the carousel forward by `slides-per-move` slides.\n- **goToSlide(index: _number_, behavior: _ScrollBehavior_)** - Scrolls the carousel to the slide specified by `index`.\n\n### **Slots:**\n - _default_ - The carousel's main content, one or more `<sl-carousel-item>` elements.\n- **next-icon** - Optional next icon to use instead of the default. Works best with `<sl-icon>`.\n- **previous-icon** - Optional previous icon to use instead of the default. Works best with `<sl-icon>`.\n\n### **CSS Properties:**\n - **--slide-gap** - The space between each slide. _(default: undefined)_\n- **--aspect-ratio** - The aspect ratio of each slide. _(default: 16/9)_\n- **--scroll-hint** - The amount of padding to apply to the scroll area, allowing adjacent slides to become partially visible as a scroll hint. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The carousel's internal wrapper.\n- **scroll-container** - The scroll container that wraps the slides.\n- **pagination** - The pagination indicators wrapper.\n- **pagination-item** - The pagination indicator.\n- **pagination-item--active** - Applied when the item is active.\n- **navigation** - The navigation wrapper.\n- **navigation-button** - The navigation button.\n- **navigation-button--previous** - Applied to the previous button.\n- **navigation-button--next** - Applied to the next button.",
          "doc-url": "",
          "attributes": [
            {
              "name": "loop",
              "description": "When set, allows the user to navigate the carousel in the same direction indefinitely.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "navigation",
              "description": "When set, show the carousel's navigation.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "pagination",
              "description": "When set, show the carousel's pagination indicators.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "autoplay",
              "description": "When set, the slides will scroll automatically when the user is not interacting with them.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "autoplay-interval",
              "description": "Specifies the amount of time, in milliseconds, between each automatic scroll.",
              "value": { "type": "number", "default": "3000" }
            },
            {
              "name": "slides-per-page",
              "description": "Specifies how many slides should be shown at a given time.",
              "value": { "type": "number", "default": "1" }
            },
            {
              "name": "slides-per-move",
              "description": "Specifies the number of slides the carousel will advance when scrolling, useful when specifying a `slides-per-page`\ngreater than one. It can't be higher than `slides-per-page`.",
              "value": { "type": "number", "default": "1" }
            },
            {
              "name": "orientation",
              "description": "Specifies the orientation in which the carousel will lay out.",
              "value": {
                "type": "'horizontal' | 'vertical'",
                "default": "'horizontal'"
              }
            },
            {
              "name": "mouse-dragging",
              "description": "When set, it is possible to scroll through the slides by dragging them with the mouse.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "The carousel's main content, one or more `<sl-carousel-item>` elements."
            },
            {
              "name": "next-icon",
              "description": "Optional next icon to use instead of the default. Works best with `<sl-icon>`."
            },
            {
              "name": "previous-icon",
              "description": "Optional previous icon to use instead of the default. Works best with `<sl-icon>`."
            }
          ],
          "events": [
            {
              "name": "sl-slide-change",
              "type": "{ index: number, slide: SlCarouselItem }",
              "description": "Emitted when the active slide changes."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "loop",
                "description": "When set, allows the user to navigate the carousel in the same direction indefinitely.",
                "type": "boolean"
              },
              {
                "name": "navigation",
                "description": "When set, show the carousel's navigation.",
                "type": "boolean"
              },
              {
                "name": "pagination",
                "description": "When set, show the carousel's pagination indicators.",
                "type": "boolean"
              },
              {
                "name": "autoplay",
                "description": "When set, the slides will scroll automatically when the user is not interacting with them.",
                "type": "boolean"
              },
              {
                "name": "autoplayInterval",
                "description": "Specifies the amount of time, in milliseconds, between each automatic scroll.",
                "type": "number"
              },
              {
                "name": "slidesPerPage",
                "description": "Specifies how many slides should be shown at a given time.",
                "type": "number"
              },
              {
                "name": "slidesPerMove",
                "description": "Specifies the number of slides the carousel will advance when scrolling, useful when specifying a `slides-per-page`\ngreater than one. It can't be higher than `slides-per-page`.",
                "type": "number"
              },
              {
                "name": "orientation",
                "description": "Specifies the orientation in which the carousel will lay out.",
                "type": "'horizontal' | 'vertical'"
              },
              {
                "name": "mouseDragging",
                "description": "When set, it is possible to scroll through the slides by dragging them with the mouse.",
                "type": "boolean"
              },
              { "name": "scrollContainer", "type": "HTMLElement" },
              { "name": "paginationContainer", "type": "HTMLElement" },
              { "name": "activeSlide", "type": "number" },
              { "name": "scrolling", "type": "boolean" },
              { "name": "dragging", "type": "boolean" }
            ],
            "events": [
              {
                "name": "sl-slide-change",
                "type": "{ index: number, slide: SlCarouselItem }",
                "description": "Emitted when the active slide changes."
              }
            ]
          }
        },
        {
          "name": "sl-cascader",
          "description": "Cascader is a cascade selection component that allows users to select from a set of hierarchical options.\n---\n\n\n### **Events:**\n - **sl-change** - Emitted when the control's value changes.\n- **sl-clear** - Emitted when the control's value is cleared.\n- **sl-input** - Emitted when the control receives input.\n- **sl-focus** - Emitted when the control gains focus.\n- **sl-blur** - Emitted when the control loses focus.\n- **sl-show** - Emitted when the cascader's menu opens.\n- **sl-after-show** - Emitted after the cascader's menu opens and all animations are complete.\n- **sl-hide** - Emitted when the cascader's menu closes.\n- **sl-after-hide** - Emitted after the cascader's menu closes and all animations are complete.\n\n### **Slots:**\n - **label** - The input'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- **prefix** - Used to prepend a presentational icon or similar element to the combobox.\n- **suffix** - Used to append 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.\n- **not-found** - Content shown when no options match.\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 cascader's wrapper.\n- **form-control-help-text** - The help text's wrapper.\n- **combobox** - The container that wraps the prefix, suffix, combobox, clear icon, and expand button.\n- **prefix** - The container that wraps the prefix slot.\n- **suffix** - The container that wraps the suffix slot.\n- **display-input** - The element that displays the selected option's label.\n- **search-input** - The search input element when showSearch is enabled.\n- **menu** - The cascader menu container.\n- **menu-column** - Each column in the cascader menu.\n- **menu-item** - Each item in the cascader menu.\n- **tags** - The container that houses option tags when `multiple` is used.\n- **tag** - The individual tags that represent each selected option.\n- **clear-button** - The clear button.\n- **expand-icon** - The container that wraps the expand icon.\n- **not-found** - The empty state content container.",
          "doc-url": "",
          "attributes": [
            {
              "name": "name",
              "description": "The name of the cascader, submitted as a name/value pair with form data.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "value",
              "description": "The default value of the form control.",
              "value": {
                "type": "(string | number)[] | (string | number)[][]",
                "default": "[]"
              }
            },
            {
              "name": "size",
              "description": "The cascader's size.",
              "value": {
                "type": "'small' | 'medium' | 'large'",
                "default": "'medium'"
              }
            },
            {
              "name": "placeholder",
              "description": "Placeholder text to show as a hint when the cascader is empty.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "multiple",
              "description": "Support multiple or not.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "Whether disabled select.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "panel-disabled",
              "description": "Whether to disable all options in the panel. The panel can still open/close, but options are not interactive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "allow-clear",
              "description": "Show clear button. Supports boolean.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "open",
              "description": "Indicates whether or not the cascader is open.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "default-open",
              "description": "Initial visible of cascader popup.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "hoist",
              "description": "Enable this option to prevent the menu from being clipped when the component is placed inside a container with `overflow: auto|scroll`.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "label",
              "description": "The cascader's label. If you need to display HTML, use the `label` slot instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "placement",
              "description": "Use preset popup align config.",
              "value": {
                "type": "'bottomLeft' | 'bottomRight' | 'topLeft' | 'topRight'",
                "default": "'bottomLeft'"
              }
            },
            {
              "name": "help-text",
              "description": "The cascader'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.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "required",
              "description": "The cascader's required attribute.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "options",
              "description": "The data options of cascade.",
              "value": { "type": "CascaderOption[]", "default": "[]" }
            },
            {
              "name": "field-names",
              "description": "Custom field name for label, value and children.",
              "value": {
                "type": "FieldNames",
                "default": "{ label: 'label', value: 'value', children: 'children' }"
              }
            },
            {
              "name": "expand-trigger",
              "description": "Expand current item when click or hover, one of 'click' or 'hover'.",
              "value": { "type": "'click' | 'hover'", "default": "'click'" }
            },
            {
              "name": "change-on-select",
              "description": "Change value on each selection if set to true.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "separator",
              "description": "Separator used to join the selected path labels for display.",
              "value": { "type": "string", "default": "' / '" }
            },
            {
              "name": "show-full-path",
              "description": "Whether to show the full path in the input.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "not-found-content",
              "description": "Specify content to show when no result matches.",
              "value": { "type": "string", "default": "'Not Found'" }
            },
            {
              "name": "variant",
              "description": "Variants of selector.",
              "value": {
                "type": "'outlined' | 'borderless' | 'filled' | 'underlined'",
                "default": "'outlined'"
              }
            },
            {
              "name": "status",
              "description": "Set validation status.",
              "value": { "type": "'error' | 'warning' | ''", "default": "''" }
            },
            {
              "name": "max-tag-count",
              "description": "Max tag count to show in multiple mode.",
              "value": { "type": "number | undefined", "default": "undefined" }
            },
            {
              "name": "max-tag-placeholder",
              "description": "Placeholder for not showing tags when exceeding maxTagCount.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "max-tag-text-length",
              "description": "Max tag text length to show.",
              "value": { "type": "number | undefined", "default": "undefined" }
            },
            {
              "name": "show-checked-strategy",
              "description": "Define how to show selected items when multiple is true.\n'show-parent': Show parent node when all children are selected.\n'show-child': Only show child nodes.",
              "value": {
                "type": "'show-parent' | 'show-child'",
                "default": "'show-parent'"
              }
            }
          ],
          "slots": [
            {
              "name": "label",
              "description": "The input'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."
            },
            {
              "name": "prefix",
              "description": "Used to prepend a presentational icon or similar element to the combobox."
            },
            {
              "name": "suffix",
              "description": "Used to append 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."
            },
            {
              "name": "not-found",
              "description": "Content shown when no options match."
            }
          ],
          "events": [
            {
              "name": "sl-change",
              "description": "Emitted when the control's value changes."
            },
            {
              "name": "sl-clear",
              "description": "Emitted when the control's value is cleared."
            },
            {
              "name": "sl-input",
              "description": "Emitted when the control receives input."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the control gains focus."
            },
            {
              "name": "sl-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "sl-show",
              "description": "Emitted when the cascader's menu opens."
            },
            {
              "name": "sl-after-show",
              "description": "Emitted after the cascader's menu opens and all animations are complete."
            },
            {
              "name": "sl-hide",
              "description": "Emitted when the cascader's menu closes."
            },
            {
              "name": "sl-after-hide",
              "description": "Emitted after the cascader's menu closes and all animations are complete."
            }
          ],
          "js": {
            "properties": [
              { "name": "popup", "type": "SlPopup" },
              { "name": "combobox", "type": "HTMLElement" },
              { "name": "displayInput", "type": "HTMLInputElement" },
              { "name": "searchInput", "type": "HTMLInputElement" },
              { "name": "valueInput", "type": "HTMLInputElement" },
              { "name": "menu", "type": "HTMLElement" },
              { "name": "displayLabel", "type": "string" },
              {
                "name": "name",
                "description": "The name of the cascader, submitted as a name/value pair with form data.",
                "type": "string"
              },
              {
                "name": "value",
                "description": "The current value of the cascader.\nIn single mode: an array of values representing the selected path, e.g. ['zhejiang', 'hangzhou'].\nIn multiple mode: an array of arrays, e.g. [['zhejiang', 'hangzhou'], ['jiangsu', 'nanjing']].",
                "type": "(string | number)[] | (string | number)[][]"
              },
              {
                "name": "defaultValue",
                "description": "The default value of the form control.",
                "type": "(string | number)[] | (string | number)[][]"
              },
              {
                "name": "size",
                "description": "The cascader's size.",
                "type": "'small' | 'medium' | 'large'"
              },
              {
                "name": "placeholder",
                "description": "Placeholder text to show as a hint when the cascader is empty.",
                "type": "string"
              },
              {
                "name": "multiple",
                "description": "Support multiple or not.",
                "type": "boolean"
              },
              {
                "name": "disabled",
                "description": "Whether disabled select.",
                "type": "boolean"
              },
              {
                "name": "panelDisabled",
                "description": "Whether to disable all options in the panel. The panel can still open/close, but options are not interactive.",
                "type": "boolean"
              },
              {
                "name": "allowClear",
                "description": "Show clear button. Supports boolean.",
                "type": "boolean"
              },
              {
                "name": "open",
                "description": "Indicates whether or not the cascader is open.",
                "type": "boolean"
              },
              {
                "name": "defaultOpen",
                "description": "Initial visible of cascader popup.",
                "type": "boolean"
              },
              {
                "name": "hoist",
                "description": "Enable this option to prevent the menu from being clipped when the component is placed inside a container with `overflow: auto|scroll`.",
                "type": "boolean"
              },
              {
                "name": "label",
                "description": "The cascader's label. If you need to display HTML, use the `label` slot instead.",
                "type": "string"
              },
              {
                "name": "placement",
                "description": "Use preset popup align config.",
                "type": "'bottomLeft' | 'bottomRight' | 'topLeft' | 'topRight'"
              },
              {
                "name": "helpText",
                "description": "The cascader's help text. If you need to display HTML, use the `help-text` slot instead.",
                "type": "string"
              },
              {
                "name": "form",
                "description": "By default, form controls are associated with the nearest containing `<form>` element.",
                "type": "string"
              },
              {
                "name": "required",
                "description": "The cascader's required attribute.",
                "type": "boolean"
              },
              {
                "name": "options",
                "description": "The data options of cascade.",
                "type": "CascaderOption[]"
              },
              {
                "name": "fieldNames",
                "description": "Custom field name for label, value and children.",
                "type": "FieldNames"
              },
              {
                "name": "expandTrigger",
                "description": "Expand current item when click or hover, one of 'click' or 'hover'.",
                "type": "'click' | 'hover'"
              },
              {
                "name": "changeOnSelect",
                "description": "Change value on each selection if set to true.",
                "type": "boolean"
              },
              {
                "name": "separator",
                "description": "Separator used to join the selected path labels for display.",
                "type": "string"
              },
              {
                "name": "showFullPath",
                "description": "Whether to show the full path in the input.",
                "type": "boolean"
              },
              {
                "name": "showSearch",
                "description": "Whether show search input in single mode. Can be boolean or a ShowSearchConfig object (set via JS property).",
                "type": "boolean | ShowSearchConfig"
              },
              {
                "name": "notFoundContent",
                "description": "Specify content to show when no result matches.",
                "type": "string"
              },
              {
                "name": "variant",
                "description": "Variants of selector.",
                "type": "'outlined' | 'borderless' | 'filled' | 'underlined'"
              },
              {
                "name": "status",
                "description": "Set validation status.",
                "type": "'error' | 'warning' | ''"
              },
              {
                "name": "loadData",
                "description": "To load option lazily. Cannot work with showSearch.",
                "type": "LoadDataFn | null"
              },
              {
                "name": "displayRender",
                "description": "The render function of displaying selected options. Set via JS property. Default: labels => labels.join(separator).",
                "type": "DisplayRenderFn | null"
              },
              {
                "name": "optionRender",
                "description": "Custom render for each option in the dropdown menu. Set via JS property.",
                "type": "OptionRenderFn | null"
              },
              {
                "name": "maxTagCount",
                "description": "Max tag count to show in multiple mode.",
                "type": "number | undefined"
              },
              {
                "name": "maxTagPlaceholder",
                "description": "Placeholder for not showing tags when exceeding maxTagCount.",
                "type": "string"
              },
              {
                "name": "maxTagTextLength",
                "description": "Max tag text length to show.",
                "type": "number | undefined"
              },
              {
                "name": "showCheckedStrategy",
                "description": "Define how to show selected items when multiple is true.\n'show-parent': Show parent node when all children are selected.\n'show-child': Only show child nodes.",
                "type": "'show-parent' | 'show-child'"
              },
              { "name": "validity" },
              { "name": "validationMessage" }
            ],
            "events": [
              {
                "name": "sl-change",
                "description": "Emitted when the control's value changes."
              },
              {
                "name": "sl-clear",
                "description": "Emitted when the control's value is cleared."
              },
              {
                "name": "sl-input",
                "description": "Emitted when the control receives input."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the control gains focus."
              },
              {
                "name": "sl-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "sl-show",
                "description": "Emitted when the cascader's menu opens."
              },
              {
                "name": "sl-after-show",
                "description": "Emitted after the cascader's menu opens and all animations are complete."
              },
              {
                "name": "sl-hide",
                "description": "Emitted when the cascader's menu closes."
              },
              {
                "name": "sl-after-hide",
                "description": "Emitted after the cascader's menu closes and all animations are complete."
              }
            ]
          }
        },
        {
          "name": "sl-checkbox",
          "description": "Checkboxes allow the user to toggle an option on or off.\n---\n\n\n### **Events:**\n - **sl-blur** - Emitted when the checkbox loses focus.\n- **sl-change** - Emitted when the checked state changes.\n- **sl-focus** - Emitted when the checkbox gains focus.\n- **sl-input** - Emitted when the checkbox receives input.\n- **sl-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 `<sl-icon>` element.\n- **indeterminate-icon** - The indeterminate icon, an `<sl-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": "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": "sl-blur",
              "description": "Emitted when the checkbox loses focus."
            },
            {
              "name": "sl-change",
              "description": "Emitted when the checked state changes."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the checkbox gains focus."
            },
            {
              "name": "sl-input",
              "description": "Emitted when the checkbox receives input."
            },
            {
              "name": "sl-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              { "name": "input", "type": "HTMLInputElement" },
              { "name": "title", "type": "string" },
              {
                "name": "name",
                "description": "The name of the checkbox, submitted as a name/value pair with form data.",
                "type": "string"
              },
              {
                "name": "value",
                "description": "The current value of the checkbox, submitted as a name/value pair with form data.",
                "type": "string"
              },
              {
                "name": "size",
                "description": "The checkbox's size.",
                "type": "'small' | 'medium' | 'large'"
              },
              {
                "name": "disabled",
                "description": "Disables the checkbox.",
                "type": "boolean"
              },
              {
                "name": "checked",
                "description": "Draws the checkbox in a checked state.",
                "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.",
                "type": "boolean"
              },
              {
                "name": "defaultChecked",
                "description": "The default value of the form control. Primarily used for resetting the form control.",
                "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.",
                "type": "string"
              },
              {
                "name": "required",
                "description": "Makes the checkbox a required field.",
                "type": "boolean"
              },
              {
                "name": "helpText",
                "description": "The checkbox's help text. If you need to display HTML, use the `help-text` slot instead.",
                "type": "string"
              },
              {
                "name": "validity",
                "description": "Gets the validity state object"
              },
              {
                "name": "validationMessage",
                "description": "Gets the validation message"
              }
            ],
            "events": [
              {
                "name": "sl-blur",
                "description": "Emitted when the checkbox loses focus."
              },
              {
                "name": "sl-change",
                "description": "Emitted when the checked state changes."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the checkbox gains focus."
              },
              {
                "name": "sl-input",
                "description": "Emitted when the checkbox receives input."
              },
              {
                "name": "sl-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "sl-col",
          "description": "Col component for grid layout system.\n---\n\n\n### **Slots:**\n - _default_ - The default slot for content.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
          "doc-url": "",
          "attributes": [
            {
              "name": "span",
              "description": "Number of cells to span (out of 24)",
              "value": { "type": "ColSpanType | undefined" }
            },
            {
              "name": "offset",
              "description": "Number of cells to offset from the left",
              "value": { "type": "ColSpanType | undefined" }
            },
            {
              "name": "order",
              "description": "Order of the column",
              "value": { "type": "ColSpanType | undefined" }
            },
            {
              "name": "push",
              "description": "Number of cells to push from the left",
              "value": { "type": "ColSpanType | undefined" }
            },
            {
              "name": "pull",
              "description": "Number of cells to pull from the right",
              "value": { "type": "ColSpanType | undefined" }
            },
            {
              "name": "flex",
              "description": "Flex layout style",
              "value": { "type": "FlexType | undefined" }
            },
            {
              "name": "xs",
              "description": "Responsive config for xs screens (< 576px)",
              "value": { "type": "ColSpanType | ColSize | undefined" }
            },
            {
              "name": "sm",
              "description": "Responsive config for sm screens (≥ 576px)",
              "value": { "type": "ColSpanType | ColSize | undefined" }
            },
            {
              "name": "md",
              "description": "Responsive config for md screens (≥ 768px)",
              "value": { "type": "ColSpanType | ColSize | undefined" }
            },
            {
              "name": "lg",
              "description": "Responsive config for lg screens (≥ 992px)",
              "value": { "type": "ColSpanType | ColSize | undefined" }
            },
            {
              "name": "xl",
              "description": "Responsive config for xl screens (≥ 1200px)",
              "value": { "type": "ColSpanType | ColSize | undefined" }
            },
            {
              "name": "xxl",
              "description": "Responsive config for xxl screens (≥ 1600px)",
              "value": { "type": "ColSpanType | ColSize | undefined" }
            }
          ],
          "slots": [
            { "name": "", "description": "The default slot for content." }
          ],
          "events": [],
          "js": {
            "properties": [
              { "name": "rowContext", "type": "RowContext" },
              {
                "name": "span",
                "description": "Number of cells to span (out of 24)",
                "type": "ColSpanType | undefined"
              },
              {
                "name": "offset",
                "description": "Number of cells to offset from the left",
                "type": "ColSpanType | undefined"
              },
              {
                "name": "order",
                "description": "Order of the column",
                "type": "ColSpanType | undefined"
              },
              {
                "name": "push",
                "description": "Number of cells to push from the left",
                "type": "ColSpanType | undefined"
              },
              {
                "name": "pull",
                "description": "Number of cells to pull from the right",
                "type": "ColSpanType | undefined"
              },
              {
                "name": "flex",
                "description": "Flex layout style",
                "type": "FlexType | undefined"
              },
              {
                "name": "xs",
                "description": "Responsive config for xs screens (< 576px)",
                "type": "ColSpanType | ColSize | undefined"
              },
              {
                "name": "sm",
                "description": "Responsive config for sm screens (≥ 576px)",
                "type": "ColSpanType | ColSize | undefined"
              },
              {
                "name": "md",
                "description": "Responsive config for md screens (≥ 768px)",
                "type": "ColSpanType | ColSize | undefined"
              },
              {
                "name": "lg",
                "description": "Responsive config for lg screens (≥ 992px)",
                "type": "ColSpanType | ColSize | undefined"
              },
              {
                "name": "xl",
                "description": "Responsive config for xl screens (≥ 1200px)",
                "type": "ColSpanType | ColSize | undefined"
              },
              {
                "name": "xxl",
                "description": "Responsive config for xxl screens (≥ 1600px)",
                "type": "ColSpanType | ColSize | undefined"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-color-picker",
          "description": "Color pickers allow the user to select a color.\n---\n\n\n### **Events:**\n - **sl-blur** - Emitted when the color picker loses focus.\n- **sl-change** - Emitted when the color picker's value changes.\n- **sl-focus** - Emitted when the color picker receives focus.\n- **sl-input** - Emitted when the color picker receives input.\n- **sl-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": "sl-blur",
              "description": "Emitted when the color picker loses focus."
            },
            {
              "name": "sl-change",
              "description": "Emitted when the color picker's value changes."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the color picker receives focus."
            },
            {
              "name": "sl-input",
              "description": "Emitted when the color picker receives input."
            },
            {
              "name": "sl-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              { "name": "base", "type": "HTMLElement" },
              { "name": "input", "type": "SlInput" },
              { "name": "dropdown", "type": "SlDropdown" },
              { "name": "previewButton", "type": "HTMLButtonElement" },
              { "name": "trigger", "type": "HTMLButtonElement" },
              {
                "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.",
                "type": "string"
              },
              {
                "name": "defaultValue",
                "description": "The default value of the form control. Primarily used for resetting the form control.",
                "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.",
                "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.",
                "type": "'hex' | 'rgb' | 'hsl' | 'hsv'"
              },
              {
                "name": "inline",
                "description": "Renders the color picker inline rather than in a dropdown.",
                "type": "boolean"
              },
              {
                "name": "size",
                "description": "Determines the size of the color picker's trigger. This has no effect on inline color pickers.",
                "type": "'small' | 'medium' | 'large'"
              },
              {
                "name": "noFormatToggle",
                "description": "Removes the button that lets users toggle between format.",
                "type": "boolean"
              },
              {
                "name": "name",
                "description": "The name of the form control, submitted as a name/value pair with form data.",
                "type": "string"
              },
              {
                "name": "disabled",
                "description": "Disables the color picker.",
                "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.",
                "type": "boolean"
              },
              {
                "name": "opacity",
                "description": "Shows the opacity slider. Enabling this will cause the formatted value to be HEXA, RGBA, or HSLA.",
                "type": "boolean"
              },
              {
                "name": "uppercase",
                "description": "By default, values are lowercase. With this attribute, values will be uppercase instead.",
                "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.",
                "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.",
                "type": "string"
              },
              {
                "name": "required",
                "description": "Makes the color picker a required field.",
                "type": "boolean"
              },
              {
                "name": "validity",
                "description": "Gets the validity state object"
              },
              {
                "name": "validationMessage",
                "description": "Gets the validation message"
              }
            ],
            "events": [
              {
                "name": "sl-blur",
                "description": "Emitted when the color picker loses focus."
              },
              {
                "name": "sl-change",
                "description": "Emitted when the color picker's value changes."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the color picker receives focus."
              },
              {
                "name": "sl-input",
                "description": "Emitted when the color picker receives input."
              },
              {
                "name": "sl-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "sl-copy-button",
          "description": "Copies text data to the clipboard when the user clicks the trigger.\n---\n\n\n### **Events:**\n - **sl-copy** - Emitted when the data has been copied.\n- **sl-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 `<sl-icon>`.\n- **success-icon** - The icon to show when the content is copied. Works best with `<sl-icon>`.\n- **error-icon** - The icon to show when a copy error occurs. Works best with `<sl-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 `<sl-icon>`."
            },
            {
              "name": "success-icon",
              "description": "The icon to show when the content is copied. Works best with `<sl-icon>`."
            },
            {
              "name": "error-icon",
              "description": "The icon to show when a copy error occurs. Works best with `<sl-icon>`."
            }
          ],
          "events": [
            {
              "name": "sl-copy",
              "description": "Emitted when the data has been copied."
            },
            {
              "name": "sl-error",
              "description": "Emitted when the data could not be copied."
            }
          ],
          "js": {
            "properties": [
              { "name": "copyIcon", "type": "HTMLSlotElement" },
              { "name": "successIcon", "type": "HTMLSlotElement" },
              { "name": "errorIcon", "type": "HTMLSlotElement" },
              { "name": "tooltip", "type": "SlTooltip" },
              { "name": "isCopying", "type": "boolean" },
              { "name": "status", "type": "'rest' | 'success' | 'error'" },
              {
                "name": "value",
                "description": "The text value to copy.",
                "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\"`.",
                "type": "string"
              },
              {
                "name": "disabled",
                "description": "Disables the copy button.",
                "type": "boolean"
              },
              {
                "name": "copyLabel",
                "description": "A custom label to show in the tooltip.",
                "type": "string"
              },
              {
                "name": "successLabel",
                "description": "A custom label to show in the tooltip after copying.",
                "type": "string"
              },
              {
                "name": "errorLabel",
                "description": "A custom label to show in the tooltip when a copy error occurs.",
                "type": "string"
              },
              {
                "name": "feedbackDuration",
                "description": "The length of time to show feedback before restoring the default trigger.",
                "type": "number"
              },
              {
                "name": "tooltipPlacement",
                "description": "The preferred placement of the tooltip.",
                "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.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-copy",
                "description": "Emitted when the data has been copied."
              },
              {
                "name": "sl-error",
                "description": "Emitted when the data could not be copied."
              }
            ]
          }
        },
        {
          "name": "sl-date-panel",
          "description": "\n---\n\n\n### **Events:**\n - **sl-cancel**\n- **sl-clear**\n- **sl-confirm**\n- **sl-date-change**",
          "doc-url": "",
          "attributes": [
            {
              "name": "open",
              "value": { "type": "boolean", "default": "false" }
            },
            { "name": "value", "value": { "type": "string", "default": "''" } },
            {
              "name": "type",
              "value": {
                "type": "'date' | 'datetime' | 'time' | 'year' | 'month'",
                "default": "'date'"
              }
            },
            {
              "name": "min",
              "value": { "type": "number | string", "default": "'0001-01-01'" }
            },
            {
              "name": "max",
              "value": { "type": "number | string", "default": "'9999-12-31'" }
            },
            {
              "name": "format",
              "value": { "type": "string", "default": "'HH:mm:ss'" }
            }
          ],
          "events": [
            { "name": "sl-cancel", "type": "CustomEvent" },
            { "name": "sl-clear", "type": "CustomEvent" },
            { "name": "sl-confirm", "type": "CustomEvent" },
            { "name": "sl-date-change", "type": "CustomEvent" }
          ],
          "js": {
            "properties": [
              { "name": "calendar", "type": "SlCalendarPicker" },
              { "name": "yearColumn", "type": "HTMLElement" },
              { "name": "monthColumn", "type": "HTMLElement" },
              { "name": "hourColumn", "type": "HTMLElement" },
              { "name": "minuteColumn", "type": "HTMLElement" },
              { "name": "secondColumn", "type": "HTMLElement" },
              { "name": "open", "type": "boolean" },
              { "name": "value", "type": "string" },
              {
                "name": "type",
                "type": "'date' | 'datetime' | 'time' | 'year' | 'month'"
              },
              { "name": "min", "type": "number | string" },
              { "name": "max", "type": "number | string" },
              { "name": "format", "type": "string" }
            ],
            "events": [
              { "name": "sl-cancel", "type": "CustomEvent" },
              { "name": "sl-clear", "type": "CustomEvent" },
              { "name": "sl-confirm", "type": "CustomEvent" },
              { "name": "sl-date-change", "type": "CustomEvent" }
            ]
          }
        },
        {
          "name": "sl-datepicker",
          "description": "Datepickers allow users to select a date using a calendar interface.\n---\n\n\n### **Events:**\n - **sl-blur** - Emitted when the control loses focus.\n- **sl-change** - Emitted when an alteration to the control's value is committed by the user.\n- **sl-focus** - Emitted when the control gains focus.\n- **sl-input** - Emitted when the control receives input.\n- **sl-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n- **sl-clear** - Emitted when the clear button is activated.",
          "doc-url": "",
          "attributes": [
            {
              "name": "type",
              "value": {
                "type": "'date' | 'datetime' | 'year' | 'month'",
                "default": "'date'"
              }
            },
            {
              "name": "format",
              "description": "日期格式化字符串，支持以下占位符（与 dayjs/Ant Design 一致）：\n- YYYY: 4位数年份\n- MM: 2位数月份\n- DD: 2位数日期\n- HH: 24小时制小时\n- mm: 分钟\n- ss: 秒\n- hh: 12小时制小时\n- A: AM/PM\n也支持传入数组，允许输入框接受多种格式。\n默认值：type='date' 时为 'YYYY-MM-DD'，type='datetime' 时为 'YYYY-MM-DD HH:mm:ss'，type='year' 时为 'YYYY'，type='month' 时为 'YYYY-MM'",
              "value": { "type": "string | string[] | undefined" }
            },
            { "name": "pattern", "value": { "type": "string" } },
            {
              "name": "min",
              "value": { "type": "number | string", "default": "'0001-01-01'" }
            },
            {
              "name": "max",
              "value": { "type": "number | string", "default": "'9999-12-31'" }
            }
          ],
          "events": [
            {
              "name": "sl-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "sl-change",
              "description": "Emitted when an alteration to the control's value is committed by the user."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the control gains focus."
            },
            {
              "name": "sl-input",
              "description": "Emitted when the control receives input."
            },
            {
              "name": "sl-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            },
            {
              "name": "sl-clear",
              "description": "Emitted when the clear button is activated."
            }
          ],
          "js": {
            "properties": [
              { "name": "calendar", "type": "SlCalendarPicker" },
              {
                "name": "type",
                "type": "'date' | 'datetime' | 'year' | 'month'"
              },
              {
                "name": "format",
                "description": "日期格式化字符串，支持以下占位符（与 dayjs/Ant Design 一致）：\n- YYYY: 4位数年份\n- MM: 2位数月份\n- DD: 2位数日期\n- HH: 24小时制小时\n- mm: 分钟\n- ss: 秒\n- hh: 12小时制小时\n- A: AM/PM\n也支持传入数组，允许输入框接受多种格式。\n默认值：type='date' 时为 'YYYY-MM-DD'，type='datetime' 时为 'YYYY-MM-DD HH:mm:ss'，type='year' 时为 'YYYY'，type='month' 时为 'YYYY-MM'",
                "type": "string | string[] | undefined"
              },
              { "name": "pattern", "type": "string" },
              { "name": "min", "type": "number | string" },
              { "name": "max", "type": "number | string" }
            ],
            "events": [
              {
                "name": "sl-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "sl-change",
                "description": "Emitted when an alteration to the control's value is committed by the user."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the control gains focus."
              },
              {
                "name": "sl-input",
                "description": "Emitted when the control receives input."
              },
              {
                "name": "sl-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              },
              {
                "name": "sl-clear",
                "description": "Emitted when the clear button is activated."
              }
            ]
          }
        },
        {
          "name": "sl-daterangepicker",
          "description": "Date range inputs allow users to select a range of dates.\n---\n\n\n### **Events:**\n - **sl-blur** - Emitted when the control loses focus.\n- **sl-change** - Emitted when an alteration to the control's value is committed by the user.\n- **sl-focus** - Emitted when the control gains focus.\n- **sl-input** - Emitted when the control receives input.\n- **sl-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n- **sl-clear** - Emitted when the clear button is activated.\n\n### **Methods:**\n - **checkValidity()** - 检查有效性并触发 sl-invalid 事件（如果无效）\n- **getForm(): _HTMLFormElement | null_** - 获取表单引用\n- **reportValidity()** - 检查有效性并显示浏览器原生的有效性提示\n- **setCustomValidity(message: _string_)** - 设置自定义有效性消息\n- **focus(options: _FocusOptions_)** - 聚焦到开始日期输入框并打开面板\n- **blur()** - 移除焦点并关闭面板\n\n### **Slots:**\n - **label** - The input'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- **start-input** - The internal `<input>` for the start date.\n- **end-input** - The internal `<input>` for the end date.\n- **separator** - The separator between the two inputs.\n- **suffix** - The container that wraps the suffix icon.\n- **clear-button** - The clear button.\n- **popup** - The popup that contains the calendars.\n- **calendars** - The container that wraps the calendars.",
          "doc-url": "",
          "attributes": [
            {
              "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": "[Date | null, Date | null]",
                "default": "[null, null]"
              }
            },
            {
              "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": "true" }
            },
            {
              "name": "disabled",
              "description": "Disables the input.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "placeholder",
              "description": "Placeholder text for the two inputs. Accepts a string in the format \"startPlaceholder,endPlaceholder\"\nas an HTML attribute, or a [startPlaceholder, endPlaceholder] tuple when set via JavaScript.",
              "value": {
                "type": "[string, string]",
                "default": "['开始日期', '结束日期']"
              }
            },
            {
              "name": "readonly",
              "description": "Makes the input readonly.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Makes the input a required field.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "layout",
              "description": "The layout of the form control. `vertical` places the label above, `horizontal` places it to the left.",
              "value": {
                "type": "'vertical' | 'horizontal'",
                "default": "'vertical'"
              }
            },
            {
              "name": "variant",
              "description": "The visual variant of the input. `outlined` shows a full border, `underlined` shows only a bottom border.",
              "value": {
                "type": "'outlined' | 'underlined'",
                "default": "'outlined'"
              }
            },
            {
              "name": "type",
              "value": { "type": "'date' | 'datetime'", "default": "'date'" }
            },
            {
              "name": "min",
              "description": "The minimum allowed date (in YYYY-MM-DD format).",
              "value": { "type": "string", "default": "'0001-01-01'" }
            },
            {
              "name": "max",
              "description": "The maximum allowed date (in YYYY-MM-DD format).",
              "value": { "type": "string", "default": "'9999-12-31'" }
            },
            {
              "name": "format",
              "description": "日期格式化字符串，支持以下占位符（与 dayjs/Ant Design 一致）：\n- YYYY: 4位数年份\n- MM: 2位数月份\n- DD: 2位数日期\n- HH: 24小时制小时\n- mm: 分钟\n- ss: 秒\n- hh: 12小时制小时\n- A: AM/PM\n也支持传入数组，允许输入框接受多种格式。\n默认值：type='date' 时为 'YYYY-MM-DD'，type='datetime' 时为 'YYYY-MM-DD HH:mm:ss'",
              "value": { "type": "string | string[] | undefined" }
            }
          ],
          "slots": [
            {
              "name": "label",
              "description": "The input'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": "sl-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "sl-change",
              "description": "Emitted when an alteration to the control's value is committed by the user."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the control gains focus."
            },
            {
              "name": "sl-input",
              "description": "Emitted when the control receives input."
            },
            {
              "name": "sl-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            },
            {
              "name": "sl-clear",
              "description": "Emitted when the clear button is activated."
            }
          ],
          "js": {
            "properties": [
              { "name": "startInput", "type": "HTMLInputElement" },
              { "name": "endInput", "type": "HTMLInputElement" },
              { "name": "popup", "type": "SlPopup" },
              { "name": "inputContainer", "type": "HTMLDivElement" },
              { "name": "calendars", "type": "NodeListOf<SlCalendarPicker>" },
              { "name": "yearColumn", "type": "HTMLElement" },
              { "name": "monthColumn", "type": "HTMLElement" },
              { "name": "hourColumn", "type": "HTMLElement" },
              { "name": "minuteColumn", "type": "HTMLElement" },
              { "name": "secondColumn", "type": "HTMLElement" },
              {
                "name": "name",
                "description": "The name of the input, submitted as a name/value pair with form data.",
                "type": "string"
              },
              {
                "name": "value",
                "description": "The current value of the input, submitted as a name/value pair with form data.",
                "type": "[Date | null, Date | null]"
              },
              {
                "name": "defaultValue",
                "description": "The default value of the form control. Primarily used for resetting the form control.",
                "type": "[Date | null, Date | null]"
              },
              {
                "name": "size",
                "description": "The input's size.",
                "type": "'small' | 'medium' | 'large'"
              },
              {
                "name": "filled",
                "description": "Draws a filled input.",
                "type": "boolean"
              },
              {
                "name": "pill",
                "description": "Draws a pill-style input with rounded edges.",
                "type": "boolean"
              },
              {
                "name": "label",
                "description": "The input's label. If you need to display HTML, use the `label` slot instead.",
                "type": "string"
              },
              {
                "name": "helpText",
                "description": "The input's help text. If you need to display HTML, use the `help-text` slot instead.",
                "type": "string"
              },
              {
                "name": "clearable",
                "description": "Adds a clear button when the input is not empty.",
                "type": "boolean"
              },
              {
                "name": "disabled",
                "description": "Disables the input.",
                "type": "boolean"
              },
              {
                "name": "placeholder",
                "description": "Placeholder text for the two inputs. Accepts a string in the format \"startPlaceholder,endPlaceholder\"\nas an HTML attribute, or a [startPlaceholder, endPlaceholder] tuple when set via JavaScript.",
                "type": "[string, string]"
              },
              { "name": "startPlaceholder" },
              { "name": "endPlaceholder" },
              {
                "name": "readonly",
                "description": "Makes the input readonly.",
                "type": "boolean"
              },
              {
                "name": "required",
                "description": "Makes the input a required field.",
                "type": "boolean"
              },
              {
                "name": "layout",
                "description": "The layout of the form control. `vertical` places the label above, `horizontal` places it to the left.",
                "type": "'vertical' | 'horizontal'"
              },
              {
                "name": "variant",
                "description": "The visual variant of the input. `outlined` shows a full border, `underlined` shows only a bottom border.",
                "type": "'outlined' | 'underlined'"
              },
              {
                "name": "startDate",
                "description": "The start date value.",
                "type": "Date | null"
              },
              {
                "name": "endDate",
                "description": "The end date value.",
                "type": "Date | null"
              },
              { "name": "type", "type": "'date' | 'datetime'" },
              {
                "name": "min",
                "description": "The minimum allowed date (in YYYY-MM-DD format).",
                "type": "string"
              },
              {
                "name": "max",
                "description": "The maximum allowed date (in YYYY-MM-DD format).",
                "type": "string"
              },
              {
                "name": "format",
                "description": "日期格式化字符串，支持以下占位符（与 dayjs/Ant Design 一致）：\n- YYYY: 4位数年份\n- MM: 2位数月份\n- DD: 2位数日期\n- HH: 24小时制小时\n- mm: 分钟\n- ss: 秒\n- hh: 12小时制小时\n- A: AM/PM\n也支持传入数组，允许输入框接受多种格式。\n默认值：type='date' 时为 'YYYY-MM-DD'，type='datetime' 时为 'YYYY-MM-DD HH:mm:ss'",
                "type": "string | string[] | undefined"
              },
              {
                "name": "validity",
                "description": "Gets the validity state object"
              },
              {
                "name": "validationMessage",
                "description": "Gets the validation message"
              }
            ],
            "events": [
              {
                "name": "sl-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "sl-change",
                "description": "Emitted when an alteration to the control's value is committed by the user."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the control gains focus."
              },
              {
                "name": "sl-input",
                "description": "Emitted when the control receives input."
              },
              {
                "name": "sl-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              },
              {
                "name": "sl-clear",
                "description": "Emitted when the clear button is activated."
              }
            ]
          }
        },
        {
          "name": "sl-details",
          "description": "Details show a brief summary and expand to show additional content.\n---\n\n\n### **Events:**\n - **sl-show** - Emitted when the details opens.\n- **sl-after-show** - Emitted after the details opens and all animations are complete.\n- **sl-hide** - Emitted when the details closes.\n- **sl-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 `<sl-icon>`.\n- **collapse-icon** - Optional collapse icon to use instead of the default. Works best with `<sl-icon>`.\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- **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 `<sl-icon>`."
            },
            {
              "name": "collapse-icon",
              "description": "Optional collapse icon to use instead of the default. Works best with `<sl-icon>`."
            }
          ],
          "events": [
            {
              "name": "sl-show",
              "description": "Emitted when the details opens."
            },
            {
              "name": "sl-after-show",
              "description": "Emitted after the details opens and all animations are complete."
            },
            {
              "name": "sl-hide",
              "description": "Emitted when the details closes."
            },
            {
              "name": "sl-after-hide",
              "description": "Emitted after the details closes and all animations are complete."
            }
          ],
          "js": {
            "properties": [
              { "name": "details", "type": "HTMLDetailsElement" },
              { "name": "header", "type": "HTMLElement" },
              { "name": "body", "type": "HTMLElement" },
              { "name": "expandIconSlot", "type": "HTMLSlotElement" },
              { "name": "detailsObserver", "type": "MutationObserver" },
              {
                "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.",
                "type": "boolean"
              },
              {
                "name": "summary",
                "description": "The summary to show in the header. If you need to display HTML, use the `summary` slot instead.",
                "type": "string"
              },
              {
                "name": "disabled",
                "description": "Disables the details so it can't be toggled.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-show",
                "description": "Emitted when the details opens."
              },
              {
                "name": "sl-after-show",
                "description": "Emitted after the details opens and all animations are complete."
              },
              {
                "name": "sl-hide",
                "description": "Emitted when the details closes."
              },
              {
                "name": "sl-after-hide",
                "description": "Emitted after the details closes and all animations are complete."
              }
            ]
          }
        },
        {
          "name": "sl-dialog",
          "description": "Dialogs, sometimes called \"modals\", appear above the page and require the user's immediate attention.\n---\n\n\n### **Events:**\n - **sl-show** - Emitted when the dialog opens.\n- **sl-after-show** - Emitted after the dialog opens and all animations are complete.\n- **sl-hide** - Emitted when the dialog closes.\n- **sl-after-hide** - Emitted after the dialog closes and all animations are complete.\n- **sl-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- **sl-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 `<sl-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 `<sl-icon-button>`.\n- **title** - The dialog's title.\n- **close-button** - The close button, an `<sl-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": "resize",
              "description": "Indicates whether or not the dialog is resizable. When true, the user can resize the dialog by dragging the\nbottom-right corner, and double-clicking the header will toggle fullscreen mode.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "fullscreen",
              "description": "Indicates whether or not the dialog is in fullscreen mode.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "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" }
            },
            {
              "name": "mask-closable",
              "description": "Indicates whether or not the dialog can be closed by clicking the overlay. When set to false, clicking the overlay\nwill not close the dialog.",
              "value": { "type": "boolean", "default": "true" }
            }
          ],
          "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 `<sl-icon-button>`."
            },
            {
              "name": "footer",
              "description": "The dialog's footer, usually one or more buttons representing various options."
            }
          ],
          "events": [
            {
              "name": "sl-show",
              "description": "Emitted when the dialog opens."
            },
            {
              "name": "sl-after-show",
              "description": "Emitted after the dialog opens and all animations are complete."
            },
            {
              "name": "sl-hide",
              "description": "Emitted when the dialog closes."
            },
            {
              "name": "sl-after-hide",
              "description": "Emitted after the dialog closes and all animations are complete."
            },
            {
              "name": "sl-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": "sl-request-close",
              "type": "{ source: 'close-button' | 'keyboard' | 'overlay' }",
              "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": "modal",
                "description": "Exposes the internal modal utility that controls focus trapping. To temporarily disable focus trapping and allow third-party modals spawned from an active Shoelace modal, call `modal.activateExternal()` when the third-party modal opens. Upon closing, call `modal.deactivateExternal()` to restore Shoelace's focus trapping."
              },
              { "name": "dialog", "type": "HTMLElement" },
              { "name": "panel", "type": "HTMLElement" },
              { "name": "overlay", "type": "HTMLElement" },
              {
                "name": "resize",
                "description": "Indicates whether or not the dialog is resizable. When true, the user can resize the dialog by dragging the\nbottom-right corner, and double-clicking the header will toggle fullscreen mode.",
                "type": "boolean"
              },
              {
                "name": "fullscreen",
                "description": "Indicates whether or not the dialog is in fullscreen mode.",
                "type": "boolean"
              },
              {
                "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.",
                "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.",
                "type": "string"
              },
              {
                "name": "noHeader",
                "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.",
                "type": "boolean"
              },
              {
                "name": "maskClosable",
                "description": "Indicates whether or not the dialog can be closed by clicking the overlay. When set to false, clicking the overlay\nwill not close the dialog.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-show",
                "description": "Emitted when the dialog opens."
              },
              {
                "name": "sl-after-show",
                "description": "Emitted after the dialog opens and all animations are complete."
              },
              {
                "name": "sl-hide",
                "description": "Emitted when the dialog closes."
              },
              {
                "name": "sl-after-hide",
                "description": "Emitted after the dialog closes and all animations are complete."
              },
              {
                "name": "sl-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": "sl-request-close",
                "type": "{ source: 'close-button' | 'keyboard' | 'overlay' }",
                "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": "sl-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- **--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.",
                "type": "boolean"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-drawer",
          "description": "Drawers slide in from a container to expose additional options and information.\n---\n\n\n### **Events:**\n - **sl-show** - Emitted when the drawer opens.\n- **sl-after-show** - Emitted after the drawer opens and all animations are complete.\n- **sl-hide** - Emitted when the drawer closes.\n- **sl-after-hide** - Emitted after the drawer closes and all animations are complete.\n- **sl-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- **sl-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 `<sl-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 `<sl-icon-button>`.\n- **title** - The drawer's title.\n- **close-button** - The close button, an `<sl-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 `<sl-icon-button>`."
            },
            {
              "name": "footer",
              "description": "The drawer's footer, usually one or more buttons representing various options."
            }
          ],
          "events": [
            {
              "name": "sl-show",
              "description": "Emitted when the drawer opens."
            },
            {
              "name": "sl-after-show",
              "description": "Emitted after the drawer opens and all animations are complete."
            },
            {
              "name": "sl-hide",
              "description": "Emitted when the drawer closes."
            },
            {
              "name": "sl-after-hide",
              "description": "Emitted after the drawer closes and all animations are complete."
            },
            {
              "name": "sl-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": "sl-request-close",
              "type": "{ source: 'close-button' | 'keyboard' | 'overlay' }",
              "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": "modal",
                "description": "Exposes the internal modal utility that controls focus trapping. To temporarily disable focus trapping and allow third-party modals spawned from an active Shoelace modal, call `modal.activateExternal()` when the third-party modal opens. Upon closing, call `modal.deactivateExternal()` to restore Shoelace's focus trapping."
              },
              { "name": "drawer", "type": "HTMLElement" },
              { "name": "panel", "type": "HTMLElement" },
              { "name": "overlay", "type": "HTMLElement" },
              {
                "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.",
                "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.",
                "type": "string"
              },
              {
                "name": "placement",
                "description": "The direction from which the drawer will open.",
                "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.",
                "type": "boolean"
              },
              {
                "name": "noHeader",
                "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.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-show",
                "description": "Emitted when the drawer opens."
              },
              {
                "name": "sl-after-show",
                "description": "Emitted after the drawer opens and all animations are complete."
              },
              {
                "name": "sl-hide",
                "description": "Emitted when the drawer closes."
              },
              {
                "name": "sl-after-hide",
                "description": "Emitted after the drawer closes and all animations are complete."
              },
              {
                "name": "sl-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": "sl-request-close",
                "type": "{ source: 'close-button' | 'keyboard' | 'overlay' }",
                "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": "sl-dropdown",
          "description": "Dropdowns expose additional content that \"drops down\" in a panel.\n---\n\n\n### **Events:**\n - **sl-show** - Emitted when the dropdown opens.\n- **sl-after-show** - Emitted after the dropdown opens and all animations are complete.\n- **sl-hide** - Emitted when the dropdown closes.\n- **sl-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 `<sl-button>` element.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper, an `<sl-popup>` element.\n- **base__popup** - The popup's exported `popup` part. Use this to target the tooltip's popup container.\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 `<sl-button>` element."
            }
          ],
          "events": [
            {
              "name": "sl-show",
              "description": "Emitted when the dropdown opens."
            },
            {
              "name": "sl-after-show",
              "description": "Emitted after the dropdown opens and all animations are complete."
            },
            {
              "name": "sl-hide",
              "description": "Emitted when the dropdown closes."
            },
            {
              "name": "sl-after-hide",
              "description": "Emitted after the dropdown closes and all animations are complete."
            }
          ],
          "js": {
            "properties": [
              { "name": "popup", "type": "SlPopup" },
              { "name": "trigger", "type": "HTMLSlotElement" },
              { "name": "panel", "type": "HTMLSlotElement" },
              {
                "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.",
                "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.",
                "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.",
                "type": "boolean"
              },
              {
                "name": "stayOpenOnSelect",
                "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.",
                "type": "boolean"
              },
              {
                "name": "containingElement",
                "description": "The dropdown will close when the user interacts outside of this element (e.g. clicking). Useful for composing other\ncomponents that use a dropdown internally.",
                "type": "HTMLElement | undefined"
              },
              {
                "name": "distance",
                "description": "The distance in pixels from which to offset the panel away from its trigger.",
                "type": "number"
              },
              {
                "name": "skidding",
                "description": "The distance in pixels from which to offset the panel along its trigger.",
                "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.",
                "type": "boolean"
              },
              {
                "name": "sync",
                "description": "Syncs the popup width or height to that of the trigger element.",
                "type": "'width' | 'height' | 'both' | undefined"
              }
            ],
            "events": [
              {
                "name": "sl-show",
                "description": "Emitted when the dropdown opens."
              },
              {
                "name": "sl-after-show",
                "description": "Emitted after the dropdown opens and all animations are complete."
              },
              {
                "name": "sl-hide",
                "description": "Emitted when the dropdown closes."
              },
              {
                "name": "sl-after-hide",
                "description": "Emitted after the dropdown closes and all animations are complete."
              }
            ]
          }
        },
        {
          "name": "sl-float-button",
          "description": "A floating action button that stays fixed on the page.\n---\n\n\n### **Events:**\n - **sl-click** - Emitted when the button is clicked.\n\n### **Slots:**\n - _default_ - The button's icon content.\n- **content** - Optional text content (only visible when shape is square).\n\n### **CSS Parts:**\n - **base** - The button's base wrapper.\n- **icon** - The icon container.\n- **content** - The text content container.",
          "doc-url": "",
          "attributes": [
            {
              "name": "type",
              "description": "The button's type.",
              "value": {
                "type": "'default' | 'primary'",
                "default": "'default'"
              }
            },
            {
              "name": "shape",
              "description": "The button's shape.",
              "value": { "type": "'circle' | 'square'", "default": "'circle'" }
            },
            {
              "name": "size",
              "description": "The button's size.",
              "value": {
                "type": "'small' | 'medium' | 'large'",
                "default": "'medium'"
              }
            },
            {
              "name": "icon",
              "description": "The name of the icon to display (from the registered icon library).",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "tooltip",
              "description": "Tooltip text shown on hover.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "tooltip-placement",
              "description": "Tooltip placement.",
              "value": {
                "type": "'top' | 'right' | 'bottom' | 'left'",
                "default": "'left'"
              }
            },
            {
              "name": "disabled",
              "description": "Disables the button.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "href",
              "description": "When set, the button will render as an anchor tag with this URL.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "target",
              "description": "Where to display the linked URL (only used when href is set).",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "slots": [
            { "name": "", "description": "The button's icon content." },
            {
              "name": "content",
              "description": "Optional text content (only visible when shape is square)."
            }
          ],
          "events": [
            {
              "name": "sl-click",
              "description": "Emitted when the button is clicked."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "type",
                "description": "The button's type.",
                "type": "'default' | 'primary'"
              },
              {
                "name": "shape",
                "description": "The button's shape.",
                "type": "'circle' | 'square'"
              },
              {
                "name": "size",
                "description": "The button's size.",
                "type": "'small' | 'medium' | 'large'"
              },
              {
                "name": "icon",
                "description": "The name of the icon to display (from the registered icon library).",
                "type": "string"
              },
              {
                "name": "tooltip",
                "description": "Tooltip text shown on hover.",
                "type": "string"
              },
              {
                "name": "tooltipPlacement",
                "description": "Tooltip placement.",
                "type": "'top' | 'right' | 'bottom' | 'left'"
              },
              {
                "name": "disabled",
                "description": "Disables the button.",
                "type": "boolean"
              },
              {
                "name": "href",
                "description": "When set, the button will render as an anchor tag with this URL.",
                "type": "string"
              },
              {
                "name": "target",
                "description": "Where to display the linked URL (only used when href is set).",
                "type": "string"
              }
            ],
            "events": [
              {
                "name": "sl-click",
                "description": "Emitted when the button is clicked."
              }
            ]
          }
        },
        {
          "name": "sl-float-button-group",
          "description": "Groups multiple float buttons together, with optional menu trigger.\n---\n\n\n### **Events:**\n - **sl-show** - Emitted when the menu opens (menu mode only).\n- **sl-hide** - Emitted when the menu closes (menu mode only).\n\n### **Slots:**\n - _default_ - The float buttons to display.\n- **trigger-icon** - Custom icon for the trigger button.\n- **close-icon** - Custom icon shown when the menu is open.\n\n### **CSS Parts:**\n - **base** - The group's base wrapper.\n- **list** - The container for the float button items.\n- **trigger** - The trigger button (menu mode only).\n- **trigger-icon** - The trigger button's icon.",
          "doc-url": "",
          "attributes": [
            {
              "name": "shape",
              "description": "The shape applied to all child float buttons.",
              "value": { "type": "'circle' | 'square'", "default": "'circle'" }
            },
            {
              "name": "trigger",
              "description": "The trigger mode for menu. When set, shows a trigger button that toggles the menu.",
              "value": { "type": "'click' | 'hover' | ''", "default": "''" }
            },
            {
              "name": "open",
              "description": "Whether the menu is open (controlled mode, use with trigger).",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "placement",
              "description": "The direction the menu items expand.",
              "value": {
                "type": "'top' | 'right' | 'bottom' | 'left'",
                "default": "'top'"
              }
            }
          ],
          "slots": [
            { "name": "", "description": "The float buttons to display." },
            {
              "name": "trigger-icon",
              "description": "Custom icon for the trigger button."
            },
            {
              "name": "close-icon",
              "description": "Custom icon shown when the menu is open."
            }
          ],
          "events": [
            {
              "name": "sl-show",
              "description": "Emitted when the menu opens (menu mode only)."
            },
            {
              "name": "sl-hide",
              "description": "Emitted when the menu closes (menu mode only)."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "shape",
                "description": "The shape applied to all child float buttons.",
                "type": "'circle' | 'square'"
              },
              {
                "name": "trigger",
                "description": "The trigger mode for menu. When set, shows a trigger button that toggles the menu.",
                "type": "'click' | 'hover' | ''"
              },
              {
                "name": "open",
                "description": "Whether the menu is open (controlled mode, use with trigger).",
                "type": "boolean"
              },
              {
                "name": "placement",
                "description": "The direction the menu items expand.",
                "type": "'top' | 'right' | 'bottom' | 'left'"
              }
            ],
            "events": [
              {
                "name": "sl-show",
                "description": "Emitted when the menu opens (menu mode only)."
              },
              {
                "name": "sl-hide",
                "description": "Emitted when the menu closes (menu mode only)."
              }
            ]
          }
        },
        {
          "name": "sl-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.",
                "type": "number"
              },
              {
                "name": "unit",
                "description": "The type of unit to display.",
                "type": "'byte' | 'bit'"
              },
              {
                "name": "display",
                "description": "Determines how to display the result, e.g. \"100 bytes\", \"100 b\", or \"100b\".",
                "type": "'long' | 'short' | 'narrow'"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-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).",
                "type": "Date | string"
              },
              {
                "name": "weekday",
                "description": "The format for displaying the weekday.",
                "type": "'narrow' | 'short' | 'long'"
              },
              {
                "name": "era",
                "description": "The format for displaying the era.",
                "type": "'narrow' | 'short' | 'long'"
              },
              {
                "name": "year",
                "description": "The format for displaying the year.",
                "type": "'numeric' | '2-digit'"
              },
              {
                "name": "month",
                "description": "The format for displaying the month.",
                "type": "'numeric' | '2-digit' | 'narrow' | 'short' | 'long'"
              },
              {
                "name": "day",
                "description": "The format for displaying the day.",
                "type": "'numeric' | '2-digit'"
              },
              {
                "name": "hour",
                "description": "The format for displaying the hour.",
                "type": "'numeric' | '2-digit'"
              },
              {
                "name": "minute",
                "description": "The format for displaying the minute.",
                "type": "'numeric' | '2-digit'"
              },
              {
                "name": "second",
                "description": "The format for displaying the second.",
                "type": "'numeric' | '2-digit'"
              },
              {
                "name": "timeZoneName",
                "description": "The format for displaying the time.",
                "type": "'short' | 'long'"
              },
              {
                "name": "timeZone",
                "description": "The time zone to express the time in.",
                "type": "string"
              },
              {
                "name": "hourFormat",
                "description": "The format for displaying the hour.",
                "type": "'auto' | '12' | '24'"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-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.",
                "type": "number"
              },
              {
                "name": "type",
                "description": "The formatting style to use.",
                "type": "'currency' | 'decimal' | 'percent'"
              },
              {
                "name": "noGrouping",
                "description": "Turns off grouping separators.",
                "type": "boolean"
              },
              {
                "name": "currency",
                "description": "The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code to use when formatting.",
                "type": "string"
              },
              {
                "name": "currencyDisplay",
                "description": "How to display the currency.",
                "type": "'symbol' | 'narrowSymbol' | 'code' | 'name'"
              },
              {
                "name": "minimumIntegerDigits",
                "description": "The minimum number of integer digits to use. Possible values are 1-21.",
                "type": "number"
              },
              {
                "name": "minimumFractionDigits",
                "description": "The minimum number of fraction digits to use. Possible values are 0-20.",
                "type": "number"
              },
              {
                "name": "maximumFractionDigits",
                "description": "The maximum number of fraction digits to use. Possible values are 0-0.",
                "type": "number"
              },
              {
                "name": "minimumSignificantDigits",
                "description": "The minimum number of significant digits to use. Possible values are 1-21.",
                "type": "number"
              },
              {
                "name": "maximumSignificantDigits",
                "description": "The maximum number of significant digits to use,. Possible values are 1-21.",
                "type": "number"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-icon",
          "description": "Icons are symbols that can be used to represent various options within an application.\n---\n\n\n### **Events:**\n - **sl-load** - Emitted when the icon has loaded. When using `spriteSheet: true` this will not emit.\n- **sl-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'" }
            }
          ],
          "events": [
            {
              "name": "sl-load",
              "description": "Emitted when the icon has loaded. When using `spriteSheet: true` this will not emit."
            },
            {
              "name": "sl-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.",
                "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.",
                "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.",
                "type": "string"
              },
              {
                "name": "library",
                "description": "The name of a registered custom icon library.",
                "type": "string"
              }
            ],
            "events": [
              {
                "name": "sl-load",
                "description": "Emitted when the icon has loaded. When using `spriteSheet: true` this will not emit."
              },
              {
                "name": "sl-error",
                "description": "Emitted when the icon fails to load due to an error. When using `spriteSheet: true` this will not emit."
              }
            ]
          }
        },
        {
          "name": "sl-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 - **sl-blur** - Emitted when the icon button loses focus.\n- **sl-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": "sl-blur",
              "description": "Emitted when the icon button loses focus."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the icon button gains focus."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "button",
                "type": "HTMLButtonElement | HTMLLinkElement"
              },
              {
                "name": "name",
                "description": "The name of the icon to draw. Available names depend on the icon library being used.",
                "type": "string | undefined"
              },
              {
                "name": "library",
                "description": "The name of a registered custom icon library.",
                "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.",
                "type": "string | undefined"
              },
              {
                "name": "href",
                "description": "When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.",
                "type": "string | undefined"
              },
              {
                "name": "target",
                "description": "Tells the browser where to open the link. Only used when `href` is set.",
                "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.",
                "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.",
                "type": "string"
              },
              {
                "name": "disabled",
                "description": "Disables the button.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-blur",
                "description": "Emitted when the icon button loses focus."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the icon button gains focus."
              }
            ]
          }
        },
        {
          "name": "sl-image",
          "description": "图片组件，支持预览、缩放、旋转、翻转等功能。\n---\n\n\n### **Events:**\n - **sl-image-click** - 在 group 模式下点击图片时触发\n- **sl-preview-open** - 预览打开时触发\n- **sl-preview-close** - 预览关闭时触发\n- **sl-error** - 图片加载失败时触发\n- **sl-load** - 图片加载成功时触发\n\n### **Slots:**\n - **cover** - 自定义遮罩层内容\n- **placeholder** - 自定义加载占位内容\n\n### **CSS Parts:**\n - **base** - 组件根容器\n- **img** - 图片元素\n- **cover** - 遮罩层\n- **preview-mask** - 预览遮罩背景\n- **preview-body** - 预览主体\n- **preview-img** - 预览图片\n- **preview-actions** - 预览工具栏\n- **preview-close** - 预览关闭按钮",
          "doc-url": "",
          "attributes": [
            {
              "name": "src",
              "description": "图片地址",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "alt",
              "description": "图片替代文本",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "width",
              "description": "图片宽度",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "height",
              "description": "图片高度",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "fallback",
              "description": "加载失败时的回退图片地址",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "placeholder",
              "description": "加载占位图；设为 true 显示默认占位符，设为字符串则作为占位图片 src",
              "value": { "type": "boolean | string | undefined" }
            },
            {
              "name": "no-preview",
              "description": "是否禁用预览",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "preview",
              "description": "预览配置",
              "value": { "type": "SlImagePreviewConfig | undefined" }
            },
            {
              "name": "in-group",
              "description": "是否在 group 中（由 sl-image-preview-group 自动设置）",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "cover", "description": "自定义遮罩层内容" },
            { "name": "placeholder", "description": "自定义加载占位内容" }
          ],
          "events": [
            {
              "name": "sl-image-click",
              "description": "在 group 模式下点击图片时触发"
            },
            { "name": "sl-preview-open", "description": "预览打开时触发" },
            { "name": "sl-preview-close", "description": "预览关闭时触发" },
            { "name": "sl-error", "description": "图片加载失败时触发" },
            { "name": "sl-load", "description": "图片加载成功时触发" }
          ],
          "js": {
            "properties": [
              { "name": "src", "description": "图片地址", "type": "string" },
              {
                "name": "alt",
                "description": "图片替代文本",
                "type": "string"
              },
              {
                "name": "width",
                "description": "图片宽度",
                "type": "string | undefined"
              },
              {
                "name": "height",
                "description": "图片高度",
                "type": "string | undefined"
              },
              {
                "name": "fallback",
                "description": "加载失败时的回退图片地址",
                "type": "string | undefined"
              },
              {
                "name": "placeholder",
                "description": "加载占位图；设为 true 显示默认占位符，设为字符串则作为占位图片 src",
                "type": "boolean | string | undefined"
              },
              {
                "name": "noPreview",
                "description": "是否禁用预览",
                "type": "boolean"
              },
              {
                "name": "preview",
                "description": "预览配置",
                "type": "SlImagePreviewConfig | undefined"
              },
              {
                "name": "inGroup",
                "description": "是否在 group 中（由 sl-image-preview-group 自动设置）",
                "type": "boolean"
              },
              { "name": "previewOpen" }
            ],
            "events": [
              {
                "name": "sl-image-click",
                "description": "在 group 模式下点击图片时触发"
              },
              { "name": "sl-preview-open", "description": "预览打开时触发" },
              { "name": "sl-preview-close", "description": "预览关闭时触发" },
              { "name": "sl-error", "description": "图片加载失败时触发" },
              { "name": "sl-load", "description": "图片加载成功时触发" }
            ]
          }
        },
        {
          "name": "sl-image-preview-group",
          "description": "图片预览组，支持多张图片切换预览。对齐 Ant Design Image.PreviewGroup API。\n---\n\n\n### **Events:**\n - **sl-preview-open** - 预览打开时触发\n- **sl-preview-close** - 预览关闭时触发\n- **sl-preview-change** - 预览图片切换时触发，detail 包含 { current, prev }\n\n### **Slots:**\n - _default_ - 默认插槽，放置 sl-image 组件\n\n### **CSS Parts:**\n - **preview-mask** - 预览遮罩背景\n- **preview-body** - 预览主体\n- **preview-img** - 预览图片\n- **preview-actions** - 预览工具栏\n- **preview-close** - 预览关闭按钮\n- **preview-counter** - 预览计数器",
          "doc-url": "",
          "attributes": [
            {
              "name": "preview",
              "description": "预览配置，为 false 时禁用预览",
              "value": { "type": "false | SlPreviewGroupConfig | undefined" }
            },
            {
              "name": "items",
              "description": "预览数组，支持字符串或 { src, alt, crossOrigin } 对象",
              "value": { "type": "SlPreviewGroupItem[] | undefined" }
            },
            {
              "name": "fallback",
              "description": "加载失败容错地址（组件级）",
              "value": { "type": "string | undefined" }
            }
          ],
          "slots": [
            { "name": "", "description": "默认插槽，放置 sl-image 组件" }
          ],
          "events": [
            { "name": "sl-preview-open", "description": "预览打开时触发" },
            { "name": "sl-preview-close", "description": "预览关闭时触发" },
            {
              "name": "sl-preview-change",
              "description": "预览图片切换时触发，detail 包含 { current, prev }"
            }
          ],
          "js": {
            "properties": [
              {
                "name": "preview",
                "description": "预览配置，为 false 时禁用预览",
                "type": "false | SlPreviewGroupConfig | undefined"
              },
              {
                "name": "items",
                "description": "预览数组，支持字符串或 { src, alt, crossOrigin } 对象",
                "type": "SlPreviewGroupItem[] | undefined"
              },
              {
                "name": "fallback",
                "description": "加载失败容错地址（组件级）",
                "type": "string | undefined"
              },
              { "name": "previewOpen" }
            ],
            "events": [
              { "name": "sl-preview-open", "description": "预览打开时触发" },
              { "name": "sl-preview-close", "description": "预览关闭时触发" },
              {
                "name": "sl-preview-change",
                "description": "预览图片切换时触发，detail 包含 { current, prev }"
              }
            ]
          }
        },
        {
          "name": "sl-include",
          "description": "Includes give you the power to embed external HTML files into the page.\n---\n\n\n### **Events:**\n - **sl-load** - Emitted when the included file is loaded.\n- **sl-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": "sl-load",
              "description": "Emitted when the included file is loaded."
            },
            {
              "name": "sl-error",
              "type": "{ status: number }",
              "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.",
                "type": "string"
              },
              {
                "name": "mode",
                "description": "The fetch mode to use.",
                "type": "'cors' | 'no-cors' | 'same-origin'"
              },
              {
                "name": "allowScripts",
                "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.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-load",
                "description": "Emitted when the included file is loaded."
              },
              {
                "name": "sl-error",
                "type": "{ status: number }",
                "description": "Emitted when the included file fails to load due to an error."
              }
            ]
          }
        },
        {
          "name": "sl-image-comparer",
          "description": "Compare visual differences between similar photos with a sliding panel.\n---\n\n\n### **Events:**\n - **sl-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": "sl-change",
              "description": "Emitted when the position changes."
            }
          ],
          "js": {
            "properties": [
              { "name": "base", "type": "HTMLElement" },
              { "name": "handle", "type": "HTMLElement" },
              {
                "name": "position",
                "description": "The position of the divider as a percentage.",
                "type": "number"
              }
            ],
            "events": [
              {
                "name": "sl-change",
                "description": "Emitted when the position changes."
              }
            ]
          }
        },
        {
          "name": "sl-input",
          "description": "Inputs collect data from the user.\n---\n\n\n### **Events:**\n - **sl-blur** - Emitted when the control loses focus.\n- **sl-change** - Emitted when an alteration to the control's value is committed by the user.\n- **sl-clear** - Emitted when the clear button is activated.\n- **sl-focus** - Emitted when the control gains focus.\n- **sl-input** - Emitted when the control receives input.\n- **sl-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": "hoist",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "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": "layout",
              "description": "The layout of the form control. `vertical` places the label above, `horizontal` places it to the left.",
              "value": {
                "type": "'vertical' | 'horizontal'",
                "default": "'vertical'"
              }
            },
            {
              "name": "variant",
              "description": "The visual variant of the input. `outlined` shows a full border, `underlined` shows only a bottom border.",
              "value": {
                "type": "'outlined' | 'underlined'",
                "default": "'outlined'"
              }
            },
            {
              "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": "clear-hides-suffix",
              "description": "Hides the suffix when the clear button is visible.",
              "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", "default": "'off'" }
            },
            {
              "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": "sl-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "sl-change",
              "description": "Emitted when an alteration to the control's value is committed by the user."
            },
            {
              "name": "sl-clear",
              "description": "Emitted when the clear button is activated."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the control gains focus."
            },
            {
              "name": "sl-input",
              "description": "Emitted when the control receives input."
            },
            {
              "name": "sl-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              { "name": "input", "type": "HTMLInputElement" },
              { "name": "title", "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`.",
                "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.",
                "type": "string"
              },
              {
                "name": "value",
                "description": "The current value of the input, submitted as a name/value pair with form data.",
                "type": "string"
              },
              {
                "name": "defaultValue",
                "description": "The default value of the form control. Primarily used for resetting the form control.",
                "type": "string"
              },
              { "name": "hoist", "type": "boolean" },
              {
                "name": "size",
                "description": "The input's size.",
                "type": "'small' | 'medium' | 'large'"
              },
              {
                "name": "filled",
                "description": "Draws a filled input.",
                "type": "boolean"
              },
              {
                "name": "pill",
                "description": "Draws a pill-style input with rounded edges.",
                "type": "boolean"
              },
              {
                "name": "layout",
                "description": "The layout of the form control. `vertical` places the label above, `horizontal` places it to the left.",
                "type": "'vertical' | 'horizontal'"
              },
              {
                "name": "variant",
                "description": "The visual variant of the input. `outlined` shows a full border, `underlined` shows only a bottom border.",
                "type": "'outlined' | 'underlined'"
              },
              {
                "name": "label",
                "description": "The input's label. If you need to display HTML, use the `label` slot instead.",
                "type": "string"
              },
              {
                "name": "helpText",
                "description": "The input's help text. If you need to display HTML, use the `help-text` slot instead.",
                "type": "string"
              },
              {
                "name": "clearable",
                "description": "Adds a clear button when the input is not empty.",
                "type": "boolean"
              },
              {
                "name": "clearHidesSuffix",
                "description": "Hides the suffix when the clear button is visible.",
                "type": "boolean"
              },
              {
                "name": "disabled",
                "description": "Disables the input.",
                "type": "boolean"
              },
              {
                "name": "placeholder",
                "description": "Placeholder text to show as a hint when the input is empty.",
                "type": "string"
              },
              {
                "name": "readonly",
                "description": "Makes the input readonly.",
                "type": "boolean"
              },
              {
                "name": "passwordToggle",
                "description": "Adds a button to toggle the password's visibility. Only applies to password types.",
                "type": "boolean"
              },
              {
                "name": "passwordVisible",
                "description": "Determines whether or not the password is currently visible. Only applies to password input types.",
                "type": "boolean"
              },
              {
                "name": "noSpinButtons",
                "description": "Hides the browser's built-in increment/decrement spin buttons for number inputs.",
                "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.",
                "type": "string"
              },
              {
                "name": "required",
                "description": "Makes the input a required field.",
                "type": "boolean"
              },
              {
                "name": "pattern",
                "description": "A regular expression pattern to validate input against.",
                "type": "string"
              },
              {
                "name": "minlength",
                "description": "The minimum length of input that will be considered valid.",
                "type": "number"
              },
              {
                "name": "maxlength",
                "description": "The maximum length of input that will be considered valid.",
                "type": "number"
              },
              {
                "name": "min",
                "description": "The input's minimum value. Only applies to date and number input types.",
                "type": "number | string"
              },
              {
                "name": "max",
                "description": "The input's maximum value. Only applies to date and number input types.",
                "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.",
                "type": "number | 'any'"
              },
              {
                "name": "autocapitalize",
                "description": "Controls whether and how text input is automatically capitalized as it is entered by the user.",
                "type": "'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters'"
              },
              {
                "name": "autocorrect",
                "description": "Indicates whether the browser's autocorrect feature is on or off.",
                "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.",
                "type": "string"
              },
              {
                "name": "autofocus",
                "description": "Indicates that the input should receive focus on page load.",
                "type": "boolean"
              },
              {
                "name": "enterkeyhint",
                "description": "Used to customize the label or icon of the Enter key on virtual keyboards.",
                "type": "'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send'"
              },
              {
                "name": "spellcheck",
                "description": "Enables spell checking on the input.",
                "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.",
                "type": "'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url'"
              },
              {
                "name": "valueAsDate",
                "description": "Gets or sets the current value as a `Date` object. Returns `null` if the value can't be converted. This will use the native `<input type=\"{{type}}\">` implementation and may result in an error."
              },
              {
                "name": "valueAsNumber",
                "description": "Gets or sets the current value as a number. Returns `NaN` if the value can't be converted."
              },
              {
                "name": "validity",
                "description": "Gets the validity state object"
              },
              {
                "name": "validationMessage",
                "description": "Gets the validation message"
              }
            ],
            "events": [
              {
                "name": "sl-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "sl-change",
                "description": "Emitted when an alteration to the control's value is committed by the user."
              },
              {
                "name": "sl-clear",
                "description": "Emitted when the clear button is activated."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the control gains focus."
              },
              {
                "name": "sl-input",
                "description": "Emitted when the control receives input."
              },
              {
                "name": "sl-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "sl-menu",
          "description": "Menus provide a list of options for the user to choose from.\n---\n\n\n### **Events:**\n - **sl-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": "sl-select",
              "type": "{ item: SlMenuItem }",
              "description": "Emitted when a menu item is selected."
            }
          ],
          "js": {
            "properties": [
              { "name": "defaultSlot", "type": "HTMLSlotElement" }
            ],
            "events": [
              {
                "name": "sl-select",
                "type": "{ item: SlMenuItem }",
                "description": "Emitted when a menu item is selected."
              }
            ]
          }
        },
        {
          "name": "sl-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": "defaultSlot", "type": "HTMLSlotElement" },
              { "name": "menuItem", "type": "HTMLElement" },
              {
                "name": "type",
                "description": "The type of menu item to render. To use `checked`, this value must be set to `checkbox`.",
                "type": "'normal' | 'checkbox'"
              },
              {
                "name": "checked",
                "description": "Draws the item in a checked state.",
                "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.",
                "type": "string"
              },
              {
                "name": "loading",
                "description": "Draws the menu item in a loading state.",
                "type": "boolean"
              },
              {
                "name": "disabled",
                "description": "Draws the menu item in a disabled state, preventing selection.",
                "type": "boolean"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-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": "sl-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 - **sl-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": "sl-mutation",
              "type": "{ mutationList: MutationRecord[] }",
              "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 `*`.",
                "type": "string"
              },
              {
                "name": "attrOldValue",
                "description": "Indicates whether or not the attribute's previous value should be recorded when monitoring changes.",
                "type": "boolean"
              },
              {
                "name": "charData",
                "description": "Watches for changes to the character data contained within the node.",
                "type": "boolean"
              },
              {
                "name": "charDataOldValue",
                "description": "Indicates whether or not the previous value of the node's text should be recorded.",
                "type": "boolean"
              },
              {
                "name": "childList",
                "description": "Watches for the addition or removal of new child nodes.",
                "type": "boolean"
              },
              {
                "name": "disabled",
                "description": "Disables the observer.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-mutation",
                "type": "{ mutationList: MutationRecord[] }",
                "description": "Emitted when a mutation occurs."
              }
            ]
          }
        },
        {
          "name": "sl-nav",
          "description": "Navs are used to create navigation menus, including top bars and sidebars.\n---\n\n\n### **Events:**\n - **sl-change** - Emitted when the selected nav item changes.\n- **sl-nav-open-change** - Emitted when the open submenu keys change.\n- **sl-nav-select** - Emitted when a nav item is selected.\n\n### **Slots:**\n - _default_ - The nav items.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
          "doc-url": "",
          "attributes": [
            {
              "name": "mode",
              "description": "Matches Antd's `mode` API.",
              "value": { "type": "SlNavMode", "default": "'inline'" }
            },
            {
              "name": "multiple",
              "description": "Matches Antd's `multiple` API.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "selectable",
              "description": "Matches Antd's `selectable` API.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "inline-collapsed",
              "description": "Matches Antd's `inlineCollapsed` API.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "inline-indent",
              "description": "Matches Antd's `inlineIndent` API.",
              "value": { "type": "number", "default": "16" }
            },
            {
              "name": "sub-menu-open-delay",
              "description": "Matches Antd's `subMenuOpenDelay` API, in seconds.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "sub-menu-close-delay",
              "description": "Matches Antd's `subMenuCloseDelay` API, in seconds.",
              "value": { "type": "number", "default": "0.1" }
            },
            {
              "name": "trigger-sub-menu-action",
              "description": "Matches Antd's `triggerSubMenuAction` API.",
              "value": {
                "type": "SlNavTriggerSubMenuAction",
                "default": "'hover'"
              }
            },
            {
              "name": "theme",
              "description": "Matches Antd's `theme` API. Present for compatibility and future styling.",
              "value": { "type": "SlNavTheme", "default": "'light'" }
            },
            {
              "name": "force-sub-menu-render",
              "description": "Matches Antd's `forceSubMenuRender` API.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled-overflow",
              "description": "Matches Antd's `disabledOverflow` API. Present for compatibility.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [{ "name": "", "description": "The nav items." }],
          "events": [
            {
              "name": "sl-change",
              "type": "{ item: SlNavItem | undefined, selectedKeys: string[] }",
              "description": "Emitted when the selected nav item changes."
            },
            {
              "name": "sl-nav-open-change",
              "type": "{ openKeys: string[] }",
              "description": "Emitted when the open submenu keys change."
            },
            {
              "name": "sl-nav-select",
              "type": "{ item: SlNavItem, domEvent: MouseEvent | KeyboardEvent }",
              "description": "Emitted when a nav item is selected."
            }
          ],
          "js": {
            "properties": [
              { "name": "defaultSlot", "type": "HTMLSlotElement | undefined" },
              {
                "name": "items",
                "description": "Matches Antd's `items` API.",
                "type": "SlNavItemType[]"
              },
              {
                "name": "selectedKeys",
                "description": "Matches Antd's `selectedKeys` API.",
                "type": "string[]"
              },
              {
                "name": "defaultSelectedKeys",
                "description": "Matches Antd's `defaultSelectedKeys` API.",
                "type": "string[]"
              },
              {
                "name": "openKeys",
                "description": "Matches Antd's `openKeys` API.",
                "type": "string[]"
              },
              {
                "name": "defaultOpenKeys",
                "description": "Matches Antd's `defaultOpenKeys` API.",
                "type": "string[]"
              },
              {
                "name": "mode",
                "description": "Matches Antd's `mode` API.",
                "type": "SlNavMode"
              },
              {
                "name": "multiple",
                "description": "Matches Antd's `multiple` API.",
                "type": "boolean"
              },
              {
                "name": "selectable",
                "description": "Matches Antd's `selectable` API.",
                "type": "boolean"
              },
              {
                "name": "inlineCollapsed",
                "description": "Matches Antd's `inlineCollapsed` API.",
                "type": "boolean"
              },
              {
                "name": "inlineIndent",
                "description": "Matches Antd's `inlineIndent` API.",
                "type": "number"
              },
              {
                "name": "subMenuOpenDelay",
                "description": "Matches Antd's `subMenuOpenDelay` API, in seconds.",
                "type": "number"
              },
              {
                "name": "subMenuCloseDelay",
                "description": "Matches Antd's `subMenuCloseDelay` API, in seconds.",
                "type": "number"
              },
              {
                "name": "triggerSubMenuAction",
                "description": "Matches Antd's `triggerSubMenuAction` API.",
                "type": "SlNavTriggerSubMenuAction"
              },
              {
                "name": "theme",
                "description": "Matches Antd's `theme` API. Present for compatibility and future styling.",
                "type": "SlNavTheme"
              },
              {
                "name": "expandIcon",
                "description": "Matches Antd's `expandIcon` API.",
                "type": "unknown | undefined"
              },
              {
                "name": "forceSubMenuRender",
                "description": "Matches Antd's `forceSubMenuRender` API.",
                "type": "boolean"
              },
              {
                "name": "overflowedIndicator",
                "description": "Matches Antd's `overflowedIndicator` API. Present for compatibility.",
                "type": "unknown | undefined"
              },
              {
                "name": "disabledOverflow",
                "description": "Matches Antd's `disabledOverflow` API. Present for compatibility.",
                "type": "boolean"
              },
              {
                "name": "onClick",
                "description": "Matches Antd's `onClick` callback API.",
                "type": "(info: SlNavClickInfo) => void | undefined"
              },
              {
                "name": "onSelect",
                "description": "Matches Antd's `onSelect` callback API.",
                "type": "(info: SlNavSelectInfo) => void | undefined"
              },
              {
                "name": "onDeselect",
                "description": "Matches Antd's `onDeselect` callback API.",
                "type": "(info: SlNavSelectInfo) => void | undefined"
              },
              {
                "name": "onOpenChange",
                "description": "Matches Antd's `onOpenChange` callback API.",
                "type": "(openKeys: string[]) => void | undefined"
              }
            ],
            "events": [
              {
                "name": "sl-change",
                "type": "{ item: SlNavItem | undefined, selectedKeys: string[] }",
                "description": "Emitted when the selected nav item changes."
              },
              {
                "name": "sl-nav-open-change",
                "type": "{ openKeys: string[] }",
                "description": "Emitted when the open submenu keys change."
              },
              {
                "name": "sl-nav-select",
                "type": "{ item: SlNavItem, domEvent: MouseEvent | KeyboardEvent }",
                "description": "Emitted when a nav item is selected."
              }
            ]
          }
        },
        {
          "name": "sl-nav-group",
          "description": "Nav groups are used to group related nav items.\n---\n\n\n### **Slots:**\n - _default_ - The nav items within the group.\n- **title** - The nav group's title.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **title** - The nav group title.\n- **body** - The nav group body.",
          "doc-url": "",
          "attributes": [
            {
              "name": "active",
              "description": "Draws the nav group in an active (selected) state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "mode",
              "description": "The mode of navigation.",
              "value": {
                "type": "'horizontal' | 'inline' | 'vertical'",
                "default": "'inline'"
              }
            }
          ],
          "slots": [
            { "name": "", "description": "The nav items within the group." },
            { "name": "title", "description": "The nav group's title." }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "label",
                "description": "Matches Antd's item group label.",
                "type": "unknown | undefined"
              },
              {
                "name": "active",
                "description": "Draws the nav group in an active (selected) state.",
                "type": "boolean"
              },
              {
                "name": "mode",
                "description": "The mode of navigation.",
                "type": "'horizontal' | 'inline' | 'vertical'"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-nav-item",
          "description": "Nav items are the individual links or buttons within a navigation menu.\n---\n\n\n### **Events:**\n - **sl-nav-select** - Emitted when a nav item is selected.\n\n### **Slots:**\n - _default_ - The nav item's label.\n- **prefix** - Used to prepend an icon or similar element to the nav item.\n- **suffix** - Used to append an icon or similar element to the nav item.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **prefix** - The prefix container.\n- **label** - The nav item label.\n- **suffix** - The suffix container.",
          "doc-url": "",
          "attributes": [
            {
              "name": "key",
              "description": "A stable key used by `sl-nav` to track selection.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "item-key",
              "description": "React-safe alias for `key`.\n\nReact reserves `key` and won't forward it to custom elements, so wrapper users can pass `itemKey` instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "danger",
              "description": "Matches Antd's `danger` item flag.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "title",
              "description": "Tooltip text, primarily used when the menu is collapsed.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "disabled",
              "description": "Draws the nav item in a disabled state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "active",
              "description": "Draws the nav item in an active (selected) state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "href",
              "description": "The URL to link to. If set, the nav item will render as an anchor tag.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "target",
              "description": "The target attribute for the anchor tag.",
              "value": { "type": "'_blank' | '_parent' | '_self' | '_top'" }
            },
            {
              "name": "download",
              "description": "The download attribute for the anchor tag.",
              "value": { "type": "string | undefined" }
            },
            {
              "name": "rel",
              "description": "The rel attribute for the anchor tag.",
              "value": { "type": "string", "default": "'noreferrer noopener'" }
            },
            {
              "name": "mode",
              "description": "The mode of navigation.",
              "value": {
                "type": "'horizontal' | 'inline' | 'vertical'",
                "default": "'inline'"
              }
            },
            {
              "name": "collapsed",
              "description": "Whether the parent nav is in inline-collapsed mode.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "divider",
              "description": "Shows a divider line above this nav item.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "", "description": "The nav item's label." },
            {
              "name": "prefix",
              "description": "Used to prepend an icon or similar element to the nav item."
            },
            {
              "name": "suffix",
              "description": "Used to append an icon or similar element to the nav item."
            }
          ],
          "events": [
            {
              "name": "sl-nav-select",
              "type": "{ item: SlNavItem }",
              "description": "Emitted when a nav item is selected."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "key",
                "description": "A stable key used by `sl-nav` to track selection.",
                "type": "string"
              },
              {
                "name": "itemKey",
                "description": "React-safe alias for `key`.\n\nReact reserves `key` and won't forward it to custom elements, so wrapper users can pass `itemKey` instead.",
                "type": "string"
              },
              {
                "name": "label",
                "description": "Alternate label content when using Antd-style `items` configuration.",
                "type": "unknown | undefined"
              },
              {
                "name": "icon",
                "description": "Alternate icon content when using Antd-style `items` configuration.",
                "type": "unknown | undefined"
              },
              {
                "name": "extra",
                "description": "Extra content shown at the end of the item.",
                "type": "unknown | undefined"
              },
              {
                "name": "danger",
                "description": "Matches Antd's `danger` item flag.",
                "type": "boolean"
              },
              {
                "name": "title",
                "description": "Tooltip text, primarily used when the menu is collapsed.",
                "type": "string"
              },
              {
                "name": "disabled",
                "description": "Draws the nav item in a disabled state.",
                "type": "boolean"
              },
              {
                "name": "active",
                "description": "Draws the nav item in an active (selected) state.",
                "type": "boolean"
              },
              {
                "name": "href",
                "description": "The URL to link to. If set, the nav item will render as an anchor tag.",
                "type": "string"
              },
              {
                "name": "target",
                "description": "The target attribute for the anchor tag.",
                "type": "'_blank' | '_parent' | '_self' | '_top'"
              },
              {
                "name": "download",
                "description": "The download attribute for the anchor tag.",
                "type": "string | undefined"
              },
              {
                "name": "rel",
                "description": "The rel attribute for the anchor tag.",
                "type": "string"
              },
              {
                "name": "mode",
                "description": "The mode of navigation.",
                "type": "'horizontal' | 'inline' | 'vertical'"
              },
              {
                "name": "collapsed",
                "description": "Whether the parent nav is in inline-collapsed mode.",
                "type": "boolean"
              },
              {
                "name": "divider",
                "description": "Shows a divider line above this nav item.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-nav-select",
                "type": "{ item: SlNavItem }",
                "description": "Emitted when a nav item is selected."
              }
            ]
          }
        },
        {
          "name": "sl-nav-submenu",
          "description": "Nav submenus are used to group related nav items in a hierarchical structure.\n---\n\n\n### **Events:**\n - **sl-show** - Emitted when the submenu opens.\n- **sl-after-show** - Emitted after the submenu opens and all animations are complete.\n- **sl-hide** - Emitted when the submenu closes.\n- **sl-after-hide** - Emitted after the submenu closes and all animations are complete.\n\n### **Methods:**\n - **show(source: _'api' | 'nav' | 'user'_)** - Shows the submenu.\n- **hide(source: _'api' | 'nav' | 'user'_)** - Hides the submenu.\n\n### **Slots:**\n - _default_ - The nav items within the submenu.\n- **title** - The nav submenu's title.\n- **prefix** - Used to prepend an icon or similar element to the nav submenu.\n- **suffix** - Used to append an icon or similar element to the nav submenu.\n- **expand-icon** - Optional expand icon to use instead of the default. Works best with `<sl-icon>`.\n- **collapse-icon** - Optional collapse icon to use instead of the default. Works best with `<sl-icon>`.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **header** - The header that wraps the title, prefix, suffix and expand/collapse icon.\n- **prefix** - The prefix container.\n- **label** - The nav submenu label.\n- **suffix** - The suffix container.\n- **expand-icon** - The container that wraps the expand/collapse icons.\n- **content** - The nav submenu content.\n- **popup** - The popup that wraps the content in horizontal mode.",
          "doc-url": "",
          "attributes": [
            {
              "name": "key",
              "description": "A stable key used by `sl-nav` to track open state.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "item-key",
              "description": "React-safe alias for `key`.\n\nReact reserves `key` and won't forward it to custom elements, so wrapper users can pass `itemKey` instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "open",
              "description": "Indicates whether or not the submenu is open.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "nested",
              "description": "Indicates if this submenu is nested within another submenu.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "title",
              "description": "The summary to show in the header. If you need to display HTML, use the `title` slot instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "theme",
              "description": "Matches Antd's `theme` field.",
              "value": { "type": "'light' | 'dark'", "default": "'light'" }
            },
            {
              "name": "popup-class-name",
              "description": "Matches Antd's `popupClassName` field.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "disabled",
              "description": "Draws the submenu in a disabled state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "active",
              "description": "Draws the submenu in an active (selected) state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "mode",
              "description": "The mode of navigation.",
              "value": {
                "type": "'horizontal' | 'inline' | 'vertical'",
                "default": "'inline'"
              }
            },
            {
              "name": "collapsed",
              "description": "Whether the parent nav is in inline-collapsed mode.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "divider",
              "description": "Shows a divider line above this submenu.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "", "description": "The nav items within the submenu." },
            { "name": "title", "description": "The nav submenu's title." },
            {
              "name": "prefix",
              "description": "Used to prepend an icon or similar element to the nav submenu."
            },
            {
              "name": "suffix",
              "description": "Used to append an icon or similar element to the nav submenu."
            },
            {
              "name": "expand-icon",
              "description": "Optional expand icon to use instead of the default. Works best with `<sl-icon>`."
            },
            {
              "name": "collapse-icon",
              "description": "Optional collapse icon to use instead of the default. Works best with `<sl-icon>`."
            }
          ],
          "events": [
            {
              "name": "sl-show",
              "description": "Emitted when the submenu opens."
            },
            {
              "name": "sl-after-show",
              "description": "Emitted after the submenu opens and all animations are complete."
            },
            {
              "name": "sl-hide",
              "description": "Emitted when the submenu closes."
            },
            {
              "name": "sl-after-hide",
              "description": "Emitted after the submenu closes and all animations are complete."
            }
          ],
          "js": {
            "properties": [
              { "name": "header", "type": "HTMLElement" },
              { "name": "body", "type": "HTMLElement" },
              { "name": "popup", "type": "SlPopup" },
              {
                "name": "key",
                "description": "A stable key used by `sl-nav` to track open state.",
                "type": "string"
              },
              {
                "name": "itemKey",
                "description": "React-safe alias for `key`.\n\nReact reserves `key` and won't forward it to custom elements, so wrapper users can pass `itemKey` instead.",
                "type": "string"
              },
              {
                "name": "open",
                "description": "Indicates whether or not the submenu is open.",
                "type": "boolean"
              },
              {
                "name": "nested",
                "description": "Indicates if this submenu is nested within another submenu.",
                "type": "boolean"
              },
              {
                "name": "title",
                "description": "The summary to show in the header. If you need to display HTML, use the `title` slot instead.",
                "type": "string"
              },
              {
                "name": "label",
                "description": "Matches Antd's `label` field.",
                "type": "unknown | undefined"
              },
              {
                "name": "icon",
                "description": "Matches Antd's `icon` field.",
                "type": "unknown | undefined"
              },
              {
                "name": "theme",
                "description": "Matches Antd's `theme` field.",
                "type": "'light' | 'dark'"
              },
              {
                "name": "popupClassName",
                "description": "Matches Antd's `popupClassName` field.",
                "type": "string"
              },
              {
                "name": "popupOffset",
                "description": "Matches Antd's `popupOffset` field.",
                "type": "[number, number] | undefined"
              },
              {
                "name": "onTitleClick",
                "description": "Matches Antd's `onTitleClick` callback.",
                "type": "(info: { key: string; domEvent: MouseEvent | KeyboardEvent }) => void | undefined"
              },
              {
                "name": "disabled",
                "description": "Draws the submenu in a disabled state.",
                "type": "boolean"
              },
              {
                "name": "active",
                "description": "Draws the submenu in an active (selected) state.",
                "type": "boolean"
              },
              {
                "name": "mode",
                "description": "The mode of navigation.",
                "type": "'horizontal' | 'inline' | 'vertical'"
              },
              {
                "name": "collapsed",
                "description": "Whether the parent nav is in inline-collapsed mode.",
                "type": "boolean"
              },
              {
                "name": "divider",
                "description": "Shows a divider line above this submenu.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-show",
                "description": "Emitted when the submenu opens."
              },
              {
                "name": "sl-after-show",
                "description": "Emitted after the submenu opens and all animations are complete."
              },
              {
                "name": "sl-hide",
                "description": "Emitted when the submenu closes."
              },
              {
                "name": "sl-after-hide",
                "description": "Emitted after the submenu closes and all animations are complete."
              }
            ]
          }
        },
        {
          "name": "sl-notification",
          "description": "Notifications are used to display global messages as feedback in response to user actions.\n---\n\n\n### **Events:**\n - **sl-show** - Emitted when the notification opens.\n- **sl-after-show** - Emitted after the notification opens and all animations are complete.\n- **sl-hide** - Emitted when the notification closes.\n- **sl-after-hide** - Emitted after the notification closes and all animations are complete.\n\n### **Methods:**\n - **open(config: _NotificationConfig_): _SlNotification_** - Open a notification with the given configuration.\n- **success(config: _Omit<NotificationConfig, 'type'> | string_): _SlNotification_** - Shorthand for opening a success notification.\n- **info(config: _Omit<NotificationConfig, 'type'> | string_): _SlNotification_** - Shorthand for opening an info notification.\n- **warning(config: _Omit<NotificationConfig, 'type'> | string_): _SlNotification_** - Shorthand for opening a warning notification.\n- **error(config: _Omit<NotificationConfig, 'type'> | string_): _SlNotification_** - Shorthand for opening an error notification.\n- **destroy(key: _string_)** - Destroy a notification by key.\n- **updateContainerPositions()** - Update container positions when global config changes.\n- **config(config: _NotificationGlobalConfig_)** - Configure global notification settings.\n- **show()** - Shows the notification.\n- **hide()** - Hides the notification.\n\n### **Slots:**\n - _default_ - The notification's main content (description).\n- **title** - The notification's title.\n- **icon** - An icon to show in the notification.\n- **actions** - Actions/buttons to show in the notification.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **icon** - The container that wraps the optional icon.\n- **content** - The container that wraps the notification's content.\n- **title** - The notification's title.\n- **description** - The notification's description.\n- **actions** - The container that wraps the actions.\n- **close-button** - The close button.\n- **progress** - The progress bar container.\n- **progress-bar** - The progress bar.",
          "doc-url": "",
          "attributes": [
            {
              "name": "open",
              "description": "Indicates whether or not the notification is open.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "closable",
              "description": "Enables a close button that allows the user to dismiss the notification.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "close-icon",
              "description": "Custom close icon name. Set to null or false to hide the close button.",
              "value": { "type": "string | null | false" }
            },
            {
              "name": "type",
              "description": "The notification's type variant.",
              "value": { "type": "NotificationType", "default": "'info'" }
            },
            {
              "name": "duration",
              "description": "The length of time, in milliseconds, the notification will show before closing itself. Set to false or 0 to disable.",
              "value": { "type": "number | false" }
            },
            {
              "name": "placement",
              "description": "The placement of the notification.",
              "value": {
                "type": "NotificationPlacement",
                "default": "'topRight'"
              }
            },
            {
              "name": "show-progress",
              "description": "Whether to show the progress bar.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "pause-on-hover",
              "description": "Whether to pause the auto-hide timer when hovering.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "key",
              "description": "A unique key for the notification.",
              "value": { "type": "string | undefined" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "The notification's main content (description)."
            },
            { "name": "title", "description": "The notification's title." },
            {
              "name": "icon",
              "description": "An icon to show in the notification."
            },
            {
              "name": "actions",
              "description": "Actions/buttons to show in the notification."
            }
          ],
          "events": [
            {
              "name": "sl-show",
              "description": "Emitted when the notification opens."
            },
            {
              "name": "sl-after-show",
              "description": "Emitted after the notification opens and all animations are complete."
            },
            {
              "name": "sl-hide",
              "description": "Emitted when the notification closes."
            },
            {
              "name": "sl-after-hide",
              "description": "Emitted after the notification closes and all animations are complete."
            }
          ],
          "js": {
            "properties": [
              { "name": "base", "type": "HTMLElement" },
              { "name": "progressBar", "type": "HTMLElement" },
              {
                "name": "open",
                "description": "Indicates whether or not the notification is open.",
                "type": "boolean"
              },
              {
                "name": "closable",
                "description": "Enables a close button that allows the user to dismiss the notification.",
                "type": "boolean"
              },
              {
                "name": "closeIcon",
                "description": "Custom close icon name. Set to null or false to hide the close button.",
                "type": "string | null | false"
              },
              {
                "name": "type",
                "description": "The notification's type variant.",
                "type": "NotificationType"
              },
              {
                "name": "duration",
                "description": "The length of time, in milliseconds, the notification will show before closing itself. Set to false or 0 to disable.",
                "type": "number | false"
              },
              {
                "name": "placement",
                "description": "The placement of the notification.",
                "type": "NotificationPlacement"
              },
              {
                "name": "showProgress",
                "description": "Whether to show the progress bar.",
                "type": "boolean"
              },
              {
                "name": "pauseOnHover",
                "description": "Whether to pause the auto-hide timer when hovering.",
                "type": "boolean"
              },
              {
                "name": "key",
                "description": "A unique key for the notification.",
                "type": "string | undefined"
              }
            ],
            "events": [
              {
                "name": "sl-show",
                "description": "Emitted when the notification opens."
              },
              {
                "name": "sl-after-show",
                "description": "Emitted after the notification opens and all animations are complete."
              },
              {
                "name": "sl-hide",
                "description": "Emitted when the notification closes."
              },
              {
                "name": "sl-after-hide",
                "description": "Emitted after the notification closes and all animations are complete."
              }
            ]
          }
        },
        {
          "name": "sl-option",
          "description": "Options define the selectable items within various form controls such as [select](/components/select).\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 `<sl-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": "defaultSlot", "type": "HTMLSlotElement" },
              { "name": "current", "type": "boolean" },
              { "name": "selected", "type": "boolean" },
              { "name": "hasHover", "type": "boolean" },
              {
                "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.",
                "type": "string"
              },
              {
                "name": "disabled",
                "description": "Draws the option in a disabled state, preventing selection.",
                "type": "boolean"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-pagination",
          "description": "\n---\n",
          "doc-url": "",
          "attributes": [
            { "name": "currentPage", "value": { "type": "number" } },
            {
              "name": "pageSize",
              "value": { "type": "number", "default": "20" }
            },
            {
              "name": "pageSizeOpts",
              "value": { "type": "array", "default": "[10, 20, 50, 100]" }
            },
            {
              "name": "total",
              "value": { "type": "number", "default": "5000" }
            },
            {
              "name": "disabled",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "className",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "simpleMode",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "direction",
              "value": { "type": "'ltr' | 'rtl'", "default": "'ltr'" }
            },
            {
              "name": "defaultCurrentPage",
              "value": { "type": "number", "default": "1" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              { "name": "currentPage", "type": "number" },
              { "name": "pageSize", "type": "number" },
              { "name": "pageSizeOpts", "type": "array" },
              { "name": "total", "type": "number" },
              { "name": "disabled", "type": "boolean" },
              { "name": "className", "type": "string" },
              { "name": "simpleMode", "type": "boolean" },
              { "name": "direction", "type": "'ltr' | 'rtl'" },
              { "name": "defaultCurrentPage", "type": "number" }
            ],
            "events": []
          }
        },
        {
          "name": "sl-popconfirm",
          "description": "气泡确认框，在目标元素附近弹出轻量级确认浮层。\n---\n\n\n### **Slots:**\n - _default_ - 触发元素\n- **icon** - 自定义图标",
          "doc-url": "",
          "attributes": [
            {
              "name": "description",
              "description": "确认框描述",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "ok-text",
              "description": "确认按钮文字",
              "value": { "type": "string", "default": "'确定'" }
            },
            {
              "name": "cancel-text",
              "description": "取消按钮文字",
              "value": { "type": "string", "default": "'取消'" }
            },
            {
              "name": "placement",
              "description": "弹出位置",
              "value": { "type": "PopconfirmPlacement", "default": "'top'" }
            },
            {
              "name": "open",
              "description": "是否显示",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "是否禁用",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "icon",
              "description": "图标名称",
              "value": {
                "type": "string",
                "default": "'exclamation-circle-fill'"
              }
            },
            {
              "name": "arrow",
              "description": "是否显示箭头，支持设置箭头是否精准指向目标元素的物理中心",
              "value": { "type": "PopconfirmArrow", "default": "true" }
            },
            {
              "name": "ok-type",
              "description": "确认按钮类型",
              "value": {
                "type": "'primary' | 'danger' | 'default'",
                "default": "'primary'"
              }
            },
            {
              "name": "direction",
              "description": "文字方向：ltr（从左到右）或 rtl（从右到左）",
              "value": { "type": "'ltr' | 'rtl'", "default": "'ltr'" }
            }
          ],
          "slots": [
            { "name": "", "description": "触发元素" },
            { "name": "icon", "description": "自定义图标" }
          ],
          "events": [],
          "js": {
            "properties": [
              { "name": "popup", "type": "SlPopup" },
              {
                "name": "title",
                "description": "确认框标题",
                "type": "string"
              },
              {
                "name": "description",
                "description": "确认框描述",
                "type": "string"
              },
              {
                "name": "okText",
                "description": "确认按钮文字",
                "type": "string"
              },
              {
                "name": "cancelText",
                "description": "取消按钮文字",
                "type": "string"
              },
              {
                "name": "placement",
                "description": "弹出位置",
                "type": "PopconfirmPlacement"
              },
              { "name": "open", "description": "是否显示", "type": "boolean" },
              {
                "name": "disabled",
                "description": "是否禁用",
                "type": "boolean"
              },
              { "name": "icon", "description": "图标名称", "type": "string" },
              {
                "name": "arrow",
                "description": "是否显示箭头，支持设置箭头是否精准指向目标元素的物理中心",
                "type": "PopconfirmArrow"
              },
              {
                "name": "okType",
                "description": "确认按钮类型",
                "type": "'primary' | 'danger' | 'default'"
              },
              {
                "name": "onConfirm",
                "description": "点击确认的回调，支持返回 Promise 实现异步确认",
                "type": "() => void | Promise<void> | undefined"
              },
              {
                "name": "onCancel",
                "description": "点击取消的回调",
                "type": "() => void | undefined"
              },
              {
                "name": "classNames",
                "description": "自定义语义化结构的 CSS 类名",
                "type": "PopconfirmClassNames | undefined"
              },
              {
                "name": "customStyles",
                "description": "自定义语义化结构的内联样式，支持对象或函数",
                "type": "PopconfirmStyles | undefined"
              },
              {
                "name": "direction",
                "description": "文字方向：ltr（从左到右）或 rtl（从右到左）",
                "type": "'ltr' | 'rtl'"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-popup",
          "description": "Popup is a utility that lets you declaratively anchor \"popup\" containers to another element.\n---\n\n\n### **Events:**\n - **sl-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(--sl-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. Use 'min-width' to set minimum width only.",
              "value": { "type": "'width' | 'height' | 'both' | 'min-width'" }
            },
            {
              "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": "sl-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": "popup",
                "description": "A reference to the internal popup container. Useful for animating and styling the popup with JavaScript.",
                "type": "HTMLElement"
              },
              {
                "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.",
                "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.",
                "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.",
                "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.",
                "type": "'absolute' | 'fixed'"
              },
              {
                "name": "distance",
                "description": "The distance in pixels from which to offset the panel away from its anchor.",
                "type": "number"
              },
              {
                "name": "skidding",
                "description": "The distance in pixels from which to offset the panel along its anchor.",
                "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.",
                "type": "boolean"
              },
              {
                "name": "arrowPlacement",
                "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.",
                "type": "'start' | 'end' | 'center' | 'anchor'"
              },
              {
                "name": "arrowPadding",
                "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.",
                "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.",
                "type": "boolean"
              },
              {
                "name": "flipFallbackPlacements",
                "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.",
                "type": "string"
              },
              {
                "name": "flipFallbackStrategy",
                "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.",
                "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.",
                "type": "Element | Element[]"
              },
              {
                "name": "flipPadding",
                "description": "The amount of padding, in pixels, to exceed before the flip behavior will occur.",
                "type": "number"
              },
              {
                "name": "shift",
                "description": "Moves the popup along the axis to keep it in view when clipped.",
                "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.",
                "type": "Element | Element[]"
              },
              {
                "name": "shiftPadding",
                "description": "The amount of padding, in pixels, to exceed before the shift behavior will occur.",
                "type": "number"
              },
              {
                "name": "autoSize",
                "description": "When set, this will cause the popup to automatically resize itself to prevent it from overflowing.",
                "type": "'horizontal' | 'vertical' | 'both'"
              },
              {
                "name": "sync",
                "description": "Syncs the popup's width or height to that of the anchor element. Use 'min-width' to set minimum width only.",
                "type": "'width' | 'height' | 'both' | 'min-width'"
              },
              {
                "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.",
                "type": "Element | Element[]"
              },
              {
                "name": "autoSizePadding",
                "description": "The amount of padding, in pixels, to exceed before the auto-size behavior will occur.",
                "type": "number"
              },
              {
                "name": "hoverBridge",
                "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.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-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": "sl-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: undefined)_\n- **--track-color** - The color of the track. _(default: undefined)_\n- **--indicator-color** - The color of the indicator. _(default: undefined)_\n- **--label-color** - The color of the label. _(default: undefined)_\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.",
                "type": "number"
              },
              {
                "name": "indeterminate",
                "description": "When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.",
                "type": "boolean"
              },
              {
                "name": "label",
                "description": "A custom label for assistive devices.",
                "type": "string"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-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": "canvas", "type": "HTMLElement" },
              {
                "name": "value",
                "description": "The QR code's value.",
                "type": "string"
              },
              {
                "name": "label",
                "description": "The label for assistive devices to announce. If unspecified, the value will be used instead.",
                "type": "string"
              },
              {
                "name": "size",
                "description": "The size of the QR code, in pixels.",
                "type": "number"
              },
              {
                "name": "fill",
                "description": "The fill color. This can be any valid CSS color, but not a CSS custom property.",
                "type": "string"
              },
              {
                "name": "background",
                "description": "The background color. This can be any valid CSS color or `transparent`. It cannot be a CSS custom property.",
                "type": "string"
              },
              {
                "name": "radius",
                "description": "The edge radius of each module. Must be between 0 and 0.5.",
                "type": "number"
              },
              {
                "name": "errorCorrection",
                "description": "The level of error correction to use. [Learn more](https://www.qrcode.com/en/about/error_correction.html)",
                "type": "'L' | 'M' | 'Q' | 'H'"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-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": "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": "indicator", "type": "SVGCircleElement" },
              { "name": "indicatorOffset", "type": "string" },
              {
                "name": "value",
                "description": "The current progress as a percentage, 0 to 100.",
                "type": "number"
              },
              {
                "name": "label",
                "description": "A custom label for assistive devices.",
                "type": "string"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-radio",
          "description": "Radios allow the user to select a single option from a group.\n---\n\n\n### **Events:**\n - **sl-blur** - Emitted when the control loses focus.\n- **sl-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 `<sl-icon>` element.\n- **label** - The container that wraps the radio's label.",
          "doc-url": "",
          "attributes": [
            {
              "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": "sl-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the control gains focus."
            }
          ],
          "js": {
            "properties": [
              { "name": "checked", "type": "boolean" },
              {
                "name": "value",
                "description": "The radio's value. When selected, the radio group will receive this 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.",
                "type": "'small' | 'medium' | 'large'"
              },
              {
                "name": "disabled",
                "description": "Disables the radio.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the control gains focus."
              }
            ]
          }
        },
        {
          "name": "sl-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 - **sl-blur** - Emitted when the button loses focus.\n- **sl-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": "sl-blur",
              "description": "Emitted when the button loses focus."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the button gains focus."
            }
          ],
          "js": {
            "properties": [
              { "name": "input", "type": "HTMLInputElement" },
              { "name": "hiddenInput", "type": "HTMLInputElement" },
              {
                "name": "value",
                "description": "The radio's value. When selected, the radio group will receive this value.",
                "type": "string"
              },
              {
                "name": "disabled",
                "description": "Disables the radio button.",
                "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.",
                "type": "'small' | 'medium' | 'large'"
              },
              {
                "name": "pill",
                "description": "Draws a pill-style radio button with rounded edges.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-blur",
                "description": "Emitted when the button loses focus."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the button gains focus."
              }
            ]
          }
        },
        {
          "name": "sl-radio-group",
          "description": "Radio groups are used to group multiple [radios](/components/radio) or [radio buttons](/components/radio-button) so they function as a single form control.\n---\n\n\n### **Events:**\n - **sl-change** - Emitted when the radio group's selected value changes.\n- **sl-input** - Emitted when the radio group receives user input.\n- **sl-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- **focus(options: _FocusOptions_)** - Sets focus on the radio-group.\n\n### **Slots:**\n - _default_ - The default slot where `<sl-radio>` or `<sl-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.\n- **radios** - The container that wraps the radio elements (only when not using radio buttons).",
          "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": "layout",
              "description": "The layout direction of the radio group.",
              "value": {
                "type": "'horizontal' | 'vertical'",
                "default": "'vertical'"
              }
            },
            {
              "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 `<sl-radio>` or `<sl-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": "sl-change",
              "description": "Emitted when the radio group's selected value changes."
            },
            {
              "name": "sl-input",
              "description": "Emitted when the radio group receives user input."
            },
            {
              "name": "sl-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              { "name": "defaultSlot", "type": "HTMLSlotElement" },
              { "name": "validationInput", "type": "HTMLInputElement" },
              { "name": "defaultValue", "type": "string" },
              {
                "name": "label",
                "description": "The radio group's label. Required for proper accessibility. If you need to display HTML, use the `label` slot\ninstead.",
                "type": "string"
              },
              {
                "name": "helpText",
                "description": "The radio groups's help text. If you need to display HTML, use the `help-text` slot instead.",
                "type": "string"
              },
              {
                "name": "name",
                "description": "The name of the radio group, submitted as a name/value pair with form data.",
                "type": "string"
              },
              {
                "name": "value",
                "description": "The current value of the radio group, submitted as a name/value pair with form data.",
                "type": "string"
              },
              {
                "name": "size",
                "description": "The radio group's size. This size will be applied to all child radios and radio buttons.",
                "type": "'small' | 'medium' | 'large'"
              },
              {
                "name": "layout",
                "description": "The layout direction of the radio group.",
                "type": "'horizontal' | 'vertical'"
              },
              {
                "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.",
                "type": "string"
              },
              {
                "name": "required",
                "description": "Ensures a child radio is checked before allowing the containing form to submit.",
                "type": "boolean"
              },
              {
                "name": "validity",
                "description": "Gets the validity state object"
              },
              {
                "name": "validationMessage",
                "description": "Gets the validation message"
              }
            ],
            "events": [
              {
                "name": "sl-change",
                "description": "Emitted when the radio group's selected value changes."
              },
              {
                "name": "sl-input",
                "description": "Emitted when the radio group receives user input."
              },
              {
                "name": "sl-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "sl-range",
          "description": "Ranges allow the user to select a single value within a given range using a slider.\n---\n\n\n### **Events:**\n - **sl-blur** - Emitted when the control loses focus.\n- **sl-change** - Emitted when an alteration to the control's value is committed by the user.\n- **sl-focus** - Emitted when the control gains focus.\n- **sl-input** - Emitted when the control receives input.\n- **sl-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": "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": "sl-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "sl-change",
              "description": "Emitted when an alteration to the control's value is committed by the user."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the control gains focus."
            },
            {
              "name": "sl-input",
              "description": "Emitted when the control receives input."
            },
            {
              "name": "sl-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              { "name": "input", "type": "HTMLInputElement" },
              { "name": "output", "type": "HTMLOutputElement | null" },
              { "name": "title", "type": "string" },
              {
                "name": "name",
                "description": "The name of the range, submitted as a name/value pair with form data.",
                "type": "string"
              },
              {
                "name": "value",
                "description": "The current value of the range, submitted as a name/value pair with form data.",
                "type": "number"
              },
              {
                "name": "label",
                "description": "The range's label. If you need to display HTML, use the `label` slot instead.",
                "type": "string"
              },
              {
                "name": "helpText",
                "description": "The range's help text. If you need to display HTML, use the help-text slot instead.",
                "type": "string"
              },
              {
                "name": "disabled",
                "description": "Disables the range.",
                "type": "boolean"
              },
              {
                "name": "min",
                "description": "The minimum acceptable value of the range.",
                "type": "number"
              },
              {
                "name": "max",
                "description": "The maximum acceptable value of the range.",
                "type": "number"
              },
              {
                "name": "step",
                "description": "The interval at which the range will increase and decrease.",
                "type": "number"
              },
              {
                "name": "tooltip",
                "description": "The preferred placement of the range's tooltip.",
                "type": "'top' | 'bottom' | 'none'"
              },
              {
                "name": "tooltipFormatter",
                "description": "A function used to format the tooltip's value. The range's value is passed as the first and only argument. The\nfunction should return a string to display in the tooltip.",
                "type": "(value: number) => 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.",
                "type": "string"
              },
              {
                "name": "defaultValue",
                "description": "The default value of the form control. Primarily used for resetting the form control.",
                "type": "number"
              },
              {
                "name": "validity",
                "description": "Gets the validity state object"
              },
              {
                "name": "validationMessage",
                "description": "Gets the validation message"
              }
            ],
            "events": [
              {
                "name": "sl-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "sl-change",
                "description": "Emitted when an alteration to the control's value is committed by the user."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the control gains focus."
              },
              {
                "name": "sl-input",
                "description": "Emitted when the control receives input."
              },
              {
                "name": "sl-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "sl-rating",
          "description": "Ratings give users a way to quickly view and provide feedback.\n---\n\n\n### **Events:**\n - **sl-change** - Emitted when the rating's value changes.\n- **sl-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.",
          "doc-url": "",
          "attributes": [
            {
              "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": "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 `<sl-icon>` elements.",
              "value": { "type": "(value: number) => string" }
            }
          ],
          "events": [
            {
              "name": "sl-change",
              "description": "Emitted when the rating's value changes."
            },
            {
              "name": "sl-hover",
              "type": "{ phase: 'start' | 'move' | 'end', value: number }",
              "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": "rating", "type": "HTMLElement" },
              {
                "name": "label",
                "description": "A label that describes the rating to assistive devices.",
                "type": "string"
              },
              {
                "name": "value",
                "description": "The current rating.",
                "type": "number"
              },
              {
                "name": "max",
                "description": "The highest rating to show.",
                "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`.",
                "type": "number"
              },
              {
                "name": "readonly",
                "description": "Makes the rating readonly.",
                "type": "boolean"
              },
              {
                "name": "disabled",
                "description": "Disables the rating.",
                "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 `<sl-icon>` elements.",
                "type": "(value: number) => string"
              }
            ],
            "events": [
              {
                "name": "sl-change",
                "description": "Emitted when the rating's value changes."
              },
              {
                "name": "sl-hover",
                "type": "{ phase: 'start' | 'move' | 'end', value: number }",
                "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": "sl-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).",
                "type": "Date | string"
              },
              {
                "name": "format",
                "description": "The formatting style to use.",
                "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.",
                "type": "'always' | 'auto'"
              },
              {
                "name": "sync",
                "description": "Keep the displayed value up to date as time passes.",
                "type": "boolean"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-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 - **sl-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": "sl-resize",
              "type": "{ entries: ResizeObserverEntry[] }",
              "description": "Emitted when the element is resized."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "disabled",
                "description": "Disables the observer.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-resize",
                "type": "{ entries: ResizeObserverEntry[] }",
                "description": "Emitted when the element is resized."
              }
            ]
          }
        },
        {
          "name": "sl-row",
          "description": "Row component for grid layout system.\n---\n\n\n### **Slots:**\n - _default_ - The default slot for Col components.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
          "doc-url": "",
          "attributes": [
            {
              "name": "gutter",
              "description": "Spacing between columns, can be a number or responsive object",
              "value": { "type": "Gutter | [Gutter, Gutter]", "default": "0" }
            },
            {
              "name": "align",
              "description": "Vertical alignment of columns",
              "value": { "type": "RowAlign", "default": "'top'" }
            },
            {
              "name": "justify",
              "description": "Horizontal arrangement of columns",
              "value": { "type": "RowJustify", "default": "'start'" }
            },
            {
              "name": "wrap",
              "description": "Whether to wrap columns",
              "value": { "type": "boolean", "default": "true" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "The default slot for Col components."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "gutter",
                "description": "Spacing between columns, can be a number or responsive object",
                "type": "Gutter | [Gutter, Gutter]"
              },
              {
                "name": "align",
                "description": "Vertical alignment of columns",
                "type": "RowAlign"
              },
              {
                "name": "justify",
                "description": "Horizontal arrangement of columns",
                "type": "RowJustify"
              },
              {
                "name": "wrap",
                "description": "Whether to wrap columns",
                "type": "boolean"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-screen",
          "description": "Screen is a grid layout component based on gridstack.js and Shoelace.\n---\n\n\n### **Methods:**\n - **getGridData(): __** - 获取 GridStack 实例的序列化数据\n- **getInstance(): __** - 获取 GridStack 实例的序列化数据\n\n### **CSS Parts:**\n - **base** - The grid layout content.",
          "doc-url": "",
          "attributes": [
            {
              "name": "options",
              "description": "The options for the GridStack instance.",
              "value": { "type": "GridStackOptions", "default": "{}" }
            },
            {
              "name": "data",
              "description": "The initial configuration for the grid.",
              "value": { "type": "GridStackNode[]", "default": "[]" }
            },
            {
              "name": "removable",
              "description": "Whether the items in the grid can be removed.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "static",
              "description": "Disables dragging and resizing of widgets.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "selector",
              "description": "The selector for items that can be dragged into the grid from outside.",
              "value": { "type": "string", "default": "''" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              { "name": "gridElement", "type": "HTMLElement" },
              {
                "name": "options",
                "description": "The options for the GridStack instance.",
                "type": "GridStackOptions"
              },
              {
                "name": "data",
                "description": "The initial configuration for the grid.",
                "type": "GridStackNode[]"
              },
              {
                "name": "removable",
                "description": "Whether the items in the grid can be removed.",
                "type": "boolean"
              },
              {
                "name": "static",
                "description": "Disables dragging and resizing of widgets.",
                "type": "boolean"
              },
              {
                "name": "selector",
                "description": "The selector for items that can be dragged into the grid from outside.",
                "type": "string"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-select",
          "description": "Selects allow you to choose items from a menu of predefined options.\n---\n\n\n### **Events:**\n - **sl-change** - Emitted when the control's value changes.\n- **sl-clear** - Emitted when the control's value is cleared.\n- **sl-input** - Emitted when the control receives input.\n- **sl-focus** - Emitted when the control gains focus.\n- **sl-blur** - Emitted when the control loses focus.\n- **sl-show** - Emitted when the select's menu opens.\n- **sl-after-show** - Emitted after the select's menu opens and all animations are complete.\n- **sl-hide** - Emitted when the select's menu closes.\n- **sl-after-hide** - Emitted after the select's menu closes and all animations are complete.\n- **sl-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 `<sl-option>` elements. You can use `<sl-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- **suffix** - Used to append 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, suffix, combobox, clear icon, and expand button.\n- **prefix** - The container that wraps the prefix slot.\n- **suffix** - The container that wraps the suffix 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 default value of the form control. Primarily used for resetting the form control.",
              "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": "true" }
            },
            {
              "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: SlOption, index: number) => TemplateResult | string | HTMLElement"
              }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "The listbox options. Must be `<sl-option>` elements. You can use `<sl-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": "suffix",
              "description": "Used to append 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": "sl-change",
              "description": "Emitted when the control's value changes."
            },
            {
              "name": "sl-clear",
              "description": "Emitted when the control's value is cleared."
            },
            {
              "name": "sl-input",
              "description": "Emitted when the control receives input."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the control gains focus."
            },
            {
              "name": "sl-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "sl-show",
              "description": "Emitted when the select's menu opens."
            },
            {
              "name": "sl-after-show",
              "description": "Emitted after the select's menu opens and all animations are complete."
            },
            {
              "name": "sl-hide",
              "description": "Emitted when the select's menu closes."
            },
            {
              "name": "sl-after-hide",
              "description": "Emitted after the select's menu closes and all animations are complete."
            },
            {
              "name": "sl-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              { "name": "popup", "type": "SlPopup" },
              { "name": "combobox", "type": "HTMLSlotElement" },
              { "name": "displayInput", "type": "HTMLInputElement" },
              { "name": "valueInput", "type": "HTMLInputElement" },
              { "name": "listbox", "type": "HTMLSlotElement" },
              { "name": "displayLabel", "type": "string" },
              { "name": "currentOption", "type": "SlOption" },
              { "name": "selectedOptions", "type": "SlOption[]" },
              {
                "name": "name",
                "description": "The name of the select, submitted as a name/value pair with form data.",
                "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 space-delimited list of values based on the options selected, and the value property will\nbe an array. **For this reason, values must not contain spaces.**"
              },
              {
                "name": "defaultValue",
                "description": "The default value of the form control. Primarily used for resetting the form control.",
                "type": "string | string[]"
              },
              {
                "name": "size",
                "description": "The select's size.",
                "type": "'small' | 'medium' | 'large'"
              },
              {
                "name": "placeholder",
                "description": "Placeholder text to show as a hint when the select is empty.",
                "type": "string"
              },
              {
                "name": "multiple",
                "description": "Allows more than one option to be selected.",
                "type": "boolean"
              },
              {
                "name": "maxOptionsVisible",
                "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.",
                "type": "number"
              },
              {
                "name": "disabled",
                "description": "Disables the select control.",
                "type": "boolean"
              },
              {
                "name": "clearable",
                "description": "Adds a clear button when the select is not empty.",
                "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.",
                "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.",
                "type": "boolean"
              },
              {
                "name": "filled",
                "description": "Draws a filled select.",
                "type": "boolean"
              },
              {
                "name": "pill",
                "description": "Draws a pill-style select with rounded edges.",
                "type": "boolean"
              },
              {
                "name": "label",
                "description": "The select's label. If you need to display HTML, use the `label` slot instead.",
                "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.",
                "type": "'top' | 'bottom'"
              },
              {
                "name": "helpText",
                "description": "The select's help text. If you need to display HTML, use the `help-text` slot instead.",
                "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.",
                "type": "string"
              },
              {
                "name": "required",
                "description": "The select's required attribute.",
                "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.",
                "type": "(option: SlOption, index: number) => TemplateResult | string | HTMLElement"
              },
              {
                "name": "validity",
                "description": "Gets the validity state object"
              },
              {
                "name": "validationMessage",
                "description": "Gets the validation message"
              }
            ],
            "events": [
              {
                "name": "sl-change",
                "description": "Emitted when the control's value changes."
              },
              {
                "name": "sl-clear",
                "description": "Emitted when the control's value is cleared."
              },
              {
                "name": "sl-input",
                "description": "Emitted when the control receives input."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the control gains focus."
              },
              {
                "name": "sl-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "sl-show",
                "description": "Emitted when the select's menu opens."
              },
              {
                "name": "sl-after-show",
                "description": "Emitted after the select's menu opens and all animations are complete."
              },
              {
                "name": "sl-hide",
                "description": "Emitted when the select's menu closes."
              },
              {
                "name": "sl-after-hide",
                "description": "Emitted after the select's menu closes and all animations are complete."
              },
              {
                "name": "sl-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "sl-segmented",
          "description": "\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "options",
              "value": {
                "type": "(string | number | SegmentedItem)[]",
                "default": "[]"
              }
            },
            {
              "name": "value",
              "value": { "type": "SegmentedValue | undefined" }
            },
            {
              "name": "defaultValue",
              "description": "非受控模式下的默认选中值",
              "value": { "type": "SegmentedValue | undefined" }
            },
            {
              "name": "disabled",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "orientation",
              "value": {
                "type": "'horizontal' | 'vertical'",
                "default": "'horizontal'"
              }
            },
            {
              "name": "shape",
              "value": { "type": "'default' | 'round'", "default": "'default'" }
            },
            {
              "name": "size",
              "value": {
                "type": "'large' | 'medium' | 'small'",
                "default": "'medium'"
              }
            },
            {
              "name": "block",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "name",
              "description": "分组名称，用于原生 radio 归组和键盘导航",
              "value": { "type": "string", "default": "'segmented'" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "options",
                "type": "(string | number | SegmentedItem)[]"
              },
              { "name": "value", "type": "SegmentedValue | undefined" },
              {
                "name": "defaultValue",
                "description": "非受控模式下的默认选中值",
                "type": "SegmentedValue | undefined"
              },
              {
                "name": "onChange",
                "type": "(value: SegmentedValue) => void | undefined"
              },
              { "name": "disabled", "type": "boolean" },
              { "name": "orientation", "type": "'horizontal' | 'vertical'" },
              { "name": "shape", "type": "'default' | 'round'" },
              { "name": "size", "type": "'large' | 'medium' | 'small'" },
              { "name": "block", "type": "boolean" },
              {
                "name": "name",
                "description": "分组名称，用于原生 radio 归组和键盘导航",
                "type": "string"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-sender-header",
          "description": "A collapsible header panel for the Sender component.\n---\n\n\n### **Events:**\n - **sl-open-change** - Emitted when the open state changes. `event.detail.open` indicates the new state.\n\n### **Slots:**\n - _default_ - The panel content (children).\n- **title** - The header title content. Alternatively use the `title` attribute for plain text.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **header** - The header bar containing title and close button.\n- **title** - The title wrapper inside the header.\n- **content** - The collapsible content area.",
          "doc-url": "",
          "attributes": [
            {
              "name": "open",
              "description": "Whether the panel content is expanded.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "closable",
              "description": "Whether the close/toggle button is shown.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "title",
              "description": "Plain-text title. Use the `title` slot for rich content.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "force-render",
              "description": "When true, the content DOM is always rendered even when collapsed.\nUseful when you need refs to inner elements on initial mount.\nWhen false (default), content is removed from the DOM when closed.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "", "description": "The panel content (children)." },
            {
              "name": "title",
              "description": "The header title content. Alternatively use the `title` attribute for plain text."
            }
          ],
          "events": [
            {
              "name": "sl-open-change",
              "description": "Emitted when the open state changes. `event.detail.open` indicates the new state."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "open",
                "description": "Whether the panel content is expanded.",
                "type": "boolean"
              },
              {
                "name": "closable",
                "description": "Whether the close/toggle button is shown.",
                "type": "boolean"
              },
              {
                "name": "title",
                "description": "Plain-text title. Use the `title` slot for rich content.",
                "type": "string"
              },
              {
                "name": "forceRender",
                "description": "When true, the content DOM is always rendered even when collapsed.\nUseful when you need refs to inner elements on initial mount.\nWhen false (default), content is removed from the DOM when closed.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-open-change",
                "description": "Emitted when the open state changes. `event.detail.open` indicates the new state."
              }
            ]
          }
        },
        {
          "name": "sl-sender",
          "description": "Senders are used to send messages. They support plain text input, structured slot-based input, speech recognition, skill tagging, and customizable header/footer/prefix/suffix areas.\n---\n\n\n### **Events:**\n - **sl-change** - Emitted when the sender's value changes. The event detail includes `{ value, slotConfig, skill }`.\n- **sl-submit** - Emitted when the sender's submit button is clicked or Enter is pressed. The event detail includes `{ value }` or `{ value, slotConfig, skill }` in slot mode.\n- **sl-clear** - Emitted when the sender's content is cleared.\n- **sl-speech-toggle** - Emitted when the sender's speech button is clicked.\n- **sl-focus** - Emitted when the sender's input area gains focus.\n- **sl-blur** - Emitted when the sender's input area loses focus.\n- **sl-paste** - Emitted when content is pasted into the sender. The event detail includes `{ event }`.\n- **sl-paste-file** - Emitted when files are pasted into the sender. The event detail includes `{ files }`.\n\n### **Methods:**\n - **focus(options: _SenderFocusOptions_)** - 聚焦输入区域，支持 cursor 选项控制光标位置。\n- 'end'（默认）：光标移到内容末尾\n- 'start'：光标移到内容开头\n- 'all'：全选内容\n- 'slot'：聚焦第一个 slot input，若不存在则等同 'end'\n- **blur()** - 移除输入区域焦点\n- **clear()** - 清空输入内容，slot 模式下同时重置 slotValues\n- **getValue(): _{ value: string; slotConfig: SlotConfigType[]; skill?: SkillType }_** - 获取当前输入值，slot 模式下返回完整的 { value, slotConfig, skill }\n- **insert(slotConfig: _SlotConfigType[]_, position: _InsertPosition_, _replaceCharacters: _string_, preventScroll: _boolean_)** - 插入文本或 slot 配置项到输入区域\nslot 模式下将 slotConfig 项渲染为 DOM 节点插入到 slot-area\n普通模式下将各项文本拼接后插入到 textarea\n\n### **Slots:**\n - **prefix** - Used to prepend content to the input area.\n- **suffix** - Used to append action buttons or content to the input area. Defaults to the speech button and send button.\n- **header** - Used to add content above the input area.\n- **footer** - Used to add content below the input area, such as toolbar actions.\n\n### **CSS Properties:**\n - **--sl-sender-border-width** - The border width of the sender container. _(default: undefined)_\n- **--sl-sender-border-color** - The border color of the sender container. _(default: undefined)_\n- **--sl-sender-border-color-hover** - The border color when hovered. _(default: undefined)_\n- **--sl-sender-border-color-focus** - The border color when focused. _(default: undefined)_\n- **--sl-sender-border-color-disabled** - The border color when disabled. _(default: undefined)_\n- **--sl-sender-background-color** - The background color of the sender container. _(default: undefined)_\n- **--sl-sender-background-color-disabled** - The background color when disabled. _(default: undefined)_\n- **--sl-sender-shadow** - The box shadow of the sender container. _(default: undefined)_\n- **--sl-sender-shadow-focus** - The box shadow when focused. _(default: undefined)_\n- **--sl-sender-input-color** - The text color of the input area. _(default: undefined)_\n- **--sl-sender-input-color-disabled** - The text color when disabled. _(default: undefined)_\n- **--sl-sender-input-placeholder-color** - The placeholder text color. _(default: undefined)_\n- **--sl-sender-input-placeholder-color-disabled** - The placeholder text color when disabled. _(default: undefined)_\n- **--sl-sender-action-color** - The color of action buttons. _(default: undefined)_\n- **--sl-sender-action-color-hover** - The color of action buttons when hovered. _(default: undefined)_\n- **--sl-sender-action-color-active** - The color of action buttons when active. _(default: undefined)_\n- **--sl-sender-action-color-disabled** - The color of action buttons when disabled. _(default: undefined)_\n- **--sl-sender-action-background-hover** - The background color of action buttons when hovered. _(default: undefined)_\n- **--sl-sender-action-background-active** - The background color of action buttons when active. _(default: undefined)_\n- **--sl-sender-action-border-radius** - The border radius of action buttons. _(default: undefined)_\n- **--sl-sender-submit-color** - The color of the submit button. _(default: undefined)_\n- **--sl-sender-submit-color-active** - The color of the submit button when active. _(default: undefined)_\n- **--sl-sender-submit-background** - The background color of the submit button. _(default: undefined)_\n- **--sl-sender-submit-background-hover** - The background color of the submit button when hovered. _(default: undefined)_\n- **--sl-sender-submit-background-active** - The background color of the submit button when active. _(default: undefined)_\n- **--sl-sender-submit-background-disabled** - The background color of the submit button when disabled. _(default: undefined)_\n- **--sl-sender-submit-border-radius** - The border radius of the submit button. _(default: undefined)_\n- **--sl-sender-voice-recording-background** - The background color of the recording button. _(default: undefined)_\n- **--sl-sender-voice-waveform-color** - The color of the voice waveform bars during recording. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **input** - The internal `<sl-textarea>` control (plain text mode).\n- **slot-area** - The slot-based input area container (slot mode).\n- **skill** - The skill tag element.\n- **header** - The header area wrapper.\n- **footer** - The footer area wrapper.\n- **actions** - The action buttons container in the suffix area.",
          "doc-url": "",
          "attributes": [
            {
              "name": "value",
              "description": "The current value of the sender, submitted as part of the event detail on submit.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "placeholder",
              "description": "Placeholder text to show as a hint when the input is empty.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "loading",
              "description": "Draws the sender in a loading state, typically used while waiting for a response.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "Disables the sender.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "read-only",
              "description": "Makes the sender readonly.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "rows",
              "description": "The number of rows to display for the textarea. Only applies in plain text mode.",
              "value": { "type": "number", "default": "1" }
            },
            {
              "name": "submit-type",
              "description": "Determines how the Enter key behaves. When set to `enter`, pressing Enter submits. When set to `shift-enter`, pressing Shift+Enter submits.",
              "value": {
                "type": "'enter' | 'shift-enter'",
                "default": "'enter'"
              }
            },
            {
              "name": "slotConfig",
              "description": "An array of slot configuration items for structured input mode. Supports `text`, `input`, `select`, `tag`, `content`, and `custom` types.",
              "value": { "type": "SlotConfigType[] | undefined" }
            },
            {
              "name": "skill",
              "description": "The skill tag to display in the slot input area. Includes `value`, optional `title`, and optional `closable` configuration.",
              "value": { "type": "SkillType | undefined" }
            },
            {
              "name": "footer",
              "description": "Custom footer content or render function. Set to `false` to hide the footer.",
              "value": { "type": "BaseNode | NodeRender | undefined" }
            },
            {
              "name": "header",
              "description": "Custom header content or render function. Set to `false` to hide the header.",
              "value": { "type": "BaseNode | NodeRender | undefined" }
            },
            {
              "name": "prefixContent",
              "description": "Custom prefix content or render function. Set to `false` to hide the prefix.",
              "value": { "type": "BaseNode | NodeRender | undefined" }
            },
            {
              "name": "suffixContent",
              "description": "Custom suffix content or render function. Set to `false` to hide the suffix (action buttons).",
              "value": { "type": "BaseNode | NodeRender | undefined" }
            },
            {
              "name": "allow-speech",
              "description": "Enables speech recognition input. Set to `true` for uncontrolled mode, or pass a `ControlledSpeechConfig` object for controlled mode.",
              "value": { "type": "AllowSpeech", "default": "false" }
            },
            {
              "name": "speech-recording",
              "description": "Whether speech recognition is currently recording. Only applies in uncontrolled speech mode.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "prefix",
              "description": "Used to prepend content to the input area."
            },
            {
              "name": "suffix",
              "description": "Used to append action buttons or content to the input area. Defaults to the speech button and send button."
            },
            {
              "name": "header",
              "description": "Used to add content above the input area."
            },
            {
              "name": "footer",
              "description": "Used to add content below the input area, such as toolbar actions."
            }
          ],
          "events": [
            {
              "name": "sl-change",
              "type": "CustomEvent",
              "description": "Emitted when the sender's value changes. The event detail includes `{ value, slotConfig, skill }`."
            },
            {
              "name": "sl-submit",
              "type": "CustomEvent",
              "description": "Emitted when the sender's submit button is clicked or Enter is pressed. The event detail includes `{ value }` or `{ value, slotConfig, skill }` in slot mode."
            },
            {
              "name": "sl-clear",
              "description": "Emitted when the sender's content is cleared."
            },
            {
              "name": "sl-speech-toggle",
              "description": "Emitted when the sender's speech button is clicked."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the sender's input area gains focus."
            },
            {
              "name": "sl-blur",
              "description": "Emitted when the sender's input area loses focus."
            },
            {
              "name": "sl-paste",
              "description": "Emitted when content is pasted into the sender. The event detail includes `{ event }`."
            },
            {
              "name": "sl-paste-file",
              "description": "Emitted when files are pasted into the sender. The event detail includes `{ files }`."
            }
          ],
          "js": {
            "properties": [
              { "name": "textarea", "type": "SlTextarea" },
              { "name": "slotArea", "type": "HTMLDivElement" },
              {
                "name": "value",
                "description": "The current value of the sender, submitted as part of the event detail on submit.",
                "type": "string"
              },
              {
                "name": "placeholder",
                "description": "Placeholder text to show as a hint when the input is empty.",
                "type": "string"
              },
              {
                "name": "loading",
                "description": "Draws the sender in a loading state, typically used while waiting for a response.",
                "type": "boolean"
              },
              {
                "name": "disabled",
                "description": "Disables the sender.",
                "type": "boolean"
              },
              {
                "name": "readOnly",
                "description": "Makes the sender readonly.",
                "type": "boolean"
              },
              {
                "name": "rows",
                "description": "The number of rows to display for the textarea. Only applies in plain text mode.",
                "type": "number"
              },
              {
                "name": "submitType",
                "description": "Determines how the Enter key behaves. When set to `enter`, pressing Enter submits. When set to `shift-enter`, pressing Shift+Enter submits.",
                "type": "'enter' | 'shift-enter'"
              },
              {
                "name": "slotConfig",
                "description": "An array of slot configuration items for structured input mode. Supports `text`, `input`, `select`, `tag`, `content`, and `custom` types.",
                "type": "SlotConfigType[] | undefined"
              },
              {
                "name": "skill",
                "description": "The skill tag to display in the slot input area. Includes `value`, optional `title`, and optional `closable` configuration.",
                "type": "SkillType | undefined"
              },
              {
                "name": "footer",
                "description": "Custom footer content or render function. Set to `false` to hide the footer.",
                "type": "BaseNode | NodeRender | undefined"
              },
              {
                "name": "header",
                "description": "Custom header content or render function. Set to `false` to hide the header.",
                "type": "BaseNode | NodeRender | undefined"
              },
              {
                "name": "prefixContent",
                "description": "Custom prefix content or render function. Set to `false` to hide the prefix.",
                "type": "BaseNode | NodeRender | undefined"
              },
              {
                "name": "suffixContent",
                "description": "Custom suffix content or render function. Set to `false` to hide the suffix (action buttons).",
                "type": "BaseNode | NodeRender | undefined"
              },
              {
                "name": "allowSpeech",
                "description": "Enables speech recognition input. Set to `true` for uncontrolled mode, or pass a `ControlledSpeechConfig` object for controlled mode.",
                "type": "AllowSpeech"
              },
              {
                "name": "speechRecording",
                "description": "Whether speech recognition is currently recording. Only applies in uncontrolled speech mode.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-change",
                "type": "CustomEvent",
                "description": "Emitted when the sender's value changes. The event detail includes `{ value, slotConfig, skill }`."
              },
              {
                "name": "sl-submit",
                "type": "CustomEvent",
                "description": "Emitted when the sender's submit button is clicked or Enter is pressed. The event detail includes `{ value }` or `{ value, slotConfig, skill }` in slot mode."
              },
              {
                "name": "sl-clear",
                "description": "Emitted when the sender's content is cleared."
              },
              {
                "name": "sl-speech-toggle",
                "description": "Emitted when the sender's speech button is clicked."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the sender's input area gains focus."
              },
              {
                "name": "sl-blur",
                "description": "Emitted when the sender's input area loses focus."
              },
              {
                "name": "sl-paste",
                "description": "Emitted when content is pasted into the sender. The event detail includes `{ event }`."
              },
              {
                "name": "sl-paste-file",
                "description": "Emitted when files are pasted into the sender. The event detail includes `{ files }`."
              }
            ]
          }
        },
        {
          "name": "sl-sender-switch",
          "description": "A toggle switch button for the Sender component, supporting checked/unchecked states\nwith optional distinct content for each state.\n---\n\n\n### **Events:**\n - **sl-change** - Emitted when the switch's checked state changes. Read `el.checked` for the new state.\n\n### **Slots:**\n - _default_ - The switch's default content (always shown).\n- **icon** - The switch's icon.\n- **checked** - Content shown only when checked.\n- **unchecked** - Content shown only when unchecked.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper (the button element).",
          "doc-url": "",
          "attributes": [
            {
              "name": "checked",
              "description": "Whether the switch is in the checked (active) state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "default-checked",
              "description": "The initial checked state when uncontrolled. Only used on first render.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "Disables the switch.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "loading",
              "description": "Shows a loading spinner on the switch.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "The switch's default content (always shown)."
            },
            { "name": "icon", "description": "The switch's icon." },
            {
              "name": "checked",
              "description": "Content shown only when checked."
            },
            {
              "name": "unchecked",
              "description": "Content shown only when unchecked."
            }
          ],
          "events": [
            {
              "name": "sl-change",
              "type": "CustomEvent",
              "description": "Emitted when the switch's checked state changes. Read `el.checked` for the new state."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "checked",
                "description": "Whether the switch is in the checked (active) state.",
                "type": "boolean"
              },
              {
                "name": "defaultChecked",
                "description": "The initial checked state when uncontrolled. Only used on first render.",
                "type": "boolean"
              },
              {
                "name": "disabled",
                "description": "Disables the switch.",
                "type": "boolean"
              },
              {
                "name": "loading",
                "description": "Shows a loading spinner on the switch.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-change",
                "type": "CustomEvent",
                "description": "Emitted when the switch's checked state changes. Read `el.checked` for the new state."
              }
            ]
          }
        },
        {
          "name": "sl-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.",
                "type": "'pulse' | 'sheen' | 'none'"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-space",
          "description": "Space 组件用于设置组件之间的间距。\n---\n\n\n### **Slots:**\n - _default_ - 需要添加间距的子元素。\n\n### **CSS Properties:**\n - **--gap** - 自定义间距大小。 _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - 组件的基础容器。\n- **item** - 每个子元素的包装容器。\n- **separator** - 分隔符容器。",
          "doc-url": "",
          "attributes": [
            {
              "name": "orientation",
              "description": "间距方向，vertical 为垂直方向，horizontal 为水平方向",
              "value": {
                "type": "'horizontal' | 'vertical'",
                "default": "'horizontal'"
              }
            },
            {
              "name": "size",
              "description": "间距大小，可选 small、medium、large 或自定义数值（单位为 px）",
              "value": {
                "type": "SpaceSize | [SpaceSize, SpaceSize]",
                "default": "'small'"
              }
            },
            {
              "name": "align",
              "description": "对齐方式",
              "value": {
                "type": "'start' | 'end' | 'center' | 'baseline' | undefined"
              }
            },
            {
              "name": "wrap",
              "description": "是否自动换行，仅在 horizontal 方向时有效",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "separator",
              "description": "分隔符内容",
              "value": { "type": "string | undefined" }
            }
          ],
          "slots": [{ "name": "", "description": "需要添加间距的子元素。" }],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "orientation",
                "description": "间距方向，vertical 为垂直方向，horizontal 为水平方向",
                "type": "'horizontal' | 'vertical'"
              },
              {
                "name": "size",
                "description": "间距大小，可选 small、medium、large 或自定义数值（单位为 px）",
                "type": "SpaceSize | [SpaceSize, SpaceSize]"
              },
              {
                "name": "align",
                "description": "对齐方式",
                "type": "'start' | 'end' | 'center' | 'baseline' | undefined"
              },
              {
                "name": "wrap",
                "description": "是否自动换行，仅在 horizontal 方向时有效",
                "type": "boolean"
              },
              {
                "name": "separator",
                "description": "分隔符内容",
                "type": "string | undefined"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-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": [], "events": [] }
        },
        {
          "name": "sl-split-panel",
          "description": "Split panels display two adjacent panels, allowing the user to reposition them.\n---\n\n\n### **Events:**\n - **sl-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": "Either one or more space-separated values at which the divider should snap, in pixels, percentages, or repeat expressions e.g. `'100px 50% 500px' or `repeat(50%) 10px`,\nor a function which takes in a `SnapFunctionParams`, and returns a position to snap to, e.g. `({ pos }) => Math.round(pos / 8) * 8`.",
              "value": { "type": "string | SnapFunction" }
            },
            {
              "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": "sl-reposition",
              "description": "Emitted when the divider's position changes."
            }
          ],
          "js": {
            "properties": [
              { "name": "divider", "type": "HTMLElement" },
              {
                "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.",
                "type": "number"
              },
              {
                "name": "positionInPixels",
                "description": "The current position of the divider from the primary panel's edge in pixels.",
                "type": "number"
              },
              {
                "name": "vertical",
                "description": "Draws the split panel in a vertical orientation with the start and end panels stacked.",
                "type": "boolean"
              },
              {
                "name": "disabled",
                "description": "Disables resizing. Note that the position may still change as a result of resizing the host element.",
                "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.",
                "type": "'start' | 'end' | undefined"
              },
              {
                "name": "snap",
                "description": "Either one or more space-separated values at which the divider should snap, in pixels, percentages, or repeat expressions e.g. `'100px 50% 500px' or `repeat(50%) 10px`,\nor a function which takes in a `SnapFunctionParams`, and returns a position to snap to, e.g. `({ pos }) => Math.round(pos / 8) * 8`.",
                "type": "string | SnapFunction"
              },
              {
                "name": "snapThreshold",
                "description": "How close the divider must be to a snap point until snapping occurs.",
                "type": "number"
              }
            ],
            "events": [
              {
                "name": "sl-reposition",
                "description": "Emitted when the divider's position changes."
              }
            ]
          }
        },
        {
          "name": "sl-steps",
          "description": "\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "items",
              "description": "步骤条数据",
              "value": { "type": "StepItem[]", "default": "[]" }
            },
            {
              "name": "current",
              "description": "当前步骤（从 0 开始）",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "status",
              "description": "当前步骤的状态，默认 process",
              "value": { "type": "StepStatus", "default": "'process'" }
            },
            {
              "name": "initial",
              "description": "起始序号（显示用），默认 0",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "percent",
              "description": "当前步骤进度百分比（0-100），仅 process 状态生效",
              "value": { "type": "number | undefined", "default": "undefined" }
            },
            {
              "name": "size",
              "description": "尺寸，default 或 small",
              "value": { "type": "StepSize", "default": "'default'" }
            },
            {
              "name": "type",
              "description": "类型",
              "value": { "type": "StepType", "default": "'default'" }
            },
            {
              "name": "variant",
              "description": "样式变体：filled（填充）或 outlined（描边）",
              "value": { "type": "StepVariant", "default": "'filled'" }
            },
            {
              "name": "orientation",
              "description": "方向：horizontal（水平）或 vertical（垂直）",
              "value": { "type": "StepOrientation", "default": "'horizontal'" }
            },
            {
              "name": "responsive",
              "description": "是否开启响应式（窄于 532px 自动切换为垂直模式）",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "titlePlacement",
              "description": "标签位置：horizontal（图标右侧，默认）或 vertical（图标下方）",
              "value": {
                "type": "StepTitlePlacement",
                "default": "'horizontal'"
              }
            },
            {
              "name": "direction",
              "description": "文字方向：ltr（从左到右）或 rtl（从右到左）",
              "value": { "type": "'ltr' | 'rtl'", "default": "'ltr'" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "items",
                "description": "步骤条数据",
                "type": "StepItem[]"
              },
              {
                "name": "current",
                "description": "当前步骤（从 0 开始）",
                "type": "number"
              },
              {
                "name": "status",
                "description": "当前步骤的状态，默认 process",
                "type": "StepStatus"
              },
              {
                "name": "initial",
                "description": "起始序号（显示用），默认 0",
                "type": "number"
              },
              {
                "name": "percent",
                "description": "当前步骤进度百分比（0-100），仅 process 状态生效",
                "type": "number | undefined"
              },
              {
                "name": "size",
                "description": "尺寸，default 或 small",
                "type": "StepSize"
              },
              { "name": "type", "description": "类型", "type": "StepType" },
              {
                "name": "variant",
                "description": "样式变体：filled（填充）或 outlined（描边）",
                "type": "StepVariant"
              },
              {
                "name": "orientation",
                "description": "方向：horizontal（水平）或 vertical（垂直）",
                "type": "StepOrientation"
              },
              {
                "name": "responsive",
                "description": "是否开启响应式（窄于 532px 自动切换为垂直模式）",
                "type": "boolean"
              },
              {
                "name": "titlePlacement",
                "description": "标签位置：horizontal（图标右侧，默认）或 vertical（图标下方）",
                "type": "StepTitlePlacement"
              },
              {
                "name": "direction",
                "description": "文字方向：ltr（从左到右）或 rtl（从右到左）",
                "type": "'ltr' | 'rtl'"
              },
              {
                "name": "onChange",
                "description": "点击步骤切换的回调，传入后步骤条变为可点击状态",
                "type": "(current: number) => void | undefined"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-switch",
          "description": "Switches allow the user to toggle an option on or off.\n---\n\n\n### **Events:**\n - **sl-blur** - Emitted when the control loses focus.\n- **sl-change** - Emitted when the control's checked state changes.\n- **sl-input** - Emitted when the control receives input.\n- **sl-focus** - Emitted when the control gains focus.\n- **sl-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": "sl-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "sl-change",
              "description": "Emitted when the control's checked state changes."
            },
            {
              "name": "sl-input",
              "description": "Emitted when the control receives input."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the control gains focus."
            },
            {
              "name": "sl-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              { "name": "input", "type": "HTMLInputElement" },
              { "name": "title", "type": "string" },
              {
                "name": "name",
                "description": "The name of the switch, submitted as a name/value pair with form data.",
                "type": "string"
              },
              {
                "name": "value",
                "description": "The current value of the switch, submitted as a name/value pair with form data.",
                "type": "string"
              },
              {
                "name": "size",
                "description": "The switch's size.",
                "type": "'small' | 'medium' | 'large'"
              },
              {
                "name": "disabled",
                "description": "Disables the switch.",
                "type": "boolean"
              },
              {
                "name": "checked",
                "description": "Draws the switch in a checked state.",
                "type": "boolean"
              },
              {
                "name": "defaultChecked",
                "description": "The default value of the form control. Primarily used for resetting the form control.",
                "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.",
                "type": "string"
              },
              {
                "name": "required",
                "description": "Makes the switch a required field.",
                "type": "boolean"
              },
              {
                "name": "helpText",
                "description": "The switch's help text. If you need to display HTML, use the `help-text` slot instead.",
                "type": "string"
              },
              {
                "name": "validity",
                "description": "Gets the validity state object"
              },
              {
                "name": "validationMessage",
                "description": "Gets the validation message"
              }
            ],
            "events": [
              {
                "name": "sl-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "sl-change",
                "description": "Emitted when the control's checked state changes."
              },
              {
                "name": "sl-input",
                "description": "Emitted when the control receives input."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the control gains focus."
              },
              {
                "name": "sl-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "sl-tab",
          "description": "Tabs are used inside [tab groups](/components/tab-group) to represent and activate [tab panels](/components/tab-panel).\n---\n\n\n### **Events:**\n - **sl-close** - Emitted when the tab is closable and the close button is activated.\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 `<sl-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": "sl-close",
              "description": "Emitted when the tab is closable and the close button is activated."
            }
          ],
          "js": {
            "properties": [
              { "name": "tab", "type": "HTMLElement" },
              {
                "name": "panel",
                "description": "The name of the tab panel this tab is associated with. The panel must be located in the same tab group.",
                "type": "string"
              },
              {
                "name": "active",
                "description": "Draws the tab in an active state.",
                "type": "boolean"
              },
              {
                "name": "closable",
                "description": "Makes the tab closable and shows a close button.",
                "type": "boolean"
              },
              {
                "name": "disabled",
                "description": "Disables the tab and prevents selection.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-close",
                "description": "Emitted when the tab is closable and the close button is activated."
              }
            ]
          }
        },
        {
          "name": "sl-tab-group",
          "description": "Tab groups organize content into a container that shows one section at a time.\n---\n\n\n### **Events:**\n - **sl-tab-show** - Emitted when a tab is shown.\n- **sl-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 `<sl-tab-panel>` elements.\n- **nav** - Used for grouping tabs in the tab group. Must be `<sl-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 `<sl-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" }
            },
            {
              "name": "fixed-scroll-controls",
              "description": "Prevent scroll buttons from being hidden when inactive.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "Used for grouping tab panels in the tab group. Must be `<sl-tab-panel>` elements."
            },
            {
              "name": "nav",
              "description": "Used for grouping tabs in the tab group. Must be `<sl-tab>` elements."
            }
          ],
          "events": [
            {
              "name": "sl-tab-show",
              "type": "{ name: String }",
              "description": "Emitted when a tab is shown."
            },
            {
              "name": "sl-tab-hide",
              "type": "{ name: String }",
              "description": "Emitted when a tab is hidden."
            }
          ],
          "js": {
            "properties": [
              { "name": "tabGroup", "type": "HTMLElement" },
              { "name": "body", "type": "HTMLSlotElement" },
              { "name": "nav", "type": "HTMLElement" },
              { "name": "indicator", "type": "HTMLElement" },
              {
                "name": "placement",
                "description": "The placement of the tabs.",
                "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.",
                "type": "'auto' | 'manual'"
              },
              {
                "name": "noScrollControls",
                "description": "Disables the scroll arrows that appear when tabs overflow.",
                "type": "boolean"
              },
              {
                "name": "fixedScrollControls",
                "description": "Prevent scroll buttons from being hidden when inactive.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-tab-show",
                "type": "{ name: String }",
                "description": "Emitted when a tab is shown."
              },
              {
                "name": "sl-tab-hide",
                "type": "{ name: String }",
                "description": "Emitted when a tab is hidden."
              }
            ]
          }
        },
        {
          "name": "sl-tab-panel",
          "description": "Tab panels are used inside [tab groups](/components/tab-group) 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.",
                "type": "string"
              },
              {
                "name": "active",
                "description": "When true, the tab panel will be shown.",
                "type": "boolean"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-table",
          "description": "\n---\n\n\n### **Events:**\n - **change**",
          "doc-url": "",
          "attributes": [
            {
              "name": "rowKey",
              "value": {
                "type": "TableProps<TData>['rowKey']",
                "default": "'key'"
              }
            },
            {
              "name": "columns",
              "value": {
                "type": "TableProps<TData>['columns']",
                "default": "[]"
              }
            },
            {
              "name": "dataSource",
              "value": {
                "type": "TableProps<TData>['dataSource']",
                "default": "[]"
              }
            },
            {
              "name": "loading",
              "value": {
                "type": "TableProps<TData>['loading']",
                "default": "false"
              }
            },
            {
              "name": "bordered",
              "value": {
                "type": "TableProps<TData>['bordered']",
                "default": "false"
              }
            },
            {
              "name": "direction",
              "value": {
                "type": "TableProps<TData>['direction']",
                "default": "'ltr'"
              }
            },
            {
              "name": "showHeader",
              "value": {
                "type": "TableProps<TData>['showHeader']",
                "default": "true"
              }
            },
            {
              "name": "rowSelection",
              "value": { "type": "TableRowSelection<TData>" }
            },
            {
              "name": "tableScroll",
              "value": {
                "type": "TableProps<TData>['tableScroll']",
                "default": "{}"
              }
            },
            {
              "name": "pagination",
              "value": { "type": "TableProps<TData>['pagination'] | undefined" }
            },
            {
              "name": "expandProps",
              "value": {
                "type": "TableProps<TData>['expandProps'] | undefined"
              }
            },
            {
              "name": "tree",
              "value": { "type": "TableProps<TData>['tree'] | undefined" }
            },
            {
              "name": "enableColumnResizing",
              "value": {
                "type": "TableProps<TData>['enableColumnResizing']",
                "default": "false"
              }
            },
            {
              "name": "slHeaderRow",
              "value": {
                "type": "TableProps<TData>['slHeaderRow'] | undefined"
              }
            },
            {
              "name": "slRow",
              "value": { "type": "TableProps<TData>['slRow'] | undefined" }
            },
            {
              "name": "slColumnResize",
              "value": {
                "type": "TableProps<TData>['slColumnResize'] | undefined"
              }
            },
            {
              "name": "virtualized",
              "value": { "type": "TableProps<TData>['virtualized']" }
            },
            {
              "name": "rowDrag",
              "description": "是否允许拖动调整行顺序",
              "value": {
                "type": "TableProps<TData>['rowDrag']",
                "default": "false"
              }
            },
            {
              "name": "slRowReorder",
              "description": "行拖拽排序后的回调",
              "value": {
                "type": "TableProps<TData>['slRowReorder'] | undefined"
              }
            },
            {
              "name": "summary",
              "value": { "type": "TableProps<TData>['summary'] | undefined" }
            },
            {
              "name": "size",
              "description": "表格尺寸",
              "value": {
                "type": "TableProps<TData>['size']",
                "default": "'default'"
              }
            }
          ],
          "events": [{ "name": "change", "type": "CustomEvent" }],
          "js": {
            "properties": [
              { "name": "rowKey", "type": "TableProps<TData>['rowKey']" },
              { "name": "columns", "type": "TableProps<TData>['columns']" },
              {
                "name": "dataSource",
                "type": "TableProps<TData>['dataSource']"
              },
              { "name": "loading", "type": "TableProps<TData>['loading']" },
              { "name": "bordered", "type": "TableProps<TData>['bordered']" },
              { "name": "direction", "type": "TableProps<TData>['direction']" },
              {
                "name": "showHeader",
                "type": "TableProps<TData>['showHeader']"
              },
              { "name": "rowSelection", "type": "TableRowSelection<TData>" },
              {
                "name": "tableScroll",
                "type": "TableProps<TData>['tableScroll']"
              },
              {
                "name": "pagination",
                "type": "TableProps<TData>['pagination'] | undefined"
              },
              {
                "name": "expandProps",
                "type": "TableProps<TData>['expandProps'] | undefined"
              },
              {
                "name": "tree",
                "type": "TableProps<TData>['tree'] | undefined"
              },
              {
                "name": "enableColumnResizing",
                "type": "TableProps<TData>['enableColumnResizing']"
              },
              {
                "name": "slHeaderRow",
                "type": "TableProps<TData>['slHeaderRow'] | undefined"
              },
              {
                "name": "slRow",
                "type": "TableProps<TData>['slRow'] | undefined"
              },
              {
                "name": "slColumnResize",
                "type": "TableProps<TData>['slColumnResize'] | undefined"
              },
              {
                "name": "virtualized",
                "type": "TableProps<TData>['virtualized']"
              },
              {
                "name": "rowDrag",
                "description": "是否允许拖动调整行顺序",
                "type": "TableProps<TData>['rowDrag']"
              },
              {
                "name": "slRowReorder",
                "description": "行拖拽排序后的回调",
                "type": "TableProps<TData>['slRowReorder'] | undefined"
              },
              {
                "name": "summary",
                "type": "TableProps<TData>['summary'] | undefined"
              },
              {
                "name": "size",
                "description": "表格尺寸",
                "type": "TableProps<TData>['size']"
              },
              { "name": "rowSelectedMap", "type": "RowSelectionState" },
              { "name": "expandedMap", "type": "ExpandedState" },
              { "name": "sorting", "type": "SortingState" },
              { "name": "columnFilters", "type": "ColumnFiltersState" },
              { "name": "tableWidth", "type": "number" },
              { "name": "columnSizing", "type": "Record<string, number>" },
              { "name": "pageIndex", "type": "number" },
              { "name": "columnPinning", "type": "Record<string, string[]>" },
              { "name": "adapter", "type": "TableAdapter" },
              { "name": "setColumnWidth" },
              { "name": "handleBodyScroll" },
              { "name": "handleBodyScrollLeft" },
              { "name": "handleWindowResize" },
              { "name": "syncTableWidth" },
              { "name": "setScrollBarStyle" },
              { "name": "setScrollPositionClassName" },
              { "name": "handleFilterDropdownChange" },
              { "name": "handlePaginationChange" }
            ],
            "events": [{ "name": "change", "type": "CustomEvent" }]
          }
        },
        {
          "name": "sl-tag",
          "description": "Tags are used as labels to organize things or to indicate a selection.\n---\n\n\n### **Events:**\n - **sl-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 `<sl-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' | 'success' | 'neutral' | 'warning' | 'danger' | '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": "sl-remove",
              "description": "Emitted when the remove button is activated."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "variant",
                "description": "The tag's theme variant.",
                "type": "'primary' | 'success' | 'neutral' | 'warning' | 'danger' | 'text'"
              },
              {
                "name": "size",
                "description": "The tag's size.",
                "type": "'small' | 'medium' | 'large'"
              },
              {
                "name": "pill",
                "description": "Draws a pill-style tag with rounded edges.",
                "type": "boolean"
              },
              {
                "name": "removable",
                "description": "Makes the tag removable and shows a remove button.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-remove",
                "description": "Emitted when the remove button is activated."
              }
            ]
          }
        },
        {
          "name": "sl-textarea",
          "description": "Textareas collect data from the user and allow multiple lines of text.\n---\n\n\n### **Events:**\n - **sl-blur** - Emitted when the control loses focus.\n- **sl-change** - Emitted when an alteration to the control's value is committed by the user.\n- **sl-focus** - Emitted when the control gains focus.\n- **sl-input** - Emitted when the control receives input.\n- **sl-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": "sl-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "sl-change",
              "description": "Emitted when an alteration to the control's value is committed by the user."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the control gains focus."
            },
            {
              "name": "sl-input",
              "description": "Emitted when the control receives input."
            },
            {
              "name": "sl-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              { "name": "input", "type": "HTMLTextAreaElement" },
              { "name": "sizeAdjuster", "type": "HTMLTextAreaElement" },
              { "name": "title", "type": "string" },
              {
                "name": "name",
                "description": "The name of the textarea, submitted as a name/value pair with form data.",
                "type": "string"
              },
              {
                "name": "value",
                "description": "The current value of the textarea, submitted as a name/value pair with form data.",
                "type": "string"
              },
              {
                "name": "size",
                "description": "The textarea's size.",
                "type": "'small' | 'medium' | 'large'"
              },
              {
                "name": "filled",
                "description": "Draws a filled textarea.",
                "type": "boolean"
              },
              {
                "name": "label",
                "description": "The textarea's label. If you need to display HTML, use the `label` slot instead.",
                "type": "string"
              },
              {
                "name": "helpText",
                "description": "The textarea's help text. If you need to display HTML, use the `help-text` slot instead.",
                "type": "string"
              },
              {
                "name": "placeholder",
                "description": "Placeholder text to show as a hint when the input is empty.",
                "type": "string"
              },
              {
                "name": "rows",
                "description": "The number of rows to display by default.",
                "type": "number"
              },
              {
                "name": "resize",
                "description": "Controls how the textarea can be resized.",
                "type": "'none' | 'vertical' | 'auto'"
              },
              {
                "name": "disabled",
                "description": "Disables the textarea.",
                "type": "boolean"
              },
              {
                "name": "readonly",
                "description": "Makes the textarea readonly.",
                "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.",
                "type": "string"
              },
              {
                "name": "required",
                "description": "Makes the textarea a required field.",
                "type": "boolean"
              },
              {
                "name": "minlength",
                "description": "The minimum length of input that will be considered valid.",
                "type": "number"
              },
              {
                "name": "maxlength",
                "description": "The maximum length of input that will be considered valid.",
                "type": "number"
              },
              {
                "name": "autocapitalize",
                "description": "Controls whether and how text input is automatically capitalized as it is entered by the user.",
                "type": "'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters'"
              },
              {
                "name": "autocorrect",
                "description": "Indicates whether the browser's autocorrect feature is on or off.",
                "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.",
                "type": "string"
              },
              {
                "name": "autofocus",
                "description": "Indicates that the input should receive focus on page load.",
                "type": "boolean"
              },
              {
                "name": "enterkeyhint",
                "description": "Used to customize the label or icon of the Enter key on virtual keyboards.",
                "type": "'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send'"
              },
              {
                "name": "spellcheck",
                "description": "Enables spell checking on the textarea.",
                "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.",
                "type": "'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url'"
              },
              {
                "name": "defaultValue",
                "description": "The default value of the form control. Primarily used for resetting the form control.",
                "type": "string"
              },
              {
                "name": "validity",
                "description": "Gets the validity state object"
              },
              {
                "name": "validationMessage",
                "description": "Gets the validation message"
              }
            ],
            "events": [
              {
                "name": "sl-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "sl-change",
                "description": "Emitted when an alteration to the control's value is committed by the user."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the control gains focus."
              },
              {
                "name": "sl-input",
                "description": "Emitted when the control receives input."
              },
              {
                "name": "sl-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "sl-think",
          "description": "Think is used to display an AI model's thinking process with expandable/collapsible content.\n---\n\n\n### **Events:**\n - **sl-expand** - Emitted when the think block starts expanding (before animation). Equivalent to React's `onExpand(true)`.\n- **sl-collapse** - Emitted when the think block starts collapsing (before animation). Equivalent to React's `onExpand(false)`.\n\n### **Methods:**\n - **handleExpandedChange()** - Runs AFTER the first render whenever `expanded` changes.\nEmits the appropriate event immediately (matching React's `onExpand` timing,\nwhich fires before the animation), then plays the expand/collapse animation.\n\n### **Slots:**\n - _default_ - The thinking content body.\n- **title** - Rich HTML content for the status bar title. Overrides the `title` attribute.\n- **icon** - A custom icon displayed in the status bar when not loading. Defaults to the Think icon.\n- **loading-icon** - A custom icon displayed when `loading` is true. Overrides the default spinner. This is the web-component equivalent of passing a ReactNode to the React `loading` prop.\n\n### **CSS Properties:**\n - **--sl-c-think-TitleTextBlink-color-default** - Base text color shown during the blink/shimmer animation. Equivalent to React's `colorTextBlinkDefault` (`colorTextDescription`) design token. Defaults to `var(--sl-color-neutral-600)`. _(default: undefined)_\n- **--sl-c-think-TitleTextBlink-color** - Highlight (shine) color of the blink shimmer beam. Equivalent to React's `colorTextBlink` (`colorTextBase`) design token. Defaults to `var(--sl-color-neutral-900)`. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper (maps to React's `root` semantic DOM).\n- **status** - The clickable status bar: icon + title + chevron (maps to React's `status` semantic DOM).\n- **status-icon** - The icon container within the status bar.\n- **status-text** - The title text area within the status bar.\n- **chevron** - The expand/collapse chevron indicator.\n- **body** - The collapsible body container.\n- **content** - The content area inside the body (maps to React's `content` semantic DOM).",
          "doc-url": "",
          "attributes": [
            {
              "name": "title",
              "description": "The title text shown in the status bar. Accepts plain text.\nFor rich HTML content, use the `title` slot instead.\nMaps to React's `title: React.ReactNode` prop.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "loading",
              "description": "When true, the status icon is replaced by a loading spinner\n(or the content of the `loading-icon` slot for a custom indicator).\nMaps to React's `loading: boolean | React.ReactNode` prop:\n  - `loading` (boolean) → boolean attribute\n  - `loading` (ReactNode) → use the `loading-icon` slot",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "expanded",
              "description": "Whether the content body is expanded.\nWhen used without `default-expanded`, this acts as a controlled prop\n(the parent is responsible for updating it).\nWhen neither this nor `default-expanded` is set on the element,\nthe component defaults to expanded (equivalent to React's `defaultExpanded = true`).\nMaps to React's `expanded: boolean` prop.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "default-expanded",
              "description": "The initial expanded state when the component is first rendered.\nOnly applies if `expanded` is not set as an attribute on the element.\nMaps to React's `defaultExpanded: boolean` prop (default: `true`).\n\nBecause Lit's `type: Boolean` treats attribute *presence* as `true`,\nsetting `default-expanded=\"false\"` in HTML does NOT work — this is\nconsistent with all other Shoelace boolean attributes.\nTo start collapsed, set the property via JS: `el.defaultExpanded = false`.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "blink",
              "description": "When true, applies a blinking animation to the title text to signal ongoing activity.\nMaps to React's `blink: boolean` prop.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "", "description": "The thinking content body." },
            {
              "name": "title",
              "description": "Rich HTML content for the status bar title. Overrides the `title` attribute."
            },
            {
              "name": "icon",
              "description": "A custom icon displayed in the status bar when not loading. Defaults to the Think icon."
            },
            {
              "name": "loading-icon",
              "description": "A custom icon displayed when `loading` is true. Overrides the default spinner. This is the web-component equivalent of passing a ReactNode to the React `loading` prop."
            }
          ],
          "events": [
            {
              "name": "sl-expand",
              "description": "Emitted when the think block starts expanding (before animation). Equivalent to React's `onExpand(true)`."
            },
            {
              "name": "sl-collapse",
              "description": "Emitted when the think block starts collapsing (before animation). Equivalent to React's `onExpand(false)`."
            }
          ],
          "js": {
            "properties": [
              { "name": "body", "type": "HTMLElement" },
              {
                "name": "title",
                "description": "The title text shown in the status bar. Accepts plain text.\nFor rich HTML content, use the `title` slot instead.\nMaps to React's `title: React.ReactNode` prop.",
                "type": "string"
              },
              {
                "name": "loading",
                "description": "When true, the status icon is replaced by a loading spinner\n(or the content of the `loading-icon` slot for a custom indicator).\nMaps to React's `loading: boolean | React.ReactNode` prop:\n  - `loading` (boolean) → boolean attribute\n  - `loading` (ReactNode) → use the `loading-icon` slot",
                "type": "boolean"
              },
              {
                "name": "expanded",
                "description": "Whether the content body is expanded.\nWhen used without `default-expanded`, this acts as a controlled prop\n(the parent is responsible for updating it).\nWhen neither this nor `default-expanded` is set on the element,\nthe component defaults to expanded (equivalent to React's `defaultExpanded = true`).\nMaps to React's `expanded: boolean` prop.",
                "type": "boolean"
              },
              {
                "name": "defaultExpanded",
                "description": "The initial expanded state when the component is first rendered.\nOnly applies if `expanded` is not set as an attribute on the element.\nMaps to React's `defaultExpanded: boolean` prop (default: `true`).\n\nBecause Lit's `type: Boolean` treats attribute *presence* as `true`,\nsetting `default-expanded=\"false\"` in HTML does NOT work — this is\nconsistent with all other Shoelace boolean attributes.\nTo start collapsed, set the property via JS: `el.defaultExpanded = false`.",
                "type": "boolean"
              },
              {
                "name": "blink",
                "description": "When true, applies a blinking animation to the title text to signal ongoing activity.\nMaps to React's `blink: boolean` prop.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-expand",
                "description": "Emitted when the think block starts expanding (before animation). Equivalent to React's `onExpand(true)`."
              },
              {
                "name": "sl-collapse",
                "description": "Emitted when the think block starts collapsing (before animation). Equivalent to React's `onExpand(false)`."
              }
            ]
          }
        },
        {
          "name": "sl-thought-chain",
          "description": "ThoughtChain visualizes and tracks an Agent's call chain of Actions and Tools.\nIt renders a vertical list of nodes, each optionally with an icon, title, description,\ncollapsible content, footer, and status indicator. Nodes are connected by a vertical line.\n---\n\n\n### **Events:**\n - **sl-expand** - Emitted when a collapsible node is expanded or collapsed. `event.detail` contains `{ key: string, expandedKeys: string[] }`.\n\n### **Methods:**\n - **getExpandedKeys(): _string[]_** - Get the effective expanded keys\n- **handleItemExpand(key: _string_)** - Handle expand/collapse toggle from child node\n\n### **Slots:**\n - _default_ - Default slot for `<sl-thought-chain-node>` elements (declarative usage).\n\n### **CSS Properties:**\n - **--sl-thought-chain-gap** - Gap between the icon and the node body. Defaults to `var(--sl-spacing-small)`. _(default: undefined)_\n- **--sl-thought-chain-connector-color** - Color of the vertical connector line. Defaults to `var(--sl-color-neutral-300)`. _(default: undefined)_\n- **--sl-thought-chain-icon-size** - Size of the node icon. Defaults to `var(--sl-font-size-medium)`. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
          "doc-url": "",
          "attributes": [
            {
              "name": "size",
              "description": "Size of the thought chain nodes.\n- `'small'`: compact layout\n- `'middle'`: default size\n- `'large'`: spacious layout",
              "value": { "type": "ThoughtChainSize", "default": "'middle'" }
            },
            {
              "name": "line",
              "description": "Line connector style between nodes.\n- `true` or `'solid'`: solid line (default)\n- `'dashed'`: dashed line\n- `'dotted'`: dotted line\n- `false`: no line\n\nNote: HTML attributes are always strings. Use `line=\"solid\"` / `line=\"dashed\"` / `line=\"dotted\"`.\nTo hide the line, use `line=\"none\"`. Programmatically, you can also set `el.line = false`.",
              "value": { "type": "ThoughtChainLineStyle", "default": "true" }
            },
            {
              "name": "default-expanded-keys",
              "description": "Keys of initially expanded collapsible nodes (uncontrolled mode).\nSet as a JSON array string attribute or via JS property.",
              "value": { "type": "string[]", "default": "[]" }
            },
            {
              "name": "expanded-keys",
              "description": "Keys of currently expanded collapsible nodes (controlled mode).\nWhen set, you must update this in response to `sl-expand` events.",
              "value": { "type": "string[] | undefined" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "Default slot for `<sl-thought-chain-node>` elements (declarative usage)."
            }
          ],
          "events": [
            {
              "name": "sl-expand",
              "description": "Emitted when a collapsible node is expanded or collapsed. `event.detail` contains `{ key: string, expandedKeys: string[] }`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "size",
                "description": "Size of the thought chain nodes.\n- `'small'`: compact layout\n- `'middle'`: default size\n- `'large'`: spacious layout",
                "type": "ThoughtChainSize"
              },
              {
                "name": "line",
                "description": "Line connector style between nodes.\n- `true` or `'solid'`: solid line (default)\n- `'dashed'`: dashed line\n- `'dotted'`: dotted line\n- `false`: no line\n\nNote: HTML attributes are always strings. Use `line=\"solid\"` / `line=\"dashed\"` / `line=\"dotted\"`.\nTo hide the line, use `line=\"none\"`. Programmatically, you can also set `el.line = false`.",
                "type": "ThoughtChainLineStyle"
              },
              {
                "name": "defaultExpandedKeys",
                "description": "Keys of initially expanded collapsible nodes (uncontrolled mode).\nSet as a JSON array string attribute or via JS property.",
                "type": "string[]"
              },
              {
                "name": "expandedKeys",
                "description": "Keys of currently expanded collapsible nodes (controlled mode).\nWhen set, you must update this in response to `sl-expand` events.",
                "type": "string[] | undefined"
              }
            ],
            "events": [
              {
                "name": "sl-expand",
                "description": "Emitted when a collapsible node is expanded or collapsed. `event.detail` contains `{ key: string, expandedKeys: string[] }`."
              }
            ]
          }
        },
        {
          "name": "sl-thought-chain-item",
          "description": "A standalone thought chain item badge/tag. Used for displaying individual\naction/tool entries outside of a full thought chain. Supports variants (solid, outlined, text),\nstatus indicators, and click/disabled states.\n\nThis is the web component equivalent of React's `ThoughtChain.Item`.\n---\n\n\n### **Events:**\n - **sl-click** - Emitted when the item is clicked (only when not disabled and has a click handler).\n\n### **Slots:**\n - _default_ - Default slot (not used, reserved).\n- **icon** - Custom icon to display.\n- **title** - The item's title. Alternatively, use the `title` attribute.\n- **description** - The item's description text. Alternatively, use the `description` attribute.\n\n### **CSS Parts:**\n - **base** - The item's base wrapper.\n- **icon** - The icon container.\n- **content** - The content wrapper containing title and description.\n- **title** - The title area.\n- **description** - The description area.",
          "doc-url": "",
          "attributes": [
            {
              "name": "title",
              "description": "The title text. Use the `title` slot for rich HTML content.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "description",
              "description": "The description text. Use the `description` slot for rich HTML content.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "status",
              "description": "The status of this item. Determines the status icon shown.",
              "value": {
                "type": "ThoughtChainItemStatus | ''",
                "default": "''"
              }
            },
            {
              "name": "variant",
              "description": "The visual variant of the item.",
              "value": {
                "type": "ThoughtChainItemVariant",
                "default": "'solid'"
              }
            },
            {
              "name": "blink",
              "description": "Whether to show a blink/pulse animation.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "Whether the item is disabled. Prevents click events and applies disabled styling.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "clickable",
              "description": "Whether this item is clickable. When true, hover/cursor styles are applied.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "", "description": "Default slot (not used, reserved)." },
            { "name": "icon", "description": "Custom icon to display." },
            {
              "name": "title",
              "description": "The item's title. Alternatively, use the `title` attribute."
            },
            {
              "name": "description",
              "description": "The item's description text. Alternatively, use the `description` attribute."
            }
          ],
          "events": [
            {
              "name": "sl-click",
              "description": "Emitted when the item is clicked (only when not disabled and has a click handler)."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "title",
                "description": "The title text. Use the `title` slot for rich HTML content.",
                "type": "string"
              },
              {
                "name": "description",
                "description": "The description text. Use the `description` slot for rich HTML content.",
                "type": "string"
              },
              {
                "name": "status",
                "description": "The status of this item. Determines the status icon shown.",
                "type": "ThoughtChainItemStatus | ''"
              },
              {
                "name": "variant",
                "description": "The visual variant of the item.",
                "type": "ThoughtChainItemVariant"
              },
              {
                "name": "blink",
                "description": "Whether to show a blink/pulse animation.",
                "type": "boolean"
              },
              {
                "name": "disabled",
                "description": "Whether the item is disabled. Prevents click events and applies disabled styling.",
                "type": "boolean"
              },
              {
                "name": "clickable",
                "description": "Whether this item is clickable. When true, hover/cursor styles are applied.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-click",
                "description": "Emitted when the item is clicked (only when not disabled and has a click handler)."
              }
            ]
          }
        },
        {
          "name": "sl-thought-chain-node",
          "description": "A single node in a thought chain. Used as a child of `<sl-thought-chain>`.\nEach node represents one step/action in the chain with an icon, title, description,\ncollapsible content, and footer.\n---\n\n\n### **Slots:**\n - _default_ - The node's main content (shown in the collapsible area).\n- **icon** - Custom icon to display instead of the default numbered circle or status icon.\n- **title** - The node's title. Alternatively, use the `title` attribute.\n- **description** - The node's description text.\n- **footer** - Footer content displayed below the content area.\n\n### **CSS Parts:**\n - **base** - The node's base wrapper.\n- **icon** - The icon container.\n- **header** - The header section (title + description).\n- **title** - The title area (clickable when collapsible).\n- **description** - The description area.\n- **content** - The collapsible content wrapper.\n- **content-inner** - The inner content wrapper.\n- **footer** - The footer area.\n- **collapse-icon** - The chevron expand/collapse indicator.",
          "doc-url": "",
          "attributes": [
            {
              "name": "node-key",
              "description": "Unique key for this node. Required when using collapsible mode or\ncontrolled expansion via the parent `<sl-thought-chain>`.\nMaps to React's `key` property on ThoughtChainItemType.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "title",
              "description": "The title text shown in the node header. Use the `title` slot for rich HTML.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "description",
              "description": "The description text shown below the title. Use the `description` slot for rich HTML.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "status",
              "description": "The status of this node. Shows a status icon and applies status-specific styling.",
              "value": {
                "type": "ThoughtChainItemStatus | ''",
                "default": "''"
              }
            },
            {
              "name": "collapsible",
              "description": "Whether this node's content area is collapsible.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "blink",
              "description": "Whether to show a blink/pulse animation on the title (indicates ongoing activity).",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "no-icon",
              "description": "Whether to hide the icon entirely (equivalent to React's `icon={false}`).",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "The node's main content (shown in the collapsible area)."
            },
            {
              "name": "icon",
              "description": "Custom icon to display instead of the default numbered circle or status icon."
            },
            {
              "name": "title",
              "description": "The node's title. Alternatively, use the `title` attribute."
            },
            {
              "name": "description",
              "description": "The node's description text."
            },
            {
              "name": "footer",
              "description": "Footer content displayed below the content area."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              { "name": "contentEl", "type": "HTMLElement" },
              {
                "name": "nodeKey",
                "description": "Unique key for this node. Required when using collapsible mode or\ncontrolled expansion via the parent `<sl-thought-chain>`.\nMaps to React's `key` property on ThoughtChainItemType.",
                "type": "string"
              },
              {
                "name": "title",
                "description": "The title text shown in the node header. Use the `title` slot for rich HTML.",
                "type": "string"
              },
              {
                "name": "description",
                "description": "The description text shown below the title. Use the `description` slot for rich HTML.",
                "type": "string"
              },
              {
                "name": "status",
                "description": "The status of this node. Shows a status icon and applies status-specific styling.",
                "type": "ThoughtChainItemStatus | ''"
              },
              {
                "name": "collapsible",
                "description": "Whether this node's content area is collapsible.",
                "type": "boolean"
              },
              {
                "name": "blink",
                "description": "Whether to show a blink/pulse animation on the title (indicates ongoing activity).",
                "type": "boolean"
              },
              {
                "name": "noIcon",
                "description": "Whether to hide the icon entirely (equivalent to React's `icon={false}`).",
                "type": "boolean"
              },
              {
                "name": "expanded",
                "description": "Whether this node's content is currently expanded",
                "type": "boolean"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-timeline-item",
          "description": "A single item within a timeline.\n---\n\n\n### **Slots:**\n - _default_ - The main content of the timeline item.\n- **icon** - An optional custom icon to display instead of the default dot.\n\n### **CSS Properties:**\n - **--sl-timeline-dot-size** - The size of the dot node. _(default: undefined)_\n- **--sl-timeline-dot-border-width** - The border width of the dot node. _(default: undefined)_\n- **--sl-timeline-dot-bg** - The background color of the dot node. _(default: undefined)_\n- **--sl-timeline-tail-width** - The width of the connecting tail line. _(default: undefined)_\n- **--sl-timeline-tail-color** - The color of the connecting tail line. _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **dot** - The dot indicator element.\n- **tail** - The connecting line between this item and the next.\n- **body** - The content body wrapper.\n- **title** - The title element.\n- **content** - The content area below the title.",
          "doc-url": "",
          "attributes": [
            {
              "name": "color",
              "description": "The color of the dot indicator. Can be a preset color (`blue`, `red`, `green`, `gray`) or any valid CSS color value.\nDefaults to `blue`.",
              "value": { "type": "string", "default": "'blue'" }
            },
            {
              "name": "loading",
              "description": "Whether this item is in a loading state. When true, a spinner is shown instead of the dot.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "variant",
              "description": "The variant style of the dot. `outlined` shows a ring; `filled` shows a solid dot.",
              "value": {
                "type": "'outlined' | 'filled'",
                "default": "'outlined'"
              }
            },
            {
              "name": "placement",
              "description": "The placement of this item relative to the timeline axis. Used by the parent `sl-timeline`.",
              "value": { "type": "'start' | 'end'", "default": "'start'" }
            },
            {
              "name": "last",
              "description": "Whether this is the last item in the timeline. Set automatically by the parent `sl-timeline`.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "The main content of the timeline item."
            },
            {
              "name": "icon",
              "description": "An optional custom icon to display instead of the default dot."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "color",
                "description": "The color of the dot indicator. Can be a preset color (`blue`, `red`, `green`, `gray`) or any valid CSS color value.\nDefaults to `blue`.",
                "type": "string"
              },
              {
                "name": "loading",
                "description": "Whether this item is in a loading state. When true, a spinner is shown instead of the dot.",
                "type": "boolean"
              },
              {
                "name": "variant",
                "description": "The variant style of the dot. `outlined` shows a ring; `filled` shows a solid dot.",
                "type": "'outlined' | 'filled'"
              },
              {
                "name": "placement",
                "description": "The placement of this item relative to the timeline axis. Used by the parent `sl-timeline`.",
                "type": "'start' | 'end'"
              },
              {
                "name": "last",
                "description": "Whether this is the last item in the timeline. Set automatically by the parent `sl-timeline`.",
                "type": "boolean"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-timeline",
          "description": "Timelines display a list of events in chronological order.\n---\n\n\n### **Slots:**\n - _default_ - The default slot for `sl-timeline-item` elements. When using slotted items, the `items` property is ignored.\n- **pending-dot** - Custom icon for the pending item dot. Only used when the `pending` attribute is set.\n\n### **CSS Properties:**\n - **--sl-timeline-dot-size** - The size of the dot node (inherited by items). _(default: undefined)_\n- **--sl-timeline-dot-border-width** - The border width of the dot node (inherited by items). _(default: undefined)_\n- **--sl-timeline-dot-bg** - The background color of the dot node (inherited by items). _(default: undefined)_\n- **--sl-timeline-tail-width** - The width of the connecting tail line (inherited by items). _(default: undefined)_\n- **--sl-timeline-tail-color** - The color of the connecting tail line (inherited by items). _(default: undefined)_\n- **--sl-timeline-title-span** - The width of the title column when `title-span` is set (computed internally). _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.",
          "doc-url": "",
          "attributes": [
            {
              "name": "items",
              "description": "An array of timeline item data objects. Each object can include `color`, `loading`, `title`, `content`, and `placement`.\nAlternatively, you can use slotted `<sl-timeline-item>` elements for full control.",
              "value": { "type": "TimelineItemData[]", "default": "[]" }
            },
            {
              "name": "mode",
              "description": "The display mode of the timeline.\n- `start` — content on the start side (default, axis on the left / top)\n- `end` — content on the end side (axis on the right / bottom)\n- `alternate` — items alternate between start and end",
              "value": {
                "type": "'start' | 'end' | 'alternate'",
                "default": "'start'"
              }
            },
            {
              "name": "orientation",
              "description": "The orientation of the timeline.",
              "value": {
                "type": "'vertical' | 'horizontal'",
                "default": "'vertical'"
              }
            },
            {
              "name": "variant",
              "description": "The variant style of the dot. Passed to all child items.",
              "value": {
                "type": "'outlined' | 'filled'",
                "default": "'outlined'"
              }
            },
            {
              "name": "reverse",
              "description": "Whether to reverse the order of items.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "title-span",
              "description": "Set the title span space — the distance to the center of the dot.\nWhen set, the timeline switches to a three-column layout: `[title] [dot] [content]`.\n- `number` — grid value out of 24 (e.g. `6` = 25%, `12` = 50%)\n- `string` — CSS length or percentage (e.g. `\"100px\"`, `\"25%\"`)\n\nOnly takes effect when `mode` is **not** `alternate`.",
              "value": { "type": "string | number | undefined" }
            },
            {
              "name": "pending",
              "description": "When set, a loading item is appended to the end of the timeline with this value as its content.\nSet to an empty string `\"\"` to show a loading item with no text.\nWhen not set (`undefined` / attribute absent), no pending item is shown.",
              "value": { "type": "string | undefined" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "The default slot for `sl-timeline-item` elements. When using slotted items, the `items` property is ignored."
            },
            {
              "name": "pending-dot",
              "description": "Custom icon for the pending item dot. Only used when the `pending` attribute is set."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "items",
                "description": "An array of timeline item data objects. Each object can include `color`, `loading`, `title`, `content`, and `placement`.\nAlternatively, you can use slotted `<sl-timeline-item>` elements for full control.",
                "type": "TimelineItemData[]"
              },
              {
                "name": "mode",
                "description": "The display mode of the timeline.\n- `start` — content on the start side (default, axis on the left / top)\n- `end` — content on the end side (axis on the right / bottom)\n- `alternate` — items alternate between start and end",
                "type": "'start' | 'end' | 'alternate'"
              },
              {
                "name": "orientation",
                "description": "The orientation of the timeline.",
                "type": "'vertical' | 'horizontal'"
              },
              {
                "name": "variant",
                "description": "The variant style of the dot. Passed to all child items.",
                "type": "'outlined' | 'filled'"
              },
              {
                "name": "reverse",
                "description": "Whether to reverse the order of items.",
                "type": "boolean"
              },
              {
                "name": "titleSpan",
                "description": "Set the title span space — the distance to the center of the dot.\nWhen set, the timeline switches to a three-column layout: `[title] [dot] [content]`.\n- `number` — grid value out of 24 (e.g. `6` = 25%, `12` = 50%)\n- `string` — CSS length or percentage (e.g. `\"100px\"`, `\"25%\"`)\n\nOnly takes effect when `mode` is **not** `alternate`.",
                "type": "string | number | undefined"
              },
              {
                "name": "pending",
                "description": "When set, a loading item is appended to the end of the timeline with this value as its content.\nSet to an empty string `\"\"` to show a loading item with no text.\nWhen not set (`undefined` / attribute absent), no pending item is shown.",
                "type": "string | undefined"
              }
            ],
            "events": []
          }
        },
        {
          "name": "sl-timepicker",
          "description": "A time picker component that provides a time selection interface.\n---\n\n\n### **Events:**\n - **sl-change** - Emitted when the control's value changes.\n- **sl-input** - Emitted when the control's value changes.\n- **sl-focus** - Emitted when the control gains focus.\n- **sl-blur** - Emitted when the control loses focus.\n- **sl-clear** - Emitted when the clear button is activated.\n- **sl-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n\n### **Slots:**\n - **label** - The input's label. Alternatively, you can use the `label` attribute.\n- **prefix** - The input's prefix, to prepend to the input.\n- **suffix** - The input's suffix, to append to the input.\n- **clear-icon** - An icon to use in lieu of the default clear icon.\n- **help-text** - Help text that describes the input. Alternatively, you can use the `help-text` attribute.",
          "doc-url": "",
          "attributes": [
            {
              "name": "format",
              "value": { "type": "string", "default": "'HH:mm:ss'" }
            },
            { "name": "pattern", "value": { "type": "string" } }
          ],
          "slots": [
            {
              "name": "label",
              "description": "The input's label. Alternatively, you can use the `label` attribute."
            },
            {
              "name": "prefix",
              "description": "The input's prefix, to prepend to the input."
            },
            {
              "name": "suffix",
              "description": "The input's suffix, to append to the input."
            },
            {
              "name": "clear-icon",
              "description": "An icon to use in lieu of the default clear icon."
            },
            {
              "name": "help-text",
              "description": "Help text that describes the input. Alternatively, you can use the `help-text` attribute."
            }
          ],
          "events": [
            {
              "name": "sl-change",
              "description": "Emitted when the control's value changes."
            },
            {
              "name": "sl-input",
              "description": "Emitted when the control's value changes."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the control gains focus."
            },
            {
              "name": "sl-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "sl-clear",
              "description": "Emitted when the clear button is activated."
            },
            {
              "name": "sl-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            }
          ],
          "js": {
            "properties": [
              { "name": "timePanel", "type": "SlTimePanel" },
              { "name": "format", "type": "string" },
              { "name": "pattern", "type": "string" }
            ],
            "events": [
              {
                "name": "sl-change",
                "description": "Emitted when the control's value changes."
              },
              {
                "name": "sl-input",
                "description": "Emitted when the control's value changes."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the control gains focus."
              },
              {
                "name": "sl-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "sl-clear",
                "description": "Emitted when the clear button is activated."
              },
              {
                "name": "sl-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              }
            ]
          }
        },
        {
          "name": "sl-tooltip",
          "description": "Tooltips display additional information based on a specific action.\n---\n\n\n### **Events:**\n - **sl-show** - Emitted when the tooltip begins to show.\n- **sl-after-show** - Emitted after the tooltip has shown and all animations are complete.\n- **sl-hide** - Emitted when the tooltip begins to hide.\n- **sl-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 `<sl-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": "sl-show",
              "description": "Emitted when the tooltip begins to show."
            },
            {
              "name": "sl-after-show",
              "description": "Emitted after the tooltip has shown and all animations are complete."
            },
            {
              "name": "sl-hide",
              "description": "Emitted when the tooltip begins to hide."
            },
            {
              "name": "sl-after-hide",
              "description": "Emitted after the tooltip has hidden and all animations are complete."
            }
          ],
          "js": {
            "properties": [
              { "name": "defaultSlot", "type": "HTMLSlotElement" },
              { "name": "body", "type": "HTMLElement" },
              { "name": "popup", "type": "SlPopup" },
              {
                "name": "content",
                "description": "The tooltip's content. If you need to display HTML, use the `content` slot instead.",
                "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.",
                "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.",
                "type": "boolean"
              },
              {
                "name": "distance",
                "description": "The distance in pixels from which to offset the tooltip away from its target.",
                "type": "number"
              },
              {
                "name": "open",
                "description": "Indicates whether or not the tooltip is open. You can use this in lieu of the show/hide methods.",
                "type": "boolean"
              },
              {
                "name": "skidding",
                "description": "The distance in pixels from which to offset the tooltip along its target.",
                "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.",
                "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.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-show",
                "description": "Emitted when the tooltip begins to show."
              },
              {
                "name": "sl-after-show",
                "description": "Emitted after the tooltip has shown and all animations are complete."
              },
              {
                "name": "sl-hide",
                "description": "Emitted when the tooltip begins to hide."
              },
              {
                "name": "sl-after-hide",
                "description": "Emitted after the tooltip has hidden and all animations are complete."
              }
            ]
          }
        },
        {
          "name": "sl-transfer",
          "description": "Transfer 穿梭框组件，用于在两个列表之间移动数据。\n---\n\n\n### **Events:**\n - **sl-transfer-change** - 当数据穿梭完成时触发，返回目标键、方向和移动的键。\n- **sl-transfer-select-change** - 当选中项变化时触发。\n- **sl-transfer-search** - 当搜索时触发。\n- **sl-transfer-scroll** - 当列表滚动时触发。\n\n### **Methods:**\n - **moveToTarget()** - 移动选中项到目标列表\n- **moveToSource()** - 移动选中项到源列表\n- **setSourceSelectedKeys(keys: _string[]_)** - 设置源列表选中项（供外部调用，用于 source-item-list 自定义列表场景）\n- **setTargetSelectedKeys(keys: _string[]_)** - 设置目标列表选中项（供外部调用）\n\n### **Slots:**\n - **move-to-target** - 自定义\"移动到目标列表\"按钮内容。\n- **move-to-source** - 自定义\"移动到源列表\"按钮内容。\n- **operation** - 完全自定义操作区域内容，替换默认的穿梭按钮。\n- **source-empty** - 自定义源列表空提示内容。\n- **target-empty** - 自定义目标列表空提示内容。\n- **source-item-list** - 自定义源列表内容区域，替换默认列表渲染。\n- **target-item-list** - 自定义目标列表内容区域，替换默认列表渲染。\n- **source-footer** - 自定义源列表底部内容，位于分页上方。\n- **target-footer** - 自定义目标列表底部内容，位于分页上方。\n\n### **CSS Properties:**\n - **--transfer-width** - 单个面板的宽度。 _(default: undefined)_\n- **--transfer-height** - 单个面板的高度。 _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - 组件的基础容器。\n- **source-panel** - 源列表面板。\n- **target-panel** - 目标列表面板。\n- **panel-header** - 面板头部。\n- **panel-list** - 面板列表。\n- **operation** - 操作按钮区域。\n- **search-input** - 搜索输入框。",
          "doc-url": "",
          "attributes": [
            {
              "name": "dataSource",
              "description": "数据源",
              "value": { "type": "TransferItem[]", "default": "[]" }
            },
            {
              "name": "target-keys",
              "description": "目标列表的 key 集合",
              "value": { "type": "string[]", "default": "[]" }
            },
            {
              "name": "disabled",
              "description": "是否禁用",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "pagination",
              "description": "是否显示分页",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "page-size",
              "description": "每页显示条数",
              "value": { "type": "number", "default": "10" }
            },
            {
              "name": "show-search",
              "description": "是否显示搜索框",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-select-all",
              "description": "是否显示全选",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "one-way",
              "description": "是否单向穿梭",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "titles",
              "description": "两个列表的标题，格式为 ['sourceTitle', 'targetTitle']",
              "value": {
                "type": "string[]",
                "default": "['源列表', '目标列表']"
              }
            },
            {
              "name": "status",
              "description": "组件状态",
              "value": {
                "type": "'normal' | 'success' | 'error'",
                "default": "'normal'"
              }
            },
            {
              "name": "search-placeholder",
              "description": "搜索框占位符",
              "value": { "type": "string", "default": "'请输入搜索内容'" }
            },
            {
              "name": "selected-keys",
              "description": "受控模式下的选中项 key 集合，传入后由外部完全控制选中状态",
              "value": { "type": "string[] | undefined" }
            }
          ],
          "slots": [
            {
              "name": "move-to-target",
              "description": "自定义\"移动到目标列表\"按钮内容。"
            },
            {
              "name": "move-to-source",
              "description": "自定义\"移动到源列表\"按钮内容。"
            },
            {
              "name": "operation",
              "description": "完全自定义操作区域内容，替换默认的穿梭按钮。"
            },
            {
              "name": "source-empty",
              "description": "自定义源列表空提示内容。"
            },
            {
              "name": "target-empty",
              "description": "自定义目标列表空提示内容。"
            },
            {
              "name": "source-item-list",
              "description": "自定义源列表内容区域，替换默认列表渲染。"
            },
            {
              "name": "target-item-list",
              "description": "自定义目标列表内容区域，替换默认列表渲染。"
            },
            {
              "name": "source-footer",
              "description": "自定义源列表底部内容，位于分页上方。"
            },
            {
              "name": "target-footer",
              "description": "自定义目标列表底部内容，位于分页上方。"
            }
          ],
          "events": [
            {
              "name": "sl-transfer-change",
              "description": "当数据穿梭完成时触发，返回目标键、方向和移动的键。"
            },
            {
              "name": "sl-transfer-select-change",
              "description": "当选中项变化时触发。"
            },
            { "name": "sl-transfer-search", "description": "当搜索时触发。" },
            {
              "name": "sl-transfer-scroll",
              "description": "当列表滚动时触发。"
            }
          ],
          "js": {
            "properties": [
              {
                "name": "dataSource",
                "description": "数据源",
                "type": "TransferItem[]"
              },
              {
                "name": "targetKeys",
                "description": "目标列表的 key 集合",
                "type": "string[]"
              },
              {
                "name": "disabled",
                "description": "是否禁用",
                "type": "boolean"
              },
              {
                "name": "pagination",
                "description": "是否显示分页",
                "type": "boolean"
              },
              {
                "name": "pageSize",
                "description": "每页显示条数",
                "type": "number"
              },
              {
                "name": "showSearch",
                "description": "是否显示搜索框",
                "type": "boolean"
              },
              {
                "name": "showSelectAll",
                "description": "是否显示全选",
                "type": "boolean"
              },
              {
                "name": "oneWay",
                "description": "是否单向穿梭",
                "type": "boolean"
              },
              {
                "name": "titles",
                "description": "两个列表的标题，格式为 ['sourceTitle', 'targetTitle']",
                "type": "string[]"
              },
              {
                "name": "status",
                "description": "组件状态",
                "type": "'normal' | 'success' | 'error'"
              },
              {
                "name": "searchPlaceholder",
                "description": "搜索框占位符",
                "type": "string"
              },
              {
                "name": "selectedKeys",
                "description": "受控模式下的选中项 key 集合，传入后由外部完全控制选中状态",
                "type": "string[] | undefined"
              },
              {
                "name": "itemRender",
                "description": "自定义渲染每个列表项的内容，返回 TemplateResult 或字符串",
                "type": "(item: TransferItem) => unknown | undefined"
              },
              {
                "name": "filterOption",
                "description": "自定义搜索过滤逻辑，返回 true 表示该项匹配",
                "type": "(\n    inputValue: string,\n    option: TransferItem,\n    direction: TransferDirection\n  ) => boolean | undefined"
              }
            ],
            "events": [
              {
                "name": "sl-transfer-change",
                "description": "当数据穿梭完成时触发，返回目标键、方向和移动的键。"
              },
              {
                "name": "sl-transfer-select-change",
                "description": "当选中项变化时触发。"
              },
              { "name": "sl-transfer-search", "description": "当搜索时触发。" },
              {
                "name": "sl-transfer-scroll",
                "description": "当列表滚动时触发。"
              }
            ]
          }
        },
        {
          "name": "sl-tree",
          "description": "Trees allow you to display a hierarchical list of selectable [tree items](/components/tree-item). Items with children can be expanded and collapsed as desired by the user.\n---\n\n\n### **Events:**\n - **sl-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 `<sl-icon>`.\n- **collapse-icon** - The icon to show when the tree item is collapsed. Works best with `<sl-icon>`.\n\n### **CSS Properties:**\n - **--indent-size** - The size of the indentation for nested items. _(default: var(--sl-spacing-medium))_\n- **--indent-guide-color** - The color of the indentation line. _(default: var(--sl-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'"
              }
            },
            {
              "name": "show-line",
              "description": "Whether to show connecting lines between tree nodes.",
              "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. Works best with `<sl-icon>`."
            },
            {
              "name": "collapse-icon",
              "description": "The icon to show when the tree item is collapsed. Works best with `<sl-icon>`."
            }
          ],
          "events": [
            {
              "name": "sl-selection-change",
              "type": "{ selection: SlTreeItem[] }",
              "description": "Emitted when a tree item is selected or deselected."
            }
          ],
          "js": {
            "properties": [
              { "name": "defaultSlot", "type": "HTMLSlotElement" },
              { "name": "expandedIconSlot", "type": "HTMLSlotElement" },
              { "name": "collapsedIconSlot", "type": "HTMLSlotElement" },
              {
                "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.",
                "type": "'single' | 'multiple' | 'leaf'"
              },
              {
                "name": "showLine",
                "description": "Whether to show connecting lines between tree nodes.",
                "type": "boolean"
              }
            ],
            "events": [
              {
                "name": "sl-selection-change",
                "type": "{ selection: SlTreeItem[] }",
                "description": "Emitted when a tree item is selected or deselected."
              }
            ]
          }
        },
        {
          "name": "sl-tree-item",
          "description": "A tree item serves as a hierarchical node that lives inside a [tree](/components/tree).\n---\n\n\n### **Events:**\n - **sl-expand** - Emitted when the tree item expands.\n- **sl-after-expand** - Emitted after the tree item expands and all animations are complete.\n- **sl-collapse** - Emitted when the tree item collapses.\n- **sl-after-collapse** - Emitted after the tree item collapses and all animations are complete.\n- **sl-lazy-change** - Emitted when the tree item's lazy state changes.\n- **sl-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 }_): _SlTreeItem[]_** - 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": "sl-expand",
              "description": "Emitted when the tree item expands."
            },
            {
              "name": "sl-after-expand",
              "description": "Emitted after the tree item expands and all animations are complete."
            },
            {
              "name": "sl-collapse",
              "description": "Emitted when the tree item collapses."
            },
            {
              "name": "sl-after-collapse",
              "description": "Emitted after the tree item collapses and all animations are complete."
            },
            {
              "name": "sl-lazy-change",
              "description": "Emitted when the tree item's lazy state changes."
            },
            {
              "name": "sl-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": "indeterminate", "type": "boolean" },
              { "name": "isLeaf", "type": "boolean" },
              { "name": "loading", "type": "boolean" },
              { "name": "selectable", "type": "boolean" },
              {
                "name": "expanded",
                "description": "Expands the tree item.",
                "type": "boolean"
              },
              {
                "name": "selected",
                "description": "Draws the tree item in a selected state.",
                "type": "boolean"
              },
              {
                "name": "disabled",
                "description": "Disables the tree item.",
                "type": "boolean"
              },
              {
                "name": "lazy",
                "description": "Enables lazy loading behavior.",
                "type": "boolean"
              },
              { "name": "defaultSlot", "type": "HTMLSlotElement" },
              { "name": "childrenSlot", "type": "HTMLSlotElement" },
              { "name": "itemElement", "type": "HTMLDivElement" },
              { "name": "childrenContainer", "type": "HTMLDivElement" },
              { "name": "expandButtonSlot", "type": "HTMLSlotElement" }
            ],
            "events": [
              {
                "name": "sl-expand",
                "description": "Emitted when the tree item expands."
              },
              {
                "name": "sl-after-expand",
                "description": "Emitted after the tree item expands and all animations are complete."
              },
              {
                "name": "sl-collapse",
                "description": "Emitted when the tree item collapses."
              },
              {
                "name": "sl-after-collapse",
                "description": "Emitted after the tree item collapses and all animations are complete."
              },
              {
                "name": "sl-lazy-change",
                "description": "Emitted when the tree item's lazy state changes."
              },
              {
                "name": "sl-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": "sl-tree-select",
          "description": "TreeSelect combines a dropdown trigger with a tree structure, allowing users to select from hierarchical data.\n---\n\n\n### **Events:**\n - **sl-change** - Emitted when the control's value changes.\n- **sl-clear** - Emitted when the control's value is cleared.\n- **sl-input** - Emitted when the control receives input.\n- **sl-focus** - Emitted when the control gains focus.\n- **sl-blur** - Emitted when the control loses focus.\n- **sl-show** - Emitted when the dropdown opens.\n- **sl-after-show** - Emitted after the dropdown opens and all animations are complete.\n- **sl-hide** - Emitted when the dropdown closes.\n- **sl-after-hide** - Emitted after the dropdown closes and all animations are complete.\n- **sl-invalid** - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n- **sl-search** - Emitted when the search value changes.\n- **sl-lazy-load** - Emitted when a lazy node is expanded and its children need to be loaded.\n\n### **Methods:**\n - **loadChildren(parentValue: _string_, children: _TreeSelectNodeData[]_)** - Load children for a lazy node. Call this from your `sl-lazy-load` event handler.\nIt updates the node's children in `treeData`, removes `lazy`, and expands the node.\n\n### **Slots:**\n - **label** - The input'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- **prefix** - Used to prepend a presentational icon or similar element to the combobox.\n- **suffix** - Used to append 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.\n- **tree-expand-icon** - The icon to show when a tree node is collapsed (click to expand). Forwarded to the tree's `expand-icon` slot.\n- **tree-collapse-icon** - The icon to show when a tree node is expanded (click to collapse). Forwarded to the tree's `collapse-icon` slot.\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 that wraps the prefix, combobox, clear icon, and expand button.\n- **prefix** - The container that wraps the prefix slot.\n- **suffix** - The container that wraps the suffix slot.\n- **display-input** - The element that displays the selected option's label.\n- **tags** - The container that houses option tags when `multiple` is used.\n- **tag** - The individual tags that represent each selected option.\n- **clear-button** - The clear button.\n- **expand-icon** - The container that wraps the expand icon.\n- **dropdown** - The dropdown panel that contains the tree.\n- **tree** - The tree element inside the dropdown.",
          "doc-url": "",
          "attributes": [
            {
              "name": "name",
              "description": "The name of the control, submitted as a name/value pair with form data.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "value",
              "description": "The default value of the form control. Primarily used for resetting the form control.",
              "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 node to be selected. Renders checkboxes in the tree.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "max-options-visible",
              "description": "The maximum number of selected options to show when `multiple` is true.\nAfter the maximum, \"+n\" will be shown. Set to 0 to remove the limit.",
              "value": { "type": "number", "default": "3" }
            },
            {
              "name": "disabled",
              "description": "Disables the control.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "clearable",
              "description": "Adds a clear button when the input is not empty.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "open",
              "description": "Indicates whether or not the dropdown is open. You can toggle this attribute to show and hide the dropdown,\nor you can use the `show()` and `hide()` methods.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "hoist",
              "description": "Enable the use of `hoist` to position the dropdown panel using a fixed strategy,\nallowing it to break out of containers that have `overflow: hidden`.",
              "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 input's label. If you need to display HTML, use the `label` slot instead.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "layout",
              "description": "The layout of the form control. `vertical` places the label above, `horizontal` places it to the left.",
              "value": {
                "type": "'vertical' | 'horizontal'",
                "default": "'vertical'"
              }
            },
            {
              "name": "variant",
              "description": "The visual variant of the input. `outlined` shows a full border, `underlined` shows only a bottom border.",
              "value": {
                "type": "'outlined' | 'underlined'",
                "default": "'outlined'"
              }
            },
            {
              "name": "placement",
              "description": "The preferred placement of the dropdown panel. Note that the actual placement may vary\nto keep the panel 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": "'bottom-start'"
              }
            },
            {
              "name": "help-text",
              "description": "The input's help text.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "required",
              "description": "The input's required attribute.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "form",
              "description": "The associated form element.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "show-search",
              "description": "Whether to enable search in the combobox input. Can be a boolean or a config object.\nWhen `true`, enables search with default settings.\nWhen an object, enables search with the specified configuration:\n- `autoClearSearchValue`: auto clear search after selection (default: true)\n- `filterTreeNode`: filter function or boolean (default: true)\n- `searchValue`: controlled search value\n- `treeNodeFilterProp`: which node property to filter on (default: 'value')",
              "value": {
                "type": "boolean | ShowSearchConfig",
                "default": "false"
              }
            },
            {
              "name": "tree-default-expand-all",
              "description": "Whether parent nodes are selectable when `multiple` is false. Defaults to true.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "tree-checkable",
              "description": "Whether to check children when parent is checked (only for multiple mode).",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-checked-strategy",
              "description": "Strategy for showing checked nodes: 'all' | 'parent' | 'child'. Defaults to 'all'.",
              "value": {
                "type": "'all' | 'parent' | 'child'",
                "default": "'all'"
              }
            },
            {
              "name": "tree-line",
              "description": "Whether to show connecting lines between parent nodes in the tree. Leaf nodes are excluded.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "leaf-only",
              "description": "When true, only leaf nodes (nodes without children) can be selected.\nIn single-select mode, clicking a parent node will expand/collapse it instead of selecting.\nIn multiple-select mode, only leaf node values will be included in the selection.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "getTag",
              "description": "A function that generates a custom tag for each selected option in multiple mode.\nThe function receives the node data and index, and should return a TemplateResult, string, or HTMLElement.",
              "value": {
                "type": "(node: TreeSelectNodeData, index: number) => TemplateResult | string | HTMLElement"
              }
            }
          ],
          "slots": [
            {
              "name": "label",
              "description": "The input'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."
            },
            {
              "name": "prefix",
              "description": "Used to prepend a presentational icon or similar element to the combobox."
            },
            {
              "name": "suffix",
              "description": "Used to append 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."
            },
            {
              "name": "tree-expand-icon",
              "description": "The icon to show when a tree node is collapsed (click to expand). Forwarded to the tree's `expand-icon` slot."
            },
            {
              "name": "tree-collapse-icon",
              "description": "The icon to show when a tree node is expanded (click to collapse). Forwarded to the tree's `collapse-icon` slot."
            }
          ],
          "events": [
            {
              "name": "sl-change",
              "description": "Emitted when the control's value changes."
            },
            {
              "name": "sl-clear",
              "description": "Emitted when the control's value is cleared."
            },
            {
              "name": "sl-input",
              "description": "Emitted when the control receives input."
            },
            {
              "name": "sl-focus",
              "description": "Emitted when the control gains focus."
            },
            {
              "name": "sl-blur",
              "description": "Emitted when the control loses focus."
            },
            {
              "name": "sl-show",
              "description": "Emitted when the dropdown opens."
            },
            {
              "name": "sl-after-show",
              "description": "Emitted after the dropdown opens and all animations are complete."
            },
            {
              "name": "sl-hide",
              "description": "Emitted when the dropdown closes."
            },
            {
              "name": "sl-after-hide",
              "description": "Emitted after the dropdown closes and all animations are complete."
            },
            {
              "name": "sl-invalid",
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
            },
            {
              "name": "sl-search",
              "description": "Emitted when the search value changes."
            },
            {
              "name": "sl-lazy-load",
              "description": "Emitted when a lazy node is expanded and its children need to be loaded."
            }
          ],
          "js": {
            "properties": [
              { "name": "popup", "type": "SlPopup" },
              { "name": "combobox", "type": "HTMLSlotElement" },
              { "name": "displayInput", "type": "HTMLElement" },
              { "name": "valueInput", "type": "HTMLInputElement" },
              { "name": "dropdown", "type": "HTMLElement" },
              {
                "name": "displayLabel",
                "type": "string | HTMLElement | TemplateResult"
              },
              {
                "name": "name",
                "description": "The name of the control, submitted as a name/value pair with form data.",
                "type": "string"
              },
              {
                "name": "value",
                "description": "The current value. When `multiple` is enabled, the value will be an array of strings.\nValues must not contain spaces when using multiple mode."
              },
              {
                "name": "defaultValue",
                "description": "The default value of the form control. Primarily used for resetting the form control.",
                "type": "string | string[]"
              },
              {
                "name": "size",
                "description": "The select's size.",
                "type": "'small' | 'medium' | 'large'"
              },
              {
                "name": "placeholder",
                "description": "Placeholder text to show as a hint when the select is empty.",
                "type": "string"
              },
              {
                "name": "multiple",
                "description": "Allows more than one node to be selected. Renders checkboxes in the tree.",
                "type": "boolean"
              },
              {
                "name": "maxOptionsVisible",
                "description": "The maximum number of selected options to show when `multiple` is true.\nAfter the maximum, \"+n\" will be shown. Set to 0 to remove the limit.",
                "type": "number"
              },
              {
                "name": "disabled",
                "description": "Disables the control.",
                "type": "boolean"
              },
              {
                "name": "clearable",
                "description": "Adds a clear button when the input is not empty.",
                "type": "boolean"
              },
              {
                "name": "open",
                "description": "Indicates whether or not the dropdown is open. You can toggle this attribute to show and hide the dropdown,\nor you can use the `show()` and `hide()` methods.",
                "type": "boolean"
              },
              {
                "name": "hoist",
                "description": "Enable the use of `hoist` to position the dropdown panel using a fixed strategy,\nallowing it to break out of containers that have `overflow: hidden`.",
                "type": "boolean"
              },
              {
                "name": "filled",
                "description": "Draws a filled select.",
                "type": "boolean"
              },
              {
                "name": "pill",
                "description": "Draws a pill-style select with rounded edges.",
                "type": "boolean"
              },
              {
                "name": "label",
                "description": "The input's label. If you need to display HTML, use the `label` slot instead.",
                "type": "string"
              },
              {
                "name": "layout",
                "description": "The layout of the form control. `vertical` places the label above, `horizontal` places it to the left.",
                "type": "'vertical' | 'horizontal'"
              },
              {
                "name": "variant",
                "description": "The visual variant of the input. `outlined` shows a full border, `underlined` shows only a bottom border.",
                "type": "'outlined' | 'underlined'"
              },
              {
                "name": "placement",
                "description": "The preferred placement of the dropdown panel. Note that the actual placement may vary\nto keep the panel inside of the viewport.",
                "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": "helpText",
                "description": "The input's help text.",
                "type": "string"
              },
              {
                "name": "required",
                "description": "The input's required attribute.",
                "type": "boolean"
              },
              {
                "name": "form",
                "description": "The associated form element.",
                "type": "string"
              },
              {
                "name": "treeData",
                "description": "Tree data. An array of `TreeSelectNodeData` objects describing the tree structure.\nEach node has `title`, `value`, and optionally `children`, `disabled`, `selectable`, `checkable`, `isLeaf`.",
                "type": "TreeSelectNodeData[]"
              },
              {
                "name": "showSearch",
                "description": "Whether to enable search in the combobox input. Can be a boolean or a config object.\nWhen `true`, enables search with default settings.\nWhen an object, enables search with the specified configuration:\n- `autoClearSearchValue`: auto clear search after selection (default: true)\n- `filterTreeNode`: filter function or boolean (default: true)\n- `searchValue`: controlled search value\n- `treeNodeFilterProp`: which node property to filter on (default: 'value')",
                "type": "boolean | ShowSearchConfig"
              },
              {
                "name": "treeDefaultExpandAll",
                "description": "Whether parent nodes are selectable when `multiple` is false. Defaults to true.",
                "type": "boolean"
              },
              {
                "name": "treeCheckable",
                "description": "Whether to check children when parent is checked (only for multiple mode).",
                "type": "boolean"
              },
              {
                "name": "showCheckedStrategy",
                "description": "Strategy for showing checked nodes: 'all' | 'parent' | 'child'. Defaults to 'all'.",
                "type": "'all' | 'parent' | 'child'"
              },
              {
                "name": "treeLine",
                "description": "Whether to show connecting lines between parent nodes in the tree. Leaf nodes are excluded.",
                "type": "boolean"
              },
              {
                "name": "leafOnly",
                "description": "When true, only leaf nodes (nodes without children) can be selected.\nIn single-select mode, clicking a parent node will expand/collapse it instead of selecting.\nIn multiple-select mode, only leaf node values will be included in the selection.",
                "type": "boolean"
              },
              {
                "name": "getTag",
                "description": "A function that generates a custom tag for each selected option in multiple mode.\nThe function receives the node data and index, and should return a TemplateResult, string, or HTMLElement.",
                "type": "(node: TreeSelectNodeData, index: number) => TemplateResult | string | HTMLElement"
              },
              {
                "name": "validity",
                "description": "Gets the validity state object"
              },
              {
                "name": "validationMessage",
                "description": "Gets the validation message"
              }
            ],
            "events": [
              {
                "name": "sl-change",
                "description": "Emitted when the control's value changes."
              },
              {
                "name": "sl-clear",
                "description": "Emitted when the control's value is cleared."
              },
              {
                "name": "sl-input",
                "description": "Emitted when the control receives input."
              },
              {
                "name": "sl-focus",
                "description": "Emitted when the control gains focus."
              },
              {
                "name": "sl-blur",
                "description": "Emitted when the control loses focus."
              },
              {
                "name": "sl-show",
                "description": "Emitted when the dropdown opens."
              },
              {
                "name": "sl-after-show",
                "description": "Emitted after the dropdown opens and all animations are complete."
              },
              {
                "name": "sl-hide",
                "description": "Emitted when the dropdown closes."
              },
              {
                "name": "sl-after-hide",
                "description": "Emitted after the dropdown closes and all animations are complete."
              },
              {
                "name": "sl-invalid",
                "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied."
              },
              {
                "name": "sl-search",
                "description": "Emitted when the search value changes."
              },
              {
                "name": "sl-lazy-load",
                "description": "Emitted when a lazy node is expanded and its children need to be loaded."
              }
            ]
          }
        },
        {
          "name": "sl-upload",
          "description": "上传组件，支持文件选择、拖放上传、文件列表和图片卡片模式。\n---\n\n\n### **Events:**\n - **sl-change** - 文件列表变化时触发。`event.detail` 包含 `{ file, fileList, event? }`，其中 `event` 是可选的进度信息 `{ percent }`。\n- **sl-remove** - 文件被移除时触发。调用 `event.preventDefault()` 可取消移除。`event.detail` 包含 `{ file }`。\n- **sl-preview** - 请求预览文件时触发。`event.detail` 包含 `{ file }`。\n- **sl-download** - 请求下载文件时触发。调用 `event.preventDefault()` 可阻止默认打开 URL 行为。`event.detail` 包含 `{ file }`。\n- **sl-drop** - 拖放模式下放置文件时触发。`event.detail` 包含 `{ event }`，其中 `event` 是原生 `DragEvent`。\n- **sl-exceed** - 文件数量超过 maxCount 时触发。`event.detail` 包含 `{ files, maxCount }`。\n\n### **Methods:**\n - **openFileDialog()** - 以编程方式打开文件选择对话框。\n- **upload(file: _File_)** - 以编程方式触发文件上传。\n- **abort(uid: _string_)** - 根据 uid 中止指定文件的上传。\n\n### **Slots:**\n - _default_ - 选择模式的触发内容。对于 picture-card/picture-circle，这是上传按钮的内容。\n- **drag-icon** - 拖放区域显示的图标。\n- **drag-text** - 拖放区域显示的文本。\n- **drag-hint** - 拖放文本下方显示的提示文本。\n- **tip** - 上传触发区域下方显示的帮助文本。\n\n### **CSS Properties:**\n - **--sl-upload-progress-height** - 上传进度条的高度。默认值为 `2px`。 _(default: undefined)_\n- **--sl-upload-progress-track-color** - 上传进度条的轨道颜色。默认值为 `--sl-color-neutral-200`。 _(default: undefined)_\n- **--sl-upload-progress-indicator-color** - 上传进度条的指示器颜色。默认值为 `--sl-color-primary-600`。 _(default: undefined)_\n- **--sl-upload-progress-label-color** - 上传进度条的标签颜色。默认值为 `--sl-color-neutral-0`。 _(default: undefined)_\n\n### **CSS Parts:**\n - **base** - 组件的基础包裹容器。\n- **trigger** - 上传触发区域。\n- **drag-area** - 拖放区域（仅拖放模式）。\n- **list** - 文件列表容器。\n- **list-item** - 单个文件列表项。\n- **list-item-name** - 列表项中的文件名。\n- **list-item-actions** - 列表项中的操作按钮容器。\n- **list-item-extra** - 文件名旁显示的额外信息。\n- **list-item-progress** - 上传中项目的进度条容器。",
          "doc-url": "",
          "attributes": [
            {
              "name": "action",
              "description": "上传文件的目标 URL。",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "method",
              "description": "上传请求的 HTTP 方法。",
              "value": {
                "type": "'POST' | 'PUT' | 'PATCH'",
                "default": "'POST'"
              }
            },
            {
              "name": "name",
              "description": "文件输入的 name 属性（用作 FormData 的键名）。",
              "value": { "type": "string", "default": "'file'" }
            },
            {
              "name": "accept",
              "description": "接受的文件类型（与原生 input 的 accept 属性相同）。",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "multiple",
              "description": "是否允许选择多个文件。",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "directory",
              "description": "是否支持目录上传。",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "是否禁用上传。",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "type",
              "description": "上传类型：'select' 为点击选择，'drag' 为拖放上传。",
              "value": { "type": "UploadType", "default": "'select'" }
            },
            {
              "name": "list-type",
              "description": "文件列表的展示类型。",
              "value": { "type": "UploadListType", "default": "'text'" }
            },
            {
              "name": "max-count",
              "description": "允许上传的最大文件数。设置为 1 时，新文件将替换旧文件。",
              "value": { "type": "number | undefined" }
            },
            {
              "name": "show-upload-list",
              "description": "是否显示上传列表，或传入对象来配置显示的图标。\n设为 `false` 时隐藏文件列表。\n设为 `true`（默认）时，所有图标使用默认行为。\n设为对象时，可单独控制 `showPreviewIcon`、`showRemoveIcon` 和 `showDownloadIcon`。\n作为 HTML 属性使用时为 `show-upload-list`（布尔值）。对象配置需通过 JavaScript 属性设置。",
              "value": {
                "type": "boolean | ShowUploadListInterface",
                "default": "true"
              }
            },
            {
              "name": "open-file-dialog-on-click",
              "description": "是否点击触发区域时打开文件选择对话框。",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "pastable",
              "description": "是否支持粘贴上传文件。启用后会监听 document 的 paste 事件。",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "with-credentials",
              "description": "上传请求是否携带 Cookie。",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "headers",
              "description": "上传请求的额外请求头。",
              "value": { "type": "Record<string, string>", "default": "{}" }
            },
            {
              "name": "data",
              "description": "上传请求附带的额外数据。",
              "value": { "type": "Record<string, unknown>", "default": "{}" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "选择模式的触发内容。对于 picture-card/picture-circle，这是上传按钮的内容。"
            },
            { "name": "drag-icon", "description": "拖放区域显示的图标。" },
            { "name": "drag-text", "description": "拖放区域显示的文本。" },
            {
              "name": "drag-hint",
              "description": "拖放文本下方显示的提示文本。"
            },
            { "name": "tip", "description": "上传触发区域下方显示的帮助文本。" }
          ],
          "events": [
            {
              "name": "sl-change",
              "description": "文件列表变化时触发。`event.detail` 包含 `{ file, fileList, event? }`，其中 `event` 是可选的进度信息 `{ percent }`。"
            },
            {
              "name": "sl-remove",
              "description": "文件被移除时触发。调用 `event.preventDefault()` 可取消移除。`event.detail` 包含 `{ file }`。"
            },
            {
              "name": "sl-preview",
              "description": "请求预览文件时触发。`event.detail` 包含 `{ file }`。"
            },
            {
              "name": "sl-download",
              "description": "请求下载文件时触发。调用 `event.preventDefault()` 可阻止默认打开 URL 行为。`event.detail` 包含 `{ file }`。"
            },
            {
              "name": "sl-drop",
              "description": "拖放模式下放置文件时触发。`event.detail` 包含 `{ event }`，其中 `event` 是原生 `DragEvent`。"
            },
            {
              "name": "sl-exceed",
              "description": "文件数量超过 maxCount 时触发。`event.detail` 包含 `{ files, maxCount }`。"
            }
          ],
          "js": {
            "properties": [
              { "name": "fileInput", "type": "HTMLInputElement" },
              {
                "name": "action",
                "description": "上传文件的目标 URL。",
                "type": "string"
              },
              {
                "name": "method",
                "description": "上传请求的 HTTP 方法。",
                "type": "'POST' | 'PUT' | 'PATCH'"
              },
              {
                "name": "name",
                "description": "文件输入的 name 属性（用作 FormData 的键名）。",
                "type": "string"
              },
              {
                "name": "accept",
                "description": "接受的文件类型（与原生 input 的 accept 属性相同）。",
                "type": "string"
              },
              {
                "name": "multiple",
                "description": "是否允许选择多个文件。",
                "type": "boolean"
              },
              {
                "name": "directory",
                "description": "是否支持目录上传。",
                "type": "boolean"
              },
              {
                "name": "disabled",
                "description": "是否禁用上传。",
                "type": "boolean"
              },
              {
                "name": "type",
                "description": "上传类型：'select' 为点击选择，'drag' 为拖放上传。",
                "type": "UploadType"
              },
              {
                "name": "listType",
                "description": "文件列表的展示类型。",
                "type": "UploadListType"
              },
              {
                "name": "maxCount",
                "description": "允许上传的最大文件数。设置为 1 时，新文件将替换旧文件。",
                "type": "number | undefined"
              },
              {
                "name": "showUploadList",
                "description": "是否显示上传列表，或传入对象来配置显示的图标。\n设为 `false` 时隐藏文件列表。\n设为 `true`（默认）时，所有图标使用默认行为。\n设为对象时，可单独控制 `showPreviewIcon`、`showRemoveIcon` 和 `showDownloadIcon`。\n作为 HTML 属性使用时为 `show-upload-list`（布尔值）。对象配置需通过 JavaScript 属性设置。",
                "type": "boolean | ShowUploadListInterface"
              },
              {
                "name": "openFileDialogOnClick",
                "description": "是否点击触发区域时打开文件选择对话框。",
                "type": "boolean"
              },
              {
                "name": "pastable",
                "description": "是否支持粘贴上传文件。启用后会监听 document 的 paste 事件。",
                "type": "boolean"
              },
              {
                "name": "withCredentials",
                "description": "上传请求是否携带 Cookie。",
                "type": "boolean"
              },
              {
                "name": "headers",
                "description": "上传请求的额外请求头。",
                "type": "Record<string, string>"
              },
              {
                "name": "data",
                "description": "上传请求附带的额外数据。",
                "type": "Record<string, unknown>"
              },
              {
                "name": "fileList",
                "description": "文件列表（受控模式）。设置后组件变为受控组件。",
                "type": "UploadFile[] | undefined"
              },
              {
                "name": "defaultFileList",
                "description": "默认文件列表（非受控模式）。",
                "type": "UploadFile[]"
              },
              {
                "name": "beforeUpload",
                "description": "上传前的回调函数。返回 false 取消上传，返回 File/Blob 进行转换。",
                "type": "BeforeUploadHandler | undefined"
              },
              {
                "name": "customRequest",
                "description": "自定义上传请求实现。",
                "type": "CustomRequestHandler | undefined"
              },
              {
                "name": "isImageUrl",
                "description": "自定义判断文件是否为图片的函数。",
                "type": "(file: UploadFile) => boolean | undefined"
              },
              {
                "name": "itemRender",
                "description": "自定义文件列表项的渲染函数。接收 (file, fileList, actions)，应返回 Lit TemplateResult。",
                "type": "ItemRender | undefined"
              },
              {
                "name": "iconRender",
                "description": "自定义文件图标的渲染函数。接收 (file, listType)，应返回 Lit TemplateResult。",
                "type": "IconRender | undefined"
              }
            ],
            "events": [
              {
                "name": "sl-change",
                "description": "文件列表变化时触发。`event.detail` 包含 `{ file, fileList, event? }`，其中 `event` 是可选的进度信息 `{ percent }`。"
              },
              {
                "name": "sl-remove",
                "description": "文件被移除时触发。调用 `event.preventDefault()` 可取消移除。`event.detail` 包含 `{ file }`。"
              },
              {
                "name": "sl-preview",
                "description": "请求预览文件时触发。`event.detail` 包含 `{ file }`。"
              },
              {
                "name": "sl-download",
                "description": "请求下载文件时触发。调用 `event.preventDefault()` 可阻止默认打开 URL 行为。`event.detail` 包含 `{ file }`。"
              },
              {
                "name": "sl-drop",
                "description": "拖放模式下放置文件时触发。`event.detail` 包含 `{ event }`，其中 `event` 是原生 `DragEvent`。"
              },
              {
                "name": "sl-exceed",
                "description": "文件数量超过 maxCount 时触发。`event.detail` 包含 `{ files, maxCount }`。"
              }
            ]
          }
        },
        {
          "name": "sl-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": [] }
        },
        {
          "name": "sl-x-markdown",
          "description": "Render markdown content with streaming support and custom node mapping.\n---\n\n\n### **Slots:**\n - _default_ - Not used. Content is rendered from the `content` property only.\n\n### **CSS Parts:**\n - **base** - The component's base wrapper.\n- **body** - The markdown body container.\n- **paragraph** - Paragraph content.\n- **heading** - Heading elements.\n- **link** - Link elements.\n- **blockquote** - Blockquotes and chat enhanced containers.\n- **list** - List containers.\n- **list-item** - List items.\n- **table** - Table elements.\n- **table-head** - Table header section.\n- **table-body** - Table body section.\n- **table-row** - Table rows.\n- **table-cell** - Table header/data cells.\n- **code-inline** - Inline code nodes.\n- **code-block** - Code block wrapper.\n- **code-block-header** - Code block language header.\n- **code-block-body** - Code block body.\n- **tail** - Streaming tail indicator.\n- **incomplete** - Incomplete markdown placeholder nodes.",
          "doc-url": "",
          "attributes": [
            {
              "name": "content",
              "description": "Markdown content to render.",
              "value": { "type": "string", "default": "''" }
            },
            {
              "name": "theme",
              "description": "Theme name for styling (`light`, `dark`, or custom class name).",
              "value": {
                "type": "'light' | 'dark' | string",
                "default": "'light'"
              }
            },
            {
              "name": "open-links-in-new-tab",
              "description": "Open links with `target=\\\"_blank\\\"` and `rel=\\\"noopener noreferrer\\\"`.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "escape-raw-html",
              "description": "Escapes raw HTML tokens when enabled.",
              "value": { "type": "boolean", "default": "true" }
            },
            {
              "name": "debug",
              "description": "Enables debug output in development environments.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "",
              "description": "Not used. Content is rendered from the `content` property only."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "content",
                "description": "Markdown content to render.",
                "type": "string"
              },
              {
                "name": "components",
                "description": "Map markdown node types to custom element tag names.",
                "type": "Record<string, string>"
              },
              {
                "name": "plugins",
                "description": "Markdown pipeline plugins.",
                "type": "SlXMarkdownPlugin[]"
              },
              {
                "name": "theme",
                "description": "Theme name for styling (`light`, `dark`, or custom class name).",
                "type": "'light' | 'dark' | string"
              },
              {
                "name": "openLinksInNewTab",
                "description": "Open links with `target=\\\"_blank\\\"` and `rel=\\\"noopener noreferrer\\\"`.",
                "type": "boolean"
              },
              {
                "name": "escapeRawHtml",
                "description": "Escapes raw HTML tokens when enabled.",
                "type": "boolean"
              },
              {
                "name": "debug",
                "description": "Enables debug output in development environments.",
                "type": "boolean"
              },
              {
                "name": "streaming",
                "description": "Streaming configuration. Set `false` to disable streaming mode.",
                "type": "SlXMarkdownStreamingConfig | false | undefined"
              }
            ],
            "events": []
          }
        }
      ]
    }
  }
}
