{
  "$schema": "https://raw.githubusercontent.com/JetBrains/web-types/master/schema/web-types.json",
  "name": "@ui5/webcomponents",
  "version": "2.22.0",
  "description-markup": "markdown",
  "contributions": {
    "html": {
      "elements": [
        {
          "name": "ui5-avatar",
          "description": "### Overview\n\nAn image-like component that has different display options for representing images and icons\nin different shapes and sizes, depending on the use case.\n\nThe shape can be circular or square. There are several predefined sizes, as well as an option to\nset a custom size.\n\n### Keyboard Handling\n\n- [Space] / [Enter] or [Return] - Fires the `click` event if the `mode` is set to `Interactive` or the deprecated `interactive` property is set to true.\n- [Shift] - If [Space] is pressed, pressing [Shift] releases the component without triggering the click event.\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/Avatar.js\";`\n---\n\n\n### **Events:**\n - **click** - Fired on mouseup, space and enter if avatar is interactive\n\n**Note:** The event will not be fired if the `disabled`\nproperty is set to `true`.\n\n### **Slots:**\n - **badge** - Defines the optional badge that will be used for visual affordance.\n\n**Recommendation:** While badges are supported on all avatars, it is recommended\nto use them with interactive avatars (via `mode=\"Interactive\"` or `interactive` attribute)\nto provide better user experience and accessibility.\n\n**Note:** While the slot allows for custom badges, to achieve\nthe Fiori design, use the `ui5-avatar-badge` component.\n- **default** - Receives the desired `<img>` tag\n\n**Note:** If you experience flickering of the provided image, you can hide the component until it is defined with the following CSS:<br/>\n`ui5-avatar:not(:defined) {`<br/>\n&nbsp;&nbsp;&nbsp;&nbsp;`visibility: hidden;`<br/>\n`}`",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessibility-attributes",
              "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following field is supported:\n\n- **hasPopup**: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the button.\nAccepts the following string values: `dialog`, `grid`, `listbox`, `menu` or `tree`.",
              "value": {
                "type": "AvatarAccessibilityAttributes",
                "default": "{}"
              }
            },
            {
              "name": "accessible-name",
              "description": "Defines the text alternative of the component.\nIf not provided a default text alternative will be set, if present.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "color-scheme",
              "description": "Defines the background color of the desired image.\nIf `colorScheme` is set to `Auto`, the avatar will be displayed with the `Accent6` color.",
              "value": {
                "type": "\"Auto\" | \"Accent1\" | \"Accent2\" | \"Accent3\" | \"Accent4\" | \"Accent5\" | \"Accent6\" | \"Accent7\" | \"Accent8\" | \"Accent9\" | \"Accent10\" | \"Placeholder\" | \"Transparent\"",
                "default": "\"Auto\""
              }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is disabled.\nA disabled component can't be pressed or\nfocused, and it is not in the tab chain.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "fallback-icon",
              "description": "Defines the name of the fallback icon, which should be displayed in the following cases:\n\n\t- If the initials are not valid (more than 3 letters, unsupported languages or empty initials).\n\t- If there are three initials and they do not fit in the shape (e.g. WWW for some of the sizes).\n\t- If the image src is wrong.\n\n**Note:** If not set, a default fallback icon \"employee\" is displayed.\n\n**Note:** You should import the desired icon first, then use its name as \"fallback-icon\".\n\n`import \"@ui5/webcomponents-icons/dist/{icon_name}.js\"`\n\n`<ui5-avatar fallback-icon=\"alert\">`\n\nSee all the available icons in the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string", "default": "\"employee\"" }
            },
            {
              "name": "icon",
              "description": "Defines the name of the UI5 Icon, that will be displayed.\n\n**Note:** If `image` slot is provided, the property will be ignored.\n\n**Note:** You should import the desired icon first, then use its name as \"icon\".\n\n`import \"@ui5/webcomponents-icons/dist/{icon_name}.js\"`\n\n`<ui5-avatar icon=\"employee\">`\n\n**Note:** If no icon or an empty one is provided, by default the \"employee\" icon should be displayed.\n\nSee all the available icons in the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "initials",
              "description": "Defines the displayed initials.\n\nUp to three Latin letters can be displayed as initials.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "interactive",
              "description": "Defines if the avatar is interactive (focusable and pressable).\n\n**Note:** When set to `true`, this property takes precedence over the `mode` property,\nand the avatar will be rendered as interactive (role=\"button\", focusable) regardless of the `mode` value.\n\n**Note:** This property won't have effect if the `disabled`\nproperty is set to `true`.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "mode",
              "description": "Defines the mode of the component.\n\n**Note:**\n- `Image` (default) - renders with role=\"img\"\n- `Decorative` - renders with role=\"presentation\" and aria-hidden=\"true\", making it purely decorative\n- `Interactive` - renders with role=\"button\", focusable (tabindex=\"0\"), and supports keyboard interaction\n\n**Note:** This property is ignored when the `interactive` property is set to `true`.\nIn that case, the avatar will always be rendered as interactive.",
              "value": {
                "type": "\"Image\" | \"Decorative\" | \"Interactive\"",
                "default": "\"Image\""
              }
            },
            {
              "name": "shape",
              "description": "Defines the shape of the component.",
              "value": {
                "type": "\"Circle\" | \"Square\"",
                "default": "\"Circle\""
              }
            },
            {
              "name": "size",
              "description": "Defines predefined size of the component.",
              "value": {
                "type": "\"XS\" | \"S\" | \"M\" | \"L\" | \"XL\"",
                "default": "\"S\""
              }
            }
          ],
          "slots": [
            {
              "name": "badge",
              "description": "Defines the optional badge that will be used for visual affordance.\n\n**Recommendation:** While badges are supported on all avatars, it is recommended\nto use them with interactive avatars (via `mode=\"Interactive\"` or `interactive` attribute)\nto provide better user experience and accessibility.\n\n**Note:** While the slot allows for custom badges, to achieve\nthe Fiori design, use the `ui5-avatar-badge` component."
            },
            {
              "name": "default",
              "description": "Receives the desired `<img>` tag\n\n**Note:** If you experience flickering of the provided image, you can hide the component until it is defined with the following CSS:<br/>\n`ui5-avatar:not(:defined) {`<br/>\n&nbsp;&nbsp;&nbsp;&nbsp;`visibility: hidden;`<br/>\n`}`"
            }
          ],
          "events": [
            {
              "name": "click",
              "description": "Fired on mouseup, space and enter if avatar is interactive\n\n**Note:** The event will not be fired if the `disabled`\nproperty is set to `true`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessibility-attributes",
                "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following field is supported:\n\n- **hasPopup**: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the button.\nAccepts the following string values: `dialog`, `grid`, `listbox`, `menu` or `tree`.",
                "value": { "type": "AvatarAccessibilityAttributes" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the text alternative of the component.\nIf not provided a default text alternative will be set, if present.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "color-scheme",
                "description": "Defines the background color of the desired image.\nIf `colorScheme` is set to `Auto`, the avatar will be displayed with the `Accent6` color.",
                "value": {
                  "type": "\"Auto\" | \"Accent1\" | \"Accent2\" | \"Accent3\" | \"Accent4\" | \"Accent5\" | \"Accent6\" | \"Accent7\" | \"Accent8\" | \"Accent9\" | \"Accent10\" | \"Placeholder\" | \"Transparent\""
                }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is disabled.\nA disabled component can't be pressed or\nfocused, and it is not in the tab chain.",
                "value": { "type": "boolean" }
              },
              {
                "name": "fallback-icon",
                "description": "Defines the name of the fallback icon, which should be displayed in the following cases:\n\n\t- If the initials are not valid (more than 3 letters, unsupported languages or empty initials).\n\t- If there are three initials and they do not fit in the shape (e.g. WWW for some of the sizes).\n\t- If the image src is wrong.\n\n**Note:** If not set, a default fallback icon \"employee\" is displayed.\n\n**Note:** You should import the desired icon first, then use its name as \"fallback-icon\".\n\n`import \"@ui5/webcomponents-icons/dist/{icon_name}.js\"`\n\n`<ui5-avatar fallback-icon=\"alert\">`\n\nSee all the available icons in the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string" }
              },
              {
                "name": "icon",
                "description": "Defines the name of the UI5 Icon, that will be displayed.\n\n**Note:** If `image` slot is provided, the property will be ignored.\n\n**Note:** You should import the desired icon first, then use its name as \"icon\".\n\n`import \"@ui5/webcomponents-icons/dist/{icon_name}.js\"`\n\n`<ui5-avatar icon=\"employee\">`\n\n**Note:** If no icon or an empty one is provided, by default the \"employee\" icon should be displayed.\n\nSee all the available icons in the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "initials",
                "description": "Defines the displayed initials.\n\nUp to three Latin letters can be displayed as initials.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "interactive",
                "description": "Defines if the avatar is interactive (focusable and pressable).\n\n**Note:** When set to `true`, this property takes precedence over the `mode` property,\nand the avatar will be rendered as interactive (role=\"button\", focusable) regardless of the `mode` value.\n\n**Note:** This property won't have effect if the `disabled`\nproperty is set to `true`.",
                "value": { "type": "boolean" }
              },
              {
                "name": "mode",
                "description": "Defines the mode of the component.\n\n**Note:**\n- `Image` (default) - renders with role=\"img\"\n- `Decorative` - renders with role=\"presentation\" and aria-hidden=\"true\", making it purely decorative\n- `Interactive` - renders with role=\"button\", focusable (tabindex=\"0\"), and supports keyboard interaction\n\n**Note:** This property is ignored when the `interactive` property is set to `true`.\nIn that case, the avatar will always be rendered as interactive.",
                "value": {
                  "type": "\"Image\" | \"Decorative\" | \"Interactive\""
                }
              },
              {
                "name": "shape",
                "description": "Defines the shape of the component.",
                "value": { "type": "\"Circle\" | \"Square\"" }
              },
              {
                "name": "size",
                "description": "Defines predefined size of the component.",
                "value": { "type": "\"XS\" | \"S\" | \"M\" | \"L\" | \"XL\"" }
              }
            ],
            "events": [
              {
                "name": "click",
                "description": "Fired on mouseup, space and enter if avatar is interactive\n\n**Note:** The event will not be fired if the `disabled`\nproperty is set to `true`."
              }
            ]
          }
        },
        {
          "name": "ui5-avatar-badge",
          "description": "### Overview\n\nThe `ui5-avatar-badge` component is used to display a badge on top of `ui5-avatar` component.\nThe badge can display an icon and supports different states for visual affordance.\n\n### Usage\n\nThe badge should be used as a child element of `ui5-avatar` in the `badge` slot.\n\n```html\n<ui5-avatar>\n  <ui5-avatar-badge icon=\"edit\" slot=\"badge\"></ui5-avatar-badge>\n</ui5-avatar>\n```\n\n### Keyboard Handling\n\nThe badge does not receive keyboard focus.\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/AvatarBadge.js\";`\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "icon",
              "description": "Defines the icon name to be displayed inside the badge.\n\n**Note:** You should import the desired icon first, then use its name as \"icon\".\n\n`import \"@ui5/webcomponents-icons/dist/{icon_name}.js\"`",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "state",
              "description": "Defines the state of the badge, which determines its styling.\n\nAvailable options:\n- `None` (default) - Standard appearance\n- `Positive` - Green, used for success/approved states\n- `Critical` - Orange, used for warning states\n- `Negative` - Red, used for error/rejected states\n- `Information` - Blue, used for informational states",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            },
            {
              "name": "tooltip",
              "description": "Defines the tooltip text of the badge icon.\n\n**Note:** If not provided, the badge uses the icon accessible name.\nIf no icon accessible name is available, a generic fallback text is used.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "icon",
                "description": "Defines the icon name to be displayed inside the badge.\n\n**Note:** You should import the desired icon first, then use its name as \"icon\".\n\n`import \"@ui5/webcomponents-icons/dist/{icon_name}.js\"`",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "state",
                "description": "Defines the state of the badge, which determines its styling.\n\nAvailable options:\n- `None` (default) - Standard appearance\n- `Positive` - Green, used for success/approved states\n- `Critical` - Orange, used for warning states\n- `Negative` - Red, used for error/rejected states\n- `Information` - Blue, used for informational states",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              },
              {
                "name": "tooltip",
                "description": "Defines the tooltip text of the badge icon.\n\n**Note:** If not provided, the badge uses the icon accessible name.\nIf no icon accessible name is available, a generic fallback text is used.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-avatar-group",
          "description": "### Overview\n\nDisplays a group of avatars arranged horizontally. It is useful to visually\nshowcase a group of related avatars, such as, project team members or employees.\n\nThe component allows you to display the avatars in different sizes,\ndepending on your use case.\n\nThe `AvatarGroup` component has two group types:\n\n- `Group` type: The avatars are displayed as partially overlapped on\ntop of each other and the entire group has one click/tap area.\n- `Individual` type: The avatars are displayed side-by-side and each\navatar has its own click/tap area.\n\n### Usage\n\nUse the `AvatarGroup` if:\n\n- You want to display a group of avatars.\n- You want to display several avatars which have something in common.\n\nDo not use the `AvatarGroup` if:\n\n- You want to display a single avatar.\n- You want to display a gallery for simple images.\n- You want to use it for other visual content than avatars.\n\n### Responsive Behavior\n\nWhen the available space is less than the width required to display all avatars,\nan overflow visualization appears as a button placed at the end with the same shape\nand size as the avatars. The visualization displays the number of avatars that have overflowed\nand are not currently visible.\n\n### Keyboard Handling\nThe component provides advanced keyboard handling.\nWhen focused, the user can use the following keyboard\nshortcuts in order to perform a navigation:\n\n`type` Individual:\n\n- [Tab] - Move focus to the overflow button\n- [Left] - Navigate one avatar to the left\n- [Right] - Navigate one avatar to the right\n- [Home] - Navigate to the first avatar\n- [End] - Navigate to the last avatar\n- [Space] / [Enter] or [Return] - Trigger `ui5-click` event\n\n`type` Group:\n\n- [Tab] - Move focus to the next interactive element after the component\n- [Space] / [Enter] or [Return] - Trigger `ui5-click` event\n---\n\n\n### **Events:**\n - **click** - Fired when the component is activated either with a\nclick/tap or by using the Enter or Space key.\n- **overflow** - Fired when the count of visible `ui5-avatar` elements in the\ncomponent has changed\n\n### **Slots:**\n - **default** - Defines the items of the component. Use the `ui5-avatar` component as an item.\n\n**Note:** The UX guidelines recommends using avatars with \"Circle\" shape.\n\nMoreover, if you use avatars with \"Square\" shape, there will be visual inconsistency\nas the built-in overflow action has \"Circle\" shape.\n- **overflowButton** - Defines the overflow button of the component.\n\n**Note:** We recommend using the `ui5-button` component.\n\n**Note:** If this slot is not used, the component will display the built-in overflow button.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessibility-attributes",
              "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following field is supported:\n\n- **hasPopup**: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the button.\nAccepts the following string values: `dialog`, `grid`, `listbox`, `menu` or `tree`.",
              "value": {
                "type": "AvatarGroupAccessibilityAttributes",
                "default": "{}"
              }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible name of the AvatarGroup.\nWhen provided, this will override the default aria-label text.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(s) of the elements that describe the AvatarGroup.\nWhen provided, this will be used as aria-labelledby instead of aria-label.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "color-scheme",
              "description": "Returns an array containing the `AvatarColorScheme` values that correspond to the avatars in the component.",
              "value": { "type": "any", "default": "[]" }
            },
            {
              "name": "hidden-items",
              "description": "Returns an array containing the `ui5-avatar` instances that are currently not displayed due to lack of space.",
              "value": { "type": "any", "default": "[]" }
            },
            {
              "name": "type",
              "description": "Defines the mode of the `AvatarGroup`.",
              "value": {
                "type": "\"Group\" | \"Individual\"",
                "default": "\"Group\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the items of the component. Use the `ui5-avatar` component as an item.\n\n**Note:** The UX guidelines recommends using avatars with \"Circle\" shape.\n\nMoreover, if you use avatars with \"Square\" shape, there will be visual inconsistency\nas the built-in overflow action has \"Circle\" shape."
            },
            {
              "name": "overflowButton",
              "description": "Defines the overflow button of the component.\n\n**Note:** We recommend using the `ui5-button` component.\n\n**Note:** If this slot is not used, the component will display the built-in overflow button."
            }
          ],
          "events": [
            {
              "name": "click",
              "description": "Fired when the component is activated either with a\nclick/tap or by using the Enter or Space key."
            },
            {
              "name": "overflow",
              "description": "Fired when the count of visible `ui5-avatar` elements in the\ncomponent has changed"
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessibility-attributes",
                "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following field is supported:\n\n- **hasPopup**: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the button.\nAccepts the following string values: `dialog`, `grid`, `listbox`, `menu` or `tree`.",
                "value": { "type": "AvatarGroupAccessibilityAttributes" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible name of the AvatarGroup.\nWhen provided, this will override the default aria-label text.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(s) of the elements that describe the AvatarGroup.\nWhen provided, this will be used as aria-labelledby instead of aria-label.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "color-scheme",
                "description": "Returns an array containing the `AvatarColorScheme` values that correspond to the avatars in the component.",
                "value": { "type": "any" }
              },
              {
                "name": "hidden-items",
                "description": "Returns an array containing the `ui5-avatar` instances that are currently not displayed due to lack of space.",
                "value": { "type": "any" }
              },
              {
                "name": "type",
                "description": "Defines the mode of the `AvatarGroup`.",
                "value": { "type": "\"Group\" | \"Individual\"" }
              }
            ],
            "events": [
              {
                "name": "click",
                "description": "Fired when the component is activated either with a\nclick/tap or by using the Enter or Space key."
              },
              {
                "name": "overflow",
                "description": "Fired when the count of visible `ui5-avatar` elements in the\ncomponent has changed"
              }
            ]
          }
        },
        {
          "name": "ui5-bar",
          "description": "### Overview\nThe Bar is a container which is primarily used to hold titles, buttons and input elements\nand its design and functionality is the basis for page headers and footers.\nThe component consists of three areas to hold its content - startContent slot, default slot and endContent slot.\nIt has the capability to center content, such as a title, while having other components on the left and right side.\n\n### Usage\nWith the use of the design property, you can set the style of the Bar to appear designed like a Header, Subheader, Footer and FloatingFooter.\n\n**Note:** Do not place a Bar inside another Bar or inside any bar-like component. Doing so may cause unpredictable behavior.\n\n### Responsive Behavior\nThe default slot will be centered in the available space between the startContent and the endContent areas,\ntherefore it might not always be centered in the entire bar.\n\n### Keyboard Handling\n\n#### Fast Navigation\nThis component provides a build in fast navigation group which can be used via [F6] / [Shift] + [F6] / [Ctrl] + [Alt/Option] / [Down] or [Ctrl] + [Alt/Option] + [Up].\nIn order to use this functionality, you need to import the following module:\n`import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"`\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Bar.js\";`\n---\n\n\n### **Slots:**\n - **default** - Defines the content in the middle of the bar.\n- **endContent** - Defines the content at the end of the bar.\n- **startContent** - Defines the content at the start of the bar.\n\n### **CSS Parts:**\n - **bar** - Used to style the wrapper of the content of the component\n- **endContent** - Used to style the wrapper of the end content of the component\n- **midContent** - Used to style the wrapper of the middle content of the component\n- **startContent** - Used to style the wrapper of the start content of the component",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the bar.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-role",
              "description": "Specifies the ARIA role applied to the component for accessibility purposes.\n\n**Note:**\n\n- Set accessibleRole to \"toolbar\" only when the component contains two or more active, interactive elements (such as buttons, links, or input fields) within the bar.\n\n- If there is only one or no active element, it is recommended to avoid using the \"toolbar\" role, as it implies a grouping of multiple interactive controls.",
              "value": {
                "type": "\"None\" | \"Toolbar\"",
                "default": "\"Toolbar\""
              }
            },
            {
              "name": "design",
              "description": "Defines the component's design.",
              "value": {
                "type": "\"Header\" | \"Subheader\" | \"Footer\" | \"FloatingFooter\"",
                "default": "\"Header\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the content in the middle of the bar."
            },
            {
              "name": "endContent",
              "description": "Defines the content at the end of the bar."
            },
            {
              "name": "startContent",
              "description": "Defines the content at the start of the bar."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the bar.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-role",
                "description": "Specifies the ARIA role applied to the component for accessibility purposes.\n\n**Note:**\n\n- Set accessibleRole to \"toolbar\" only when the component contains two or more active, interactive elements (such as buttons, links, or input fields) within the bar.\n\n- If there is only one or no active element, it is recommended to avoid using the \"toolbar\" role, as it implies a grouping of multiple interactive controls.",
                "value": { "type": "\"None\" | \"Toolbar\"" }
              },
              {
                "name": "design",
                "description": "Defines the component's design.",
                "value": {
                  "type": "\"Header\" | \"Subheader\" | \"Footer\" | \"FloatingFooter\""
                }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-breadcrumbs",
          "description": "### Overview\nEnables users to navigate between items by providing a list of links to previous steps in the user's navigation path.\nIt helps the user to be aware of their location within the application and allows faster navigation.\n\nThe last three steps can be accessed as links directly, while the remaining links prior to them are available\nin a drop-down menu.\n\nYou can choose the type of separator to be used from a number of predefined options.\n\n### Keyboard Handling\nThe `ui5-breadcrumbs` provides advanced keyboard handling.\n\n- [F4], [Alt] + [Up], [Alt] + [Down], [Space], or [Enter] - If the dropdown arrow is focused - opens/closes the drop-down.\n- [Space],[Enter] - Activates the focused item and triggers the `item-click` event.\n- [Escape] - Closes the drop-down.\n- [Left] - If the drop-down is closed - navigates one item to the left.\n- [Right] - If the drop-down is closed - navigates one item to the right.\n- [Up] - If the drop-down is open - moves focus to the next item.\n- [Down] - If the drop-down is open - moves focus to the previous item.\n- [Home] - Navigates to the first item.\n- [End] - Navigates to the last item.\n---\n\n\n### **Events:**\n - **item-click** - Fires when a `BreadcrumbsItem` is clicked.\n\n**Note:** You can prevent browser location change by calling `event.preventDefault()`.\n\n### **Slots:**\n - **default** - Defines the component items.\n\n**Note:** Use the `ui5-breadcrumbs-item` component to define the desired items.",
          "doc-url": "",
          "attributes": [
            {
              "name": "design",
              "description": "Defines the visual appearance of the last BreadcrumbsItem.\n\nThe Breadcrumbs supports two visual appearances for the last BreadcrumbsItem:\n- \"Standard\" - displaying the last item as \"current page\" (bold and without separator)\n- \"NoCurrentPage\" - displaying the last item as a regular BreadcrumbsItem, followed by separator",
              "value": {
                "type": "\"Standard\" | \"NoCurrentPage\"",
                "default": "\"Standard\""
              }
            },
            {
              "name": "separators",
              "description": "Determines the visual style of the separator between the breadcrumb items.",
              "value": {
                "type": "\"Slash\" | \"BackSlash\" | \"DoubleBackSlash\" | \"DoubleGreaterThan\" | \"DoubleSlash\" | \"GreaterThan\"",
                "default": "\"Slash\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the component items.\n\n**Note:** Use the `ui5-breadcrumbs-item` component to define the desired items."
            }
          ],
          "events": [
            {
              "name": "item-click",
              "description": "Fires when a `BreadcrumbsItem` is clicked.\n\n**Note:** You can prevent browser location change by calling `event.preventDefault()`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "design",
                "description": "Defines the visual appearance of the last BreadcrumbsItem.\n\nThe Breadcrumbs supports two visual appearances for the last BreadcrumbsItem:\n- \"Standard\" - displaying the last item as \"current page\" (bold and without separator)\n- \"NoCurrentPage\" - displaying the last item as a regular BreadcrumbsItem, followed by separator",
                "value": { "type": "\"Standard\" | \"NoCurrentPage\"" }
              },
              {
                "name": "separators",
                "description": "Determines the visual style of the separator between the breadcrumb items.",
                "value": {
                  "type": "\"Slash\" | \"BackSlash\" | \"DoubleBackSlash\" | \"DoubleGreaterThan\" | \"DoubleSlash\" | \"GreaterThan\""
                }
              }
            ],
            "events": [
              {
                "name": "item-click",
                "description": "Fires when a `BreadcrumbsItem` is clicked.\n\n**Note:** You can prevent browser location change by calling `event.preventDefault()`."
              }
            ]
          }
        },
        {
          "name": "ui5-breadcrumbs-item",
          "description": "### Overview\n\nThe `ui5-breadcrumbs-item` component defines the content of an item in `ui5-breadcrumbs`.\n---\n\n\n### **Events:**\n - **click** - Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event is also fired for the current page location item (the last item), which is not a link by design.\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "href",
              "description": "Defines the link href.\n\n**Note:** Standard hyperlink behavior is supported.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "target",
              "description": "Defines the link target.\n\nAvailable options are:\n\n- `_self`\n- `_top`\n- `_blank`\n- `_parent`\n- `_search`\n\n**Note:** This property must only be used when the `href` property is set.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design."
            }
          ],
          "events": [
            {
              "name": "click",
              "description": "Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event is also fired for the current page location item (the last item), which is not a link by design."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "href",
                "description": "Defines the link href.\n\n**Note:** Standard hyperlink behavior is supported.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "target",
                "description": "Defines the link target.\n\nAvailable options are:\n\n- `_self`\n- `_top`\n- `_blank`\n- `_parent`\n- `_search`\n\n**Note:** This property must only be used when the `href` property is set.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": [
              {
                "name": "click",
                "description": "Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event is also fired for the current page location item (the last item), which is not a link by design."
              }
            ]
          }
        },
        {
          "name": "ui5-busy-indicator",
          "description": "### Overview\n\nThe `ui5-busy-indicator` signals that some operation is going on and that the\nuser must wait. It does not block the current UI screen so other operations could be triggered in parallel.\nIt displays 3 dots and each dot expands and shrinks at a different rate, resulting in a cascading flow of animation.\n\n### Usage\nFor the `ui5-busy-indicator` you can define the size, the text and whether it is shown or hidden.\nIn order to hide it, use the \"active\" property.\n\nIn order to show busy state over an HTML element, simply nest the HTML element in a `ui5-busy-indicator` instance.\n\n**Note:** Since `ui5-busy-indicator` has `display: inline-block;` by default and no width of its own,\nwhenever you need to wrap a block-level element, you should set `display: block` to the busy indicator as well.\n\n#### When to use:\n\n- The user needs to be able to cancel the operation.\n- Only part of the application or a particular component is affected.\n\n#### When not to use:\n\n- The operation takes less than one second.\n- You need to block the screen and prevent the user from starting another activity.\n- Do not show multiple busy indicators at once.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/BusyIndicator.js\";`\n---\n\n\n### **Slots:**\n - **default** - Determines the content over which the component will appear.",
          "doc-url": "",
          "attributes": [
            {
              "name": "active",
              "description": "Defines if the busy indicator is visible on the screen. By default it is not.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "delay",
              "description": "Defines the delay in milliseconds, after which the busy indicator will be visible on the screen.",
              "value": { "type": "number", "default": "1000" }
            },
            {
              "name": "size",
              "description": "Defines the size of the component.",
              "value": { "type": "\"S\" | \"M\" | \"L\"", "default": "\"M\"" }
            },
            {
              "name": "text",
              "description": "Defines text to be displayed below the component. It can be used to inform the user of the current operation.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "text-placement",
              "description": "Defines the placement of the text.",
              "value": {
                "type": "\"Top\" | \"Bottom\"",
                "default": "\"Bottom\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Determines the content over which the component will appear."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "active",
                "description": "Defines if the busy indicator is visible on the screen. By default it is not.",
                "value": { "type": "boolean" }
              },
              {
                "name": "delay",
                "description": "Defines the delay in milliseconds, after which the busy indicator will be visible on the screen.",
                "value": { "type": "number" }
              },
              {
                "name": "size",
                "description": "Defines the size of the component.",
                "value": { "type": "\"S\" | \"M\" | \"L\"" }
              },
              {
                "name": "text",
                "description": "Defines text to be displayed below the component. It can be used to inform the user of the current operation.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "text-placement",
                "description": "Defines the placement of the text.",
                "value": { "type": "\"Top\" | \"Bottom\"" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-button",
          "description": "### Overview\n\nThe `ui5-button` component represents a simple push button.\nIt enables users to trigger actions by clicking or tapping the `ui5-button`, or by pressing\ncertain keyboard keys, such as Enter.\n\n### Usage\n\nFor the `ui5-button` UI, you can define text, icon, or both. You can also specify\nwhether the text or the icon is displayed first.\n\nYou can choose from a set of predefined types that offer different\nstyling to correspond to the triggered action.\n\nYou can set the `ui5-button` as enabled or disabled. An enabled\n`ui5-button` can be pressed by clicking or tapping it. The button changes\nits style to provide visual feedback to the user that it is pressed or hovered over with\nthe mouse cursor. A disabled `ui5-button` appears inactive and cannot be pressed.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Button.js\";`\n---\n\n\n### **Events:**\n - **click** - Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`.\n\n### **Slots:**\n - **badge** - Adds a badge to the button.\n- **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.\n\n### **CSS Parts:**\n - **button** - Used to style the native button element\n- **endIcon** - Used to style the end icon in the native button element\n- **icon** - Used to style the icon in the native button element",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessibility-attributes",
              "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **expanded**: Indicates whether the button, or another grouping element it controls, is currently expanded or collapsed.\nAccepts the following string values: `true` or `false`\n\n- **hasPopup**: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the button.\nAccepts the following string values: `dialog`, `grid`, `listbox`, `menu` or `tree`.\n\n- **ariaLabel**: Defines the accessible ARIA name of the component.\nAccepts any string value.\n\n - **ariaKeyShortcuts**: Defines keyboard shortcuts that activate or give focus to the button.\n\n- **controls**: Identifies the element (or elements) whose contents or presence are controlled by the button element.\nAccepts a lowercase string value.",
              "value": {
                "type": "ButtonAccessibilityAttributes",
                "default": "{}"
              }
            },
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-role",
              "description": "Describes the accessibility role of the button.\n\n**Note:** Use <code>ButtonAccessibleRole.Link</code> role only with a press handler, which performs a navigation. In all other scenarios the default button semantics are recommended.",
              "value": {
                "type": "\"Button\" | \"Link\"",
                "default": "\"Button\""
              }
            },
            {
              "name": "design",
              "description": "Defines the component design.",
              "value": {
                "type": "\"Transparent\" | \"Positive\" | \"Negative\" | \"Default\" | \"Emphasized\" | \"Attention\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is disabled.\nA disabled component can't be pressed or\nfocused, and it is not in the tab chain.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "end-icon",
              "description": "Defines the icon, displayed as graphical element within the component after the button text.\n\n**Note:** It is highly recommended to use `endIcon` property only together with `icon` and/or `text` properties.\nUsage of `endIcon` only should be avoided.\n\nThe SAP-icons font provides numerous options.\n\nExample:\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "form",
              "description": "Associates the button with a form element by the form's `id` attribute.\nWhen set, the button can submit or reset the specified form even if the button\nis not a descendant of that form.\n\n**Note:** This property takes effect only when the button's \"type\" property is set to \"Submit\" or \"Reset\".",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "icon",
              "description": "Defines the icon, displayed as graphical element within the component.\nThe SAP-icons font provides numerous options.\n\nExample:\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "loading",
              "description": "Defines whether the button shows a loading indicator.\n\n**Note:** If set to `true`, a busy indicator component will be displayed on the related button.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "loading-delay",
              "description": "Specifies the delay in milliseconds before the loading indicator appears within the associated button.",
              "value": { "type": "number", "default": "1000" }
            },
            {
              "name": "submits",
              "description": "When set to `true`, the component will\nautomatically submit the nearest HTML form element on `press`.\n\n**Note:** This property is only applicable within the context of an HTML Form element.`",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "tooltip",
              "description": "Defines the tooltip of the component.\n\n**Note:** A tooltip attribute should be provided for icon-only buttons, in order to represent their exact meaning/function.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "type",
              "description": "Defines whether the button has special form-related functionality.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": {
                "type": "\"Button\" | \"Submit\" | \"Reset\"",
                "default": "\"Button\""
              }
            }
          ],
          "slots": [
            { "name": "badge", "description": "Adds a badge to the button." },
            {
              "name": "default",
              "description": "Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design."
            }
          ],
          "events": [
            {
              "name": "click",
              "description": "Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessibility-attributes",
                "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **expanded**: Indicates whether the button, or another grouping element it controls, is currently expanded or collapsed.\nAccepts the following string values: `true` or `false`\n\n- **hasPopup**: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the button.\nAccepts the following string values: `dialog`, `grid`, `listbox`, `menu` or `tree`.\n\n- **ariaLabel**: Defines the accessible ARIA name of the component.\nAccepts any string value.\n\n - **ariaKeyShortcuts**: Defines keyboard shortcuts that activate or give focus to the button.\n\n- **controls**: Identifies the element (or elements) whose contents or presence are controlled by the button element.\nAccepts a lowercase string value.",
                "value": { "type": "ButtonAccessibilityAttributes" }
              },
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-role",
                "description": "Describes the accessibility role of the button.\n\n**Note:** Use <code>ButtonAccessibleRole.Link</code> role only with a press handler, which performs a navigation. In all other scenarios the default button semantics are recommended.",
                "value": { "type": "\"Button\" | \"Link\"" }
              },
              {
                "name": "design",
                "description": "Defines the component design.",
                "value": {
                  "type": "\"Transparent\" | \"Positive\" | \"Negative\" | \"Default\" | \"Emphasized\" | \"Attention\""
                }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is disabled.\nA disabled component can't be pressed or\nfocused, and it is not in the tab chain.",
                "value": { "type": "boolean" }
              },
              {
                "name": "end-icon",
                "description": "Defines the icon, displayed as graphical element within the component after the button text.\n\n**Note:** It is highly recommended to use `endIcon` property only together with `icon` and/or `text` properties.\nUsage of `endIcon` only should be avoided.\n\nThe SAP-icons font provides numerous options.\n\nExample:\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "form",
                "description": "Associates the button with a form element by the form's `id` attribute.\nWhen set, the button can submit or reset the specified form even if the button\nis not a descendant of that form.\n\n**Note:** This property takes effect only when the button's \"type\" property is set to \"Submit\" or \"Reset\".",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "icon",
                "description": "Defines the icon, displayed as graphical element within the component.\nThe SAP-icons font provides numerous options.\n\nExample:\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "loading",
                "description": "Defines whether the button shows a loading indicator.\n\n**Note:** If set to `true`, a busy indicator component will be displayed on the related button.",
                "value": { "type": "boolean" }
              },
              {
                "name": "loading-delay",
                "description": "Specifies the delay in milliseconds before the loading indicator appears within the associated button.",
                "value": { "type": "number" }
              },
              {
                "name": "submits",
                "description": "When set to `true`, the component will\nautomatically submit the nearest HTML form element on `press`.\n\n**Note:** This property is only applicable within the context of an HTML Form element.`",
                "value": { "type": "boolean" }
              },
              {
                "name": "tooltip",
                "description": "Defines the tooltip of the component.\n\n**Note:** A tooltip attribute should be provided for icon-only buttons, in order to represent their exact meaning/function.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "type",
                "description": "Defines whether the button has special form-related functionality.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "\"Button\" | \"Submit\" | \"Reset\"" }
              }
            ],
            "events": [
              {
                "name": "click",
                "description": "Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`."
              }
            ]
          }
        },
        {
          "name": "ui5-button-badge",
          "description": "The `ui5-button-badge` component defines a badge that appears in the `ui5-button`.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/ButtonBadge.js\";`\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "design",
              "description": "Defines the badge placement and appearance.\n- **InlineText** - displayed inside the button after its text, and recommended for **compact** density.\n- **OverlayText** - displayed at the top-end corner of the button, and recommended for **cozy** density.\n- **AttentionDot** - displayed at the top-end corner of the button as a dot, and suitable for both **cozy** and **compact** densities.",
              "value": {
                "type": "\"InlineText\" | \"OverlayText\" | \"AttentionDot\"",
                "default": "\"AttentionDot\""
              }
            },
            {
              "name": "text",
              "description": "Defines the text of the component.\n\n**Note:** Text is not applied when the `design` property is set to `AttentionDot`.\n\n**Note:** The badge component only accepts numeric values and the \"+\" symbol. Using other characters or formats may result in unpredictable behavior, which is not guaranteed or supported.",
              "value": { "type": "string", "default": "\"\"" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "design",
                "description": "Defines the badge placement and appearance.\n- **InlineText** - displayed inside the button after its text, and recommended for **compact** density.\n- **OverlayText** - displayed at the top-end corner of the button, and recommended for **cozy** density.\n- **AttentionDot** - displayed at the top-end corner of the button as a dot, and suitable for both **cozy** and **compact** densities.",
                "value": {
                  "type": "\"InlineText\" | \"OverlayText\" | \"AttentionDot\""
                }
              },
              {
                "name": "text",
                "description": "Defines the text of the component.\n\n**Note:** Text is not applied when the `design` property is set to `AttentionDot`.\n\n**Note:** The badge component only accepts numeric values and the \"+\" symbol. Using other characters or formats may result in unpredictable behavior, which is not guaranteed or supported.",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-calendar",
          "description": "### Overview\n\nThe `ui5-calendar` component allows users to select one or more dates.\n\nCurrently selected dates are represented with instances of `ui5-date` as\nchildren of the `ui5-calendar`. The value property of each `ui5-date` must be a\ndate string, correctly formatted according to the `ui5-calendar`'s `formatPattern` property.\nWhenever the user changes the date selection, `ui5-calendar` will automatically create/remove instances\nof `ui5-date` in itself, unless you prevent this behavior by calling `preventDefault()` for the\n`selection-change` event. This is useful if you want to control the selected dates externally.\n\n### Usage\n\nThe user can navigate to a particular date by:\n\n- Pressing over a month inside the months view\n- Pressing over an year inside the years view\n\nThe user can confirm a date selection by pressing over a date inside the days view.\n\n### Keyboard Handling\nThe `ui5-calendar` provides advanced keyboard handling.\nWhen a picker is showed and focused the user can use the following keyboard\nshortcuts in order to perform a navigation:\n\n- Day picker:\n\n- [F4] - Shows month picker\n- [Shift] + [F4] - Shows year picker\n- [Page Up] - Navigate to the previous month\n- [Page Down] - Navigate to the next month\n- [Shift] + [Page Up] - Navigate to the previous year\n- [Shift] + [Page Down] - Navigate to the next year\n- [Ctrl] + [Shift] + [Page Up] - Navigate ten years backwards\n- [Ctrl] + [Shift] + [Page Down] - Navigate ten years forwards\n- [Home] - Navigate to the first day of the week\n- [End] - Navigate to the last day of the week\n- [Ctrl] + [Home] - Navigate to the first day of the month\n- [Ctrl] + [End] - Navigate to the last day of the month\n\n- Month picker:\n\n- [Page Up] - Navigate to the previous year\n- [Page Down] - Navigate to the next year\n- [Home] - Navigate to the first month of the current row\n- [End] - Navigate to the last month of the current row\n- [Ctrl] + [Home] - Navigate to the first month of the current year\n- [Ctrl] + [End] - Navigate to the last month of the year\n\n- Year picker:\n\n- [Page Up] - Navigate to the previous year range\n- [Page Down] - Navigate the next year range\n- [Home] - Navigate to the first year of the current row\n- [End] - Navigate to the last year of the current row\n- [Ctrl] + [Home] - Navigate to the first year of the current year range\n- [Ctrl] + [End] - Navigate to the last year of the current year range\n\n#### Fast Navigation\nThis component provides a build in fast navigation group which can be used via [F6] / [Shift] + [F6] / [Ctrl] + [Alt/Option] / [Down] or [Ctrl] + [Alt/Option] + [Up].\nIn order to use this functionality, you need to import the following module:\n`import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"`\n\n### Calendar types\nThe component supports several calendar types - Gregorian, Buddhist, Islamic, Japanese and Persian.\nBy default the Gregorian Calendar is used. In order to use the Buddhist, Islamic, Japanese or Persian calendar,\nyou need to set the `primaryCalendarType` property and import one or more of the following modules:\n\n`import \"@ui5/webcomponents-localization/dist/features/calendar/Buddhist.js\";`\n\n`import \"@ui5/webcomponents-localization/dist/features/calendar/Islamic.js\";`\n\n`import \"@ui5/webcomponents-localization/dist/features/calendar/Japanese.js\";`\n\n`import \"@ui5/webcomponents-localization/dist/features/calendar/Persian.js\";`\n\nOr, you can use the global configuration and set the `calendarType` key:\n\n```html\n<script data-id=\"sap-ui-config\" type=\"application/json\">\n\t{\n\t\t\"calendarType\": \"Japanese\"\n\t}\n</script>\n```\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Calendar.js\";`\n---\n\n\n### **Events:**\n - **selection-change** - Fired when the selected dates change.\n\n**Note:** If you call `preventDefault()` for this event, the component will not\ncreate instances of `ui5-date` for the newly selected dates. In that case you should do this manually.\n\n### **Slots:**\n - **calendarLegend** - Defines the calendar legend of the component.\n- **default** - Defines the selected date or dates (depending on the `selectionMode` property)\nfor this calendar as instances of `ui5-date` or `ui5-date-range`.\nUse `ui5-date` for single or multiple selection, and `ui5-date-range` for range selection.\n- **disabledDates** - Defines the disabled date ranges that cannot be selected in the calendar.\nUse `ui5-date-range` elements to specify ranges of disabled dates.\nEach range can define a start date, an end date, or both.\n- **specialDates** - Defines the special dates, visually emphasized in the calendar.\n\n### **CSS Parts:**\n - **calendar-header-arrow-button** - Used to style the calendar header navigation arrow buttons (previous/next buttons).\n- **calendar-header-middle-button** - Used to style the calendar header middle buttons (month/year/year-range buttons).\n- **day-cell** - Used to style the day cells.\n- **day-cell-selected** - Used to style the day cells when selected.\n- **day-cell-selected-between** - Used to style the day cells in between of selected dates in range.\n- **month-cell** - Used to style the month cells.\n- **month-cell-selected** - Used to style the month cells when selected.\n- **month-cell-selected-between** - Used to style the day cells in between of selected months in range.\n- **month-picker-root** - Used to style the month picker root container.\n- **year-cell** - Used to style the year cells.\n- **year-cell-selected** - Used to style the year cells when selected.\n- **year-cell-selected-between** - Used to style the year cells in between of selected years in range.\n- **year-picker-root** - Used to style the year picker root container.\n- **year-range-cell** - Used to style the year range cells.\n- **year-range-cell-selected** - Used to style the year range cells when selected.\n- **year-range-cell-selected-between** - Used to style the year range cells in between of selected year ranges.\n- **year-range-picker-root** - Used to style the year range picker root container.",
          "doc-url": "",
          "attributes": [
            {
              "name": "calendar-week-numbering",
              "description": "Defines how to calculate calendar weeks and first day of the week.\nIf not set, the calendar will be displayed according to the currently set global configuration.",
              "value": {
                "type": "\"Default\" | \"ISO_8601\" | \"MiddleEastern\" | \"WesternTraditional\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "display-format",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "format-pattern",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "hide-week-numbers",
              "description": "Defines the visibility of the week numbers column.\n\n**Note:** For calendars other than Gregorian,\nthe week numbers are not displayed regardless of what is set.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "max-date",
              "description": "Determines the maximum date available for selection.\n\n**Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "min-date",
              "description": "Determines the minimum date available for selection.\n\n**Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "primary-calendar-type",
              "description": "Sets a calendar type used for display.\nIf not set, the calendar type of the global configuration is used.",
              "value": {
                "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "secondary-calendar-type",
              "description": "Defines the secondary calendar type.\nIf not set, the calendar will only show the primary calendar type.",
              "value": {
                "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "selection-mode",
              "description": "Defines the type of selection used in the calendar component.\nAccepted property values are:\n\n- `CalendarSelectionMode.Single` - enables a single date selection.(default value)\n- `CalendarSelectionMode.Range` - enables selection of a date range.\n- `CalendarSelectionMode.Multiple` - enables selection of multiple dates.",
              "value": {
                "type": "\"Single\" | \"Multiple\" | \"Range\"",
                "default": "\"Single\""
              }
            },
            {
              "name": "value-format",
              "description": "Determines the format, used for the value attribute.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "calendarLegend",
              "description": "Defines the calendar legend of the component."
            },
            {
              "name": "default",
              "description": "Defines the selected date or dates (depending on the `selectionMode` property)\nfor this calendar as instances of `ui5-date` or `ui5-date-range`.\nUse `ui5-date` for single or multiple selection, and `ui5-date-range` for range selection."
            },
            {
              "name": "disabledDates",
              "description": "Defines the disabled date ranges that cannot be selected in the calendar.\nUse `ui5-date-range` elements to specify ranges of disabled dates.\nEach range can define a start date, an end date, or both."
            },
            {
              "name": "specialDates",
              "description": "Defines the special dates, visually emphasized in the calendar."
            }
          ],
          "events": [
            {
              "name": "selection-change",
              "description": "Fired when the selected dates change.\n\n**Note:** If you call `preventDefault()` for this event, the component will not\ncreate instances of `ui5-date` for the newly selected dates. In that case you should do this manually."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "calendar-week-numbering",
                "description": "Defines how to calculate calendar weeks and first day of the week.\nIf not set, the calendar will be displayed according to the currently set global configuration.",
                "value": {
                  "type": "\"Default\" | \"ISO_8601\" | \"MiddleEastern\" | \"WesternTraditional\""
                }
              },
              {
                "name": "display-format",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "format-pattern",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "hide-week-numbers",
                "description": "Defines the visibility of the week numbers column.\n\n**Note:** For calendars other than Gregorian,\nthe week numbers are not displayed regardless of what is set.",
                "value": { "type": "boolean" }
              },
              {
                "name": "max-date",
                "description": "Determines the maximum date available for selection.\n\n**Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).",
                "value": { "type": "string" }
              },
              {
                "name": "min-date",
                "description": "Determines the minimum date available for selection.\n\n**Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).",
                "value": { "type": "string" }
              },
              {
                "name": "primary-calendar-type",
                "description": "Sets a calendar type used for display.\nIf not set, the calendar type of the global configuration is used.",
                "value": {
                  "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined"
                }
              },
              {
                "name": "secondary-calendar-type",
                "description": "Defines the secondary calendar type.\nIf not set, the calendar will only show the primary calendar type.",
                "value": {
                  "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined"
                }
              },
              {
                "name": "selection-mode",
                "description": "Defines the type of selection used in the calendar component.\nAccepted property values are:\n\n- `CalendarSelectionMode.Single` - enables a single date selection.(default value)\n- `CalendarSelectionMode.Range` - enables selection of a date range.\n- `CalendarSelectionMode.Multiple` - enables selection of multiple dates.",
                "value": { "type": "\"Single\" | \"Multiple\" | \"Range\"" }
              },
              {
                "name": "value-format",
                "description": "Determines the format, used for the value attribute.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": [
              {
                "name": "selection-change",
                "description": "Fired when the selected dates change.\n\n**Note:** If you call `preventDefault()` for this event, the component will not\ncreate instances of `ui5-date` for the newly selected dates. In that case you should do this manually."
              }
            ]
          }
        },
        {
          "name": "ui5-date",
          "description": "### Overview\n\nThe `ui5-date` component defines a calendar date to be used inside `ui5-calendar`\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "value",
              "description": "The date formatted according to the `formatPattern` property\nof the `ui5-calendar` that hosts the component.",
              "value": { "type": "string", "default": "\"\"" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "value",
                "description": "The date formatted according to the `formatPattern` property\nof the `ui5-calendar` that hosts the component.",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-date-range",
          "description": "### Overview\n\nThe `ui5-date-range` component defines a range of dates to be used inside `ui5-calendar`\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "end-value",
              "description": "End of date range formatted according to the `formatPattern` property\nof the `ui5-calendar` that hosts the component.",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "start-value",
              "description": "Start of date range formatted according to the `formatPattern` property\nof the `ui5-calendar` that hosts the component.",
              "value": { "type": "string", "default": "\"\"" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "end-value",
                "description": "End of date range formatted according to the `formatPattern` property\nof the `ui5-calendar` that hosts the component.",
                "value": { "type": "string" }
              },
              {
                "name": "start-value",
                "description": "Start of date range formatted according to the `formatPattern` property\nof the `ui5-calendar` that hosts the component.",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-calendar-legend",
          "description": "### Overview\n\nThe `ui5-calendar-legend` component is designed for use within the `ui5-calendar` to display a legend.\nEach `ui5-calendar-legend-item` represents a unique date type, specifying its visual style\nand a corresponding textual label.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/CalendarLegend.js\";`\n---\n\n\n### **Slots:**\n - **default** - Defines the items of the component.",
          "doc-url": "",
          "attributes": [
            {
              "name": "hide-non-working-day",
              "description": "Hides the Non-Working day item in the legend.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "hide-selected-day",
              "description": "Hides the Selected day item in the legend.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "hide-today",
              "description": "Hides the Today item in the legend.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "hide-working-day",
              "description": "Hides the Working day item in the legend.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the items of the component."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "hide-non-working-day",
                "description": "Hides the Non-Working day item in the legend.",
                "value": { "type": "boolean" }
              },
              {
                "name": "hide-selected-day",
                "description": "Hides the Selected day item in the legend.",
                "value": { "type": "boolean" }
              },
              {
                "name": "hide-today",
                "description": "Hides the Today item in the legend.",
                "value": { "type": "boolean" }
              },
              {
                "name": "hide-working-day",
                "description": "Hides the Working day item in the legend.",
                "value": { "type": "boolean" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-calendar-legend-item",
          "description": "### Overview\n\nEach `ui5-calendar-legend-item` represents a legend item, displaying a color with a label.\nThe color is determined by the `type` property and the label by the `text` property.\nIf a `ui5-special-date` is used within the `ui5-calendar` and a type is set, clicking on a `ui5-calendar-legend-item`\nwith the same type will emphasize the respective date(s) in the calendar.\n\n### Usage\nThe `ui5-calendar-legend-item` is intended to be used within the `ui5-calendar-legend` component.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/CalendarLegendItem.js\";`\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "text",
              "description": "Defines the text content of the Calendar Legend Item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "type",
              "description": "Defines the type of the Calendar Legend Item.",
              "value": {
                "type": "\"None\" | \"Today\" | \"Selected\" | \"Working\" | \"NonWorking\" | \"Type01\" | \"Type02\" | \"Type03\" | \"Type04\" | \"Type05\" | \"Type06\" | \"Type07\" | \"Type08\" | \"Type09\" | \"Type10\" | \"Type11\" | ... 8 more ... | \"Type20\"",
                "default": "\"None\""
              }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "text",
                "description": "Defines the text content of the Calendar Legend Item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "type",
                "description": "Defines the type of the Calendar Legend Item.",
                "value": {
                  "type": "\"None\" | \"Today\" | \"Selected\" | \"Working\" | \"NonWorking\" | \"Type01\" | \"Type02\" | \"Type03\" | \"Type04\" | \"Type05\" | \"Type06\" | \"Type07\" | \"Type08\" | \"Type09\" | \"Type10\" | \"Type11\" | ... 8 more ... | \"Type20\""
                }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-card",
          "description": "### Overview\n\nThe `ui5-card` is a component that represents information in the form of a\ntile with separate header and content areas.\nThe content area of a `ui5-card` can be arbitrary HTML content.\nThe header can be used through slot `header`. For which there is a `ui5-card-header` component to achieve the card look and feel.\n\nNote: We recommend the usage of `ui5-card-header` for the header slot, so advantage can be taken for keyboard handling, styling and accessibility.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Card.js\";`\n\n`import \"@ui5/webcomponents/dist/CardHeader.js\";` (for `ui5-card-header`)\n---\n\n\n### **Slots:**\n - **default** - Defines the content of the component.\n- **header** - Defines the header of the component.\n\n**Note:** Use `ui5-card-header` for the intended design.\n\n### **CSS Parts:**\n - **content** - Used to style the content of the card\n- **root** - Used to style the root DOM element of the card component",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible name of the component, which is used as the name of the card region and should be unique per card.\n\n**Note:** `accessibleName` should be always set, unless `accessibleNameRef` is set.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Defines the IDs of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "loading",
              "description": "Defines if a loading indicator would be displayed over the card.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "loading-delay",
              "description": "Defines the delay in milliseconds, after which the loading indicator will show up for this card.",
              "value": { "type": "number", "default": "1000" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the content of the component."
            },
            {
              "name": "header",
              "description": "Defines the header of the component.\n\n**Note:** Use `ui5-card-header` for the intended design."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible name of the component, which is used as the name of the card region and should be unique per card.\n\n**Note:** `accessibleName` should be always set, unless `accessibleNameRef` is set.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Defines the IDs of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "loading",
                "description": "Defines if a loading indicator would be displayed over the card.",
                "value": { "type": "boolean" }
              },
              {
                "name": "loading-delay",
                "description": "Defines the delay in milliseconds, after which the loading indicator will show up for this card.",
                "value": { "type": "number" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-card-header",
          "description": "### Overview\n\nThe `ui5-card-header` is a component, meant to be used as a header of the `ui5-card` component.\nIt displays valuable information, that can be defined with several properties, such as: `titleText`, `subtitleText`, `additionalText`\nand two slots: `avatar` and `action`.\n\n### Keyboard handling\nIn case you enable `interactive` property, you can press the `ui5-card-header` by Space and Enter keys.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/CardHeader\";`\n---\n\n\n### **Events:**\n - **click** - Fired when the component is activated by mouse/tap or by using the Enter or Space key.\n\n**Note:** The event would be fired only if the `interactive` property is set to true.\n\n### **Slots:**\n - **action** - Defines an action, displayed in the right most part of the header.\n- **avatar** - Defines an avatar image, displayed in the left most part of the header.\n\n### **CSS Parts:**\n - **additional-text** - Used to style the additional text of the CardHeader\n- **root** - Used to style the root DOM element of the CardHeader\n- **subtitle** - Used to style the subtitle of the CardHeader\n- **title** - Used to style the title of the CardHeader",
          "doc-url": "",
          "attributes": [
            {
              "name": "additional-text",
              "description": "Defines the additional text.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "interactive",
              "description": "Defines if the component would be interactive,\ne.g gets hover effect and `click` event is fired, when pressed.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "subtitle-text",
              "description": "Defines the subtitle text.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "title-text",
              "description": "Defines the title text.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "action",
              "description": "Defines an action, displayed in the right most part of the header."
            },
            {
              "name": "avatar",
              "description": "Defines an avatar image, displayed in the left most part of the header."
            }
          ],
          "events": [
            {
              "name": "click",
              "description": "Fired when the component is activated by mouse/tap or by using the Enter or Space key.\n\n**Note:** The event would be fired only if the `interactive` property is set to true."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "additional-text",
                "description": "Defines the additional text.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "interactive",
                "description": "Defines if the component would be interactive,\ne.g gets hover effect and `click` event is fired, when pressed.",
                "value": { "type": "boolean" }
              },
              {
                "name": "subtitle-text",
                "description": "Defines the subtitle text.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "title-text",
                "description": "Defines the title text.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": [
              {
                "name": "click",
                "description": "Fired when the component is activated by mouse/tap or by using the Enter or Space key.\n\n**Note:** The event would be fired only if the `interactive` property is set to true."
              }
            ]
          }
        },
        {
          "name": "ui5-carousel",
          "description": "### Overview\nThe Carousel allows the user to browse through a set of items.\nThe component is mostly used for showing a gallery of images, but can hold any other HTML element.\n\nThere are several ways to perform navigation:\n\n- on desktop - the user can navigate using the navigation arrows or with keyboard shortcuts.\n- on touch devices - the user can navigate using the navigation arrows (always visible) or can use swipe gestures.\n\n### Usage\n\n#### When to use:\n\n- The items you want to display are very different from each other.\n- You want to display the items one after the other.\n\n#### When not to use:\n\n- The items you want to display need to be visible at the same time.\n- The items you want to display are uniform and very similar.\n\n### Hidden Items\n\nCarousel items can be conditionally hidden by adding the `hidden` attribute to any child element.\nHidden items are automatically excluded from carousel navigation and will not be displayed or counted in pagination.\nThis allows for dynamic showing or hiding of carousel items without affecting the overall carousel behavior.\n\n### Keyboard Handling\n\n#### Basic Navigation\nWhen the `ui5-carousel` is focused the user can navigate between the items\nwith the following keyboard shortcuts:\n\n- [Up] or [Down] - Navigates to previous and next item\n- [Left] or [Right] - Navigates to previous and next item\n\n### Fast Navigation\nThis component provides a build in fast navigation group which can be used via [F6] / [Shift] + [F6] / [Ctrl] + [Alt/Option] / [Down] or [Ctrl] + [Alt/Option] + [Up].\nIn order to use this functionality, you need to import the following module:\n\n`import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"`\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Carousel.js\";`\n---\n\n\n### **Events:**\n - **navigate** - Fired whenever the page changes due to user interaction,\nwhen the user clicks on the navigation arrows or while resizing,\nbased on the `items-per-page` property.\n\n### **Methods:**\n - **navigateTo(itemIndex: _number_): _void_** - Changes the currently displayed page.\n\n### **Slots:**\n - **default** - Defines the content of the component.\n\n**Note:** Items with the `hidden` attribute will be automatically excluded from carousel navigation and page calculations.\nThey will not be displayed or accessible via keyboard navigation. See [sample](./#carousel-with-hidden-items).\n\n### **CSS Parts:**\n - **content** - Used to style the content of the component",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Defines the IDs of the elements that label the input.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "arrows-placement",
              "description": "Defines the position of arrows.\n\nAvailable options are:\n\n- `Content` - the arrows are placed on the sides of the current page.\n- `Navigation` - the arrows are placed on the sides of the page indicator.",
              "value": {
                "type": "\"Content\" | \"Navigation\"",
                "default": "\"Content\""
              }
            },
            {
              "name": "background-design",
              "description": "Defines the carousel's background design.",
              "value": {
                "type": "\"Transparent\" | \"Solid\" | \"Translucent\"",
                "default": "\"Translucent\""
              }
            },
            {
              "name": "cyclic",
              "description": "Defines whether the carousel should loop, i.e show the first page after the last page is reached and vice versa.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "hide-navigation-arrows",
              "description": "Defines the visibility of the navigation arrows.\nIf set to true the navigation arrows will be hidden.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "hide-page-indicator",
              "description": "Defines the visibility of the page indicator.\nIf set to true the page indicator will be hidden.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "items-per-page",
              "description": "Defines the number of items per page depending on the carousel width.\n\n- 'S' for screens smaller than 600 pixels.\n- 'M' for screens greater than or equal to 600 pixels and smaller than 1024 pixels.\n- 'L' for screens greater than or equal to 1024 pixels and smaller than 1440 pixels.\n- 'XL' for screens greater than or equal to 1440 pixels.\n\nOne item per page is shown by default.",
              "value": { "type": "string", "default": "\"S1 M1 L1 XL1\"" }
            },
            {
              "name": "page-indicator-background-design",
              "description": "Defines the page indicator background design.",
              "value": {
                "type": "\"Transparent\" | \"Solid\" | \"Translucent\"",
                "default": "\"Solid\""
              }
            },
            {
              "name": "page-indicator-border-design",
              "description": "Defines the page indicator border design.",
              "value": {
                "type": "\"None\" | \"Solid\"",
                "default": "\"Solid\""
              }
            },
            {
              "name": "page-indicator-type",
              "description": "Defines the style of the page indicator.\nAvailable options are:\n\n- `Default` - The page indicator will be visualized as dots if there are fewer than 9 pages. If there are more pages, the page indicator will switch to displaying the current page and the total number of pages. (e.g. X of Y)\n- `Numeric` - The page indicator will display the current page and the total number of pages. (e.g. X of Y)",
              "value": {
                "type": "\"Default\" | \"Numeric\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "visible-items-indices",
              "description": "The indices of the currently visible items of the component.",
              "value": { "type": "any", "default": "[]" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the content of the component.\n\n**Note:** Items with the `hidden` attribute will be automatically excluded from carousel navigation and page calculations.\nThey will not be displayed or accessible via keyboard navigation. See [sample](./#carousel-with-hidden-items)."
            }
          ],
          "events": [
            {
              "name": "navigate",
              "description": "Fired whenever the page changes due to user interaction,\nwhen the user clicks on the navigation arrows or while resizing,\nbased on the `items-per-page` property."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Defines the IDs of the elements that label the input.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "arrows-placement",
                "description": "Defines the position of arrows.\n\nAvailable options are:\n\n- `Content` - the arrows are placed on the sides of the current page.\n- `Navigation` - the arrows are placed on the sides of the page indicator.",
                "value": { "type": "\"Content\" | \"Navigation\"" }
              },
              {
                "name": "background-design",
                "description": "Defines the carousel's background design.",
                "value": {
                  "type": "\"Transparent\" | \"Solid\" | \"Translucent\""
                }
              },
              {
                "name": "cyclic",
                "description": "Defines whether the carousel should loop, i.e show the first page after the last page is reached and vice versa.",
                "value": { "type": "boolean" }
              },
              {
                "name": "hide-navigation-arrows",
                "description": "Defines the visibility of the navigation arrows.\nIf set to true the navigation arrows will be hidden.",
                "value": { "type": "boolean" }
              },
              {
                "name": "hide-page-indicator",
                "description": "Defines the visibility of the page indicator.\nIf set to true the page indicator will be hidden.",
                "value": { "type": "boolean" }
              },
              {
                "name": "items-per-page",
                "description": "Defines the number of items per page depending on the carousel width.\n\n- 'S' for screens smaller than 600 pixels.\n- 'M' for screens greater than or equal to 600 pixels and smaller than 1024 pixels.\n- 'L' for screens greater than or equal to 1024 pixels and smaller than 1440 pixels.\n- 'XL' for screens greater than or equal to 1440 pixels.\n\nOne item per page is shown by default.",
                "value": { "type": "string" }
              },
              {
                "name": "page-indicator-background-design",
                "description": "Defines the page indicator background design.",
                "value": {
                  "type": "\"Transparent\" | \"Solid\" | \"Translucent\""
                }
              },
              {
                "name": "page-indicator-border-design",
                "description": "Defines the page indicator border design.",
                "value": { "type": "\"None\" | \"Solid\"" }
              },
              {
                "name": "page-indicator-type",
                "description": "Defines the style of the page indicator.\nAvailable options are:\n\n- `Default` - The page indicator will be visualized as dots if there are fewer than 9 pages. If there are more pages, the page indicator will switch to displaying the current page and the total number of pages. (e.g. X of Y)\n- `Numeric` - The page indicator will display the current page and the total number of pages. (e.g. X of Y)",
                "value": { "type": "\"Default\" | \"Numeric\"" }
              },
              {
                "name": "visible-items-indices",
                "description": "The indices of the currently visible items of the component.",
                "value": { "type": "any" }
              }
            ],
            "events": [
              {
                "name": "navigate",
                "description": "Fired whenever the page changes due to user interaction,\nwhen the user clicks on the navigation arrows or while resizing,\nbased on the `items-per-page` property."
              }
            ]
          }
        },
        {
          "name": "ui5-checkbox",
          "description": "### Overview\n\nAllows the user to set a binary value, such as true/false or yes/no for an item.\n\nThe `ui5-checkbox` component consists of a box and a label that describes its purpose.\nIf it's checked, an indicator is displayed inside the box.\nTo check/uncheck the `ui5-checkbox`, the user has to click or tap the square\nbox or its label.\n\nThe `ui5-checkbox` component only has 2 states - checked and unchecked.\nClicking or tapping toggles the `ui5-checkbox` between checked and unchecked state.\n\n### Usage\n\nYou can define the checkbox text with via the `text` property. If the text exceeds the available width, it is truncated by default.\nIn case you prefer text to truncate, set the `wrappingType` property to \"None\".\nThe touchable area for toggling the `ui5-checkbox` ends where the text ends.\n\nYou can disable the `ui5-checkbox` by setting the `disabled` property to\n`true`,\nor use the `ui5-checkbox` in read-only mode by setting the `readonly`\nproperty to `true`.\n\n### Keyboard Handling\n\nThe user can use the following keyboard shortcuts to toggle the checked state of the `ui5-checkbox`.\n\n- [Space],[Enter] - Toggles between different states: checked, not checked.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/CheckBox.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the component checked state changes.\n\n### **CSS Parts:**\n - **icon** - Used to style the icon of the `ui5-checkbox`\n- **label** - Used to style the label of the `ui5-checkbox`\n- **root** - Used to style the outermost wrapper of the `ui5-checkbox`",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "checked",
              "description": "Defines if the component is checked.\n\n**Note:** The property can be changed with user interaction,\neither by cliking/tapping on the component, or by\npressing the Enter or Space key.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is disabled.\n\n**Note:** A disabled component is completely noninteractive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "display-only",
              "description": "Determines whether the `ui5-checkbox` is in display only state.\n\nWhen set to `true`, the `ui5-checkbox` is not interactive, not editable, not focusable\nand not in the tab chain. This setting is used for forms in review mode.\n\n**Note:** When the property `disabled` is set to `true` this property has no effect.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "indeterminate",
              "description": "Defines whether the component is displayed as partially checked.\n\n**Note:** The indeterminate state can be set only programmatically and can’t be achieved by user\ninteraction and the resulting visual state depends on the values of the `indeterminate`\nand `checked` properties:\n\n-  If the component is checked and indeterminate, it will be displayed as partially checked\n-  If the component is checked and it is not indeterminate, it will be displayed as checked\n-  If the component is not checked, it will be displayed as not checked regardless value of the indeterminate attribute",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "readonly",
              "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.\n\n**Note:** We advise against using the text property of the checkbox when there is a\nlabel associated with it to avoid having two required asterisks.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "text",
              "description": "Defines the text of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "value",
              "description": "Defines the form value of the component that is submitted when the checkbox is checked.\n\nWhen a form containing `ui5-checkbox` elements is submitted, only the values of the\n**checked** checkboxes are included in the form data sent to the server. Unchecked\ncheckboxes do not contribute any data to the form submission.\n\nThis property is particularly useful for **checkbox groups**, where multiple checkboxes with the same `name` but different `value` properties can be used to represent a set of related options.",
              "value": { "type": "string", "default": "\"on\"" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            },
            {
              "name": "wrapping-type",
              "description": "Defines whether the component text wraps when there is not enough space.\n\n**Note:** for option \"Normal\" the text will wrap and the words will not be broken based on hyphenation.\n**Note:** for option \"None\" the text will be truncated with an ellipsis.",
              "value": {
                "type": "\"None\" | \"Normal\"",
                "default": "\"Normal\""
              }
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the component checked state changes."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "checked",
                "description": "Defines if the component is checked.\n\n**Note:** The property can be changed with user interaction,\neither by cliking/tapping on the component, or by\npressing the Enter or Space key.",
                "value": { "type": "boolean" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is disabled.\n\n**Note:** A disabled component is completely noninteractive.",
                "value": { "type": "boolean" }
              },
              {
                "name": "display-only",
                "description": "Determines whether the `ui5-checkbox` is in display only state.\n\nWhen set to `true`, the `ui5-checkbox` is not interactive, not editable, not focusable\nand not in the tab chain. This setting is used for forms in review mode.\n\n**Note:** When the property `disabled` is set to `true` this property has no effect.",
                "value": { "type": "boolean" }
              },
              {
                "name": "indeterminate",
                "description": "Defines whether the component is displayed as partially checked.\n\n**Note:** The indeterminate state can be set only programmatically and can’t be achieved by user\ninteraction and the resulting visual state depends on the values of the `indeterminate`\nand `checked` properties:\n\n-  If the component is checked and indeterminate, it will be displayed as partially checked\n-  If the component is checked and it is not indeterminate, it will be displayed as checked\n-  If the component is not checked, it will be displayed as not checked regardless value of the indeterminate attribute",
                "value": { "type": "boolean" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "readonly",
                "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
                "value": { "type": "boolean" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.\n\n**Note:** We advise against using the text property of the checkbox when there is a\nlabel associated with it to avoid having two required asterisks.",
                "value": { "type": "boolean" }
              },
              {
                "name": "text",
                "description": "Defines the text of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "value",
                "description": "Defines the form value of the component that is submitted when the checkbox is checked.\n\nWhen a form containing `ui5-checkbox` elements is submitted, only the values of the\n**checked** checkboxes are included in the form data sent to the server. Unchecked\ncheckboxes do not contribute any data to the form submission.\n\nThis property is particularly useful for **checkbox groups**, where multiple checkboxes with the same `name` but different `value` properties can be used to represent a set of related options.",
                "value": { "type": "string" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              },
              {
                "name": "wrapping-type",
                "description": "Defines whether the component text wraps when there is not enough space.\n\n**Note:** for option \"Normal\" the text will wrap and the words will not be broken based on hyphenation.\n**Note:** for option \"None\" the text will be truncated with an ellipsis.",
                "value": { "type": "\"None\" | \"Normal\"" }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the component checked state changes."
              }
            ]
          }
        },
        {
          "name": "ui5-color-palette",
          "description": "### Overview\nThe `ui5-color-palette` provides the users with a range of predefined colors. The colors are fixed and do not change with the theme.\n\n### Usage\n\nThe `ui5-color-palette` is meant for users that need to select a color from a predefined set.\nTo define the colors, use the `ui5-color-palette-item` component inside the default slot of the `ui5-color-palette`.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/ColorPalette.js\";`\n---\n\n\n### **Events:**\n - **item-click** - Fired when the user selects a color.\n\n### **Slots:**\n - **default** - Defines the `ui5-color-palette-item` elements.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the `ui5-color-palette-item` elements."
            }
          ],
          "events": [
            {
              "name": "item-click",
              "description": "Fired when the user selects a color."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": [
              {
                "name": "item-click",
                "description": "Fired when the user selects a color."
              }
            ]
          }
        },
        {
          "name": "ui5-color-palette-item",
          "description": "### Overview\n\nThe `ui5-color-palette-item` component represents a color in the the `ui5-color-palette`.\n---\n\n\n### **Events:**\n - **click** - Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`.",
          "doc-url": "",
          "attributes": [
            {
              "name": "selected",
              "description": "Defines if the component is selected.\n\n**Note:** Only one item must be selected per <code>ui5-color-palette</code>.\nIf more than one item is defined as selected, the last one would be considered as the selected one.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "tooltip",
              "description": "Defines the tooltip of the component. When not set, the color value is used as the tooltip.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "value",
              "description": "Defines the colour of the component.\n\n**Note:** The value should be a valid CSS color.",
              "value": { "type": "string", "default": "\"\"" }
            }
          ],
          "events": [
            {
              "name": "click",
              "description": "Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "selected",
                "description": "Defines if the component is selected.\n\n**Note:** Only one item must be selected per <code>ui5-color-palette</code>.\nIf more than one item is defined as selected, the last one would be considered as the selected one.",
                "value": { "type": "boolean" }
              },
              {
                "name": "tooltip",
                "description": "Defines the tooltip of the component. When not set, the color value is used as the tooltip.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "value",
                "description": "Defines the colour of the component.\n\n**Note:** The value should be a valid CSS color.",
                "value": { "type": "string" }
              }
            ],
            "events": [
              {
                "name": "click",
                "description": "Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`."
              }
            ]
          }
        },
        {
          "name": "ui5-color-palette-popover",
          "description": "### Overview\nRepresents a predefined range of colors for easier selection.\n\nOverview\nThe ColorPalettePopover provides the users with a slot to predefine colors.\n\nYou can customize them with the use of the colors property. You can specify a defaultColor and display a \"Default color\" button for the user to choose directly.\nYou can display a \"More colors...\" button that opens an additional color picker for the user to choose specific colors that are not present in the predefined range.\n\n### Usage\n\nThe palette is intended for users, who don't want to check and remember the different values of the colors and spend large amount of time to configure the right color through the color picker.\n\nFor the `ui5-color-palette-popover`\n### ES6 Module Import\n\n`import @ui5/webcomponents/dist/ColorPalettePopover.js\";`\n---\n\n\n### **Events:**\n - **close** - Fired when the `ui5-color-palette-popover` is closed due to user interaction.\n- **item-click** - Fired when the user selects a color.\n\n### **Slots:**\n - **default** - Defines the content of the component.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "default-color",
              "description": "Defines the default color of the component.\n\n**Note:** The default color should be a part of the ColorPalette colors`",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "open",
              "description": "Defines the open | closed state of the popover.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "opener",
              "description": "Defines the ID or DOM Reference of the element that the popover is shown at.\nWhen using this attribute in a declarative way, you must only use the `id` (as a string) of the element at which you want to show the popover.\nYou can only set the `opener` attribute to a DOM Reference when using JavaScript.",
              "value": {
                "type": "string | HTMLElement | null | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "placement",
              "description": "Determines on which side the component is placed at.",
              "value": {
                "type": "\"Top\" | \"Bottom\" | \"Start\" | \"End\"",
                "default": "\"Bottom\""
              }
            },
            {
              "name": "show-default-color",
              "description": "Defines whether the user can choose the default color from a button.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-more-colors",
              "description": "Defines whether the user can choose a custom color from a component.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-recent-colors",
              "description": "Defines whether the user can see the last used colors in the bottom of the component",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the content of the component."
            }
          ],
          "events": [
            {
              "name": "close",
              "description": "Fired when the `ui5-color-palette-popover` is closed due to user interaction."
            },
            {
              "name": "item-click",
              "description": "Fired when the user selects a color."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "default-color",
                "description": "Defines the default color of the component.\n\n**Note:** The default color should be a part of the ColorPalette colors`",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "open",
                "description": "Defines the open | closed state of the popover.",
                "value": { "type": "boolean" }
              },
              {
                "name": "opener",
                "description": "Defines the ID or DOM Reference of the element that the popover is shown at.\nWhen using this attribute in a declarative way, you must only use the `id` (as a string) of the element at which you want to show the popover.\nYou can only set the `opener` attribute to a DOM Reference when using JavaScript.",
                "value": { "type": "string | HTMLElement | null | undefined" }
              },
              {
                "name": "placement",
                "description": "Determines on which side the component is placed at.",
                "value": {
                  "type": "\"Top\" | \"Bottom\" | \"Start\" | \"End\""
                }
              },
              {
                "name": "show-default-color",
                "description": "Defines whether the user can choose the default color from a button.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-more-colors",
                "description": "Defines whether the user can choose a custom color from a component.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-recent-colors",
                "description": "Defines whether the user can see the last used colors in the bottom of the component",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "close",
                "description": "Fired when the `ui5-color-palette-popover` is closed due to user interaction."
              },
              {
                "name": "item-click",
                "description": "Fired when the user selects a color."
              }
            ]
          }
        },
        {
          "name": "ui5-color-picker",
          "description": "### Overview\nThe `ui5-color-picker` allows users to choose any color and provides different input options for selecting colors.\n\n### Usage\n\n#### When to use\nUse the color picker if:\n\n-  users need to select any color freely.\n\n#### When not to use\n\n-  Users need to select one color from a predefined set of colors. Use the ColorPalette component instead.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/ColorPicker.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the the selected color is changed",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "simplified",
              "description": "When set to `true`, the alpha slider and inputs for RGB values will not be displayed.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "value",
              "description": "Defines the currently selected color of the component.\n\n**Note**: use HEX, RGB, RGBA, HSV formats or a CSS color name when modifying this property.",
              "value": {
                "type": "string",
                "default": "\"rgba(255,255,255,1)\""
              }
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the the selected color is changed"
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "simplified",
                "description": "When set to `true`, the alpha slider and inputs for RGB values will not be displayed.",
                "value": { "type": "boolean" }
              },
              {
                "name": "value",
                "description": "Defines the currently selected color of the component.\n\n**Note**: use HEX, RGB, RGBA, HSV formats or a CSS color name when modifying this property.",
                "value": { "type": "string" }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the the selected color is changed"
              }
            ]
          }
        },
        {
          "name": "ui5-combobox",
          "description": "### Overview\n\nThe `ui5-combobox` component represents a drop-down menu with a list of the available options and a text input field to narrow down the options.\n\nIt is commonly used to enable users to select an option from a predefined list.\n\n### Structure\nThe `ui5-combobox` consists of the following elements:\n\n-  Input field - displays the selected option or a custom user entry. Users can type to narrow down the list or enter their own value.\n-  Drop-down arrow - expands\\collapses the option list.\n-  Option list - the list of available options.\n\n### Working with Values\n\nThe ComboBox offers two ways to work with item selection:\n\n**1. Display Text Only (using `value`):**\n```html\n<ui5-combobox value=\"Germany\">\n  <ui5-cb-item text=\"Germany\"></ui5-cb-item>\n  <ui5-cb-item text=\"France\"></ui5-cb-item>\n</ui5-combobox>\n```\nUse this approach when the displayed text is sufficient for your needs.\n\n**2. Unique Identifiers - Recommended (using `selectedValue` and item `value`):**\n```html\n<ui5-combobox value=\"Germany\" selected-value=\"DE\">\n  <ui5-cb-item text=\"Germany\" value=\"DE\"></ui5-cb-item>\n  <ui5-cb-item text=\"France\" value=\"FR\"></ui5-cb-item>\n</ui5-combobox>\n```\nThis is the recommended approach when you need to work with unique identifiers (IDs, codes) separate from display text.\nThe `selectedValue` property references the `value` property of the selected item.\nIn forms, the item's `value` (e.g., \"DE\") will be submitted instead of the display text.\n\n**Important:** Do not mix the `selectedValue` approach with the deprecated `selected` property on items.\n\n### Keyboard Handling\n\nThe `ui5-combobox` provides advanced keyboard handling.\n\n- [F4], [Alt]+[Up], or [Alt]+[Down] - Toggles the picker.\n- [Escape] - Closes the picker, if open. If closed, cancels changes and reverts the typed in value.\n- [Enter] or [Return] - If picker is open, takes over the currently selected item and closes it.\n- [Down] - Selects the next matching item in the picker.\n- [Up] - Selects the previous matching item in the picker.\n- [Page Down] - Moves selection down by page size (10 items by default).\n- [Page Up] - Moves selection up by page size (10 items by default).\n- [Home] - If focus is in the ComboBox, moves cursor at the beginning of text. If focus is in the picker, selects the first item.\n- [End] - If focus is in the ComboBox, moves cursor at the end of text. If focus is in the picker, selects the last item.\n- [Ctrl]+[Alt]+[F8] or [Command]+[Option]+[F8] - Focuses the first link in the value state message, if available. Pressing [Tab] moves the focus to the next link in the value state message, or closes the value state message if there are no more links.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/ComboBox.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter, focusout or an item is selected.\n- **close** - Fired when the dropdown is closed.\n- **input** - Fired when typing in input or clear icon is pressed.\n\n**Note:** filterValue property is updated, input is changed.\n- **open** - Fired when the dropdown is opened.\n- **selection-change** - Fired when selection is changed by user interaction\n\n### **Slots:**\n - **default** - Defines the component items.\n- **icon** - Defines the icon to be displayed in the input field.\n- **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the `ui5-combobox` is in `Information`, `Critical` or `Negative` value state.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is in disabled state.\n\n**Note:** A disabled component is completely noninteractive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "filter",
              "description": "Defines the filter type of the component.",
              "value": {
                "type": "\"None\" | \"StartsWithPerTerm\" | \"StartsWith\" | \"Contains\"",
                "default": "\"StartsWithPerTerm\""
              }
            },
            {
              "name": "loading",
              "description": "Indicates whether a loading indicator should be shown in the picker.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "no-typeahead",
              "description": "Defines whether the value will be autocompleted to match an item",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "open",
              "description": "Indicates whether the items picker is open.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "placeholder",
              "description": "Defines a short hint intended to aid the user with data entry when the\ncomponent has no value.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "readonly",
              "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "selected-value",
              "description": "Defines the value of the selected item (references the `value` property of `ui5-cb-item`).\n\nUse this property to work with unique identifiers (IDs, codes) instead of display text.\nWhen set, the ComboBox finds and selects the item whose `value` property matches this property.\n\n**Benefits:**\n- Select items programmatically by their unique identifier\n- Handle items with identical display text but different underlying values\n- Submit machine-readable values in forms (the item's `value` is submitted instead of the display text)\n\n**When to use `selectedValue` vs `value`:**\n- **Recommended:** Use `selectedValue` + item `value` when you need unique identifiers separate from display text (e.g., country codes \"DE\", \"FR\" with display names \"Germany\", \"France\")\n- Use only the ComboBox `value` property when the display text itself is sufficient for your use case",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "show-clear-icon",
              "description": "Defines whether the clear icon of the combobox will be shown.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "value",
              "description": "Defines the value of the component.",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the component items."
            },
            {
              "name": "icon",
              "description": "Defines the icon to be displayed in the input field."
            },
            {
              "name": "valueStateMessage",
              "description": "Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the `ui5-combobox` is in `Information`, `Critical` or `Negative` value state."
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the input operation has finished by pressing Enter, focusout or an item is selected."
            },
            {
              "name": "close",
              "description": "Fired when the dropdown is closed."
            },
            {
              "name": "input",
              "description": "Fired when typing in input or clear icon is pressed.\n\n**Note:** filterValue property is updated, input is changed."
            },
            {
              "name": "open",
              "description": "Fired when the dropdown is opened."
            },
            {
              "name": "selection-change",
              "description": "Fired when selection is changed by user interaction"
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is in disabled state.\n\n**Note:** A disabled component is completely noninteractive.",
                "value": { "type": "boolean" }
              },
              {
                "name": "filter",
                "description": "Defines the filter type of the component.",
                "value": {
                  "type": "\"None\" | \"StartsWithPerTerm\" | \"StartsWith\" | \"Contains\""
                }
              },
              {
                "name": "loading",
                "description": "Indicates whether a loading indicator should be shown in the picker.",
                "value": { "type": "boolean" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "no-typeahead",
                "description": "Defines whether the value will be autocompleted to match an item",
                "value": { "type": "boolean" }
              },
              {
                "name": "open",
                "description": "Indicates whether the items picker is open.",
                "value": { "type": "boolean" }
              },
              {
                "name": "placeholder",
                "description": "Defines a short hint intended to aid the user with data entry when the\ncomponent has no value.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "readonly",
                "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
                "value": { "type": "boolean" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.",
                "value": { "type": "boolean" }
              },
              {
                "name": "selected-value",
                "description": "Defines the value of the selected item (references the `value` property of `ui5-cb-item`).\n\nUse this property to work with unique identifiers (IDs, codes) instead of display text.\nWhen set, the ComboBox finds and selects the item whose `value` property matches this property.\n\n**Benefits:**\n- Select items programmatically by their unique identifier\n- Handle items with identical display text but different underlying values\n- Submit machine-readable values in forms (the item's `value` is submitted instead of the display text)\n\n**When to use `selectedValue` vs `value`:**\n- **Recommended:** Use `selectedValue` + item `value` when you need unique identifiers separate from display text (e.g., country codes \"DE\", \"FR\" with display names \"Germany\", \"France\")\n- Use only the ComboBox `value` property when the display text itself is sufficient for your use case",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "show-clear-icon",
                "description": "Defines whether the clear icon of the combobox will be shown.",
                "value": { "type": "boolean" }
              },
              {
                "name": "value",
                "description": "Defines the value of the component.",
                "value": { "type": "string" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the input operation has finished by pressing Enter, focusout or an item is selected."
              },
              {
                "name": "close",
                "description": "Fired when the dropdown is closed."
              },
              {
                "name": "input",
                "description": "Fired when typing in input or clear icon is pressed.\n\n**Note:** filterValue property is updated, input is changed."
              },
              {
                "name": "open",
                "description": "Fired when the dropdown is opened."
              },
              {
                "name": "selection-change",
                "description": "Fired when selection is changed by user interaction"
              }
            ]
          }
        },
        {
          "name": "ui5-cb-item",
          "description": "The `ui5-cb-item` represents the item for a `ui5-combobox`.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "additional-text",
              "description": "Defines the additional text of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "text",
              "description": "Defines the text of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "value",
              "description": "Defines the value of the `ui5-cb-item`.\n\nUse this property to associate a unique identifier or machine-readable value with the item,\nseparate from the display text. This enables:\n- Selecting items programmatically via `selectedValue` on the ComboBox\n- Submitting machine-readable values in forms\n- Distinguishing between items with identical display text\n\n**When to use:**\n- **Recommended:** Use the `value` property on items together with `selectedValue` on the ComboBox when you need unique identifiers\n- Omit `value` if the display text (`text` property) is sufficient for your use case\n\n**Example:**\n```html\n<ui5-combobox selected-value=\"DE\">\n  <ui5-cb-item text=\"Germany\" value=\"DE\"></ui5-cb-item>\n  <ui5-cb-item text=\"France\" value=\"FR\"></ui5-cb-item>\n</ui5-combobox>\n```",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "additional-text",
                "description": "Defines the additional text of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "text",
                "description": "Defines the text of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "value",
                "description": "Defines the value of the `ui5-cb-item`.\n\nUse this property to associate a unique identifier or machine-readable value with the item,\nseparate from the display text. This enables:\n- Selecting items programmatically via `selectedValue` on the ComboBox\n- Submitting machine-readable values in forms\n- Distinguishing between items with identical display text\n\n**When to use:**\n- **Recommended:** Use the `value` property on items together with `selectedValue` on the ComboBox when you need unique identifiers\n- Omit `value` if the display text (`text` property) is sufficient for your use case\n\n**Example:**\n```html\n<ui5-combobox selected-value=\"DE\">\n  <ui5-cb-item text=\"Germany\" value=\"DE\"></ui5-cb-item>\n  <ui5-cb-item text=\"France\" value=\"FR\"></ui5-cb-item>\n</ui5-combobox>\n```",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-cb-item-group",
          "description": "The `ui5-cb-group-item` is type of suggestion item,\nthat can be used to split the `ui5-combobox` suggestions into groups.\n---\n\n\n### **Events:**\n - **move** - Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action.\n- **move-over** - Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n\n### **Slots:**\n - **default** - Defines the items of the <code>ui5-cb-item-group</code>.\n- **header** - Defines the header of the component.\n\n**Note:** Using this slot, the default header text of group and the value of `headerText` property will be overwritten.\n\n### **CSS Parts:**\n - **header** - Used to style the header item of the group\n- **title** - Used to style the title of the group header",
          "doc-url": "",
          "attributes": [
            {
              "name": "header-accessible-name",
              "description": "Defines the accessible name of the header.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "header-text",
              "description": "Defines the header text of the <code>ui5-li-group</code>.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "wrapping-type",
              "description": "Defines if the text of the component should wrap when it's too long.\nWhen set to \"Normal\", the content (title, description) will be wrapped\nusing the `ui5-expandable-text` component.<br/>\n\nThe text can wrap up to 100 characters on small screens (size S) and\nup to 300 characters on larger screens (size M and above). When text exceeds\nthese limits, it truncates with an ellipsis followed by a text expansion trigger.\n\nAvailable options are:\n- `None` (default) - The text will truncate with an ellipsis.\n- `Normal` - The text will wrap (without truncation).",
              "value": {
                "type": "\"None\" | \"Normal\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the items of the <code>ui5-cb-item-group</code>."
            },
            {
              "name": "header",
              "description": "Defines the header of the component.\n\n**Note:** Using this slot, the default header text of group and the value of `headerText` property will be overwritten."
            }
          ],
          "events": [
            {
              "name": "move",
              "description": "Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action."
            },
            {
              "name": "move-over",
              "description": "Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "header-accessible-name",
                "description": "Defines the accessible name of the header.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "header-text",
                "description": "Defines the header text of the <code>ui5-li-group</code>.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "wrapping-type",
                "description": "Defines if the text of the component should wrap when it's too long.\nWhen set to \"Normal\", the content (title, description) will be wrapped\nusing the `ui5-expandable-text` component.<br/>\n\nThe text can wrap up to 100 characters on small screens (size S) and\nup to 300 characters on larger screens (size M and above). When text exceeds\nthese limits, it truncates with an ellipsis followed by a text expansion trigger.\n\nAvailable options are:\n- `None` (default) - The text will truncate with an ellipsis.\n- `Normal` - The text will wrap (without truncation).",
                "value": { "type": "\"None\" | \"Normal\"" }
              }
            ],
            "events": [
              {
                "name": "move",
                "description": "Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action."
              },
              {
                "name": "move-over",
                "description": "Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`."
              }
            ]
          }
        },
        {
          "name": "ui5-date-picker",
          "description": "### Overview\n\nThe `ui5-date-picker` component provides an input field with assigned calendar which opens on user action.\nThe `ui5-date-picker` allows users to select a localized date using touch,\nmouse, or keyboard input. It consists of two parts: the date input field and the\ndate picker.\n\n### Usage\n\nThe user can enter a date by:\n\n- Using the calendar that opens in a popup\n- Typing it in directly in the input field\n\nWhen the user makes an entry and presses the enter key, the calendar shows the corresponding date.\nWhen the user directly triggers the calendar display, the actual date is displayed.\n\n### Formatting\n\nIf a date is entered by typing it into\nthe input field, it must fit to the used date format.\n\nSupported format options are pattern-based on Unicode LDML Date Format notation.\nFor more information, see [UTS #35: Unicode Locale Data Markup Language](https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table).\n\nFor example, if the valueFormat is \"yyyy-MM-dd\", the displayFormat is \"MMM d, y\", and the used locale is English, a valid value string is \"2015-07-30\", which leads to an output of \"Jul 30, 2015\".\nIf no placeholder is set to the DatePicker, the used displayFormat is displayed as a placeholder. If another placeholder is needed, it must be set.\n\n### Keyboard Handling\nThe `ui5-date-picker` provides advanced keyboard handling.\nIf the `ui5-date-picker` is focused,\nyou can open or close the drop-down by pressing [F4], [Alt] + [Up] or [Alt] + [Down] keys.\nOnce the drop-down is opened, you can use the [Up], [Down], [Left] or [Right] arrow keys\nto navigate through the dates and select one by pressing the `Space` or `Enter` keys. Moreover you can\nuse TAB to reach the buttons for changing month and year.\n\nIf the `ui5-date-picker` input field is focused and its corresponding picker dialog is not opened,\nthen users can increment or decrement the date referenced by `dateValue` property\nby using the following shortcuts:\n\n- [Page Down] - Decrements the corresponding day of the month by one\n- [Shift] + [Page Down] - Decrements the corresponding month by one\n- [Shift] + [Ctrl] + [Page Down] - Decrements the corresponding year by one\n- [Page Up] - Increments the corresponding day of the month by one\n- [Shift] + [Page Up] - Increments the corresponding month by one\n- [Shift] + [Ctrl] + [Page Up] - Increments the corresponding year by one\n\n### Calendar types\nThe component supports several calendar types - Gregorian, Buddhist, Islamic, Japanese and Persian.\nBy default the Gregorian Calendar is used. In order to use the Buddhist, Islamic, Japanese or Persian calendar,\nyou need to set the `primaryCalendarType` property and import one or more of the following modules:\n\n`import \"@ui5/webcomponents-localization/dist/features/calendar/Buddhist.js\";`\n\n`import \"@ui5/webcomponents-localization/dist/features/calendar/Islamic.js\";`\n\n`import \"@ui5/webcomponents-localization/dist/features/calendar/Japanese.js\";`\n\n`import \"@ui5/webcomponents-localization/dist/features/calendar/Persian.js\";`\n\nOr, you can use the global configuration and set the `calendarType` key:\n\n```html\n<script data-id=\"sap-ui-config\" type=\"application/json\">\n\t{\n\t\t\"calendarType\": \"Japanese\"\n\t}\n<script>\n```\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/DatePicker.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter or on focusout.\n- **close** - Fired after the component's picker is closed.\n- **input** - Fired when the value of the component is changed at each key stroke.\n- **open** - Fired after the component's picker is opened.\n- **value-state-change** - Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state.\n\n### **Methods:**\n - **formatValue(date: _Date_): _string_** - Formats a Java Script date object into a string representing a locale date\naccording to the `formatPattern` property of the DatePicker instance\n- **isInValidRange(value: _string_): _boolean_** - Checks if a date is between the minimum and maximum date.\n- **isValid(value: _string_): _boolean_** - @deprecated Use isValidValue or isValidDisplayValue instead - Checks if a value is valid against the current date format of the DatePicker.\n- **isValidDisplayValue(value: _string_): _boolean_** - Checks if a value is valid against the current date format of the DatePicker.\n- **isValidValue(value: _string_): _boolean_** - Checks if a value is valid against the current date format of the DatePicker.\n\n### **Slots:**\n - **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.\n\n### **CSS Parts:**\n - **input** - Used to style the input element. This part is forwarded to the underlying ui5-input element.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Receives id(or many ids) of the elements that describe the input.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the aria-label attribute for the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "calendar-week-numbering",
              "description": "Defines how to calculate calendar weeks and first day of the week.\nIf not set, the calendar will be displayed according to the currently set global configuration.",
              "value": {
                "type": "\"Default\" | \"ISO_8601\" | \"MiddleEastern\" | \"WesternTraditional\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "date-value",
              "description": "Currently selected date represented as a Local JavaScript Date instance.\nNote: this getter can only be reliably used after the component is fully defined. Use dateValueAsync which resolves only when this condition is met.",
              "value": { "type": "any", "default": "null" }
            },
            {
              "name": "date-value-async",
              "description": "Promise that resolves to the currently selected date represented as a Local JavaScript Date instance.",
              "value": { "type": "any", "default": "Promise" }
            },
            {
              "name": "disabled",
              "description": "Determines whether the component is displayed as disabled.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "display-format",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "format-pattern",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "hide-week-numbers",
              "description": "Defines the visibility of the week numbers column.\n\n**Note:** For calendars other than Gregorian,\nthe week numbers are not displayed regardless of what is set.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "max-date",
              "description": "Determines the maximum date available for selection.\n\n**Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "min-date",
              "description": "Determines the minimum date available for selection.\n\n**Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "open",
              "description": "Defines the open or closed state of the popover.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "placeholder",
              "description": "Defines a short hint, intended to aid the user with data entry when the\ncomponent has no value.\n\n**Note:** When no placeholder is set, the format pattern is displayed as a placeholder.\nPassing an empty string as the value of this property will make the component appear empty - without placeholder or format pattern.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "primary-calendar-type",
              "description": "Sets a calendar type used for display.\nIf not set, the calendar type of the global configuration is used.",
              "value": {
                "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "readonly",
              "description": "Determines whether the component is displayed as read-only.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "secondary-calendar-type",
              "description": "Defines the secondary calendar type.\nIf not set, the calendar will only show the primary calendar type.",
              "value": {
                "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "show-clear-icon",
              "description": "Defines whether the clear icon of the input will be shown.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "value",
              "description": "Defines a formatted date value.",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "value-format",
              "description": "Determines the format, used for the value attribute.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "valueStateMessage",
              "description": "Defines the value state message that will be displayed as pop up under the component.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state."
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the input operation has finished by pressing Enter or on focusout."
            },
            {
              "name": "close",
              "description": "Fired after the component's picker is closed."
            },
            {
              "name": "input",
              "description": "Fired when the value of the component is changed at each key stroke."
            },
            {
              "name": "open",
              "description": "Fired after the component's picker is opened."
            },
            {
              "name": "value-state-change",
              "description": "Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Receives id(or many ids) of the elements that describe the input.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the aria-label attribute for the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "calendar-week-numbering",
                "description": "Defines how to calculate calendar weeks and first day of the week.\nIf not set, the calendar will be displayed according to the currently set global configuration.",
                "value": {
                  "type": "\"Default\" | \"ISO_8601\" | \"MiddleEastern\" | \"WesternTraditional\""
                }
              },
              {
                "name": "date-value",
                "description": "Currently selected date represented as a Local JavaScript Date instance.\nNote: this getter can only be reliably used after the component is fully defined. Use dateValueAsync which resolves only when this condition is met.",
                "value": { "type": "any" }
              },
              {
                "name": "date-value-async",
                "description": "Promise that resolves to the currently selected date represented as a Local JavaScript Date instance.",
                "value": { "type": "any" }
              },
              {
                "name": "disabled",
                "description": "Determines whether the component is displayed as disabled.",
                "value": { "type": "boolean" }
              },
              {
                "name": "display-format",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "format-pattern",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "hide-week-numbers",
                "description": "Defines the visibility of the week numbers column.\n\n**Note:** For calendars other than Gregorian,\nthe week numbers are not displayed regardless of what is set.",
                "value": { "type": "boolean" }
              },
              {
                "name": "max-date",
                "description": "Determines the maximum date available for selection.\n\n**Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).",
                "value": { "type": "string" }
              },
              {
                "name": "min-date",
                "description": "Determines the minimum date available for selection.\n\n**Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).",
                "value": { "type": "string" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "open",
                "description": "Defines the open or closed state of the popover.",
                "value": { "type": "boolean" }
              },
              {
                "name": "placeholder",
                "description": "Defines a short hint, intended to aid the user with data entry when the\ncomponent has no value.\n\n**Note:** When no placeholder is set, the format pattern is displayed as a placeholder.\nPassing an empty string as the value of this property will make the component appear empty - without placeholder or format pattern.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "primary-calendar-type",
                "description": "Sets a calendar type used for display.\nIf not set, the calendar type of the global configuration is used.",
                "value": {
                  "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined"
                }
              },
              {
                "name": "readonly",
                "description": "Determines whether the component is displayed as read-only.",
                "value": { "type": "boolean" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.",
                "value": { "type": "boolean" }
              },
              {
                "name": "secondary-calendar-type",
                "description": "Defines the secondary calendar type.\nIf not set, the calendar will only show the primary calendar type.",
                "value": {
                  "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined"
                }
              },
              {
                "name": "show-clear-icon",
                "description": "Defines whether the clear icon of the input will be shown.",
                "value": { "type": "boolean" }
              },
              {
                "name": "value",
                "description": "Defines a formatted date value.",
                "value": { "type": "string" }
              },
              {
                "name": "value-format",
                "description": "Determines the format, used for the value attribute.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the input operation has finished by pressing Enter or on focusout."
              },
              {
                "name": "close",
                "description": "Fired after the component's picker is closed."
              },
              {
                "name": "input",
                "description": "Fired when the value of the component is changed at each key stroke."
              },
              {
                "name": "open",
                "description": "Fired after the component's picker is opened."
              },
              {
                "name": "value-state-change",
                "description": "Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state."
              }
            ]
          }
        },
        {
          "name": "ui5-daterange-picker",
          "description": "### Overview\nThe DateRangePicker enables the users to enter a localized date range using touch, mouse, keyboard input, or by selecting a date range in the calendar.\n\n### Usage\nThe user can enter a date by:\nUsing the calendar that opens in a popup or typing it in directly in the input field (not available for mobile devices).\nFor the `ui5-daterange-picker`:\n\n**Note:** Relative date values such as \"today\", \"yesterday\", or \"tomorrow\" are not supported.\nEntering a relative date sets the component to an error state.\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/DateRangePicker.js\";`\n\n### Keyboard Handling\nThe `ui5-daterange-picker` provides advanced keyboard handling.\n\nWhen the `ui5-daterange-picker` input field is focused the user can\nincrement or decrement respectively the range start or end date, depending on where the cursor is.\nThe following shortcuts are available:\n\n- [Page Down] - Decrements the corresponding day of the month by one\n- [Shift] + [Page Down] - Decrements the corresponding month by one\n- [Shift] + [Ctrl] + [Page Down] - Decrements the corresponding year by one\n- [Page Up] - Increments the corresponding day of the month by one\n- [Shift] + [Page Up] - Increments the corresponding month by one\n- [Shift] + [Ctrl] + [Page Up] - Increments the corresponding year by one\n---\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter or on focusout.\n- **close** - Fired after the component's picker is closed.\n- **input** - Fired when the value of the component is changed at each key stroke.\n- **open** - Fired after the component's picker is opened.\n- **value-state-change** - Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state.\n\n### **Methods:**\n - **formatValue(date: _Date_): _string_** - Formats a Java Script date object into a string representing a locale date\naccording to the `formatPattern` property of the DatePicker instance\n- **isInValidRange(value: _string_): _boolean_** - Checks if a date is between the minimum and maximum date.\n- **isValid(value: _string_): _boolean_** - @deprecated Use isValidValue or isValidDisplayValue instead - Checks if a value is valid against the current date format of the DatePicker.\n- **isValidDisplayValue(value: _string_): _boolean_** - Checks if a value is valid against the current date format of the DatePicker.\n- **isValidValue(value: _string_): _boolean_** - Checks if a value is valid against the current date format of the DatePicker.\n\n### **Slots:**\n - **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.\n\n### **CSS Parts:**\n - **input** - Used to style the input element. This part is forwarded to the underlying ui5-input element.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Receives id(or many ids) of the elements that describe the input.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the aria-label attribute for the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "calendar-week-numbering",
              "description": "Defines how to calculate calendar weeks and first day of the week.\nIf not set, the calendar will be displayed according to the currently set global configuration.",
              "value": {
                "type": "\"Default\" | \"ISO_8601\" | \"MiddleEastern\" | \"WesternTraditional\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "date-value",
              "description": "**Note:** The getter method is inherited and not supported. If called it will return an empty value.",
              "value": { "type": "any", "default": "null" }
            },
            {
              "name": "date-value-async",
              "description": "Promise that resolves to the currently selected date represented as a Local JavaScript Date instance.",
              "value": { "type": "any", "default": "Promise" }
            },
            {
              "name": "date-value-utc",
              "description": "**Note:** The getter method is inherited and not supported. If called it will return an empty value.",
              "value": { "type": "any", "default": "null" }
            },
            {
              "name": "delimiter",
              "description": "Determines the symbol which separates the dates.\nIf not supplied, the default time interval delimiter for the current locale will be used.",
              "value": { "type": "string", "default": "\"-\"" }
            },
            {
              "name": "disabled",
              "description": "Determines whether the component is displayed as disabled.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "display-format",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "end-date-value",
              "description": "Returns the end date of the currently selected range as JavaScript Date instance.",
              "value": { "type": "any", "default": "null" }
            },
            {
              "name": "format-pattern",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "hide-week-numbers",
              "description": "Defines the visibility of the week numbers column.\n\n**Note:** For calendars other than Gregorian,\nthe week numbers are not displayed regardless of what is set.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "max-date",
              "description": "Determines the maximum date available for selection.\n\n**Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "min-date",
              "description": "Determines the minimum date available for selection.\n\n**Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "open",
              "description": "Defines the open or closed state of the popover.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "placeholder",
              "description": "Defines a short hint, intended to aid the user with data entry when the\ncomponent has no value.\n\n**Note:** When no placeholder is set, the format pattern is displayed as a placeholder.\nPassing an empty string as the value of this property will make the component appear empty - without placeholder or format pattern.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "primary-calendar-type",
              "description": "Sets a calendar type used for display.\nIf not set, the calendar type of the global configuration is used.",
              "value": {
                "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "readonly",
              "description": "Determines whether the component is displayed as read-only.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "secondary-calendar-type",
              "description": "Defines the secondary calendar type.\nIf not set, the calendar will only show the primary calendar type.",
              "value": {
                "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "show-clear-icon",
              "description": "Defines whether the clear icon of the input will be shown.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-two-months",
              "description": "Defines whether the component displays two months side by side in the picker popup.\n\nWhen enabled, two consecutive months are shown, making it easier to select date ranges\nthat span multiple months without the need to navigate between months.\n\n**Note:** On mobile devices only a single month\nwill be displayed regardless of this setting.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "start-date-value",
              "description": "Returns the start date of the currently selected range as JavaScript Date instance.",
              "value": { "type": "any", "default": "null" }
            },
            {
              "name": "value",
              "description": "Defines a formatted date value.",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "value-format",
              "description": "Determines the format, used for the value attribute.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "valueStateMessage",
              "description": "Defines the value state message that will be displayed as pop up under the component.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state."
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the input operation has finished by pressing Enter or on focusout."
            },
            {
              "name": "close",
              "description": "Fired after the component's picker is closed."
            },
            {
              "name": "input",
              "description": "Fired when the value of the component is changed at each key stroke."
            },
            {
              "name": "open",
              "description": "Fired after the component's picker is opened."
            },
            {
              "name": "value-state-change",
              "description": "Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Receives id(or many ids) of the elements that describe the input.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the aria-label attribute for the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "calendar-week-numbering",
                "description": "Defines how to calculate calendar weeks and first day of the week.\nIf not set, the calendar will be displayed according to the currently set global configuration.",
                "value": {
                  "type": "\"Default\" | \"ISO_8601\" | \"MiddleEastern\" | \"WesternTraditional\""
                }
              },
              {
                "name": "date-value",
                "description": "**Note:** The getter method is inherited and not supported. If called it will return an empty value.",
                "value": { "type": "any" }
              },
              {
                "name": "date-value-async",
                "description": "Promise that resolves to the currently selected date represented as a Local JavaScript Date instance.",
                "value": { "type": "any" }
              },
              {
                "name": "date-value-utc",
                "description": "**Note:** The getter method is inherited and not supported. If called it will return an empty value.",
                "value": { "type": "any" }
              },
              {
                "name": "delimiter",
                "description": "Determines the symbol which separates the dates.\nIf not supplied, the default time interval delimiter for the current locale will be used.",
                "value": { "type": "string" }
              },
              {
                "name": "disabled",
                "description": "Determines whether the component is displayed as disabled.",
                "value": { "type": "boolean" }
              },
              {
                "name": "display-format",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "end-date-value",
                "description": "Returns the end date of the currently selected range as JavaScript Date instance.",
                "value": { "type": "any" }
              },
              {
                "name": "format-pattern",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "hide-week-numbers",
                "description": "Defines the visibility of the week numbers column.\n\n**Note:** For calendars other than Gregorian,\nthe week numbers are not displayed regardless of what is set.",
                "value": { "type": "boolean" }
              },
              {
                "name": "max-date",
                "description": "Determines the maximum date available for selection.\n\n**Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).",
                "value": { "type": "string" }
              },
              {
                "name": "min-date",
                "description": "Determines the minimum date available for selection.\n\n**Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).",
                "value": { "type": "string" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "open",
                "description": "Defines the open or closed state of the popover.",
                "value": { "type": "boolean" }
              },
              {
                "name": "placeholder",
                "description": "Defines a short hint, intended to aid the user with data entry when the\ncomponent has no value.\n\n**Note:** When no placeholder is set, the format pattern is displayed as a placeholder.\nPassing an empty string as the value of this property will make the component appear empty - without placeholder or format pattern.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "primary-calendar-type",
                "description": "Sets a calendar type used for display.\nIf not set, the calendar type of the global configuration is used.",
                "value": {
                  "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined"
                }
              },
              {
                "name": "readonly",
                "description": "Determines whether the component is displayed as read-only.",
                "value": { "type": "boolean" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.",
                "value": { "type": "boolean" }
              },
              {
                "name": "secondary-calendar-type",
                "description": "Defines the secondary calendar type.\nIf not set, the calendar will only show the primary calendar type.",
                "value": {
                  "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined"
                }
              },
              {
                "name": "show-clear-icon",
                "description": "Defines whether the clear icon of the input will be shown.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-two-months",
                "description": "Defines whether the component displays two months side by side in the picker popup.\n\nWhen enabled, two consecutive months are shown, making it easier to select date ranges\nthat span multiple months without the need to navigate between months.\n\n**Note:** On mobile devices only a single month\nwill be displayed regardless of this setting.",
                "value": { "type": "boolean" }
              },
              {
                "name": "start-date-value",
                "description": "Returns the start date of the currently selected range as JavaScript Date instance.",
                "value": { "type": "any" }
              },
              {
                "name": "value",
                "description": "Defines a formatted date value.",
                "value": { "type": "string" }
              },
              {
                "name": "value-format",
                "description": "Determines the format, used for the value attribute.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the input operation has finished by pressing Enter or on focusout."
              },
              {
                "name": "close",
                "description": "Fired after the component's picker is closed."
              },
              {
                "name": "input",
                "description": "Fired when the value of the component is changed at each key stroke."
              },
              {
                "name": "open",
                "description": "Fired after the component's picker is opened."
              },
              {
                "name": "value-state-change",
                "description": "Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state."
              }
            ]
          }
        },
        {
          "name": "ui5-datetime-input",
          "description": "Extention of the UI5 Input, so we do not modify Input's private properties within the datetime components.\nIntended to be used for the DateTime components.\n---\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter or on focusout.\n- **close** - Fired when the suggestions picker is closed.\n- **input** - Fired when the value of the component changes at each keystroke,\nand when a suggestion item has been selected.\n- **open** - Fired when the suggestions picker is open.\n- **select** - Fired when some text has been selected.\n- **selection-change** - Fired when the user navigates to a suggestion item via the ARROW keys,\nas a preview, before the final selection.\n\n### **Slots:**\n - **default** - Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.\n\n**Note:** Input with type `Number` does not support suggestions.\n- **icon** - Defines the icon to be displayed in the component.\n- **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.\n\n**Note:** If the component has `suggestionItems`,\nthe `valueStateMessage` would be displayed as part of the same popover, if used on desktop, or dialog - on phone.\n\n### **CSS Parts:**\n - **clear-icon** - Used to style the clear icon, which can be pressed to clear user input text\n- **input** - Used to style the native input element\n- **root** - Used to style the root DOM element of the Input component",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Receives id(or many ids) of the elements that describe the input.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the input.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is in disabled state.\n\n**Note:** A disabled component is completely noninteractive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "filter",
              "description": "Defines the filter type of the component.",
              "value": {
                "type": "\"None\" | \"StartsWithPerTerm\" | \"StartsWith\" | \"Contains\"",
                "default": "\"None\""
              }
            },
            {
              "name": "maxlength",
              "description": "Sets the maximum number of characters available in the input field.\n\n**Note:** This property is not compatible with the ui5-input type InputType.Number. If the ui5-input type is set to Number, the maxlength value is ignored.",
              "value": { "type": "number | undefined", "default": "undefined" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "no-typeahead",
              "description": "Defines whether the value will be autcompleted to match an item",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "open",
              "description": "Defines whether the suggestions picker is open.\nThe picker will not open if the `showSuggestions` property is set to `false`, the input is disabled or the input is readonly.\nThe picker will close automatically and `close` event will be fired if the input is not in the viewport.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "placeholder",
              "description": "Defines a short hint intended to aid the user with data entry when the\ncomponent has no value.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "readonly",
              "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-clear-icon",
              "description": "Defines whether the clear icon of the input will be shown.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-suggestions",
              "description": "Defines whether the component should show suggestions, if such are present.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "type",
              "description": "Defines the HTML type of the component.\n\n**Notes:**\n\n- The particular effect of this property differs depending on the browser\nand the current language settings, especially for type `Number`.\n- The property is mostly intended to be used with touch devices\nthat use different soft keyboard layouts depending on the given input type.\n- Type `Number` does not support suggestions.",
              "value": {
                "type": "\"Text\" | \"Email\" | \"Number\" | \"Password\" | \"Tel\" | \"URL\" | \"Search\"",
                "default": "\"Text\""
              }
            },
            {
              "name": "value",
              "description": "Defines the value of the component.\n\n**Note:** The property is updated upon typing.",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.\n\n**Note:** Input with type `Number` does not support suggestions."
            },
            {
              "name": "icon",
              "description": "Defines the icon to be displayed in the component."
            },
            {
              "name": "valueStateMessage",
              "description": "Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.\n\n**Note:** If the component has `suggestionItems`,\nthe `valueStateMessage` would be displayed as part of the same popover, if used on desktop, or dialog - on phone."
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the input operation has finished by pressing Enter or on focusout."
            },
            {
              "name": "close",
              "description": "Fired when the suggestions picker is closed."
            },
            {
              "name": "input",
              "description": "Fired when the value of the component changes at each keystroke,\nand when a suggestion item has been selected."
            },
            {
              "name": "open",
              "description": "Fired when the suggestions picker is open."
            },
            {
              "name": "select",
              "description": "Fired when some text has been selected."
            },
            {
              "name": "selection-change",
              "description": "Fired when the user navigates to a suggestion item via the ARROW keys,\nas a preview, before the final selection."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Receives id(or many ids) of the elements that describe the input.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the input.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is in disabled state.\n\n**Note:** A disabled component is completely noninteractive.",
                "value": { "type": "boolean" }
              },
              {
                "name": "filter",
                "description": "Defines the filter type of the component.",
                "value": {
                  "type": "\"None\" | \"StartsWithPerTerm\" | \"StartsWith\" | \"Contains\""
                }
              },
              {
                "name": "maxlength",
                "description": "Sets the maximum number of characters available in the input field.\n\n**Note:** This property is not compatible with the ui5-input type InputType.Number. If the ui5-input type is set to Number, the maxlength value is ignored.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "no-typeahead",
                "description": "Defines whether the value will be autcompleted to match an item",
                "value": { "type": "boolean" }
              },
              {
                "name": "open",
                "description": "Defines whether the suggestions picker is open.\nThe picker will not open if the `showSuggestions` property is set to `false`, the input is disabled or the input is readonly.\nThe picker will close automatically and `close` event will be fired if the input is not in the viewport.",
                "value": { "type": "boolean" }
              },
              {
                "name": "placeholder",
                "description": "Defines a short hint intended to aid the user with data entry when the\ncomponent has no value.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "readonly",
                "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
                "value": { "type": "boolean" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-clear-icon",
                "description": "Defines whether the clear icon of the input will be shown.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-suggestions",
                "description": "Defines whether the component should show suggestions, if such are present.",
                "value": { "type": "boolean" }
              },
              {
                "name": "type",
                "description": "Defines the HTML type of the component.\n\n**Notes:**\n\n- The particular effect of this property differs depending on the browser\nand the current language settings, especially for type `Number`.\n- The property is mostly intended to be used with touch devices\nthat use different soft keyboard layouts depending on the given input type.\n- Type `Number` does not support suggestions.",
                "value": {
                  "type": "\"Text\" | \"Email\" | \"Number\" | \"Password\" | \"Tel\" | \"URL\" | \"Search\""
                }
              },
              {
                "name": "value",
                "description": "Defines the value of the component.\n\n**Note:** The property is updated upon typing.",
                "value": { "type": "string" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the input operation has finished by pressing Enter or on focusout."
              },
              {
                "name": "close",
                "description": "Fired when the suggestions picker is closed."
              },
              {
                "name": "input",
                "description": "Fired when the value of the component changes at each keystroke,\nand when a suggestion item has been selected."
              },
              {
                "name": "open",
                "description": "Fired when the suggestions picker is open."
              },
              {
                "name": "select",
                "description": "Fired when some text has been selected."
              },
              {
                "name": "selection-change",
                "description": "Fired when the user navigates to a suggestion item via the ARROW keys,\nas a preview, before the final selection."
              }
            ]
          }
        },
        {
          "name": "ui5-datetime-picker",
          "description": "### Overview\nThe `DateTimePicker` component alows users to select both date (day, month and year) and time (hours, minutes and seconds)\nand for the purpose it consists of input field and Date/Time picker.\n\n### Usage\n\nUse the `DateTimePicker` if you need a combined date and time input component.\nDon't use it if you want to use either date, or time value.\nIn this case, use the `DatePicker` or the `TimePicker` components instead.\n\nThe user can set date/time by:\n\n- using the calendar and the time selectors\n- typing in the input field\n\nProgrammatically, to set date/time for the `DateTimePicker`, use the `value` property\n\n### Formatting\n\nThe value entered by typing into the input field must fit to the used date/time format.\n\nSupported format options are pattern-based on Unicode LDML Date Format notation.\nFor more information, see [UTS #35: Unicode Locale Data Markup Language](https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table).\n\n**Example:** the following format `dd/MM/yyyy, hh:mm:ss aa`\ncorresponds the `13/04/2020, 03:16:16 AM` value.\n\nThe small 'h' defines \"12\" hours format and the \"aa\" symbols - \"AM/PM\" time periods.\n\n**Example:** the following format `dd/MM/yyyy, HH:mm:ss`\ncorresponds the `13/04/2020, 15:16:16` value.\n\nThe capital 'H' indicates \"24\" hours format.\n\n**Note:** If the `formatPattern` does NOT include time,\nthe `DateTimePicker` will fallback to the default time format according to the locale.\n\n**Note:** If no placeholder is set to the `DateTimePicker`,\nthe current `formatPattern` is displayed as a placeholder.\nIf another placeholder is needed, it must be set or in case no placeholder is needed - it can be set to an empty string.\n\n**Note:** If the user input does NOT match the `formatPattern`,\nthe `DateTimePicker` makes an attempt to parse it based on the\nlocale settings.\n\n### Responsive behavior\n\nThe `DateTimePicker` is responsive and fully adapts to all devices.\nFor larger screens, such as tablet or desktop, it is displayed as a popover, while\non phone devices, it is displayed full screen.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/DateTimePicker.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter or on focusout.\n- **close** - Fired after the component's picker is closed.\n- **input** - Fired when the value of the component is changed at each key stroke.\n- **open** - Fired after the component's picker is opened.\n- **value-state-change** - Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state.\n\n### **Methods:**\n - **formatValue(date: _Date_): _string_** - Formats a Java Script date object into a string representing a locale date\naccording to the `formatPattern` property of the DatePicker instance\n- **isInValidRange(value: _string_): _boolean_** - Checks if a date is between the minimum and maximum date.\n- **isValid(value: _string_): _boolean_** - @deprecated Use isValidValue or isValidDisplayValue instead - Checks if a value is valid against the current date format of the DatePicker.\n- **isValidDisplayValue(value: _string_): _boolean_** - Checks if a value is valid against the current date format of the DatePicker.\n- **isValidValue(value: _string_): _boolean_** - Checks if a value is valid against the current date format of the DatePicker.\n\n### **Slots:**\n - **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.\n\n### **CSS Parts:**\n - **input** - Used to style the input element. This part is forwarded to the underlying ui5-input element.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Receives id(or many ids) of the elements that describe the input.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the aria-label attribute for the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "calendar-week-numbering",
              "description": "Defines how to calculate calendar weeks and first day of the week.\nIf not set, the calendar will be displayed according to the currently set global configuration.",
              "value": {
                "type": "\"Default\" | \"ISO_8601\" | \"MiddleEastern\" | \"WesternTraditional\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "date-value",
              "description": "Currently selected date represented as a Local JavaScript Date instance.\nNote: this getter can only be reliably used after the component is fully defined. Use dateValueAsync which resolves only when this condition is met.",
              "value": { "type": "any", "default": "null" }
            },
            {
              "name": "date-value-async",
              "description": "Promise that resolves to the currently selected date represented as a Local JavaScript Date instance.",
              "value": { "type": "any", "default": "Promise" }
            },
            {
              "name": "disabled",
              "description": "Determines whether the component is displayed as disabled.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "display-format",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "format-pattern",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "hide-week-numbers",
              "description": "Defines the visibility of the week numbers column.\n\n**Note:** For calendars other than Gregorian,\nthe week numbers are not displayed regardless of what is set.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "max-date",
              "description": "Determines the maximum date available for selection.\n\n**Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "min-date",
              "description": "Determines the minimum date available for selection.\n\n**Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "open",
              "description": "Defines the open or closed state of the popover.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "placeholder",
              "description": "Defines a short hint, intended to aid the user with data entry when the\ncomponent has no value.\n\n**Note:** When no placeholder is set, the format pattern is displayed as a placeholder.\nPassing an empty string as the value of this property will make the component appear empty - without placeholder or format pattern.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "primary-calendar-type",
              "description": "Sets a calendar type used for display.\nIf not set, the calendar type of the global configuration is used.",
              "value": {
                "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "readonly",
              "description": "Determines whether the component is displayed as read-only.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "secondary-calendar-type",
              "description": "Defines the secondary calendar type.\nIf not set, the calendar will only show the primary calendar type.",
              "value": {
                "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "show-clear-icon",
              "description": "Defines whether the clear icon of the input will be shown.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "value",
              "description": "Defines a formatted date value.",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "value-format",
              "description": "Determines the format, used for the value attribute.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "valueStateMessage",
              "description": "Defines the value state message that will be displayed as pop up under the component.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state."
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the input operation has finished by pressing Enter or on focusout."
            },
            {
              "name": "close",
              "description": "Fired after the component's picker is closed."
            },
            {
              "name": "input",
              "description": "Fired when the value of the component is changed at each key stroke."
            },
            {
              "name": "open",
              "description": "Fired after the component's picker is opened."
            },
            {
              "name": "value-state-change",
              "description": "Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Receives id(or many ids) of the elements that describe the input.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the aria-label attribute for the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "calendar-week-numbering",
                "description": "Defines how to calculate calendar weeks and first day of the week.\nIf not set, the calendar will be displayed according to the currently set global configuration.",
                "value": {
                  "type": "\"Default\" | \"ISO_8601\" | \"MiddleEastern\" | \"WesternTraditional\""
                }
              },
              {
                "name": "date-value",
                "description": "Currently selected date represented as a Local JavaScript Date instance.\nNote: this getter can only be reliably used after the component is fully defined. Use dateValueAsync which resolves only when this condition is met.",
                "value": { "type": "any" }
              },
              {
                "name": "date-value-async",
                "description": "Promise that resolves to the currently selected date represented as a Local JavaScript Date instance.",
                "value": { "type": "any" }
              },
              {
                "name": "disabled",
                "description": "Determines whether the component is displayed as disabled.",
                "value": { "type": "boolean" }
              },
              {
                "name": "display-format",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "format-pattern",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "hide-week-numbers",
                "description": "Defines the visibility of the week numbers column.\n\n**Note:** For calendars other than Gregorian,\nthe week numbers are not displayed regardless of what is set.",
                "value": { "type": "boolean" }
              },
              {
                "name": "max-date",
                "description": "Determines the maximum date available for selection.\n\n**Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).",
                "value": { "type": "string" }
              },
              {
                "name": "min-date",
                "description": "Determines the minimum date available for selection.\n\n**Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).",
                "value": { "type": "string" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "open",
                "description": "Defines the open or closed state of the popover.",
                "value": { "type": "boolean" }
              },
              {
                "name": "placeholder",
                "description": "Defines a short hint, intended to aid the user with data entry when the\ncomponent has no value.\n\n**Note:** When no placeholder is set, the format pattern is displayed as a placeholder.\nPassing an empty string as the value of this property will make the component appear empty - without placeholder or format pattern.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "primary-calendar-type",
                "description": "Sets a calendar type used for display.\nIf not set, the calendar type of the global configuration is used.",
                "value": {
                  "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined"
                }
              },
              {
                "name": "readonly",
                "description": "Determines whether the component is displayed as read-only.",
                "value": { "type": "boolean" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.",
                "value": { "type": "boolean" }
              },
              {
                "name": "secondary-calendar-type",
                "description": "Defines the secondary calendar type.\nIf not set, the calendar will only show the primary calendar type.",
                "value": {
                  "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined"
                }
              },
              {
                "name": "show-clear-icon",
                "description": "Defines whether the clear icon of the input will be shown.",
                "value": { "type": "boolean" }
              },
              {
                "name": "value",
                "description": "Defines a formatted date value.",
                "value": { "type": "string" }
              },
              {
                "name": "value-format",
                "description": "Determines the format, used for the value attribute.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the input operation has finished by pressing Enter or on focusout."
              },
              {
                "name": "close",
                "description": "Fired after the component's picker is closed."
              },
              {
                "name": "input",
                "description": "Fired when the value of the component is changed at each key stroke."
              },
              {
                "name": "open",
                "description": "Fired after the component's picker is opened."
              },
              {
                "name": "value-state-change",
                "description": "Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state."
              }
            ]
          }
        },
        {
          "name": "ui5-daypicker",
          "description": "Represents the days inside a single month view of the `ui5-calendar` component.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "calendar-week-numbering",
              "description": "Defines how to calculate calendar weeks and first day of the week.\nIf not set, the calendar will be displayed according to the currently set global configuration.",
              "value": {
                "type": "\"Default\" | \"ISO_8601\" | \"MiddleEastern\" | \"WesternTraditional\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "display-format",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "format-pattern",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "max-date",
              "description": "Determines the maximum date available for selection.\n\n**Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "min-date",
              "description": "Determines the minimum date available for selection.\n\n**Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "primary-calendar-type",
              "description": "Sets a calendar type used for display.\nIf not set, the calendar type of the global configuration is used.",
              "value": {
                "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "secondary-calendar-type",
              "description": "Defines the secondary calendar type.\nIf not set, the calendar will only show the primary calendar type.",
              "value": {
                "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "value-format",
              "description": "Determines the format, used for the value attribute.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "calendar-week-numbering",
                "description": "Defines how to calculate calendar weeks and first day of the week.\nIf not set, the calendar will be displayed according to the currently set global configuration.",
                "value": {
                  "type": "\"Default\" | \"ISO_8601\" | \"MiddleEastern\" | \"WesternTraditional\""
                }
              },
              {
                "name": "display-format",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "format-pattern",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "max-date",
                "description": "Determines the maximum date available for selection.\n\n**Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).",
                "value": { "type": "string" }
              },
              {
                "name": "min-date",
                "description": "Determines the minimum date available for selection.\n\n**Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).",
                "value": { "type": "string" }
              },
              {
                "name": "primary-calendar-type",
                "description": "Sets a calendar type used for display.\nIf not set, the calendar type of the global configuration is used.",
                "value": {
                  "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined"
                }
              },
              {
                "name": "secondary-calendar-type",
                "description": "Defines the secondary calendar type.\nIf not set, the calendar will only show the primary calendar type.",
                "value": {
                  "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined"
                }
              },
              {
                "name": "value-format",
                "description": "Determines the format, used for the value attribute.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-dialog",
          "description": "### Overview\nThe `ui5-dialog` component is used to temporarily display some information in a\nsize-limited window in front of the regular app screen.\nIt is used to prompt the user for an action or a confirmation.\nThe `ui5-dialog` interrupts the current app processing as it is the only focused UI element and\nthe main screen is dimmed/blocked.\nThe dialog combines concepts known from other technologies where the windows have\nnames such as dialog box, dialog window, pop-up, pop-up window, alert box, or message box.\n\nThe `ui5-dialog` is modal, which means that a user action is required before it is possible to return to the parent window.\nTo open multiple dialogs, each dialog element should be separate in the markup. This will ensure the correct modal behavior. Avoid nesting dialogs within each other.\nThe content of the `ui5-dialog` is fully customizable.\n\n### Structure\nA `ui5-dialog` consists of a header, content, and a footer for action buttons.\nThe `ui5-dialog` is usually displayed at the center of the screen.\nIts position can be changed by the user. To enable this, you need to set the property `draggable` accordingly.\n\n\n### Responsive Behavior\nThe `stretch` property can be used to stretch the `ui5-dialog` to full screen. For better usability, it's recommended to stretch the dialog to full screen on phone devices.\n\n**Note:** When a `ui5-bar` is used in the header or in the footer, you should remove the default dialog's paddings.\n\nFor more information see the sample \"Bar in Header/Footer\".\n\n### Keyboard Handling\n\n#### Basic Navigation\nWhen the `ui5-dialog` has the `draggable` property set to `true` and the header is focused, the user can move the dialog\nwith the following keyboard shortcuts:\n\n- [Up] or [Down] arrow keys - Move the dialog up/down.\n- [Left] or [Right] arrow keys - Move the dialog left/right.\n\n#### Resizing\nWhen the `ui5-dialog` has the `resizable` property set to `true` and the header is focused, the user can change the size of the dialog\nwith the following keyboard shortcuts:\n\n- [Shift] + [Up] or [Down] - Decrease/Increase the height of the dialog.\n- [Shift] + [Left] or [Right] - Decrease/Increase the width of the dialog.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Dialog\";`\n---\n\n\n### **Events:**\n - **before-close** - Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing.\n- **before-open** - Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening.\n- **close** - Fired after the component is closed.\n- **open** - Fired after the component is opened.\n\n### **Methods:**\n - **applyFocus(): _Promise<void>_** - Focuses the element denoted by `initialFocus`, if provided,\nor the first focusable element otherwise.\n\n### **Slots:**\n - **default** - Defines the content of the Popup.\n- **footer** - Defines the footer HTML Element.\n- **header** - Defines the header HTML Element.\n\n**Note:** If `header` slot is provided, the labelling of the dialog is a responsibility of the application developer.\n`accessibleName` should be used.\n\n### **CSS Parts:**\n - **content** - Used to style the content of the component\n- **footer** - Used to style the footer of the component\n- **header** - Used to style the header of the component",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Receives id(or many ids) of the elements that describe the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Defines the IDs of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-role",
              "description": "Allows setting a custom role.",
              "value": {
                "type": "\"None\" | \"Dialog\" | \"AlertDialog\"",
                "default": "\"Dialog\""
              }
            },
            {
              "name": "draggable",
              "description": "Determines whether the component is draggable.\nIf this property is set to true, the Dialog will be draggable by its header.\n\n**Note:** The component can be draggable only in desktop mode.\n\n**Note:** This property overrides the default HTML \"draggable\" attribute native behavior.\nWhen \"draggable\" is set to true, the native browser \"draggable\"\nbehavior is prevented and only the Dialog custom logic (\"draggable by its header\") works.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "header-text",
              "description": "Defines the header text.\n\n**Note:** If `header` slot is provided, the `headerText` is ignored.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "initial-focus",
              "description": "Defines the ID of the HTML Element, which will get the initial focus.\n\n**Note:** If an element with `autofocus` attribute is added inside the component,\n`initialFocus` won't take effect.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "open",
              "description": "Indicates if the element is open",
              "value": { "type": "any", "default": "false" }
            },
            {
              "name": "prevent-focus-restore",
              "description": "Defines if the focus should be returned to the previously focused element,\nwhen the popup closes.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "prevent-initial-focus",
              "description": "Indicates whether initial focus should be prevented.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "resizable",
              "description": "Configures the component to be resizable.\nIf this property is set to true, the Dialog will have a resize handle in its bottom right corner in LTR languages.\nIn RTL languages, the resize handle will be placed in the bottom left corner.\n\n**Note:** The component can be resizable only in desktop mode.\n\n**Note:** Upon resizing, externally defined height and width styling will be ignored.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "state",
              "description": "Defines the state of the `Dialog`.\n\n**Note:** If `\"Negative\"` and `\"Critical\"` states is set, it will change the\naccessibility role to \"alertdialog\", if the accessibleRole property is set to `\"Dialog\"`.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            },
            {
              "name": "stretch",
              "description": "Determines if the dialog will be stretched to full screen on mobile. On desktop,\nthe dialog will be stretched to approximately 90% of the viewport.\n\n**Note:** For better usability of the component it is recommended to set this property to \"true\" when the dialog is opened on phone.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the content of the Popup."
            },
            {
              "name": "footer",
              "description": "Defines the footer HTML Element."
            },
            {
              "name": "header",
              "description": "Defines the header HTML Element.\n\n**Note:** If `header` slot is provided, the labelling of the dialog is a responsibility of the application developer.\n`accessibleName` should be used."
            }
          ],
          "events": [
            {
              "name": "before-close",
              "description": "Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing."
            },
            {
              "name": "before-open",
              "description": "Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening."
            },
            {
              "name": "close",
              "description": "Fired after the component is closed."
            },
            {
              "name": "open",
              "description": "Fired after the component is opened."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Receives id(or many ids) of the elements that describe the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Defines the IDs of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-role",
                "description": "Allows setting a custom role.",
                "value": { "type": "\"None\" | \"Dialog\" | \"AlertDialog\"" }
              },
              {
                "name": "draggable",
                "description": "Determines whether the component is draggable.\nIf this property is set to true, the Dialog will be draggable by its header.\n\n**Note:** The component can be draggable only in desktop mode.\n\n**Note:** This property overrides the default HTML \"draggable\" attribute native behavior.\nWhen \"draggable\" is set to true, the native browser \"draggable\"\nbehavior is prevented and only the Dialog custom logic (\"draggable by its header\") works.",
                "value": { "type": "boolean" }
              },
              {
                "name": "header-text",
                "description": "Defines the header text.\n\n**Note:** If `header` slot is provided, the `headerText` is ignored.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "initial-focus",
                "description": "Defines the ID of the HTML Element, which will get the initial focus.\n\n**Note:** If an element with `autofocus` attribute is added inside the component,\n`initialFocus` won't take effect.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "open",
                "description": "Indicates if the element is open",
                "value": { "type": "any" }
              },
              {
                "name": "prevent-focus-restore",
                "description": "Defines if the focus should be returned to the previously focused element,\nwhen the popup closes.",
                "value": { "type": "boolean" }
              },
              {
                "name": "prevent-initial-focus",
                "description": "Indicates whether initial focus should be prevented.",
                "value": { "type": "boolean" }
              },
              {
                "name": "resizable",
                "description": "Configures the component to be resizable.\nIf this property is set to true, the Dialog will have a resize handle in its bottom right corner in LTR languages.\nIn RTL languages, the resize handle will be placed in the bottom left corner.\n\n**Note:** The component can be resizable only in desktop mode.\n\n**Note:** Upon resizing, externally defined height and width styling will be ignored.",
                "value": { "type": "boolean" }
              },
              {
                "name": "state",
                "description": "Defines the state of the `Dialog`.\n\n**Note:** If `\"Negative\"` and `\"Critical\"` states is set, it will change the\naccessibility role to \"alertdialog\", if the accessibleRole property is set to `\"Dialog\"`.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              },
              {
                "name": "stretch",
                "description": "Determines if the dialog will be stretched to full screen on mobile. On desktop,\nthe dialog will be stretched to approximately 90% of the viewport.\n\n**Note:** For better usability of the component it is recommended to set this property to \"true\" when the dialog is opened on phone.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "before-close",
                "description": "Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing."
              },
              {
                "name": "before-open",
                "description": "Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening."
              },
              {
                "name": "close",
                "description": "Fired after the component is closed."
              },
              {
                "name": "open",
                "description": "Fired after the component is opened."
              }
            ]
          }
        },
        {
          "name": "ui5-drop-indicator",
          "description": "### Overview\n\n### Usage\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/DropIndicator.js\";`\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "orientation",
              "description": "Orientation of the indicator.",
              "value": {
                "type": "\"Vertical\" | \"Horizontal\"",
                "default": "\"Vertical\""
              }
            },
            {
              "name": "owner-reference",
              "description": "Owner of the indicator and the target.",
              "value": { "type": "HTMLElement | null", "default": "null" }
            },
            {
              "name": "placement",
              "description": "Placement of the indicator relative to the target.",
              "value": {
                "type": "\"On\" | \"Before\" | \"After\"",
                "default": "\"Before\""
              }
            },
            {
              "name": "target-reference",
              "description": "Element where the drop indicator will be shown.",
              "value": { "type": "HTMLElement | null", "default": "null" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "orientation",
                "description": "Orientation of the indicator.",
                "value": { "type": "\"Vertical\" | \"Horizontal\"" }
              },
              {
                "name": "owner-reference",
                "description": "Owner of the indicator and the target.",
                "value": { "type": "HTMLElement | null" }
              },
              {
                "name": "placement",
                "description": "Placement of the indicator relative to the target.",
                "value": { "type": "\"On\" | \"Before\" | \"After\"" }
              },
              {
                "name": "target-reference",
                "description": "Element where the drop indicator will be shown.",
                "value": { "type": "HTMLElement | null" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-dynamic-date-range",
          "description": "### Overview\n\nThe `ui5-dynamic-date-range` component provides a flexible interface to define date ranges using a combination of absolute dates, relative intervals, and preset ranges (e.g., \"Today\", \"Yesterday\", etc.).\nIt allows users to select a date range from a predefined set of options or enter custom dates.\n\n### Usage\n\nThe component is typically used in scenarios where users need to filter data based on date ranges, such as in reports, dashboards, or data analysis tools.\nIt can be used with the predefined options or extended with custom options to suit specific requirements. You can create your own options by extending the `IDynamicDateRangeOption` interface.\nEvery option should be registered using the `DynamicDateRange.register` method.\n\nIf needed, you can also create a range of dates based on specific option using the `toDates` method.\n\n### Standard Options\n\nThe component comes with a set of standard options, including:\n- \"TODAY\" - Represents the current date. An example value is `{ operator: \"TODAY\"}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/Today.js\";`\n- \"YESTERDAY\" - Represents the previous date. An example value is `{ operator: \"YESTERDAY\"}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/Yesterday.js\";`\n- \"TOMORROW\" - Represents the next date. An example value is `{ operator: \"TOMORROW\"}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/Tomorrow.js\";`\n- \"DATE\" - Represents a single date. An example value is `{ operator: \"DATE\", values: [new Date()]}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/SingleDate.js\";`\n- \"DATERANGE\" - Represents a range of dates. An example value is `{ operator: \"DATERANGE\", values: [new Date(), new Date()]}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/DateRange.js\";`\n- \"DATETIMERANGE\" - Represents a range of dates with times. An example value is `{ operator: \"DATETIMERANGE\", values: [new Date(), new Date()]}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/DateTimeRange.js\";`\n- \"FROMDATETIME\" - Represents a range from date and time. An example value is `{ operator: \"FROMDATETIME\", values: [new Date()]}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/FromDateTime.js\";`\n- \"TODATETIME\" - Represents a range to date and time. An example value is `{ operator: \"TODATETIME\", values: [new Date()]}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/ToDateTime.js\";`\n- \"LASTDAYS\" - Represents Last X Days from today. An example value is `{ operator: \"LASTDAYS\", values: [2]}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/LastOptions.js\";`\n- \"LASTWEEKS\" - Represents Last X Weeks from today. An example value is `{ operator: \"LASTWEEKS\", values: [3]}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/LastOptions.js\";`\n- \"LASTMONTHS\" - Represents Last X Months from today. An example value is `{ operator: \"LASTMONTHS\", values: [6]}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/LastOptions.js\";`\n- \"LASTQUARTERS\" - Represents Last X Quarters from today. An example value is `{ operator: \"LASTQUARTERS\", values: [2]}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/LastOptions.js\";`\n- \"LASTYEARS\" - Represents Last X Years from today. An example value is `{ operator: \"LASTYEARS\", values: [1]}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/LastOptions.js\";`\n- \"NEXTDAYS\" - Represents Next X Days from today. An example value is `{ operator: \"NEXTDAYS\", values: [2]}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/NextOptions.js\";`\n- \"NEXTWEEKS\" - Represents Next X Weeks from today. An example value is `{ operator: \"NEXTWEEKS\", values: [3]}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/NextOptions.js\";`\n- \"NEXTMONTHS\" - Represents Next X Months from today. An example value is `{ operator: \"NEXTMONTHS\", values: [6]}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/NextOptions.js\";`\n- \"NEXTQUARTERS\" - Represents Next X Quarters from today. An example value is `{ operator: \"NEXTQUARTERS\", values: [2]}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/NextOptions.js\";`\n- \"NEXTYEARS\" - Represents Next X Years from today. An example value is `{ operator: \"NEXTYEARS\", values: [1]}`. Import: `import \"@ui5/webcomponents/dist/dynamic-date-range-options/NextOptions.js\";`\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/DynamicDateRange.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter or on focusout or a value is selected in the popover.\n\n### **Methods:**\n - **toDates(value: _DynamicDateRangeValue_): _Array<Date>_** - Converts a `value` into concrete `startDate` and `endDate` JavaScript `Date` objects.",
          "doc-url": "",
          "attributes": [
            {
              "name": "options",
              "description": "Defines the options listed as a string, separated by commas and using capital case.\nExample: \"TODAY, YESTERDAY, DATERANGE\"",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "value",
              "description": "Defines the value object.",
              "value": {
                "type": "DynamicDateRangeValue | undefined",
                "default": "undefined"
              }
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the input operation has finished by pressing Enter or on focusout or a value is selected in the popover."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "options",
                "description": "Defines the options listed as a string, separated by commas and using capital case.\nExample: \"TODAY, YESTERDAY, DATERANGE\"",
                "value": { "type": "string" }
              },
              {
                "name": "value",
                "description": "Defines the value object.",
                "value": { "type": "DynamicDateRangeValue | undefined" }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the input operation has finished by pressing Enter or on focusout or a value is selected in the popover."
              }
            ]
          }
        },
        {
          "name": "ui5-expandable-text",
          "description": "### Overview\n\nThe `ui5-expandable-text` component allows displaying a large body of text in a small space. It provides an \"expand/collapse\" functionality, which shows/hides potentially truncated text.\n\n### Usage\n\n#### When to use:\n- To accommodate long texts in limited space, for example in list items, table cell texts, or forms\n\n#### When not to use:\n- The content is critical for the user. In this case use short descriptions that can fit in\n- Strive to provide short and meaningful texts to avoid excessive number of \"Show More\" links on the page\n\n### Responsive Behavior\n\nOn phones, if the component is configured to display the full text in a popover, the popover will appear in full screen.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/ExpandableText\";`\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "empty-indicator-mode",
              "description": "Specifies if an empty indicator should be displayed when there is no text.",
              "value": { "type": "\"On\" | \"Off\"", "default": "\"Off\"" }
            },
            {
              "name": "max-characters",
              "description": "Maximum number of characters to be displayed initially. If the text length exceeds this limit, the text will be truncated with an ellipsis, and the \"More\" link will be displayed.",
              "value": { "type": "number", "default": "100" }
            },
            {
              "name": "overflow-mode",
              "description": "Determines how the full text will be displayed.",
              "value": {
                "type": "\"InPlace\" | \"Popover\"",
                "default": "\"InPlace\""
              }
            },
            {
              "name": "text",
              "description": "Text of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "empty-indicator-mode",
                "description": "Specifies if an empty indicator should be displayed when there is no text.",
                "value": { "type": "\"On\" | \"Off\"" }
              },
              {
                "name": "max-characters",
                "description": "Maximum number of characters to be displayed initially. If the text length exceeds this limit, the text will be truncated with an ellipsis, and the \"More\" link will be displayed.",
                "value": { "type": "number" }
              },
              {
                "name": "overflow-mode",
                "description": "Determines how the full text will be displayed.",
                "value": { "type": "\"InPlace\" | \"Popover\"" }
              },
              {
                "name": "text",
                "description": "Text of the component.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-file-uploader",
          "description": "### Overview\n\nThe `ui5-file-uploader` opens a file explorer dialog and enables users to upload files.\nThe component consists of input field, but you can provide an HTML element by your choice\nto trigger the file upload, by using the default slot.\nFurthermore, you can set the property \"hideInput\" to \"true\" to hide the input field.\n\nTo get all selected files, you can simply use the read-only \"files\" property.\nTo restrict the types of files the user can select, you can use the \"accept\" property.\n\nAnd, similar to all input based components, the FileUploader supports \"valueState\", \"placeholder\", \"name\", and \"disabled\" properties.\n\nFor the `ui5-file-uploader`\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/FileUploader.js\";`\n---\n\n\n### **Events:**\n - **change** - Event is fired when the value of the file path has been changed.\n\n**Note:** Keep in mind that because of the HTML input element of type file, the event is also fired in Chrome browser when the Cancel button of the uploads window is pressed.\n- **file-size-exceed** - Event is fired when the size of a file is above the `maxFileSize` property value.\n\n### **Slots:**\n - **default** - This slot allows you to add custom content to the component, such as a button or any other interactive element to trigger the file selection dialog.\n\n**Note:** For best accessibility experience, set a `tabindex` of \"-1\" on your interactive element, or it will be set automatically.\nThis slot is intended for use cases where you want a button-only file uploader.\nIt is recommended to set `hideInput` property to \"true\" when using this slot.\nNot setting `hideInput` may negatively impact the screen reader users.\n- **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accept",
              "description": "Comma-separated list of file types that the component should accept.\n\n**Note:** Please make sure you are adding the `.` in front on the file type, e.g. `.png` in case you want to accept png's only.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Receives id(or many ids) of the elements that describe the input.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the input.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is in disabled state.\n\n**Note:** A disabled component is completely noninteractive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "files",
              "description": "FileList of all selected files.",
              "value": { "type": "any", "default": "null" }
            },
            {
              "name": "hide-input",
              "description": "If set to \"true\", the input field of component will not be rendered. Only the default slot that is passed will be rendered.\n\n**Note:** Use this property in combination with the default slot to achieve a button-only file uploader design.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "max-file-size",
              "description": "Defines the maximum file size in megabytes which prevents the upload if at least one file exceeds it.",
              "value": { "type": "number | undefined", "default": "undefined" }
            },
            {
              "name": "multiple",
              "description": "Allows multiple files to be chosen.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "placeholder",
              "description": "Defines a short hint intended to aid the user with data entry when the component has no value.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "value",
              "description": "Defines the name/names of the file/files to upload.",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "This slot allows you to add custom content to the component, such as a button or any other interactive element to trigger the file selection dialog.\n\n**Note:** For best accessibility experience, set a `tabindex` of \"-1\" on your interactive element, or it will be set automatically.\nThis slot is intended for use cases where you want a button-only file uploader.\nIt is recommended to set `hideInput` property to \"true\" when using this slot.\nNot setting `hideInput` may negatively impact the screen reader users."
            },
            {
              "name": "valueStateMessage",
              "description": "Defines the value state message that will be displayed as pop up under the component.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state."
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Event is fired when the value of the file path has been changed.\n\n**Note:** Keep in mind that because of the HTML input element of type file, the event is also fired in Chrome browser when the Cancel button of the uploads window is pressed."
            },
            {
              "name": "file-size-exceed",
              "description": "Event is fired when the size of a file is above the `maxFileSize` property value."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accept",
                "description": "Comma-separated list of file types that the component should accept.\n\n**Note:** Please make sure you are adding the `.` in front on the file type, e.g. `.png` in case you want to accept png's only.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Receives id(or many ids) of the elements that describe the input.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the input.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is in disabled state.\n\n**Note:** A disabled component is completely noninteractive.",
                "value": { "type": "boolean" }
              },
              {
                "name": "files",
                "description": "FileList of all selected files.",
                "value": { "type": "any" }
              },
              {
                "name": "hide-input",
                "description": "If set to \"true\", the input field of component will not be rendered. Only the default slot that is passed will be rendered.\n\n**Note:** Use this property in combination with the default slot to achieve a button-only file uploader design.",
                "value": { "type": "boolean" }
              },
              {
                "name": "max-file-size",
                "description": "Defines the maximum file size in megabytes which prevents the upload if at least one file exceeds it.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "multiple",
                "description": "Allows multiple files to be chosen.",
                "value": { "type": "boolean" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "placeholder",
                "description": "Defines a short hint intended to aid the user with data entry when the component has no value.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.",
                "value": { "type": "boolean" }
              },
              {
                "name": "value",
                "description": "Defines the name/names of the file/files to upload.",
                "value": { "type": "string" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Event is fired when the value of the file path has been changed.\n\n**Note:** Keep in mind that because of the HTML input element of type file, the event is also fired in Chrome browser when the Cancel button of the uploads window is pressed."
              },
              {
                "name": "file-size-exceed",
                "description": "Event is fired when the size of a file is above the `maxFileSize` property value."
              }
            ]
          }
        },
        {
          "name": "ui5-form",
          "description": "### Overview\n\nThe Form is a layout component that arranges labels and form fields (like input fields) pairs\ninto a specific number of columns.\n\n**Note:** The Form web component is a layout component, it isn't a replacement for the native `form` HTML element.\nThe Form web component does not provide any APIs for form submission.\n\n### Structure\n\n- **Form** (`ui5-form`) is the top-level container component, responsible for the content layout and responsiveness.\n- **FormGroup** (`ui5-form-group`) enables the grouping of the Form content.\n- **FormItem** (`ui5-form-item`) is a pair of label and form fields and can be used directly in a Form, or as part of a FormGroup.\n\nThe simplest Form (`ui5-form`) consists of a header area on top,\ndisplaying a header text (see the `headingText` property) and content below - an arbitrary number of FormItems (ui5-form-item),\nrepresenting the pairs of label and form fields.\n\nAnd, there is also \"grouping\" available to assist the implementation of richer UIs.\nThis is enabled by the FormGroup (`ui5-form-group`) component.\nIn this case, the Form is structured into FormGroups and each FormGroup consists of FormItems.\n\n### Responsiveness\n\nThe Form component reacts and changes its layout on predefined breakpoints.\nDepending on its size, the Form content (FormGroups and FormItems) gets divided into one or more columns as follows:\n- **S** (< 600px) – 1 column is recommended (default: 1)\n- **M** (600px - 1022px) – up to 2 columns are recommended (default: 1)\n- **L** (1023px - 1439px) - up to 3 columns are recommended (default: 2)\n- **XL** (> 1439px) – up to 6 columns are recommended (default: 3)\n\nTo change the layout, use the `layout` property - f.e. layout=\"S1 M2 L3 XL6\".\n\n### Groups\n\nTo make better use of screen space, there is built-in logic to determine how many columns should a FormGroup occupy.\n\n- **Example #1** (perfect match):\n4 columns and 4 groups: each group will use 1 column.\n\n- **Example #2** (balanced distribution):\n4 columns and 2 groups: each group will use 2 columns.\n6 columns and 2 groups: each group will use 3 columns.\n\n- **Example #3** (unbalanced distribution):\n3 columns and 2 groups: the larger one will use 2 columns, the smaller 1 column.\n5 columns and 3 groups: two of the groups will use 2 columns each, the smallest 1 column.\n\n**Note:** The size of a group element is determined by the number of FormItems assigned to it.\nIn the case of equality, the first in the DOM will use more columns, and the last - fewer columns.\n\n- **Example #4** (more groups than columns):\n3 columns and 4 groups: each FormGroup uses only 1 column, the last FormGroup will wrap on the second row.\n\n### Groups Column Span\n\nTo influence the built-in group distribution, described in the previous section,\nyou can use the FormGroup's `columnSpan` property, that defines how many columns the group should expand to.\n\n### Items Column Span\n\nFormItem's columnSpan property defines how many columns the form item should expand to inside a form group or the form.\n\n### Items Label Span\n\nThe placement of the labels depends on the size of the used column.\nIf there is enough space, the labels are next to their associated fields, otherwise  - above the fields.\nBy default, the labels take 4/12 of the FormItem, leaving 8/12 parts to associated fields.\nYou can control what space the labels should take via the `labelSpan` property.\n\n**For example:** To always place the labels on top set: `labelSpan=\"S12 M12 L12 XL12\"` property.\n\n### Items Empty Span\n\nBy default, a form item spans 12 cells, fully divided between its label and field, with no empty space at the end:\n- **Label:** occupies 4 cells.\n- **Field:** occupies 8 cells.\n\nThe `emptySpan` property provides additional layout flexibility by defining empty space at the form item’s end.\n\n**For example:** Setting \"S0 M0 L3 XL3\" (or just \"L3 XL3\") adjusts the layout as follows:\n- **Label:** remains 4 cells.\n- **Field:** is reduced to 5 cells.\n- **Empty space:** 3 cells are added at the end.\n\nGreater values increase the empty space at the end of the form item, reducing the space available for the label and its field.\nHowever, setting `emptySpan` to 1 cell is recommended and typically sufficient to achieve a balanced layout.\n\n### Navigation flow\n\nThe Form component supports two layout options for keyboard navigation:\n\n#### Simple form\n\nIn this \"simple form\" layout, each `ui5-form-item` acts as a standalone group\nwith one item, so focus moves horizontally across the grid from one `ui5-form-item` to the next.\nThis layout is ideal for simpler forms and supports custom arrangements, e.g.,\n\n```\n| 1 | 2 |\n|   3   |\n| 4 | 5 |\n```\n\n#### Complex form\n\nIn this layout, items are grouped into `ui5-form-group` elements, allowing more complex configurations:\n\n- **Single-Column Group**: Focus moves vertically down from one item to the next.\n  ```\n  | 1 |\n  | 2 |\n  | 3 |\n  ```\n\n- **Multi-Column Group**: Focus moves horizontally within each row, advancing to the next row after completing the current one.\n  ```\n  | 1 | 4 |\n  | 2 | 5 |\n  | 3 | 6 |\n  ```\n\n### Keyboard Handling\n\n- [Tab] - Moves the focus to the next interactive element within the Form/FormGroup (if available) or to the next element in the tab chain outside the Form\n- [Shift] + [Tab] - Moves the focus to the previous interactive element within the Form/FormGroup (if available) or to the previous element in the tab chain outside the Form\n- [F6] - Moves the focus to the first interactive element of the next FormGroup (if available) or to the next element in the tab chain outside the Form\n- [Shift] + [F6] - Moves the focus to the first interactive element of the previous FormGroup (if available) or to the previous element in the tab chain outside the Form\n\n### ES6 Module Import\n\n- import @ui5/webcomponents/dist/Form.js\";\n- import @ui5/webcomponents/dist/FormGroup.js\";\n- import @ui5/webcomponents/dist/FormItem.js\";\n---\n\n\n### **Slots:**\n - **default** - Defines the component content - FormGroups or FormItems.\n\n**Note:** Mixing FormGroups and standalone FormItems (not belonging to a group) is not supported.\nEither use FormGroups and make sure all FormItems are part of a FormGroup, or use just FormItems without any FormGroups.\n- **header** - Defines the component header area.\n\n**Note:** When a `header` is provided, the `headerText` property is ignored.\n\n### **CSS Parts:**\n - **column** - Used to style a single column of the form column layout.\n- **header** - Used to style the wrapper of the header.\n- **layout** - Used to style the element defining the form column layout.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-mode",
              "description": "Defines the accessibility mode of the component in \"edit\" and \"display\" use-cases.\n\nBased on the mode, the component renders different HTML elements and ARIA attributes,\nwhich are appropriate for the use-case.\n\n**Usage:**\n- Set this property to \"Display\", when the form consists of non-editable (e.g. texts) form items.\n- Set this property to \"Edit\", when the form consists of editable (e.g. input fields) form items.",
              "value": {
                "type": "\"Display\" | \"Edit\"",
                "default": "\"Display\""
              }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Defines id (or many ids) of the element (or elements) that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "empty-span",
              "description": "Defines the number of cells that are empty at the end of each form item, configurable by breakpoint.\n\nBy default, a form item spans 12 cells, fully divided between its label (4 cells) and field (8 cells), with no empty space at the end.\nThe `emptySpan` provides additional layout flexibility by defining empty space at the form item’s end.\n\n**Note:**\n- The maximum allowable empty space is 10 cells. At least 1 cell each must remain for the label and the field.\n- When `emptySpan` is specified (greater than 0), ensure that the combined value of `emptySpan` and `labelSpan` does not exceed 11. This guarantees a minimum of 1 cell for the field.",
              "value": { "type": "string", "default": "\"S0 M0 L0 XL0\"" }
            },
            {
              "name": "header-level",
              "description": "Defines the compoennt heading level,\nset by the `headerText`.",
              "value": {
                "type": "\"H1\" | \"H2\" | \"H3\" | \"H4\" | \"H5\" | \"H6\"",
                "default": "\"H2\""
              }
            },
            {
              "name": "header-text",
              "description": "Defines the header text of the component.\n\n**Note:** The property gets overridden by the `header` slot.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "item-spacing",
              "description": "Defines the vertical spacing between form items.\n\n**Note:** If the Form is meant to be switched between \"display\"(\"non-edit\") and \"edit\" modes,\nwe recommend using \"Large\" item spacing in \"display\"(\"non-edit\") mode, and \"Normal\" - for \"edit\" mode,\nto avoid \"jumping\" effect, caused by the hight difference between texts in \"display\"(\"non-edit\") mode and the input fields in \"edit\" mode.",
              "value": {
                "type": "\"Normal\" | \"Large\"",
                "default": "\"Normal\""
              }
            },
            {
              "name": "label-span",
              "description": "Defines the width proportion of the labels and fields of a form item by breakpoint.\n\nBy default, the labels take 4/12 (or 1/3) of the form item in M,L and XL sizes,\nand 12/12 in S size, e.g in S the label is on top of its associated field.\n\nThe supported values are between 1 and 12. Greater the number, more space the label will use.\n\n**Note:** If \"12\" is set, the label will be displayed on top of its assosiated field.",
              "value": { "type": "string", "default": "\"S12 M4 L4 XL4\"" }
            },
            {
              "name": "layout",
              "description": "Defines the number of columns to distribute the form content by breakpoint.\n\nSupported values:\n- `S` - 1 column by default (1 column is recommended)\n- `M` - 1 column by default (up to 2 columns are recommended)\n- `L` - 2 columns by default (up to 3 columns are recommended)\n- `XL` - 3 columns by default (up to 6 columns  are recommended)",
              "value": { "type": "string", "default": "\"S1 M1 L2 XL3\"" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the component content - FormGroups or FormItems.\n\n**Note:** Mixing FormGroups and standalone FormItems (not belonging to a group) is not supported.\nEither use FormGroups and make sure all FormItems are part of a FormGroup, or use just FormItems without any FormGroups."
            },
            {
              "name": "header",
              "description": "Defines the component header area.\n\n**Note:** When a `header` is provided, the `headerText` property is ignored."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "accessible-mode",
                "description": "Defines the accessibility mode of the component in \"edit\" and \"display\" use-cases.\n\nBased on the mode, the component renders different HTML elements and ARIA attributes,\nwhich are appropriate for the use-case.\n\n**Usage:**\n- Set this property to \"Display\", when the form consists of non-editable (e.g. texts) form items.\n- Set this property to \"Edit\", when the form consists of editable (e.g. input fields) form items.",
                "value": { "type": "\"Display\" | \"Edit\"" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Defines id (or many ids) of the element (or elements) that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "empty-span",
                "description": "Defines the number of cells that are empty at the end of each form item, configurable by breakpoint.\n\nBy default, a form item spans 12 cells, fully divided between its label (4 cells) and field (8 cells), with no empty space at the end.\nThe `emptySpan` provides additional layout flexibility by defining empty space at the form item’s end.\n\n**Note:**\n- The maximum allowable empty space is 10 cells. At least 1 cell each must remain for the label and the field.\n- When `emptySpan` is specified (greater than 0), ensure that the combined value of `emptySpan` and `labelSpan` does not exceed 11. This guarantees a minimum of 1 cell for the field.",
                "value": { "type": "string" }
              },
              {
                "name": "header-level",
                "description": "Defines the compoennt heading level,\nset by the `headerText`.",
                "value": {
                  "type": "\"H1\" | \"H2\" | \"H3\" | \"H4\" | \"H5\" | \"H6\""
                }
              },
              {
                "name": "header-text",
                "description": "Defines the header text of the component.\n\n**Note:** The property gets overridden by the `header` slot.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "item-spacing",
                "description": "Defines the vertical spacing between form items.\n\n**Note:** If the Form is meant to be switched between \"display\"(\"non-edit\") and \"edit\" modes,\nwe recommend using \"Large\" item spacing in \"display\"(\"non-edit\") mode, and \"Normal\" - for \"edit\" mode,\nto avoid \"jumping\" effect, caused by the hight difference between texts in \"display\"(\"non-edit\") mode and the input fields in \"edit\" mode.",
                "value": { "type": "\"Normal\" | \"Large\"" }
              },
              {
                "name": "label-span",
                "description": "Defines the width proportion of the labels and fields of a form item by breakpoint.\n\nBy default, the labels take 4/12 (or 1/3) of the form item in M,L and XL sizes,\nand 12/12 in S size, e.g in S the label is on top of its associated field.\n\nThe supported values are between 1 and 12. Greater the number, more space the label will use.\n\n**Note:** If \"12\" is set, the label will be displayed on top of its assosiated field.",
                "value": { "type": "string" }
              },
              {
                "name": "layout",
                "description": "Defines the number of columns to distribute the form content by breakpoint.\n\nSupported values:\n- `S` - 1 column by default (1 column is recommended)\n- `M` - 1 column by default (up to 2 columns are recommended)\n- `L` - 2 columns by default (up to 3 columns are recommended)\n- `XL` - 3 columns by default (up to 6 columns  are recommended)",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-form-group",
          "description": "### Overview\n\nThe FormGroup (ui5-form-group) represents a group inside the Form (ui5-form) component\nand it consists of FormItem (ui5-form-item) components.\n\nThe layout of the FormGroup is mostly defined and controlled by the overarching Form (ui5-form) component.\nStill, one can influence the layout via the FormGroup's `columnSpan` property,\nthat defines how many columns the group should expand to.\n\n### Usage\n\nТhe FormGroup (ui5-form-group) allows to split a Form into groups,\ne.g to group FormItems that logically belong together.\n\n### ES6 Module Import\n\n- import @ui5/webcomponents/dist/FormGroup.js\";\n---\n\n\n### **Slots:**\n - **default** - Defines the items of the component.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Defines id (or many ids) of the element (or elements) that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "column-span",
              "description": "Defines column span of the component,\ne.g how many columns the group should span to.",
              "value": { "type": "number | undefined", "default": "undefined" }
            },
            {
              "name": "header-level",
              "description": "Defines the compoennt heading level,\nset by the `headerText`.",
              "value": {
                "type": "\"H1\" | \"H2\" | \"H3\" | \"H4\" | \"H5\" | \"H6\"",
                "default": "\"H3\""
              }
            },
            {
              "name": "header-text",
              "description": "Defines header text of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the items of the component."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Defines id (or many ids) of the element (or elements) that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "column-span",
                "description": "Defines column span of the component,\ne.g how many columns the group should span to.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "header-level",
                "description": "Defines the compoennt heading level,\nset by the `headerText`.",
                "value": {
                  "type": "\"H1\" | \"H2\" | \"H3\" | \"H4\" | \"H5\" | \"H6\""
                }
              },
              {
                "name": "header-text",
                "description": "Defines header text of the component.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-form-item",
          "description": "### Overview\n\nThe FormItem (ui5-form-item) represents pair of a label and\none or more components (text or text fields), associated to it.\n\n### Usage\n\nThe FormItem is being used in FormGroup (ui5-form-group) or directly in Form (ui5-form).\n\n### ES6 Module Import\n\n- import @ui5/webcomponents/dist/FormItem.js\";\n---\n\n\n### **Slots:**\n - **default** - Defines the content of the component,\nassociated to `labelContent`.\n- **labelContent** - Defines the label of the component.\n\n### **CSS Parts:**\n - **content** - Used to style the content part of the form item.\n- **label** - Used to style the label part of the form item.\n- **layout** - Used to style the parent element of the label and content parts.",
          "doc-url": "",
          "attributes": [
            {
              "name": "column-span",
              "description": "Defines the column span of the component,\ne.g how many columns the component should span to.\n\n**Note:** The column span should be a number between 1 and the available columns of the FormGroup (when items are placed in a group)\nor the Form. The available columns can be affected by the FormGroup#columnSpan and/or the Form#layout.\nA number bigger than the available columns won't take effect.",
              "value": { "type": "number | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the content of the component,\nassociated to `labelContent`."
            },
            {
              "name": "labelContent",
              "description": "Defines the label of the component."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "column-span",
                "description": "Defines the column span of the component,\ne.g how many columns the component should span to.\n\n**Note:** The column span should be a number between 1 and the available columns of the FormGroup (when items are placed in a group)\nor the Form. The available columns can be affected by the FormGroup#columnSpan and/or the Form#layout.\nA number bigger than the available columns won't take effect.",
                "value": { "type": "number | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-icon",
          "description": "### Overview\n\nThe `ui5-icon` component represents an SVG icon.\nThere are two main scenarios how the `ui5-icon` component is used:\nas a purely decorative element,\nor as an interactive element that can be focused and clicked.\n\n### Usage\n\n1. **Get familiar with the icons collections.**\n\nBefore displaying an icon, you need to explore the icons collections to find and import the desired icon.\n\nCurrently there are 3 icons collection, available as 3 npm packages:\n\n- [@ui5/webcomponents-icons](https://www.npmjs.com/package/@ui5/webcomponents-icons) represents the \"SAP-icons\" collection and includes the following\n[icons](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons).\n- [@ui5/webcomponents-icons-tnt](https://www.npmjs.com/package/@ui5/webcomponents-icons-tnt) represents the \"tnt\" collection and includes the following\n[icons](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons-TNT).\n- [@ui5/webcomponents-icons-business-suite](https://www.npmjs.com/package/@ui5/webcomponents-icons-business-suite) represents the \"business-suite\" collection and includes the following\n[icons](https://ui5.sap.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/BusinessSuiteInAppSymbols).\n\n2. **After exploring the icons collections, add one or more of the packages as dependencies to your project.**\n\n`npm i @ui5/webcomponents-icons`\n`npm i @ui5/webcomponents-icons-tnt`\n`npm i @ui5/webcomponents-icons-business-suite`\n\n3. **Then, import the desired icon**.\n\n`import \"@ui5/\\{package_name\\}/dist/\\{icon_name\\}.js\";`\n\n**For Example**:\n\nFor the standard \"SAP-icons\" icon collection, import an icon from the `@ui5/webcomponents-icons` package:\n\n`import \"@ui5/webcomponents-icons/dist/employee.js\";`\n\nFor the \"tnt\" (SAP Fiori Tools) icon collection, import an icon from the `@ui5/webcomponents-icons-tnt` package:\n\n`import \"@ui5/webcomponents-icons-tnt/dist/antenna.js\";`\n\nFor the \"business-suite\" (SAP Business Suite) icon collection, import an icon from the `@ui5/webcomponents-icons-business-suite` package:\n\n`import \"@ui5/webcomponents-icons-business-suite/dist/ab-testing.js\";`\n\n4. **Display the icon using the `ui5-icon` web component.**\nSet the icon collection (\"SAP-icons\", \"tnt\" or \"business-suite\" - \"SAP-icons\" is the default icon collection and can be skipped)\nand the icon name to the `name` property.\n\n`<ui5-icon name=\"employee\"></ui5-icon>`\n`<ui5-icon name=\"tnt/antenna\"></ui5-icon>`\n`<ui5-icon name=\"business-suite/ab-testing\"></ui5-icon>`\n\n### Keyboard Handling\n\n- [Space] / [Enter] or [Return] - Fires the `click` event if the `mode` property is set to `Interactive`.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Icon.js\";`\n---\n\n\n### **Events:**\n - **click** - Fired when the component is activated by mouse/touch, keyboard (Enter or Space),\nor screen reader virtual cursor activation.\n\n**Note:** The event will not be fired if the `mode` property is set to `Decorative` or `Image`.\n\n### **CSS Parts:**\n - **root** - Used to style the outermost wrapper of the `ui5-icon`.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the text alternative of the component.\nIf not provided a default text alternative will be set, if present.\n\n**Note:** Every icon should have a text alternative in order to\ncalculate its accessible name.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "design",
              "description": "Defines the component semantic design.",
              "value": {
                "type": "\"Positive\" | \"Critical\" | \"Negative\" | \"Information\" | \"Default\" | \"Contrast\" | \"Neutral\" | \"NonInteractive\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "mode",
              "description": "Defines the mode of the component.",
              "value": {
                "type": "\"Image\" | \"Decorative\" | \"Interactive\"",
                "default": "\"Decorative\""
              }
            },
            {
              "name": "name",
              "description": "Defines the unique identifier (icon name) of the component.\n\nTo browse all available icons, see the\n[SAP Icons](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html),\n[SAP Fiori Tools](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons-TNT) and\n[SAP Business Suite](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html)\n\nExample:\n`name='add'`, `name='delete'`, `name='employee'`.\n\n**Note:** To use the SAP Fiori Tools icons,\nyou need to set the `tnt` prefix in front of the icon's name.\n\nExample:\n`name='tnt/antenna'`, `name='tnt/actor'`, `name='tnt/api'`.\n\n**Note:** To use the SAP Business Suite icons,\nyou need to set the `business-suite` prefix in front of the icon's name.\n\nExample:\n`name='business-suite/3d'`, `name='business-suite/1x2-grid-layout'`, `name='business-suite/4x4-grid-layout'`.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "show-tooltip",
              "description": "Defines whether the component should have a tooltip.\n\n**Note:** The tooltip text should be provided via the `accessible-name` property.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "events": [
            {
              "name": "click",
              "description": "Fired when the component is activated by mouse/touch, keyboard (Enter or Space),\nor screen reader virtual cursor activation.\n\n**Note:** The event will not be fired if the `mode` property is set to `Decorative` or `Image`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the text alternative of the component.\nIf not provided a default text alternative will be set, if present.\n\n**Note:** Every icon should have a text alternative in order to\ncalculate its accessible name.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "design",
                "description": "Defines the component semantic design.",
                "value": {
                  "type": "\"Positive\" | \"Critical\" | \"Negative\" | \"Information\" | \"Default\" | \"Contrast\" | \"Neutral\" | \"NonInteractive\""
                }
              },
              {
                "name": "mode",
                "description": "Defines the mode of the component.",
                "value": {
                  "type": "\"Image\" | \"Decorative\" | \"Interactive\""
                }
              },
              {
                "name": "name",
                "description": "Defines the unique identifier (icon name) of the component.\n\nTo browse all available icons, see the\n[SAP Icons](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html),\n[SAP Fiori Tools](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html#/overview/SAP-icons-TNT) and\n[SAP Business Suite](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html)\n\nExample:\n`name='add'`, `name='delete'`, `name='employee'`.\n\n**Note:** To use the SAP Fiori Tools icons,\nyou need to set the `tnt` prefix in front of the icon's name.\n\nExample:\n`name='tnt/antenna'`, `name='tnt/actor'`, `name='tnt/api'`.\n\n**Note:** To use the SAP Business Suite icons,\nyou need to set the `business-suite` prefix in front of the icon's name.\n\nExample:\n`name='business-suite/3d'`, `name='business-suite/1x2-grid-layout'`, `name='business-suite/4x4-grid-layout'`.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "show-tooltip",
                "description": "Defines whether the component should have a tooltip.\n\n**Note:** The tooltip text should be provided via the `accessible-name` property.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "click",
                "description": "Fired when the component is activated by mouse/touch, keyboard (Enter or Space),\nor screen reader virtual cursor activation.\n\n**Note:** The event will not be fired if the `mode` property is set to `Decorative` or `Image`."
              }
            ]
          }
        },
        {
          "name": "ui5-input",
          "description": "### Overview\n\nThe `ui5-input` component allows the user to enter and edit text or numeric values in one line.\n\nAdditionally, you can provide `suggestionItems`\nthat are displayed in a popover right under the input. Keep in mind that `ui5-input` with type `Number` does not support suggestions.\n\nThe text field can be editable or read-only (`readonly` property),\nand it can be enabled or disabled (`disabled` property).\nTo visualize semantic states, such as \"Negative\" or \"Critical\", the `valueState` property is provided.\nWhen the user makes changes to the text, the change event is fired,\nwhich enables you to react on any text change.\n\n### Keyboard Handling\nThe `ui5-input` provides the following keyboard shortcuts:\n\n- [Escape] - Closes the suggestion list, if open. If closed or not enabled, cancels changes and reverts to the value which the Input field had when it got the focus.\n- [Enter] or [Return] - If suggestion list is open takes over the current matching item and closes it. If value state or group header is focused, does nothing.\n- [Down] - Focuses the next matching item in the suggestion list. Selection-change event is fired.\n- [Up] - Focuses the previous matching item in the suggestion list. Selection-change event is fired.\n- [Home] - If focus is in the text input, moves caret before the first character. If focus is in the list, highlights the first item and updates the input accordingly.\n- [End] - If focus is in the text input, moves caret after the last character. If focus is in the list, highlights the last item and updates the input accordingly.\n- [Page Up] - If focus is in the list, moves highlight up by page size (10 items by default). If focus is in the input, does nothing.\n- [Page Down] - If focus is in the list, moves highlight down by page size (10 items by default). If focus is in the input, does nothing.\n- [Ctrl]+[Alt]+[F8] or [Command]+[Option]+[F8] - Focuses the first link in the value state message, if available. Pressing [Tab] moves the focus to the next link in the value state message, or closes the value state message if there are no more links.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Input.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter or on focusout.\n- **close** - Fired when the suggestions picker is closed.\n- **input** - Fired when the value of the component changes at each keystroke,\nand when a suggestion item has been selected.\n- **open** - Fired when the suggestions picker is open.\n- **select** - Fired when some text has been selected.\n- **selection-change** - Fired when the user navigates to a suggestion item via the ARROW keys,\nas a preview, before the final selection.\n\n### **Slots:**\n - **default** - Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.\n\n**Note:** Input with type `Number` does not support suggestions.\n- **icon** - Defines the icon to be displayed in the component.\n- **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.\n\n**Note:** If the component has `suggestionItems`,\nthe `valueStateMessage` would be displayed as part of the same popover, if used on desktop, or dialog - on phone.\n\n### **CSS Parts:**\n - **clear-icon** - Used to style the clear icon, which can be pressed to clear user input text\n- **input** - Used to style the native input element\n- **root** - Used to style the root DOM element of the Input component",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Receives id(or many ids) of the elements that describe the input.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the input.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is in disabled state.\n\n**Note:** A disabled component is completely noninteractive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "filter",
              "description": "Defines the filter type of the component.",
              "value": {
                "type": "\"None\" | \"StartsWithPerTerm\" | \"StartsWith\" | \"Contains\"",
                "default": "\"None\""
              }
            },
            {
              "name": "maxlength",
              "description": "Sets the maximum number of characters available in the input field.\n\n**Note:** This property is not compatible with the ui5-input type InputType.Number. If the ui5-input type is set to Number, the maxlength value is ignored.",
              "value": { "type": "number | undefined", "default": "undefined" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "no-typeahead",
              "description": "Defines whether the value will be autcompleted to match an item",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "open",
              "description": "Defines whether the suggestions picker is open.\nThe picker will not open if the `showSuggestions` property is set to `false`, the input is disabled or the input is readonly.\nThe picker will close automatically and `close` event will be fired if the input is not in the viewport.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "placeholder",
              "description": "Defines a short hint intended to aid the user with data entry when the\ncomponent has no value.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "readonly",
              "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-clear-icon",
              "description": "Defines whether the clear icon of the input will be shown.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-suggestions",
              "description": "Defines whether the component should show suggestions, if such are present.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "type",
              "description": "Defines the HTML type of the component.\n\n**Notes:**\n\n- The particular effect of this property differs depending on the browser\nand the current language settings, especially for type `Number`.\n- The property is mostly intended to be used with touch devices\nthat use different soft keyboard layouts depending on the given input type.\n- Type `Number` does not support suggestions.",
              "value": {
                "type": "\"Text\" | \"Email\" | \"Number\" | \"Password\" | \"Tel\" | \"URL\" | \"Search\"",
                "default": "\"Text\""
              }
            },
            {
              "name": "value",
              "description": "Defines the value of the component.\n\n**Note:** The property is updated upon typing.",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.\n\n**Note:** Input with type `Number` does not support suggestions."
            },
            {
              "name": "icon",
              "description": "Defines the icon to be displayed in the component."
            },
            {
              "name": "valueStateMessage",
              "description": "Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.\n\n**Note:** If the component has `suggestionItems`,\nthe `valueStateMessage` would be displayed as part of the same popover, if used on desktop, or dialog - on phone."
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the input operation has finished by pressing Enter or on focusout."
            },
            {
              "name": "close",
              "description": "Fired when the suggestions picker is closed."
            },
            {
              "name": "input",
              "description": "Fired when the value of the component changes at each keystroke,\nand when a suggestion item has been selected."
            },
            {
              "name": "open",
              "description": "Fired when the suggestions picker is open."
            },
            {
              "name": "select",
              "description": "Fired when some text has been selected."
            },
            {
              "name": "selection-change",
              "description": "Fired when the user navigates to a suggestion item via the ARROW keys,\nas a preview, before the final selection."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Receives id(or many ids) of the elements that describe the input.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the input.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is in disabled state.\n\n**Note:** A disabled component is completely noninteractive.",
                "value": { "type": "boolean" }
              },
              {
                "name": "filter",
                "description": "Defines the filter type of the component.",
                "value": {
                  "type": "\"None\" | \"StartsWithPerTerm\" | \"StartsWith\" | \"Contains\""
                }
              },
              {
                "name": "maxlength",
                "description": "Sets the maximum number of characters available in the input field.\n\n**Note:** This property is not compatible with the ui5-input type InputType.Number. If the ui5-input type is set to Number, the maxlength value is ignored.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "no-typeahead",
                "description": "Defines whether the value will be autcompleted to match an item",
                "value": { "type": "boolean" }
              },
              {
                "name": "open",
                "description": "Defines whether the suggestions picker is open.\nThe picker will not open if the `showSuggestions` property is set to `false`, the input is disabled or the input is readonly.\nThe picker will close automatically and `close` event will be fired if the input is not in the viewport.",
                "value": { "type": "boolean" }
              },
              {
                "name": "placeholder",
                "description": "Defines a short hint intended to aid the user with data entry when the\ncomponent has no value.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "readonly",
                "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
                "value": { "type": "boolean" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-clear-icon",
                "description": "Defines whether the clear icon of the input will be shown.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-suggestions",
                "description": "Defines whether the component should show suggestions, if such are present.",
                "value": { "type": "boolean" }
              },
              {
                "name": "type",
                "description": "Defines the HTML type of the component.\n\n**Notes:**\n\n- The particular effect of this property differs depending on the browser\nand the current language settings, especially for type `Number`.\n- The property is mostly intended to be used with touch devices\nthat use different soft keyboard layouts depending on the given input type.\n- Type `Number` does not support suggestions.",
                "value": {
                  "type": "\"Text\" | \"Email\" | \"Number\" | \"Password\" | \"Tel\" | \"URL\" | \"Search\""
                }
              },
              {
                "name": "value",
                "description": "Defines the value of the component.\n\n**Note:** The property is updated upon typing.",
                "value": { "type": "string" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the input operation has finished by pressing Enter or on focusout."
              },
              {
                "name": "close",
                "description": "Fired when the suggestions picker is closed."
              },
              {
                "name": "input",
                "description": "Fired when the value of the component changes at each keystroke,\nand when a suggestion item has been selected."
              },
              {
                "name": "open",
                "description": "Fired when the suggestions picker is open."
              },
              {
                "name": "select",
                "description": "Fired when some text has been selected."
              },
              {
                "name": "selection-change",
                "description": "Fired when the user navigates to a suggestion item via the ARROW keys,\nas a preview, before the final selection."
              }
            ]
          }
        },
        {
          "name": "ui5-label",
          "description": "### Overview\n\nThe `ui5-label` is a component used to represent a label for elements like input, textarea, select.\nThe `for` property of the `ui5-label` must be the same as the id attribute of the related input element.\nScreen readers read out the label, when the user focuses the labelled control.\n\nThe `ui5-label` appearance can be influenced by properties,\nsuch as `required` and `wrappingType`.\nThe appearance of the Label can be configured in a limited way by using the design property.\nFor a broader choice of designs, you can use custom styles.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Label\";`\n---\n\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.",
          "doc-url": "",
          "attributes": [
            {
              "name": "for",
              "description": "Defines the labeled input by providing its ID.\n\n**Note:** Can be used with both `ui5-input` and native input.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "required",
              "description": "Defines whether an asterisk character is added to the component text.\n\n**Note:** Usually indicates that user input (bound with the `for` property) is required.\nIn that case the `required` property of\nthe corresponding input should also be set.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-colon",
              "description": "Defines whether colon is added to the component text.\n\n**Note:** Usually used in forms.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "wrapping-type",
              "description": "Defines how the text of a component will be displayed when there is not enough space.\n\n**Note:** for option \"Normal\" the text will wrap and the words will not be broken based on hyphenation.",
              "value": {
                "type": "\"None\" | \"Normal\"",
                "default": "\"Normal\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "for",
                "description": "Defines the labeled input by providing its ID.\n\n**Note:** Can be used with both `ui5-input` and native input.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "required",
                "description": "Defines whether an asterisk character is added to the component text.\n\n**Note:** Usually indicates that user input (bound with the `for` property) is required.\nIn that case the `required` property of\nthe corresponding input should also be set.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-colon",
                "description": "Defines whether colon is added to the component text.\n\n**Note:** Usually used in forms.",
                "value": { "type": "boolean" }
              },
              {
                "name": "wrapping-type",
                "description": "Defines how the text of a component will be displayed when there is not enough space.\n\n**Note:** for option \"Normal\" the text will wrap and the words will not be broken based on hyphenation.",
                "value": { "type": "\"None\" | \"Normal\"" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-link",
          "description": "### Overview\nThe `ui5-link` is a hyperlink component that is used to navigate to other\napps and web pages, or to trigger actions.\nIt is a clickable text element, visualized in such a way that it stands out\nfrom the standard text.\nOn hover, it changes its style to an underlined text to provide additional feedback to the user.\n\n### Usage\n\nYou can set the `ui5-link` to be enabled or disabled.\n\nTo create a visual hierarchy in large lists of links, you can set the less important links as\n`Subtle` or the more important ones as `Emphasized`,\nby using the `design` property.\n\nIf the `href` property is set, the link behaves as the HTML\nanchor tag (`<a></a>`) and opens the specified URL in the given target frame (`target` property).\nTo specify where the linked content is opened, you can use the `target` property.\n\n### Responsive behavior\n\nIf there is not enough space, the text of the `ui5-link` becomes truncated.\nIf the `wrappingType` property is set to `\"Normal\"`, the text is displayed\non several lines instead of being truncated.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Link\";`\n---\n\n\n### **Events:**\n - **click** - Fired when the component is triggered either with a mouse/tap\nor by using the Enter key.\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.\n\n### **CSS Parts:**\n - **endIcon** - Used to style the provided endIcon within the link\n- **icon** - Used to style the provided icon within the link",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessibility-attributes",
              "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **expanded**: Indicates whether the button, or another grouping element it controls, is currently expanded or collapsed.\nAccepts the following string values: `true` or `false`.\n\n- **hasPopup**: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the button.\nAccepts the following string values: `dialog`, `grid`, `listbox`, `menu` or `tree`.",
              "value": {
                "type": "LinkAccessibilityAttributes",
                "default": "{}"
              }
            },
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the input",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-role",
              "description": "Defines the ARIA role of the component.\n\n**Note:** Use the <code>LinkAccessibleRole.Button</code> role in cases when navigation is not expected to occur and the href property is not defined.",
              "value": {
                "type": "\"Button\" | \"Link\"",
                "default": "\"Link\""
              }
            },
            {
              "name": "design",
              "description": "Defines the component design.\n\n**Note:** Avaialble options are `Default`, `Subtle`, and `Emphasized`.",
              "value": {
                "type": "\"Default\" | \"Emphasized\" | \"Subtle\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is disabled.\n\n**Note:** When disabled, the click event cannot be triggered by the user.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "end-icon",
              "description": "Defines the icon, displayed as graphical element within the component after the link's text.\nThe SAP-icons font provides numerous options.\n\n**Note:** Usage of icon-only link is not supported, the link must always have a text.\n\n**Note:** We recommend using аn icon in the beginning or the end only, and with text.\n\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "href",
              "description": "Defines the component href.\n\n**Note:** Standard hyperlink behavior is supported.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "icon",
              "description": "Defines the icon, displayed as graphical element within the component before the link's text.\nThe SAP-icons font provides numerous options.\n\n**Note:** Usage of icon-only link is not supported, the link must always have a text.\n\n**Note:** We recommend using аn icon in the beginning or the end only, and with text.\n\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "interactive-area-size",
              "description": "Defines the target area size of the link:\n- **InteractiveAreaSize.Normal**: The default target area size.\n- **InteractiveAreaSize.Large**: The target area size is enlarged to 24px in height.\n\n**Note:**The property is designed to make links easier to activate and helps meet the WCAG 2.2 Target Size requirement. It is applicable only for the SAP Horizon themes.\n**Note:**To improve <code>ui5-link</code>'s reliability and usability, it is recommended to use the <code>InteractiveAreaSize.Large</code> value in scenarios where the <code>ui5-link</code> component is placed inside another interactive component, such as a list item or a table cell.\nSetting the <code>interactiveAreaSize</code> property to <code>InteractiveAreaSize.Large</code> increases the <code>ui5-link</code>'s invisible touch area. As a result, the user's intended one-time selection command is more likely to activate the desired <code>ui5-link</code>, with minimal chance of unintentionally activating the underlying component.",
              "value": {
                "type": "\"Normal\" | \"Large\"",
                "default": "\"Normal\""
              }
            },
            {
              "name": "target",
              "description": "Defines the component target.\n\n**Notes:**\n\n- `_self`\n- `_top`\n- `_blank`\n- `_parent`\n- `_search`\n\n**This property must only be used when the `href` property is set.**",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "tooltip",
              "description": "Defines the tooltip of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "wrapping-type",
              "description": "Defines how the text of a component will be displayed when there is not enough space.\n\n**Note:** By default the text will wrap. If \"None\" is set - the text will truncate.",
              "value": {
                "type": "\"None\" | \"Normal\"",
                "default": "\"Normal\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design."
            }
          ],
          "events": [
            {
              "name": "click",
              "description": "Fired when the component is triggered either with a mouse/tap\nor by using the Enter key."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessibility-attributes",
                "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **expanded**: Indicates whether the button, or another grouping element it controls, is currently expanded or collapsed.\nAccepts the following string values: `true` or `false`.\n\n- **hasPopup**: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the button.\nAccepts the following string values: `dialog`, `grid`, `listbox`, `menu` or `tree`.",
                "value": { "type": "LinkAccessibilityAttributes" }
              },
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the input",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-role",
                "description": "Defines the ARIA role of the component.\n\n**Note:** Use the <code>LinkAccessibleRole.Button</code> role in cases when navigation is not expected to occur and the href property is not defined.",
                "value": { "type": "\"Button\" | \"Link\"" }
              },
              {
                "name": "design",
                "description": "Defines the component design.\n\n**Note:** Avaialble options are `Default`, `Subtle`, and `Emphasized`.",
                "value": { "type": "\"Default\" | \"Emphasized\" | \"Subtle\"" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is disabled.\n\n**Note:** When disabled, the click event cannot be triggered by the user.",
                "value": { "type": "boolean" }
              },
              {
                "name": "end-icon",
                "description": "Defines the icon, displayed as graphical element within the component after the link's text.\nThe SAP-icons font provides numerous options.\n\n**Note:** Usage of icon-only link is not supported, the link must always have a text.\n\n**Note:** We recommend using аn icon in the beginning or the end only, and with text.\n\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "href",
                "description": "Defines the component href.\n\n**Note:** Standard hyperlink behavior is supported.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "icon",
                "description": "Defines the icon, displayed as graphical element within the component before the link's text.\nThe SAP-icons font provides numerous options.\n\n**Note:** Usage of icon-only link is not supported, the link must always have a text.\n\n**Note:** We recommend using аn icon in the beginning or the end only, and with text.\n\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "interactive-area-size",
                "description": "Defines the target area size of the link:\n- **InteractiveAreaSize.Normal**: The default target area size.\n- **InteractiveAreaSize.Large**: The target area size is enlarged to 24px in height.\n\n**Note:**The property is designed to make links easier to activate and helps meet the WCAG 2.2 Target Size requirement. It is applicable only for the SAP Horizon themes.\n**Note:**To improve <code>ui5-link</code>'s reliability and usability, it is recommended to use the <code>InteractiveAreaSize.Large</code> value in scenarios where the <code>ui5-link</code> component is placed inside another interactive component, such as a list item or a table cell.\nSetting the <code>interactiveAreaSize</code> property to <code>InteractiveAreaSize.Large</code> increases the <code>ui5-link</code>'s invisible touch area. As a result, the user's intended one-time selection command is more likely to activate the desired <code>ui5-link</code>, with minimal chance of unintentionally activating the underlying component.",
                "value": { "type": "\"Normal\" | \"Large\"" }
              },
              {
                "name": "target",
                "description": "Defines the component target.\n\n**Notes:**\n\n- `_self`\n- `_top`\n- `_blank`\n- `_parent`\n- `_search`\n\n**This property must only be used when the `href` property is set.**",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "tooltip",
                "description": "Defines the tooltip of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "wrapping-type",
                "description": "Defines how the text of a component will be displayed when there is not enough space.\n\n**Note:** By default the text will wrap. If \"None\" is set - the text will truncate.",
                "value": { "type": "\"None\" | \"Normal\"" }
              }
            ],
            "events": [
              {
                "name": "click",
                "description": "Fired when the component is triggered either with a mouse/tap\nor by using the Enter key."
              }
            ]
          }
        },
        {
          "name": "ui5-list",
          "description": "### Overview\n\nThe `ui5-list` component allows displaying a list of items, advanced keyboard\nhandling support for navigating between items, and predefined modes to improve the development efficiency.\n\nThe `ui5-list` is a container for the available list items:\n\n- `ui5-li`\n- `ui5-li-custom`\n- `ui5-li-group`\n\nTo benefit from the built-in selection mechanism, you can use the available\nselection modes, such as\n`Single`, `Multiple` and `Delete`.\n\nAdditionally, the `ui5-list` provides header, footer, and customization for the list item separators.\n\n### Keyboard Handling\n\n#### Basic Navigation\nThe `ui5-list` provides advanced keyboard handling.\nWhen a list is focused the user can use the following keyboard\nshortcuts in order to perform a navigation:\n\n- [Up] or [Down] - Navigates up and down the items\n- [Home] - Navigates to first item\n- [End] - Navigates to the last item\n\nThe user can use the following keyboard shortcuts to perform actions (such as select, delete),\nwhen the `selectionMode` property is in use:\n\n- [Space] - Select an item (if `type` is 'Active') when `selectionMode` is selection\n- [Delete] - Delete an item if `selectionMode` property is `Delete`\n\n#### Fast Navigation\nThis component provides a build in fast navigation group which can be used via [F6] / [Shift] + [F6] / [Ctrl] + [Alt/Option] / [Down] or [Ctrl] + [Alt/Option] + [Up].\nIn order to use this functionality, you need to import the following module:\n`import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"`\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/List.js\";`\n\n`import \"@ui5/webcomponents/dist/ListItemStandard.js\";` (for `ui5-li`)\n\n`import \"@ui5/webcomponents/dist/ListItemCustom.js\";` (for `ui5-li-custom`)\n\n`import \"@ui5/webcomponents/dist/ListItemGroup.js\";` (for `ui5-li-group`)\n---\n\n\n### **Events:**\n - **item-click** - Fired when an item is activated, unless the item's `type` property\nis set to `Inactive`.\n\n**Note**: This event is not triggered by interactions with selection components such as the checkboxes and radio buttons,\nassociated with non-default `selectionMode` values, or if any other **interactive** component\n(such as a button or input) within the list item is directly clicked.\n- **item-close** - Fired when the `Close` button of any item is clicked\n\n**Note:** This event is only applicable to list items that can be closed (such as notification list items),\nnot to be confused with `item-delete`.\n- **item-delete** - Fired when the Delete button of any item is pressed.\n\n**Note:** A Delete button is displayed on each item,\nwhen the component `selectionMode` property is set to `Delete`.\n- **item-toggle** - Fired when the `Toggle` button of any item is clicked.\n\n**Note:** This event is only applicable to list items that can be toggled (such as notification group list items).\n- **load-more** - Fired when the user scrolls to the bottom of the list.\n\n**Note:** The event is fired when the `growing='Scroll'` property is enabled.\n- **move** - Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action.\n- **move-over** - Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n- **selection-change** - Fired when selection is changed by user interaction\nin `Single`, `SingleStart`, `SingleEnd` and `Multiple` selection modes.\n\n### **Slots:**\n - **default** - Defines the items of the component.\n\n**Note:** Use `ui5-li`, `ui5-li-custom`, and `ui5-li-group` for the intended design.\n- **header** - Defines the component header.\n\n**Note:** When `header` is set, the\n`headerText` property is ignored.\n\n### **CSS Parts:**\n - **growing-button** - Used to style the button, that is used for growing of the component\n- **growing-button-inner** - Used to style the button inner element",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessibility-attributes",
              "description": "Defines additional accessibility attributes on different areas of the component.\n\nThe accessibilityAttributes object has the following field:\n\n - **growingButton**: `growingButton.name`, `growingButton.description`.\n\n The accessibility attributes support the following values:\n\n- **name**: Defines the accessible ARIA name of the growing button.\nAccepts any string.\n\n- **description**: Defines the accessible ARIA description of the growing button.\nAccepts any string.\n\n **Note:** The `accessibilityAttributes` property is in an experimental state and is a subject to change.",
              "value": {
                "type": "ListAccessibilityAttributes",
                "default": "{}"
              }
            },
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Defines the IDs of the elements that describe the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Defines the IDs of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-role",
              "description": "Defines the accessible role of the component.",
              "value": {
                "type": "\"List\" | \"Menu\" | \"Tree\" | \"ListBox\"",
                "default": "\"List\""
              }
            },
            {
              "name": "footer-text",
              "description": "Defines the footer text.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "growing",
              "description": "Defines whether the component will have growing capability either by pressing a `More` button,\nor via user scroll. In both cases `load-more` event is fired.\n\n**Restrictions:** `growing=\"Scroll\"` is not supported for Internet Explorer,\non IE the component will fallback to `growing=\"Button\"`.",
              "value": {
                "type": "\"None\" | \"Button\" | \"Scroll\"",
                "default": "\"None\""
              }
            },
            {
              "name": "growing-button-text",
              "description": "Defines the text that will be displayed inside the growing button.\n\n**Note:** If not specified a built-in text will be displayed.\n\n**Note:** This property takes effect if the `growing` property is set to the `Button`.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "header-text",
              "description": "Defines the component header text.\n\n**Note:** If `header` is set this property is ignored.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "indent",
              "description": "Determines whether the component is indented.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "list-items",
              "description": "Returns an array containing the list item instances without the groups in a flat structure.",
              "value": { "type": "any", "default": "[]" }
            },
            {
              "name": "loading",
              "description": "Defines if the component would display a loading indicator over the list.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "loading-delay",
              "description": "Defines the delay in milliseconds, after which the loading indicator will show up for this component.",
              "value": { "type": "number", "default": "1000" }
            },
            {
              "name": "no-data-text",
              "description": "Defines the text that is displayed when the component contains no items.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "selection-mode",
              "description": "Defines the selection mode of the component.",
              "value": {
                "type": "\"None\" | \"Single\" | \"Multiple\" | \"SingleStart\" | \"SingleEnd\" | \"SingleAuto\" | \"Delete\"",
                "default": "\"None\""
              }
            },
            {
              "name": "separators",
              "description": "Defines the item separator style that is used.",
              "value": {
                "type": "\"None\" | \"All\" | \"Inner\"",
                "default": "\"All\""
              }
            },
            {
              "name": "sticky-header",
              "description": "Indicates whether the List header is sticky or not.\nIf stickyHeader is set to true, then whenever you scroll the content or\nthe application, the header of the list will be always visible.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the items of the component.\n\n**Note:** Use `ui5-li`, `ui5-li-custom`, and `ui5-li-group` for the intended design."
            },
            {
              "name": "header",
              "description": "Defines the component header.\n\n**Note:** When `header` is set, the\n`headerText` property is ignored."
            }
          ],
          "events": [
            {
              "name": "item-click",
              "description": "Fired when an item is activated, unless the item's `type` property\nis set to `Inactive`.\n\n**Note**: This event is not triggered by interactions with selection components such as the checkboxes and radio buttons,\nassociated with non-default `selectionMode` values, or if any other **interactive** component\n(such as a button or input) within the list item is directly clicked."
            },
            {
              "name": "item-close",
              "description": "Fired when the `Close` button of any item is clicked\n\n**Note:** This event is only applicable to list items that can be closed (such as notification list items),\nnot to be confused with `item-delete`."
            },
            {
              "name": "item-delete",
              "description": "Fired when the Delete button of any item is pressed.\n\n**Note:** A Delete button is displayed on each item,\nwhen the component `selectionMode` property is set to `Delete`."
            },
            {
              "name": "item-toggle",
              "description": "Fired when the `Toggle` button of any item is clicked.\n\n**Note:** This event is only applicable to list items that can be toggled (such as notification group list items)."
            },
            {
              "name": "load-more",
              "description": "Fired when the user scrolls to the bottom of the list.\n\n**Note:** The event is fired when the `growing='Scroll'` property is enabled."
            },
            {
              "name": "move",
              "description": "Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action."
            },
            {
              "name": "move-over",
              "description": "Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`."
            },
            {
              "name": "selection-change",
              "description": "Fired when selection is changed by user interaction\nin `Single`, `SingleStart`, `SingleEnd` and `Multiple` selection modes."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessibility-attributes",
                "description": "Defines additional accessibility attributes on different areas of the component.\n\nThe accessibilityAttributes object has the following field:\n\n - **growingButton**: `growingButton.name`, `growingButton.description`.\n\n The accessibility attributes support the following values:\n\n- **name**: Defines the accessible ARIA name of the growing button.\nAccepts any string.\n\n- **description**: Defines the accessible ARIA description of the growing button.\nAccepts any string.\n\n **Note:** The `accessibilityAttributes` property is in an experimental state and is a subject to change.",
                "value": { "type": "ListAccessibilityAttributes" }
              },
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Defines the IDs of the elements that describe the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Defines the IDs of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-role",
                "description": "Defines the accessible role of the component.",
                "value": {
                  "type": "\"List\" | \"Menu\" | \"Tree\" | \"ListBox\""
                }
              },
              {
                "name": "footer-text",
                "description": "Defines the footer text.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "growing",
                "description": "Defines whether the component will have growing capability either by pressing a `More` button,\nor via user scroll. In both cases `load-more` event is fired.\n\n**Restrictions:** `growing=\"Scroll\"` is not supported for Internet Explorer,\non IE the component will fallback to `growing=\"Button\"`.",
                "value": { "type": "\"None\" | \"Button\" | \"Scroll\"" }
              },
              {
                "name": "growing-button-text",
                "description": "Defines the text that will be displayed inside the growing button.\n\n**Note:** If not specified a built-in text will be displayed.\n\n**Note:** This property takes effect if the `growing` property is set to the `Button`.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "header-text",
                "description": "Defines the component header text.\n\n**Note:** If `header` is set this property is ignored.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "indent",
                "description": "Determines whether the component is indented.",
                "value": { "type": "boolean" }
              },
              {
                "name": "list-items",
                "description": "Returns an array containing the list item instances without the groups in a flat structure.",
                "value": { "type": "any" }
              },
              {
                "name": "loading",
                "description": "Defines if the component would display a loading indicator over the list.",
                "value": { "type": "boolean" }
              },
              {
                "name": "loading-delay",
                "description": "Defines the delay in milliseconds, after which the loading indicator will show up for this component.",
                "value": { "type": "number" }
              },
              {
                "name": "no-data-text",
                "description": "Defines the text that is displayed when the component contains no items.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "selection-mode",
                "description": "Defines the selection mode of the component.",
                "value": {
                  "type": "\"None\" | \"Single\" | \"Multiple\" | \"SingleStart\" | \"SingleEnd\" | \"SingleAuto\" | \"Delete\""
                }
              },
              {
                "name": "separators",
                "description": "Defines the item separator style that is used.",
                "value": { "type": "\"None\" | \"All\" | \"Inner\"" }
              },
              {
                "name": "sticky-header",
                "description": "Indicates whether the List header is sticky or not.\nIf stickyHeader is set to true, then whenever you scroll the content or\nthe application, the header of the list will be always visible.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "item-click",
                "description": "Fired when an item is activated, unless the item's `type` property\nis set to `Inactive`.\n\n**Note**: This event is not triggered by interactions with selection components such as the checkboxes and radio buttons,\nassociated with non-default `selectionMode` values, or if any other **interactive** component\n(such as a button or input) within the list item is directly clicked."
              },
              {
                "name": "item-close",
                "description": "Fired when the `Close` button of any item is clicked\n\n**Note:** This event is only applicable to list items that can be closed (such as notification list items),\nnot to be confused with `item-delete`."
              },
              {
                "name": "item-delete",
                "description": "Fired when the Delete button of any item is pressed.\n\n**Note:** A Delete button is displayed on each item,\nwhen the component `selectionMode` property is set to `Delete`."
              },
              {
                "name": "item-toggle",
                "description": "Fired when the `Toggle` button of any item is clicked.\n\n**Note:** This event is only applicable to list items that can be toggled (such as notification group list items)."
              },
              {
                "name": "load-more",
                "description": "Fired when the user scrolls to the bottom of the list.\n\n**Note:** The event is fired when the `growing='Scroll'` property is enabled."
              },
              {
                "name": "move",
                "description": "Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action."
              },
              {
                "name": "move-over",
                "description": "Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`."
              },
              {
                "name": "selection-change",
                "description": "Fired when selection is changed by user interaction\nin `Single`, `SingleStart`, `SingleEnd` and `Multiple` selection modes."
              }
            ]
          }
        },
        {
          "name": "ui5-li-custom",
          "description": "A component to be used as custom list item within the `ui5-list`\nthe same way as the standard `ui5-li`.\n\nThe component accepts arbitrary HTML content to allow full customization.\n---\n\n\n### **Events:**\n - **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Slots:**\n - **default** - Defines the content of the component.\n- **deleteButton** - Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed.\n\n### **CSS Parts:**\n - **checkbox** - Used to style the checkbox rendered when the list item is in multiple selection mode\n- **content** - Used to style the content area of the list item\n- **delete-button** - Used to style the button rendered when the list item is in delete mode\n- **detail-button** - Used to style the button rendered when the list item is of type detail\n- **native-li** - Used to style the main li tag of the list item\n- **radio** - Used to style the radio button rendered when the list item is in single selection mode",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessibility-attributes",
              "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **ariaSetsize**: Defines the number of items in the current set  when not all items in the set are present in the DOM.\n**Note:** The value is an integer reflecting the number of items in the complete set. If the size of the entire set is unknown, set `-1`.\n\n\t- **ariaPosinset**: Defines an element's number or position in the current set when not all items are present in the DOM.\n\t**Note:** The value is an integer greater than or equal to 1, and less than or equal to the size of the set when that size is known.",
              "value": {
                "type": "ListItemAccessibilityAttributes",
                "default": "{}"
              }
            },
            {
              "name": "accessible-name",
              "description": "Defines the text alternative of the component.\n\n**Note**: If not provided a default text alternative will be set, if present.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "highlight",
              "description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            },
            {
              "name": "movable",
              "description": "Defines whether the item is movable.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "navigated",
              "description": "The navigated state of the list item.\nIf set to `true`, a navigation indicator is displayed at the end of the list item.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "selected",
              "description": "Defines the selected state of the component.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "tooltip",
              "description": "Defines the text of the tooltip that would be displayed for the list item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "type",
              "description": "Defines the visual indication and behavior of the list items.\nAvailable options are `Active` (by default), `Inactive`, `Detail` and `Navigation`.\n\n**Note:** When set to `Active` or `Navigation`, the item will provide visual response upon press and hover,\nwhile with type `Inactive` and `Detail` - will not.",
              "value": {
                "type": "\"Navigation\" | \"Inactive\" | \"Active\" | \"Detail\"",
                "default": "\"Active\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the content of the component."
            },
            {
              "name": "deleteButton",
              "description": "Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed."
            }
          ],
          "events": [
            {
              "name": "detail-click",
              "description": "Fired when the user clicks on the detail button when type is `Detail`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessibility-attributes",
                "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **ariaSetsize**: Defines the number of items in the current set  when not all items in the set are present in the DOM.\n**Note:** The value is an integer reflecting the number of items in the complete set. If the size of the entire set is unknown, set `-1`.\n\n\t- **ariaPosinset**: Defines an element's number or position in the current set when not all items are present in the DOM.\n\t**Note:** The value is an integer greater than or equal to 1, and less than or equal to the size of the set when that size is known.",
                "value": { "type": "ListItemAccessibilityAttributes" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the text alternative of the component.\n\n**Note**: If not provided a default text alternative will be set, if present.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "highlight",
                "description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              },
              {
                "name": "movable",
                "description": "Defines whether the item is movable.",
                "value": { "type": "boolean" }
              },
              {
                "name": "navigated",
                "description": "The navigated state of the list item.\nIf set to `true`, a navigation indicator is displayed at the end of the list item.",
                "value": { "type": "boolean" }
              },
              {
                "name": "selected",
                "description": "Defines the selected state of the component.",
                "value": { "type": "boolean" }
              },
              {
                "name": "tooltip",
                "description": "Defines the text of the tooltip that would be displayed for the list item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "type",
                "description": "Defines the visual indication and behavior of the list items.\nAvailable options are `Active` (by default), `Inactive`, `Detail` and `Navigation`.\n\n**Note:** When set to `Active` or `Navigation`, the item will provide visual response upon press and hover,\nwhile with type `Inactive` and `Detail` - will not.",
                "value": {
                  "type": "\"Navigation\" | \"Inactive\" | \"Active\" | \"Detail\""
                }
              }
            ],
            "events": [
              {
                "name": "detail-click",
                "description": "Fired when the user clicks on the detail button when type is `Detail`."
              }
            ]
          }
        },
        {
          "name": "ui5-li-group",
          "description": "### Overview\nThe `ui5-li-group` is a special list item, used only to create groups of list items.\n\nThis is the item to use inside a `ui5-list`.\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/ListItemGroup.js\";`\n---\n\n\n### **Events:**\n - **move** - Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action.\n- **move-over** - Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n\n### **Slots:**\n - **default** - Defines the items of the <code>ui5-li-group</code>.\n- **header** - Defines the header of the component.\n\n**Note:** Using this slot, the default header text of group and the value of `headerText` property will be overwritten.\n\n### **CSS Parts:**\n - **header** - Used to style the header item of the group\n- **title** - Used to style the title of the group header",
          "doc-url": "",
          "attributes": [
            {
              "name": "header-accessible-name",
              "description": "Defines the accessible name of the header.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "header-text",
              "description": "Defines the header text of the <code>ui5-li-group</code>.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "wrapping-type",
              "description": "Defines if the text of the component should wrap when it's too long.\nWhen set to \"Normal\", the content (title, description) will be wrapped\nusing the `ui5-expandable-text` component.<br/>\n\nThe text can wrap up to 100 characters on small screens (size S) and\nup to 300 characters on larger screens (size M and above). When text exceeds\nthese limits, it truncates with an ellipsis followed by a text expansion trigger.\n\nAvailable options are:\n- `None` (default) - The text will truncate with an ellipsis.\n- `Normal` - The text will wrap (without truncation).",
              "value": {
                "type": "\"None\" | \"Normal\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the items of the <code>ui5-li-group</code>."
            },
            {
              "name": "header",
              "description": "Defines the header of the component.\n\n**Note:** Using this slot, the default header text of group and the value of `headerText` property will be overwritten."
            }
          ],
          "events": [
            {
              "name": "move",
              "description": "Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action."
            },
            {
              "name": "move-over",
              "description": "Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "header-accessible-name",
                "description": "Defines the accessible name of the header.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "header-text",
                "description": "Defines the header text of the <code>ui5-li-group</code>.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "wrapping-type",
                "description": "Defines if the text of the component should wrap when it's too long.\nWhen set to \"Normal\", the content (title, description) will be wrapped\nusing the `ui5-expandable-text` component.<br/>\n\nThe text can wrap up to 100 characters on small screens (size S) and\nup to 300 characters on larger screens (size M and above). When text exceeds\nthese limits, it truncates with an ellipsis followed by a text expansion trigger.\n\nAvailable options are:\n- `None` (default) - The text will truncate with an ellipsis.\n- `Normal` - The text will wrap (without truncation).",
                "value": { "type": "\"None\" | \"Normal\"" }
              }
            ],
            "events": [
              {
                "name": "move",
                "description": "Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action."
              },
              {
                "name": "move-over",
                "description": "Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`."
              }
            ]
          }
        },
        {
          "name": "ui5-li-group-header",
          "description": "The `ui5-li-group-header` is a special list item, used only to separate other list items into logical groups.\n---\n\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the text alternative of the component.\n\n**Note:** If not provided a default text alternative will be set, if present.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "wrapping-type",
              "description": "Defines if the text of the component should wrap when it's too long.\nWhen set to \"Normal\", the content (title, description) will be wrapped\nusing the `ui5-expandable-text` component.<br/>\n\nThe text can wrap up to 100 characters on small screens (size S) and\nup to 300 characters on larger screens (size M and above). When text exceeds\nthese limits, it truncates with an ellipsis followed by a text expansion trigger.\n\nAvailable options are:\n- `None` (default) - The text will truncate with an ellipsis.\n- `Normal` - The text will wrap (without truncation).",
              "value": {
                "type": "\"None\" | \"Normal\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the text alternative of the component.\n\n**Note:** If not provided a default text alternative will be set, if present.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "wrapping-type",
                "description": "Defines if the text of the component should wrap when it's too long.\nWhen set to \"Normal\", the content (title, description) will be wrapped\nusing the `ui5-expandable-text` component.<br/>\n\nThe text can wrap up to 100 characters on small screens (size S) and\nup to 300 characters on larger screens (size M and above). When text exceeds\nthese limits, it truncates with an ellipsis followed by a text expansion trigger.\n\nAvailable options are:\n- `None` (default) - The text will truncate with an ellipsis.\n- `Normal` - The text will wrap (without truncation).",
                "value": { "type": "\"None\" | \"Normal\"" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-li",
          "description": "The `ui5-li` represents the simplest type of item for a `ui5-list`.\n\nThis is a list item,\nproviding the most common use cases such as `text`,\n`image` and `icon`.\n---\n\n\n### **Events:**\n - **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Slots:**\n - **default** - Defines the custom formatted text of the component.\n\n**Note:** For optimal text wrapping and a consistent layout, it is strongly recommended to use the `text` property.\n\nUse the `default` slot only when custom formatting with HTML elements (e.g., `<b>`, `<i>`) is required.\nBe aware that wrapping (via `wrappingType=\"Normal\"`) may not function correctly with custom HTML content in the `default` slot.\n\nIf both `text` and `default` slot are used, the `text` property takes precedence.\n- **deleteButton** - Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed.\n- **image** - **Note:** While the slot allows option for setting custom avatar, to match the\ndesign guidelines, please use the `ui5-avatar` with it's default size - S.\n\n**Note:** If bigger `ui5-avatar` needs to be used, then the size of the\n`ui5-li` should be customized in order to fit.\n\n### **CSS Parts:**\n - **additional-text** - Used to style the additionalText of the list item\n- **checkbox** - Used to style the checkbox rendered when the list item is in multiple selection mode\n- **content** - Used to style the content area of the list item\n- **delete-button** - Used to style the button rendered when the list item is in delete mode\n- **description** - Used to style the description of the list item\n- **detail-button** - Used to style the button rendered when the list item is of type detail\n- **icon** - Used to style the icon of the list item\n- **native-li** - Used to style the main li tag of the list item\n- **radio** - Used to style the radio button rendered when the list item is in single selection mode\n- **title** - Used to style the title of the list item",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessibility-attributes",
              "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **ariaSetsize**: Defines the number of items in the current set  when not all items in the set are present in the DOM.\n**Note:** The value is an integer reflecting the number of items in the complete set. If the size of the entire set is unknown, set `-1`.\n\n\t- **ariaPosinset**: Defines an element's number or position in the current set when not all items are present in the DOM.\n\t**Note:** The value is an integer greater than or equal to 1, and less than or equal to the size of the set when that size is known.",
              "value": {
                "type": "ListItemAccessibilityAttributes",
                "default": "{}"
              }
            },
            {
              "name": "accessible-name",
              "description": "Defines the text alternative of the component.\nNote: If not provided a default text alternative will be set, if present.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "additional-text",
              "description": "Defines the `additionalText`, displayed in the end of the list item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "additional-text-state",
              "description": "Defines the state of the `additionalText`.\n\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            },
            {
              "name": "description",
              "description": "Defines the description displayed right under the item text, if such is present.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "highlight",
              "description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            },
            {
              "name": "icon",
              "description": "Defines the `icon` source URI.\n\n**Note:**\nSAP-icons font provides numerous built-in icons. To find all the available icons, see the\n[Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "icon-end",
              "description": "Defines whether the `icon` should be displayed in the beginning of the list item or in the end.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "movable",
              "description": "Defines whether the item is movable.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "navigated",
              "description": "The navigated state of the list item.\nIf set to `true`, a navigation indicator is displayed at the end of the list item.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "selected",
              "description": "Defines the selected state of the component.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "text",
              "description": "Defines the text of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "tooltip",
              "description": "Defines the text of the tooltip that would be displayed for the list item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "type",
              "description": "Defines the visual indication and behavior of the list items.\nAvailable options are `Active` (by default), `Inactive`, `Detail` and `Navigation`.\n\n**Note:** When set to `Active` or `Navigation`, the item will provide visual response upon press and hover,\nwhile with type `Inactive` and `Detail` - will not.",
              "value": {
                "type": "\"Navigation\" | \"Inactive\" | \"Active\" | \"Detail\"",
                "default": "\"Active\""
              }
            },
            {
              "name": "wrapping-type",
              "description": "Defines if the text of the component should wrap when it's too long.\nWhen set to \"Normal\", the content (title, description) will be wrapped\nusing the `ui5-expandable-text` component.<br/>\n\nThe text can wrap up to 100 characters on small screens (size S) and\nup to 300 characters on larger screens (size M and above). When text exceeds\nthese limits, it truncates with an ellipsis followed by a text expansion trigger.\n\nAvailable options are:\n- `None` (default) - The text will truncate with an ellipsis.\n- `Normal` - The text will wrap (without truncation).",
              "value": {
                "type": "\"None\" | \"Normal\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the custom formatted text of the component.\n\n**Note:** For optimal text wrapping and a consistent layout, it is strongly recommended to use the `text` property.\n\nUse the `default` slot only when custom formatting with HTML elements (e.g., `<b>`, `<i>`) is required.\nBe aware that wrapping (via `wrappingType=\"Normal\"`) may not function correctly with custom HTML content in the `default` slot.\n\nIf both `text` and `default` slot are used, the `text` property takes precedence."
            },
            {
              "name": "deleteButton",
              "description": "Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed."
            },
            {
              "name": "image",
              "description": "**Note:** While the slot allows option for setting custom avatar, to match the\ndesign guidelines, please use the `ui5-avatar` with it's default size - S.\n\n**Note:** If bigger `ui5-avatar` needs to be used, then the size of the\n`ui5-li` should be customized in order to fit."
            }
          ],
          "events": [
            {
              "name": "detail-click",
              "description": "Fired when the user clicks on the detail button when type is `Detail`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessibility-attributes",
                "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **ariaSetsize**: Defines the number of items in the current set  when not all items in the set are present in the DOM.\n**Note:** The value is an integer reflecting the number of items in the complete set. If the size of the entire set is unknown, set `-1`.\n\n\t- **ariaPosinset**: Defines an element's number or position in the current set when not all items are present in the DOM.\n\t**Note:** The value is an integer greater than or equal to 1, and less than or equal to the size of the set when that size is known.",
                "value": { "type": "ListItemAccessibilityAttributes" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the text alternative of the component.\nNote: If not provided a default text alternative will be set, if present.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "additional-text",
                "description": "Defines the `additionalText`, displayed in the end of the list item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "additional-text-state",
                "description": "Defines the state of the `additionalText`.\n\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              },
              {
                "name": "description",
                "description": "Defines the description displayed right under the item text, if such is present.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "highlight",
                "description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              },
              {
                "name": "icon",
                "description": "Defines the `icon` source URI.\n\n**Note:**\nSAP-icons font provides numerous built-in icons. To find all the available icons, see the\n[Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "icon-end",
                "description": "Defines whether the `icon` should be displayed in the beginning of the list item or in the end.",
                "value": { "type": "boolean" }
              },
              {
                "name": "movable",
                "description": "Defines whether the item is movable.",
                "value": { "type": "boolean" }
              },
              {
                "name": "navigated",
                "description": "The navigated state of the list item.\nIf set to `true`, a navigation indicator is displayed at the end of the list item.",
                "value": { "type": "boolean" }
              },
              {
                "name": "selected",
                "description": "Defines the selected state of the component.",
                "value": { "type": "boolean" }
              },
              {
                "name": "text",
                "description": "Defines the text of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "tooltip",
                "description": "Defines the text of the tooltip that would be displayed for the list item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "type",
                "description": "Defines the visual indication and behavior of the list items.\nAvailable options are `Active` (by default), `Inactive`, `Detail` and `Navigation`.\n\n**Note:** When set to `Active` or `Navigation`, the item will provide visual response upon press and hover,\nwhile with type `Inactive` and `Detail` - will not.",
                "value": {
                  "type": "\"Navigation\" | \"Inactive\" | \"Active\" | \"Detail\""
                }
              },
              {
                "name": "wrapping-type",
                "description": "Defines if the text of the component should wrap when it's too long.\nWhen set to \"Normal\", the content (title, description) will be wrapped\nusing the `ui5-expandable-text` component.<br/>\n\nThe text can wrap up to 100 characters on small screens (size S) and\nup to 300 characters on larger screens (size M and above). When text exceeds\nthese limits, it truncates with an ellipsis followed by a text expansion trigger.\n\nAvailable options are:\n- `None` (default) - The text will truncate with an ellipsis.\n- `Normal` - The text will wrap (without truncation).",
                "value": { "type": "\"None\" | \"Normal\"" }
              }
            ],
            "events": [
              {
                "name": "detail-click",
                "description": "Fired when the user clicks on the detail button when type is `Detail`."
              }
            ]
          }
        },
        {
          "name": "ui5-menu",
          "description": "### Overview\n\n`ui5-menu` component represents a hierarchical menu structure.\n\n### Structure\n\nThe `ui5-menu` can hold two types of entities:\n\n- `ui5-menu-item` components\n- `ui5-menu-separator` - used to separate menu items with a line\n\nAn arbitrary hierarchy structure can be represented by recursively nesting menu items.\n\n### Keyboard Handling\n\nThe `ui5-menu` provides advanced keyboard handling.\nThe user can use the following keyboard shortcuts in order to navigate trough the tree:\n\n- `Arrow Up` / `Arrow Down` - Navigates up and down the menu items that are currently visible.\n- `Arrow Right`, `Space` or `Enter` - Opens a sub-menu if there are menu items nested\nin the currently clicked menu item.\n- `Arrow Left` or `Escape` - Closes the currently opened sub-menu.\n\nwhen there is `endContent` :\n- `Arrow Left` or `ArrowRight` - Navigate between the menu item actions and the menu item itself\n- `Arrow Up` / `Arrow Down` - Navigates up and down the currently visible menu items\n\n**Note:** If the text direction is set to Right-to-left (RTL), `Arrow Right` and `Arrow Left` functionality is swapped.\n\nApplication developers are responsible for ensuring that interactive elements placed in the `endContent` slot\nhave the correct accessibility behaviour, including their enabled or disabled states.\nThe menu does not manage these aspects when the menu item state changes.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Menu.js\";`\n---\n\n\n### **Events:**\n - **before-close** - Fired before the menu is closed. This event can be cancelled, which will prevent the menu from closing.\n- **before-open** - Fired before the menu is opened. This event can be cancelled, which will prevent the menu from opening.\n\n**Note:** Since 1.14.0 the event is also fired before a sub-menu opens.\n- **close** - Fired after the menu is closed.\n- **item-click** - Fired when an item is being clicked.\n\n**Note:** Since 1.17.0 the event is preventable, allowing the menu to remain open after an item is pressed.\n- **open** - Fired after the menu is opened.\n\n### **Slots:**\n - **default** - Defines the items of this component.\n\n**Note:** Use `ui5-menu-item` and `ui5-menu-separator` for their intended design.",
          "doc-url": "",
          "attributes": [
            {
              "name": "header-text",
              "description": "Defines the header text of the menu (displayed on mobile).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "horizontal-align",
              "description": "Determines the horizontal alignment of the menu relative to its opener control.",
              "value": {
                "type": "\"Start\" | \"End\" | \"Center\" | \"Stretch\"",
                "default": "\"Start\""
              }
            },
            {
              "name": "loading",
              "description": "Defines if a loading indicator would be displayed inside the corresponding ui5-menu popover.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "loading-delay",
              "description": "Defines the delay in milliseconds, after which the loading indicator will be displayed inside the corresponding ui5-menu popover.",
              "value": { "type": "number", "default": "1000" }
            },
            {
              "name": "open",
              "description": "Indicates if the menu is open.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "opener",
              "description": "Defines the ID or DOM Reference of the element at which the menu is shown.\nWhen using this attribute in a declarative way, you must only use the `id` (as a string) of the element at which you want to show the popover.\nYou can only set the `opener` attribute to a DOM Reference when using JavaScript.",
              "value": {
                "type": "string | HTMLElement | null | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "placement",
              "description": "Determines on which side the component is placed at.",
              "value": {
                "type": "\"Top\" | \"Bottom\" | \"Start\" | \"End\"",
                "default": "\"Bottom\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the items of this component.\n\n**Note:** Use `ui5-menu-item` and `ui5-menu-separator` for their intended design."
            }
          ],
          "events": [
            {
              "name": "before-close",
              "description": "Fired before the menu is closed. This event can be cancelled, which will prevent the menu from closing."
            },
            {
              "name": "before-open",
              "description": "Fired before the menu is opened. This event can be cancelled, which will prevent the menu from opening.\n\n**Note:** Since 1.14.0 the event is also fired before a sub-menu opens."
            },
            {
              "name": "close",
              "description": "Fired after the menu is closed."
            },
            {
              "name": "item-click",
              "description": "Fired when an item is being clicked.\n\n**Note:** Since 1.17.0 the event is preventable, allowing the menu to remain open after an item is pressed."
            },
            { "name": "open", "description": "Fired after the menu is opened." }
          ],
          "js": {
            "properties": [
              {
                "name": "header-text",
                "description": "Defines the header text of the menu (displayed on mobile).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "horizontal-align",
                "description": "Determines the horizontal alignment of the menu relative to its opener control.",
                "value": {
                  "type": "\"Start\" | \"End\" | \"Center\" | \"Stretch\""
                }
              },
              {
                "name": "loading",
                "description": "Defines if a loading indicator would be displayed inside the corresponding ui5-menu popover.",
                "value": { "type": "boolean" }
              },
              {
                "name": "loading-delay",
                "description": "Defines the delay in milliseconds, after which the loading indicator will be displayed inside the corresponding ui5-menu popover.",
                "value": { "type": "number" }
              },
              {
                "name": "open",
                "description": "Indicates if the menu is open.",
                "value": { "type": "boolean" }
              },
              {
                "name": "opener",
                "description": "Defines the ID or DOM Reference of the element at which the menu is shown.\nWhen using this attribute in a declarative way, you must only use the `id` (as a string) of the element at which you want to show the popover.\nYou can only set the `opener` attribute to a DOM Reference when using JavaScript.",
                "value": { "type": "string | HTMLElement | null | undefined" }
              },
              {
                "name": "placement",
                "description": "Determines on which side the component is placed at.",
                "value": {
                  "type": "\"Top\" | \"Bottom\" | \"Start\" | \"End\""
                }
              }
            ],
            "events": [
              {
                "name": "before-close",
                "description": "Fired before the menu is closed. This event can be cancelled, which will prevent the menu from closing."
              },
              {
                "name": "before-open",
                "description": "Fired before the menu is opened. This event can be cancelled, which will prevent the menu from opening.\n\n**Note:** Since 1.14.0 the event is also fired before a sub-menu opens."
              },
              {
                "name": "close",
                "description": "Fired after the menu is closed."
              },
              {
                "name": "item-click",
                "description": "Fired when an item is being clicked.\n\n**Note:** Since 1.17.0 the event is preventable, allowing the menu to remain open after an item is pressed."
              },
              {
                "name": "open",
                "description": "Fired after the menu is opened."
              }
            ]
          }
        },
        {
          "name": "ui5-menu-item",
          "description": "### Overview\n\n`ui5-menu-item` is the item to use inside a `ui5-menu`.\nAn arbitrary hierarchy structure can be represented by recursively nesting menu items.\n\n### Usage\n\n`ui5-menu-item` represents a node in a `ui5-menu`. The menu itself is rendered as a list,\nand each `ui5-menu-item` is represented by a list item in that list. Therefore, you should only use\n`ui5-menu-item` directly in your apps. The `ui5-li` list item is internal for the list, and not intended for public use.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/MenuItem.js\";`\n---\n\n\n### **Events:**\n - **before-close** - Fired before the menu is closed. This event can be cancelled, which will prevent the menu from closing.\n- **before-open** - Fired before the menu is opened. This event can be cancelled, which will prevent the menu from opening.\n\n**Note:** Since 1.14.0 the event is also fired before a sub-menu opens.\n- **check** - Fired when an item is checked or unchecked.\n- **close** - Fired after the menu is closed.\n- **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n- **open** - Fired after the menu is opened.\n\n### **Slots:**\n - **default** - Defines the items of this component.\n\n**Note:** The slot can hold menu item and menu separator items.\n\nIf there are items added to this slot, an arrow will be displayed at the end\nof the item in order to indicate that there are items added. In that case components added\nto `endContent` slot or `additionalText` content will not be displayed.\n\nThe priority of what will be displayed at the end of the menu item is as follows:\nsub-menu arrow (if there are items added in `items` slot) -> components added in `endContent` -> text set to `additionalText`.\n- **deleteButton** - Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed.\n- **endContent** - Defines the components that should be displayed at the end of the menu item.\n\n**Note:** It is highly recommended to slot only components of type `ui5-button`,`ui5-link`\nor `ui5-icon` in order to preserve the intended design. If there are components added to this slot,\nand there is text set in `additionalText`, it will not be displayed. If there are items added to `items` slot,\nnether `additionalText` nor components added to this slot would be displayed.\n\nThe priority of what will be displayed at the end of the menu item is as follows:\nsub-menu arrow (if there are items added in `items` slot) -> components added in `endContent` -> text set to `additionalText`.\n\nApplication developers are responsible for ensuring that interactive elements placed in the `endContent` slot\nhave the correct accessibility behaviour, including their enabled or disabled states.\nThe menu does not manage these aspects when the menu item state changes.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessibility-attributes",
              "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **ariaKeyShortcuts**: Indicated the availability of a keyboard shortcuts defined for the menu item.\n\n- **role**: Defines the role of the menu item. If not set, menu item will have default role=\"menuitem\".",
              "value": {
                "type": "MenuItemAccessibilityAttributes",
                "default": "{}"
              }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "additional-text",
              "description": "Defines the `additionalText`, displayed in the end of the menu item.\n\n**Note:** The additional text will not be displayed if there are items added in `items` slot or there are\ncomponents added to `endContent` slot.\n\nThe priority of what will be displayed at the end of the menu item is as follows:\nsub-menu arrow (if there are items added in `items` slot) -> components added in `endContent` -> text set to `additionalText`.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "checked",
              "description": "Defines whether menu item is in checked state.\n\n**Note:** checked state is only taken into account when menu item is added to menu item group\nwith `checkMode` other than `None`.\n\n**Note:** A checked menu item has a checkmark displayed at its end.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "Defines whether menu item is in disabled state.\n\n**Note:** A disabled menu item is noninteractive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "highlight",
              "description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            },
            {
              "name": "icon",
              "description": "Defines the icon to be displayed as graphical element within the component.\nThe SAP-icons font provides numerous options.\n\n**Example:**\n\nSee all the available icons in the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "loading",
              "description": "Defines the delay in milliseconds, after which the loading indicator will be displayed inside the corresponding menu popover.\n\n**Note:** If set to `true` a busy indicator component will be displayed into the related one to the current menu item sub-menu popover.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "loading-delay",
              "description": "Defines the delay in milliseconds, after which the loading indicator will be displayed inside the corresponding menu popover.",
              "value": { "type": "number", "default": "1000" }
            },
            {
              "name": "navigated",
              "description": "The navigated state of the list item.\nIf set to `true`, a navigation indicator is displayed at the end of the list item.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "selected",
              "description": "Defines the selected state of the component.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "text",
              "description": "Defines the text of the tree item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "tooltip",
              "description": "Defines the text of the tooltip for the menu item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "type",
              "description": "Defines the visual indication and behavior of the list items.\nAvailable options are `Active` (by default), `Inactive`, `Detail` and `Navigation`.\n\n**Note:** When set to `Active` or `Navigation`, the item will provide visual response upon press and hover,\nwhile with type `Inactive` and `Detail` - will not.",
              "value": {
                "type": "\"Navigation\" | \"Inactive\" | \"Active\" | \"Detail\"",
                "default": "\"Active\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the items of this component.\n\n**Note:** The slot can hold menu item and menu separator items.\n\nIf there are items added to this slot, an arrow will be displayed at the end\nof the item in order to indicate that there are items added. In that case components added\nto `endContent` slot or `additionalText` content will not be displayed.\n\nThe priority of what will be displayed at the end of the menu item is as follows:\nsub-menu arrow (if there are items added in `items` slot) -> components added in `endContent` -> text set to `additionalText`."
            },
            {
              "name": "deleteButton",
              "description": "Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed."
            },
            {
              "name": "endContent",
              "description": "Defines the components that should be displayed at the end of the menu item.\n\n**Note:** It is highly recommended to slot only components of type `ui5-button`,`ui5-link`\nor `ui5-icon` in order to preserve the intended design. If there are components added to this slot,\nand there is text set in `additionalText`, it will not be displayed. If there are items added to `items` slot,\nnether `additionalText` nor components added to this slot would be displayed.\n\nThe priority of what will be displayed at the end of the menu item is as follows:\nsub-menu arrow (if there are items added in `items` slot) -> components added in `endContent` -> text set to `additionalText`.\n\nApplication developers are responsible for ensuring that interactive elements placed in the `endContent` slot\nhave the correct accessibility behaviour, including their enabled or disabled states.\nThe menu does not manage these aspects when the menu item state changes."
            }
          ],
          "events": [
            {
              "name": "before-close",
              "description": "Fired before the menu is closed. This event can be cancelled, which will prevent the menu from closing."
            },
            {
              "name": "before-open",
              "description": "Fired before the menu is opened. This event can be cancelled, which will prevent the menu from opening.\n\n**Note:** Since 1.14.0 the event is also fired before a sub-menu opens."
            },
            {
              "name": "check",
              "description": "Fired when an item is checked or unchecked."
            },
            {
              "name": "close",
              "description": "Fired after the menu is closed."
            },
            {
              "name": "detail-click",
              "description": "Fired when the user clicks on the detail button when type is `Detail`."
            },
            { "name": "open", "description": "Fired after the menu is opened." }
          ],
          "js": {
            "properties": [
              {
                "name": "accessibility-attributes",
                "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **ariaKeyShortcuts**: Indicated the availability of a keyboard shortcuts defined for the menu item.\n\n- **role**: Defines the role of the menu item. If not set, menu item will have default role=\"menuitem\".",
                "value": { "type": "MenuItemAccessibilityAttributes" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "additional-text",
                "description": "Defines the `additionalText`, displayed in the end of the menu item.\n\n**Note:** The additional text will not be displayed if there are items added in `items` slot or there are\ncomponents added to `endContent` slot.\n\nThe priority of what will be displayed at the end of the menu item is as follows:\nsub-menu arrow (if there are items added in `items` slot) -> components added in `endContent` -> text set to `additionalText`.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "checked",
                "description": "Defines whether menu item is in checked state.\n\n**Note:** checked state is only taken into account when menu item is added to menu item group\nwith `checkMode` other than `None`.\n\n**Note:** A checked menu item has a checkmark displayed at its end.",
                "value": { "type": "boolean" }
              },
              {
                "name": "disabled",
                "description": "Defines whether menu item is in disabled state.\n\n**Note:** A disabled menu item is noninteractive.",
                "value": { "type": "boolean" }
              },
              {
                "name": "highlight",
                "description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              },
              {
                "name": "icon",
                "description": "Defines the icon to be displayed as graphical element within the component.\nThe SAP-icons font provides numerous options.\n\n**Example:**\n\nSee all the available icons in the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "loading",
                "description": "Defines the delay in milliseconds, after which the loading indicator will be displayed inside the corresponding menu popover.\n\n**Note:** If set to `true` a busy indicator component will be displayed into the related one to the current menu item sub-menu popover.",
                "value": { "type": "boolean" }
              },
              {
                "name": "loading-delay",
                "description": "Defines the delay in milliseconds, after which the loading indicator will be displayed inside the corresponding menu popover.",
                "value": { "type": "number" }
              },
              {
                "name": "navigated",
                "description": "The navigated state of the list item.\nIf set to `true`, a navigation indicator is displayed at the end of the list item.",
                "value": { "type": "boolean" }
              },
              {
                "name": "selected",
                "description": "Defines the selected state of the component.",
                "value": { "type": "boolean" }
              },
              {
                "name": "text",
                "description": "Defines the text of the tree item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "tooltip",
                "description": "Defines the text of the tooltip for the menu item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "type",
                "description": "Defines the visual indication and behavior of the list items.\nAvailable options are `Active` (by default), `Inactive`, `Detail` and `Navigation`.\n\n**Note:** When set to `Active` or `Navigation`, the item will provide visual response upon press and hover,\nwhile with type `Inactive` and `Detail` - will not.",
                "value": {
                  "type": "\"Navigation\" | \"Inactive\" | \"Active\" | \"Detail\""
                }
              }
            ],
            "events": [
              {
                "name": "before-close",
                "description": "Fired before the menu is closed. This event can be cancelled, which will prevent the menu from closing."
              },
              {
                "name": "before-open",
                "description": "Fired before the menu is opened. This event can be cancelled, which will prevent the menu from opening.\n\n**Note:** Since 1.14.0 the event is also fired before a sub-menu opens."
              },
              {
                "name": "check",
                "description": "Fired when an item is checked or unchecked."
              },
              {
                "name": "close",
                "description": "Fired after the menu is closed."
              },
              {
                "name": "detail-click",
                "description": "Fired when the user clicks on the detail button when type is `Detail`."
              },
              {
                "name": "open",
                "description": "Fired after the menu is opened."
              }
            ]
          }
        },
        {
          "name": "ui5-menu-item-group",
          "description": "### Overview\n\nThe `ui5-menu-item-group` component represents a group of items designed for use inside a `ui5-menu`.\nItems belonging to the same group should be wrapped by a `ui5-menu-item-group`.\nEach group can have an `checkMode` property, which defines the check mode for the items within the group.\nThe possible values for `checkMode` are:\n- 'None' (default) - no items can be checked\n- 'Single' - Only one item can be checked at a time\n- 'Multiple' - Multiple items can be checked simultaneously\n\n**Note:** If the `checkMode` property is set to 'Single', only one item can remain checked at any given time.\nIf multiple items are marked as checked, the last checked item will take precedence.\n\n### Usage\n\n`ui5-menu-item-group` represents a collection of `ui5-menu-item` components that can have the same check mode.\nThe items are addeed to the group's `items` slot.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/MenuItemGroup.js\";`\n---\n\n\n### **Slots:**\n - **default** - Defines the items of this component.\n**Note:** The slot can hold any combination of components of type `ui5-menu-item` or `ui5-menu-separator` or both.",
          "doc-url": "",
          "attributes": [
            {
              "name": "check-mode",
              "description": "Defines the component's check mode.",
              "value": {
                "type": "\"None\" | \"Single\" | \"Multiple\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the items of this component.\n**Note:** The slot can hold any combination of components of type `ui5-menu-item` or `ui5-menu-separator` or both."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "check-mode",
                "description": "Defines the component's check mode.",
                "value": { "type": "\"None\" | \"Single\" | \"Multiple\"" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-menu-separator",
          "description": "The `ui5-menu-separator` represents a horizontal line to separate menu items inside a `ui5-menu`.\n---\n",
          "doc-url": "",
          "attributes": [],
          "events": [],
          "js": { "properties": [], "events": [] }
        },
        {
          "name": "ui5-message-strip",
          "description": "### Overview\n\nThe ui5-message-strip component allows for the embedding of application-related messages.\nIt supports four semantic designs, each with its own color and icon: \"Information\", \"Positive\", \"Critical\", and \"Negative\".\nAdditionally, users can choose from two color sets (\"ColorSet1\" and \"ColorSet2\"), each containing 10 predefined color schemes.\nEach message shows a \"Close\" button, so that it can be removed from the UI, if needed.\n\n### Usage\n\nFor the `ui5-message-strip` component, you can define whether it displays\nan icon in the beginning and a close button. Moreover, its size and background\ncan be controlled with CSS.\n\n### Keyboard Handling\n\n#### Fast Navigation\nThis component provides a build in fast navigation group which can be used via [F6] / [Shift] + [F6] / [Ctrl] + [Alt/Option] / [Down] or [Ctrl] + [Alt/Option] + [Up].\nIn order to use this functionality, you need to import the following module:\n`import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"`\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/MessageStrip.js\";`\n---\n\n\n### **Events:**\n - **close** - Fired when the close button is pressed either with a\nclick/tap or by using the Enter or Space key.\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.\n- **icon** - Defines the content to be displayed as graphical element within the component.\n\n**Note:** If no icon is given, the default icon for the component type will be used.\nThe SAP-icons font provides numerous options.\n\nSee all the available icons in the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
          "doc-url": "",
          "attributes": [
            {
              "name": "color-scheme",
              "description": "Defines the color scheme of the component.\nThere are 10 predefined schemes.\nTo use one you can set a number from `\"1\"` to `\"10\"`. The `colorScheme` `\"1\"` will be set by default.",
              "value": { "type": "string", "default": "\"1\"" }
            },
            {
              "name": "design",
              "description": "Defines the component type.",
              "value": {
                "type": "\"Positive\" | \"Critical\" | \"Negative\" | \"Information\" | \"ColorSet1\" | \"ColorSet2\"",
                "default": "\"Information\""
              }
            },
            {
              "name": "hide-close-button",
              "description": "Defines whether the MessageStrip renders close button.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "hide-icon",
              "description": "Defines whether the MessageStrip will show an icon in the beginning.\nYou can directly provide an icon with the `icon` slot. Otherwise, the default icon for the type will be used.\n\n * **Note:** If <code>MessageStripDesign.ColorSet1</code> or <code>MessageStripDesign.ColorSet2</code> value is set to the <code>design</code> property, default icon will not be presented.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design."
            },
            {
              "name": "icon",
              "description": "Defines the content to be displayed as graphical element within the component.\n\n**Note:** If no icon is given, the default icon for the component type will be used.\nThe SAP-icons font provides numerous options.\n\nSee all the available icons in the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html)."
            }
          ],
          "events": [
            {
              "name": "close",
              "description": "Fired when the close button is pressed either with a\nclick/tap or by using the Enter or Space key."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "color-scheme",
                "description": "Defines the color scheme of the component.\nThere are 10 predefined schemes.\nTo use one you can set a number from `\"1\"` to `\"10\"`. The `colorScheme` `\"1\"` will be set by default.",
                "value": { "type": "string" }
              },
              {
                "name": "design",
                "description": "Defines the component type.",
                "value": {
                  "type": "\"Positive\" | \"Critical\" | \"Negative\" | \"Information\" | \"ColorSet1\" | \"ColorSet2\""
                }
              },
              {
                "name": "hide-close-button",
                "description": "Defines whether the MessageStrip renders close button.",
                "value": { "type": "boolean" }
              },
              {
                "name": "hide-icon",
                "description": "Defines whether the MessageStrip will show an icon in the beginning.\nYou can directly provide an icon with the `icon` slot. Otherwise, the default icon for the type will be used.\n\n * **Note:** If <code>MessageStripDesign.ColorSet1</code> or <code>MessageStripDesign.ColorSet2</code> value is set to the <code>design</code> property, default icon will not be presented.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "close",
                "description": "Fired when the close button is pressed either with a\nclick/tap or by using the Enter or Space key."
              }
            ]
          }
        },
        {
          "name": "ui5-monthpicker",
          "description": "Month picker component.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "calendar-week-numbering",
              "description": "Defines how to calculate calendar weeks and first day of the week.\nIf not set, the calendar will be displayed according to the currently set global configuration.",
              "value": {
                "type": "\"Default\" | \"ISO_8601\" | \"MiddleEastern\" | \"WesternTraditional\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "display-format",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "format-pattern",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "max-date",
              "description": "Determines the maximum date available for selection.\n\n**Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "min-date",
              "description": "Determines the minimum date available for selection.\n\n**Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "primary-calendar-type",
              "description": "Sets a calendar type used for display.\nIf not set, the calendar type of the global configuration is used.",
              "value": {
                "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "secondary-calendar-type",
              "description": "Defines the secondary calendar type.\nIf not set, the calendar will only show the primary calendar type.",
              "value": {
                "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "value-format",
              "description": "Determines the format, used for the value attribute.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "calendar-week-numbering",
                "description": "Defines how to calculate calendar weeks and first day of the week.\nIf not set, the calendar will be displayed according to the currently set global configuration.",
                "value": {
                  "type": "\"Default\" | \"ISO_8601\" | \"MiddleEastern\" | \"WesternTraditional\""
                }
              },
              {
                "name": "display-format",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "format-pattern",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "max-date",
                "description": "Determines the maximum date available for selection.\n\n**Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).",
                "value": { "type": "string" }
              },
              {
                "name": "min-date",
                "description": "Determines the minimum date available for selection.\n\n**Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).",
                "value": { "type": "string" }
              },
              {
                "name": "primary-calendar-type",
                "description": "Sets a calendar type used for display.\nIf not set, the calendar type of the global configuration is used.",
                "value": {
                  "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined"
                }
              },
              {
                "name": "secondary-calendar-type",
                "description": "Defines the secondary calendar type.\nIf not set, the calendar will only show the primary calendar type.",
                "value": {
                  "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined"
                }
              },
              {
                "name": "value-format",
                "description": "Determines the format, used for the value attribute.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-multi-combobox",
          "description": "### Overview\n\nThe `ui5-multi-combobox` component consists of a list box with items and a text field allowing the user to either type a value directly into the text field, or choose from the list of existing items.\n\nThe drop-down list is used for selecting and filtering values, it enables users to select one or more options from a predefined list. The control provides an editable input field to filter the list, and a dropdown arrow to expand/collapse the list of available options.\nThe options in the list have checkboxes that permit multi-selection. Entered values are displayed as tokens.\n### Structure\nThe `ui5-multi-combobox` consists of the following elements:\n\n-  Tokenizer - a list of tokens with selected options.\n-  Input field - displays the selected option/s as token/s. Users can type to filter the list.\n-  Drop-down arrow - expands\\collapses the option list.\n-  Option list - the list of available options.\n\n### Keyboard Handling\n\nThe `ui5-multi-combobox` provides advanced keyboard handling.\n\n#### Picker\nIf the `ui5-multi-combobox` is focused,\nyou can open or close the drop-down by pressing [F4], [Alt] + [Up] or [Alt] + [Down] keys.\nOnce the drop-down is opened, you can use the `UP` and `DOWN` arrow keys\nto navigate through the available options and select one by pressing the `Space` or `Enter` keys.\n[Ctrl]+[Alt]+[F8] or [Command]+[Option]+[F8] - Focuses the first link in the value state message, if available. Pressing [Tab] moves the focus to the next link in the value state message, or closes the value state message if there are no more links.\n\n#### Tokens\n\n-  Left/Right arrow keys - moves the focus selection form the currently focused token to the previous/next one (if available).\n-  Delete -  deletes the token and focuses the previous token.\n-  Backspace -  deletes the token and focus the next token.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/MultiComboBox.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter or on focusout.\n- **close** - Fired when the dropdown is closed.\n- **input** - Fired when the value of the component changes at each keystroke or clear icon is pressed.\n- **open** - Fired when the dropdown is opened.\n- **selection-change** - Fired when selection is changed by user interaction.\n- **value-state-change** - Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state.\n\n### **Slots:**\n - **default** - Defines the component items.\n- **icon** - Defines the icon to be displayed in the component.\n- **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.\n\n### **CSS Parts:**\n - **token-\\{index\\}** - Used to style each token(where `token-0` corresponds to the first item)",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is in disabled state.\n\n**Note:** A disabled component is completely noninteractive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "filter",
              "description": "Defines the filter type of the component.",
              "value": {
                "type": "\"None\" | \"StartsWithPerTerm\" | \"StartsWith\" | \"Contains\"",
                "default": "\"StartsWithPerTerm\""
              }
            },
            {
              "name": "loading",
              "description": "Indicates whether a loading indicator should be shown in the picker.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.\n**Note:** When the component is used inside a form element,\nthe value is sent as the first element in the form data, even if it's empty.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "no-typeahead",
              "description": "Defines whether the value will be autcompleted to match an item",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "no-validation",
              "description": "Defines if the user input will be prevented, if no matching item has been found",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "open",
              "description": "Indicates whether the items picker is open.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "placeholder",
              "description": "Defines a short hint intended to aid the user with data entry when the\ncomponent has no value.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "readonly",
              "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "selected-values",
              "description": "Defines the values of the selected items.\n\nUse this property to programmatically select items by their `value` property.\nEach string in the array should match the `value` attribute of a `ui5-mcb-item`.\n\n**Note:** If an item doesn't have a `value` attribute set, it cannot be selected via this property.\n\n**Note:** The recommended approach is to set the `value` property on each `ui5-mcb-item`\nand use `selectedValues` for programmatic selection. The `selected` property on items is\ndeprecated and should not be used together with `selectedValues`.",
              "value": { "type": "string[]", "default": "[]" }
            },
            {
              "name": "show-clear-icon",
              "description": "Defines whether the clear icon of the multi-combobox will be shown.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-select-all",
              "description": "Determines if the select all checkbox is visible on top of suggestions.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "value",
              "description": "Defines the value of the component.\n\n**Note:** The property is updated upon typing.",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the component items."
            },
            {
              "name": "icon",
              "description": "Defines the icon to be displayed in the component."
            },
            {
              "name": "valueStateMessage",
              "description": "Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state."
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the input operation has finished by pressing Enter or on focusout."
            },
            {
              "name": "close",
              "description": "Fired when the dropdown is closed."
            },
            {
              "name": "input",
              "description": "Fired when the value of the component changes at each keystroke or clear icon is pressed."
            },
            {
              "name": "open",
              "description": "Fired when the dropdown is opened."
            },
            {
              "name": "selection-change",
              "description": "Fired when selection is changed by user interaction."
            },
            {
              "name": "value-state-change",
              "description": "Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is in disabled state.\n\n**Note:** A disabled component is completely noninteractive.",
                "value": { "type": "boolean" }
              },
              {
                "name": "filter",
                "description": "Defines the filter type of the component.",
                "value": {
                  "type": "\"None\" | \"StartsWithPerTerm\" | \"StartsWith\" | \"Contains\""
                }
              },
              {
                "name": "loading",
                "description": "Indicates whether a loading indicator should be shown in the picker.",
                "value": { "type": "boolean" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.\n**Note:** When the component is used inside a form element,\nthe value is sent as the first element in the form data, even if it's empty.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "no-typeahead",
                "description": "Defines whether the value will be autcompleted to match an item",
                "value": { "type": "boolean" }
              },
              {
                "name": "no-validation",
                "description": "Defines if the user input will be prevented, if no matching item has been found",
                "value": { "type": "boolean" }
              },
              {
                "name": "open",
                "description": "Indicates whether the items picker is open.",
                "value": { "type": "boolean" }
              },
              {
                "name": "placeholder",
                "description": "Defines a short hint intended to aid the user with data entry when the\ncomponent has no value.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "readonly",
                "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
                "value": { "type": "boolean" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.",
                "value": { "type": "boolean" }
              },
              {
                "name": "selected-values",
                "description": "Defines the values of the selected items.\n\nUse this property to programmatically select items by their `value` property.\nEach string in the array should match the `value` attribute of a `ui5-mcb-item`.\n\n**Note:** If an item doesn't have a `value` attribute set, it cannot be selected via this property.\n\n**Note:** The recommended approach is to set the `value` property on each `ui5-mcb-item`\nand use `selectedValues` for programmatic selection. The `selected` property on items is\ndeprecated and should not be used together with `selectedValues`.",
                "value": { "type": "string[]" }
              },
              {
                "name": "show-clear-icon",
                "description": "Defines whether the clear icon of the multi-combobox will be shown.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-select-all",
                "description": "Determines if the select all checkbox is visible on top of suggestions.",
                "value": { "type": "boolean" }
              },
              {
                "name": "value",
                "description": "Defines the value of the component.\n\n**Note:** The property is updated upon typing.",
                "value": { "type": "string" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the input operation has finished by pressing Enter or on focusout."
              },
              {
                "name": "close",
                "description": "Fired when the dropdown is closed."
              },
              {
                "name": "input",
                "description": "Fired when the value of the component changes at each keystroke or clear icon is pressed."
              },
              {
                "name": "open",
                "description": "Fired when the dropdown is opened."
              },
              {
                "name": "selection-change",
                "description": "Fired when selection is changed by user interaction."
              },
              {
                "name": "value-state-change",
                "description": "Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state."
              }
            ]
          }
        },
        {
          "name": "ui5-mcb-item",
          "description": "The `ui5-mcb-item` represents the item for a `ui5-multi-combobox`.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "additional-text",
              "description": "Defines the additional text of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "selected",
              "description": "Defines the selected state of the component.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "text",
              "description": "Defines the text of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "value",
              "description": "Defines the value of the component.\n\nUse this property to associate a unique identifier with the item,\nseparate from the display text. This enables selecting items\nprogrammatically via `selectedValues` on the parent MultiComboBox.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "additional-text",
                "description": "Defines the additional text of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "selected",
                "description": "Defines the selected state of the component.",
                "value": { "type": "boolean" }
              },
              {
                "name": "text",
                "description": "Defines the text of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "value",
                "description": "Defines the value of the component.\n\nUse this property to associate a unique identifier with the item,\nseparate from the display text. This enables selecting items\nprogrammatically via `selectedValues` on the parent MultiComboBox.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-mcb-item-group",
          "description": "The `ui5-mcb-item-group` is type of suggestion item,\nthat can be used to split the `ui5-multi-combobox` suggestions into groups.\n---\n\n\n### **Events:**\n - **move** - Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action.\n- **move-over** - Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n\n### **Slots:**\n - **default** - Defines the items of the <code>ui5-mcb-item-group</code>.\n- **header** - Defines the header of the component.\n\n**Note:** Using this slot, the default header text of group and the value of `headerText` property will be overwritten.\n\n### **CSS Parts:**\n - **header** - Used to style the header item of the group\n- **title** - Used to style the title of the group header",
          "doc-url": "",
          "attributes": [
            {
              "name": "header-accessible-name",
              "description": "Defines the accessible name of the header.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "header-text",
              "description": "Defines the header text of the <code>ui5-li-group</code>.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "wrapping-type",
              "description": "Defines if the text of the component should wrap when it's too long.\nWhen set to \"Normal\", the content (title, description) will be wrapped\nusing the `ui5-expandable-text` component.<br/>\n\nThe text can wrap up to 100 characters on small screens (size S) and\nup to 300 characters on larger screens (size M and above). When text exceeds\nthese limits, it truncates with an ellipsis followed by a text expansion trigger.\n\nAvailable options are:\n- `None` (default) - The text will truncate with an ellipsis.\n- `Normal` - The text will wrap (without truncation).",
              "value": {
                "type": "\"None\" | \"Normal\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the items of the <code>ui5-mcb-item-group</code>."
            },
            {
              "name": "header",
              "description": "Defines the header of the component.\n\n**Note:** Using this slot, the default header text of group and the value of `headerText` property will be overwritten."
            }
          ],
          "events": [
            {
              "name": "move",
              "description": "Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action."
            },
            {
              "name": "move-over",
              "description": "Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "header-accessible-name",
                "description": "Defines the accessible name of the header.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "header-text",
                "description": "Defines the header text of the <code>ui5-li-group</code>.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "wrapping-type",
                "description": "Defines if the text of the component should wrap when it's too long.\nWhen set to \"Normal\", the content (title, description) will be wrapped\nusing the `ui5-expandable-text` component.<br/>\n\nThe text can wrap up to 100 characters on small screens (size S) and\nup to 300 characters on larger screens (size M and above). When text exceeds\nthese limits, it truncates with an ellipsis followed by a text expansion trigger.\n\nAvailable options are:\n- `None` (default) - The text will truncate with an ellipsis.\n- `Normal` - The text will wrap (without truncation).",
                "value": { "type": "\"None\" | \"Normal\"" }
              }
            ],
            "events": [
              {
                "name": "move",
                "description": "Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action."
              },
              {
                "name": "move-over",
                "description": "Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`."
              }
            ]
          }
        },
        {
          "name": "ui5-multi-input",
          "description": "### Overview\nA `ui5-multi-input` field allows the user to enter multiple values, which are displayed as `ui5-token`.\n\nUser can choose interaction for creating tokens.\nFiori Guidelines say that user should create tokens when:\n\n- Type a value in the input and press enter or focus out the input field (`change` event is fired)\n- Move between suggestion items (`selection-change` event is fired)\n- Clicking on a suggestion item (`selection-change` event is fired if the clicked item is different than the current value. Also `change` event is fired )\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/MultiInput.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter or on focusout.\n- **close** - Fired when the suggestions picker is closed.\n- **input** - Fired when the value of the component changes at each keystroke,\nand when a suggestion item has been selected.\n- **open** - Fired when the suggestions picker is open.\n- **select** - Fired when some text has been selected.\n- **selection-change** - Fired when the user navigates to a suggestion item via the ARROW keys,\nas a preview, before the final selection.\n- **token-delete** - Fired when tokens are being deleted.\n- **value-help-trigger** - Fired when the value help icon is pressed\nand F4 or ALT/OPTION + ARROW_UP/ARROW_DOWN keyboard keys are used.\n\n### **Slots:**\n - **default** - Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.\n\n**Note:** Input with type `Number` does not support suggestions.\n- **icon** - Defines the icon to be displayed in the component.\n- **tokens** - Defines the component tokens.\n- **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.\n\n**Note:** If the component has `suggestionItems`,\nthe `valueStateMessage` would be displayed as part of the same popover, if used on desktop, or dialog - on phone.\n\n### **CSS Parts:**\n - **clear-icon** - Used to style the clear icon, which can be pressed to clear user input text\n- **input** - Used to style the native input element\n- **root** - Used to style the root DOM element of the Input component",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Receives id(or many ids) of the elements that describe the input.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the input.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is in disabled state.\n\n**Note:** A disabled component is completely noninteractive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "filter",
              "description": "Defines the filter type of the component.",
              "value": {
                "type": "\"None\" | \"StartsWithPerTerm\" | \"StartsWith\" | \"Contains\"",
                "default": "\"None\""
              }
            },
            {
              "name": "maxlength",
              "description": "Sets the maximum number of characters available in the input field.\n\n**Note:** This property is not compatible with the ui5-input type InputType.Number. If the ui5-input type is set to Number, the maxlength value is ignored.",
              "value": { "type": "number | undefined", "default": "undefined" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.\n**Note:** When the component is used inside a form element,\nthe value is sent as the first element in the form data, even if it's empty.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "no-typeahead",
              "description": "Defines whether the value will be autcompleted to match an item",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "open",
              "description": "Defines whether the suggestions picker is open.\nThe picker will not open if the `showSuggestions` property is set to `false`, the input is disabled or the input is readonly.\nThe picker will close automatically and `close` event will be fired if the input is not in the viewport.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "placeholder",
              "description": "Defines a short hint intended to aid the user with data entry when the\ncomponent has no value.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "readonly",
              "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-clear-icon",
              "description": "Defines whether the clear icon of the input will be shown.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-suggestions",
              "description": "Defines whether the component should show suggestions, if such are present.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-value-help-icon",
              "description": "Determines whether a value help icon will be visualized in the end of the input.\nPressing the icon will fire `value-help-trigger` event.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "type",
              "description": "Defines the HTML type of the component.\n\n**Notes:**\n\n- The particular effect of this property differs depending on the browser\nand the current language settings, especially for type `Number`.\n- The property is mostly intended to be used with touch devices\nthat use different soft keyboard layouts depending on the given input type.\n- Type `Number` does not support suggestions.",
              "value": {
                "type": "\"Text\" | \"Email\" | \"Number\" | \"Password\" | \"Tel\" | \"URL\" | \"Search\"",
                "default": "\"Text\""
              }
            },
            {
              "name": "value",
              "description": "Defines the value of the component.\n\n**Note:** The property is updated upon typing.",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the suggestion items.\n\n**Note:** The suggestions would be displayed only if the `showSuggestions`\nproperty is set to `true`.\n\n**Note:** The `<ui5-suggestion-item>`, `<ui5-suggestion-item-group>` and `ui5-suggestion-item-custom` are recommended to be used as suggestion items.\n\n**Note:** Input with type `Number` does not support suggestions."
            },
            {
              "name": "icon",
              "description": "Defines the icon to be displayed in the component."
            },
            {
              "name": "tokens",
              "description": "Defines the component tokens."
            },
            {
              "name": "valueStateMessage",
              "description": "Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.\n\n**Note:** If the component has `suggestionItems`,\nthe `valueStateMessage` would be displayed as part of the same popover, if used on desktop, or dialog - on phone."
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the input operation has finished by pressing Enter or on focusout."
            },
            {
              "name": "close",
              "description": "Fired when the suggestions picker is closed."
            },
            {
              "name": "input",
              "description": "Fired when the value of the component changes at each keystroke,\nand when a suggestion item has been selected."
            },
            {
              "name": "open",
              "description": "Fired when the suggestions picker is open."
            },
            {
              "name": "select",
              "description": "Fired when some text has been selected."
            },
            {
              "name": "selection-change",
              "description": "Fired when the user navigates to a suggestion item via the ARROW keys,\nas a preview, before the final selection."
            },
            {
              "name": "token-delete",
              "description": "Fired when tokens are being deleted."
            },
            {
              "name": "value-help-trigger",
              "description": "Fired when the value help icon is pressed\nand F4 or ALT/OPTION + ARROW_UP/ARROW_DOWN keyboard keys are used."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Receives id(or many ids) of the elements that describe the input.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the input.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is in disabled state.\n\n**Note:** A disabled component is completely noninteractive.",
                "value": { "type": "boolean" }
              },
              {
                "name": "filter",
                "description": "Defines the filter type of the component.",
                "value": {
                  "type": "\"None\" | \"StartsWithPerTerm\" | \"StartsWith\" | \"Contains\""
                }
              },
              {
                "name": "maxlength",
                "description": "Sets the maximum number of characters available in the input field.\n\n**Note:** This property is not compatible with the ui5-input type InputType.Number. If the ui5-input type is set to Number, the maxlength value is ignored.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.\n**Note:** When the component is used inside a form element,\nthe value is sent as the first element in the form data, even if it's empty.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "no-typeahead",
                "description": "Defines whether the value will be autcompleted to match an item",
                "value": { "type": "boolean" }
              },
              {
                "name": "open",
                "description": "Defines whether the suggestions picker is open.\nThe picker will not open if the `showSuggestions` property is set to `false`, the input is disabled or the input is readonly.\nThe picker will close automatically and `close` event will be fired if the input is not in the viewport.",
                "value": { "type": "boolean" }
              },
              {
                "name": "placeholder",
                "description": "Defines a short hint intended to aid the user with data entry when the\ncomponent has no value.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "readonly",
                "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
                "value": { "type": "boolean" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-clear-icon",
                "description": "Defines whether the clear icon of the input will be shown.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-suggestions",
                "description": "Defines whether the component should show suggestions, if such are present.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-value-help-icon",
                "description": "Determines whether a value help icon will be visualized in the end of the input.\nPressing the icon will fire `value-help-trigger` event.",
                "value": { "type": "boolean" }
              },
              {
                "name": "type",
                "description": "Defines the HTML type of the component.\n\n**Notes:**\n\n- The particular effect of this property differs depending on the browser\nand the current language settings, especially for type `Number`.\n- The property is mostly intended to be used with touch devices\nthat use different soft keyboard layouts depending on the given input type.\n- Type `Number` does not support suggestions.",
                "value": {
                  "type": "\"Text\" | \"Email\" | \"Number\" | \"Password\" | \"Tel\" | \"URL\" | \"Search\""
                }
              },
              {
                "name": "value",
                "description": "Defines the value of the component.\n\n**Note:** The property is updated upon typing.",
                "value": { "type": "string" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the input operation has finished by pressing Enter or on focusout."
              },
              {
                "name": "close",
                "description": "Fired when the suggestions picker is closed."
              },
              {
                "name": "input",
                "description": "Fired when the value of the component changes at each keystroke,\nand when a suggestion item has been selected."
              },
              {
                "name": "open",
                "description": "Fired when the suggestions picker is open."
              },
              {
                "name": "select",
                "description": "Fired when some text has been selected."
              },
              {
                "name": "selection-change",
                "description": "Fired when the user navigates to a suggestion item via the ARROW keys,\nas a preview, before the final selection."
              },
              {
                "name": "token-delete",
                "description": "Fired when tokens are being deleted."
              },
              {
                "name": "value-help-trigger",
                "description": "Fired when the value help icon is pressed\nand F4 or ALT/OPTION + ARROW_UP/ARROW_DOWN keyboard keys are used."
              }
            ]
          }
        },
        {
          "name": "ui5-option",
          "description": "### Overview\n\nThe `ui5-option` component defines the content of an option in the `ui5-select`.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Option.js\";`\n---\n\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.",
          "doc-url": "",
          "attributes": [
            {
              "name": "additional-text",
              "description": "Defines the `additionalText`, displayed in the end of the option.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "icon",
              "description": "Defines the `icon` source URI.\n\n**Note:**\nSAP-icons font provides numerous built-in icons. To find all the available icons, see the\n[Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "selected",
              "description": "Defines the selected state of the component.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "tooltip",
              "description": "Defines the tooltip of the option.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "value",
              "description": "Defines the value of the `ui5-select` inside an HTML Form element when this component is selected.\nFor more information on HTML Form support, see the `name` property of `ui5-select`.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "additional-text",
                "description": "Defines the `additionalText`, displayed in the end of the option.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "icon",
                "description": "Defines the `icon` source URI.\n\n**Note:**\nSAP-icons font provides numerous built-in icons. To find all the available icons, see the\n[Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "selected",
                "description": "Defines the selected state of the component.",
                "value": { "type": "boolean" }
              },
              {
                "name": "tooltip",
                "description": "Defines the tooltip of the option.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "value",
                "description": "Defines the value of the `ui5-select` inside an HTML Form element when this component is selected.\nFor more information on HTML Form support, see the `name` property of `ui5-select`.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-option-custom",
          "description": "### Overview\n\nThe `ui5-option-custom` component defines a custom content of an option in the `ui5-select`.\nA component to be the same way as the standard `ui5-option`.\nThe component accepts arbitrary HTML content to allow full customization.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/OptionCustom.js\";`\n---\n\n\n### **Slots:**\n - **default** - Defines the content of the component.",
          "doc-url": "",
          "attributes": [
            {
              "name": "display-text",
              "description": "Defines the text, displayed inside the `ui5-select` input filed\nwhen the option gets selected.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "selected",
              "description": "Defines the selected state of the component.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "tooltip",
              "description": "Defines the tooltip of the option.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "value",
              "description": "Defines the value of the `ui5-select` inside an HTML Form element when this component is selected.\nFor more information on HTML Form support, see the `name` property of `ui5-select`.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the content of the component."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "display-text",
                "description": "Defines the text, displayed inside the `ui5-select` input filed\nwhen the option gets selected.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "selected",
                "description": "Defines the selected state of the component.",
                "value": { "type": "boolean" }
              },
              {
                "name": "tooltip",
                "description": "Defines the tooltip of the option.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "value",
                "description": "Defines the value of the `ui5-select` inside an HTML Form element when this component is selected.\nFor more information on HTML Form support, see the `name` property of `ui5-select`.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-panel",
          "description": "### Overview\n\nThe `ui5-panel` component is a container which has a header and a\ncontent area and is used\nfor grouping and displaying information. It can be collapsed to save space on the screen.\n\n### Guidelines:\n\n- Nesting two or more panels is not recommended.\n- Do not stack too many panels on one page.\n\n### Structure\nThe panel's header area consists of a title bar with a header text or custom header.\n\nThe header is clickable and can be used to toggle between the expanded and collapsed state. It includes an icon which rotates depending on the state.\n\nThe custom header can be set through the `header` slot and it may contain arbitraray content, such as: title, buttons or any other HTML elements.\n\nThe content area can contain an arbitrary set of controls.\n\n**Note:** The custom header is not clickable out of the box, but in this case the icon is interactive and allows to show/hide the content area.\n\n### Responsive Behavior\n\n- If the width of the panel is set to 100% (default), the panel and its children are\nresized responsively,\ndepending on its parent container.\n- If the panel has a fixed height, it will take up the space even if the panel is\ncollapsed.\n- When the panel is expandable (the `fixed` property is set to `false`),\nan arrow icon (pointing to the right) appears in front of the header.\n- When the animation is activated, expand/collapse uses a smooth animation to open or\nclose the content area.\n- When the panel expands/collapses, the arrow icon rotates 90 degrees\nclockwise/counter-clockwise.\n\n### Keyboard Handling\n\n#### Fast Navigation\nThis component provides a build in fast navigation group which can be used via [F6] / [Shift] + [F6] / [Ctrl] + [Alt/Option] / [Down] or [Ctrl] + [Alt/Option] + [Up].\nIn order to use this functionality, you need to import the following module:\n`import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"`\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Panel.js\";`\n---\n\n\n### **Events:**\n - **toggle** - Fired when the component is expanded/collapsed by user interaction.\n\n### **Slots:**\n - **default** - Defines the content of the component. The content is visible only when the component is expanded.\n- **header** - Defines the component header area.\n\n**Note:** When a header is provided, the `headerText` property is ignored.\n\n### **CSS Parts:**\n - **content** - Used to style the wrapper of the content.\n- **header** - Used to style the wrapper of the header.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-role",
              "description": "Sets the accessible ARIA role of the component.\nDepending on the usage, you can change the role from the default `Form`\nto `Region` or `Complementary`.",
              "value": {
                "type": "\"Complementary\" | \"Form\" | \"Region\"",
                "default": "\"Form\""
              }
            },
            {
              "name": "collapsed",
              "description": "Indicates whether the component is collapsed and only the header is displayed.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "fixed",
              "description": "Determines whether the component is in a fixed state that is not\nexpandable/collapsible by user interaction.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "header-level",
              "description": "Defines the \"aria-level\" of component heading,\nset by the `headerText`.",
              "value": {
                "type": "\"H1\" | \"H2\" | \"H3\" | \"H4\" | \"H5\" | \"H6\"",
                "default": "\"H2\""
              }
            },
            {
              "name": "header-text",
              "description": "This property is used to set the header text of the component.\nThe text is visible in both expanded and collapsed states.\n\n**Note:** This property is overridden by the `header` slot.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "no-animation",
              "description": "Indicates whether the transition between the expanded and the collapsed state of the component is animated. By default the animation is enabled.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "sticky-header",
              "description": "Indicates whether the Panel header is sticky or not.\nIf stickyHeader is set to true, then whenever you scroll the content or\nthe application, the header of the panel will be always visible and\na solid color will be used for its design.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the content of the component. The content is visible only when the component is expanded."
            },
            {
              "name": "header",
              "description": "Defines the component header area.\n\n**Note:** When a header is provided, the `headerText` property is ignored."
            }
          ],
          "events": [
            {
              "name": "toggle",
              "description": "Fired when the component is expanded/collapsed by user interaction."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-role",
                "description": "Sets the accessible ARIA role of the component.\nDepending on the usage, you can change the role from the default `Form`\nto `Region` or `Complementary`.",
                "value": { "type": "\"Complementary\" | \"Form\" | \"Region\"" }
              },
              {
                "name": "collapsed",
                "description": "Indicates whether the component is collapsed and only the header is displayed.",
                "value": { "type": "boolean" }
              },
              {
                "name": "fixed",
                "description": "Determines whether the component is in a fixed state that is not\nexpandable/collapsible by user interaction.",
                "value": { "type": "boolean" }
              },
              {
                "name": "header-level",
                "description": "Defines the \"aria-level\" of component heading,\nset by the `headerText`.",
                "value": {
                  "type": "\"H1\" | \"H2\" | \"H3\" | \"H4\" | \"H5\" | \"H6\""
                }
              },
              {
                "name": "header-text",
                "description": "This property is used to set the header text of the component.\nThe text is visible in both expanded and collapsed states.\n\n**Note:** This property is overridden by the `header` slot.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "no-animation",
                "description": "Indicates whether the transition between the expanded and the collapsed state of the component is animated. By default the animation is enabled.",
                "value": { "type": "boolean" }
              },
              {
                "name": "sticky-header",
                "description": "Indicates whether the Panel header is sticky or not.\nIf stickyHeader is set to true, then whenever you scroll the content or\nthe application, the header of the panel will be always visible and\na solid color will be used for its design.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "toggle",
                "description": "Fired when the component is expanded/collapsed by user interaction."
              }
            ]
          }
        },
        {
          "name": "ui5-popover",
          "description": "### Overview\n\nThe `ui5-popover` component displays additional information for an object\nin a compact way and without leaving the page.\nThe Popover can contain various UI elements, such as fields, tables, images, and charts.\nIt can also include actions in the footer.\n\n### Structure\n\nThe popover has three main areas:\n\n- Header (optional)\n- Content\n- Footer (optional)\n\n**Note:** The `ui5-popover` is closed when the user clicks\nor taps outside the popover\nor selects an action within the popover. You can prevent this with the\n`modal` property.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Popover.js\";`\n---\n\n\n### **Events:**\n - **before-close** - Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing.\n- **before-open** - Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening.\n- **close** - Fired after the component is closed.\n- **open** - Fired after the component is opened.\n\n### **Methods:**\n - **applyFocus(): _Promise<void>_** - Focuses the element denoted by `initialFocus`, if provided,\nor the first focusable element otherwise.\n\n### **Slots:**\n - **default** - Defines the content of the Popup.\n- **footer** - Defines the footer HTML Element.\n- **header** - Defines the header HTML Element.\n\n### **CSS Parts:**\n - **content** - Used to style the content of the component\n- **footer** - Used to style the footer of the component\n- **header** - Used to style the header of the component",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Receives id(or many ids) of the elements that describe the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Defines the IDs of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-role",
              "description": "Allows setting a custom role.",
              "value": {
                "type": "\"None\" | \"Dialog\" | \"AlertDialog\"",
                "default": "\"Dialog\""
              }
            },
            {
              "name": "allow-target-overlap",
              "description": "Determines if there is no enough space, the component can be placed\nover the target.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "header-text",
              "description": "Defines the header text.\n\n**Note:** If `header` slot is provided, the `headerText` is ignored.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "hide-arrow",
              "description": "Determines whether the component arrow is hidden.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "horizontal-align",
              "description": "Determines the horizontal alignment of the component.",
              "value": {
                "type": "\"Start\" | \"End\" | \"Center\" | \"Stretch\"",
                "default": "\"Center\""
              }
            },
            {
              "name": "initial-focus",
              "description": "Defines the ID of the HTML Element, which will get the initial focus.\n\n**Note:** If an element with `autofocus` attribute is added inside the component,\n`initialFocus` won't take effect.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "modal",
              "description": "Defines whether the component should close when\nclicking/tapping outside the popover.\nIf enabled, it blocks any interaction with the background.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "open",
              "description": "Indicates if the element is open",
              "value": { "type": "any", "default": "false" }
            },
            {
              "name": "opener",
              "description": "Defines the ID or DOM Reference of the element at which the popover is shown.\nWhen using this attribute in a declarative way, you must only use the `id` (as a string) of the element at which you want to show the popover.\nYou can only set the `opener` attribute to a DOM Reference when using JavaScript.",
              "value": { "type": "any", "default": "undefined" }
            },
            {
              "name": "placement",
              "description": "Determines on which side the component is placed at.",
              "value": {
                "type": "\"Top\" | \"Bottom\" | \"Start\" | \"End\"",
                "default": "\"End\""
              }
            },
            {
              "name": "prevent-focus-restore",
              "description": "Defines if the focus should be returned to the previously focused element,\nwhen the popup closes.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "prevent-initial-focus",
              "description": "Indicates whether initial focus should be prevented.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "resizable",
              "description": "Determines whether the component is resizable.\n**Note:** This property is effective only on desktop devices.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "vertical-align",
              "description": "Determines the vertical alignment of the component.",
              "value": {
                "type": "\"Top\" | \"Bottom\" | \"Center\" | \"Stretch\"",
                "default": "\"Center\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the content of the Popup."
            },
            {
              "name": "footer",
              "description": "Defines the footer HTML Element."
            },
            {
              "name": "header",
              "description": "Defines the header HTML Element."
            }
          ],
          "events": [
            {
              "name": "before-close",
              "description": "Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing."
            },
            {
              "name": "before-open",
              "description": "Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening."
            },
            {
              "name": "close",
              "description": "Fired after the component is closed."
            },
            {
              "name": "open",
              "description": "Fired after the component is opened."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Receives id(or many ids) of the elements that describe the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Defines the IDs of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-role",
                "description": "Allows setting a custom role.",
                "value": { "type": "\"None\" | \"Dialog\" | \"AlertDialog\"" }
              },
              {
                "name": "allow-target-overlap",
                "description": "Determines if there is no enough space, the component can be placed\nover the target.",
                "value": { "type": "boolean" }
              },
              {
                "name": "header-text",
                "description": "Defines the header text.\n\n**Note:** If `header` slot is provided, the `headerText` is ignored.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "hide-arrow",
                "description": "Determines whether the component arrow is hidden.",
                "value": { "type": "boolean" }
              },
              {
                "name": "horizontal-align",
                "description": "Determines the horizontal alignment of the component.",
                "value": {
                  "type": "\"Start\" | \"End\" | \"Center\" | \"Stretch\""
                }
              },
              {
                "name": "initial-focus",
                "description": "Defines the ID of the HTML Element, which will get the initial focus.\n\n**Note:** If an element with `autofocus` attribute is added inside the component,\n`initialFocus` won't take effect.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "modal",
                "description": "Defines whether the component should close when\nclicking/tapping outside the popover.\nIf enabled, it blocks any interaction with the background.",
                "value": { "type": "boolean" }
              },
              {
                "name": "open",
                "description": "Indicates if the element is open",
                "value": { "type": "any" }
              },
              {
                "name": "opener",
                "description": "Defines the ID or DOM Reference of the element at which the popover is shown.\nWhen using this attribute in a declarative way, you must only use the `id` (as a string) of the element at which you want to show the popover.\nYou can only set the `opener` attribute to a DOM Reference when using JavaScript.",
                "value": { "type": "any" }
              },
              {
                "name": "placement",
                "description": "Determines on which side the component is placed at.",
                "value": {
                  "type": "\"Top\" | \"Bottom\" | \"Start\" | \"End\""
                }
              },
              {
                "name": "prevent-focus-restore",
                "description": "Defines if the focus should be returned to the previously focused element,\nwhen the popup closes.",
                "value": { "type": "boolean" }
              },
              {
                "name": "prevent-initial-focus",
                "description": "Indicates whether initial focus should be prevented.",
                "value": { "type": "boolean" }
              },
              {
                "name": "resizable",
                "description": "Determines whether the component is resizable.\n**Note:** This property is effective only on desktop devices.",
                "value": { "type": "boolean" }
              },
              {
                "name": "vertical-align",
                "description": "Determines the vertical alignment of the component.",
                "value": {
                  "type": "\"Top\" | \"Bottom\" | \"Center\" | \"Stretch\""
                }
              }
            ],
            "events": [
              {
                "name": "before-close",
                "description": "Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing."
              },
              {
                "name": "before-open",
                "description": "Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening."
              },
              {
                "name": "close",
                "description": "Fired after the component is closed."
              },
              {
                "name": "open",
                "description": "Fired after the component is opened."
              }
            ]
          }
        },
        {
          "name": "ui5-progress-indicator",
          "description": "### Overview\nShows the progress of a process in a graphical way. To indicate the progress,\nthe inside of the component is filled with a color.\n\n### Responsive Behavior\nYou can change the size of the Progress Indicator by changing its `width` or `height` CSS properties.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/ProgressIndicator.js\";`\n---\n\n\n### **CSS Parts:**\n - **bar** - Used to style the main bar of the `ui5-progress-indicator`\n- **remaining-bar** - Used to style the remaining bar of the `ui5-progress-indicator`",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "display-value",
              "description": "Specifies the text value to be displayed in the bar.\n\n**Note:**\n\n- If there is no value provided or the value is empty, the default percentage value is shown.\n- If `hideValue` property is `true` both the `displayValue` and `value` property values are not shown.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "hide-value",
              "description": "Defines whether the component value is shown.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "value",
              "description": "Specifies the numerical value in percent for the length of the component.\n\n**Note:**\nIf a value greater than 100 is provided, the percentValue is set to 100. In other cases of invalid value, percentValue is set to its default of 0.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "display-value",
                "description": "Specifies the text value to be displayed in the bar.\n\n**Note:**\n\n- If there is no value provided or the value is empty, the default percentage value is shown.\n- If `hideValue` property is `true` both the `displayValue` and `value` property values are not shown.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "hide-value",
                "description": "Defines whether the component value is shown.",
                "value": { "type": "boolean" }
              },
              {
                "name": "value",
                "description": "Specifies the numerical value in percent for the length of the component.\n\n**Note:**\nIf a value greater than 100 is provided, the percentValue is set to 100. In other cases of invalid value, percentValue is set to its default of 0.",
                "value": { "type": "number" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-radio-button",
          "description": "### Overview\n\nThe `ui5-radio-button` component enables users to select a single option from a set of options.\nWhen a `ui5-radio-button` is selected by the user, the\n`change` event is fired.\nWhen a `ui5-radio-button` that is within a group is selected, the one\nthat was previously selected gets automatically deselected. You can group radio buttons by using the `name` property.\n\n**Note:** If `ui5-radio-button` is not part of a group, it can be selected once, but can not be deselected back.\n\n### Keyboard Handling\n\nOnce the `ui5-radio-button` is on focus, it might be selected by pressing the Space and Enter keys.\n\nThe Arrow Down/Arrow Up and Arrow Left/Arrow Right keys can be used to change selection between next/previous radio buttons in one group,\nwhile TAB and SHIFT + TAB can be used to enter or leave the radio button group.\n\n**Note:** On entering radio button group, the focus goes to the currently selected radio button.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/RadioButton\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the component checked state changes.\n\n### **CSS Parts:**\n - **inner-ring** - Used to style the inner ring of the `ui5-radio-button`.\n- **outer-ring** - Used to style the outer ring of the `ui5-radio-button`.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Defines the IDs of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "checked",
              "description": "Defines whether the component is checked or not.\n\n**Note:** The property value can be changed with user interaction,\neither by clicking/tapping on the component,\nor by using the Space or Enter key.\n\n**Note:** Only enabled radio buttons can be checked.\nRead-only radio buttons are not selectable, and therefore are always unchecked.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is disabled.\n\n**Note:** A disabled component is completely noninteractive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\nRadio buttons with the same `name` will form a radio button group.\n\n**Note:** By this name the component will be identified upon submission in an HTML form.\n\n**Note:** The selection can be changed with `ARROW_UP/DOWN` and `ARROW_LEFT/RIGHT` keys between radio buttons in same group.\n\n**Note:** Only one radio button can be selected per group.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "readonly",
              "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component isn't editable or selectable.\nHowever, because it's focusable, it still provides visual feedback upon user interaction.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "text",
              "description": "Defines the text of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "value",
              "description": "Defines the form value of the component.\nWhen a form with a radio button group is submitted, the group's value\nwill be the value of the currently selected radio button.",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            },
            {
              "name": "wrapping-type",
              "description": "Defines whether the component text wraps when there is not enough space.\n\n**Note:** for option \"Normal\" the text will wrap and the words will not be broken based on hyphenation.",
              "value": {
                "type": "\"None\" | \"Normal\"",
                "default": "\"Normal\""
              }
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the component checked state changes."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Defines the IDs of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "checked",
                "description": "Defines whether the component is checked or not.\n\n**Note:** The property value can be changed with user interaction,\neither by clicking/tapping on the component,\nor by using the Space or Enter key.\n\n**Note:** Only enabled radio buttons can be checked.\nRead-only radio buttons are not selectable, and therefore are always unchecked.",
                "value": { "type": "boolean" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is disabled.\n\n**Note:** A disabled component is completely noninteractive.",
                "value": { "type": "boolean" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\nRadio buttons with the same `name` will form a radio button group.\n\n**Note:** By this name the component will be identified upon submission in an HTML form.\n\n**Note:** The selection can be changed with `ARROW_UP/DOWN` and `ARROW_LEFT/RIGHT` keys between radio buttons in same group.\n\n**Note:** Only one radio button can be selected per group.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "readonly",
                "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component isn't editable or selectable.\nHowever, because it's focusable, it still provides visual feedback upon user interaction.",
                "value": { "type": "boolean" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.",
                "value": { "type": "boolean" }
              },
              {
                "name": "text",
                "description": "Defines the text of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "value",
                "description": "Defines the form value of the component.\nWhen a form with a radio button group is submitted, the group's value\nwill be the value of the currently selected radio button.",
                "value": { "type": "string" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              },
              {
                "name": "wrapping-type",
                "description": "Defines whether the component text wraps when there is not enough space.\n\n**Note:** for option \"Normal\" the text will wrap and the words will not be broken based on hyphenation.",
                "value": { "type": "\"None\" | \"Normal\"" }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the component checked state changes."
              }
            ]
          }
        },
        {
          "name": "ui5-range-slider",
          "description": "### Overview\nRepresents a numerical interval and two handles (grips) to select a sub-range within it.\nThe purpose of the component to enable visual selection of sub-ranges within a given interval.\n\n### Structure\nThe most important properties of the Range Slider are:\n\n- min - The minimum value of the slider range.\n- max - The maximum value of the slider range.\n- value - The current value of the slider.\n- step - Determines the increments in which the slider will move.\n- showTooltip - Determines if a tooltip should be displayed above the handle.\n- showTickmarks - Displays a visual divider between the step values.\n- labelInterval - Labels some or all of the tickmarks with their values.\n\n#### Notes:\n\n- The right and left handle can be moved individually and their positions could therefore switch.\n- The entire range can be moved along the interval.\n\n### Usage\nThe most common use case is to select and move sub-ranges on a continuous numerical scale.\n\n### Responsive Behavior\nYou can move the currently selected range by clicking on it and dragging it along the interval.\n\n### Keyboard Handling\n\n- `Left or Down Arrow` - Moves a component's handle or the entire selection one step to the left;\n- `Right or Up Arrow` - Moves a component's handle or the entire selection one step to the right;\n- `Left or Down Arrow + Ctrl/Cmd` - Moves a component's handle to the left or the entire range with step equal to 1/10th of the entire range;\n- `Right or Up Arrow + Ctrl/Cmd` - Moves a component's handle to the right or the entire range with step equal to 1/10th of the entire range;\n- `Plus` - Same as `Right or Up Arrow`;\n- `Minus` - Same as `Left or Down Arrow`;\n- `Home` - Moves the entire selection or the selected handle to the beginning of the component's range;\n- `End` - Moves the entire selection or the selected handle to the end of the component's range;\n- `Page Up` - Same as `Right or Up Arrow + Ctrl/Cmd`;\n- `Page Down` - Same as `Left or Down Arrow + Ctrl/Cmd`;\n- `Escape` - Resets the `startValue` and `endValue` properties to the values prior the component focusing;\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/RangeSlider.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the value changes and the user has finished interacting with the slider.\n- **input** - Fired when the value changes due to user interaction that is not yet finished - during mouse/touch dragging.\n\n### **CSS Parts:**\n - **handle** - Used to style the handles of the `ui5-range-slider`.\n- **progress-bar** - Used to style the progress bar, which shows the progress of the `ui5-range-slider`.\n- **progress-container** - Used to style the progress container, the horizontal bar that visually represents the range between the minimum and maximum values, of the `ui5-range-slider`.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "disabled",
              "description": "Defines whether the slider is in disabled state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "editable-tooltip",
              "description": "\nIndicates whether input fields should be used as tooltips for the handles.\n\n**Note:** Setting this option to true will only work if showTooltip is set to true.\n**Note:** In order for the component to comply with the accessibility standard, it is recommended to set the editableTooltip property to true.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "end-value",
              "description": "Defines end point of a selection - position of a second handle on the slider.",
              "value": { "type": "any", "default": "undefined" }
            },
            {
              "name": "label-interval",
              "description": "Displays a label with a value on every N-th step.\n\n**Note:** The step and tickmarks properties must be enabled.\nExample - if the step value is set to 2 and the label interval is also specified to 2 - then every second\ntickmark will be labelled, which means every 4th value number.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "max",
              "description": "Defines the maximum value of the slider.",
              "value": { "type": "number", "default": "100" }
            },
            {
              "name": "min",
              "description": "Defines the minimum value of the slider.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "show-tickmarks",
              "description": "Enables tickmarks visualization for each step.\n\n**Note:** The step must be a positive number.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-tooltip",
              "description": "Enables handle tooltip displaying the current value.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "start-value",
              "description": "Defines start point of a selection - position of a first handle on the slider.",
              "value": { "type": "any", "default": "undefined" }
            },
            {
              "name": "step",
              "description": "Defines the size of the slider's selection intervals (e.g. min = 0, max = 10, step = 5 would result in possible selection of the values 0, 5, 10).\n\n**Note:** If set to 0 the slider handle movement is disabled. When negative number or value other than a number, the component fallbacks to its default value.",
              "value": { "type": "number", "default": "1" }
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the value changes and the user has finished interacting with the slider."
            },
            {
              "name": "input",
              "description": "Fired when the value changes due to user interaction that is not yet finished - during mouse/touch dragging."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the slider is in disabled state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "editable-tooltip",
                "description": "\nIndicates whether input fields should be used as tooltips for the handles.\n\n**Note:** Setting this option to true will only work if showTooltip is set to true.\n**Note:** In order for the component to comply with the accessibility standard, it is recommended to set the editableTooltip property to true.",
                "value": { "type": "boolean" }
              },
              {
                "name": "end-value",
                "description": "Defines end point of a selection - position of a second handle on the slider.",
                "value": { "type": "any" }
              },
              {
                "name": "label-interval",
                "description": "Displays a label with a value on every N-th step.\n\n**Note:** The step and tickmarks properties must be enabled.\nExample - if the step value is set to 2 and the label interval is also specified to 2 - then every second\ntickmark will be labelled, which means every 4th value number.",
                "value": { "type": "number" }
              },
              {
                "name": "max",
                "description": "Defines the maximum value of the slider.",
                "value": { "type": "number" }
              },
              {
                "name": "min",
                "description": "Defines the minimum value of the slider.",
                "value": { "type": "number" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "show-tickmarks",
                "description": "Enables tickmarks visualization for each step.\n\n**Note:** The step must be a positive number.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-tooltip",
                "description": "Enables handle tooltip displaying the current value.",
                "value": { "type": "boolean" }
              },
              {
                "name": "start-value",
                "description": "Defines start point of a selection - position of a first handle on the slider.",
                "value": { "type": "any" }
              },
              {
                "name": "step",
                "description": "Defines the size of the slider's selection intervals (e.g. min = 0, max = 10, step = 5 would result in possible selection of the values 0, 5, 10).\n\n**Note:** If set to 0 the slider handle movement is disabled. When negative number or value other than a number, the component fallbacks to its default value.",
                "value": { "type": "number" }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the value changes and the user has finished interacting with the slider."
              },
              {
                "name": "input",
                "description": "Fired when the value changes due to user interaction that is not yet finished - during mouse/touch dragging."
              }
            ]
          }
        },
        {
          "name": "ui5-rating-indicator",
          "description": "### Overview\nThe Rating Indicator is used to display a specific number of icons that are used to rate an item.\nAdditionally, it is also used to display the average and overall ratings.\n\n### Usage\nThe recommended number of icons is between 5 and 7.\n\n### Responsive Behavior\nYou can change the size of the Rating Indicator by changing its `font-size` CSS property.\n\nExample: `<ui5-rating-indicator style=\"font-size: 3rem;\"></ui5-rating-indicator>`\n\n### Keyboard Handling\nWhen the `ui5-rating-indicator` is focused, the user can change the rating\nwith the following keyboard shortcuts:\n\n- [RIGHT/UP] - Increases the value of the rating by one step. If the highest value is reached, does nothing\n- [LEFT/DOWN] - Decreases the value of the rating by one step. If the lowest value is reached, does nothing.\n- [Home] - Sets the lowest value.\n- [End] - Sets the highest value.\n- [SPACE/ENTER/RETURN] - Increases the value of the rating by one step. If the highest value is reached, sets the rating to the lowest value.\n- Any number - Changes value to the corresponding number. If typed number is larger than the number of values, sets the highest value.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/RatingIndicator.js\";`\n---\n\n\n### **Events:**\n - **change** - The event is fired when the value changes.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is disabled.\n\n**Note:** A disabled component is completely noninteractive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "max",
              "description": "The number of displayed rating symbols.",
              "value": { "type": "number", "default": "5" }
            },
            {
              "name": "rated-icon",
              "description": "Defines the icon to be displayed for the selected (filled) rating symbol.",
              "value": { "type": "string", "default": "\"favorite\"" }
            },
            {
              "name": "readonly",
              "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "size",
              "description": "Defines the size of the component.",
              "value": { "type": "\"S\" | \"M\" | \"L\"", "default": "\"M\"" }
            },
            {
              "name": "tooltip",
              "description": "Defines the tooltip of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "unrated-icon",
              "description": "Defines the icon to be displayed for the unselected (empty) rating symbol.",
              "value": { "type": "string", "default": "\"unfavorite\"" }
            },
            {
              "name": "value",
              "description": "The indicated value of the rating.\n\n**Note:** If you set a number which is not round, it would be shown as follows:\n\n- 1.0 - 1.2 -> 1\n- 1.3 - 1.7 -> 1.5\n- 1.8 - 1.9 -> 2",
              "value": { "type": "number", "default": "0" }
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "The event is fired when the value changes."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is disabled.\n\n**Note:** A disabled component is completely noninteractive.",
                "value": { "type": "boolean" }
              },
              {
                "name": "max",
                "description": "The number of displayed rating symbols.",
                "value": { "type": "number" }
              },
              {
                "name": "rated-icon",
                "description": "Defines the icon to be displayed for the selected (filled) rating symbol.",
                "value": { "type": "string" }
              },
              {
                "name": "readonly",
                "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
                "value": { "type": "boolean" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.",
                "value": { "type": "boolean" }
              },
              {
                "name": "size",
                "description": "Defines the size of the component.",
                "value": { "type": "\"S\" | \"M\" | \"L\"" }
              },
              {
                "name": "tooltip",
                "description": "Defines the tooltip of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "unrated-icon",
                "description": "Defines the icon to be displayed for the unselected (empty) rating symbol.",
                "value": { "type": "string" }
              },
              {
                "name": "value",
                "description": "The indicated value of the rating.\n\n**Note:** If you set a number which is not round, it would be shown as follows:\n\n- 1.0 - 1.2 -> 1\n- 1.3 - 1.7 -> 1.5\n- 1.8 - 1.9 -> 2",
                "value": { "type": "number" }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "The event is fired when the value changes."
              }
            ]
          }
        },
        {
          "name": "ui5-responsive-popover",
          "description": "### Overview\nThe `ui5-responsive-popover` acts as a Popover on desktop and tablet, while on phone it acts as a Dialog.\nThe component improves tremendously the user experience on mobile.\n\n### Usage\nUse it when you want to make sure that all the content is visible on any device.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/ResponsivePopover.js\";`\n---\n\n\n### **Events:**\n - **before-close** - Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing.\n- **before-open** - Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening.\n- **close** - Fired after the component is closed.\n- **open** - Fired after the component is opened.\n\n### **Methods:**\n - **applyFocus(): _Promise<void>_** - Focuses the element denoted by `initialFocus`, if provided,\nor the first focusable element otherwise.\n\n### **Slots:**\n - **default** - Defines the content of the Popup.\n- **footer** - Defines the footer HTML Element.\n- **header** - Defines the header HTML Element.\n\n### **CSS Parts:**\n - **content** - Used to style the content of the component\n- **footer** - Used to style the footer of the component\n- **header** - Used to style the header of the component",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Receives id(or many ids) of the elements that describe the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Defines the IDs of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-role",
              "description": "Allows setting a custom role.",
              "value": {
                "type": "\"None\" | \"Dialog\" | \"AlertDialog\"",
                "default": "\"Dialog\""
              }
            },
            {
              "name": "allow-target-overlap",
              "description": "Determines if there is no enough space, the component can be placed\nover the target.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "header-text",
              "description": "Defines the header text.\n\n**Note:** If `header` slot is provided, the `headerText` is ignored.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "hide-arrow",
              "description": "Determines whether the component arrow is hidden.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "horizontal-align",
              "description": "Determines the horizontal alignment of the component.",
              "value": {
                "type": "\"Start\" | \"End\" | \"Center\" | \"Stretch\"",
                "default": "\"Center\""
              }
            },
            {
              "name": "initial-focus",
              "description": "Defines the ID of the HTML Element, which will get the initial focus.\n\n**Note:** If an element with `autofocus` attribute is added inside the component,\n`initialFocus` won't take effect.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "modal",
              "description": "Defines whether the component should close when\nclicking/tapping outside the popover.\nIf enabled, it blocks any interaction with the background.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "open",
              "description": "Indicates if the element is open",
              "value": { "type": "any", "default": "false" }
            },
            {
              "name": "opener",
              "description": "Defines the ID or DOM Reference of the element at which the popover is shown.\nWhen using this attribute in a declarative way, you must only use the `id` (as a string) of the element at which you want to show the popover.\nYou can only set the `opener` attribute to a DOM Reference when using JavaScript.",
              "value": { "type": "any", "default": "undefined" }
            },
            {
              "name": "placement",
              "description": "Determines on which side the component is placed at.",
              "value": {
                "type": "\"Top\" | \"Bottom\" | \"Start\" | \"End\"",
                "default": "\"End\""
              }
            },
            {
              "name": "prevent-focus-restore",
              "description": "Defines if the focus should be returned to the previously focused element,\nwhen the popup closes.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "prevent-initial-focus",
              "description": "Indicates whether initial focus should be prevented.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "resizable",
              "description": "Determines whether the component is resizable.\n**Note:** This property is effective only on desktop devices.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "vertical-align",
              "description": "Determines the vertical alignment of the component.",
              "value": {
                "type": "\"Top\" | \"Bottom\" | \"Center\" | \"Stretch\"",
                "default": "\"Center\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the content of the Popup."
            },
            {
              "name": "footer",
              "description": "Defines the footer HTML Element."
            },
            {
              "name": "header",
              "description": "Defines the header HTML Element."
            }
          ],
          "events": [
            {
              "name": "before-close",
              "description": "Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing."
            },
            {
              "name": "before-open",
              "description": "Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening."
            },
            {
              "name": "close",
              "description": "Fired after the component is closed."
            },
            {
              "name": "open",
              "description": "Fired after the component is opened."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Receives id(or many ids) of the elements that describe the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Defines the IDs of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-role",
                "description": "Allows setting a custom role.",
                "value": { "type": "\"None\" | \"Dialog\" | \"AlertDialog\"" }
              },
              {
                "name": "allow-target-overlap",
                "description": "Determines if there is no enough space, the component can be placed\nover the target.",
                "value": { "type": "boolean" }
              },
              {
                "name": "header-text",
                "description": "Defines the header text.\n\n**Note:** If `header` slot is provided, the `headerText` is ignored.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "hide-arrow",
                "description": "Determines whether the component arrow is hidden.",
                "value": { "type": "boolean" }
              },
              {
                "name": "horizontal-align",
                "description": "Determines the horizontal alignment of the component.",
                "value": {
                  "type": "\"Start\" | \"End\" | \"Center\" | \"Stretch\""
                }
              },
              {
                "name": "initial-focus",
                "description": "Defines the ID of the HTML Element, which will get the initial focus.\n\n**Note:** If an element with `autofocus` attribute is added inside the component,\n`initialFocus` won't take effect.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "modal",
                "description": "Defines whether the component should close when\nclicking/tapping outside the popover.\nIf enabled, it blocks any interaction with the background.",
                "value": { "type": "boolean" }
              },
              {
                "name": "open",
                "description": "Indicates if the element is open",
                "value": { "type": "any" }
              },
              {
                "name": "opener",
                "description": "Defines the ID or DOM Reference of the element at which the popover is shown.\nWhen using this attribute in a declarative way, you must only use the `id` (as a string) of the element at which you want to show the popover.\nYou can only set the `opener` attribute to a DOM Reference when using JavaScript.",
                "value": { "type": "any" }
              },
              {
                "name": "placement",
                "description": "Determines on which side the component is placed at.",
                "value": {
                  "type": "\"Top\" | \"Bottom\" | \"Start\" | \"End\""
                }
              },
              {
                "name": "prevent-focus-restore",
                "description": "Defines if the focus should be returned to the previously focused element,\nwhen the popup closes.",
                "value": { "type": "boolean" }
              },
              {
                "name": "prevent-initial-focus",
                "description": "Indicates whether initial focus should be prevented.",
                "value": { "type": "boolean" }
              },
              {
                "name": "resizable",
                "description": "Determines whether the component is resizable.\n**Note:** This property is effective only on desktop devices.",
                "value": { "type": "boolean" }
              },
              {
                "name": "vertical-align",
                "description": "Determines the vertical alignment of the component.",
                "value": {
                  "type": "\"Top\" | \"Bottom\" | \"Center\" | \"Stretch\""
                }
              }
            ],
            "events": [
              {
                "name": "before-close",
                "description": "Fired before the component is closed. This event can be cancelled, which will prevent the popup from closing."
              },
              {
                "name": "before-open",
                "description": "Fired before the component is opened. This event can be cancelled, which will prevent the popup from opening."
              },
              {
                "name": "close",
                "description": "Fired after the component is closed."
              },
              {
                "name": "open",
                "description": "Fired after the component is opened."
              }
            ]
          }
        },
        {
          "name": "ui5-segmented-button",
          "description": "### Overview\n\nThe `ui5-segmented-button` shows a group of items. When the user clicks or taps\none of the items, it stays in a pressed state. It automatically resizes the items\nto fit proportionally within the component. When no width is set, the component uses the available width.\n\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/SegmentedButton.js\";`\n---\n\n\n### **Events:**\n - **selection-change** - Fired when the selected item changes.\n\n### **Slots:**\n - **default** - Defines the items of `ui5-segmented-button`.\n\n**Note:** Multiple items are allowed.\n\n**Note:** Use the `ui5-segmented-button-item` for the intended design.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Defines the IDs of the HTML Elements that describe the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Defines the IDs of the HTML Elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "items-fit-content",
              "description": "Determines whether the segmented button items should be sized to fit their content.\n\nIf set to `true`, each item will be sized to fit its content, with any extra space distributed after the last item.\nIf set to `false` (the default), all items will be equally sized to fill the available space.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "selected-items",
              "description": "Returns an array of the currently selected items.",
              "value": { "type": "any", "default": "[]" }
            },
            {
              "name": "selection-mode",
              "description": "Defines the component selection mode.",
              "value": {
                "type": "\"Single\" | \"Multiple\"",
                "default": "\"Single\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the items of `ui5-segmented-button`.\n\n**Note:** Multiple items are allowed.\n\n**Note:** Use the `ui5-segmented-button-item` for the intended design."
            }
          ],
          "events": [
            {
              "name": "selection-change",
              "description": "Fired when the selected item changes."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Defines the IDs of the HTML Elements that describe the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Defines the IDs of the HTML Elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "items-fit-content",
                "description": "Determines whether the segmented button items should be sized to fit their content.\n\nIf set to `true`, each item will be sized to fit its content, with any extra space distributed after the last item.\nIf set to `false` (the default), all items will be equally sized to fill the available space.",
                "value": { "type": "boolean" }
              },
              {
                "name": "selected-items",
                "description": "Returns an array of the currently selected items.",
                "value": { "type": "any" }
              },
              {
                "name": "selection-mode",
                "description": "Defines the component selection mode.",
                "value": { "type": "\"Single\" | \"Multiple\"" }
              }
            ],
            "events": [
              {
                "name": "selection-change",
                "description": "Fired when the selected item changes."
              }
            ]
          }
        },
        {
          "name": "ui5-segmented-button-item",
          "description": "### Overview\n\nUsers can use the `ui5-segmented-button-item` as part of a `ui5-segmented-button`.\n\nClicking or tapping on a `ui5-segmented-button-item` changes its state to `selected`.\nThe item returns to its initial state when the user clicks or taps on it again.\nBy applying additional custom CSS-styling classes, apps can give a different style to any\n`ui5-segmented-button-item`.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/SegmentedButtonItem.js\";`\n---\n\n\n### **Events:**\n - **click** - Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`.\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Defines the IDs of the HTML Elements that describe the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is disabled.\nA disabled component can't be selected or\nfocused, and it is not in the tab chain.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "icon",
              "description": "Defines the icon, displayed as graphical element within the component.\nThe SAP-icons font provides numerous options.\n\nExample:\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "selected",
              "description": "Determines whether the component is displayed as selected.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "tooltip",
              "description": "Defines the tooltip of the component.\n\n**Note:** A tooltip attribute should be provided for icon-only buttons, in order to represent their exact meaning/function.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design."
            }
          ],
          "events": [
            {
              "name": "click",
              "description": "Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Defines the IDs of the HTML Elements that describe the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is disabled.\nA disabled component can't be selected or\nfocused, and it is not in the tab chain.",
                "value": { "type": "boolean" }
              },
              {
                "name": "icon",
                "description": "Defines the icon, displayed as graphical element within the component.\nThe SAP-icons font provides numerous options.\n\nExample:\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "selected",
                "description": "Determines whether the component is displayed as selected.",
                "value": { "type": "boolean" }
              },
              {
                "name": "tooltip",
                "description": "Defines the tooltip of the component.\n\n**Note:** A tooltip attribute should be provided for icon-only buttons, in order to represent their exact meaning/function.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": [
              {
                "name": "click",
                "description": "Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`."
              }
            ]
          }
        },
        {
          "name": "ui5-select",
          "description": "### Overview\n\nThe `ui5-select` component is used to create a drop-down list.\n\n### Usage\n\nThere are two main usages of the `ui5-select>`.\n\n- With Option (`ui5-option`) web component:\n\nThe available options of the Select are defined by using the Option component.\nThe Option comes with predefined design and layout, including `icon`, `text` and `additional-text`.\n\n- With OptionCustom (`ui5-option-custom`) web component.\n\nOptions with custom content are defined by using the OptionCustom component.\nThe OptionCustom component comes with no predefined layout and it expects consumers to define it.\n\n### Selection\n\nThe options can be selected via user interaction (click or with the use of the Space and Enter keys)\nand programmatically - the Select component supports two distinct selection APIs, though mixing them is not supported:\n- The \"value\" property of the Select component\n- The \"selected\" property on individual options\n\n**Note:** If the \"value\" property is set but does not match any option,\nno option will be selected and the Select component will be displayed as empty.\n\n**Note:** when both \"value\" and \"selected\" are both used (although discouraged),\nthe \"value\" property will take precedence.\n\n### Keyboard Handling\n\nThe `ui5-select` provides advanced keyboard handling.\n\n- [F4] / [Alt] + [Up] / [Alt] + [Down] / [Space] or [Enter] - Opens/closes the drop-down.\n- [Up] or [Down] - If the drop-down is closed - changes selection to the next or the previous option. If the drop-down is opened - moves focus to the next or the previous option.\n- [Space], [Enter] - If the drop-down is opened - selects the focused option.\n- [Escape] - Closes the drop-down without changing the selection.\n- [Home] - Navigates to first option\n- [End] - Navigates to the last option\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Select\";`\n\n`import \"@ui5/webcomponents/dist/Option\";`\n`import \"@ui5/webcomponents/dist/OptionCustom\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the selected option changes.\n- **close** - Fired after the component's dropdown menu closes.\n- **live-change** - Fired when the user navigates through the options, but the selection is not finalized,\nor when pressing the ESC key to revert the current selection.\n- **open** - Fired after the component's dropdown menu opens.\n\n### **Slots:**\n - **default** - Defines the component options.\n\n**Note:** Only one selected option is allowed.\nIf more than one option is defined as selected, the last one would be considered as the selected one.\n\n**Note:** Use the `ui5-option` component to define the desired options.\n- **label** - Defines the HTML element that will be displayed in the component input part,\nrepresenting the selected option.\n\n**Note:** If not specified and `ui5-option-custom` is used,\neither the option's `display-text` or its textContent will be displayed.\n\n**Note:** If not specified and `ui5-option` is used,\nthe option's textContent will be displayed.\n- **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.\n\n**Note:** If the component has `suggestionItems`,\nthe `valueStateMessage` would be displayed as part of the same popover, if used on desktop, or dialog - on phone.\n\n### **CSS Parts:**\n - **popover** - Used to style the popover element",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Receives id(or many ids) of the elements that describe the select.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the select.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is in disabled state.\n\n**Note:** A disabled component is noninteractive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "readonly",
              "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "selected-option",
              "description": "Currently selected `ui5-option` element.",
              "value": { "type": "any", "default": "undefined" }
            },
            {
              "name": "text-separator",
              "description": "Defines the separator type for the two columns layout when Select is in read-only mode.",
              "value": {
                "type": "\"Bullet\" | \"Dash\" | \"VerticalLine\"",
                "default": "\"Dash\""
              }
            },
            {
              "name": "tooltip",
              "description": "Defines the tooltip of the select.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "value",
              "description": "Defines the value of the component:\n\n- when get - returns the value of the component or the value/text content of the selected option.\n- when set - selects the option with matching `value` property or text content.\n\n**Note:** Use either the Select's value or the Options' selected property.\nMixed usage could result in unexpected behavior.\n\n**Note:** If the given value does not match any existing option,\nno option will be selected and the Select component will be displayed as empty.",
              "value": { "type": "any", "default": "\"\"" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the component options.\n\n**Note:** Only one selected option is allowed.\nIf more than one option is defined as selected, the last one would be considered as the selected one.\n\n**Note:** Use the `ui5-option` component to define the desired options."
            },
            {
              "name": "label",
              "description": "Defines the HTML element that will be displayed in the component input part,\nrepresenting the selected option.\n\n**Note:** If not specified and `ui5-option-custom` is used,\neither the option's `display-text` or its textContent will be displayed.\n\n**Note:** If not specified and `ui5-option` is used,\nthe option's textContent will be displayed."
            },
            {
              "name": "valueStateMessage",
              "description": "Defines the value state message that will be displayed as pop up under the component.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.\n\n**Note:** If the component has `suggestionItems`,\nthe `valueStateMessage` would be displayed as part of the same popover, if used on desktop, or dialog - on phone."
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the selected option changes."
            },
            {
              "name": "close",
              "description": "Fired after the component's dropdown menu closes."
            },
            {
              "name": "live-change",
              "description": "Fired when the user navigates through the options, but the selection is not finalized,\nor when pressing the ESC key to revert the current selection."
            },
            {
              "name": "open",
              "description": "Fired after the component's dropdown menu opens."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Receives id(or many ids) of the elements that describe the select.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the select.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is in disabled state.\n\n**Note:** A disabled component is noninteractive.",
                "value": { "type": "boolean" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "readonly",
                "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
                "value": { "type": "boolean" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.",
                "value": { "type": "boolean" }
              },
              {
                "name": "selected-option",
                "description": "Currently selected `ui5-option` element.",
                "value": { "type": "any" }
              },
              {
                "name": "text-separator",
                "description": "Defines the separator type for the two columns layout when Select is in read-only mode.",
                "value": { "type": "\"Bullet\" | \"Dash\" | \"VerticalLine\"" }
              },
              {
                "name": "tooltip",
                "description": "Defines the tooltip of the select.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "value",
                "description": "Defines the value of the component:\n\n- when get - returns the value of the component or the value/text content of the selected option.\n- when set - selects the option with matching `value` property or text content.\n\n**Note:** Use either the Select's value or the Options' selected property.\nMixed usage could result in unexpected behavior.\n\n**Note:** If the given value does not match any existing option,\nno option will be selected and the Select component will be displayed as empty.",
                "value": { "type": "any" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the selected option changes."
              },
              {
                "name": "close",
                "description": "Fired after the component's dropdown menu closes."
              },
              {
                "name": "live-change",
                "description": "Fired when the user navigates through the options, but the selection is not finalized,\nor when pressing the ESC key to revert the current selection."
              },
              {
                "name": "open",
                "description": "Fired after the component's dropdown menu opens."
              }
            ]
          }
        },
        {
          "name": "ui5-slider",
          "description": "### Overview\nThe Slider component represents a numerical range and a handle (grip).\nThe purpose of the component is to enable visual selection of a value in\na continuous numerical range by moving an adjustable handle.\n\n### Structure\nThe most important properties of the Slider are:\n\n- min - The minimum value of the slider range.\n- max - The maximum value of the slider range.\n- value - The current value of the slider range.\n- step - Determines the increments in which the slider will move.\n- showTooltip - Determines if a tooltip should be displayed above the handle.\n- showTickmarks - Displays a visual divider between the step values.\n- labelInterval - Labels some or all of the tickmarks with their values.\n\n### Usage\nThe most common use case is to select values on a continuous numerical scale (e.g. temperature, volume, etc. ).\n\n### Responsive Behavior\nThe `ui5-slider` component adjusts to the size of its parent container by recalculating and\nresizing the width of the control. You can move the slider handle in several different ways:\n\n- Drag and drop the handle to the desired value.\n- Click/tap on the range bar to move the handle to that location.\n\n### Keyboard Handling\n\n- `Left or Down Arrow` - Moves the handle one step to the left, effectively decreasing the component's value by `step` amount;\n- `Right or Up Arrow` - Moves the handle one step to the right, effectively increasing the component's value by `step` amount;\n- `Left or Down Arrow + Ctrl/Cmd` - Moves the handle to the left with step equal to 1/10th of the entire range, effectively decreasing the component's value by 1/10th of the range;\n- `Right or Up Arrow + Ctrl/Cmd` - Moves the handle to the right with step equal to 1/10th of the entire range, effectively increasing the component's value by 1/10th of the range;\n- `Plus` - Same as `Right or Up Arrow`;\n- `Minus` - Same as `Left or Down Arrow`;\n- `Home` - Moves the handle to the beginning of the range;\n- `End` - Moves the handle to the end of the range;\n- `Page Up` - Same as `Right or Up + Ctrl/Cmd`;\n- `Page Down` - Same as `Left or Down + Ctrl/Cmd`;\n- `Escape` - Resets the value property after interaction, to the position prior the component's focusing;\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Slider.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the value changes and the user has finished interacting with the slider.\n- **input** - Fired when the value changes due to user interaction that is not yet finished - during mouse/touch dragging.\n\n### **CSS Parts:**\n - **handle** - Used to style the handle of the `ui5-slider`.\n- **progress-bar** - Used to style the progress bar, which shows the progress of the `ui5-slider`.\n- **progress-container** - Used to style the progress container, the horizontal bar that visually represents the range between the minimum and maximum values, of the `ui5-slider`.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "disabled",
              "description": "Defines whether the slider is in disabled state.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "editable-tooltip",
              "description": "\nIndicates whether input fields should be used as tooltips for the handles.\n\n**Note:** Setting this option to true will only work if showTooltip is set to true.\n**Note:** In order for the component to comply with the accessibility standard, it is recommended to set the editableTooltip property to true.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "label-interval",
              "description": "Displays a label with a value on every N-th step.\n\n**Note:** The step and tickmarks properties must be enabled.\nExample - if the step value is set to 2 and the label interval is also specified to 2 - then every second\ntickmark will be labelled, which means every 4th value number.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "max",
              "description": "Defines the maximum value of the slider.",
              "value": { "type": "number", "default": "100" }
            },
            {
              "name": "min",
              "description": "Defines the minimum value of the slider.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "show-tickmarks",
              "description": "Enables tickmarks visualization for each step.\n\n**Note:** The step must be a positive number.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-tooltip",
              "description": "Enables handle tooltip displaying the current value.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "step",
              "description": "Defines the size of the slider's selection intervals (e.g. min = 0, max = 10, step = 5 would result in possible selection of the values 0, 5, 10).\n\n**Note:** If set to 0 the slider handle movement is disabled.",
              "value": { "type": "number", "default": "1" }
            },
            {
              "name": "value",
              "description": "Current value of the slider",
              "value": { "type": "number", "default": "0" }
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the value changes and the user has finished interacting with the slider."
            },
            {
              "name": "input",
              "description": "Fired when the value changes due to user interaction that is not yet finished - during mouse/touch dragging."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the slider is in disabled state.",
                "value": { "type": "boolean" }
              },
              {
                "name": "editable-tooltip",
                "description": "\nIndicates whether input fields should be used as tooltips for the handles.\n\n**Note:** Setting this option to true will only work if showTooltip is set to true.\n**Note:** In order for the component to comply with the accessibility standard, it is recommended to set the editableTooltip property to true.",
                "value": { "type": "boolean" }
              },
              {
                "name": "label-interval",
                "description": "Displays a label with a value on every N-th step.\n\n**Note:** The step and tickmarks properties must be enabled.\nExample - if the step value is set to 2 and the label interval is also specified to 2 - then every second\ntickmark will be labelled, which means every 4th value number.",
                "value": { "type": "number" }
              },
              {
                "name": "max",
                "description": "Defines the maximum value of the slider.",
                "value": { "type": "number" }
              },
              {
                "name": "min",
                "description": "Defines the minimum value of the slider.",
                "value": { "type": "number" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "show-tickmarks",
                "description": "Enables tickmarks visualization for each step.\n\n**Note:** The step must be a positive number.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-tooltip",
                "description": "Enables handle tooltip displaying the current value.",
                "value": { "type": "boolean" }
              },
              {
                "name": "step",
                "description": "Defines the size of the slider's selection intervals (e.g. min = 0, max = 10, step = 5 would result in possible selection of the values 0, 5, 10).\n\n**Note:** If set to 0 the slider handle movement is disabled.",
                "value": { "type": "number" }
              },
              {
                "name": "value",
                "description": "Current value of the slider",
                "value": { "type": "number" }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the value changes and the user has finished interacting with the slider."
              },
              {
                "name": "input",
                "description": "Fired when the value changes due to user interaction that is not yet finished - during mouse/touch dragging."
              }
            ]
          }
        },
        {
          "name": "ui5-slider-handle",
          "description": "The <code>ui5-slider-handle</code> component represents the handle of the <code>ui5-slider</code> component.\n---\n",
          "doc-url": "",
          "attributes": [],
          "events": [],
          "js": { "properties": [], "events": [] }
        },
        {
          "name": "ui5-slider-tooltip",
          "description": "### Overview\n---\n",
          "doc-url": "",
          "attributes": [],
          "events": [],
          "js": { "properties": [], "events": [] }
        },
        {
          "name": "ui5-special-date",
          "description": "### Overview\n\nThe `ui5-special-date` component defines a special calendar date to be used inside `ui5-calendar`,\nwhich is visually distinguished from the rest of the dates.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "type",
              "description": "Defines the type of the special date.",
              "value": {
                "type": "\"None\" | \"Today\" | \"Selected\" | \"Working\" | \"NonWorking\" | \"Type01\" | \"Type02\" | \"Type03\" | \"Type04\" | \"Type05\" | \"Type06\" | \"Type07\" | \"Type08\" | \"Type09\" | \"Type10\" | \"Type11\" | ... 8 more ... | \"Type20\"",
                "default": "\"None\""
              }
            },
            {
              "name": "value",
              "description": "The date formatted according to the `formatPattern` property\nof the `ui5-calendar` that hosts the component.",
              "value": { "type": "string", "default": "\"\"" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "type",
                "description": "Defines the type of the special date.",
                "value": {
                  "type": "\"None\" | \"Today\" | \"Selected\" | \"Working\" | \"NonWorking\" | \"Type01\" | \"Type02\" | \"Type03\" | \"Type04\" | \"Type05\" | \"Type06\" | \"Type07\" | \"Type08\" | \"Type09\" | \"Type10\" | \"Type11\" | ... 8 more ... | \"Type20\""
                }
              },
              {
                "name": "value",
                "description": "The date formatted according to the `formatPattern` property\nof the `ui5-calendar` that hosts the component.",
                "value": { "type": "string" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-split-button",
          "description": "### Overview\n\n`ui5-split-button` enables users to trigger actions. It is constructed of two separate actions -\ndefault action and arrow action that can be activated by clicking or tapping, or by\npressing certain keyboard keys - `Space` or `Enter` for default action,\nand `Arrow Down` or `Arrow Up` for arrow action.\n\n### Usage\n\n`ui5-split-button` consists two separate buttons:\n\n- for the first one (default action) you can define some `text` or an `icon`, or both.\n- the second one (arrow action) contains only `slim-arrow-down` icon.\n\nYou can choose a `design` from a set of predefined types (the same as for ui5-button) that offer\ndifferent styling to correspond to the triggered action. Both text and arrow actions have the same design.\n\nYou can set the `ui5-split-button` as enabled or disabled. Both parts of an enabled\n`ui5-split-button` can be pressed by clicking or tapping it, or by certain keys, which changes\nthe style to provide visual feedback to the user that it is pressed or hovered over with\nthe mouse cursor. A disabled `ui5-split-button` appears inactive and any of the two buttons\ncannot be pressed.\n\n### Keyboard Handling\n\n- `Space` or `Enter` - triggers the default action\n- `Shift` or `Escape` - if `Space` is pressed, releases the default action button without triggering the click event.\n- `Arrow Down`, `Arrow Up`, `Alt`+`Arrow Down`, `Alt`+`Arrow Up`, or `F4` - triggers the arrow action\nThere are separate events that are fired on activating of `ui5-split-button` parts:\n\n- `click` for the first button (default action)\n- `arrow-click` for the second button (arrow action)\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/SplitButton.js\";`\n---\n\n\n### **Events:**\n - **arrow-click** - Fired when the user clicks on the arrow action.\n- **click** - Fired when the user clicks on the default action.\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.\n\n### **CSS Parts:**\n - **button** - Used to style the native button element\n- **endIcon** - Used to style the end icon in the native button element\n- **icon** - Used to style the icon in the native button element",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessibility-attributes",
              "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe `accessibilityAttributes` property accepts an object with the following optional fields:\n\n- **root**: Attributes that will be applied to the main (text) button.\n  - **hasPopup**: Indicates the presence and type of popup triggered by the button.\n    Accepts string values: `\"dialog\"`, `\"grid\"`, `\"listbox\"`, `\"menu\"`, or `\"tree\"`.\n  - **roleDescription**: Provides a human-readable description for the role of the button.\n    Accepts any string value.\n  - **title**: Specifies a tooltip or description for screen readers.\n    Accepts any string value.\n\t- **ariaKeyShortcuts**: Defines keyboard shortcuts that activate or give focus to the button.\n\n- **arrowButton**: Attributes applied specifically to the arrow (split) button.\n  - **hasPopup**: Indicates the presence and type of popup triggered by the arrow button.\n    Accepts string values: `\"dialog\"`, `\"grid\"`, `\"listbox\"`, `\"menu\"`, or `\"tree\"`.\n  - **expanded**: Indicates whether the popup triggered by the arrow button is currently expanded.\n    Accepts boolean values: `true` or `false`.",
              "value": {
                "type": "SplitButtonAccessibilityAttributes",
                "default": "{}"
              }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "active-arrow-button",
              "description": "Defines whether the arrow button should have the active state styles or not.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "design",
              "description": "Defines the component design.",
              "value": {
                "type": "\"Transparent\" | \"Positive\" | \"Negative\" | \"Default\" | \"Emphasized\" | \"Attention\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is disabled.\nA disabled component can't be pressed or\nfocused, and it is not in the tab chain.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "icon",
              "description": "Defines the icon to be displayed as graphical element within the component.\nThe SAP-icons font provides numerous options.\n\nExample:\n\nSee all available icons in the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design."
            }
          ],
          "events": [
            {
              "name": "arrow-click",
              "description": "Fired when the user clicks on the arrow action."
            },
            {
              "name": "click",
              "description": "Fired when the user clicks on the default action."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessibility-attributes",
                "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe `accessibilityAttributes` property accepts an object with the following optional fields:\n\n- **root**: Attributes that will be applied to the main (text) button.\n  - **hasPopup**: Indicates the presence and type of popup triggered by the button.\n    Accepts string values: `\"dialog\"`, `\"grid\"`, `\"listbox\"`, `\"menu\"`, or `\"tree\"`.\n  - **roleDescription**: Provides a human-readable description for the role of the button.\n    Accepts any string value.\n  - **title**: Specifies a tooltip or description for screen readers.\n    Accepts any string value.\n\t- **ariaKeyShortcuts**: Defines keyboard shortcuts that activate or give focus to the button.\n\n- **arrowButton**: Attributes applied specifically to the arrow (split) button.\n  - **hasPopup**: Indicates the presence and type of popup triggered by the arrow button.\n    Accepts string values: `\"dialog\"`, `\"grid\"`, `\"listbox\"`, `\"menu\"`, or `\"tree\"`.\n  - **expanded**: Indicates whether the popup triggered by the arrow button is currently expanded.\n    Accepts boolean values: `true` or `false`.",
                "value": { "type": "SplitButtonAccessibilityAttributes" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "active-arrow-button",
                "description": "Defines whether the arrow button should have the active state styles or not.",
                "value": { "type": "boolean" }
              },
              {
                "name": "design",
                "description": "Defines the component design.",
                "value": {
                  "type": "\"Transparent\" | \"Positive\" | \"Negative\" | \"Default\" | \"Emphasized\" | \"Attention\""
                }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is disabled.\nA disabled component can't be pressed or\nfocused, and it is not in the tab chain.",
                "value": { "type": "boolean" }
              },
              {
                "name": "icon",
                "description": "Defines the icon to be displayed as graphical element within the component.\nThe SAP-icons font provides numerous options.\n\nExample:\n\nSee all available icons in the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": [
              {
                "name": "arrow-click",
                "description": "Fired when the user clicks on the arrow action."
              },
              {
                "name": "click",
                "description": "Fired when the user clicks on the default action."
              }
            ]
          }
        },
        {
          "name": "ui5-step-input",
          "description": "### Overview\n\nThe `ui5-step-input` consists of an input field and buttons with icons to increase/decrease the value\nwith the predefined step.\n\nThe user can change the value of the component by pressing the increase/decrease buttons,\nby typing a number directly, by using the keyboard up/down and page up/down,\nor by using the mouse scroll wheel. Decimal values are supported.\n\n### Usage\n\nThe default step is 1 but the app developer can set a different one.\n\nApp developers can set a maximum and minimum value for the `StepInput`.\nThe increase/decrease button and the up/down keyboard navigation become disabled when\nthe value reaches the max/min or a new value is entered from the input which is greater/less than the max/min.\n\n#### When to use:\n\n- To adjust amounts, quantities, or other values quickly.\n- To adjust values for a specific step.\n\n#### When not to use:\n\n- To enter a static number (for example, postal code, phone number, or ID). In this case,\nuse the regular `ui5-input` instead.\n- To display a value that rarely needs to be adjusted and does not pertain to a particular step.\nIn this case, use the regular `ui5-input` instead.\n- To enter dates and times. In this case, use date/time related components instead.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/StepInput.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by pressing Enter or on focusout.\n- **input** - Fired when the value of the component changes at each keystroke.\n- **value-state-change** - Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state.\n\n### **Slots:**\n - **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "disabled",
              "description": "Determines whether the component is displayed as disabled.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "max",
              "description": "Defines a maximum value of the component.",
              "value": { "type": "number | undefined", "default": "undefined" }
            },
            {
              "name": "min",
              "description": "Defines a minimum value of the component.",
              "value": { "type": "number | undefined", "default": "undefined" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "placeholder",
              "description": "Defines a short hint, intended to aid the user with data entry when the\ncomponent has no value.\n\n**Note:** When no placeholder is set, the format pattern is displayed as a placeholder.\nPassing an empty string as the value of this property will make the component appear empty - without placeholder or format pattern.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "readonly",
              "description": "Determines whether the component is displayed as read-only.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "step",
              "description": "Defines a step of increasing/decreasing the value of the component.",
              "value": { "type": "number", "default": "1" }
            },
            {
              "name": "value",
              "description": "Defines a value of the component.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "value-precision",
              "description": "Determines the number of digits after the decimal point of the component.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "valueStateMessage",
              "description": "Defines the value state message that will be displayed as pop up under the component.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the component is in `Information`, `Critical` or `Negative` value state."
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the input operation has finished by pressing Enter or on focusout."
            },
            {
              "name": "input",
              "description": "Fired when the value of the component changes at each keystroke."
            },
            {
              "name": "value-state-change",
              "description": "Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "disabled",
                "description": "Determines whether the component is displayed as disabled.",
                "value": { "type": "boolean" }
              },
              {
                "name": "max",
                "description": "Defines a maximum value of the component.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "min",
                "description": "Defines a minimum value of the component.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "placeholder",
                "description": "Defines a short hint, intended to aid the user with data entry when the\ncomponent has no value.\n\n**Note:** When no placeholder is set, the format pattern is displayed as a placeholder.\nPassing an empty string as the value of this property will make the component appear empty - without placeholder or format pattern.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "readonly",
                "description": "Determines whether the component is displayed as read-only.",
                "value": { "type": "boolean" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.",
                "value": { "type": "boolean" }
              },
              {
                "name": "step",
                "description": "Defines a step of increasing/decreasing the value of the component.",
                "value": { "type": "number" }
              },
              {
                "name": "value",
                "description": "Defines a value of the component.",
                "value": { "type": "number" }
              },
              {
                "name": "value-precision",
                "description": "Determines the number of digits after the decimal point of the component.",
                "value": { "type": "number" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the input operation has finished by pressing Enter or on focusout."
              },
              {
                "name": "input",
                "description": "Fired when the value of the component changes at each keystroke."
              },
              {
                "name": "value-state-change",
                "description": "Fired before the value state of the component is updated internally.\nThe event is preventable, meaning that if it's default action is\nprevented, the component will not update the value state."
              }
            ]
          }
        },
        {
          "name": "ui5-suggestion-item",
          "description": "The `ui5-suggestion-item` represents the suggestion item of the `ui5-input`.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "additional-text",
              "description": "Defines the `additionalText`, displayed in the end of the item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "text",
              "description": "Defines the text of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "additional-text",
                "description": "Defines the `additionalText`, displayed in the end of the item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "text",
                "description": "Defines the text of the component.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-suggestion-item-custom",
          "description": "The `ui5-suggestion-item-custom` is type of suggestion item,\nthat can be used to place suggestion items with custom content in the input.\nThe text property is considered only for autocomplete.\nIn case the user needs highlighting functionality, check \"@ui5/webcomponents-base/dist/util/generateHighlightedMarkup.js\"\n---\n\n\n### **Slots:**\n - **default** - Defines the content of the component.",
          "doc-url": "",
          "attributes": [
            {
              "name": "text",
              "description": "Defines the text of the `ui5-suggestion-item-custom`.\n**Note:** The text property is considered only for autocomplete.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the content of the component."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "text",
                "description": "Defines the text of the `ui5-suggestion-item-custom`.\n**Note:** The text property is considered only for autocomplete.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-suggestion-item-group",
          "description": "The `ui5-suggestion-item-group` is type of suggestion item,\nthat can be used to split the `ui5-input` suggestions into groups.\n---\n\n\n### **Events:**\n - **move** - Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action.\n- **move-over** - Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n\n### **Slots:**\n - **default** - Defines the items of the <code>ui5-suggestion-item-group</code>.\n- **header** - Defines the header of the component.\n\n**Note:** Using this slot, the default header text of group and the value of `headerText` property will be overwritten.\n\n### **CSS Parts:**\n - **header** - Used to style the header item of the group\n- **title** - Used to style the title of the group header",
          "doc-url": "",
          "attributes": [
            {
              "name": "header-accessible-name",
              "description": "Defines the accessible name of the header.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "header-text",
              "description": "Defines the header text of the <code>ui5-li-group</code>.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "wrapping-type",
              "description": "Defines if the text of the component should wrap when it's too long.\nWhen set to \"Normal\", the content (title, description) will be wrapped\nusing the `ui5-expandable-text` component.<br/>\n\nThe text can wrap up to 100 characters on small screens (size S) and\nup to 300 characters on larger screens (size M and above). When text exceeds\nthese limits, it truncates with an ellipsis followed by a text expansion trigger.\n\nAvailable options are:\n- `None` (default) - The text will truncate with an ellipsis.\n- `Normal` - The text will wrap (without truncation).",
              "value": {
                "type": "\"None\" | \"Normal\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the items of the <code>ui5-suggestion-item-group</code>."
            },
            {
              "name": "header",
              "description": "Defines the header of the component.\n\n**Note:** Using this slot, the default header text of group and the value of `headerText` property will be overwritten."
            }
          ],
          "events": [
            {
              "name": "move",
              "description": "Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action."
            },
            {
              "name": "move-over",
              "description": "Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "header-accessible-name",
                "description": "Defines the accessible name of the header.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "header-text",
                "description": "Defines the header text of the <code>ui5-li-group</code>.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "wrapping-type",
                "description": "Defines if the text of the component should wrap when it's too long.\nWhen set to \"Normal\", the content (title, description) will be wrapped\nusing the `ui5-expandable-text` component.<br/>\n\nThe text can wrap up to 100 characters on small screens (size S) and\nup to 300 characters on larger screens (size M and above). When text exceeds\nthese limits, it truncates with an ellipsis followed by a text expansion trigger.\n\nAvailable options are:\n- `None` (default) - The text will truncate with an ellipsis.\n- `Normal` - The text will wrap (without truncation).",
                "value": { "type": "\"None\" | \"Normal\"" }
              }
            ],
            "events": [
              {
                "name": "move",
                "description": "Fired when a movable list item is dropped onto a drop target.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action."
              },
              {
                "name": "move-over",
                "description": "Fired when a movable list item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`."
              }
            ]
          }
        },
        {
          "name": "ui5-li-suggestion-item",
          "description": "The `ui5-li-suggestion-item` represents the suggestion item in the `ui5-input`\nsuggestion popover.\n---\n\n\n### **Events:**\n - **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Slots:**\n - **default** - Defines the title text of the suggestion item.\n- **deleteButton** - Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed.\n- **image** - **Note:** While the slot allows option for setting custom avatar, to match the\ndesign guidelines, please use the `ui5-avatar` with it's default size - S.\n\n**Note:** If bigger `ui5-avatar` needs to be used, then the size of the\n`ui5-li` should be customized in order to fit.\n- **richDescription** - Defines a description that can contain HTML.\n**Note:** If not specified, the `description` property will be used.\n\n### **CSS Parts:**\n - **additional-text** - Used to style the additionalText of the list item\n- **checkbox** - Used to style the checkbox rendered when the list item is in multiple selection mode\n- **content** - Used to style the content area of the list item\n- **delete-button** - Used to style the button rendered when the list item is in delete mode\n- **description** - Used to style the description of the suggestion list item\n- **detail-button** - Used to style the button rendered when the list item is of type detail\n- **icon** - Used to style the icon of the list item\n- **info** - Used to style the info of the suggestion list item\n- **native-li** - Used to style the main li tag of the list item\n- **radio** - Used to style the radio button rendered when the list item is in single selection mode\n- **title** - Used to style the title of the suggestion list item",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessibility-attributes",
              "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **ariaSetsize**: Defines the number of items in the current set  when not all items in the set are present in the DOM.\n**Note:** The value is an integer reflecting the number of items in the complete set. If the size of the entire set is unknown, set `-1`.\n\n\t- **ariaPosinset**: Defines an element's number or position in the current set when not all items are present in the DOM.\n\t**Note:** The value is an integer greater than or equal to 1, and less than or equal to the size of the set when that size is known.",
              "value": {
                "type": "ListItemAccessibilityAttributes",
                "default": "{}"
              }
            },
            {
              "name": "accessible-name",
              "description": "Defines the text alternative of the component.\nNote: If not provided a default text alternative will be set, if present.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "additional-text",
              "description": "Defines the `additionalText`, displayed in the end of the list item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "additional-text-state",
              "description": "Defines the state of the `additionalText`.\n\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            },
            {
              "name": "description",
              "description": "Defines the description displayed right under the item text, if such is present.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "highlight",
              "description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            },
            {
              "name": "icon",
              "description": "Defines the `icon` source URI.\n\n**Note:**\nSAP-icons font provides numerous built-in icons. To find all the available icons, see the\n[Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "icon-end",
              "description": "Defines whether the `icon` should be displayed in the beginning of the list item or in the end.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "movable",
              "description": "Defines whether the item is movable.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "navigated",
              "description": "The navigated state of the list item.\nIf set to `true`, a navigation indicator is displayed at the end of the list item.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "selected",
              "description": "Defines the selected state of the component.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "text",
              "description": "Defines the text of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "tooltip",
              "description": "Defines the text of the tooltip that would be displayed for the list item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "type",
              "description": "Defines the visual indication and behavior of the list items.\nAvailable options are `Active` (by default), `Inactive`, `Detail` and `Navigation`.\n\n**Note:** When set to `Active` or `Navigation`, the item will provide visual response upon press and hover,\nwhile with type `Inactive` and `Detail` - will not.",
              "value": {
                "type": "\"Navigation\" | \"Inactive\" | \"Active\" | \"Detail\"",
                "default": "\"Active\""
              }
            },
            {
              "name": "wrapping-type",
              "description": "Defines if the text of the component should wrap when it's too long.\nWhen set to \"Normal\", the content (title, description) will be wrapped\nusing the `ui5-expandable-text` component.<br/>\n\nThe text can wrap up to 100 characters on small screens (size S) and\nup to 300 characters on larger screens (size M and above). When text exceeds\nthese limits, it truncates with an ellipsis followed by a text expansion trigger.\n\nAvailable options are:\n- `None` (default) - The text will truncate with an ellipsis.\n- `Normal` - The text will wrap (without truncation).",
              "value": {
                "type": "\"None\" | \"Normal\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the title text of the suggestion item."
            },
            {
              "name": "deleteButton",
              "description": "Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed."
            },
            {
              "name": "image",
              "description": "**Note:** While the slot allows option for setting custom avatar, to match the\ndesign guidelines, please use the `ui5-avatar` with it's default size - S.\n\n**Note:** If bigger `ui5-avatar` needs to be used, then the size of the\n`ui5-li` should be customized in order to fit."
            },
            {
              "name": "richDescription",
              "description": "Defines a description that can contain HTML.\n**Note:** If not specified, the `description` property will be used."
            }
          ],
          "events": [
            {
              "name": "detail-click",
              "description": "Fired when the user clicks on the detail button when type is `Detail`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessibility-attributes",
                "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **ariaSetsize**: Defines the number of items in the current set  when not all items in the set are present in the DOM.\n**Note:** The value is an integer reflecting the number of items in the complete set. If the size of the entire set is unknown, set `-1`.\n\n\t- **ariaPosinset**: Defines an element's number or position in the current set when not all items are present in the DOM.\n\t**Note:** The value is an integer greater than or equal to 1, and less than or equal to the size of the set when that size is known.",
                "value": { "type": "ListItemAccessibilityAttributes" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the text alternative of the component.\nNote: If not provided a default text alternative will be set, if present.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "additional-text",
                "description": "Defines the `additionalText`, displayed in the end of the list item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "additional-text-state",
                "description": "Defines the state of the `additionalText`.\n\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              },
              {
                "name": "description",
                "description": "Defines the description displayed right under the item text, if such is present.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "highlight",
                "description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              },
              {
                "name": "icon",
                "description": "Defines the `icon` source URI.\n\n**Note:**\nSAP-icons font provides numerous built-in icons. To find all the available icons, see the\n[Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "icon-end",
                "description": "Defines whether the `icon` should be displayed in the beginning of the list item or in the end.",
                "value": { "type": "boolean" }
              },
              {
                "name": "movable",
                "description": "Defines whether the item is movable.",
                "value": { "type": "boolean" }
              },
              {
                "name": "navigated",
                "description": "The navigated state of the list item.\nIf set to `true`, a navigation indicator is displayed at the end of the list item.",
                "value": { "type": "boolean" }
              },
              {
                "name": "selected",
                "description": "Defines the selected state of the component.",
                "value": { "type": "boolean" }
              },
              {
                "name": "text",
                "description": "Defines the text of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "tooltip",
                "description": "Defines the text of the tooltip that would be displayed for the list item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "type",
                "description": "Defines the visual indication and behavior of the list items.\nAvailable options are `Active` (by default), `Inactive`, `Detail` and `Navigation`.\n\n**Note:** When set to `Active` or `Navigation`, the item will provide visual response upon press and hover,\nwhile with type `Inactive` and `Detail` - will not.",
                "value": {
                  "type": "\"Navigation\" | \"Inactive\" | \"Active\" | \"Detail\""
                }
              },
              {
                "name": "wrapping-type",
                "description": "Defines if the text of the component should wrap when it's too long.\nWhen set to \"Normal\", the content (title, description) will be wrapped\nusing the `ui5-expandable-text` component.<br/>\n\nThe text can wrap up to 100 characters on small screens (size S) and\nup to 300 characters on larger screens (size M and above). When text exceeds\nthese limits, it truncates with an ellipsis followed by a text expansion trigger.\n\nAvailable options are:\n- `None` (default) - The text will truncate with an ellipsis.\n- `Normal` - The text will wrap (without truncation).",
                "value": { "type": "\"None\" | \"Normal\"" }
              }
            ],
            "events": [
              {
                "name": "detail-click",
                "description": "Fired when the user clicks on the detail button when type is `Detail`."
              }
            ]
          }
        },
        {
          "name": "ui5-switch",
          "description": "### Overview\nThe `ui5-switch` component is used for changing between binary states.\n\nThe component can display texts, that will be switched, based on the component state, via the `textOn` and `textOff` properties,\nbut texts longer than 3 letters will be cutted off.\n\nHowever, users are able to customize the width of `ui5-switch` with pure CSS (`<ui5-switch style=\"width: 200px\">`), and set widths, depending on the texts they would use.\n\nNote: the component would not automatically stretch to fit the whole text width.\n\n### Keyboard Handling\nThe state can be changed by pressing the Space and Enter keys.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Switch\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the component checked state changes.\n\n### **CSS Parts:**\n - **handle** - Used to style the handle of the switch\n- **slider** - Used to style the track, where the handle is being slid\n- **text-off** - Used to style the `textOff` property text\n- **text-on** - Used to style the `textOn` property text",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Sets the accessible ARIA name of the component.\n\n**Note**: We recommend that you set an accessibleNameRef pointing to an external label or at least an `accessibleName`.\nProviding an `accessibleNameRef` or an `accessibleName` is mandatory in the cases when `textOn` and `textOff` properties aren't set.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component.\n\n**Note**: We recommend that you set an accessibleNameRef pointing to an external label or at least an `accessibleName`.\nProviding an `accessibleNameRef` or an `accessibleName` is mandatory in the cases when `textOn` and `textOff` properties aren't set.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "checked",
              "description": "Defines if the component is checked.\n\n**Note:** The property can be changed with user interaction,\neither by clicking the component, or by pressing the `Enter` or `Space` key.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "design",
              "description": "Defines the component design.\n\n**Note:** If `Graphical` type is set,\npositive and negative icons will replace the `textOn` and `textOff`.",
              "value": {
                "type": "\"Textual\" | \"Graphical\"",
                "default": "\"Textual\""
              }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is disabled.\n\n**Note:** A disabled component is noninteractive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "readonly",
              "description": "Defines whether the component is in readonly state.\n\n**Note:** A readonly switch cannot be toggled by user interaction,\nbut can still be focused and its value read programmatically.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "text-off",
              "description": "Defines the text, displayed when the component is not checked.\n\n**Note:** We recommend using short texts, up to 3 letters (larger texts would be cut off).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "text-on",
              "description": "Defines the text, displayed when the component is checked.\n\n**Note:** We recommend using short texts, up to 3 letters (larger texts would be cut off).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "tooltip",
              "description": "Defines the tooltip of the component.\n\n**Note:** If applicable an external label reference should always be the preferred option to provide context to the `ui5-switch` component over a tooltip.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "value",
              "description": "Defines the form value of the component.",
              "value": { "type": "string", "default": "\"\"" }
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the component checked state changes."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Sets the accessible ARIA name of the component.\n\n**Note**: We recommend that you set an accessibleNameRef pointing to an external label or at least an `accessibleName`.\nProviding an `accessibleNameRef` or an `accessibleName` is mandatory in the cases when `textOn` and `textOff` properties aren't set.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component.\n\n**Note**: We recommend that you set an accessibleNameRef pointing to an external label or at least an `accessibleName`.\nProviding an `accessibleNameRef` or an `accessibleName` is mandatory in the cases when `textOn` and `textOff` properties aren't set.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "checked",
                "description": "Defines if the component is checked.\n\n**Note:** The property can be changed with user interaction,\neither by clicking the component, or by pressing the `Enter` or `Space` key.",
                "value": { "type": "boolean" }
              },
              {
                "name": "design",
                "description": "Defines the component design.\n\n**Note:** If `Graphical` type is set,\npositive and negative icons will replace the `textOn` and `textOff`.",
                "value": { "type": "\"Textual\" | \"Graphical\"" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is disabled.\n\n**Note:** A disabled component is noninteractive.",
                "value": { "type": "boolean" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "readonly",
                "description": "Defines whether the component is in readonly state.\n\n**Note:** A readonly switch cannot be toggled by user interaction,\nbut can still be focused and its value read programmatically.",
                "value": { "type": "boolean" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.",
                "value": { "type": "boolean" }
              },
              {
                "name": "text-off",
                "description": "Defines the text, displayed when the component is not checked.\n\n**Note:** We recommend using short texts, up to 3 letters (larger texts would be cut off).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "text-on",
                "description": "Defines the text, displayed when the component is checked.\n\n**Note:** We recommend using short texts, up to 3 letters (larger texts would be cut off).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "tooltip",
                "description": "Defines the tooltip of the component.\n\n**Note:** If applicable an external label reference should always be the preferred option to provide context to the `ui5-switch` component over a tooltip.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "value",
                "description": "Defines the form value of the component.",
                "value": { "type": "string" }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the component checked state changes."
              }
            ]
          }
        },
        {
          "name": "ui5-tab",
          "description": "The `ui5-tab` represents a selectable item inside a `ui5-tabcontainer`.\nIt defines both the item in the tab strip (top part of the `ui5-tabcontainer`) and the\ncontent that is presented to the user once the tab is selected.\n---\n\n\n### **Methods:**\n - **getDomRefInStrip(): _HTMLElement | undefined_** - Returns the DOM reference of the tab that is placed in the header.\n\n**Note:** Tabs, placed in the `items` slot of other tabs are not shown in the header. Calling this method on such tabs will return `undefined`.\n\n**Note:** If you need a DOM ref to the tab content please use the `getDomRef` method.\n\n### **Slots:**\n - **default** - Holds the content associated with this tab.\n- **items** - Defines hierarchies with nested sub tabs.\n\n**Note:** Use `ui5-tab` and `ui5-tab-separator` for the intended design.",
          "doc-url": "",
          "attributes": [
            {
              "name": "additional-text",
              "description": "Represents the \"additionalText\" text, which is displayed in the tab. In the cases when in the same time there are tabs with icons and tabs without icons, if a tab has no icon the \"additionalText\" is displayed larger.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "design",
              "description": "Defines the component's design color.\n\nThe design is applied to:\n\n- the component icon\n- the `text` when the component overflows\n- the tab selection line\n\nAvailable designs are: `\"Default\"`, `\"Neutral\"`, `\"Positive\"`, `\"Critical\"` and `\"Negative\"`.\n\n**Note:** The design depends on the current theme.",
              "value": {
                "type": "\"Positive\" | \"Critical\" | \"Negative\" | \"Default\" | \"Neutral\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "disabled",
              "description": "Disabled tabs can't be selected.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "icon",
              "description": "Defines the icon source URI to be displayed as graphical element within the component.\nThe SAP-icons font provides numerous built-in icons.\nSee all the available icons in the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "movable",
              "description": "Defines if the tab is movable.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "selected",
              "description": "Specifies if the component is selected.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "text",
              "description": "The text to be displayed for the item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Holds the content associated with this tab."
            },
            {
              "name": "items",
              "description": "Defines hierarchies with nested sub tabs.\n\n**Note:** Use `ui5-tab` and `ui5-tab-separator` for the intended design."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "additional-text",
                "description": "Represents the \"additionalText\" text, which is displayed in the tab. In the cases when in the same time there are tabs with icons and tabs without icons, if a tab has no icon the \"additionalText\" is displayed larger.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "design",
                "description": "Defines the component's design color.\n\nThe design is applied to:\n\n- the component icon\n- the `text` when the component overflows\n- the tab selection line\n\nAvailable designs are: `\"Default\"`, `\"Neutral\"`, `\"Positive\"`, `\"Critical\"` and `\"Negative\"`.\n\n**Note:** The design depends on the current theme.",
                "value": {
                  "type": "\"Positive\" | \"Critical\" | \"Negative\" | \"Default\" | \"Neutral\""
                }
              },
              {
                "name": "disabled",
                "description": "Disabled tabs can't be selected.",
                "value": { "type": "boolean" }
              },
              {
                "name": "icon",
                "description": "Defines the icon source URI to be displayed as graphical element within the component.\nThe SAP-icons font provides numerous built-in icons.\nSee all the available icons in the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "movable",
                "description": "Defines if the tab is movable.",
                "value": { "type": "boolean" }
              },
              {
                "name": "selected",
                "description": "Specifies if the component is selected.",
                "value": { "type": "boolean" }
              },
              {
                "name": "text",
                "description": "The text to be displayed for the item.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-tabcontainer",
          "description": "### Overview\n\nThe `ui5-tabcontainer` represents a collection of tabs with associated content.\nNavigation through the tabs changes the content display of the currently active content area.\nA tab can be labeled with text only, or icons with text.\n\n### Structure\n\nThe `ui5-tabcontainer` can hold two types of entities:\n\n- `ui5-tab` - contains all the information on an item (text and icon)\n- `ui5-tab-separator` - used to separate tabs with a line\n\n### Hierarchies\nMultiple sub tabs could be placed underneath one main tab. Nesting allows deeper hierarchies with indentations\nto indicate the level of each nested tab. When a tab has both sub tabs and own content its click area is split\nto allow the user to display the content or alternatively to expand / collapse the list of sub tabs.\n\n### Keyboard Handling\n\n#### Fast Navigation\nThis component provides a build in fast navigation group which can be used via [F6] / [Shift] + [F6] / [Ctrl] + [Alt/Option] / [Down] or [Ctrl] + [Alt/Option] + [Up].\nIn order to use this functionality, you need to import the following module:\n`import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"`\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TabContainer.js\";`\n\n`import \"@ui5/webcomponents/dist/Tab.js\";` (for `ui5-tab`)\n\n`import \"@ui5/webcomponents/dist/TabSeparator.js\";` (for `ui5-tab-separator`)\n---\n\n\n### **Events:**\n - **move** - Fired when element is moved to the tab container.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action.\n- **move-over** - Fired when element is being moved over the tab container.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n- **tab-select** - Fired when a tab is selected.\n\n### **Slots:**\n - **default** - Defines the tabs.\n\n**Note:** Use `ui5-tab` and `ui5-tab-separator` for the intended design.\n- **overflowButton** - Defines the button which will open the overflow menu. If nothing is provided to this slot,\nthe default button will be used.\n- **startOverflowButton** - Defines the button which will open the start overflow menu if available. If nothing is provided to this slot,\nthe default button will be used.\n\n### **CSS Parts:**\n - **content** - Used to style the content of the component\n- **tabstrip** - Used to style the tabstrip of the component",
          "doc-url": "",
          "attributes": [
            {
              "name": "all-items",
              "description": "Returns all slotted tabs and their subTabs in a flattened array.\nThe order of tabs is depth-first.",
              "value": { "type": "any", "default": "[]" }
            },
            {
              "name": "collapsed",
              "description": "Defines whether the tab content is collapsed.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "content-background-design",
              "description": "Sets the background color of the Tab Container's content as `Solid`, `Transparent`, or `Translucent`.",
              "value": {
                "type": "\"Transparent\" | \"Solid\" | \"Translucent\"",
                "default": "\"Solid\""
              }
            },
            {
              "name": "header-background-design",
              "description": "Sets the background color of the Tab Container's header as `Solid`, `Transparent`, or `Translucent`.",
              "value": {
                "type": "\"Transparent\" | \"Solid\" | \"Translucent\"",
                "default": "\"Solid\""
              }
            },
            {
              "name": "no-auto-selection",
              "description": "Defines if automatic tab selection is deactivated.\n\n**Note:** By default, if none of the child tabs have the `selected` property set, the first tab will be automatically selected.\nSetting this property to `true` allows preventing this behavior.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "overflow-mode",
              "description": "Defines the overflow mode of the header (the tab strip). If you have a large number of tabs, only the tabs that can fit on screen will be visible.\nAll other tabs that can 't fit on the screen are available in an overflow tab \"More\".\n\n**Note:**\nOnly one overflow at the end would be displayed by default,\nbut when set to `StartAndEnd`, there will be two overflows on both ends, and tab order will not change on tab selection.",
              "value": {
                "type": "\"End\" | \"StartAndEnd\"",
                "default": "\"End\""
              }
            },
            {
              "name": "tab-layout",
              "description": "Defines the alignment of the content and the `additionalText` of a tab.\n\n**Note:**\nThe content and the `additionalText` would be displayed vertically by default,\nbut when set to `Inline`, they would be displayed horizontally.",
              "value": {
                "type": "\"Standard\" | \"Inline\"",
                "default": "\"Standard\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the tabs.\n\n**Note:** Use `ui5-tab` and `ui5-tab-separator` for the intended design."
            },
            {
              "name": "overflowButton",
              "description": "Defines the button which will open the overflow menu. If nothing is provided to this slot,\nthe default button will be used."
            },
            {
              "name": "startOverflowButton",
              "description": "Defines the button which will open the start overflow menu if available. If nothing is provided to this slot,\nthe default button will be used."
            }
          ],
          "events": [
            {
              "name": "move",
              "description": "Fired when element is moved to the tab container.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action."
            },
            {
              "name": "move-over",
              "description": "Fired when element is being moved over the tab container.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`."
            },
            {
              "name": "tab-select",
              "description": "Fired when a tab is selected."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "all-items",
                "description": "Returns all slotted tabs and their subTabs in a flattened array.\nThe order of tabs is depth-first.",
                "value": { "type": "any" }
              },
              {
                "name": "collapsed",
                "description": "Defines whether the tab content is collapsed.",
                "value": { "type": "boolean" }
              },
              {
                "name": "content-background-design",
                "description": "Sets the background color of the Tab Container's content as `Solid`, `Transparent`, or `Translucent`.",
                "value": {
                  "type": "\"Transparent\" | \"Solid\" | \"Translucent\""
                }
              },
              {
                "name": "header-background-design",
                "description": "Sets the background color of the Tab Container's header as `Solid`, `Transparent`, or `Translucent`.",
                "value": {
                  "type": "\"Transparent\" | \"Solid\" | \"Translucent\""
                }
              },
              {
                "name": "no-auto-selection",
                "description": "Defines if automatic tab selection is deactivated.\n\n**Note:** By default, if none of the child tabs have the `selected` property set, the first tab will be automatically selected.\nSetting this property to `true` allows preventing this behavior.",
                "value": { "type": "boolean" }
              },
              {
                "name": "overflow-mode",
                "description": "Defines the overflow mode of the header (the tab strip). If you have a large number of tabs, only the tabs that can fit on screen will be visible.\nAll other tabs that can 't fit on the screen are available in an overflow tab \"More\".\n\n**Note:**\nOnly one overflow at the end would be displayed by default,\nbut when set to `StartAndEnd`, there will be two overflows on both ends, and tab order will not change on tab selection.",
                "value": { "type": "\"End\" | \"StartAndEnd\"" }
              },
              {
                "name": "tab-layout",
                "description": "Defines the alignment of the content and the `additionalText` of a tab.\n\n**Note:**\nThe content and the `additionalText` would be displayed vertically by default,\nbut when set to `Inline`, they would be displayed horizontally.",
                "value": { "type": "\"Standard\" | \"Inline\"" }
              }
            ],
            "events": [
              {
                "name": "move",
                "description": "Fired when element is moved to the tab container.\n\n**Note:** `move` event is fired only if there was a preceding `move-over` with prevented default action."
              },
              {
                "name": "move-over",
                "description": "Fired when element is being moved over the tab container.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`."
              },
              {
                "name": "tab-select",
                "description": "Fired when a tab is selected."
              }
            ]
          }
        },
        {
          "name": "ui5-tab-separator",
          "description": "The `ui5-tab-separator` represents a vertical line to separate tabs inside a `ui5-tabcontainer`.\n---\n\n\n### **Methods:**\n - **getDomRefInStrip(): _HTMLElement | undefined_** - Returns the DOM reference of the separator that is placed in the header.\n\n**Note:** Separators, placed in the `items` slot of other tabs are not shown in the header. Calling this method on such separators will return `undefined`.",
          "doc-url": "",
          "attributes": [],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "getDomRefInStrip",
                "description": "Returns the DOM reference of the separator that is placed in the header.\n\n**Note:** Separators, placed in the `items` slot of other tabs are not shown in the header. Calling this method on such separators will return `undefined`.",
                "value": {}
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-table",
          "description": "### Overview\n\nThe `ui5-table` component provides a set of sophisticated features for displaying and dealing with vast amounts of data in a responsive manner.\nTo render the `ui5-table`, you need to define the columns and rows. You can use the provided `ui5-table-header-row` and `ui5-table-row` components for this purpose.\n\n### Features\n\nThe `ui5-table` can be enhanced in its functionalities by applying different features.\nFeatures can be slotted into the `features` slot, to enable them in the component.\nFeatures need to be imported separately, as they are not enabled by default.\n\nThe following features are currently available:\n\n* [TableSelectionMulti](../TableSelectionMulti) - adds multi-selection capabilities to the table\n* [TableSelectionSingle](../TableSelectionSingle) - adds single-selection capabilities to the table\n* [TableGrowing](../TableGrowing) - provides growing capabilities to load more data\n* [TableVirtualizer](../TableVirtualizer) - adds virtualization capabilities to the table\n\n### Keyboard Handling\n\nThis component provides a build in fast navigation group which can be used via [F6] / [Shift] + [F6] / [Ctrl] + [Alt/Option] / [Down] or [Ctrl] + [Alt/Option] + [Up].\nIn order to use this functionality, you need to import the following module:\n`import \"@ui5/webcomponents-base/dist/features/F6Navigation.js\"`\n\nFurthermore, you can interact with `ui5-table` via the following keys:\n\nIf the focus is on a row, the following keyboard shortcuts are available:\n* <kbd>Down</kbd> - Navigates down\n* <kbd>Up</kbd> - Navigates up\n* <kbd>Right</kbd> - Selects the first cell of the row\n* <kbd>Space</kbd> - Toggles the selection of the row\n* <kbd>Ctrl/Cmd + A</kbd> - In multi selection mode, toggles the selection of all rows\n* <kbd>Home</kbd> - Navigates to the first row, if the focus is on the first row, navigates to the header row\n* <kbd>End</kbd> - Navigates to the last row, if the focus is on the last row, navigates to the growing button\n* <kbd>Page Up</kbd> - Navigates one page up, if the focus is on the first row, navigates to the header row\n* <kbd>Page Down</kbd> - Navigates one page down, if the focus is on the last row, navigates to the growing button\n* <kbd>F2</kbd> - Focuses the first tabbable element in the row\n* <kbd>F7</kbd> - If focus position is remembered, moves focus to the corresponding focus position row, otherwise to the first tabbable element within the row\n* <kbd>[Shift]Tab</kbd> - Move focus to the element in the tab chain outside the table\n\nIf the focus is on a cell, the following keyboard shortcuts are available:\n* <kbd>Down</kbd> - Navigates down\n* <kbd>Up</kbd> - Navigates up\n* <kbd>Right</kbd> - Navigates right\n* <kbd>Left</kbd> - Navigates left, if the focus is on the first cell of the row, the focus is moved to the row.\n* <kbd>Home</kbd> - Navigates to the first cell of the current row, if the focus is on the first cell, navigates to the corresponding row\n* <kbd>End</kbd> - Navigates to the last cell of the current row, if the focus is on the last cell, navigates to the corresponding row\n* <kbd>Page Up</kbd> - Navigates one page up while keeping the focus in same column\n* <kbd>Page Down</kbd> - Navigates one page down while keeping the focus in same column\n* <kbd>F2</kbd> - Toggles the focus between the first tabbable cell content and the cell\n* <kbd>Enter</kbd> - Focuses the first tabbable cell content\n* <kbd>F7</kbd> - If the focus is on an interactive element inside a row, moves focus to the corresponding row and remembers the focus position of the element within the row\n* <kbd>[Shift]Tab</kbd> - Move focus to the element in the tab chain outside the table\n\nIf the focus is on an interactive cell content, the following keyboard shortcuts are available:\n* <kbd>Down</kbd> - Move the focus to the interactive element in the same column of the previous row, unless the focused element prevents the default\n* <kbd>Up</kbd> - Move the focus to the interactive element in the same column of the next row, unless the focused element prevents the default\n* <kbd>[Shift]Tab</kbd> - Move the focus to the element in the tab chain\n\n### Accessibility\n\nThe `ui5-table` follows the [ARIA grid design pattern](https://www.w3.org/WAI/ARIA/apg/patterns/grid/).\nThis pattern enables cell-based keyboard navigation and, as explained above, we also support row-based keyboard navigation.\nSince the grid design pattern does not inherently provide row-based keyboard behavior, if the focus is on a row, not only the row information but also the corresponding column headers for each cell must be announced.\nThis can only be achieved through a custom accessibility announcement.\nTo support this, UI5 Web Components expose its own accessibility metadata via the `accessibilityInfo` property.\nThe `ui5-table` uses this information to create the required custom announcements dynamically.\nIf you include custom web components inside table cells that are not part of the standard UI5 Web Components set, their accessibility information can be provided using the `data-ui5-acc-text` attribute.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Table.js\";` (`ui5-table`)\\\n`import \"@ui5/webcomponents/dist/TableRow.js\";` (`ui5-table-row`)\\\n`import \"@ui5/webcomponents/dist/TableCell.js\";` (`ui5-table-cell`)\\\n`import \"@ui5/webcomponents/dist/TableHeaderRow.js\";` (`ui5-table-header-row`)\\\n`import \"@ui5/webcomponents/dist/TableHeaderCell.js\";` (`ui5-table-header-cell`)\n---\n\n\n### **Events:**\n - **move** - Fired when a movable list item is dropped onto a drop target.\n\n**Notes:**\n\nThe `move` event is fired only if there was a preceding `move-over` with prevented default action.\n\nIf the dragging operation is a cross-browser operation or files are moved to a potential drop target,\nthe `source` parameter will be `null`.\n- **move-over** - Fired when a movable item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n\n**Note:** If the dragging operation is a cross-browser operation or files are moved to a potential drop target,\nthe `source` parameter will be `null`.\n- **row-action-click** - Fired when a row action is clicked.\n- **row-click** - Fired when an interactive row is clicked.\n\n**Note:** This event is not fired if the `behavior` property of the selection component is set to `RowOnly`.\nIn that case, use the `change` event of the selection component instead.\n\n### **Slots:**\n - **default** - Defines the rows of the component.\n\n**Note:** Use `ui5-table-row` for the intended design.\n- **features** - Defines the features of the component.\n- **headerRow** - Defines the header row of the component.\n\n**Note:** Use `ui5-table-header-row` for the intended design.\n- **noData** - Defines the custom visualization if there is no data available.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Identifies the element (or elements) that labels the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "alternate-row-colors",
              "description": "Determines whether the table rows are displayed with alternating background colors.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "loading",
              "description": "Defines if the loading indicator should be shown.\n\n**Note:** When the component is loading, it is not interactive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "loading-delay",
              "description": "Defines the delay in milliseconds, after which the loading indicator will show up for this component.",
              "value": { "type": "number", "default": "1000" }
            },
            {
              "name": "no-data-text",
              "description": "Defines the text to be displayed when there are no rows in the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "overflow-mode",
              "description": "Defines the mode of the <code>ui5-table</code> overflow behavior.\n\nAvailable options are:\n\n<code>Scroll</code> - Columns are shown as regular columns and horizontal scrolling is enabled.\n<code>Popin</code> - Columns are shown as pop-ins instead of regular columns.",
              "value": {
                "type": "\"Scroll\" | \"Popin\"",
                "default": "\"Scroll\""
              }
            },
            {
              "name": "row-action-count",
              "description": "Defines the maximum number of row actions that is displayed, which determines the width of the row action column.\n\n**Note:** It is recommended to use a maximum of 3 row actions, as exceeding this limit may take up too much space on smaller screens.",
              "value": { "type": "number", "default": "0" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the rows of the component.\n\n**Note:** Use `ui5-table-row` for the intended design."
            },
            {
              "name": "features",
              "description": "Defines the features of the component."
            },
            {
              "name": "headerRow",
              "description": "Defines the header row of the component.\n\n**Note:** Use `ui5-table-header-row` for the intended design."
            },
            {
              "name": "noData",
              "description": "Defines the custom visualization if there is no data available."
            }
          ],
          "events": [
            {
              "name": "move",
              "description": "Fired when a movable list item is dropped onto a drop target.\n\n**Notes:**\n\nThe `move` event is fired only if there was a preceding `move-over` with prevented default action.\n\nIf the dragging operation is a cross-browser operation or files are moved to a potential drop target,\nthe `source` parameter will be `null`."
            },
            {
              "name": "move-over",
              "description": "Fired when a movable item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n\n**Note:** If the dragging operation is a cross-browser operation or files are moved to a potential drop target,\nthe `source` parameter will be `null`."
            },
            {
              "name": "row-action-click",
              "description": "Fired when a row action is clicked."
            },
            {
              "name": "row-click",
              "description": "Fired when an interactive row is clicked.\n\n**Note:** This event is not fired if the `behavior` property of the selection component is set to `RowOnly`.\nIn that case, use the `change` event of the selection component instead."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Identifies the element (or elements) that labels the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "alternate-row-colors",
                "description": "Determines whether the table rows are displayed with alternating background colors.",
                "value": { "type": "boolean" }
              },
              {
                "name": "loading",
                "description": "Defines if the loading indicator should be shown.\n\n**Note:** When the component is loading, it is not interactive.",
                "value": { "type": "boolean" }
              },
              {
                "name": "loading-delay",
                "description": "Defines the delay in milliseconds, after which the loading indicator will show up for this component.",
                "value": { "type": "number" }
              },
              {
                "name": "no-data-text",
                "description": "Defines the text to be displayed when there are no rows in the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "overflow-mode",
                "description": "Defines the mode of the <code>ui5-table</code> overflow behavior.\n\nAvailable options are:\n\n<code>Scroll</code> - Columns are shown as regular columns and horizontal scrolling is enabled.\n<code>Popin</code> - Columns are shown as pop-ins instead of regular columns.",
                "value": { "type": "\"Scroll\" | \"Popin\"" }
              },
              {
                "name": "row-action-count",
                "description": "Defines the maximum number of row actions that is displayed, which determines the width of the row action column.\n\n**Note:** It is recommended to use a maximum of 3 row actions, as exceeding this limit may take up too much space on smaller screens.",
                "value": { "type": "number" }
              }
            ],
            "events": [
              {
                "name": "move",
                "description": "Fired when a movable list item is dropped onto a drop target.\n\n**Notes:**\n\nThe `move` event is fired only if there was a preceding `move-over` with prevented default action.\n\nIf the dragging operation is a cross-browser operation or files are moved to a potential drop target,\nthe `source` parameter will be `null`."
              },
              {
                "name": "move-over",
                "description": "Fired when a movable item is moved over a potential drop target during a dragging operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n\n**Note:** If the dragging operation is a cross-browser operation or files are moved to a potential drop target,\nthe `source` parameter will be `null`."
              },
              {
                "name": "row-action-click",
                "description": "Fired when a row action is clicked."
              },
              {
                "name": "row-click",
                "description": "Fired when an interactive row is clicked.\n\n**Note:** This event is not fired if the `behavior` property of the selection component is set to `RowOnly`.\nIn that case, use the `change` event of the selection component instead."
              }
            ]
          }
        },
        {
          "name": "ui5-table-cell",
          "description": "### Overview\n\nThe `ui5-table-cell` represents a cell inside of a `ui5-table`.\nIt is tightly coupled to the `ui5-table` and thus should only be used in the table component.\n\n### ES6 Module Import\n\n`import @ui5/webcomponents/dist/TableCell.js;`\n---\n\n\n### **Slots:**\n - **default** - Defines the content of the component.",
          "doc-url": "",
          "attributes": [
            {
              "name": "horizontal-align",
              "description": "Determines the horizontal alignment of table cells.",
              "value": {
                "type": "\"Start\" | \"End\" | \"Center\" | \"Left\" | \"Right\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "merged",
              "description": "Defines whether the cell is visually merged with the cell directly above it.\n\nThis is useful if consecutive cells in a column have the same value and should visually appear as a single merged cell.\nAlthough the cell is visually merged with the previous one, its content must still be provided for accessibility purposes.\n**Note:** This feature is disabled when cells are rendered as a popin, and should remain `false` for interactive cell content.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the content of the component."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "horizontal-align",
                "description": "Determines the horizontal alignment of table cells.",
                "value": {
                  "type": "\"Start\" | \"End\" | \"Center\" | \"Left\" | \"Right\" | undefined"
                }
              },
              {
                "name": "merged",
                "description": "Defines whether the cell is visually merged with the cell directly above it.\n\nThis is useful if consecutive cells in a column have the same value and should visually appear as a single merged cell.\nAlthough the cell is visually merged with the previous one, its content must still be provided for accessibility purposes.\n**Note:** This feature is disabled when cells are rendered as a popin, and should remain `false` for interactive cell content.",
                "value": { "type": "boolean" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-table-growing",
          "description": "### Overview\n\nThe `ui5-table-growing` component is used inside the `ui5-table` to add a growing/data loading functionalities\nto the table.\n\nThe component offers two options:\n* Button - a More button is displayed, clicking it will load more data.\n* Scroll - additional data is loaded automatically when the user scrolls to the end of the table.\n\n### Usage\n\nThe `ui5-table-growing` component is only used inside the `ui5-table` component as a feature.\nIt has to be slotted inside the `ui5-table` in the `features` slot.\nThe component is not intended to be used as a standalone component.\n\n```html\n<ui5-table>\n\t<ui5-table-growing mode=\"Button\" text=\"More\" slot=\"features\"></ui5-table-growing>\n</ui5-table>\n```\n\n**Notes**:\n* When the `ui5-table-growing` component is used with the `Scroll` mode and the table is currently not scrollable,\nthe component will render a growing button instead to ensure growing capabilities until the table becomes scrollable.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableGrowing.js\";`\n---\n\n\n### **Events:**\n - **load-more** - Fired when the growing button is pressed or the user scrolls to the end of the table.",
          "doc-url": "",
          "attributes": [
            {
              "name": "mode",
              "description": "Defines the mode of the <code>ui5-table</code> growing.\n\nAvailable options are:\n\nButton - Shows a More button at the bottom of the table, pressing it will load more rows.\n\nScroll - The rows are loaded automatically by scrolling to the bottom of the table. If the table is not scrollable,\na growing button will be rendered instead to ensure growing functionality.",
              "value": {
                "type": "\"Button\" | \"Scroll\"",
                "default": "\"Button\""
              }
            },
            {
              "name": "subtext",
              "description": "Defines the text that will be displayed below the `text` inside the growing button.\nHas no effect when mode is set to Scroll.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "text",
              "description": "Defines the text that will be displayed inside the growing button.\nHas no effect when mode is set to `Scroll`.\n\n**Note:** When not provided and the mode is set to Button, a default text is displayed, corresponding to the\ncurrent language.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [
            {
              "name": "load-more",
              "description": "Fired when the growing button is pressed or the user scrolls to the end of the table."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "mode",
                "description": "Defines the mode of the <code>ui5-table</code> growing.\n\nAvailable options are:\n\nButton - Shows a More button at the bottom of the table, pressing it will load more rows.\n\nScroll - The rows are loaded automatically by scrolling to the bottom of the table. If the table is not scrollable,\na growing button will be rendered instead to ensure growing functionality.",
                "value": { "type": "\"Button\" | \"Scroll\"" }
              },
              {
                "name": "subtext",
                "description": "Defines the text that will be displayed below the `text` inside the growing button.\nHas no effect when mode is set to Scroll.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "text",
                "description": "Defines the text that will be displayed inside the growing button.\nHas no effect when mode is set to `Scroll`.\n\n**Note:** When not provided and the mode is set to Button, a default text is displayed, corresponding to the\ncurrent language.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": [
              {
                "name": "load-more",
                "description": "Fired when the growing button is pressed or the user scrolls to the end of the table."
              }
            ]
          }
        },
        {
          "name": "ui5-table-header-cell",
          "description": "### Overview\n\nThe `ui5-table-header-cell` component represents a column in the `ui5-table`.\n\nAs it is tightly coupled to the `ui5-table`, it should only be used in the `ui5-table-header-row`\nto ensure correct layout and design.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableHeaderCell.js\";`\n---\n\n\n### **Slots:**\n - **action** - Defines the action of the column.\n\n**Note:** While multiple actions are technically possible, this is not supported.\n- **default** - Defines the content of the component.",
          "doc-url": "",
          "attributes": [
            {
              "name": "horizontal-align",
              "description": "Determines the horizontal alignment of table cells.",
              "value": {
                "type": "\"Start\" | \"End\" | \"Center\" | \"Left\" | \"Right\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "importance",
              "description": "Defines the importance of the column.\n\nThis property affects the popin behaviour.\nColumns with higher importance will move into the popin area later then less important\ncolumns.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "min-width",
              "description": "Defines the minimum width of the column.\n\nIf the table is in `Popin` mode and the minimum width does not fit anymore,\nthe column will move into the popin.\n\nBy default, the table prevents the column from becoming too small.\nChanging this value to a small value might lead to accessibility issues.\n\n**Note:** This property only takes effect for columns with a [\\<percentage\\>](https://developer.mozilla.org/en-US/docs/Web/CSS/percentage) value\nor the default width.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "popin-hidden",
              "description": "Defines if the column is hidden in the popin.\n\n**Note:** Please be aware that hiding the column in the popin might lead to accessibility issues as\nusers might not be able to access the content of the column on small screens.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "popin-text",
              "description": "The text for the column when it pops in.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "sort-indicator",
              "description": "Defines the sort indicator of the column.",
              "value": {
                "type": "\"None\" | \"Ascending\" | \"Descending\"",
                "default": "\"None\""
              }
            },
            {
              "name": "width",
              "description": "Defines the width of the column.\n\nBy default, the column will grow and shrink according to the available space.\nThis will distribute the space proportionally among all columns with no specific width set.\n\nSee [\\<length\\>](https://developer.mozilla.org/en-US/docs/Web/CSS/length) and\n[\\<percentage\\>](https://developer.mozilla.org/en-US/docs/Web/CSS/percentage) for possible width values.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "action",
              "description": "Defines the action of the column.\n\n**Note:** While multiple actions are technically possible, this is not supported."
            },
            {
              "name": "default",
              "description": "Defines the content of the component."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "horizontal-align",
                "description": "Determines the horizontal alignment of table cells.",
                "value": {
                  "type": "\"Start\" | \"End\" | \"Center\" | \"Left\" | \"Right\" | undefined"
                }
              },
              {
                "name": "importance",
                "description": "Defines the importance of the column.\n\nThis property affects the popin behaviour.\nColumns with higher importance will move into the popin area later then less important\ncolumns.",
                "value": { "type": "number" }
              },
              {
                "name": "min-width",
                "description": "Defines the minimum width of the column.\n\nIf the table is in `Popin` mode and the minimum width does not fit anymore,\nthe column will move into the popin.\n\nBy default, the table prevents the column from becoming too small.\nChanging this value to a small value might lead to accessibility issues.\n\n**Note:** This property only takes effect for columns with a [\\<percentage\\>](https://developer.mozilla.org/en-US/docs/Web/CSS/percentage) value\nor the default width.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "popin-hidden",
                "description": "Defines if the column is hidden in the popin.\n\n**Note:** Please be aware that hiding the column in the popin might lead to accessibility issues as\nusers might not be able to access the content of the column on small screens.",
                "value": { "type": "boolean" }
              },
              {
                "name": "popin-text",
                "description": "The text for the column when it pops in.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "sort-indicator",
                "description": "Defines the sort indicator of the column.",
                "value": { "type": "\"None\" | \"Ascending\" | \"Descending\"" }
              },
              {
                "name": "width",
                "description": "Defines the width of the column.\n\nBy default, the column will grow and shrink according to the available space.\nThis will distribute the space proportionally among all columns with no specific width set.\n\nSee [\\<length\\>](https://developer.mozilla.org/en-US/docs/Web/CSS/length) and\n[\\<percentage\\>](https://developer.mozilla.org/en-US/docs/Web/CSS/percentage) for possible width values.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-table-header-cell-action-ai",
          "description": "### Overview\n\nThe `ui5-table-header-cell-action-ai` component defines a dedicated AI action for the table column.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableHeaderCellActionAI.js\";`\n---\n\n\n### **Events:**\n - **click** - Fired when a header cell action is clicked.",
          "doc-url": "",
          "attributes": [],
          "events": [
            {
              "name": "click",
              "description": "Fired when a header cell action is clicked."
            }
          ],
          "js": {
            "properties": [],
            "events": [
              {
                "name": "click",
                "description": "Fired when a header cell action is clicked."
              }
            ]
          }
        },
        {
          "name": "ui5-table-header-row",
          "description": "### Overview\n\nThe `ui5-table-header-row` component represents the table headers of a `ui5-table`.\n\nIt is tightly coupled to the `ui5-table` and should therefore be used in the `ui5-table` only.\nThe header row is placed in the `headerRow` slot of the table.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableHeaderRow.js\";`\n---\n\n\n### **Slots:**\n - **default** - Defines the cells of the component.\n\n**Note:** Use `ui5-table-header-cell` for the intended design.",
          "doc-url": "",
          "attributes": [
            {
              "name": "sticky",
              "description": "Sticks the `ui5-table-header-row` to the top of a table.\n\nNote: If used in combination with overflowMode \"Scroll\", the table needs a defined height for the sticky header to work as expected.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the cells of the component.\n\n**Note:** Use `ui5-table-header-cell` for the intended design."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "sticky",
                "description": "Sticks the `ui5-table-header-row` to the top of a table.\n\nNote: If used in combination with overflowMode \"Scroll\", the table needs a defined height for the sticky header to work as expected.",
                "value": { "type": "boolean" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-table-row",
          "description": "### Overview\n\nThe `ui5-table-row` component represents a row in the `ui5-table`.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableRow.js\";`\n---\n\n\n### **Slots:**\n - **actions** - Defines the actions of the component.\n\n**Note:** Use `ui5-table-row-action` or `ui5-table-row-action-navigation` for the intended design.\n- **default** - Defines the cells of the component.\n\n**Note:** Use `ui5-table-cell` for the intended design.",
          "doc-url": "",
          "attributes": [
            {
              "name": "interactive",
              "description": "Defines the interactive state of the row.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "movable",
              "description": "Defines whether the row is movable.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "navigated",
              "description": "Defines the navigated state of the row.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "position",
              "description": "Defines the 0-based position of the row related to the total number of rows within the table when the `ui5-table-virtualizer` feature is used.",
              "value": { "type": "number | undefined", "default": "undefined" }
            },
            {
              "name": "row-key",
              "description": "Unique identifier of the row.\n\n**Note:** For selection features to work properly, this property is mandatory, and its value must not contain spaces.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "actions",
              "description": "Defines the actions of the component.\n\n**Note:** Use `ui5-table-row-action` or `ui5-table-row-action-navigation` for the intended design."
            },
            {
              "name": "default",
              "description": "Defines the cells of the component.\n\n**Note:** Use `ui5-table-cell` for the intended design."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "interactive",
                "description": "Defines the interactive state of the row.",
                "value": { "type": "boolean" }
              },
              {
                "name": "movable",
                "description": "Defines whether the row is movable.",
                "value": { "type": "boolean" }
              },
              {
                "name": "navigated",
                "description": "Defines the navigated state of the row.",
                "value": { "type": "boolean" }
              },
              {
                "name": "position",
                "description": "Defines the 0-based position of the row related to the total number of rows within the table when the `ui5-table-virtualizer` feature is used.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "row-key",
                "description": "Unique identifier of the row.\n\n**Note:** For selection features to work properly, this property is mandatory, and its value must not contain spaces.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-table-row-action",
          "description": "### Overview\n\nThe `ui5-table-row-action` component defines an action for table rows.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableRowAction.js\";`\n---\n\n\n### **Events:**\n - **click** - Fired when a row action is clicked.",
          "doc-url": "",
          "attributes": [
            {
              "name": "icon",
              "description": "Defines the icon of the row action.\n\n**Note:** For row actions to work properly, this property is mandatory.\n\n**Note:** SAP-icons font provides numerous built-in icons. To find all the available icons, see the\n[Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "invisible",
              "description": "Defines the visibility of the row action.\n\n**Note:** Invisible row actions still take up space, allowing to hide the action while maintaining its position.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "text",
              "description": "Defines the text of the row action.\n\n**Note:** For row actions to work properly, this property is mandatory.",
              "value": { "type": "string", "default": "\"\"" }
            }
          ],
          "events": [
            {
              "name": "click",
              "description": "Fired when a row action is clicked."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "icon",
                "description": "Defines the icon of the row action.\n\n**Note:** For row actions to work properly, this property is mandatory.\n\n**Note:** SAP-icons font provides numerous built-in icons. To find all the available icons, see the\n[Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string" }
              },
              {
                "name": "invisible",
                "description": "Defines the visibility of the row action.\n\n**Note:** Invisible row actions still take up space, allowing to hide the action while maintaining its position.",
                "value": { "type": "boolean" }
              },
              {
                "name": "text",
                "description": "Defines the text of the row action.\n\n**Note:** For row actions to work properly, this property is mandatory.",
                "value": { "type": "string" }
              }
            ],
            "events": [
              {
                "name": "click",
                "description": "Fired when a row action is clicked."
              }
            ]
          }
        },
        {
          "name": "ui5-table-row-action-navigation",
          "description": "### Overview\n\nThe `ui5-table-row-action-navigation` component defines a navigation action for table rows.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableRowActionNavigation.js\";`\n---\n\n\n### **Events:**\n - **click** - Fired when a row action is clicked.",
          "doc-url": "",
          "attributes": [
            {
              "name": "interactive",
              "description": "Defines the interactive state of the navigation action.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "invisible",
              "description": "Defines the visibility of the row action.\n\n**Note:** Invisible row actions still take up space, allowing to hide the action while maintaining its position.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "events": [
            {
              "name": "click",
              "description": "Fired when a row action is clicked."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "interactive",
                "description": "Defines the interactive state of the navigation action.",
                "value": { "type": "boolean" }
              },
              {
                "name": "invisible",
                "description": "Defines the visibility of the row action.\n\n**Note:** Invisible row actions still take up space, allowing to hide the action while maintaining its position.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "click",
                "description": "Fired when a row action is clicked."
              }
            ]
          }
        },
        {
          "name": "ui5-table-selection",
          "description": "@deprecated This component is deprecated and will be removed in future releases. Use the `ui5-table-selection-single` or `ui5-table-selection-multi` components instead.\n\n### Overview\n\nThe `ui5-table-selection` component is used inside the `ui5-table` to add key-based selection capabilities to the `ui5-table`.\n\nThe component offers three selection modes:\n* Single - select a single row.\n* Multiple - select multiple rows.\n* None - no selection active.\n\nAs the selection is key-based, `ui5-table-row` components need to define a unique `row-key` property.\n\n### Usage\n\nThe `ui5-table-selection` component is only used inside the `ui5-table` component as a feature.\nIt has to be slotted inside the `ui5-table` in the `features` slot.\nThe component is not intended to be used as a standalone component.\n\n```html\n<ui5-table>\n\t<ui5-table-selection mode=\"Multiple\" slot=\"features\"></ui5-table-selection>\n</ui5-table>\n```\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableSelection.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the selection is changed by user interaction.",
          "doc-url": "",
          "attributes": [
            {
              "name": "mode",
              "description": "Defines the selection mode.",
              "value": {
                "type": "\"None\" | \"Single\" | \"Multiple\"",
                "default": "\"Multiple\""
              }
            },
            {
              "name": "selected",
              "description": "Defines the selected rows separated by a space.",
              "value": { "type": "string", "default": "\"\"" }
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the selection is changed by user interaction."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "mode",
                "description": "Defines the selection mode.",
                "value": { "type": "\"None\" | \"Single\" | \"Multiple\"" }
              },
              {
                "name": "selected",
                "description": "Defines the selected rows separated by a space.",
                "value": { "type": "string" }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the selection is changed by user interaction."
              }
            ]
          }
        },
        {
          "name": "ui5-table-selection-multi",
          "description": "### Overview\n\nThe `ui5-table-selection-multi` component is used inside the `ui5-table` to add multi-selection capabilities to the `ui5-table`.\nSince selection is key-based, each `ui5-table-row` must define a unique `row-key` property.\n\n### Usage\n\nThe `ui5-table-selection-multi` component is a feature designed exclusively for use within the `ui5-table` component.\nIt must be placed inside the `features` slot of `ui5-table`.\nThis component is not intended for standalone use.\n\n```html\n<ui5-table>\n\t<ui5-table-selection-multi slot=\"features\" selected=\"Row1 Row3\"></ui5-table-selection-multi>\n</ui5-table>\n```\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableSelectionMulti.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the selection is changed by user interaction.\n\n### **Methods:**\n - **getRowByKey(rowKey: _string_): _TableRow | undefined_** - Returns the table row instance for the given row key.\n- **getSelectedAsSet(): _Set<string>_** - Returns the `selected` property as a set of unique `row-key` values.\n- **getSelectedRows(): _Array<TableRow>_** - Returns an array of the selected rows.\n- **setSelectedAsSet(selectedSet: _Set<string>_): _void_** - Sets the `selected` property using the provided set of unique `row-key` values.",
          "doc-url": "",
          "attributes": [
            {
              "name": "behavior",
              "description": "Defines the selection behavior.",
              "value": {
                "type": "\"RowSelector\" | \"RowOnly\"",
                "default": "\"RowSelector\""
              }
            },
            {
              "name": "header-selector",
              "description": "Defines the selector of the header row.",
              "value": {
                "type": "\"SelectAll\" | \"ClearAll\"",
                "default": "\"SelectAll\""
              }
            },
            {
              "name": "selected",
              "description": "Defines the `row-key` values of selected rows, with each value separated by a space.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the selection is changed by user interaction."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "behavior",
                "description": "Defines the selection behavior.",
                "value": { "type": "\"RowSelector\" | \"RowOnly\"" }
              },
              {
                "name": "header-selector",
                "description": "Defines the selector of the header row.",
                "value": { "type": "\"SelectAll\" | \"ClearAll\"" }
              },
              {
                "name": "selected",
                "description": "Defines the `row-key` values of selected rows, with each value separated by a space.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the selection is changed by user interaction."
              }
            ]
          }
        },
        {
          "name": "ui5-table-selection-single",
          "description": "### Overview\n\nThe `ui5-table-selection-single` component is used inside the `ui5-table` to add single selection capabilities to the `ui5-table`.\nSince selection is key-based, each `ui5-table-row` must define a unique `row-key` property.\n\n### Usage\n\nThe `ui5-table-selection-single` component is a feature designed exclusively for use within the `ui5-table` component.\nIt must be placed inside the `features` slot of `ui5-table`.\nThis component is not intended for standalone use.\n\n```html\n<ui5-table>\n\t<ui5-table-selection-single slot=\"features\" selected=\"Row1\"></ui5-table-selection-single>\n</ui5-table>\n```\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TableSelectionSingle.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the selection is changed by user interaction.\n\n### **Methods:**\n - **getRowByKey(rowKey: _string_): _TableRow | undefined_** - Returns the table row instance for the given row key.\n- **getSelectedRow(): _TableRow | undefined_** - Returns the selected row.",
          "doc-url": "",
          "attributes": [
            {
              "name": "behavior",
              "description": "Defines the selection behavior.",
              "value": {
                "type": "\"RowSelector\" | \"RowOnly\"",
                "default": "\"RowSelector\""
              }
            },
            {
              "name": "selected",
              "description": "Defines the `row-key` value of the selected row.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the selection is changed by user interaction."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "behavior",
                "description": "Defines the selection behavior.",
                "value": { "type": "\"RowSelector\" | \"RowOnly\"" }
              },
              {
                "name": "selected",
                "description": "Defines the `row-key` value of the selected row.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the selection is changed by user interaction."
              }
            ]
          }
        },
        {
          "name": "ui5-table-virtualizer",
          "description": "### Overview\n\nThe `ui5-table-virtualizer` component is used inside the `ui5-table` to virtualize the table rows, if the `overflowMode` property of the table is set to 'Scroll'.\nIt is responsible for rendering only the rows that are visible in the viewport and updating them on scroll.\nThis allows large numbers of rows to exist, but maintain high performance by only paying the cost for those that are currently visible.\n\n**Note:** The maximum number of virtualized rows is limited by browser constraints, specifically the maximum supported height for a DOM element.\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/TableVirtualizer.js\";`\n---\n\n\n### **Events:**\n - **range-change** - Fired when the virtualizer is changed by user interaction e.g. on scrolling.\n\n### **Methods:**\n - **reset(): _void_** - Resets the virtualizer to its initial state and triggers the `range-change` event.",
          "doc-url": "",
          "attributes": [
            {
              "name": "extra-rows",
              "description": "Defines the count of extra rows to be rendered at the top and bottom of the table.\n\n**Note:** This property is experimental and may be changed or deleted in the future.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "row-count",
              "description": "Defines the total count of rows in the table.\n\n**Note:** For virtualization to work properly, this property is mandatory.",
              "value": { "type": "number", "default": "100" }
            },
            {
              "name": "row-height",
              "description": "Defines the height of the rows in the table.\n\n**Note:** For virtualization to work properly, this property is mandatory.",
              "value": { "type": "number", "default": "45" }
            }
          ],
          "events": [
            {
              "name": "range-change",
              "description": "Fired when the virtualizer is changed by user interaction e.g. on scrolling."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "extra-rows",
                "description": "Defines the count of extra rows to be rendered at the top and bottom of the table.\n\n**Note:** This property is experimental and may be changed or deleted in the future.",
                "value": { "type": "number" }
              },
              {
                "name": "row-count",
                "description": "Defines the total count of rows in the table.\n\n**Note:** For virtualization to work properly, this property is mandatory.",
                "value": { "type": "number" }
              },
              {
                "name": "row-height",
                "description": "Defines the height of the rows in the table.\n\n**Note:** For virtualization to work properly, this property is mandatory.",
                "value": { "type": "number" }
              }
            ],
            "events": [
              {
                "name": "range-change",
                "description": "Fired when the virtualizer is changed by user interaction e.g. on scrolling."
              }
            ]
          }
        },
        {
          "name": "ui5-tag",
          "description": "### Overview\n\nThe `ui5-tag` is a component which serves\nthe purpose to attract the user attention to some piece\nof information (state, quantity, condition, etc.).\nIt can contain icon and text information, and its design can be chosen from specific design types.\n\n### Usage Guidelines\n\n- If the text is longer than the width of the component, it can wrap, or it can show ellipsis, depending on the `wrappingType` property.\n- Colors can be semantic or not semantic.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Tag.js\";`\n---\n\n\n### **Events:**\n - **click** - Fired when the user clicks on an interactive tag.\n\n**Note:** The event will be fired if the `interactive` property is `true`\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.\n- **icon** - Defines the icon to be displayed in the component.\n\n### **CSS Parts:**\n - **root** - Used to style the root element.",
          "doc-url": "",
          "attributes": [
            {
              "name": "color-scheme",
              "description": "Defines the color scheme of the component.\nThere are 10 predefined schemes.\nTo use one you can set a number from `\"1\"` to `\"10\"`. The `colorScheme` `\"1\"` will be set by default.",
              "value": { "type": "string", "default": "\"1\"" }
            },
            {
              "name": "design",
              "description": "Defines the design type of the component.",
              "value": {
                "type": "\"Positive\" | \"Critical\" | \"Negative\" | \"Information\" | \"Neutral\" | \"Set1\" | \"Set2\"",
                "default": "\"Neutral\""
              }
            },
            {
              "name": "hide-state-icon",
              "description": "Defines if the default state icon is shown.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "interactive",
              "description": "Defines if the component is interactive (focusable and pressable).",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "size",
              "description": "Defines predefined size of the component.",
              "value": { "type": "\"S\" | \"L\"", "default": "\"S\"" }
            },
            {
              "name": "wrapping-type",
              "description": "Defines how the text of a component will be displayed when there is not enough space.\n\n**Note:** For option \"Normal\" the text will wrap and the\nwords will not be broken based on hyphenation.",
              "value": {
                "type": "\"None\" | \"Normal\"",
                "default": "\"Normal\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design."
            },
            {
              "name": "icon",
              "description": "Defines the icon to be displayed in the component."
            }
          ],
          "events": [
            {
              "name": "click",
              "description": "Fired when the user clicks on an interactive tag.\n\n**Note:** The event will be fired if the `interactive` property is `true`"
            }
          ],
          "js": {
            "properties": [
              {
                "name": "color-scheme",
                "description": "Defines the color scheme of the component.\nThere are 10 predefined schemes.\nTo use one you can set a number from `\"1\"` to `\"10\"`. The `colorScheme` `\"1\"` will be set by default.",
                "value": { "type": "string" }
              },
              {
                "name": "design",
                "description": "Defines the design type of the component.",
                "value": {
                  "type": "\"Positive\" | \"Critical\" | \"Negative\" | \"Information\" | \"Neutral\" | \"Set1\" | \"Set2\""
                }
              },
              {
                "name": "hide-state-icon",
                "description": "Defines if the default state icon is shown.",
                "value": { "type": "boolean" }
              },
              {
                "name": "interactive",
                "description": "Defines if the component is interactive (focusable and pressable).",
                "value": { "type": "boolean" }
              },
              {
                "name": "size",
                "description": "Defines predefined size of the component.",
                "value": { "type": "\"S\" | \"L\"" }
              },
              {
                "name": "wrapping-type",
                "description": "Defines how the text of a component will be displayed when there is not enough space.\n\n**Note:** For option \"Normal\" the text will wrap and the\nwords will not be broken based on hyphenation.",
                "value": { "type": "\"None\" | \"Normal\"" }
              }
            ],
            "events": [
              {
                "name": "click",
                "description": "Fired when the user clicks on an interactive tag.\n\n**Note:** The event will be fired if the `interactive` property is `true`"
              }
            ]
          }
        },
        {
          "name": "ui5-text",
          "description": "### Overview\n\nThe `ui5-text` component displays text that can be used in any content area of an application.\n\n### Usage\n\n- Use the `ui5-text` if you want to display text inside a form, table, or any other content area.\n- Do not use the `ui5-text` if you need to reference input type of components (use ui5-label).\n\n### Responsive behavior\n\nThe `ui5-text` component is fully adaptive to all screen sizes.\nBy default, the text will wrap when the space is not enough.\nIn addition, the component supports truncation via the `max-lines` property,\nby defining the number of lines the text should wrap before start truncating.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Text\";`\n---\n\n\n### **Slots:**\n - **default** - Defines the text of the component.",
          "doc-url": "",
          "attributes": [
            {
              "name": "empty-indicator-mode",
              "description": "Specifies if an empty indicator should be displayed when there is no text.",
              "value": { "type": "\"On\" | \"Off\"", "default": "\"Off\"" }
            },
            {
              "name": "max-lines",
              "description": "Defines the number of lines the text should wrap before it truncates.",
              "value": { "type": "number", "default": "Infinity" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the text of the component."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "empty-indicator-mode",
                "description": "Specifies if an empty indicator should be displayed when there is no text.",
                "value": { "type": "\"On\" | \"Off\"" }
              },
              {
                "name": "max-lines",
                "description": "Defines the number of lines the text should wrap before it truncates.",
                "value": { "type": "number" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-textarea",
          "description": "### Overview\n\nThe `ui5-textarea` component is used to enter multiple rows of text.\n\nWhen empty, it can hold a placeholder similar to a `ui5-input`.\nYou can define the rows of the `ui5-textarea` and also determine specific behavior when handling long texts.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TextArea.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the text has changed and the focus leaves the component.\n- **input** - Fired when the value of the component changes at each keystroke or when\nsomething is pasted.\n- **scroll** - Fired when textarea is scrolled.\n- **select** - Fired when some text has been selected.\n\n### **Slots:**\n - **valueStateMessage** - Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n \n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed if the component has\n`valueState` of type `Information`, `Critical` or `Negative`.\n\n### **CSS Parts:**\n - **textarea** - Used to style the native textarea",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Receives id(or many ids) of the elements that describe the textarea.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the textarea.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "disabled",
              "description": "Indicates whether the user can interact with the component or not.\n\n**Note:** A disabled component is completely noninteractive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "growing",
              "description": "Enables the component to automatically grow and shrink dynamically with its content.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "growing-max-rows",
              "description": "Defines the maximum number of rows that the component can grow.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "maxlength",
              "description": "Defines the maximum number of characters that the `value` can have.",
              "value": { "type": "number | undefined", "default": "undefined" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "placeholder",
              "description": "Defines a short hint intended to aid the user with data entry when the component has no value.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "readonly",
              "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "rows",
              "description": "Defines the number of visible text rows for the component.\n\n**Notes:**\n\n- If the `growing` property is enabled, this property defines the minimum rows to be displayed\nin the textarea.\n- The CSS `height` property wins over the `rows` property, if both are set.",
              "value": { "type": "number", "default": "0" }
            },
            {
              "name": "show-exceeded-text",
              "description": "Determines whether the characters exceeding the maximum allowed character count are visible\nin the component.\n\nIf set to `false`, the user is not allowed to enter more characters than what is set in the\n`maxlength` property.\nIf set to `true` the characters exceeding the `maxlength` value are selected on\npaste and the counter below the component displays their number.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "value",
              "description": "Defines the value of the component.",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.\n\n**Note:** If `maxlength` property is set,\nthe component turns into \"Critical\" state once the characters exceeds the limit.\nIn this case, only the \"Negative\" state is considered and can be applied.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "valueStateMessage",
              "description": "Defines the value state message that will be displayed as pop up under the component.\nThe value state message slot should contain only one root element.\n \n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed if the component has\n`valueState` of type `Information`, `Critical` or `Negative`."
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the text has changed and the focus leaves the component."
            },
            {
              "name": "input",
              "description": "Fired when the value of the component changes at each keystroke or when\nsomething is pasted."
            },
            {
              "name": "scroll",
              "description": "Fired when textarea is scrolled."
            },
            {
              "name": "select",
              "description": "Fired when some text has been selected."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Receives id(or many ids) of the elements that describe the textarea.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the textarea.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "disabled",
                "description": "Indicates whether the user can interact with the component or not.\n\n**Note:** A disabled component is completely noninteractive.",
                "value": { "type": "boolean" }
              },
              {
                "name": "growing",
                "description": "Enables the component to automatically grow and shrink dynamically with its content.",
                "value": { "type": "boolean" }
              },
              {
                "name": "growing-max-rows",
                "description": "Defines the maximum number of rows that the component can grow.",
                "value": { "type": "number" }
              },
              {
                "name": "maxlength",
                "description": "Defines the maximum number of characters that the `value` can have.",
                "value": { "type": "number | undefined" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "placeholder",
                "description": "Defines a short hint intended to aid the user with data entry when the component has no value.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "readonly",
                "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
                "value": { "type": "boolean" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.",
                "value": { "type": "boolean" }
              },
              {
                "name": "rows",
                "description": "Defines the number of visible text rows for the component.\n\n**Notes:**\n\n- If the `growing` property is enabled, this property defines the minimum rows to be displayed\nin the textarea.\n- The CSS `height` property wins over the `rows` property, if both are set.",
                "value": { "type": "number" }
              },
              {
                "name": "show-exceeded-text",
                "description": "Determines whether the characters exceeding the maximum allowed character count are visible\nin the component.\n\nIf set to `false`, the user is not allowed to enter more characters than what is set in the\n`maxlength` property.\nIf set to `true` the characters exceeding the `maxlength` value are selected on\npaste and the counter below the component displays their number.",
                "value": { "type": "boolean" }
              },
              {
                "name": "value",
                "description": "Defines the value of the component.",
                "value": { "type": "string" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.\n\n**Note:** If `maxlength` property is set,\nthe component turns into \"Critical\" state once the characters exceeds the limit.\nIn this case, only the \"Negative\" state is considered and can be applied.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the text has changed and the focus leaves the component."
              },
              {
                "name": "input",
                "description": "Fired when the value of the component changes at each keystroke or when\nsomething is pasted."
              },
              {
                "name": "scroll",
                "description": "Fired when textarea is scrolled."
              },
              {
                "name": "select",
                "description": "Fired when some text has been selected."
              }
            ]
          }
        },
        {
          "name": "ui5-time-picker",
          "description": "### Overview\nThe `ui5-time-picker` component provides an input field with assigned clocks which are opened on user action.\nThe `ui5-time-picker` allows users to select a localized time using touch, mouse, or keyboard input.\nIt consists of two parts: the time input field and the clocks.\n\n### Usage\nThe user can enter a time by:\n\n- Using the clocks that are displayed in a popup\n- Typing it in directly in the input field\n\nWhen the user makes an entry and chooses the enter key, the clocks show the corresponding time (hours, minutes and seconds separately).\nWhen the user directly triggers the clocks display, the actual time is displayed.\nFor the `ui5-time-picker`\n\n### Formatting\n\nIf a time is entered by typing it into\nthe input field, it must fit to the used time format.\n\nSupported format options are pattern-based on Unicode LDML Date Format notation.\nFor more information, see [UTS #35: Unicode Locale Data Markup Language](https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table).\n\nFor example, if the valueFormat is \"HH:mm:ss\", the displayFormat is \"hh:mm: ss a\", and the used locale is English, a valid value string is \"11:42:35\", which leads to an output of \"11:42:35 AM\".\nIf no placeholder is set to the TimePicker, the used displayFormat is displayed as a placeholder. If another placeholder is needed, it must be set.\n\n### Keyboard handling\n[F4], [Alt]+[Up], [Alt]+[Down] Open/Close picker dialog and move focus to it.\n\nWhen closed:\n\n- [Page Up] - Increments hours by 1. If 12 am is reached, increment hours to 1 pm and vice versa.\n- [Page Down] - Decrements the corresponding field by 1. If 1 pm is reached, decrement hours to 12 am and vice versa.\n- [Shift]+[Page Up] - Increments minutes by 1.\n- [Shift]+[Page Down] - Decrements minutes by 1.\n- [Shift]+[Ctrl]+[Page Up] - Increments seconds by 1.\n- [Shift]+[Ctrl]+[Page Down] - Decrements seconds by 1.\n-\n\nWhen opened:\n\n- [Page Up] - Increments hours by 1. If 12 am is reached, increment hours to 1 pm and vice versa.\n- [Page Down] - Decrements the corresponding field by 1. If 1 pm is reached, decrement hours to 12 am and vice versa.\n- [Shift]+[Page Up] - Increments minutes by 1.\n- [Shift]+[Page Down] - Decrements minutes by 1.\n- [Shift]+[Ctrl]+[Page Up] - Increments seconds by 1.\n- [Shift]+[Ctrl]+[Page Down] - Decrements seconds by 1.\n- [A] or [P] - Selects AM or PM respectively.\n- [0]-[9] - Allows direct time selecting (hours/minutes/seconds).\n- [:] - Allows switching between hours/minutes/seconds clocks. If the last clock is displayed and [:] is pressed, the first clock is beind displayed.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TimePicker.js\";`\n---\n\n\n### **Events:**\n - **change** - Fired when the input operation has finished by clicking the \"OK\" button or\nwhen the text in the input field has changed and the focus leaves the input field.\n- **close** - Fired after the value-help dialog of the component is closed.\n- **input** - Fired when the value of the `ui5-time-picker` is changed at each key stroke.\n- **open** - Fired after the value-help dialog of the component is opened.\n\n### **Methods:**\n - **formatValue(date: _Date_): _string_** - Formats a Java Script date object into a string representing a locale date and time\naccording to the `formatPattern` property of the TimePicker instance\n- **isValid(value: _string | undefined_): _boolean_** - Checks if a value is valid against the current `formatPattern` value.\n\n**Note:** an empty string is considered as valid value.\n- **isValidValue(value: _string | undefined_): _boolean_** - Checks if a value is valid against the current `valueFormat` value.\n\n**Note:** an empty string is considered as valid value.\n\n### **Slots:**\n - **valueStateMessage** - Defines the value state message that will be displayed as pop up under the `ui5-time-picker`.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the `ui5-time-picker` is in `Information`, `Critical` or `Negative` value state.\n\n### **CSS Parts:**\n - **input** - Used to style the input element. This part is forwarded to the underlying ui5-input element.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Receives id(or many ids) of the elements that describe the input.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the aria-label attribute for the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id (or many ids) of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "date-value",
              "description": "Currently selected time represented as JavaScript Date instance",
              "value": { "type": "any", "default": "null" }
            },
            {
              "name": "disabled",
              "description": "Defines the disabled state of the comonent.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "display-format",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "format-pattern",
              "description": "Determines the format, displayed in the input field.\n\nExample:\nHH:mm:ss -> 11:42:35\nhh:mm:ss a -> 2:23:15 PM\nmm:ss -> 12:04 (only minutes and seconds)",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "open",
              "description": "Defines the open or closed state of the popover.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "placeholder",
              "description": "Defines a short hint, intended to aid the user with data entry when the\ncomponent has no value.\n\n**Note:** When no placeholder is set, the format pattern is displayed as a placeholder.\nPassing an empty string as the value of this property will make the component appear empty - without placeholder or format pattern.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "readonly",
              "description": "Defines the readonly state of the comonent.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "required",
              "description": "Defines whether the component is required.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "value",
              "description": "Defines a formatted time value.",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "value-format",
              "description": "Determines the format, used for the value attribute.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "valueStateMessage",
              "description": "Defines the value state message that will be displayed as pop up under the `ui5-time-picker`.\n\n**Note:** If not specified, a default text (in the respective language) will be displayed.\n\n**Note:** The `valueStateMessage` would be displayed,\nwhen the `ui5-time-picker` is in `Information`, `Critical` or `Negative` value state."
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the input operation has finished by clicking the \"OK\" button or\nwhen the text in the input field has changed and the focus leaves the input field."
            },
            {
              "name": "close",
              "description": "Fired after the value-help dialog of the component is closed."
            },
            {
              "name": "input",
              "description": "Fired when the value of the `ui5-time-picker` is changed at each key stroke."
            },
            {
              "name": "open",
              "description": "Fired after the value-help dialog of the component is opened."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Receives id(or many ids) of the elements that describe the input.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the aria-label attribute for the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id (or many ids) of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "date-value",
                "description": "Currently selected time represented as JavaScript Date instance",
                "value": { "type": "any" }
              },
              {
                "name": "disabled",
                "description": "Defines the disabled state of the comonent.",
                "value": { "type": "boolean" }
              },
              {
                "name": "display-format",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "format-pattern",
                "description": "Determines the format, displayed in the input field.\n\nExample:\nHH:mm:ss -> 11:42:35\nhh:mm:ss a -> 2:23:15 PM\nmm:ss -> 12:04 (only minutes and seconds)",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "open",
                "description": "Defines the open or closed state of the popover.",
                "value": { "type": "boolean" }
              },
              {
                "name": "placeholder",
                "description": "Defines a short hint, intended to aid the user with data entry when the\ncomponent has no value.\n\n**Note:** When no placeholder is set, the format pattern is displayed as a placeholder.\nPassing an empty string as the value of this property will make the component appear empty - without placeholder or format pattern.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "readonly",
                "description": "Defines the readonly state of the comonent.",
                "value": { "type": "boolean" }
              },
              {
                "name": "required",
                "description": "Defines whether the component is required.",
                "value": { "type": "boolean" }
              },
              {
                "name": "value",
                "description": "Defines a formatted time value.",
                "value": { "type": "string" }
              },
              {
                "name": "value-format",
                "description": "Determines the format, used for the value attribute.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the input operation has finished by clicking the \"OK\" button or\nwhen the text in the input field has changed and the focus leaves the input field."
              },
              {
                "name": "close",
                "description": "Fired after the value-help dialog of the component is closed."
              },
              {
                "name": "input",
                "description": "Fired when the value of the `ui5-time-picker` is changed at each key stroke."
              },
              {
                "name": "open",
                "description": "Fired after the value-help dialog of the component is opened."
              }
            ]
          }
        },
        {
          "name": "ui5-time-picker-clock",
          "description": "### Overview\n\n`ui5-time-picker-clock` allows selecting of hours,minutes or seconds (depending on property set).\nThe component supports interactions with mouse, touch and mouse wheel.\nThe step for displaying or selecting of items can be configured.\n\n`ui5-time-picker-clock` is used as part of `ui5-time-selection-clocks` component, which\nis used in `ui5-time-picker` component respectively.\n\n### Usage\n\n`ui5-time-picker-clock` can display hours, minutes or seconds\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/TimePickerClock.js\";`\n---\n",
          "doc-url": "",
          "attributes": [],
          "events": [],
          "js": { "properties": [], "events": [] }
        },
        {
          "name": "ui5-time-selection-clocks",
          "description": "### Overview\n\n`ui5-time-selection-clocks` is component that contains all the `ui5-time-picker-clock` components\nnecessary for the `ui5-time-picker` as well as all necessary `ui5-toggle-spin-button` components\nused for switching between different clocks.\n`ui5-time-picker-clock` components and `ui5-toggle-spin-button` depend on the time format set to\n`ui5-time-picker` component.\n\nThis component should not be used separately.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "format-pattern",
              "description": "Determines the format, displayed in the input field.\n\nExample:\nHH:mm:ss -> 11:42:35\nhh:mm:ss a -> 2:23:15 PM\nmm:ss -> 12:04 (only minutes and seconds)",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "value",
              "description": "Defines a formatted time value.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "format-pattern",
                "description": "Determines the format, displayed in the input field.\n\nExample:\nHH:mm:ss -> 11:42:35\nhh:mm:ss a -> 2:23:15 PM\nmm:ss -> 12:04 (only minutes and seconds)",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "value",
                "description": "Defines a formatted time value.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-time-selection-inputs",
          "description": "### Overview\n\n`ui5-time-selection-inputs` displays a popover with `ui5-input` components of type=\"number\" and an\noptional a AM/PM `ui5-segmented-button` according to the display format given to the `ui5-time-picker`.\nUsing of numeric input components enables display of mobile devices' native numeric keyboard, which speeds up entering of the time.\nThe popup appears only on mobile devices when there is a tap on the `ui5-time-picker` input.\n\nThis component should not be used separately.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "format-pattern",
              "description": "Determines the format, displayed in the input field.\n\nExample:\nHH:mm:ss -> 11:42:35\nhh:mm:ss a -> 2:23:15 PM\nmm:ss -> 12:04 (only minutes and seconds)",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "value",
              "description": "Defines a formatted time value.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "format-pattern",
                "description": "Determines the format, displayed in the input field.\n\nExample:\nHH:mm:ss -> 11:42:35\nhh:mm:ss a -> 2:23:15 PM\nmm:ss -> 12:04 (only minutes and seconds)",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "value",
                "description": "Defines a formatted time value.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-title",
          "description": "### Overview\n\nThe `ui5-title` component is used to display titles inside a page.\nIt is a simple, large-sized text with explicit header/title semantics.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Title.js\";`\n---\n\n\n### **Slots:**\n - **default** - Defines the text of the component.\nThis component supports nesting a `Link` component inside.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.",
          "doc-url": "",
          "attributes": [
            {
              "name": "level",
              "description": "Defines the component level.\nAvailable options are: `\"H6\"` to `\"H1\"`.\nThis property does not influence the style of the component.\nUse the property `size` for this purpose instead.",
              "value": {
                "type": "\"H1\" | \"H2\" | \"H3\" | \"H4\" | \"H5\" | \"H6\"",
                "default": "\"H2\""
              }
            },
            {
              "name": "size",
              "description": "Defines the visual appearance of the title.\nAvailable options are: `\"H6\"` to `\"H1\"`.",
              "value": {
                "type": "\"H1\" | \"H2\" | \"H3\" | \"H4\" | \"H5\" | \"H6\"",
                "default": "\"H5\""
              }
            },
            {
              "name": "wrapping-type",
              "description": "Defines how the text of a component will be displayed when there is not enough space.\n\n**Note:** for option \"Normal\" the text will wrap and the words will not be broken based on hyphenation.",
              "value": {
                "type": "\"None\" | \"Normal\"",
                "default": "\"Normal\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the text of the component.\nThis component supports nesting a `Link` component inside.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "level",
                "description": "Defines the component level.\nAvailable options are: `\"H6\"` to `\"H1\"`.\nThis property does not influence the style of the component.\nUse the property `size` for this purpose instead.",
                "value": {
                  "type": "\"H1\" | \"H2\" | \"H3\" | \"H4\" | \"H5\" | \"H6\""
                }
              },
              {
                "name": "size",
                "description": "Defines the visual appearance of the title.\nAvailable options are: `\"H6\"` to `\"H1\"`.",
                "value": {
                  "type": "\"H1\" | \"H2\" | \"H3\" | \"H4\" | \"H5\" | \"H6\""
                }
              },
              {
                "name": "wrapping-type",
                "description": "Defines how the text of a component will be displayed when there is not enough space.\n\n**Note:** for option \"Normal\" the text will wrap and the words will not be broken based on hyphenation.",
                "value": { "type": "\"None\" | \"Normal\"" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-toast",
          "description": "### Overview\n\nThe `ui5-toast` is a small, non-disruptive popup for success or information messages that\ndisappears automatically after a few seconds.\n\n### Usage\n\n#### When to use:\n\n- You want to display a short success or information message.\n- You do not want to interrupt users while they are performing an action.\n- You want to confirm a successful action.\n\n#### When not to use:\n\n- You want to display error or warning message.\n- You want to interrupt users while they are performing an action.\n- You want to make sure that users read the message before they leave the page.\n- You want users to be able to copy some part of the message text.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Toast.js\";`\n---\n\n\n### **Events:**\n - **close** - Fired after the component is auto closed.\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.",
          "doc-url": "",
          "attributes": [
            {
              "name": "duration",
              "description": "Defines the duration in milliseconds for which component\nremains on the screen before it's automatically closed.\n\n**Note:** The minimum supported value is `500` ms\nand even if a lower value is set, the duration would remain `500` ms.",
              "value": { "type": "number", "default": "3000" }
            },
            {
              "name": "open",
              "description": "Indicates whether the component is open (visible).",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "placement",
              "description": "Defines the placement of the component.",
              "value": {
                "type": "\"TopStart\" | \"TopCenter\" | \"TopEnd\" | \"MiddleStart\" | \"MiddleCenter\" | \"MiddleEnd\" | \"BottomStart\" | \"BottomCenter\" | \"BottomEnd\"",
                "default": "\"BottomCenter\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design."
            }
          ],
          "events": [
            {
              "name": "close",
              "description": "Fired after the component is auto closed."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "duration",
                "description": "Defines the duration in milliseconds for which component\nremains on the screen before it's automatically closed.\n\n**Note:** The minimum supported value is `500` ms\nand even if a lower value is set, the duration would remain `500` ms.",
                "value": { "type": "number" }
              },
              {
                "name": "open",
                "description": "Indicates whether the component is open (visible).",
                "value": { "type": "boolean" }
              },
              {
                "name": "placement",
                "description": "Defines the placement of the component.",
                "value": {
                  "type": "\"TopStart\" | \"TopCenter\" | \"TopEnd\" | \"MiddleStart\" | \"MiddleCenter\" | \"MiddleEnd\" | \"BottomStart\" | \"BottomCenter\" | \"BottomEnd\""
                }
              }
            ],
            "events": [
              {
                "name": "close",
                "description": "Fired after the component is auto closed."
              }
            ]
          }
        },
        {
          "name": "ui5-toggle-button",
          "description": "### Overview\n\nThe `ui5-toggle-button` component is an enhanced `ui5-button`\nthat can be toggled between pressed and normal states.\nUsers can use the `ui5-toggle-button` as a switch to turn a setting on or off.\nIt can also be used to represent an independent choice similar to a check box.\n\nClicking or tapping on a `ui5-toggle-button` changes its state to `pressed`. The button returns to\nits initial state when the user clicks or taps on it again.\nBy applying additional custom CSS-styling classes, apps can give a different style to any `ui5-toggle-button`.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/ToggleButton.js\";`\n---\n\n\n### **Events:**\n - **click** - Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`.\n\n### **Slots:**\n - **badge** - Adds a badge to the button.\n- **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.\n\n### **CSS Parts:**\n - **button** - Used to style the native button element\n- **endIcon** - Used to style the end icon in the native button element\n- **icon** - Used to style the icon in the native button element",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessibility-attributes",
              "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **expanded**: Indicates whether the button, or another grouping element it controls, is currently expanded or collapsed.\nAccepts the following string values: `true` or `false`\n\n- **hasPopup**: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the button.\nAccepts the following string values: `dialog`, `grid`, `listbox`, `menu` or `tree`.\n\n- **ariaLabel**: Defines the accessible ARIA name of the component.\nAccepts any string value.\n\n - **ariaKeyShortcuts**: Defines keyboard shortcuts that activate or give focus to the button.\n\n- **controls**: Identifies the element (or elements) whose contents or presence are controlled by the button element.\nAccepts a lowercase string value.",
              "value": {
                "type": "ButtonAccessibilityAttributes",
                "default": "{}"
              }
            },
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-role",
              "description": "Describes the accessibility role of the button.\n\n**Note:** Use <code>ButtonAccessibleRole.Link</code> role only with a press handler, which performs a navigation. In all other scenarios the default button semantics are recommended.",
              "value": {
                "type": "\"Button\" | \"Link\"",
                "default": "\"Button\""
              }
            },
            {
              "name": "design",
              "description": "Defines the component design.",
              "value": {
                "type": "\"Transparent\" | \"Positive\" | \"Negative\" | \"Default\" | \"Emphasized\" | \"Attention\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is disabled.\nA disabled component can't be pressed or\nfocused, and it is not in the tab chain.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "end-icon",
              "description": "Defines the icon, displayed as graphical element within the component after the button text.\n\n**Note:** It is highly recommended to use `endIcon` property only together with `icon` and/or `text` properties.\nUsage of `endIcon` only should be avoided.\n\nThe SAP-icons font provides numerous options.\n\nExample:\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "form",
              "description": "Associates the button with a form element by the form's `id` attribute.\nWhen set, the button can submit or reset the specified form even if the button\nis not a descendant of that form.\n\n**Note:** This property takes effect only when the button's \"type\" property is set to \"Submit\" or \"Reset\".",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "icon",
              "description": "Defines the icon, displayed as graphical element within the component.\nThe SAP-icons font provides numerous options.\n\nExample:\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "loading",
              "description": "Defines whether the button shows a loading indicator.\n\n**Note:** If set to `true`, a busy indicator component will be displayed on the related button.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "loading-delay",
              "description": "Specifies the delay in milliseconds before the loading indicator appears within the associated button.",
              "value": { "type": "number", "default": "1000" }
            },
            {
              "name": "pressed",
              "description": "Determines whether the component is displayed as pressed.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "submits",
              "description": "When set to `true`, the component will\nautomatically submit the nearest HTML form element on `press`.\n\n**Note:** This property is only applicable within the context of an HTML Form element.`",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "tooltip",
              "description": "Defines the tooltip of the component.\n\n**Note:** A tooltip attribute should be provided for icon-only buttons, in order to represent their exact meaning/function.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "type",
              "description": "Defines whether the button has special form-related functionality.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": {
                "type": "\"Button\" | \"Submit\" | \"Reset\"",
                "default": "\"Button\""
              }
            }
          ],
          "slots": [
            { "name": "badge", "description": "Adds a badge to the button." },
            {
              "name": "default",
              "description": "Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design."
            }
          ],
          "events": [
            {
              "name": "click",
              "description": "Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessibility-attributes",
                "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **expanded**: Indicates whether the button, or another grouping element it controls, is currently expanded or collapsed.\nAccepts the following string values: `true` or `false`\n\n- **hasPopup**: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the button.\nAccepts the following string values: `dialog`, `grid`, `listbox`, `menu` or `tree`.\n\n- **ariaLabel**: Defines the accessible ARIA name of the component.\nAccepts any string value.\n\n - **ariaKeyShortcuts**: Defines keyboard shortcuts that activate or give focus to the button.\n\n- **controls**: Identifies the element (or elements) whose contents or presence are controlled by the button element.\nAccepts a lowercase string value.",
                "value": { "type": "ButtonAccessibilityAttributes" }
              },
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-role",
                "description": "Describes the accessibility role of the button.\n\n**Note:** Use <code>ButtonAccessibleRole.Link</code> role only with a press handler, which performs a navigation. In all other scenarios the default button semantics are recommended.",
                "value": { "type": "\"Button\" | \"Link\"" }
              },
              {
                "name": "design",
                "description": "Defines the component design.",
                "value": {
                  "type": "\"Transparent\" | \"Positive\" | \"Negative\" | \"Default\" | \"Emphasized\" | \"Attention\""
                }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is disabled.\nA disabled component can't be pressed or\nfocused, and it is not in the tab chain.",
                "value": { "type": "boolean" }
              },
              {
                "name": "end-icon",
                "description": "Defines the icon, displayed as graphical element within the component after the button text.\n\n**Note:** It is highly recommended to use `endIcon` property only together with `icon` and/or `text` properties.\nUsage of `endIcon` only should be avoided.\n\nThe SAP-icons font provides numerous options.\n\nExample:\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "form",
                "description": "Associates the button with a form element by the form's `id` attribute.\nWhen set, the button can submit or reset the specified form even if the button\nis not a descendant of that form.\n\n**Note:** This property takes effect only when the button's \"type\" property is set to \"Submit\" or \"Reset\".",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "icon",
                "description": "Defines the icon, displayed as graphical element within the component.\nThe SAP-icons font provides numerous options.\n\nExample:\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "loading",
                "description": "Defines whether the button shows a loading indicator.\n\n**Note:** If set to `true`, a busy indicator component will be displayed on the related button.",
                "value": { "type": "boolean" }
              },
              {
                "name": "loading-delay",
                "description": "Specifies the delay in milliseconds before the loading indicator appears within the associated button.",
                "value": { "type": "number" }
              },
              {
                "name": "pressed",
                "description": "Determines whether the component is displayed as pressed.",
                "value": { "type": "boolean" }
              },
              {
                "name": "submits",
                "description": "When set to `true`, the component will\nautomatically submit the nearest HTML form element on `press`.\n\n**Note:** This property is only applicable within the context of an HTML Form element.`",
                "value": { "type": "boolean" }
              },
              {
                "name": "tooltip",
                "description": "Defines the tooltip of the component.\n\n**Note:** A tooltip attribute should be provided for icon-only buttons, in order to represent their exact meaning/function.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "type",
                "description": "Defines whether the button has special form-related functionality.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "\"Button\" | \"Submit\" | \"Reset\"" }
              }
            ],
            "events": [
              {
                "name": "click",
                "description": "Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`."
              }
            ]
          }
        },
        {
          "name": "ui5-toggle-spin-button",
          "description": "### Overview\n\n`ui5-toggle-spin-button` is explicitly used in the new design of `ui5-time-picker`.\nIt extends `ui5-toggle-button` with some specific accessibility-related properties in order to\nhave spin button look and feel from accessibility point of view. This component should not be used separately.\n---\n\n\n### **Events:**\n - **click** - Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`.\n\n### **Slots:**\n - **badge** - Adds a badge to the button.\n- **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.\n\n### **CSS Parts:**\n - **button** - Used to style the native button element\n- **endIcon** - Used to style the end icon in the native button element\n- **icon** - Used to style the icon in the native button element",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessibility-attributes",
              "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **expanded**: Indicates whether the button, or another grouping element it controls, is currently expanded or collapsed.\nAccepts the following string values: `true` or `false`\n\n- **hasPopup**: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the button.\nAccepts the following string values: `dialog`, `grid`, `listbox`, `menu` or `tree`.\n\n- **ariaLabel**: Defines the accessible ARIA name of the component.\nAccepts any string value.\n\n - **ariaKeyShortcuts**: Defines keyboard shortcuts that activate or give focus to the button.\n\n- **controls**: Identifies the element (or elements) whose contents or presence are controlled by the button element.\nAccepts a lowercase string value.",
              "value": {
                "type": "ButtonAccessibilityAttributes",
                "default": "{}"
              }
            },
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-role",
              "description": "Describes the accessibility role of the button.\n\n**Note:** Use <code>ButtonAccessibleRole.Link</code> role only with a press handler, which performs a navigation. In all other scenarios the default button semantics are recommended.",
              "value": {
                "type": "\"Button\" | \"Link\"",
                "default": "\"Button\""
              }
            },
            {
              "name": "design",
              "description": "Defines the component design.",
              "value": {
                "type": "\"Transparent\" | \"Positive\" | \"Negative\" | \"Default\" | \"Emphasized\" | \"Attention\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is disabled.\nA disabled component can't be pressed or\nfocused, and it is not in the tab chain.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "end-icon",
              "description": "Defines the icon, displayed as graphical element within the component after the button text.\n\n**Note:** It is highly recommended to use `endIcon` property only together with `icon` and/or `text` properties.\nUsage of `endIcon` only should be avoided.\n\nThe SAP-icons font provides numerous options.\n\nExample:\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "form",
              "description": "Associates the button with a form element by the form's `id` attribute.\nWhen set, the button can submit or reset the specified form even if the button\nis not a descendant of that form.\n\n**Note:** This property takes effect only when the button's \"type\" property is set to \"Submit\" or \"Reset\".",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "icon",
              "description": "Defines the icon, displayed as graphical element within the component.\nThe SAP-icons font provides numerous options.\n\nExample:\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "loading",
              "description": "Defines whether the button shows a loading indicator.\n\n**Note:** If set to `true`, a busy indicator component will be displayed on the related button.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "loading-delay",
              "description": "Specifies the delay in milliseconds before the loading indicator appears within the associated button.",
              "value": { "type": "number", "default": "1000" }
            },
            {
              "name": "pressed",
              "description": "Determines whether the component is displayed as pressed.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "submits",
              "description": "When set to `true`, the component will\nautomatically submit the nearest HTML form element on `press`.\n\n**Note:** This property is only applicable within the context of an HTML Form element.`",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "tooltip",
              "description": "Defines the tooltip of the component.\n\n**Note:** A tooltip attribute should be provided for icon-only buttons, in order to represent their exact meaning/function.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "type",
              "description": "Defines whether the button has special form-related functionality.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
              "value": {
                "type": "\"Button\" | \"Submit\" | \"Reset\"",
                "default": "\"Button\""
              }
            }
          ],
          "slots": [
            { "name": "badge", "description": "Adds a badge to the button." },
            {
              "name": "default",
              "description": "Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design."
            }
          ],
          "events": [
            {
              "name": "click",
              "description": "Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessibility-attributes",
                "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **expanded**: Indicates whether the button, or another grouping element it controls, is currently expanded or collapsed.\nAccepts the following string values: `true` or `false`\n\n- **hasPopup**: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the button.\nAccepts the following string values: `dialog`, `grid`, `listbox`, `menu` or `tree`.\n\n- **ariaLabel**: Defines the accessible ARIA name of the component.\nAccepts any string value.\n\n - **ariaKeyShortcuts**: Defines keyboard shortcuts that activate or give focus to the button.\n\n- **controls**: Identifies the element (or elements) whose contents or presence are controlled by the button element.\nAccepts a lowercase string value.",
                "value": { "type": "ButtonAccessibilityAttributes" }
              },
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-role",
                "description": "Describes the accessibility role of the button.\n\n**Note:** Use <code>ButtonAccessibleRole.Link</code> role only with a press handler, which performs a navigation. In all other scenarios the default button semantics are recommended.",
                "value": { "type": "\"Button\" | \"Link\"" }
              },
              {
                "name": "design",
                "description": "Defines the component design.",
                "value": {
                  "type": "\"Transparent\" | \"Positive\" | \"Negative\" | \"Default\" | \"Emphasized\" | \"Attention\""
                }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is disabled.\nA disabled component can't be pressed or\nfocused, and it is not in the tab chain.",
                "value": { "type": "boolean" }
              },
              {
                "name": "end-icon",
                "description": "Defines the icon, displayed as graphical element within the component after the button text.\n\n**Note:** It is highly recommended to use `endIcon` property only together with `icon` and/or `text` properties.\nUsage of `endIcon` only should be avoided.\n\nThe SAP-icons font provides numerous options.\n\nExample:\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "form",
                "description": "Associates the button with a form element by the form's `id` attribute.\nWhen set, the button can submit or reset the specified form even if the button\nis not a descendant of that form.\n\n**Note:** This property takes effect only when the button's \"type\" property is set to \"Submit\" or \"Reset\".",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "icon",
                "description": "Defines the icon, displayed as graphical element within the component.\nThe SAP-icons font provides numerous options.\n\nExample:\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "loading",
                "description": "Defines whether the button shows a loading indicator.\n\n**Note:** If set to `true`, a busy indicator component will be displayed on the related button.",
                "value": { "type": "boolean" }
              },
              {
                "name": "loading-delay",
                "description": "Specifies the delay in milliseconds before the loading indicator appears within the associated button.",
                "value": { "type": "number" }
              },
              {
                "name": "pressed",
                "description": "Determines whether the component is displayed as pressed.",
                "value": { "type": "boolean" }
              },
              {
                "name": "submits",
                "description": "When set to `true`, the component will\nautomatically submit the nearest HTML form element on `press`.\n\n**Note:** This property is only applicable within the context of an HTML Form element.`",
                "value": { "type": "boolean" }
              },
              {
                "name": "tooltip",
                "description": "Defines the tooltip of the component.\n\n**Note:** A tooltip attribute should be provided for icon-only buttons, in order to represent their exact meaning/function.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "type",
                "description": "Defines whether the button has special form-related functionality.\n\n**Note:** This property is only applicable within the context of an HTML Form element.",
                "value": { "type": "\"Button\" | \"Submit\" | \"Reset\"" }
              }
            ],
            "events": [
              {
                "name": "click",
                "description": "Fired when the component is activated either with a mouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled` property is set to `true`."
              }
            ]
          }
        },
        {
          "name": "ui5-token",
          "description": "### Overview\n\nTokens are small items of information (similar to tags) that mainly serve to visualize previously selected items.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Token.js\";`\n---\n\n\n### **Slots:**\n - **closeIcon** - Defines the close icon for the token. If nothing is provided to this slot, the default close icon will be used.\nAccepts `ui5-icon`.",
          "doc-url": "",
          "attributes": [
            {
              "name": "selected",
              "description": "Defines whether the component is selected or not.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "text",
              "description": "Defines the text of the token.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "closeIcon",
              "description": "Defines the close icon for the token. If nothing is provided to this slot, the default close icon will be used.\nAccepts `ui5-icon`."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "selected",
                "description": "Defines whether the component is selected or not.",
                "value": { "type": "boolean" }
              },
              {
                "name": "text",
                "description": "Defines the text of the token.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-tokenizer",
          "description": "### Overview\n\nA `ui5-tokenizer` is an invisible container for `ui5-token`s that supports keyboard navigation and token selection.\n\nThe `ui5-tokenizer` consists of two parts:\n- Tokens - displays the available tokens.\n- N-more indicator - contains the number of the remaining tokens that cannot be displayed due to the limited space.\n\n### Keyboard Handling\n\n#### Basic Navigation\nThe `ui5-tokenizer` provides advanced keyboard handling.\nWhen a token is focused the user can use the following keyboard\nshortcuts in order to perform a navigation:\n\n- [Left] or [Right] / [Up] or [Down] - Navigates left and right through the tokens.\n- [Home] - Navigates to the first token.\n- [End] - Navigates to the last token.\n\nThe user can use the following keyboard shortcuts to perform actions (such as select, delete):\n\n- [Space] - Selects a token.\n- [Backspace] / [Delete] - Deletes a token.\n**Note:** The deletion of a token is handled by the application with the use of the `token-delete` event.\n\n### ES6 Module Import\n\n`import \"@ui5/webcomponents/dist/Tokenizer.js\";`\n---\n\n\n### **Events:**\n - **selection-change** - Fired when token selection is changed by user interaction\n- **token-delete** - Fired when tokens are being deleted (delete icon, delete or backspace is pressed)\n\n### **Slots:**\n - **default** - Defines the tokens to be displayed.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is disabled.\n\n**Note:** A disabled component is completely noninteractive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "multi-line",
              "description": "Defines whether tokens are displayed on multiple lines.\n\n**Note:** The `multiLine` property is in an experimental state and is a subject to change.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "name",
              "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.\n**Note:** When the component is used inside a form element,\nthe value is sent as the first element in the form data, even if it's empty.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "readonly",
              "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-clear-all",
              "description": "Defines whether \"Clear All\" button is present. Ensure `multiLine` is enabled, otherwise `showClearAll` will have no effect.\n\n**Note:** The `showClearAll` property is in an experimental state and is a subject to change.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the tokens to be displayed."
            }
          ],
          "events": [
            {
              "name": "selection-change",
              "description": "Fired when token selection is changed by user interaction"
            },
            {
              "name": "token-delete",
              "description": "Fired when tokens are being deleted (delete icon, delete or backspace is pressed)"
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is disabled.\n\n**Note:** A disabled component is completely noninteractive.",
                "value": { "type": "boolean" }
              },
              {
                "name": "multi-line",
                "description": "Defines whether tokens are displayed on multiple lines.\n\n**Note:** The `multiLine` property is in an experimental state and is a subject to change.",
                "value": { "type": "boolean" }
              },
              {
                "name": "name",
                "description": "Determines the name by which the component will be identified upon submission in an HTML form.\n\n**Note:** This property is only applicable within the context of an HTML Form element.\n**Note:** When the component is used inside a form element,\nthe value is sent as the first element in the form data, even if it's empty.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "readonly",
                "description": "Defines whether the component is read-only.\n\n**Note:** A read-only component is not editable,\nbut still provides visual feedback upon user interaction.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-clear-all",
                "description": "Defines whether \"Clear All\" button is present. Ensure `multiLine` is enabled, otherwise `showClearAll` will have no effect.\n\n**Note:** The `showClearAll` property is in an experimental state and is a subject to change.",
                "value": { "type": "boolean" }
              }
            ],
            "events": [
              {
                "name": "selection-change",
                "description": "Fired when token selection is changed by user interaction"
              },
              {
                "name": "token-delete",
                "description": "Fired when tokens are being deleted (delete icon, delete or backspace is pressed)"
              }
            ]
          }
        },
        {
          "name": "ui5-toolbar",
          "description": "### Overview\n\nThe `ui5-toolbar` component is used to create a horizontal layout with items.\nThe items can be overflowing in a popover, when the space is not enough to show all of them.\n\n### Keyboard Handling\nThe `ui5-toolbar` provides advanced keyboard handling.\n\n- The control is not interactive, but can contain of interactive elements\n- [Tab] - iterates through elements\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/Toolbar.js\";`\n---\n\n\n### **Methods:**\n - **isOverflowOpen(): _boolean_** - Returns if the overflow popup is open.\n\n### **Slots:**\n - **default** - Defines the items of the component.\n\n**Note:** Currently only `ui5-toolbar-button`, `ui5-toolbar-select`, `ui5-toolbar-separator` and `ui5-toolbar-spacer` are allowed here.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the input.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "align-content",
              "description": "Indicated the direction in which the Toolbar items will be aligned.",
              "value": { "type": "\"Start\" | \"End\"", "default": "\"End\"" }
            },
            {
              "name": "design",
              "description": "Defines the toolbar design.",
              "value": {
                "type": "\"Transparent\" | \"Solid\"",
                "default": "\"Solid\""
              }
            },
            {
              "name": "overflow-button-accessible-name",
              "description": "Defines the accessible ARIA name of the overflow button of the component.\n\n**Note:** When not set, the built-in translation for \"Additional Options\" is used.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the items of the component.\n\n**Note:** Currently only `ui5-toolbar-button`, `ui5-toolbar-select`, `ui5-toolbar-separator` and `ui5-toolbar-spacer` are allowed here."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the input.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "align-content",
                "description": "Indicated the direction in which the Toolbar items will be aligned.",
                "value": { "type": "\"Start\" | \"End\"" }
              },
              {
                "name": "design",
                "description": "Defines the toolbar design.",
                "value": { "type": "\"Transparent\" | \"Solid\"" }
              },
              {
                "name": "overflow-button-accessible-name",
                "description": "Defines the accessible ARIA name of the overflow button of the component.\n\n**Note:** When not set, the built-in translation for \"Additional Options\" is used.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-toolbar-button",
          "description": "### Overview\nThe `ui5-toolbar-button` represents an abstract action,\nused in the `ui5-toolbar`.\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/ToolbarButton.js\";`\n---\n\n\n### **Events:**\n - **click** - Fired when the component is activated either with a\nmouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled`\nproperty is set to `true`.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessibility-attributes",
              "description": "Defines the additional accessibility attributes that will be applied to the component.\n\nThe following fields are supported:\n\n- **expanded**: Indicates whether the button, or another grouping element it controls, is currently expanded or collapsed.\nAccepts the following string values: `true` or `false`\n\n- **hasPopup**: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the button.\nAccepts the following string values: `dialog`, `grid`, `listbox`, `menu` or `tree`.\n\n- **controls**: Identifies the element (or elements) whose contents or presence are controlled by the button element.\nAccepts a lowercase string value.",
              "value": {
                "type": "ButtonAccessibilityAttributes",
                "default": "{}"
              }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "design",
              "description": "Defines the action design.",
              "value": {
                "type": "\"Transparent\" | \"Positive\" | \"Negative\" | \"Default\" | \"Emphasized\" | \"Attention\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "disabled",
              "description": "Defines if the action is disabled.\n\n**Note:** a disabled action can't be pressed or focused, and it is not in the tab chain.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "end-icon",
              "description": "Defines the icon, displayed as graphical element within the component after the button text.\n\n**Note:** It is highly recommended to use `endIcon` property only together with `icon` and/or `text` properties.\nUsage of `endIcon` only should be avoided.\n\nThe SAP-icons font provides numerous options.\n\nExample:\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "icon",
              "description": "Defines the `icon` source URI.\n\n**Note:** SAP-icons font provides numerous buil-in icons. To find all the available icons, see the\n[Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "overflow-priority",
              "description": "Property used to define the access of the item to the overflow Popover. If \"NeverOverflow\" option is set,\nthe item never goes in the Popover, if \"AlwaysOverflow\" - it never comes out of it.",
              "value": {
                "type": "\"Default\" | \"NeverOverflow\" | \"AlwaysOverflow\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "prevent-overflow-closing",
              "description": "Defines if the toolbar overflow popup should close upon interaction with the item.\nIt will close by default.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "show-overflow-text",
              "description": "Defines whether the button text should only be displayed in the overflow popover.\n\nWhen set to `true`, the button appears as icon-only in the main toolbar,\nbut shows both icon and text when moved to the overflow popover.\n\n**Note:** This property only takes effect when the `text` property is also set.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "text",
              "description": "Button text",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "tooltip",
              "description": "Defines the tooltip of the component.\n\n**Note:** A tooltip attribute should be provided for icon-only buttons, in order to represent their exact meaning/function.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "width",
              "description": "Defines the width of the button.\n\n**Note:** all CSS sizes are supported - 'percentage', 'px', 'rem', 'auto', etc.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [
            {
              "name": "click",
              "description": "Fired when the component is activated either with a\nmouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled`\nproperty is set to `true`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessibility-attributes",
                "description": "Defines the additional accessibility attributes that will be applied to the component.\n\nThe following fields are supported:\n\n- **expanded**: Indicates whether the button, or another grouping element it controls, is currently expanded or collapsed.\nAccepts the following string values: `true` or `false`\n\n- **hasPopup**: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the button.\nAccepts the following string values: `dialog`, `grid`, `listbox`, `menu` or `tree`.\n\n- **controls**: Identifies the element (or elements) whose contents or presence are controlled by the button element.\nAccepts a lowercase string value.",
                "value": { "type": "ButtonAccessibilityAttributes" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "design",
                "description": "Defines the action design.",
                "value": {
                  "type": "\"Transparent\" | \"Positive\" | \"Negative\" | \"Default\" | \"Emphasized\" | \"Attention\""
                }
              },
              {
                "name": "disabled",
                "description": "Defines if the action is disabled.\n\n**Note:** a disabled action can't be pressed or focused, and it is not in the tab chain.",
                "value": { "type": "boolean" }
              },
              {
                "name": "end-icon",
                "description": "Defines the icon, displayed as graphical element within the component after the button text.\n\n**Note:** It is highly recommended to use `endIcon` property only together with `icon` and/or `text` properties.\nUsage of `endIcon` only should be avoided.\n\nThe SAP-icons font provides numerous options.\n\nExample:\nSee all the available icons within the [Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "icon",
                "description": "Defines the `icon` source URI.\n\n**Note:** SAP-icons font provides numerous buil-in icons. To find all the available icons, see the\n[Icon Explorer](https://sdk.openui5.org/test-resources/sap/m/demokit/iconExplorer/webapp/index.html).",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "overflow-priority",
                "description": "Property used to define the access of the item to the overflow Popover. If \"NeverOverflow\" option is set,\nthe item never goes in the Popover, if \"AlwaysOverflow\" - it never comes out of it.",
                "value": {
                  "type": "\"Default\" | \"NeverOverflow\" | \"AlwaysOverflow\""
                }
              },
              {
                "name": "prevent-overflow-closing",
                "description": "Defines if the toolbar overflow popup should close upon interaction with the item.\nIt will close by default.",
                "value": { "type": "boolean" }
              },
              {
                "name": "show-overflow-text",
                "description": "Defines whether the button text should only be displayed in the overflow popover.\n\nWhen set to `true`, the button appears as icon-only in the main toolbar,\nbut shows both icon and text when moved to the overflow popover.\n\n**Note:** This property only takes effect when the `text` property is also set.",
                "value": { "type": "boolean" }
              },
              {
                "name": "text",
                "description": "Button text",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "tooltip",
                "description": "Defines the tooltip of the component.\n\n**Note:** A tooltip attribute should be provided for icon-only buttons, in order to represent their exact meaning/function.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "width",
                "description": "Defines the width of the button.\n\n**Note:** all CSS sizes are supported - 'percentage', 'px', 'rem', 'auto', etc.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": [
              {
                "name": "click",
                "description": "Fired when the component is activated either with a\nmouse/tap or by using the Enter or Space key.\n\n**Note:** The event will not be fired if the `disabled`\nproperty is set to `true`."
              }
            ]
          }
        },
        {
          "name": "ui5-toolbar-item",
          "description": "### Overview\nThe `ui5-toolbar-item` is a wrapper component used to integrate UI5 Web Components into the `ui5-toolbar`.\nIt renders within the toolbar's shadow DOM and manages the lifecycle\nand overflow behavior of its child component.\n\n### Structure\nThe toolbar item wraps a single UI5 Web Component (such as CheckBox, Title, etc.) and handles:\n- Overflow management (determining if the item should be displayed in the main toolbar or overflow popover)\n- Automatic popover closing on interaction\n- CSS custom state exposure for styling based on overflow state\n\n### Usage\nThe `ui5-toolbar-item` is typically used implicitly when adding components to a toolbar,\nbut specialized wrappers like `ui5-toolbar-button` provide\ncomponent-specific functionality and should be preferred when available.\n---\n\n\n### **Slots:**\n - **default** - Wrapped component slot.",
          "doc-url": "",
          "attributes": [
            {
              "name": "overflow-priority",
              "description": "Property used to define the access of the item to the overflow Popover. If \"NeverOverflow\" option is set,\nthe item never goes in the Popover, if \"AlwaysOverflow\" - it never comes out of it.",
              "value": {
                "type": "\"Default\" | \"NeverOverflow\" | \"AlwaysOverflow\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "prevent-overflow-closing",
              "description": "Defines if the toolbar overflow popup should close upon interaction with the item.\nIt will close by default.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "slots": [
            { "name": "default", "description": "Wrapped component slot." }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "overflow-priority",
                "description": "Property used to define the access of the item to the overflow Popover. If \"NeverOverflow\" option is set,\nthe item never goes in the Popover, if \"AlwaysOverflow\" - it never comes out of it.",
                "value": {
                  "type": "\"Default\" | \"NeverOverflow\" | \"AlwaysOverflow\""
                }
              },
              {
                "name": "prevent-overflow-closing",
                "description": "Defines if the toolbar overflow popup should close upon interaction with the item.\nIt will close by default.",
                "value": { "type": "boolean" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-toolbar-select",
          "description": "### Overview\nThe `ui5-toolbar-select` component is used to create a toolbar drop-down list.\nThe items inside the `ui5-toolbar-select` define the available options by using the `ui5-toolbar-select-option` component.\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/ToolbarSelect.js\";`\n\n`import \"@ui5/webcomponents/dist/ToolbarSelectOption.js\";` (comes with `ui5-toolbar-select`)\n---\n\n\n### **Events:**\n - **change** - Fired when the selected option changes.\n- **close** - Fired after the component's dropdown menu closes.\n- **open** - Fired after the component's dropdown menu opens.\n\n### **Slots:**\n - **default** - Defines the component options.\n\n**Note:** Only one selected option is allowed.\nIf more than one option is defined as selected, the last one would be considered as the selected one.\n\n**Note:** Use the `ui5-toolbar-select-option` component to define the desired options.\n- **label** - Defines the HTML element that will be displayed in the component input part,\nrepresenting the selected option.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-name",
              "description": "Defines the accessible ARIA name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Receives id(or many ids) of the elements that label the select.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "disabled",
              "description": "Defines whether the component is in disabled state.\n\n**Note:** A disabled component is noninteractive.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "overflow-priority",
              "description": "Property used to define the access of the item to the overflow Popover. If \"NeverOverflow\" option is set,\nthe item never goes in the Popover, if \"AlwaysOverflow\" - it never comes out of it.",
              "value": {
                "type": "\"Default\" | \"NeverOverflow\" | \"AlwaysOverflow\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "prevent-overflow-closing",
              "description": "Defines if the toolbar overflow popup should close upon interaction with the item.\nIt will close by default.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "value",
              "description": "Defines the value of the component:",
              "value": { "type": "any", "default": "\"\"" }
            },
            {
              "name": "value-state",
              "description": "Defines the value state of the component.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            },
            {
              "name": "width",
              "description": "Defines the width of the select.\n\n**Note:** all CSS sizes are supported - 'percentage', 'px', 'rem', 'auto', etc.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the component options.\n\n**Note:** Only one selected option is allowed.\nIf more than one option is defined as selected, the last one would be considered as the selected one.\n\n**Note:** Use the `ui5-toolbar-select-option` component to define the desired options."
            },
            {
              "name": "label",
              "description": "Defines the HTML element that will be displayed in the component input part,\nrepresenting the selected option."
            }
          ],
          "events": [
            {
              "name": "change",
              "description": "Fired when the selected option changes."
            },
            {
              "name": "close",
              "description": "Fired after the component's dropdown menu closes."
            },
            {
              "name": "open",
              "description": "Fired after the component's dropdown menu opens."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-name",
                "description": "Defines the accessible ARIA name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Receives id(or many ids) of the elements that label the select.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "disabled",
                "description": "Defines whether the component is in disabled state.\n\n**Note:** A disabled component is noninteractive.",
                "value": { "type": "boolean" }
              },
              {
                "name": "overflow-priority",
                "description": "Property used to define the access of the item to the overflow Popover. If \"NeverOverflow\" option is set,\nthe item never goes in the Popover, if \"AlwaysOverflow\" - it never comes out of it.",
                "value": {
                  "type": "\"Default\" | \"NeverOverflow\" | \"AlwaysOverflow\""
                }
              },
              {
                "name": "prevent-overflow-closing",
                "description": "Defines if the toolbar overflow popup should close upon interaction with the item.\nIt will close by default.",
                "value": { "type": "boolean" }
              },
              {
                "name": "value",
                "description": "Defines the value of the component:",
                "value": { "type": "any" }
              },
              {
                "name": "value-state",
                "description": "Defines the value state of the component.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              },
              {
                "name": "width",
                "description": "Defines the width of the select.\n\n**Note:** all CSS sizes are supported - 'percentage', 'px', 'rem', 'auto', etc.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": [
              {
                "name": "change",
                "description": "Fired when the selected option changes."
              },
              {
                "name": "close",
                "description": "Fired after the component's dropdown menu closes."
              },
              {
                "name": "open",
                "description": "Fired after the component's dropdown menu opens."
              }
            ]
          }
        },
        {
          "name": "ui5-toolbar-select-option",
          "description": "### Overview\n\nThe `ui5-toolbar-select-option` component defines the content of an option in the `ui5-toolbar-select`.\n---\n\n\n### **Slots:**\n - **default** - Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.",
          "doc-url": "",
          "attributes": [
            {
              "name": "selected",
              "description": "Defines the selected state of the component.",
              "value": { "type": "any", "default": "false" }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the text of the component.\n\n**Note:** Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design."
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "selected",
                "description": "Defines the selected state of the component.",
                "value": { "type": "any" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-toolbar-separator",
          "description": "### Overview\nThe `ui5-toolbar-separator` is an element, used for visual separation between two elements.\nIt takes no space in calculating toolbar items width.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "overflow-priority",
              "description": "Property used to define the access of the item to the overflow Popover. If \"NeverOverflow\" option is set,\nthe item never goes in the Popover, if \"AlwaysOverflow\" - it never comes out of it.",
              "value": {
                "type": "\"Default\" | \"NeverOverflow\" | \"AlwaysOverflow\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "prevent-overflow-closing",
              "description": "Defines if the toolbar overflow popup should close upon interaction with the item.\nIt will close by default.",
              "value": { "type": "boolean", "default": "false" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "overflow-priority",
                "description": "Property used to define the access of the item to the overflow Popover. If \"NeverOverflow\" option is set,\nthe item never goes in the Popover, if \"AlwaysOverflow\" - it never comes out of it.",
                "value": {
                  "type": "\"Default\" | \"NeverOverflow\" | \"AlwaysOverflow\""
                }
              },
              {
                "name": "prevent-overflow-closing",
                "description": "Defines if the toolbar overflow popup should close upon interaction with the item.\nIt will close by default.",
                "value": { "type": "boolean" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-toolbar-spacer",
          "description": "### Overview\nThe `ui5-toolbar-spacer` is an element, used for taking needed space for toolbar items to take 100% width.\nIt takes no space in calculating toolbar items width.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "overflow-priority",
              "description": "Property used to define the access of the item to the overflow Popover. If \"NeverOverflow\" option is set,\nthe item never goes in the Popover, if \"AlwaysOverflow\" - it never comes out of it.",
              "value": {
                "type": "\"Default\" | \"NeverOverflow\" | \"AlwaysOverflow\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "prevent-overflow-closing",
              "description": "Defines if the toolbar overflow popup should close upon interaction with the item.\nIt will close by default.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "width",
              "description": "Defines the width of the spacer.\n\n**Note:** all CSS sizes are supported - 'percentage', 'px', 'rem', 'auto', etc.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "overflow-priority",
                "description": "Property used to define the access of the item to the overflow Popover. If \"NeverOverflow\" option is set,\nthe item never goes in the Popover, if \"AlwaysOverflow\" - it never comes out of it.",
                "value": {
                  "type": "\"Default\" | \"NeverOverflow\" | \"AlwaysOverflow\""
                }
              },
              {
                "name": "prevent-overflow-closing",
                "description": "Defines if the toolbar overflow popup should close upon interaction with the item.\nIt will close by default.",
                "value": { "type": "boolean" }
              },
              {
                "name": "width",
                "description": "Defines the width of the spacer.\n\n**Note:** all CSS sizes are supported - 'percentage', 'px', 'rem', 'auto', etc.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-tree",
          "description": "### Overview\nThe `ui5-tree` component provides a tree structure for displaying data in a hierarchy.\n\n### Usage\n\n#### When to use:\n\n- To display hierarchically structured items.\n- To select one or more items out of a set of hierarchically structured items.\n\n#### When not to use:\n\n- To display items not hierarchically structured. In this case, use the List component.\n- To select one item from a very small number of non-hierarchical items. Select or ComboBox might be more appropriate.\n- The hierarchy turns out to have only two levels. In this case, use List with group items.\n\n### Keyboard Handling\n\nThe `ui5-tree` provides advanced keyboard handling.\nThe user can use the following keyboard shortcuts in order to navigate trough the tree:\n\n- [Up] or [Down] - Navigates up and down the tree items that are currently visible.\n- [Right] - Drills down the tree by expanding the tree nodes.\n- [Left] - Goes up the tree and collapses the tree nodes.\n\nThe user can use the following keyboard shortcuts to perform selection,\nwhen the `selectionMode` property is in use:\n\n- [Space] - Selects the currently focused item upon keyup.\n- [Enter]  - Selects the currently focused item upon keydown.\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/Tree.js\";`\n\n`import \"@ui5/webcomponents/dist/TreeItem.js\";`\n---\n\n\n### **Events:**\n - **item-click** - Fired when a tree item is activated.\n- **item-delete** - Fired when the Delete button of any tree item is pressed.\n\n**Note:** A Delete button is displayed on each item,\nwhen the component `selectionMode` property is set to `Delete`.\n- **item-mouseout** - Fired when the mouse cursor leaves the tree item borders.\n- **item-mouseover** - Fired when the mouse cursor enters the tree item borders.\n- **item-toggle** - Fired when a tree item is expanded or collapsed.\n\n**Note:** You can call `preventDefault()` on the event object to suppress the event, if needed.\nThis may be handy for example if you want to dynamically load tree items upon the user expanding a node.\nEven if you prevented the event's default behavior, you can always manually call `toggle()` on a tree item.\n- **move** - Fired when a movable tree item is moved over a potential drop target during a drag-and-drop operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`.\n- **move-over** - Fired when a movable tree item is dropped onto a drop target.\n\n**Note:** The `move` event is fired only if there was a preceding `move-over` event with prevented default action.\n- **selection-change** - Fired when selection is changed by user interaction\nin `Single`, `SingleStart`, `SingleEnd` and `Multiple` modes.\n\n### **Methods:**\n - **walk(callback: _WalkCallback_): _void_** - Perform Depth-First-Search walk on the tree and run a callback on each node\n\n### **Slots:**\n - **default** - Defines the items of the component. Tree items may have other tree items as children.\n\n**Note:** Use `ui5-tree-item` for the intended design.\n- **header** - Defines the component header.\n\n**Note:** When the `header` slot is set, the\n`headerText` property is ignored.",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessible-description",
              "description": "Defines the accessible description of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-description-ref",
              "description": "Defines the IDs of the elements that describe the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "accessible-name-ref",
              "description": "Defines the IDs of the elements that label the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "footer-text",
              "description": "Defines the component footer text.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "header-text",
              "description": "Defines the component header text.\n\n**Note:** If the `header` slot is set, this property is ignored.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "no-data-text",
              "description": "Defines the text that is displayed when the component contains no items.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "selection-mode",
              "description": "Defines the selection mode of the component. Since the tree uses a `ui5-list` to display its structure,\nthe tree modes are exactly the same as the list modes, and are all applicable.",
              "value": {
                "type": "\"None\" | \"Single\" | \"Multiple\" | \"SingleStart\" | \"SingleEnd\" | \"SingleAuto\" | \"Delete\" | undefined",
                "default": "\"None\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the items of the component. Tree items may have other tree items as children.\n\n**Note:** Use `ui5-tree-item` for the intended design."
            },
            {
              "name": "header",
              "description": "Defines the component header.\n\n**Note:** When the `header` slot is set, the\n`headerText` property is ignored."
            }
          ],
          "events": [
            {
              "name": "item-click",
              "description": "Fired when a tree item is activated."
            },
            {
              "name": "item-delete",
              "description": "Fired when the Delete button of any tree item is pressed.\n\n**Note:** A Delete button is displayed on each item,\nwhen the component `selectionMode` property is set to `Delete`."
            },
            {
              "name": "item-mouseout",
              "description": "Fired when the mouse cursor leaves the tree item borders."
            },
            {
              "name": "item-mouseover",
              "description": "Fired when the mouse cursor enters the tree item borders."
            },
            {
              "name": "item-toggle",
              "description": "Fired when a tree item is expanded or collapsed.\n\n**Note:** You can call `preventDefault()` on the event object to suppress the event, if needed.\nThis may be handy for example if you want to dynamically load tree items upon the user expanding a node.\nEven if you prevented the event's default behavior, you can always manually call `toggle()` on a tree item."
            },
            {
              "name": "move",
              "description": "Fired when a movable tree item is moved over a potential drop target during a drag-and-drop operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`."
            },
            {
              "name": "move-over",
              "description": "Fired when a movable tree item is dropped onto a drop target.\n\n**Note:** The `move` event is fired only if there was a preceding `move-over` event with prevented default action."
            },
            {
              "name": "selection-change",
              "description": "Fired when selection is changed by user interaction\nin `Single`, `SingleStart`, `SingleEnd` and `Multiple` modes."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessible-description",
                "description": "Defines the accessible description of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-description-ref",
                "description": "Defines the IDs of the elements that describe the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "accessible-name-ref",
                "description": "Defines the IDs of the elements that label the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "footer-text",
                "description": "Defines the component footer text.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "header-text",
                "description": "Defines the component header text.\n\n**Note:** If the `header` slot is set, this property is ignored.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "no-data-text",
                "description": "Defines the text that is displayed when the component contains no items.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "selection-mode",
                "description": "Defines the selection mode of the component. Since the tree uses a `ui5-list` to display its structure,\nthe tree modes are exactly the same as the list modes, and are all applicable.",
                "value": {
                  "type": "\"None\" | \"Single\" | \"Multiple\" | \"SingleStart\" | \"SingleEnd\" | \"SingleAuto\" | \"Delete\" | undefined"
                }
              }
            ],
            "events": [
              {
                "name": "item-click",
                "description": "Fired when a tree item is activated."
              },
              {
                "name": "item-delete",
                "description": "Fired when the Delete button of any tree item is pressed.\n\n**Note:** A Delete button is displayed on each item,\nwhen the component `selectionMode` property is set to `Delete`."
              },
              {
                "name": "item-mouseout",
                "description": "Fired when the mouse cursor leaves the tree item borders."
              },
              {
                "name": "item-mouseover",
                "description": "Fired when the mouse cursor enters the tree item borders."
              },
              {
                "name": "item-toggle",
                "description": "Fired when a tree item is expanded or collapsed.\n\n**Note:** You can call `preventDefault()` on the event object to suppress the event, if needed.\nThis may be handy for example if you want to dynamically load tree items upon the user expanding a node.\nEven if you prevented the event's default behavior, you can always manually call `toggle()` on a tree item."
              },
              {
                "name": "move",
                "description": "Fired when a movable tree item is moved over a potential drop target during a drag-and-drop operation.\n\nIf the new position is valid, prevent the default action of the event using `preventDefault()`."
              },
              {
                "name": "move-over",
                "description": "Fired when a movable tree item is dropped onto a drop target.\n\n**Note:** The `move` event is fired only if there was a preceding `move-over` event with prevented default action."
              },
              {
                "name": "selection-change",
                "description": "Fired when selection is changed by user interaction\nin `Single`, `SingleStart`, `SingleEnd` and `Multiple` modes."
              }
            ]
          }
        },
        {
          "name": "ui5-tree-item",
          "description": "### Overview\nThe `ui5-tree-item` represents a node in a tree structure, shown as a `ui5-list`.\n\nThis is the item to use inside a `ui5-tree`.\nYou can represent an arbitrary tree structure by recursively nesting tree items.\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/TreeItem.js\";`\n---\n\n\n### **Events:**\n - **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Methods:**\n - **toggle(): _void_** - Call this method to manually switch the `expanded` state of a tree item.\n\n### **Slots:**\n - **default** - Defines the items of the component.\n\n**Note:** Use `ui5-tree-item` or `ui5-tree-item-custom`\n- **deleteButton** - Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed.\n- **image** - **Note:** While the slot allows option for setting custom avatar, to match the\ndesign guidelines, please use the `ui5-avatar` with size XS.\n\n**Note:** If bigger `ui5-avatar` needs to be used, then the size of the\n`ui5-tree-item` should be customized in order to fit.\n\n### **CSS Parts:**\n - **additionalText** - Used to style the additionalText of the tree list item\n- **icon** - Used to style the icon of the tree list item\n- **title** - Used to style the title of the tree list item",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessibility-attributes",
              "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **ariaSetsize**: Defines the number of items in the current set  when not all items in the set are present in the DOM.\n**Note:** The value is an integer reflecting the number of items in the complete set. If the size of the entire set is unknown, set `-1`.\n\n\t- **ariaPosinset**: Defines an element's number or position in the current set when not all items are present in the DOM.\n\t**Note:** The value is an integer greater than or equal to 1, and less than or equal to the size of the set when that size is known.",
              "value": {
                "type": "ListItemAccessibilityAttributes",
                "default": "{}"
              }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "additional-text",
              "description": "Defines the `additionalText`, displayed in the end of the tree item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "additional-text-state",
              "description": "Defines the state of the `additionalText`.\n\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            },
            {
              "name": "expanded",
              "description": "Defines whether the tree list item will show a collapse or expand icon inside its toggle button.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "has-children",
              "description": "Defines whether the tree node has children, even if currently no other tree nodes are slotted inside.\n\n**Note:** This property is useful for showing big tree structures where not all nodes are initially loaded due to performance reasons.\nSet this to `true` for nodes you intend to load lazily, when the user clicks the expand button.\nIt is not necessary to set this property otherwise. If a tree item has children, the expand button will be displayed anyway.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "highlight",
              "description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            },
            {
              "name": "icon",
              "description": "If set, an icon will be displayed before the text of the tree list item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "indeterminate",
              "description": "Defines whether the selection of a tree node is displayed as partially selected.\n\n**Note:** The indeterminate state can be set only programmatically and can’t be achieved by user\ninteraction, meaning that the resulting visual state depends on the values of the `indeterminate`\nand `selected` properties:\n\n-  If a tree node has both `selected` and `indeterminate` set to `true`, it is displayed as partially selected.\n-  If a tree node has `selected` set to `true` and `indeterminate` set to `false`, it is displayed as selected.\n-  If a tree node has `selected` set to `false`, it is displayed as not selected regardless of the value of the `indeterminate` property.\n\n**Note:** This property takes effect only when the `ui5-tree` is in `Multiple` mode.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "movable",
              "description": "Defines whether the item is movable.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "navigated",
              "description": "The navigated state of the list item.\nIf set to `true`, a navigation indicator is displayed at the end of the list item.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "selected",
              "description": "Defines the selected state of the component.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "text",
              "description": "Defines the text of the tree item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "tooltip",
              "description": "Defines the text of the tooltip that would be displayed for the list item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "type",
              "description": "Defines the visual indication and behavior of the list items.\nAvailable options are `Active` (by default), `Inactive`, `Detail` and `Navigation`.\n\n**Note:** When set to `Active` or `Navigation`, the item will provide visual response upon press and hover,\nwhile with type `Inactive` and `Detail` - will not.",
              "value": {
                "type": "\"Navigation\" | \"Inactive\" | \"Active\" | \"Detail\"",
                "default": "\"Active\""
              }
            }
          ],
          "slots": [
            {
              "name": "default",
              "description": "Defines the items of the component.\n\n**Note:** Use `ui5-tree-item` or `ui5-tree-item-custom`"
            },
            {
              "name": "deleteButton",
              "description": "Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed."
            },
            {
              "name": "image",
              "description": "**Note:** While the slot allows option for setting custom avatar, to match the\ndesign guidelines, please use the `ui5-avatar` with size XS.\n\n**Note:** If bigger `ui5-avatar` needs to be used, then the size of the\n`ui5-tree-item` should be customized in order to fit."
            }
          ],
          "events": [
            {
              "name": "detail-click",
              "description": "Fired when the user clicks on the detail button when type is `Detail`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessibility-attributes",
                "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **ariaSetsize**: Defines the number of items in the current set  when not all items in the set are present in the DOM.\n**Note:** The value is an integer reflecting the number of items in the complete set. If the size of the entire set is unknown, set `-1`.\n\n\t- **ariaPosinset**: Defines an element's number or position in the current set when not all items are present in the DOM.\n\t**Note:** The value is an integer greater than or equal to 1, and less than or equal to the size of the set when that size is known.",
                "value": { "type": "ListItemAccessibilityAttributes" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "additional-text",
                "description": "Defines the `additionalText`, displayed in the end of the tree item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "additional-text-state",
                "description": "Defines the state of the `additionalText`.\n\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              },
              {
                "name": "expanded",
                "description": "Defines whether the tree list item will show a collapse or expand icon inside its toggle button.",
                "value": { "type": "boolean" }
              },
              {
                "name": "has-children",
                "description": "Defines whether the tree node has children, even if currently no other tree nodes are slotted inside.\n\n**Note:** This property is useful for showing big tree structures where not all nodes are initially loaded due to performance reasons.\nSet this to `true` for nodes you intend to load lazily, when the user clicks the expand button.\nIt is not necessary to set this property otherwise. If a tree item has children, the expand button will be displayed anyway.",
                "value": { "type": "boolean" }
              },
              {
                "name": "highlight",
                "description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              },
              {
                "name": "icon",
                "description": "If set, an icon will be displayed before the text of the tree list item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "indeterminate",
                "description": "Defines whether the selection of a tree node is displayed as partially selected.\n\n**Note:** The indeterminate state can be set only programmatically and can’t be achieved by user\ninteraction, meaning that the resulting visual state depends on the values of the `indeterminate`\nand `selected` properties:\n\n-  If a tree node has both `selected` and `indeterminate` set to `true`, it is displayed as partially selected.\n-  If a tree node has `selected` set to `true` and `indeterminate` set to `false`, it is displayed as selected.\n-  If a tree node has `selected` set to `false`, it is displayed as not selected regardless of the value of the `indeterminate` property.\n\n**Note:** This property takes effect only when the `ui5-tree` is in `Multiple` mode.",
                "value": { "type": "boolean" }
              },
              {
                "name": "movable",
                "description": "Defines whether the item is movable.",
                "value": { "type": "boolean" }
              },
              {
                "name": "navigated",
                "description": "The navigated state of the list item.\nIf set to `true`, a navigation indicator is displayed at the end of the list item.",
                "value": { "type": "boolean" }
              },
              {
                "name": "selected",
                "description": "Defines the selected state of the component.",
                "value": { "type": "boolean" }
              },
              {
                "name": "text",
                "description": "Defines the text of the tree item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "tooltip",
                "description": "Defines the text of the tooltip that would be displayed for the list item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "type",
                "description": "Defines the visual indication and behavior of the list items.\nAvailable options are `Active` (by default), `Inactive`, `Detail` and `Navigation`.\n\n**Note:** When set to `Active` or `Navigation`, the item will provide visual response upon press and hover,\nwhile with type `Inactive` and `Detail` - will not.",
                "value": {
                  "type": "\"Navigation\" | \"Inactive\" | \"Active\" | \"Detail\""
                }
              }
            ],
            "events": [
              {
                "name": "detail-click",
                "description": "Fired when the user clicks on the detail button when type is `Detail`."
              }
            ]
          }
        },
        {
          "name": "ui5-tree-item-custom",
          "description": "The `ui5-tree-item-custom` represents a node in a tree structure, shown as a `ui5-list`.\n\nThis is the item to use inside a `ui5-tree`.\nYou can represent an arbitrary tree structure by recursively nesting tree items.\n\nYou can use this item to put any custom content inside the tree item.\n\n### ES6 Module Import\n`import \"@ui5/webcomponents/dist/TreeItemCustom.js\";`\n---\n\n\n### **Events:**\n - **detail-click** - Fired when the user clicks on the detail button when type is `Detail`.\n\n### **Methods:**\n - **toggle(): _void_** - Call this method to manually switch the `expanded` state of a tree item.\n\n### **Slots:**\n - **content** - Defines the content of the `ui5-tree-item`.\n- **default** - Defines the items of the component.\n\n**Note:** Use `ui5-tree-item` or `ui5-tree-item-custom`\n- **deleteButton** - Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed.\n- **image** - **Note:** While the slot allows option for setting custom avatar, to match the\ndesign guidelines, please use the `ui5-avatar` with size XS.\n\n**Note:** If bigger `ui5-avatar` needs to be used, then the size of the\n`ui5-tree-item` should be customized in order to fit.\n\n### **CSS Parts:**\n - **additionalText** - Used to style the additionalText of the tree list item\n- **icon** - Used to style the icon of the tree list item\n- **title** - Used to style the title of the tree list item",
          "doc-url": "",
          "attributes": [
            {
              "name": "accessibility-attributes",
              "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **ariaSetsize**: Defines the number of items in the current set  when not all items in the set are present in the DOM.\n**Note:** The value is an integer reflecting the number of items in the complete set. If the size of the entire set is unknown, set `-1`.\n\n\t- **ariaPosinset**: Defines an element's number or position in the current set when not all items are present in the DOM.\n\t**Note:** The value is an integer greater than or equal to 1, and less than or equal to the size of the set when that size is known.",
              "value": {
                "type": "ListItemAccessibilityAttributes",
                "default": "{}"
              }
            },
            {
              "name": "accessible-name",
              "description": "Defines the accessible name of the component.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "additional-text-state",
              "description": "Defines the state of the `additionalText`.\n\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            },
            {
              "name": "expanded",
              "description": "Defines whether the tree list item will show a collapse or expand icon inside its toggle button.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "has-children",
              "description": "Defines whether the tree node has children, even if currently no other tree nodes are slotted inside.\n\n**Note:** This property is useful for showing big tree structures where not all nodes are initially loaded due to performance reasons.\nSet this to `true` for nodes you intend to load lazily, when the user clicks the expand button.\nIt is not necessary to set this property otherwise. If a tree item has children, the expand button will be displayed anyway.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "hide-selection-element",
              "description": "Defines whether the tree list item should display the selection element.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "highlight",
              "description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
              "value": {
                "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\"",
                "default": "\"None\""
              }
            },
            {
              "name": "icon",
              "description": "If set, an icon will be displayed before the text of the tree list item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "indeterminate",
              "description": "Defines whether the selection of a tree node is displayed as partially selected.\n\n**Note:** The indeterminate state can be set only programmatically and can’t be achieved by user\ninteraction, meaning that the resulting visual state depends on the values of the `indeterminate`\nand `selected` properties:\n\n-  If a tree node has both `selected` and `indeterminate` set to `true`, it is displayed as partially selected.\n-  If a tree node has `selected` set to `true` and `indeterminate` set to `false`, it is displayed as selected.\n-  If a tree node has `selected` set to `false`, it is displayed as not selected regardless of the value of the `indeterminate` property.\n\n**Note:** This property takes effect only when the `ui5-tree` is in `Multiple` mode.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "movable",
              "description": "Defines whether the item is movable.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "navigated",
              "description": "The navigated state of the list item.\nIf set to `true`, a navigation indicator is displayed at the end of the list item.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "selected",
              "description": "Defines the selected state of the component.",
              "value": { "type": "boolean", "default": "false" }
            },
            {
              "name": "tooltip",
              "description": "Defines the text of the tooltip that would be displayed for the list item.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "type",
              "description": "Defines the visual indication and behavior of the list items.\nAvailable options are `Active` (by default), `Inactive`, `Detail` and `Navigation`.\n\n**Note:** When set to `Active` or `Navigation`, the item will provide visual response upon press and hover,\nwhile with type `Inactive` and `Detail` - will not.",
              "value": {
                "type": "\"Navigation\" | \"Inactive\" | \"Active\" | \"Detail\"",
                "default": "\"Active\""
              }
            }
          ],
          "slots": [
            {
              "name": "content",
              "description": "Defines the content of the `ui5-tree-item`."
            },
            {
              "name": "default",
              "description": "Defines the items of the component.\n\n**Note:** Use `ui5-tree-item` or `ui5-tree-item-custom`"
            },
            {
              "name": "deleteButton",
              "description": "Defines the delete button, displayed in \"Delete\" mode.\n**Note:** While the slot allows custom buttons, to match\ndesign guidelines, please use the `ui5-button` component.\n**Note:** When the slot is not present, a built-in delete button will be displayed."
            },
            {
              "name": "image",
              "description": "**Note:** While the slot allows option for setting custom avatar, to match the\ndesign guidelines, please use the `ui5-avatar` with size XS.\n\n**Note:** If bigger `ui5-avatar` needs to be used, then the size of the\n`ui5-tree-item` should be customized in order to fit."
            }
          ],
          "events": [
            {
              "name": "detail-click",
              "description": "Fired when the user clicks on the detail button when type is `Detail`."
            }
          ],
          "js": {
            "properties": [
              {
                "name": "accessibility-attributes",
                "description": "Defines the additional accessibility attributes that will be applied to the component.\nThe following fields are supported:\n\n- **ariaSetsize**: Defines the number of items in the current set  when not all items in the set are present in the DOM.\n**Note:** The value is an integer reflecting the number of items in the complete set. If the size of the entire set is unknown, set `-1`.\n\n\t- **ariaPosinset**: Defines an element's number or position in the current set when not all items are present in the DOM.\n\t**Note:** The value is an integer greater than or equal to 1, and less than or equal to the size of the set when that size is known.",
                "value": { "type": "ListItemAccessibilityAttributes" }
              },
              {
                "name": "accessible-name",
                "description": "Defines the accessible name of the component.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "additional-text-state",
                "description": "Defines the state of the `additionalText`.\n\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              },
              {
                "name": "expanded",
                "description": "Defines whether the tree list item will show a collapse or expand icon inside its toggle button.",
                "value": { "type": "boolean" }
              },
              {
                "name": "has-children",
                "description": "Defines whether the tree node has children, even if currently no other tree nodes are slotted inside.\n\n**Note:** This property is useful for showing big tree structures where not all nodes are initially loaded due to performance reasons.\nSet this to `true` for nodes you intend to load lazily, when the user clicks the expand button.\nIt is not necessary to set this property otherwise. If a tree item has children, the expand button will be displayed anyway.",
                "value": { "type": "boolean" }
              },
              {
                "name": "hide-selection-element",
                "description": "Defines whether the tree list item should display the selection element.",
                "value": { "type": "boolean" }
              },
              {
                "name": "highlight",
                "description": "Defines the highlight state of the list items.\nAvailable options are: `\"None\"` (by default), `\"Positive\"`, `\"Critical\"`, `\"Information\"` and `\"Negative\"`.",
                "value": {
                  "type": "\"None\" | \"Positive\" | \"Critical\" | \"Negative\" | \"Information\""
                }
              },
              {
                "name": "icon",
                "description": "If set, an icon will be displayed before the text of the tree list item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "indeterminate",
                "description": "Defines whether the selection of a tree node is displayed as partially selected.\n\n**Note:** The indeterminate state can be set only programmatically and can’t be achieved by user\ninteraction, meaning that the resulting visual state depends on the values of the `indeterminate`\nand `selected` properties:\n\n-  If a tree node has both `selected` and `indeterminate` set to `true`, it is displayed as partially selected.\n-  If a tree node has `selected` set to `true` and `indeterminate` set to `false`, it is displayed as selected.\n-  If a tree node has `selected` set to `false`, it is displayed as not selected regardless of the value of the `indeterminate` property.\n\n**Note:** This property takes effect only when the `ui5-tree` is in `Multiple` mode.",
                "value": { "type": "boolean" }
              },
              {
                "name": "movable",
                "description": "Defines whether the item is movable.",
                "value": { "type": "boolean" }
              },
              {
                "name": "navigated",
                "description": "The navigated state of the list item.\nIf set to `true`, a navigation indicator is displayed at the end of the list item.",
                "value": { "type": "boolean" }
              },
              {
                "name": "selected",
                "description": "Defines the selected state of the component.",
                "value": { "type": "boolean" }
              },
              {
                "name": "tooltip",
                "description": "Defines the text of the tooltip that would be displayed for the list item.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "type",
                "description": "Defines the visual indication and behavior of the list items.\nAvailable options are `Active` (by default), `Inactive`, `Detail` and `Navigation`.\n\n**Note:** When set to `Active` or `Navigation`, the item will provide visual response upon press and hover,\nwhile with type `Inactive` and `Detail` - will not.",
                "value": {
                  "type": "\"Navigation\" | \"Inactive\" | \"Active\" | \"Detail\""
                }
              }
            ],
            "events": [
              {
                "name": "detail-click",
                "description": "Fired when the user clicks on the detail button when type is `Detail`."
              }
            ]
          }
        },
        {
          "name": "ui5-yearpicker",
          "description": "Displays years which can be selected.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "calendar-week-numbering",
              "description": "Defines how to calculate calendar weeks and first day of the week.\nIf not set, the calendar will be displayed according to the currently set global configuration.",
              "value": {
                "type": "\"Default\" | \"ISO_8601\" | \"MiddleEastern\" | \"WesternTraditional\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "display-format",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "format-pattern",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "max-date",
              "description": "Determines the maximum date available for selection.\n\n**Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "min-date",
              "description": "Determines the minimum date available for selection.\n\n**Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "primary-calendar-type",
              "description": "Sets a calendar type used for display.\nIf not set, the calendar type of the global configuration is used.",
              "value": {
                "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "secondary-calendar-type",
              "description": "Defines the secondary calendar type.\nIf not set, the calendar will only show the primary calendar type.",
              "value": {
                "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "value-format",
              "description": "Determines the format, used for the value attribute.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "calendar-week-numbering",
                "description": "Defines how to calculate calendar weeks and first day of the week.\nIf not set, the calendar will be displayed according to the currently set global configuration.",
                "value": {
                  "type": "\"Default\" | \"ISO_8601\" | \"MiddleEastern\" | \"WesternTraditional\""
                }
              },
              {
                "name": "display-format",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "format-pattern",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "max-date",
                "description": "Determines the maximum date available for selection.\n\n**Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).",
                "value": { "type": "string" }
              },
              {
                "name": "min-date",
                "description": "Determines the minimum date available for selection.\n\n**Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).",
                "value": { "type": "string" }
              },
              {
                "name": "primary-calendar-type",
                "description": "Sets a calendar type used for display.\nIf not set, the calendar type of the global configuration is used.",
                "value": {
                  "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined"
                }
              },
              {
                "name": "secondary-calendar-type",
                "description": "Defines the secondary calendar type.\nIf not set, the calendar will only show the primary calendar type.",
                "value": {
                  "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined"
                }
              },
              {
                "name": "value-format",
                "description": "Determines the format, used for the value attribute.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        },
        {
          "name": "ui5-yearrangepicker",
          "description": "Displays year ranges which help navigate through years faster.\n---\n",
          "doc-url": "",
          "attributes": [
            {
              "name": "calendar-week-numbering",
              "description": "Defines how to calculate calendar weeks and first day of the week.\nIf not set, the calendar will be displayed according to the currently set global configuration.",
              "value": {
                "type": "\"Default\" | \"ISO_8601\" | \"MiddleEastern\" | \"WesternTraditional\"",
                "default": "\"Default\""
              }
            },
            {
              "name": "display-format",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "format-pattern",
              "description": "Determines the format, displayed in the input field.",
              "value": { "type": "string | undefined", "default": "undefined" }
            },
            {
              "name": "max-date",
              "description": "Determines the maximum date available for selection.\n\n**Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "min-date",
              "description": "Determines the minimum date available for selection.\n\n**Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).",
              "value": { "type": "string", "default": "\"\"" }
            },
            {
              "name": "primary-calendar-type",
              "description": "Sets a calendar type used for display.\nIf not set, the calendar type of the global configuration is used.",
              "value": {
                "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "secondary-calendar-type",
              "description": "Defines the secondary calendar type.\nIf not set, the calendar will only show the primary calendar type.",
              "value": {
                "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined",
                "default": "undefined"
              }
            },
            {
              "name": "value-format",
              "description": "Determines the format, used for the value attribute.",
              "value": { "type": "string | undefined", "default": "undefined" }
            }
          ],
          "events": [],
          "js": {
            "properties": [
              {
                "name": "calendar-week-numbering",
                "description": "Defines how to calculate calendar weeks and first day of the week.\nIf not set, the calendar will be displayed according to the currently set global configuration.",
                "value": {
                  "type": "\"Default\" | \"ISO_8601\" | \"MiddleEastern\" | \"WesternTraditional\""
                }
              },
              {
                "name": "display-format",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "format-pattern",
                "description": "Determines the format, displayed in the input field.",
                "value": { "type": "string | undefined" }
              },
              {
                "name": "max-date",
                "description": "Determines the maximum date available for selection.\n\n**Note:** If the formatPattern property is not set, the maxDate value must be provided in the ISO date format (yyyy-MM-dd).",
                "value": { "type": "string" }
              },
              {
                "name": "min-date",
                "description": "Determines the minimum date available for selection.\n\n**Note:** If the formatPattern property is not set, the minDate value must be provided in the ISO date format (yyyy-MM-dd).",
                "value": { "type": "string" }
              },
              {
                "name": "primary-calendar-type",
                "description": "Sets a calendar type used for display.\nIf not set, the calendar type of the global configuration is used.",
                "value": {
                  "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined"
                }
              },
              {
                "name": "secondary-calendar-type",
                "description": "Defines the secondary calendar type.\nIf not set, the calendar will only show the primary calendar type.",
                "value": {
                  "type": "\"Gregorian\" | \"Islamic\" | \"Japanese\" | \"Buddhist\" | \"Persian\" | undefined"
                }
              },
              {
                "name": "value-format",
                "description": "Determines the format, used for the value attribute.",
                "value": { "type": "string | undefined" }
              }
            ],
            "events": []
          }
        }
      ]
    },
    "css": {
      "properties": [],
      "pseudo-elements": [
        {
          "name": "part(bar)",
          "description": "Used to style the wrapper of the content of the component"
        },
        {
          "name": "part(endContent)",
          "description": "Used to style the wrapper of the end content of the component"
        },
        {
          "name": "part(midContent)",
          "description": "Used to style the wrapper of the middle content of the component"
        },
        {
          "name": "part(startContent)",
          "description": "Used to style the wrapper of the start content of the component"
        },
        {
          "name": "part(button)",
          "description": "Used to style the native button element"
        },
        {
          "name": "part(endIcon)",
          "description": "Used to style the end icon in the native button element"
        },
        {
          "name": "part(icon)",
          "description": "Used to style the icon in the native button element"
        },
        {
          "name": "part(calendar-header-arrow-button)",
          "description": "Used to style the calendar header navigation arrow buttons (previous/next buttons)."
        },
        {
          "name": "part(calendar-header-middle-button)",
          "description": "Used to style the calendar header middle buttons (month/year/year-range buttons)."
        },
        {
          "name": "part(day-cell)",
          "description": "Used to style the day cells."
        },
        {
          "name": "part(day-cell-selected)",
          "description": "Used to style the day cells when selected."
        },
        {
          "name": "part(day-cell-selected-between)",
          "description": "Used to style the day cells in between of selected dates in range."
        },
        {
          "name": "part(month-cell)",
          "description": "Used to style the month cells."
        },
        {
          "name": "part(month-cell-selected)",
          "description": "Used to style the month cells when selected."
        },
        {
          "name": "part(month-cell-selected-between)",
          "description": "Used to style the day cells in between of selected months in range."
        },
        {
          "name": "part(month-picker-root)",
          "description": "Used to style the month picker root container."
        },
        {
          "name": "part(year-cell)",
          "description": "Used to style the year cells."
        },
        {
          "name": "part(year-cell-selected)",
          "description": "Used to style the year cells when selected."
        },
        {
          "name": "part(year-cell-selected-between)",
          "description": "Used to style the year cells in between of selected years in range."
        },
        {
          "name": "part(year-picker-root)",
          "description": "Used to style the year picker root container."
        },
        {
          "name": "part(year-range-cell)",
          "description": "Used to style the year range cells."
        },
        {
          "name": "part(year-range-cell-selected)",
          "description": "Used to style the year range cells when selected."
        },
        {
          "name": "part(year-range-cell-selected-between)",
          "description": "Used to style the year range cells in between of selected year ranges."
        },
        {
          "name": "part(year-range-picker-root)",
          "description": "Used to style the year range picker root container."
        },
        {
          "name": "part(content)",
          "description": "Used to style the content of the card"
        },
        {
          "name": "part(root)",
          "description": "Used to style the root DOM element of the card component"
        },
        {
          "name": "part(additional-text)",
          "description": "Used to style the additional text of the CardHeader"
        },
        {
          "name": "part(root)",
          "description": "Used to style the root DOM element of the CardHeader"
        },
        {
          "name": "part(subtitle)",
          "description": "Used to style the subtitle of the CardHeader"
        },
        {
          "name": "part(title)",
          "description": "Used to style the title of the CardHeader"
        },
        {
          "name": "part(content)",
          "description": "Used to style the content of the component"
        },
        {
          "name": "part(icon)",
          "description": "Used to style the icon of the `ui5-checkbox`"
        },
        {
          "name": "part(label)",
          "description": "Used to style the label of the `ui5-checkbox`"
        },
        {
          "name": "part(root)",
          "description": "Used to style the outermost wrapper of the `ui5-checkbox`"
        },
        {
          "name": "part(header)",
          "description": "Used to style the header item of the group"
        },
        {
          "name": "part(title)",
          "description": "Used to style the title of the group header"
        },
        {
          "name": "part(input)",
          "description": "Used to style the input element. This part is forwarded to the underlying ui5-input element."
        },
        {
          "name": "part(input)",
          "description": "Used to style the input element. This part is forwarded to the underlying ui5-input element."
        },
        {
          "name": "part(clear-icon)",
          "description": "Used to style the clear icon, which can be pressed to clear user input text"
        },
        {
          "name": "part(input)",
          "description": "Used to style the native input element"
        },
        {
          "name": "part(root)",
          "description": "Used to style the root DOM element of the Input component"
        },
        {
          "name": "part(input)",
          "description": "Used to style the input element. This part is forwarded to the underlying ui5-input element."
        },
        {
          "name": "part(content)",
          "description": "Used to style the content of the component"
        },
        {
          "name": "part(footer)",
          "description": "Used to style the footer of the component"
        },
        {
          "name": "part(header)",
          "description": "Used to style the header of the component"
        },
        {
          "name": "part(column)",
          "description": "Used to style a single column of the form column layout."
        },
        {
          "name": "part(header)",
          "description": "Used to style the wrapper of the header."
        },
        {
          "name": "part(layout)",
          "description": "Used to style the element defining the form column layout."
        },
        {
          "name": "part(content)",
          "description": "Used to style the content part of the form item."
        },
        {
          "name": "part(label)",
          "description": "Used to style the label part of the form item."
        },
        {
          "name": "part(layout)",
          "description": "Used to style the parent element of the label and content parts."
        },
        {
          "name": "part(root)",
          "description": "Used to style the outermost wrapper of the `ui5-icon`."
        },
        {
          "name": "part(clear-icon)",
          "description": "Used to style the clear icon, which can be pressed to clear user input text"
        },
        {
          "name": "part(input)",
          "description": "Used to style the native input element"
        },
        {
          "name": "part(root)",
          "description": "Used to style the root DOM element of the Input component"
        },
        {
          "name": "part(endIcon)",
          "description": "Used to style the provided endIcon within the link"
        },
        {
          "name": "part(icon)",
          "description": "Used to style the provided icon within the link"
        },
        {
          "name": "part(growing-button)",
          "description": "Used to style the button, that is used for growing of the component"
        },
        {
          "name": "part(growing-button-inner)",
          "description": "Used to style the button inner element"
        },
        {
          "name": "part(checkbox)",
          "description": "Used to style the checkbox rendered when the list item is in multiple selection mode"
        },
        {
          "name": "part(content)",
          "description": "Used to style the content area of the list item"
        },
        {
          "name": "part(delete-button)",
          "description": "Used to style the button rendered when the list item is in delete mode"
        },
        {
          "name": "part(detail-button)",
          "description": "Used to style the button rendered when the list item is of type detail"
        },
        {
          "name": "part(native-li)",
          "description": "Used to style the main li tag of the list item"
        },
        {
          "name": "part(radio)",
          "description": "Used to style the radio button rendered when the list item is in single selection mode"
        },
        {
          "name": "part(header)",
          "description": "Used to style the header item of the group"
        },
        {
          "name": "part(title)",
          "description": "Used to style the title of the group header"
        },
        {
          "name": "part(additional-text)",
          "description": "Used to style the additionalText of the list item"
        },
        {
          "name": "part(checkbox)",
          "description": "Used to style the checkbox rendered when the list item is in multiple selection mode"
        },
        {
          "name": "part(content)",
          "description": "Used to style the content area of the list item"
        },
        {
          "name": "part(delete-button)",
          "description": "Used to style the button rendered when the list item is in delete mode"
        },
        {
          "name": "part(description)",
          "description": "Used to style the description of the list item"
        },
        {
          "name": "part(detail-button)",
          "description": "Used to style the button rendered when the list item is of type detail"
        },
        {
          "name": "part(icon)",
          "description": "Used to style the icon of the list item"
        },
        {
          "name": "part(native-li)",
          "description": "Used to style the main li tag of the list item"
        },
        {
          "name": "part(radio)",
          "description": "Used to style the radio button rendered when the list item is in single selection mode"
        },
        {
          "name": "part(title)",
          "description": "Used to style the title of the list item"
        },
        {
          "name": "part(token-\\{index\\})",
          "description": "Used to style each token(where `token-0` corresponds to the first item)"
        },
        {
          "name": "part(header)",
          "description": "Used to style the header item of the group"
        },
        {
          "name": "part(title)",
          "description": "Used to style the title of the group header"
        },
        {
          "name": "part(clear-icon)",
          "description": "Used to style the clear icon, which can be pressed to clear user input text"
        },
        {
          "name": "part(input)",
          "description": "Used to style the native input element"
        },
        {
          "name": "part(root)",
          "description": "Used to style the root DOM element of the Input component"
        },
        {
          "name": "part(content)",
          "description": "Used to style the wrapper of the content."
        },
        {
          "name": "part(header)",
          "description": "Used to style the wrapper of the header."
        },
        {
          "name": "part(content)",
          "description": "Used to style the content of the component"
        },
        {
          "name": "part(footer)",
          "description": "Used to style the footer of the component"
        },
        {
          "name": "part(header)",
          "description": "Used to style the header of the component"
        },
        {
          "name": "part(bar)",
          "description": "Used to style the main bar of the `ui5-progress-indicator`"
        },
        {
          "name": "part(remaining-bar)",
          "description": "Used to style the remaining bar of the `ui5-progress-indicator`"
        },
        {
          "name": "part(inner-ring)",
          "description": "Used to style the inner ring of the `ui5-radio-button`."
        },
        {
          "name": "part(outer-ring)",
          "description": "Used to style the outer ring of the `ui5-radio-button`."
        },
        {
          "name": "part(handle)",
          "description": "Used to style the handles of the `ui5-range-slider`."
        },
        {
          "name": "part(progress-bar)",
          "description": "Used to style the progress bar, which shows the progress of the `ui5-range-slider`."
        },
        {
          "name": "part(progress-container)",
          "description": "Used to style the progress container, the horizontal bar that visually represents the range between the minimum and maximum values, of the `ui5-range-slider`."
        },
        {
          "name": "part(content)",
          "description": "Used to style the content of the component"
        },
        {
          "name": "part(footer)",
          "description": "Used to style the footer of the component"
        },
        {
          "name": "part(header)",
          "description": "Used to style the header of the component"
        },
        {
          "name": "part(popover)",
          "description": "Used to style the popover element"
        },
        {
          "name": "part(handle)",
          "description": "Used to style the handle of the `ui5-slider`."
        },
        {
          "name": "part(progress-bar)",
          "description": "Used to style the progress bar, which shows the progress of the `ui5-slider`."
        },
        {
          "name": "part(progress-container)",
          "description": "Used to style the progress container, the horizontal bar that visually represents the range between the minimum and maximum values, of the `ui5-slider`."
        },
        {
          "name": "part(button)",
          "description": "Used to style the native button element"
        },
        {
          "name": "part(endIcon)",
          "description": "Used to style the end icon in the native button element"
        },
        {
          "name": "part(icon)",
          "description": "Used to style the icon in the native button element"
        },
        {
          "name": "part(header)",
          "description": "Used to style the header item of the group"
        },
        {
          "name": "part(title)",
          "description": "Used to style the title of the group header"
        },
        {
          "name": "part(additional-text)",
          "description": "Used to style the additionalText of the list item"
        },
        {
          "name": "part(checkbox)",
          "description": "Used to style the checkbox rendered when the list item is in multiple selection mode"
        },
        {
          "name": "part(content)",
          "description": "Used to style the content area of the list item"
        },
        {
          "name": "part(delete-button)",
          "description": "Used to style the button rendered when the list item is in delete mode"
        },
        {
          "name": "part(description)",
          "description": "Used to style the description of the suggestion list item"
        },
        {
          "name": "part(detail-button)",
          "description": "Used to style the button rendered when the list item is of type detail"
        },
        {
          "name": "part(icon)",
          "description": "Used to style the icon of the list item"
        },
        {
          "name": "part(info)",
          "description": "Used to style the info of the suggestion list item"
        },
        {
          "name": "part(native-li)",
          "description": "Used to style the main li tag of the list item"
        },
        {
          "name": "part(radio)",
          "description": "Used to style the radio button rendered when the list item is in single selection mode"
        },
        {
          "name": "part(title)",
          "description": "Used to style the title of the suggestion list item"
        },
        {
          "name": "part(handle)",
          "description": "Used to style the handle of the switch"
        },
        {
          "name": "part(slider)",
          "description": "Used to style the track, where the handle is being slid"
        },
        {
          "name": "part(text-off)",
          "description": "Used to style the `textOff` property text"
        },
        {
          "name": "part(text-on)",
          "description": "Used to style the `textOn` property text"
        },
        {
          "name": "part(content)",
          "description": "Used to style the content of the component"
        },
        {
          "name": "part(tabstrip)",
          "description": "Used to style the tabstrip of the component"
        },
        {
          "name": "part(root)",
          "description": "Used to style the root element."
        },
        {
          "name": "part(textarea)",
          "description": "Used to style the native textarea"
        },
        {
          "name": "part(input)",
          "description": "Used to style the input element. This part is forwarded to the underlying ui5-input element."
        },
        {
          "name": "part(button)",
          "description": "Used to style the native button element"
        },
        {
          "name": "part(endIcon)",
          "description": "Used to style the end icon in the native button element"
        },
        {
          "name": "part(icon)",
          "description": "Used to style the icon in the native button element"
        },
        {
          "name": "part(button)",
          "description": "Used to style the native button element"
        },
        {
          "name": "part(endIcon)",
          "description": "Used to style the end icon in the native button element"
        },
        {
          "name": "part(icon)",
          "description": "Used to style the icon in the native button element"
        },
        {
          "name": "part(additionalText)",
          "description": "Used to style the additionalText of the tree list item"
        },
        {
          "name": "part(icon)",
          "description": "Used to style the icon of the tree list item"
        },
        {
          "name": "part(title)",
          "description": "Used to style the title of the tree list item"
        },
        {
          "name": "part(additionalText)",
          "description": "Used to style the additionalText of the tree list item"
        },
        {
          "name": "part(icon)",
          "description": "Used to style the icon of the tree list item"
        },
        {
          "name": "part(title)",
          "description": "Used to style the title of the tree list item"
        }
      ]
    }
  }
}
