{
  "schemaVersion": "1.0.0",
  "readme": "",
  "modules": [
    {
      "kind": "javascript-module",
      "path": "src/defs-react.js",
      "declarations": [],
      "exports": []
    },
    {
      "kind": "javascript-module",
      "path": "src/defs.js",
      "declarations": [
        {
          "kind": "variable",
          "name": "sizes",
          "type": {
            "text": "['small', 'medium', 'large']"
          },
          "default": "['small', 'medium', 'large']"
        },
        {
          "kind": "variable",
          "name": "statusTypes",
          "type": {
            "text": "['default', 'error']"
          },
          "default": "['default', 'error']"
        },
        {
          "kind": "variable",
          "name": "defaultProps",
          "type": {
            "text": "DefaultProps"
          },
          "default": "{ size: 'medium', status: 'default', disabled: false, options: [], value: '', }"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "sizes",
          "declaration": {
            "name": "sizes",
            "module": "src/defs.js"
          }
        },
        {
          "kind": "js",
          "name": "statusTypes",
          "declaration": {
            "name": "statusTypes",
            "module": "src/defs.js"
          }
        },
        {
          "kind": "js",
          "name": "defaultProps",
          "declaration": {
            "name": "defaultProps",
            "module": "src/defs.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "src/index.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "PieSelect",
          "members": [
            {
              "kind": "field",
              "name": "size",
              "privacy": "public",
              "attribute": "size"
            },
            {
              "kind": "field",
              "name": "disabled",
              "privacy": "public",
              "attribute": "disabled"
            },
            {
              "kind": "field",
              "name": "status",
              "privacy": "public",
              "attribute": "status"
            },
            {
              "kind": "field",
              "name": "assistiveText",
              "type": {
                "text": "SelectProps['assistiveText']"
              },
              "privacy": "public",
              "attribute": "assistiveText"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "SelectProps['name']"
              },
              "privacy": "public",
              "attribute": "name",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "options",
              "type": {
                "text": "SelectProps['options']"
              },
              "privacy": "public",
              "attribute": "options"
            },
            {
              "kind": "field",
              "name": "_value",
              "type": {
                "text": "SelectProps['value']"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "focusTarget",
              "type": {
                "text": "HTMLSelectElement"
              },
              "privacy": "public"
            },
            {
              "kind": "field",
              "name": "_select",
              "type": {
                "text": "HTMLSelectElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_leadingIconSlot",
              "type": {
                "text": "Array<HTMLElement>"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_hasLeadingIcon",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "SelectProps['value']"
              },
              "privacy": "public",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "validity",
              "type": {
                "text": "ValidityState"
              },
              "privacy": "public",
              "description": "(Read-only) returns a ValidityState with the validity states that this element is in.\nhttps://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement/validity",
              "readonly": true
            },
            {
              "kind": "method",
              "name": "formDisabledCallback",
              "privacy": "public",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "disabled",
                  "type": {
                    "text": "boolean"
                  },
                  "description": "The latest disabled state of the select."
                }
              ],
              "description": "Called after the disabled state of the element changes,\neither because the disabled attribute of this element was added or removed;\nor because the disabled state changed on a <fieldset> that's an ancestor of this element."
            },
            {
              "kind": "method",
              "name": "formResetCallback",
              "privacy": "public",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "description": "Called when the form that owns this component is reset.\nResets the value to the default select value."
            },
            {
              "kind": "field",
              "name": "_handleChange",
              "privacy": "private",
              "description": "Captures the native change event and wraps it in a custom event.",
              "parameters": [
                {
                  "description": "The change event.",
                  "name": "event"
                }
              ]
            },
            {
              "kind": "method",
              "name": "_handleLeadingIconSlotchange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "renderChildren",
              "privacy": "private",
              "return": {
                "type": {
                  "text": ""
                }
              },
              "parameters": [
                {
                  "name": "options",
                  "type": {
                    "text": "SelectProps['options']"
                  },
                  "description": "The options to render"
                }
              ],
              "description": "Renders the options from the options property"
            },
            {
              "kind": "method",
              "name": "renderAssistiveText",
              "privacy": "private",
              "return": {
                "type": {
                  "text": ""
                }
              },
              "description": "Renders the assistive text if available."
            }
          ],
          "events": [
            {
              "type": {
                "text": "CustomEvent"
              },
              "description": "when the selected option is changed.",
              "name": "change"
            }
          ],
          "attributes": [
            {
              "name": "size",
              "fieldName": "size"
            },
            {
              "name": "disabled",
              "fieldName": "disabled"
            },
            {
              "name": "status",
              "fieldName": "status"
            },
            {
              "name": "assistiveText",
              "type": {
                "text": "SelectProps['assistiveText']"
              },
              "fieldName": "assistiveText"
            },
            {
              "name": "name",
              "type": {
                "text": "SelectProps['name']"
              },
              "fieldName": "name"
            },
            {
              "name": "options",
              "type": {
                "text": "SelectProps['options']"
              },
              "fieldName": "options"
            },
            {
              "name": "value",
              "type": {
                "text": "SelectProps['value']"
              },
              "fieldName": "value"
            }
          ],
          "mixins": [
            {
              "name": "FormControlMixin",
              "package": "@justeattakeaway/pie-webc-core"
            },
            {
              "name": "RtlMixin",
              "package": "@justeattakeaway/pie-webc-core"
            },
            {
              "name": "DelegatesFocusMixin",
              "package": "@justeattakeaway/pie-webc-core"
            }
          ],
          "superclass": {
            "name": "PieElement",
            "package": "@justeattakeaway/pie-webc-core/src/internals/PieElement"
          },
          "tagName": "pie-select",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "module": "src/defs"
          }
        },
        {
          "kind": "js",
          "name": "PieSelect",
          "declaration": {
            "name": "PieSelect",
            "module": "src/index.js"
          }
        }
      ]
    }
  ]
}
