{
  "$schema": "https://json.schemastore.org/web-types",
  "name": "@vaadin/list-box",
  "version": "25.2.12",
  "description-markup": "markdown",
  "framework": "lit",
  "framework-config": {
    "enable-when": {
      "node-packages": [
        "lit"
      ]
    }
  },
  "contributions": {
    "html": {
      "elements": [
        {
          "name": "vaadin-list-box",
          "description": "`<vaadin-list-box>` is a Web Component for creating menus.\n\n```html\n<vaadin-list-box selected=\"2\">\n  <vaadin-item>Item 1</vaadin-item>\n  <vaadin-item>Item 2</vaadin-item>\n  <vaadin-item>Item 3</vaadin-item>\n  <vaadin-item>Item 4</vaadin-item>\n</vaadin-list-box>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name         | Description\n------------------|------------------------\n`items`           | The items container\n\nThe following state attributes are available for styling:\n\nAttribute      | Description\n---------------|---------------------------------\n`has-tooltip`  | Set when the element has a slotted tooltip\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
          "extension": true,
          "attributes": [
            {
              "name": "?disabled",
              "description": "If true, the user cannot interact with this element.\nWhen the element is disabled, the selected item is\nnot updated when `selected` property is changed.",
              "value": {
                "kind": "expression"
              }
            },
            {
              "name": "?multiple",
              "description": "Specifies that multiple options can be selected at once.",
              "value": {
                "kind": "expression"
              }
            },
            {
              "name": ".selected",
              "description": "The index of the item selected in the items array.\nNote: Not updated when used in `multiple` selection mode.",
              "value": {
                "kind": "expression"
              }
            },
            {
              "name": ".selectedValues",
              "description": "Array of indexes of the items selected in the items array\nNote: Not updated when used in single selection mode.",
              "value": {
                "kind": "expression"
              }
            },
            {
              "name": "@items-changed",
              "description": "Fired when the `items` property changes.",
              "value": {
                "kind": "expression"
              }
            },
            {
              "name": "@selected-changed",
              "description": "Fired when the `selected` property changes. Not fired in multiple selection mode.",
              "value": {
                "kind": "expression"
              }
            },
            {
              "name": "@selected-values-changed",
              "description": "Fired when the `selectedValues` property changes. Not fired in single selection mode.",
              "value": {
                "kind": "expression"
              }
            }
          ]
        }
      ]
    }
  }
}