{
  "schemaVersion": "1.0.0",
  "readme": "",
  "modules": [
    {
      "kind": "javascript-module",
      "path": "vaadin-tabs.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "module": "src/vaadin-tabs.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "vaadin-tab.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "module": "src/vaadin-tab.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/vaadin-tab.js",
      "declarations": [
        {
          "kind": "class",
          "description": "`<vaadin-tab>` is a Web Component providing an accessible and customizable tab.\n\n```html\n<vaadin-tab>Tab 1</vaadin-tab>\n```\n\nThe following state attributes are available for styling:\n\nAttribute      | Description\n---------------|---------------------------------\n`disabled`     | Set when the element is disabled\n`focused`      | Set when the element is focused\n`focus-ring`   | Set when the element is keyboard focused\n`selected`     | Set when the tab is selected\n`active`       | Set when mousedown or enter/spacebar pressed\n`orientation`  | Set to `horizontal` or `vertical` depending on the direction of items\n`has-tooltip`  | Set when the tab has a slotted tooltip\n\nThe following custom CSS properties are available for styling:\n\nCustom CSS property            |\n:------------------------------|\n| `--vaadin-tab-background`    |\n| `--vaadin-tab-border-color`  |\n| `--vaadin-tab-border-width`  |\n| `--vaadin-tab-font-size`     |\n| `--vaadin-tab-font-weight`   |\n| `--vaadin-tab-gap`           |\n| `--vaadin-tab-padding`       |\n| `--vaadin-tab-text-color`    |\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
          "name": "Tab",
          "members": [
            {
              "kind": "field",
              "name": "disabled",
              "privacy": "public",
              "type": {
                "text": "boolean"
              },
              "description": "If true, the user cannot interact with this element.",
              "attribute": "disabled",
              "inheritedFrom": {
                "name": "DisabledMixin",
                "package": "@vaadin/a11y-base/src/disabled-mixin.js"
              }
            },
            {
              "kind": "field",
              "name": "selected",
              "privacy": "public",
              "type": {
                "text": "boolean"
              },
              "description": "If true, the item is in selected state.",
              "attribute": "selected",
              "inheritedFrom": {
                "name": "ItemMixin",
                "package": "@vaadin/item/src/vaadin-item-mixin.js"
              }
            },
            {
              "kind": "field",
              "name": "value",
              "description": "Submittable string value. The default value is the trimmed text content of the element.",
              "type": {
                "text": "string"
              },
              "inheritedFrom": {
                "name": "ItemMixin",
                "package": "@vaadin/item/src/vaadin-item-mixin.js"
              }
            }
          ],
          "mixins": [
            {
              "name": "ItemMixin",
              "package": "@vaadin/item/src/vaadin-item-mixin.js"
            },
            {
              "name": "ThemableMixin",
              "package": "@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js"
            },
            {
              "name": "ElementMixin",
              "package": "@vaadin/component-base/src/element-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-tab",
          "customElement": true,
          "attributes": [
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "description": "If true, the user cannot interact with this element.",
              "fieldName": "disabled",
              "inheritedFrom": {
                "name": "DisabledMixin",
                "package": "@vaadin/a11y-base/src/disabled-mixin.js"
              }
            },
            {
              "name": "selected",
              "type": {
                "text": "boolean"
              },
              "description": "If true, the item is in selected state.",
              "fieldName": "selected",
              "inheritedFrom": {
                "name": "ItemMixin",
                "package": "@vaadin/item/src/vaadin-item-mixin.js"
              }
            }
          ],
          "events": []
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "Tab",
          "declaration": {
            "name": "Tab",
            "module": "src/vaadin-tab.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/vaadin-tabs-mixin.js",
      "declarations": [
        {
          "kind": "mixin",
          "description": "",
          "name": "TabsMixin",
          "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": "orientation",
              "privacy": "public",
              "type": {
                "text": "string"
              },
              "description": "Set tabs disposition. Possible values are `horizontal|vertical`",
              "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 selected tab.",
              "attribute": "selected",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            }
          ],
          "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": "orientation",
              "type": {
                "text": "string"
              },
              "description": "Set tabs disposition. Possible values are `horizontal|vertical`",
              "fieldName": "orientation",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            },
            {
              "name": "selected",
              "type": {
                "text": "number"
              },
              "description": "The index of the selected tab.",
              "fieldName": "selected",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            }
          ],
          "mixins": [
            {
              "name": "ResizeMixin",
              "package": "@vaadin/component-base/src/resize-mixin.js"
            },
            {
              "name": "ListMixin",
              "package": "@vaadin/a11y-base/src/list-mixin.js"
            }
          ],
          "parameters": [
            {
              "name": "superClass"
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "TabsMixin",
          "declaration": {
            "name": "TabsMixin",
            "module": "src/vaadin-tabs-mixin.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/vaadin-tabs.js",
      "declarations": [
        {
          "kind": "class",
          "description": "`<vaadin-tabs>` is a Web Component for organizing and grouping content into sections.\n\n```html\n<vaadin-tabs selected=\"4\">\n  <vaadin-tab>Page 1</vaadin-tab>\n  <vaadin-tab>Page 2</vaadin-tab>\n  <vaadin-tab>Page 3</vaadin-tab>\n  <vaadin-tab>Page 4</vaadin-tab>\n</vaadin-tabs>\n```\n\n### Styling\n\nThe following shadow DOM parts are available for styling:\n\nPart name         | Description\n------------------|--------------------------------------\n`back-button`     | Button for moving the scroll back\n`tabs`            | The tabs container\n`forward-button`  | Button for moving the scroll forward\n\nThe following state attributes are available for styling:\n\nAttribute      | Description\n---------------|--------------------------------------\n`orientation`  | Tabs disposition, valid values are `horizontal` and `vertical`\n`overflow`     | It's set to `start`, `end`, none or both.\n\nThe following custom CSS properties are available for styling:\n\nCustom CSS property              |\n:--------------------------------|\n| `--vaadin-tabs-background`     |\n| `--vaadin-tabs-border-color`   |\n| `--vaadin-tabs-border-radius`  |\n| `--vaadin-tabs-border-width`   |\n| `--vaadin-tabs-font-size`      |\n| `--vaadin-tabs-font-weight`    |\n| `--vaadin-tabs-gap`            |\n| `--vaadin-tabs-padding`        |\n\nSee [Styling Components](https://vaadin.com/docs/latest/styling/styling-components) documentation.",
          "name": "Tabs",
          "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": "orientation",
              "privacy": "public",
              "type": {
                "text": "string"
              },
              "description": "Set tabs disposition. Possible values are `horizontal|vertical`",
              "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 selected tab.",
              "attribute": "selected",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/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"
            }
          ],
          "mixins": [
            {
              "name": "TabsMixin",
              "module": "src/vaadin-tabs-mixin.js"
            },
            {
              "name": "ElementMixin",
              "package": "@vaadin/component-base/src/element-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-tabs",
          "customElement": true,
          "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": "orientation",
              "type": {
                "text": "string"
              },
              "description": "Set tabs disposition. Possible values are `horizontal|vertical`",
              "fieldName": "orientation",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            },
            {
              "name": "selected",
              "type": {
                "text": "number"
              },
              "description": "The index of the selected tab.",
              "fieldName": "selected",
              "inheritedFrom": {
                "name": "ListMixin",
                "package": "@vaadin/a11y-base/src/list-mixin.js"
              }
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "Tabs",
          "declaration": {
            "name": "Tabs",
            "module": "src/vaadin-tabs.js"
          }
        }
      ]
    }
  ]
}
