{
  "schemaVersion": "1.0.0",
  "readme": "",
  "modules": [
    {
      "kind": "javascript-module",
      "path": "vaadin-list-box.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "module": "src/vaadin-list-box.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/vaadin-list-box.js",
      "declarations": [
        {
          "kind": "class",
          "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.",
          "name": "ListBox",
          "members": [
            {
              "kind": "field",
              "name": "disabled",
              "privacy": "public",
              "type": {
                "text": "boolean"
              },
              "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.",
              "attribute": "disabled",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            },
            {
              "kind": "field",
              "name": "items",
              "privacy": "public",
              "type": {
                "text": "!Array<!Element> | undefined"
              },
              "description": "A read-only list of items from which a selection can be made.\nIt is populated from the elements passed to the light DOM,\nand updated dynamically when adding or removing items.",
              "attribute": "items",
              "readonly": true,
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            },
            {
              "kind": "field",
              "name": "multiple",
              "privacy": "public",
              "type": {
                "text": "boolean"
              },
              "description": "Specifies that multiple options can be selected at once.",
              "attribute": "multiple",
              "inheritedFrom": {
                "name": "MultiSelectListMixin",
                "module": "src/vaadin-multi-select-list-mixin.js"
              }
            },
            {
              "kind": "field",
              "name": "orientation",
              "privacy": "public",
              "type": {
                "text": "string"
              },
              "description": "Define how items are disposed in the dom.\nPossible values are: `horizontal|vertical`.\nIt also changes navigation keys from left/right to up/down.",
              "attribute": "orientation",
              "readonly": true,
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            },
            {
              "kind": "field",
              "name": "selected",
              "privacy": "public",
              "type": {
                "text": "number"
              },
              "description": "The index of the item selected in the items array.\nNote: Not updated when used in `multiple` selection mode.",
              "attribute": "selected",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            },
            {
              "kind": "field",
              "name": "selectedValues",
              "privacy": "public",
              "type": {
                "text": "number[] | null | undefined"
              },
              "description": "Array of indexes of the items selected in the items array\nNote: Not updated when used in single selection mode.",
              "attribute": "selected-values",
              "inheritedFrom": {
                "name": "MultiSelectListMixin",
                "module": "src/vaadin-multi-select-list-mixin.js"
              }
            }
          ],
          "events": [
            {
              "type": {
                "text": "CustomEvent"
              },
              "description": "Fired when the `items` property changes.",
              "name": "items-changed"
            },
            {
              "type": {
                "text": "CustomEvent"
              },
              "description": "Fired when the `selected` property changes.",
              "name": "selected-changed"
            },
            {
              "type": {
                "text": "CustomEvent"
              },
              "description": "Fired when the `selectedValues` property changes.",
              "name": "selected-values-changed"
            }
          ],
          "attributes": [
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "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.",
              "fieldName": "disabled",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            },
            {
              "name": "multiple",
              "type": {
                "text": "boolean"
              },
              "description": "Specifies that multiple options can be selected at once.",
              "fieldName": "multiple",
              "inheritedFrom": {
                "name": "MultiSelectListMixin",
                "module": "src/vaadin-multi-select-list-mixin.js"
              }
            },
            {
              "name": "orientation",
              "type": {
                "text": "string"
              },
              "description": "Define how items are disposed in the dom.\nPossible values are: `horizontal|vertical`.\nIt also changes navigation keys from left/right to up/down.",
              "fieldName": "orientation",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            },
            {
              "name": "selected",
              "type": {
                "text": "number"
              },
              "description": "The index of the item selected in the items array.\nNote: Not updated when used in `multiple` selection mode.",
              "fieldName": "selected",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            },
            {
              "name": "selected-values",
              "type": {
                "text": "number[] | null | undefined"
              },
              "description": "Array of indexes of the items selected in the items array\nNote: Not updated when used in single selection mode.",
              "fieldName": "selectedValues",
              "inheritedFrom": {
                "name": "MultiSelectListMixin",
                "module": "src/vaadin-multi-select-list-mixin.js"
              }
            }
          ],
          "mixins": [
            {
              "name": "ElementMixin",
              "package": "@vaadin/component-base/src/element-mixin.js"
            },
            {
              "name": "MultiSelectListMixin",
              "module": "src/vaadin-multi-select-list-mixin.js"
            },
            {
              "name": "ThemableMixin",
              "package": "@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js"
            },
            {
              "name": "PolylitMixin",
              "package": "@vaadin/component-base/src/polylit-mixin.js"
            },
            {
              "name": "LumoInjectionMixin",
              "package": "@vaadin/vaadin-themable-mixin/lumo-injection-mixin.js"
            }
          ],
          "superclass": {
            "name": "LitElement",
            "package": "lit"
          },
          "tagName": "vaadin-list-box",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "ListBox",
          "declaration": {
            "name": "ListBox",
            "module": "src/vaadin-list-box.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/vaadin-multi-select-list-mixin.js",
      "declarations": [
        {
          "kind": "mixin",
          "description": "A mixin for `nav` elements, facilitating multiple selection of childNodes.",
          "name": "MultiSelectListMixin",
          "members": [
            {
              "kind": "field",
              "name": "disabled",
              "privacy": "public",
              "type": {
                "text": "boolean"
              },
              "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.",
              "attribute": "disabled",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            },
            {
              "kind": "field",
              "name": "items",
              "privacy": "public",
              "type": {
                "text": "!Array<!Element> | undefined"
              },
              "description": "A read-only list of items from which a selection can be made.\nIt is populated from the elements passed to the light DOM,\nand updated dynamically when adding or removing items.",
              "attribute": "items",
              "readonly": true,
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            },
            {
              "kind": "field",
              "name": "multiple",
              "privacy": "public",
              "type": {
                "text": "boolean"
              },
              "description": "Specifies that multiple options can be selected at once.",
              "attribute": "multiple"
            },
            {
              "kind": "field",
              "name": "orientation",
              "privacy": "public",
              "type": {
                "text": "string"
              },
              "description": "Define how items are disposed in the dom.\nPossible values are: `horizontal|vertical`.\nIt also changes navigation keys from left/right to up/down.",
              "attribute": "orientation",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            },
            {
              "kind": "field",
              "name": "selected",
              "privacy": "public",
              "type": {
                "text": "number"
              },
              "description": "The index of the item selected in the items array.\nNote: Not updated when used in `multiple` selection mode.",
              "attribute": "selected",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            },
            {
              "kind": "field",
              "name": "selectedValues",
              "privacy": "public",
              "type": {
                "text": "number[] | null | undefined"
              },
              "description": "Array of indexes of the items selected in the items array\nNote: Not updated when used in single selection mode.",
              "attribute": "selected-values"
            }
          ],
          "attributes": [
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "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.",
              "fieldName": "disabled",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            },
            {
              "name": "multiple",
              "type": {
                "text": "boolean"
              },
              "description": "Specifies that multiple options can be selected at once.",
              "fieldName": "multiple"
            },
            {
              "name": "orientation",
              "type": {
                "text": "string"
              },
              "description": "Define how items are disposed in the dom.\nPossible values are: `horizontal|vertical`.\nIt also changes navigation keys from left/right to up/down.",
              "fieldName": "orientation",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            },
            {
              "name": "selected",
              "type": {
                "text": "number"
              },
              "description": "The index of the item selected in the items array.\nNote: Not updated when used in `multiple` selection mode.",
              "fieldName": "selected",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            },
            {
              "name": "selected-values",
              "type": {
                "text": "number[] | null | undefined"
              },
              "description": "Array of indexes of the items selected in the items array\nNote: Not updated when used in single selection mode.",
              "fieldName": "selectedValues"
            }
          ],
          "mixins": [
            {
              "name": "ListMixin",
              "package": "@vaadin/a11y-base/src/list-mixin.js"
            }
          ],
          "parameters": [
            {
              "name": "superClass"
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "MultiSelectListMixin",
          "declaration": {
            "name": "MultiSelectListMixin",
            "module": "src/vaadin-multi-select-list-mixin.js"
          }
        }
      ]
    }
  ]
}
