{
  "schemaVersion": "1.0.0",
  "readme": "",
  "modules": [
    {
      "kind": "javascript-module",
      "path": "components/accordion/accordion.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraAccordion",
          "slots": [
            {
              "description": "The default slot for accordion content.",
              "name": ""
            },
            {
              "description": "The summary/header for the accordion (optional, overrides summary property)",
              "name": "summary"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-icon': TerraIcon,\n    }"
            },
            {
              "kind": "field",
              "name": "summary",
              "type": {
                "text": "string"
              },
              "description": "The summary/header for the accordion. Use the property for simple text, or the slot for custom content.",
              "attribute": "summary"
            },
            {
              "kind": "field",
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Whether the accordion is open or not. This property is reflected as an attribute and can be controlled programmatically or by user interaction.",
              "attribute": "open",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "showArrow",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "attribute": "showArrow"
            },
            {
              "kind": "method",
              "name": "handleToggle",
              "privacy": "private",
              "parameters": [
                {
                  "name": "e",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            }
          ],
          "events": [
            {
              "description": "emitted when the accordion opens or closes",
              "name": "terra-accordion-toggle",
              "reactName": "onTerraAccordionToggle",
              "eventName": "TerraAccordionToggleEvent"
            }
          ],
          "attributes": [
            {
              "name": "summary",
              "type": {
                "text": "string"
              },
              "description": "The summary/header for the accordion. Use the property for simple text, or the slot for custom content.",
              "fieldName": "summary"
            },
            {
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Whether the accordion is open or not. This property is reflected as an attribute and can be controlled programmatically or by user interaction.",
              "fieldName": "open"
            },
            {
              "name": "showArrow",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "fieldName": "showArrow"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "A collapsible content panel for showing and hiding content.",
          "tagNameWithoutPrefix": "accordion",
          "tagName": "terra-accordion",
          "customElement": true,
          "jsDoc": "/**\n * @summary A collapsible content panel for showing and hiding content.\n * @documentation https://terra-ui.netlify.app/components/accordion\n * @status stable\n * @since 1.0\n *\n * The TerraAccordion component provides a simple, accessible way to show and hide content. It uses native <details> and <summary> elements for built-in accessibility and keyboard support. The summary/header can be set via the `summary` property for simple text, or via a named `summary` slot for custom content (such as icons or rich HTML). The open state can be controlled with the `open` property, which is reflected as an attribute.\n *\n * @slot - The default slot for accordion content.\n * @slot summary - The summary/header for the accordion (optional, overrides summary property)\n *\n * @property {string} summary - The summary/header for the accordion. Use the property for simple text, or the slot for custom content.\n * @property {boolean} open - Whether the accordion is open or not. This property is reflected as an attribute and can be controlled programmatically or by user interaction.\n *\n * @event terra-accordion-toggle - emitted when the accordion opens or closes\n *\n * @dependency terra-icon\n */",
          "documentation": "https://terra-ui.netlify.app/components/accordion",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-icon"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraAccordion",
            "module": "components/accordion/accordion.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/badge/badge.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraBadge",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "slots": [
            {
              "description": "The badge's content.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "| 'primary'\n        | 'success'\n        | 'neutral'\n        | 'warning'\n        | 'info'\n        | 'danger'"
              },
              "default": "'primary'",
              "description": "The badge's theme variant.",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a pill-style badge with rounded edges.",
              "attribute": "pill",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "pulse",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the badge pulsate to draw attention.",
              "attribute": "pulse",
              "reflects": true
            }
          ],
          "attributes": [
            {
              "name": "variant",
              "type": {
                "text": "| 'primary'\n        | 'success'\n        | 'neutral'\n        | 'warning'\n        | 'info'\n        | 'danger'"
              },
              "default": "'primary'",
              "description": "The badge's theme variant.",
              "fieldName": "variant"
            },
            {
              "name": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a pill-style badge with rounded edges.",
              "fieldName": "pill"
            },
            {
              "name": "pulse",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the badge pulsate to draw attention.",
              "fieldName": "pulse"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Badges are used to draw attention and display statuses or counts.",
          "tagNameWithoutPrefix": "badge",
          "tagName": "terra-badge",
          "customElement": true,
          "jsDoc": "/**\n * @summary Badges are used to draw attention and display statuses or counts.\n * @documentation https://terra-ui.netlify.app/components/badge\n * @status stable\n * @since 1.0\n *\n * @slot - The badge's content.\n *\n * @csspart base - The component's base wrapper.\n */",
          "documentation": "https://terra-ui.netlify.app/components/badge",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraBadge",
            "module": "components/badge/badge.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/breadcrumb/breadcrumb.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraBreadcrumb",
          "cssProperties": [
            {
              "description": "The text color of inactive breadcrumbs.",
              "name": "--terra-breadcrumb-color"
            },
            {
              "description": "The text color of the current (last) breadcrumb.",
              "name": "--terra-breadcrumb-color-current"
            },
            {
              "description": "The text color of visited breadcrumb links.",
              "name": "--terra-breadcrumb-color-visited"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The breadcrumb link element.",
              "name": "link"
            },
            {
              "description": "The breadcrumb label element when not a link.",
              "name": "label"
            }
          ],
          "slots": [
            {
              "description": "The default slot.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "href",
              "type": {
                "text": "string | undefined"
              },
              "description": "The URL the breadcrumb points to. When omitted, the breadcrumb is rendered as plain text.",
              "attribute": "href"
            },
            {
              "kind": "field",
              "name": "current",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates that this breadcrumb represents the current page.\nWhen set, `aria-current=\"page\"` will be applied to the underlying element.",
              "attribute": "current",
              "reflects": true
            }
          ],
          "attributes": [
            {
              "name": "href",
              "type": {
                "text": "string | undefined"
              },
              "description": "The URL the breadcrumb points to. When omitted, the breadcrumb is rendered as plain text.",
              "fieldName": "href"
            },
            {
              "name": "current",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates that this breadcrumb represents the current page.\nWhen set, `aria-current=\"page\"` will be applied to the underlying element.",
              "fieldName": "current"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "A single breadcrumb item used inside `terra-breadcrumbs`.",
          "tagNameWithoutPrefix": "breadcrumb",
          "tagName": "terra-breadcrumb",
          "customElement": true,
          "jsDoc": "/**\n * @summary A single breadcrumb item used inside `terra-breadcrumbs`.\n * @documentation https://terra-ui.netlify.app/components/breadcrumb\n * @status stable\n * @since 1.0\n *\n * @slot - The default slot.\n *\n * @csspart base - The component's base wrapper.\n * @csspart link - The breadcrumb link element.\n * @csspart label - The breadcrumb label element when not a link.\n *\n * @cssproperty --terra-breadcrumb-color - The text color of inactive breadcrumbs.\n * @cssproperty --terra-breadcrumb-color-current - The text color of the current (last) breadcrumb.\n * @cssproperty --terra-breadcrumb-color-visited - The text color of visited breadcrumb links.\n */",
          "documentation": "https://terra-ui.netlify.app/components/breadcrumb",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraBreadcrumb",
            "module": "components/breadcrumb/breadcrumb.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/alert/alert.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraAlert",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The container that wraps the optional icon.",
              "name": "icon"
            },
            {
              "description": "The container that wraps the alert's main content.",
              "name": "message"
            }
          ],
          "slots": [
            {
              "description": "The alert's main content.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "autoHideTimeout",
              "type": {
                "text": "number"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "remainingTimeInterval",
              "type": {
                "text": "number"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "countdownAnimation",
              "type": {
                "text": "Animation | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'icon', 'suffix')"
            },
            {
              "kind": "field",
              "name": "currentToastStack",
              "type": {
                "text": "HTMLDivElement"
              },
              "privacy": "private",
              "static": true
            },
            {
              "kind": "field",
              "name": "toastStack",
              "privacy": "private",
              "static": true,
              "readonly": true
            },
            {
              "kind": "field",
              "name": "base",
              "type": {
                "text": "HTMLElement"
              }
            },
            {
              "kind": "field",
              "name": "countdownElement",
              "type": {
                "text": "HTMLElement"
              }
            },
            {
              "kind": "field",
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the alert is open. You can toggle this attribute to show and hide the alert, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the alert's open state.",
              "attribute": "open",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "closable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Enables a close button that allows the user to dismiss the alert.",
              "attribute": "closable",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "| 'primary'\n        | 'success'\n        | 'neutral'\n        | 'warning'\n        | 'danger'"
              },
              "default": "'primary'",
              "description": "The alert's theme variant.",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "appearance",
              "type": {
                "text": "'filled' | 'white'"
              },
              "default": "'filled'",
              "description": "The alert's appearance style. \"filled\" uses a colored background with white text (HDS default).\n\"white\" uses a white background with a colored top border and dark text.",
              "attribute": "appearance",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "duration",
              "default": "Infinity",
              "description": "The length of time, in milliseconds, the alert will show before closing itself. If the user interacts with\nthe alert before it closes (e.g. moves the mouse over it), the timer will restart. Defaults to `Infinity`, meaning\nthe alert will not close on its own.",
              "attribute": "duration"
            },
            {
              "kind": "field",
              "name": "countdown",
              "type": {
                "text": "'rtl' | 'ltr' | undefined"
              },
              "description": "Enables a countdown that indicates the remaining time the alert will be displayed.\nTypically used to indicate the remaining time before a whole app refresh.",
              "attribute": "countdown",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "remainingTime",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "restartAutoHide",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "pauseAutoHide",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "resumeAutoHide",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleCountdownChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleCloseClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleOpenChange"
            },
            {
              "kind": "method",
              "name": "handleDurationChange"
            },
            {
              "kind": "method",
              "name": "show",
              "description": "Shows the alert."
            },
            {
              "kind": "method",
              "name": "hide",
              "description": "Hides the alert"
            },
            {
              "kind": "method",
              "name": "toast",
              "description": "Displays the alert as a toast notification. This will move the alert out of its position in the DOM and, when\ndismissed, it will be removed from the DOM completely. By storing a reference to the alert, you can reuse it by\ncalling this method again. The returned promise will resolve after the alert is hidden."
            }
          ],
          "events": [
            {
              "description": "Emitted when the alert opens.",
              "name": "terra-show",
              "reactName": "onTerraShow",
              "eventName": "TerraShowEvent"
            },
            {
              "description": "Emitted after the alert opens and all animations are complete.",
              "name": "terra-after-show",
              "reactName": "onTerraAfterShow",
              "eventName": "TerraAfterShowEvent"
            },
            {
              "description": "Emitted when the alert closes.",
              "name": "terra-hide",
              "reactName": "onTerraHide",
              "eventName": "TerraHideEvent"
            },
            {
              "description": "Emitted after the alert closes and all animations are complete.",
              "name": "terra-after-hide",
              "reactName": "onTerraAfterHide",
              "eventName": "TerraAfterHideEvent"
            }
          ],
          "attributes": [
            {
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the alert is open. You can toggle this attribute to show and hide the alert, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the alert's open state.",
              "fieldName": "open"
            },
            {
              "name": "closable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Enables a close button that allows the user to dismiss the alert.",
              "fieldName": "closable"
            },
            {
              "name": "variant",
              "type": {
                "text": "| 'primary'\n        | 'success'\n        | 'neutral'\n        | 'warning'\n        | 'danger'"
              },
              "default": "'primary'",
              "description": "The alert's theme variant.",
              "fieldName": "variant"
            },
            {
              "name": "appearance",
              "type": {
                "text": "'filled' | 'white'"
              },
              "default": "'filled'",
              "description": "The alert's appearance style. \"filled\" uses a colored background with white text (HDS default).\n\"white\" uses a white background with a colored top border and dark text.",
              "fieldName": "appearance"
            },
            {
              "name": "duration",
              "default": "Infinity",
              "description": "The length of time, in milliseconds, the alert will show before closing itself. If the user interacts with\nthe alert before it closes (e.g. moves the mouse over it), the timer will restart. Defaults to `Infinity`, meaning\nthe alert will not close on its own.",
              "resolveInitializer": {
                "module": "src/components/alert/alert.component.ts"
              },
              "fieldName": "duration"
            },
            {
              "name": "countdown",
              "type": {
                "text": "'rtl' | 'ltr' | undefined"
              },
              "description": "Enables a countdown that indicates the remaining time the alert will be displayed.\nTypically used to indicate the remaining time before a whole app refresh.",
              "fieldName": "countdown"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Alerts are used to display important messages inline or as toast notifications.",
          "tagNameWithoutPrefix": "alert",
          "tagName": "terra-alert",
          "customElement": true,
          "jsDoc": "/**\n * @summary Alerts are used to display important messages inline or as toast notifications.\n * @documentation https://terra-ui.netlify.app/components/alert\n * @status stable\n * @since 1.0\n *\n * @slot - The alert's main content.\n *\n * @event terra-show - Emitted when the alert opens.\n * @event terra-after-show - Emitted after the alert opens and all animations are complete.\n * @event terra-hide - Emitted when the alert closes.\n * @event terra-after-hide - Emitted after the alert closes and all animations are complete.\n *\n * @csspart base - The component's base wrapper.\n * @csspart icon - The container that wraps the optional icon.\n * @csspart message - The container that wraps the alert's main content.\n *\n * @animation alert.show - The animation to use when showing the alert.\n * @animation alert.hide - The animation to use when hiding the alert.\n */",
          "documentation": "https://terra-ui.netlify.app/components/alert",
          "status": "stable",
          "since": "1.0",
          "animations": [
            {
              "name": "alert.show",
              "description": "The animation to use when showing the alert."
            },
            {
              "name": "alert.hide",
              "description": "The animation to use when hiding the alert."
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraAlert",
            "module": "components/alert/alert.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/avatar/avatar.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraAvatar",
          "cssProperties": [
            {
              "description": "The size of the avatar.",
              "name": "--size"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The container that wraps the avatar's icon.",
              "name": "icon"
            },
            {
              "description": "The container that wraps the avatar's initials.",
              "name": "initials"
            },
            {
              "description": "The avatar image. Only shown when the `image` attribute is set.",
              "name": "image"
            }
          ],
          "slots": [
            {
              "description": "The default icon to use when no image or initials are present. Works best with `<terra-icon>`.",
              "name": "icon"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-icon': TerraIcon,\n    }"
            },
            {
              "kind": "field",
              "name": "hasError",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "image",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The image source to use for the avatar.",
              "attribute": "image"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "A label to use to describe the avatar to assistive devices.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "initials",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Initials to use as a fallback when no image is available (1-2 characters max recommended).",
              "attribute": "initials"
            },
            {
              "kind": "field",
              "name": "loading",
              "type": {
                "text": "'eager' | 'lazy'"
              },
              "default": "'eager'",
              "description": "Indicates how the browser should load the image.",
              "attribute": "loading"
            },
            {
              "kind": "field",
              "name": "shape",
              "type": {
                "text": "'circle' | 'square' | 'rounded'"
              },
              "default": "'circle'",
              "description": "The shape of the avatar.",
              "attribute": "shape",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "handleImageChange"
            },
            {
              "kind": "method",
              "name": "handleImageLoadError",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "description": "The image could not be loaded. This may because of an invalid URL, a temporary network condition, or some unknown cause.",
              "name": "terra-error",
              "reactName": "onTerraError",
              "eventName": "TerraErrorEvent"
            }
          ],
          "attributes": [
            {
              "name": "image",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The image source to use for the avatar.",
              "fieldName": "image"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "A label to use to describe the avatar to assistive devices.",
              "fieldName": "label"
            },
            {
              "name": "initials",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Initials to use as a fallback when no image is available (1-2 characters max recommended).",
              "fieldName": "initials"
            },
            {
              "name": "loading",
              "type": {
                "text": "'eager' | 'lazy'"
              },
              "default": "'eager'",
              "description": "Indicates how the browser should load the image.",
              "fieldName": "loading"
            },
            {
              "name": "shape",
              "type": {
                "text": "'circle' | 'square' | 'rounded'"
              },
              "default": "'circle'",
              "description": "The shape of the avatar.",
              "fieldName": "shape"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Avatars are used to represent a person or object.",
          "tagNameWithoutPrefix": "avatar",
          "tagName": "terra-avatar",
          "customElement": true,
          "jsDoc": "/**\n * @summary Avatars are used to represent a person or object.\n * @documentation https://terra-ui.netlify.app/components/avatar\n * @status stable\n * @since 1.0\n *\n * @dependency terra-icon\n *\n * @event terra-error - The image could not be loaded. This may because of an invalid URL, a temporary network condition, or some\n * unknown cause.\n *\n * @slot icon - The default icon to use when no image or initials are present. Works best with `<terra-icon>`.\n *\n * @csspart base - The component's base wrapper.\n * @csspart icon - The container that wraps the avatar's icon.\n * @csspart initials - The container that wraps the avatar's initials.\n * @csspart image - The avatar image. Only shown when the `image` attribute is set.\n *\n * @cssproperty --size - The size of the avatar.\n */",
          "documentation": "https://terra-ui.netlify.app/components/avatar",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-icon"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraAvatar",
            "module": "components/avatar/avatar.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/breadcrumbs/breadcrumbs.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraBreadcrumbs",
          "cssProperties": [
            {
              "description": "The space between breadcrumbs.",
              "name": "--terra-breadcrumbs-gap"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The navigation container.",
              "name": "nav"
            }
          ],
          "slots": [
            {
              "description": "The breadcrumb items. Typically `<terra-breadcrumb>` elements.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "ariaLabel",
              "type": {
                "text": "string"
              },
              "default": "'Breadcrumb'",
              "description": "Accessible label for the breadcrumb navigation.",
              "attribute": "aria-label"
            },
            {
              "kind": "field",
              "name": "theme",
              "type": {
                "text": "'light' | 'dark'"
              },
              "default": "'light'",
              "description": "Color theme of the breadcrumbs, matching the Horizon Design System.",
              "attribute": "theme",
              "reflects": true
            }
          ],
          "attributes": [
            {
              "name": "aria-label",
              "type": {
                "text": "string"
              },
              "default": "'Breadcrumb'",
              "description": "Accessible label for the breadcrumb navigation.",
              "fieldName": "ariaLabel"
            },
            {
              "name": "theme",
              "type": {
                "text": "'light' | 'dark'"
              },
              "default": "'light'",
              "description": "Color theme of the breadcrumbs, matching the Horizon Design System.",
              "fieldName": "theme"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "A collection of breadcrumb items that shows the current page's location in the site hierarchy.",
          "tagNameWithoutPrefix": "breadcrumbs",
          "tagName": "terra-breadcrumbs",
          "customElement": true,
          "jsDoc": "/**\n * @summary A collection of breadcrumb items that shows the current page's location in the site hierarchy.\n * @documentation https://terra-ui.netlify.app/components/breadcrumbs\n * @status stable\n * @since 1.0\n *\n * @slot - The breadcrumb items. Typically `<terra-breadcrumb>` elements.\n *\n * @csspart base - The component's base wrapper.\n * @csspart nav - The navigation container.\n *\n * @cssproperty --terra-breadcrumbs-gap - The space between breadcrumbs.\n */",
          "documentation": "https://terra-ui.netlify.app/components/breadcrumbs",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraBreadcrumbs",
            "module": "components/breadcrumbs/breadcrumbs.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/browse-variables/browse-variables.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraBrowseVariables",
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-variable-keyword-search': TerraVariableKeywordSearch,\n        'terra-button': TerraButton,\n        'terra-skeleton': TerraSkeleton,\n        'terra-icon': TerraIcon,\n        'terra-loader': TerraLoader,\n    }"
            },
            {
              "kind": "field",
              "name": "catalog",
              "type": {
                "text": "'giovanni'"
              },
              "default": "'giovanni'",
              "description": "Allows the user to switch the catalog between different providers\nTODO: add support for CMR catalog and make it the default",
              "attribute": "catalog"
            },
            {
              "kind": "field",
              "name": "selectedVariableEntryIds",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "selected-variable-entry-ids",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "searchQuery",
              "type": {
                "text": "string"
              }
            },
            {
              "kind": "field",
              "name": "selectedFacets",
              "type": {
                "text": "SelectedFacets"
              },
              "default": "{}"
            },
            {
              "kind": "field",
              "name": "selectedVariables",
              "type": {
                "text": "Variable[]"
              },
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "showVariablesBrowse",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "activeIndex",
              "type": {
                "text": "number | undefined"
              },
              "privacy": "private",
              "default": "undefined"
            },
            {
              "kind": "field",
              "name": "sortOrder",
              "type": {
                "text": "SortOrder | string"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#controller",
              "privacy": "private",
              "default": "new BrowseVariablesController(this)"
            },
            {
              "kind": "method",
              "name": "handleSelectedVariablesChange"
            },
            {
              "kind": "method",
              "name": "reset"
            },
            {
              "kind": "method",
              "name": "handleObservationChange"
            },
            {
              "kind": "method",
              "name": "toggleFacetSelect",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleSearch",
              "parameters": [
                {
                  "name": "e",
                  "type": {
                    "text": "TerraVariableKeywordSearchChangeEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#selectFacetField",
              "parameters": [
                {
                  "name": "facet",
                  "type": {
                    "text": "string"
                  }
                },
                {
                  "name": "field",
                  "type": {
                    "text": "string"
                  }
                },
                {
                  "name": "selectOneFieldAtATime",
                  "default": "false",
                  "type": {
                    "text": "boolean"
                  }
                }
              ],
              "description": "given a field, ex: \"observations\": \"Model\", will add the field to any existing selected facets\nif \"selectedOneFieldAtATime\" is true, then we will only select that one field"
            },
            {
              "kind": "method",
              "name": "#clearFacet",
              "parameters": [
                {
                  "name": "facet",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#unselectFacetField",
              "parameters": [
                {
                  "name": "facet",
                  "type": {
                    "text": "string"
                  }
                },
                {
                  "name": "field",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#handleVariableSelection",
              "parameters": [
                {
                  "name": "variable",
                  "type": {
                    "text": "Variable"
                  }
                },
                {
                  "name": "checked",
                  "type": {
                    "text": "Boolean"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#handleSortChange",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "TerraSelectEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#getSortedVariables",
              "return": {
                "type": {
                  "text": "Variable[]"
                }
              }
            },
            {
              "kind": "method",
              "name": "#getBrowsingText",
              "return": {
                "type": {
                  "text": "string"
                }
              }
            },
            {
              "kind": "method",
              "name": "#renderCategorySelect"
            },
            {
              "kind": "method",
              "name": "#renderFacet",
              "parameters": [
                {
                  "name": "facetKey",
                  "type": {
                    "text": "string"
                  }
                },
                {
                  "name": "title",
                  "type": {
                    "text": "string"
                  }
                },
                {
                  "name": "fields",
                  "optional": true,
                  "type": {
                    "text": "FacetField[]"
                  }
                },
                {
                  "name": "open",
                  "optional": true,
                  "type": {
                    "text": "boolean"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#renderVariablesBrowse"
            },
            {
              "kind": "method",
              "name": "getVariable",
              "parameters": [
                {
                  "name": "variableEntryId",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            }
          ],
          "attributes": [
            {
              "name": "catalog",
              "type": {
                "text": "'giovanni'"
              },
              "default": "'giovanni'",
              "description": "Allows the user to switch the catalog between different providers\nTODO: add support for CMR catalog and make it the default",
              "fieldName": "catalog"
            },
            {
              "name": "selected-variable-entry-ids",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "selectedVariableEntryIds"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Browse through the NASA CMR or Giovanni catalogs.",
          "tagNameWithoutPrefix": "browse-variables",
          "tagName": "terra-browse-variables",
          "customElement": true,
          "jsDoc": "/**\n * @summary Browse through the NASA CMR or Giovanni catalogs.\n * @documentation https://terra-ui.netlify.app/components/browse-variables\n * @status stable\n * @since 1.0\n *\n * @emits terra-variables-change - emitted when the user selects or unselects variables\n *\n * @dependency terra-variable-keyword-search\n * @dependency terra-button\n * @dependency terra-skeleton\n * @dependency terra-icon\n * @dependency terra-loader\n */",
          "documentation": "https://terra-ui.netlify.app/components/browse-variables",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-variable-keyword-search",
            "terra-button",
            "terra-skeleton",
            "terra-icon",
            "terra-loader"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraBrowseVariables",
            "module": "components/browse-variables/browse-variables.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/button/button.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraButton",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The container that wraps the prefix.",
              "name": "prefix"
            },
            {
              "description": "The button's label.",
              "name": "label"
            },
            {
              "description": "The container that wraps the suffix.",
              "name": "suffix"
            },
            {
              "description": "The button's caret icon, an `<terra-icon>` element.",
              "name": "caret"
            },
            {
              "description": "The spinner that shows when the button is in the loading state.",
              "name": "spinner"
            }
          ],
          "slots": [
            {
              "description": "The button's label.",
              "name": ""
            },
            {
              "description": "A presentational prefix icon or similar element.",
              "name": "prefix"
            },
            {
              "description": "A presentational suffix icon or similar element.",
              "name": "suffix"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-icon': TerraIcon,\n    }"
            },
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this, {\n        assumeInteractionOn: ['click'],\n    })"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(\n        this,\n        '[default]',\n        'prefix',\n        'suffix'\n    )"
            },
            {
              "kind": "field",
              "name": "button",
              "type": {
                "text": "HTMLButtonElement | HTMLLinkElement"
              }
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "invalid",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "title"
            },
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "| 'default'\n        | 'primary'\n        | 'success'\n        | 'warning'\n        | 'danger'\n        | 'text'\n        | 'pagelink'"
              },
              "default": "'primary'",
              "description": "The button's theme variant.",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The button's size.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "caret",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the button with a caret. Used to indicate that the button triggers a dropdown menu or similar behavior.",
              "attribute": "caret",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "shape",
              "type": {
                "text": "'square' | 'square-left' | 'square-right'"
              },
              "description": "The button's shape. Used to control the radius edge shape when button is not in a terra-button-group.",
              "attribute": "shape",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the button.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "loading",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the button in a loading state.",
              "attribute": "loading",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "outline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws an outlined button.",
              "attribute": "outline",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "circle",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a circular icon button. When this attribute is present, the button expects a single `<terra-icon>` in the\ndefault slot.",
              "attribute": "circle",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "type",
              "type": {
                "text": "'button' | 'submit' | 'reset'"
              },
              "default": "'button'",
              "description": "The type of button. Note that the default value is `button` instead of `submit`, which is opposite of how native\n`<button>` elements behave. When the type is `submit`, the button will submit the surrounding form.",
              "attribute": "type"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the button, submitted as a name/value pair with form data, but only when this button is the submitter.\nThis attribute is ignored when `href` is present.",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The value of the button, submitted as a pair with the button's name as part of the form data, but only when this\nbutton is the submitter. This attribute is ignored when `href` is present.",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "href",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.",
              "attribute": "href"
            },
            {
              "kind": "field",
              "name": "target",
              "type": {
                "text": "'_blank' | '_parent' | '_self' | '_top'"
              },
              "description": "Tells the browser where to open the link. Only used when `href` is present.",
              "attribute": "target"
            },
            {
              "kind": "field",
              "name": "rel",
              "type": {
                "text": "string"
              },
              "default": "'noreferrer noopener'",
              "description": "When using `href`, this attribute will map to the underlying link's `rel` attribute. Unlike regular links, the\ndefault is `noreferrer noopener` to prevent security exploits. However, if you're using `target` to point to a\nspecific tab/window, this will prevent that from working correctly. You can remove or change the default value by\nsetting the attribute to an empty string or a value of your choice, respectively.",
              "attribute": "rel"
            },
            {
              "kind": "field",
              "name": "download",
              "type": {
                "text": "string | undefined"
              },
              "description": "Tells the browser to download the linked file as this filename. Only used when `href` is present.",
              "attribute": "download"
            },
            {
              "kind": "field",
              "name": "form",
              "type": {
                "text": "string"
              },
              "description": "The \"form owner\" to associate the button with. If omitted, the closest containing form will be used instead. The\nvalue of this attribute must be an id of a form in the same document or shadow root as the button.",
              "attribute": "form"
            },
            {
              "kind": "field",
              "name": "formAction",
              "type": {
                "text": "string"
              },
              "description": "Used to override the form owner's `action` attribute.",
              "attribute": "formaction"
            },
            {
              "kind": "field",
              "name": "formEnctype",
              "type": {
                "text": "| 'application/x-www-form-urlencoded'\n        | 'multipart/form-data'\n        | 'text/plain'"
              },
              "description": "Used to override the form owner's `enctype` attribute.",
              "attribute": "formenctype"
            },
            {
              "kind": "field",
              "name": "formMethod",
              "type": {
                "text": "'post' | 'get'"
              },
              "description": "Used to override the form owner's `method` attribute.",
              "attribute": "formmethod"
            },
            {
              "kind": "field",
              "name": "formNoValidate",
              "type": {
                "text": "boolean"
              },
              "description": "Used to override the form owner's `novalidate` attribute.",
              "attribute": "formnovalidate"
            },
            {
              "kind": "field",
              "name": "formTarget",
              "type": {
                "text": "| '_self'\n        | '_blank'\n        | '_parent'\n        | '_top'\n        | string"
              },
              "description": "Used to override the form owner's `target` attribute.",
              "attribute": "formtarget"
            },
            {
              "kind": "field",
              "name": "forDialog",
              "type": {
                "text": "string | undefined"
              },
              "description": "Used to connect this button to a dqialog on the page. Clicking the button will toggle the dialog's visiblity",
              "attribute": "for-dialog"
            },
            {
              "kind": "field",
              "name": "role",
              "type": {
                "text": "string | null"
              },
              "default": "'button'",
              "description": "The ARIA role for the button. Defaults to 'button'.",
              "attribute": "role",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "expanded",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "if button is used to control another element on the page, such as an accordion or dialog, this state communicates whether the controlled element is expanded"
            },
            {
              "kind": "field",
              "name": "validity",
              "description": "Gets the validity state object",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "validationMessage",
              "description": "Gets the validation message",
              "readonly": true
            },
            {
              "kind": "method",
              "name": "#handleDialogStateChange",
              "parameters": [
                {
                  "name": "e",
                  "type": {
                    "text": "TerraDialogShowEvent | TerraDialogHideEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleBlur",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleFocus",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleInvalid",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "isButton",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "isLink",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleDisabledChange"
            },
            {
              "kind": "method",
              "name": "handleHrefChange"
            },
            {
              "kind": "method",
              "name": "click",
              "description": "Simulates a click on the button."
            },
            {
              "kind": "method",
              "name": "focus",
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "FocusOptions"
                  }
                }
              ],
              "description": "Sets focus on the button."
            },
            {
              "kind": "method",
              "name": "blur",
              "description": "Removes focus from the button."
            },
            {
              "kind": "method",
              "name": "checkValidity",
              "description": "Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid."
            },
            {
              "kind": "method",
              "name": "getForm",
              "return": {
                "type": {
                  "text": "HTMLFormElement | null"
                }
              },
              "description": "Gets the associated form, if one exists."
            },
            {
              "kind": "method",
              "name": "reportValidity",
              "description": "Checks for validity and shows the browser's validation message if the control is invalid."
            },
            {
              "kind": "method",
              "name": "setCustomValidity",
              "parameters": [
                {
                  "name": "message",
                  "type": {
                    "text": "string"
                  }
                }
              ],
              "description": "Sets a custom validation message. Pass an empty string to restore validity."
            },
            {
              "kind": "method",
              "name": "setPageLinkIcon",
              "return": {
                "type": {
                  "text": "string"
                }
              },
              "parameters": [
                {
                  "name": "href",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "setFontSize",
              "return": {
                "type": {
                  "text": "string"
                }
              },
              "parameters": [
                {
                  "name": "size",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            }
          ],
          "events": [
            {
              "description": "emitted when the button is blurred",
              "name": "terra-blur",
              "reactName": "onTerraBlur",
              "eventName": "TerraBlurEvent"
            },
            {
              "description": "emitted when the button is focused",
              "name": "terra-focus",
              "reactName": "onTerraFocus",
              "eventName": "TerraFocusEvent"
            }
          ],
          "attributes": [
            {
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "title"
            },
            {
              "name": "variant",
              "type": {
                "text": "| 'default'\n        | 'primary'\n        | 'success'\n        | 'warning'\n        | 'danger'\n        | 'text'\n        | 'pagelink'"
              },
              "default": "'primary'",
              "description": "The button's theme variant.",
              "fieldName": "variant"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The button's size.",
              "fieldName": "size"
            },
            {
              "name": "caret",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the button with a caret. Used to indicate that the button triggers a dropdown menu or similar behavior.",
              "fieldName": "caret"
            },
            {
              "name": "shape",
              "type": {
                "text": "'square' | 'square-left' | 'square-right'"
              },
              "description": "The button's shape. Used to control the radius edge shape when button is not in a terra-button-group.",
              "fieldName": "shape"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the button.",
              "fieldName": "disabled"
            },
            {
              "name": "loading",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the button in a loading state.",
              "fieldName": "loading"
            },
            {
              "name": "outline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws an outlined button.",
              "fieldName": "outline"
            },
            {
              "name": "circle",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a circular icon button. When this attribute is present, the button expects a single `<terra-icon>` in the\ndefault slot.",
              "fieldName": "circle"
            },
            {
              "name": "type",
              "type": {
                "text": "'button' | 'submit' | 'reset'"
              },
              "default": "'button'",
              "description": "The type of button. Note that the default value is `button` instead of `submit`, which is opposite of how native\n`<button>` elements behave. When the type is `submit`, the button will submit the surrounding form.",
              "fieldName": "type"
            },
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the button, submitted as a name/value pair with form data, but only when this button is the submitter.\nThis attribute is ignored when `href` is present.",
              "fieldName": "name"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The value of the button, submitted as a pair with the button's name as part of the form data, but only when this\nbutton is the submitter. This attribute is ignored when `href` is present.",
              "fieldName": "value"
            },
            {
              "name": "href",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "When set, the underlying button will be rendered as an `<a>` with this `href` instead of a `<button>`.",
              "fieldName": "href"
            },
            {
              "name": "target",
              "type": {
                "text": "'_blank' | '_parent' | '_self' | '_top'"
              },
              "description": "Tells the browser where to open the link. Only used when `href` is present.",
              "fieldName": "target"
            },
            {
              "name": "rel",
              "type": {
                "text": "string"
              },
              "default": "'noreferrer noopener'",
              "description": "When using `href`, this attribute will map to the underlying link's `rel` attribute. Unlike regular links, the\ndefault is `noreferrer noopener` to prevent security exploits. However, if you're using `target` to point to a\nspecific tab/window, this will prevent that from working correctly. You can remove or change the default value by\nsetting the attribute to an empty string or a value of your choice, respectively.",
              "fieldName": "rel"
            },
            {
              "name": "download",
              "type": {
                "text": "string | undefined"
              },
              "description": "Tells the browser to download the linked file as this filename. Only used when `href` is present.",
              "fieldName": "download"
            },
            {
              "name": "form",
              "type": {
                "text": "string"
              },
              "description": "The \"form owner\" to associate the button with. If omitted, the closest containing form will be used instead. The\nvalue of this attribute must be an id of a form in the same document or shadow root as the button.",
              "fieldName": "form"
            },
            {
              "name": "formaction",
              "type": {
                "text": "string"
              },
              "description": "Used to override the form owner's `action` attribute.",
              "fieldName": "formAction"
            },
            {
              "name": "formenctype",
              "type": {
                "text": "| 'application/x-www-form-urlencoded'\n        | 'multipart/form-data'\n        | 'text/plain'"
              },
              "description": "Used to override the form owner's `enctype` attribute.",
              "fieldName": "formEnctype"
            },
            {
              "name": "formmethod",
              "type": {
                "text": "'post' | 'get'"
              },
              "description": "Used to override the form owner's `method` attribute.",
              "fieldName": "formMethod"
            },
            {
              "name": "formnovalidate",
              "type": {
                "text": "boolean"
              },
              "description": "Used to override the form owner's `novalidate` attribute.",
              "fieldName": "formNoValidate"
            },
            {
              "name": "formtarget",
              "type": {
                "text": "| '_self'\n        | '_blank'\n        | '_parent'\n        | '_top'\n        | string"
              },
              "description": "Used to override the form owner's `target` attribute.",
              "fieldName": "formTarget"
            },
            {
              "name": "for-dialog",
              "type": {
                "text": "string | undefined"
              },
              "description": "Used to connect this button to a dqialog on the page. Clicking the button will toggle the dialog's visiblity",
              "fieldName": "forDialog"
            },
            {
              "name": "role",
              "type": {
                "text": "string | null"
              },
              "default": "'button'",
              "description": "The ARIA role for the button. Defaults to 'button'.",
              "fieldName": "role"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Buttons represent actions that are available to the user.",
          "tagNameWithoutPrefix": "button",
          "tagName": "terra-button",
          "customElement": true,
          "jsDoc": "/**\n * @summary Buttons represent actions that are available to the user.\n * @documentation https://terra-ui.netlify.app/components/button\n * @status stable\n * @since 1.0\n *\n * @slot - The button's label.\n * @slot prefix - A presentational prefix icon or similar element.\n * @slot suffix - A presentational suffix icon or similar element.\n *\n * @event terra-blur - emitted when the button is blurred\n * @event terra-focus - emitted when the button is focused\n *\n * @csspart base - The component's base wrapper.\n * @csspart prefix - The container that wraps the prefix.\n * @csspart label - The button's label.\n * @csspart suffix - The container that wraps the suffix.\n * @csspart caret - The button's caret icon, an `<terra-icon>` element.\n * @csspart spinner - The spinner that shows when the button is in the loading state.\n */",
          "documentation": "https://terra-ui.netlify.app/components/button",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraButton",
            "module": "components/button/button.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/button-group/button-group.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraButtonGroup",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "slots": [
            {
              "description": "One or more `<terra-button>` elements to display in the button group.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "defaultSlot",
              "type": {
                "text": "HTMLSlotElement"
              }
            },
            {
              "kind": "field",
              "name": "disableRole",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "A label to use for the button group. This won't be displayed on the screen, but it will be announced by assistive\ndevices when interacting with the control and is strongly recommended.",
              "attribute": "label"
            },
            {
              "kind": "method",
              "name": "handleFocus",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleBlur",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleMouseOver",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleMouseOut",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleSlotChange",
              "privacy": "private"
            }
          ],
          "attributes": [
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "A label to use for the button group. This won't be displayed on the screen, but it will be announced by assistive\ndevices when interacting with the control and is strongly recommended.",
              "fieldName": "label"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Button groups can be used to group related buttons into sections.",
          "tagNameWithoutPrefix": "button-group",
          "tagName": "terra-button-group",
          "customElement": true,
          "jsDoc": "/**\n * @summary Button groups can be used to group related buttons into sections.\n * @documentation https://terra-ui.netlify.app/components/button-group\n * @status stable\n * @since 1.0\n *\n * @slot - One or more `<terra-button>` elements to display in the button group.\n *\n * @csspart base - The component's base wrapper.\n */",
          "documentation": "https://terra-ui.netlify.app/components/button-group",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraButtonGroup",
            "module": "components/button-group/button-group.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/caption/caption.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraCaption",
          "cssProperties": [
            {
              "description": "The font family for the caption.",
              "name": "--terra-caption-font-family"
            },
            {
              "description": "The font size for the caption.",
              "name": "--terra-caption-font-size"
            },
            {
              "description": "The font weight for the caption.",
              "name": "--terra-caption-font-weight"
            },
            {
              "description": "The line height for the caption.",
              "name": "--terra-caption-line-height"
            },
            {
              "description": "The text color for the caption.",
              "name": "--terra-caption-color"
            },
            {
              "description": "The text color for credits within the caption.",
              "name": "--terra-caption-credit-color"
            }
          ],
          "slots": [
            {
              "description": "The caption content. Use a `<span class=\"credit\">` element for credits, which will be displayed with higher contrast.",
              "name": ""
            }
          ],
          "members": [],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Captions are small text blocks that describe photos, provide additional context and information, and give credit to photographers and other content owners and creators.",
          "tagNameWithoutPrefix": "caption",
          "tagName": "terra-caption",
          "customElement": true,
          "jsDoc": "/**\n * @summary Captions are small text blocks that describe photos, provide additional context and information, and give credit to photographers and other content owners and creators.\n * @documentation https://terra-ui.netlify.app/components/caption\n * @status stable\n * @since 1.0\n *\n * @slot - The caption content. Use a `<span class=\"credit\">` element for credits, which will be displayed with higher contrast.\n *\n * @cssproperty --terra-caption-font-family - The font family for the caption.\n * @cssproperty --terra-caption-font-size - The font size for the caption.\n * @cssproperty --terra-caption-font-weight - The font weight for the caption.\n * @cssproperty --terra-caption-line-height - The line height for the caption.\n * @cssproperty --terra-caption-color - The text color for the caption.\n * @cssproperty --terra-caption-credit-color - The text color for credits within the caption.\n */",
          "documentation": "https://terra-ui.netlify.app/components/caption",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraCaption",
            "module": "components/caption/caption.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/card/card.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraCard",
          "cssProperties": [
            {
              "description": "The card's border color, including borders that occur inside the card.",
              "name": "--border-color"
            },
            {
              "description": "The border radius for the card's edges.",
              "name": "--border-radius"
            },
            {
              "description": "The width of the card's borders.",
              "name": "--border-width"
            },
            {
              "description": "The padding to use for the card's sections.",
              "name": "--padding"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The container that wraps the card's image.",
              "name": "image"
            },
            {
              "description": "The container that wraps the card's header.",
              "name": "header"
            },
            {
              "description": "The container that wraps the card's main content.",
              "name": "body"
            },
            {
              "description": "The container that wraps the card's footer.",
              "name": "footer"
            }
          ],
          "slots": [
            {
              "description": "The card's main content.",
              "name": ""
            },
            {
              "description": "An optional header for the card.",
              "name": "header"
            },
            {
              "description": "An optional footer for the card.",
              "name": "footer"
            },
            {
              "description": "An optional image to render at the start of the card.",
              "name": "image"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(\n        this,\n        'footer',\n        'header',\n        'image'\n    )"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Cards can be used to group related subjects in a container.",
          "tagNameWithoutPrefix": "card",
          "tagName": "terra-card",
          "customElement": true,
          "jsDoc": "/**\n * @summary Cards can be used to group related subjects in a container.\n * @documentation https://terra-ui.netlify.app/components/card\n * @status stable\n * @since 1.0\n *\n * @slot - The card's main content.\n * @slot header - An optional header for the card.\n * @slot footer - An optional footer for the card.\n * @slot image - An optional image to render at the start of the card.\n *\n * @csspart base - The component's base wrapper.\n * @csspart image - The container that wraps the card's image.\n * @csspart header - The container that wraps the card's header.\n * @csspart body - The container that wraps the card's main content.\n * @csspart footer - The container that wraps the card's footer.\n *\n * @cssproperty --border-color - The card's border color, including borders that occur inside the card.\n * @cssproperty --border-radius - The border radius for the card's edges.\n * @cssproperty --border-width - The width of the card's borders.\n * @cssproperty --padding - The padding to use for the card's sections.\n */",
          "documentation": "https://terra-ui.netlify.app/components/card",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraCard",
            "module": "components/card/card.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/checkbox/checkbox.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraCheckbox",
          "cssProperties": [
            {
              "description": "All checkbox design tokens from horizon.css are supported.",
              "name": "--terra-checkbox-*"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The square container that wraps the checkbox's checked state.",
              "name": "control"
            },
            {
              "description": "Matches the control part when the checkbox is checked.",
              "name": "control--checked"
            },
            {
              "description": "Matches the control part when the checkbox is indeterminate.",
              "name": "control--indeterminate"
            },
            {
              "description": "The checked icon, an `<terra-icon>` element.",
              "name": "checked-icon"
            },
            {
              "description": "The indeterminate icon, an `<terra-icon>` element.",
              "name": "indeterminate-icon"
            },
            {
              "description": "The container that wraps the checkbox's label.",
              "name": "label"
            },
            {
              "description": "The help text's wrapper.",
              "name": "form-control-help-text"
            }
          ],
          "slots": [
            {
              "description": "The checkbox's label.",
              "name": ""
            },
            {
              "description": "Text that describes how to use the checkbox. Alternatively, you can use the `help-text` attribute.",
              "name": "help-text"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{ 'terra-icon': TerraIcon }"
            },
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this, {\n        value: (control: TerraCheckbox) =>\n            control.checked ? control.value || 'on' : undefined,\n        defaultValue: (control: TerraCheckbox) => control.defaultChecked,\n        setValue: (control: TerraCheckbox, checked: boolean) =>\n            (control.checked = checked),\n    })"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'help-text')"
            },
            {
              "kind": "field",
              "name": "input",
              "type": {
                "text": "HTMLInputElement"
              }
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "title"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the checkbox, submitted as a name/value pair with form data.",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The current value of the checkbox, submitted as a name/value pair with form data.",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The checkbox's size.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the checkbox.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "checked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the checkbox in a checked state.",
              "attribute": "checked",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "indeterminate",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the checkbox in an indeterminate state. This is usually applied to checkboxes that represents a \"select\nall/none\" behavior when associated checkboxes have a mix of checked and unchecked states.",
              "attribute": "indeterminate",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "defaultChecked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "The default value of the form control. Primarily used for resetting the form control."
            },
            {
              "kind": "field",
              "name": "form",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "attribute": "form",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the checkbox a required field.",
              "attribute": "required",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The checkbox's help text. If you need to display HTML, use the `help-text` slot instead.",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "validity",
              "description": "Gets the validity state object",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "validationMessage",
              "description": "Gets the validation message",
              "readonly": true
            },
            {
              "kind": "method",
              "name": "handleClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleBlur",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleInput",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleInvalid",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleFocus",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleDisabledChange"
            },
            {
              "kind": "method",
              "name": "handleStateChange"
            },
            {
              "kind": "method",
              "name": "click",
              "description": "Simulates a click on the checkbox."
            },
            {
              "kind": "method",
              "name": "focus",
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "FocusOptions"
                  }
                }
              ],
              "description": "Sets focus on the checkbox."
            },
            {
              "kind": "method",
              "name": "blur",
              "description": "Removes focus from the checkbox."
            },
            {
              "kind": "method",
              "name": "checkValidity",
              "description": "Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid."
            },
            {
              "kind": "method",
              "name": "getForm",
              "return": {
                "type": {
                  "text": "HTMLFormElement | null"
                }
              },
              "description": "Gets the associated form, if one exists."
            },
            {
              "kind": "method",
              "name": "reportValidity",
              "description": "Checks for validity and shows the browser's validation message if the control is invalid."
            },
            {
              "kind": "method",
              "name": "setCustomValidity",
              "parameters": [
                {
                  "name": "message",
                  "type": {
                    "text": "string"
                  }
                }
              ],
              "description": "Sets a custom validation message. The value provided will be shown to the user when the form is submitted. To clear\nthe custom validation message, call this method with an empty string."
            }
          ],
          "events": [
            {
              "description": "Emitted when the checkbox loses focus.",
              "name": "terra-blur",
              "reactName": "onTerraBlur",
              "eventName": "TerraBlurEvent"
            },
            {
              "description": "Emitted when the checked state changes.",
              "name": "terra-change",
              "reactName": "onTerraChange",
              "eventName": "TerraChangeEvent"
            },
            {
              "description": "Emitted when the checkbox gains focus.",
              "name": "terra-focus",
              "reactName": "onTerraFocus",
              "eventName": "TerraFocusEvent"
            },
            {
              "description": "Emitted when the checkbox receives input.",
              "name": "terra-input",
              "reactName": "onTerraInput",
              "eventName": "TerraInputEvent"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "terra-invalid",
              "reactName": "onTerraInvalid",
              "eventName": "TerraInvalidEvent"
            }
          ],
          "attributes": [
            {
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "title"
            },
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the checkbox, submitted as a name/value pair with form data.",
              "fieldName": "name"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The current value of the checkbox, submitted as a name/value pair with form data.",
              "fieldName": "value"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The checkbox's size.",
              "fieldName": "size"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the checkbox.",
              "fieldName": "disabled"
            },
            {
              "name": "checked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the checkbox in a checked state.",
              "fieldName": "checked"
            },
            {
              "name": "indeterminate",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the checkbox in an indeterminate state. This is usually applied to checkboxes that represents a \"select\nall/none\" behavior when associated checkboxes have a mix of checked and unchecked states.",
              "fieldName": "indeterminate"
            },
            {
              "name": "form",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "fieldName": "form"
            },
            {
              "name": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the checkbox a required field.",
              "fieldName": "required"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The checkbox's help text. If you need to display HTML, use the `help-text` slot instead.",
              "fieldName": "helpText"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Checkboxes are a form field used when there are multiple options to select from a list.",
          "tagNameWithoutPrefix": "checkbox",
          "tagName": "terra-checkbox",
          "customElement": true,
          "jsDoc": "/**\n * @summary Checkboxes are a form field used when there are multiple options to select from a list.\n * @documentation https://terra-ui.netlify.app/components/checkbox\n * @status stable\n * @since 1.0\n *\n * @dependency terra-icon\n *\n * @slot - The checkbox's label.\n * @slot help-text - Text that describes how to use the checkbox. Alternatively, you can use the `help-text` attribute.\n *\n * @event terra-blur - Emitted when the checkbox loses focus.\n * @event terra-change - Emitted when the checked state changes.\n * @event terra-focus - Emitted when the checkbox gains focus.\n * @event terra-input - Emitted when the checkbox receives input.\n * @event terra-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n *\n * @csspart base - The component's base wrapper.\n * @csspart control - The square container that wraps the checkbox's checked state.\n * @csspart control--checked - Matches the control part when the checkbox is checked.\n * @csspart control--indeterminate - Matches the control part when the checkbox is indeterminate.\n * @csspart checked-icon - The checked icon, an `<terra-icon>` element.\n * @csspart indeterminate-icon - The indeterminate icon, an `<terra-icon>` element.\n * @csspart label - The container that wraps the checkbox's label.\n * @csspart form-control-help-text - The help text's wrapper.\n *\n * @cssproperty --terra-checkbox-* - All checkbox design tokens from horizon.css are supported.\n */",
          "documentation": "https://terra-ui.netlify.app/components/checkbox",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-icon"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraCheckbox",
            "module": "components/checkbox/checkbox.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/chip/chip.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraChip",
          "cssProperties": [
            {
              "description": "The background color of the chip.",
              "name": "--terra-chip-background-color"
            },
            {
              "description": "The text color of the chip.",
              "name": "--terra-chip-color"
            }
          ],
          "slots": [
            {
              "description": "The chip's label.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The size of the chip.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "closeable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, the chip will have a close button that can be used to remove the chip.",
              "attribute": "closeable",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "stack",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, chips will stack vertically instead of sitting side by side.",
              "attribute": "stack",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "#handleRemoveClick",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "description": "emitted when the chip's close button is clicked",
              "name": "terra-remove",
              "reactName": "onTerraRemove",
              "eventName": "TerraRemoveEvent"
            }
          ],
          "attributes": [
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The size of the chip.",
              "fieldName": "size"
            },
            {
              "name": "closeable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, the chip will have a close button that can be used to remove the chip.",
              "fieldName": "closeable"
            },
            {
              "name": "stack",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, chips will stack vertically instead of sitting side by side.",
              "fieldName": "stack"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Used for contacts and tags",
          "tagNameWithoutPrefix": "chip",
          "tagName": "terra-chip",
          "customElement": true,
          "jsDoc": "/**\n * @summary Used for contacts and tags\n * @documentation https://terra-ui.netlify.app/components/chip\n * @status stable\n * @since 1.0\n *\n * @slot - The chip's label.\n *\n * @event terra-remove - emitted when the chip's close button is clicked\n *\n * @cssproperty --terra-chip-background-color - The background color of the chip.\n * @cssproperty --terra-chip-color - The text color of the chip.\n */",
          "documentation": "https://terra-ui.netlify.app/components/chip",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraChip",
            "module": "components/chip/chip.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/combobox/combobox.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraCombobox",
          "cssProperties": [
            {
              "description": "The height of the host element.",
              "name": "--host-height"
            },
            {
              "description": "The height of the search help element.",
              "name": "--help-height"
            },
            {
              "description": "The height of the input's label element.",
              "name": "--label-height"
            }
          ],
          "cssParts": [
            {
              "description": "A `search` element, the component's base.",
              "name": "base"
            },
            {
              "description": "An `input` element used for searching.",
              "name": "combobox"
            },
            {
              "description": "A `button` used for toggling the listbox's visibility.",
              "name": "button"
            },
            {
              "description": "A `ul` that holds the clickable options.",
              "name": "listbox"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "shadowRootOptions",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        ...LitElement.shadowRootOptions,\n        delegatesFocus: true,\n    }"
            },
            {
              "kind": "field",
              "name": "tagName",
              "type": {
                "text": "string"
              },
              "static": true,
              "default": "'terra-combobox'"
            },
            {
              "kind": "field",
              "name": "initialQuery",
              "type": {
                "text": "string"
              },
              "static": true,
              "default": "''"
            },
            {
              "kind": "field",
              "name": "#combobox",
              "privacy": "private",
              "type": {
                "text": "HTMLInputElement | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#listbox",
              "privacy": "private",
              "type": {
                "text": "HTMLUListElement | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#searchEngine",
              "privacy": "private",
              "type": {
                "text": "Fuse<GroupedListItem | ListItem> | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#walker",
              "privacy": "private",
              "type": {
                "text": "TreeWalker | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "'Search for Items'",
              "description": "Label the combobox with this.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "'Item'",
              "description": "name the combobox with this.",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "description": "Set a placeholder for the combobox with this.\nDefaults to the label's value.",
              "attribute": "placeholder"
            },
            {
              "kind": "field",
              "name": "hideHelp",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Hide the combobox's help text.\nWhen hidden, not rendered at all.",
              "attribute": "hide-help"
            },
            {
              "kind": "field",
              "name": "hideLabel",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Hide the combobox's label text.\nWhen hidden, still presents to screen readers.",
              "attribute": "hide-label"
            },
            {
              "kind": "field",
              "name": "status",
              "type": {
                "text": "'INITIAL' | 'PENDING' | 'COMPLETE' | 'ERROR'"
              },
              "default": "'INITIAL'",
              "description": "status of the content",
              "attribute": "status"
            },
            {
              "kind": "field",
              "name": "content",
              "type": {
                "text": "Content"
              },
              "default": "{\n        type: SearchableListType.GroupedListItem,\n        data: [],\n    }",
              "description": "content or data of the combobox. This could be of type string | GroupedListItem[] | ListItem[] | undefined",
              "attribute": "content"
            },
            {
              "kind": "field",
              "name": "isExpanded",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "query"
            },
            {
              "kind": "field",
              "name": "searchResults",
              "type": {
                "text": "GroupedListItem[] | ListItem[]"
              },
              "default": "[]"
            },
            {
              "kind": "method",
              "name": "contentChanged",
              "parameters": [
                {
                  "name": "_oldValue",
                  "type": {
                    "text": "any"
                  }
                },
                {
                  "name": "newValue",
                  "type": {
                    "text": "any"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "#renderListItem",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#renderGroupListItem",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#renderError",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#renderLoading",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#dispatchChange",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#handleButtonClick",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#handleComboboxChange",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#handleOptionClick",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#handleKeydown",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#manageListboxVisibility",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#selectOption",
              "privacy": "private"
            }
          ],
          "attributes": [
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "'Search for Items'",
              "description": "Label the combobox with this.",
              "fieldName": "label"
            },
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "'Item'",
              "description": "name the combobox with this.",
              "fieldName": "name"
            },
            {
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "description": "Set a placeholder for the combobox with this.\nDefaults to the label's value.",
              "fieldName": "placeholder"
            },
            {
              "name": "hide-help",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Hide the combobox's help text.\nWhen hidden, not rendered at all.",
              "fieldName": "hideHelp"
            },
            {
              "name": "hide-label",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Hide the combobox's label text.\nWhen hidden, still presents to screen readers.",
              "fieldName": "hideLabel"
            },
            {
              "name": "status",
              "type": {
                "text": "'INITIAL' | 'PENDING' | 'COMPLETE' | 'ERROR'"
              },
              "default": "'INITIAL'",
              "description": "status of the content",
              "fieldName": "status"
            },
            {
              "name": "content",
              "type": {
                "text": "Content"
              },
              "default": "{\n        type: SearchableListType.GroupedListItem,\n        data: [],\n    }",
              "description": "content or data of the combobox. This could be of type string | GroupedListItem[] | ListItem[] | undefined",
              "fieldName": "content"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Fuzzy-search for combobox with list autocomplete.",
          "tagNameWithoutPrefix": "combobox",
          "tagName": "terra-combobox",
          "customElement": true,
          "jsDoc": "/**\n * @summary Fuzzy-search for combobox with list autocomplete.\n * @documentation https://terra-ui.netlify.app/components/combobox\n * @status stable\n * @since 1.0\n *\n * @csspart base - A `search` element, the component's base.\n * @csspart combobox - An `input` element used for searching.\n * @csspart button - A `button` used for toggling the listbox's visibility.\n * @csspart listbox - A `ul` that holds the clickable options.\n *\n * @cssproperty --host-height - The height of the host element.\n * @cssproperty --help-height - The height of the search help element.\n * @cssproperty --label-height - The height of the input's label element.\n */",
          "documentation": "https://terra-ui.netlify.app/components/combobox",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraCombobox",
            "module": "components/combobox/combobox.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/data-access/data-access.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraDataAccess",
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-loader': TerraLoader,\n        'terra-icon': TerraIcon,\n        'terra-date-picker': TerraDatePicker,\n        'terra-spatial-picker': TerraSpatialPicker,\n        'terra-slider': TerraSlider,\n        'terra-dropdown': TerraDropdown,\n        'terra-menu': TerraMenu,\n        'terra-menu-item': TerraMenuItem,\n        'terra-button': TerraButton,\n        'terra-data-grid': TerraDataGrid,\n        'terra-alert': TerraAlert,\n    }"
            },
            {
              "kind": "field",
              "name": "shortName",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "short-name",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "version",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "version",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "_gridInitialized",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "method",
              "name": "handleCollectionChange"
            },
            {
              "kind": "field",
              "name": "footerSlot",
              "type": {
                "text": "boolean | undefined"
              },
              "description": "When true, the footer will be rendered with slot=\"footer\" for use in a dialog.",
              "attribute": "footer-slot"
            },
            {
              "kind": "field",
              "name": "limit",
              "type": {
                "text": "number"
              },
              "default": "50"
            },
            {
              "kind": "field",
              "name": "page",
              "type": {
                "text": "number"
              },
              "default": "1"
            },
            {
              "kind": "field",
              "name": "search",
              "type": {
                "text": "string"
              },
              "default": "''"
            },
            {
              "kind": "field",
              "name": "startDate",
              "type": {
                "text": "string"
              },
              "default": "''"
            },
            {
              "kind": "field",
              "name": "endDate",
              "type": {
                "text": "string"
              },
              "default": "''"
            },
            {
              "kind": "field",
              "name": "location",
              "type": {
                "text": "MapEventDetail | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "cloudCover",
              "type": {
                "text": "{ min?: number; max?: number }"
              },
              "default": "{ min: undefined, max: undefined }"
            },
            {
              "kind": "field",
              "name": "cloudCoverPickerOpen",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "datePickerRef"
            },
            {
              "kind": "field",
              "name": "spatialPickerRef"
            },
            {
              "kind": "field",
              "name": "cloudCoverSliderRef"
            },
            {
              "kind": "field",
              "name": "gridRef"
            },
            {
              "kind": "field",
              "name": "#controller",
              "privacy": "private",
              "default": "new DataAccessController(this)"
            },
            {
              "kind": "field",
              "name": "#boundHandleCloudCoverClickOutside",
              "privacy": "private",
              "type": {
                "text": "((event: MouseEvent) => void) | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#gridApi",
              "privacy": "private",
              "type": {
                "text": "GridApi<CmrGranule> | undefined"
              },
              "readonly": true
            },
            {
              "kind": "method",
              "name": "#handleCloudCoverClickOutside",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "firstVisible",
              "return": {
                "type": {
                  "text": "Promise<void>"
                }
              }
            },
            {
              "kind": "method",
              "name": "#initializeGrid"
            },
            {
              "kind": "method",
              "name": "handleSearch",
              "parameters": [
                {
                  "name": "search",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#handleMapChange",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "TerraMapChangeEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#handleSpatialDropdownShow"
            },
            {
              "kind": "method",
              "name": "#handleDateRangeChange",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "CustomEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#getDateRangeButtonText",
              "return": {
                "type": {
                  "text": "string"
                }
              }
            },
            {
              "kind": "method",
              "name": "#formatAvailableRangeDate",
              "return": {
                "type": {
                  "text": "string"
                }
              },
              "parameters": [
                {
                  "name": "dateStr",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#getSpatialButtonText",
              "return": {
                "type": {
                  "text": "string"
                }
              }
            },
            {
              "kind": "method",
              "name": "#clearDateRange"
            },
            {
              "kind": "method",
              "name": "#clearSpatialFilter"
            },
            {
              "kind": "method",
              "name": "#toggleCloudCoverPicker"
            },
            {
              "kind": "method",
              "name": "#clearCloudCoverFilter"
            },
            {
              "kind": "method",
              "name": "#getCloudCoverButtonText",
              "return": {
                "type": {
                  "text": "string"
                }
              }
            },
            {
              "kind": "method",
              "name": "#handleDownloadSelect",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "TerraSelectEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#downloadPythonScript",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#downloadEarthdataDownload",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#handleJupyterNotebookClick"
            },
            {
              "kind": "method",
              "name": "#handleCloudCoverChange",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "TerraSliderChangeEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#renderLoadingOverlay"
            }
          ],
          "attributes": [
            {
              "description": "Collection short name used to build the Collection Entry ID.",
              "name": "short-name",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "shortName"
            },
            {
              "description": "Collection version used to build the Collection Entry ID.",
              "name": "version",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "version"
            },
            {
              "name": "footer-slot",
              "type": {
                "text": "boolean | undefined"
              },
              "description": "When true, the footer will be rendered with slot=\"footer\" for use in a dialog.",
              "fieldName": "footerSlot"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Discover and export collection granules with search, temporal, spatial, and cloud cover filters.",
          "tagNameWithoutPrefix": "data-access",
          "tagName": "terra-data-access",
          "customElement": true,
          "jsDoc": "/**\n * @summary Discover and export collection granules with search, temporal, spatial, and cloud cover filters.\n * @documentation https://terra-ui.netlify.app/components/data-access\n * @status stable\n * @since 1.0\n *\n * @dependency terra-loader\n * @dependency terra-icon\n * @dependency terra-date-picker\n * @dependency terra-spatial-picker\n * @dependency terra-slider\n * @dependency terra-data-grid\n *\n * @attr short-name - Collection short name used to build the Collection Entry ID.\n * @attr version - Collection version used to build the Collection Entry ID.\n */",
          "documentation": "https://terra-ui.netlify.app/components/data-access",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-loader",
            "terra-icon",
            "terra-date-picker",
            "terra-spatial-picker",
            "terra-slider",
            "terra-data-grid"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraDataAccess",
            "module": "components/data-access/data-access.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/data-grid/data-grid.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraDataGrid",
          "cssProperties": [
            {
              "description": "The height of the grid (default: 400px).",
              "name": "--terra-data-grid-height"
            },
            {
              "description": "Border color using HDS tokens.",
              "name": "--terra-data-grid-border-color"
            },
            {
              "description": "Header background color.",
              "name": "--terra-data-grid-header-background"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The AG Grid container element.",
              "name": "grid"
            },
            {
              "description": "The loading overlay container.",
              "name": "loading"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-loader': TerraLoader,\n    }"
            },
            {
              "kind": "field",
              "name": "gridOptions",
              "type": {
                "text": "GridOptions<T> | undefined"
              },
              "description": "AG Grid options configuration object.\nThis is the primary way to configure the grid.\nMust be set via JavaScript (not as an attribute).",
              "attribute": "gridOptions"
            },
            {
              "kind": "field",
              "name": "columnDefs",
              "type": {
                "text": "ColDef<T>[] | undefined"
              },
              "description": "Column definitions for the grid.\nAlternative to setting columnDefs in gridOptions.\nMust be set via JavaScript (not as an attribute).",
              "attribute": "columnDefs"
            },
            {
              "kind": "field",
              "name": "rowData",
              "type": {
                "text": "T[] | undefined"
              },
              "description": "Row data for client-side row model.\nMust be set via JavaScript (not as an attribute).",
              "attribute": "rowData"
            },
            {
              "kind": "field",
              "name": "datasource",
              "type": {
                "text": "IDatasource | undefined"
              },
              "description": "Datasource for infinite scroll row model.\nMust be set via JavaScript (not as an attribute).",
              "attribute": "datasource"
            },
            {
              "kind": "field",
              "name": "height",
              "type": {
                "text": "string"
              },
              "default": "'400px'",
              "description": "Height of the grid in pixels or CSS units.\nDefault: 400px",
              "attribute": "height"
            },
            {
              "kind": "field",
              "name": "rowModelType",
              "type": {
                "text": "'clientSide' | 'infinite' | 'serverSide'"
              },
              "default": "'clientSide'",
              "description": "Row model type: 'clientSide', 'infinite', or 'serverSide'.\nDefault: 'clientSide'",
              "attribute": "row-model-type"
            },
            {
              "kind": "field",
              "name": "theme",
              "type": {
                "text": "string"
              },
              "default": "'alpine'",
              "description": "Theme for AG Grid: 'alpine', 'alpine-dark', 'balham', 'balham-dark', 'material', 'quartz'.\nDefault: 'alpine'",
              "attribute": "theme"
            },
            {
              "kind": "field",
              "name": "showLoading",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Whether to show loading overlay when data is being fetched.\nDefault: false",
              "attribute": "show-loading"
            },
            {
              "kind": "field",
              "name": "isLoading",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "#gridApi",
              "privacy": "private",
              "type": {
                "text": "GridApi<T> | undefined"
              }
            },
            {
              "kind": "field",
              "name": "#gridRef",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "firstVisible",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "method",
              "name": "#initializeGrid"
            },
            {
              "kind": "method",
              "name": "#getDefaultGridOptions",
              "return": {
                "type": {
                  "text": "Partial<GridOptions<T>>"
                }
              }
            },
            {
              "kind": "method",
              "name": "getGridApi",
              "return": {
                "type": {
                  "text": "GridApi<T> | undefined"
                }
              },
              "description": "Get the AG Grid API instance.\nUseful for programmatic control of the grid."
            },
            {
              "kind": "method",
              "name": "refresh",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "description": "Refresh the grid data.\nFor infinite scroll, purges cache and refetches."
            },
            {
              "kind": "method",
              "name": "exportToCsv",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "CsvExportParams"
                  }
                }
              ],
              "description": "Export grid data to CSV."
            },
            {
              "kind": "method",
              "name": "exportToExcel",
              "return": {
                "type": {
                  "text": "void"
                }
              },
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "ExcelExportParams"
                  }
                }
              ],
              "description": "Export grid data to Excel.\nNote: Requires AG Grid Enterprise license."
            }
          ],
          "events": [
            {
              "description": "Emitted when the grid is initialized and ready.",
              "name": "terra-grid-ready",
              "reactName": "onTerraGridReady",
              "eventName": "TerraGridReadyEvent"
            },
            {
              "description": "Emitted when row selection changes.",
              "name": "terra-selection-changed",
              "reactName": "onTerraSelectionChanged",
              "eventName": "TerraSelectionChangedEvent"
            },
            {
              "description": "Emitted when column sorting changes.",
              "name": "terra-sort-changed",
              "reactName": "onTerraSortChanged",
              "eventName": "TerraSortChangedEvent"
            },
            {
              "description": "Emitted when column filters change.",
              "name": "terra-filter-changed",
              "reactName": "onTerraFilterChanged",
              "eventName": "TerraFilterChangedEvent"
            },
            {
              "description": "Emitted when a row is clicked.",
              "name": "terra-row-clicked",
              "reactName": "onTerraRowClicked",
              "eventName": "TerraRowClickedEvent"
            },
            {
              "description": "Emitted when a row is double-clicked.",
              "name": "terra-row-double-clicked",
              "reactName": "onTerraRowDoubleClicked",
              "eventName": "TerraRowDoubleClickedEvent"
            },
            {
              "description": "Emitted when a cell is clicked.",
              "name": "terra-cell-clicked",
              "reactName": "onTerraCellClicked",
              "eventName": "TerraCellClickedEvent"
            },
            {
              "description": "Emitted when a cell value is edited.",
              "name": "terra-cell-value-changed",
              "reactName": "onTerraCellValueChanged",
              "eventName": "TerraCellValueChangedEvent"
            }
          ],
          "attributes": [
            {
              "name": "gridOptions",
              "type": {
                "text": "GridOptions<T> | undefined"
              },
              "description": "AG Grid options configuration object.\nThis is the primary way to configure the grid.\nMust be set via JavaScript (not as an attribute).",
              "fieldName": "gridOptions"
            },
            {
              "name": "columnDefs",
              "type": {
                "text": "ColDef<T>[] | undefined"
              },
              "description": "Column definitions for the grid.\nAlternative to setting columnDefs in gridOptions.\nMust be set via JavaScript (not as an attribute).",
              "fieldName": "columnDefs"
            },
            {
              "name": "rowData",
              "type": {
                "text": "T[] | undefined"
              },
              "description": "Row data for client-side row model.\nMust be set via JavaScript (not as an attribute).",
              "fieldName": "rowData"
            },
            {
              "name": "datasource",
              "type": {
                "text": "IDatasource | undefined"
              },
              "description": "Datasource for infinite scroll row model.\nMust be set via JavaScript (not as an attribute).",
              "fieldName": "datasource"
            },
            {
              "name": "height",
              "type": {
                "text": "string"
              },
              "default": "'400px'",
              "description": "Height of the grid in pixels or CSS units.\nDefault: 400px",
              "fieldName": "height"
            },
            {
              "name": "row-model-type",
              "type": {
                "text": "'clientSide' | 'infinite' | 'serverSide'"
              },
              "default": "'clientSide'",
              "description": "Row model type: 'clientSide', 'infinite', or 'serverSide'.\nDefault: 'clientSide'",
              "fieldName": "rowModelType"
            },
            {
              "name": "theme",
              "type": {
                "text": "string"
              },
              "default": "'alpine'",
              "description": "Theme for AG Grid: 'alpine', 'alpine-dark', 'balham', 'balham-dark', 'material', 'quartz'.\nDefault: 'alpine'",
              "fieldName": "theme"
            },
            {
              "name": "show-loading",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Whether to show loading overlay when data is being fetched.\nDefault: false",
              "fieldName": "showLoading"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "A flexible data grid component built on AG Grid with support for various data sources and row models.",
          "tagNameWithoutPrefix": "data-grid",
          "tagName": "terra-data-grid",
          "customElement": true,
          "jsDoc": "/**\n * @summary A flexible data grid component built on AG Grid with support for various data sources and row models.\n * @documentation https://terra-ui.netlify.app/components/data-grid\n * @status experimental\n * @since 1.0\n *\n * @dependency ag-grid-community\n * @dependency terra-loader\n *\n * @csspart base - The component's base wrapper.\n * @csspart grid - The AG Grid container element.\n * @csspart loading - The loading overlay container.\n *\n * @cssproperty --terra-data-grid-height - The height of the grid (default: 400px).\n * @cssproperty --terra-data-grid-border-color - Border color using HDS tokens.\n * @cssproperty --terra-data-grid-header-background - Header background color.\n *\n * @event terra-grid-ready - Emitted when the grid is initialized and ready.\n * @event terra-selection-changed - Emitted when row selection changes.\n * @event terra-sort-changed - Emitted when column sorting changes.\n * @event terra-filter-changed - Emitted when column filters change.\n * @event terra-row-clicked - Emitted when a row is clicked.\n * @event terra-row-double-clicked - Emitted when a row is double-clicked.\n * @event terra-cell-clicked - Emitted when a cell is clicked.\n * @event terra-cell-value-changed - Emitted when a cell value is edited.\n */",
          "documentation": "https://terra-ui.netlify.app/components/data-grid",
          "status": "experimental",
          "since": "1.0",
          "dependencies": [
            "ag-grid-community",
            "terra-loader"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraDataGrid",
            "module": "components/data-grid/data-grid.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/data-rods/data-rods.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraDataRods",
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-time-series': TerraTimeSeries,\n        'terra-date-range-slider': TerraDateRangeSlider,\n        'terra-spatial-picker': TerraSpatialPicker,\n        'terra-variable-combobox': TerraVariableCombobox,\n    }"
            },
            {
              "kind": "field",
              "name": "variableEntryId",
              "type": {
                "text": "string | undefined"
              },
              "description": "a variable entry ID (ex: GPM_3IMERGHH_06_precipitationCal)",
              "attribute": "variable-entry-id",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "collection",
              "type": {
                "text": "string | undefined"
              },
              "description": "a collection entry id (ex: GPM_3IMERGHH_06)\nonly required if you don't include a variableEntryId",
              "attribute": "collection",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "variable",
              "type": {
                "text": "string | undefined"
              },
              "description": "a variable short name to plot (ex: precipitationCal)\nonly required if you don't include a variableEntryId",
              "attribute": "variable",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "startDate",
              "type": {
                "text": "string | undefined"
              },
              "description": "The start date for the time series plot. (ex: 2021-01-01)",
              "attribute": "start-date",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "endDate",
              "type": {
                "text": "string | undefined"
              },
              "description": "The end date for the time series plot. (ex: 2021-01-01)",
              "attribute": "end-date",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "location",
              "type": {
                "text": "string | undefined"
              },
              "description": "The point location in \"lat,lon\" format.",
              "attribute": "location",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "bearerToken",
              "type": {
                "text": "string"
              },
              "description": "The token to be used for authentication with remote servers.\nThe component provides the header \"Authorization: Bearer\" (the request header and authentication scheme).\nThe property's value will be inserted after \"Bearer\" (the authentication scheme).",
              "attribute": "bearer-token"
            },
            {
              "kind": "field",
              "name": "catalogVariable",
              "type": {
                "text": "Variable"
              }
            },
            {
              "kind": "field",
              "name": "dateErrorMessage",
              "type": {
                "text": "string | undefined"
              },
              "privacy": "private",
              "description": "anytime user selects invalid dates"
            },
            {
              "kind": "field",
              "name": "lastChanged",
              "type": {
                "text": "LastChanged | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "spatialWarningMessage",
              "type": {
                "text": "string | undefined"
              },
              "privacy": "private",
              "description": "add a warning state"
            },
            {
              "kind": "field",
              "name": "_fetchVariableTask"
            },
            {
              "kind": "field",
              "name": "variableBoundingBox",
              "readonly": true
            },
            {
              "kind": "method",
              "name": "compatibilityWarning",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "#handleDateRangeSliderChangeEvent",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "TerraDateRangeChangeEvent"
                  }
                }
              ],
              "description": "anytime the date range slider changes, update the start and end date"
            },
            {
              "kind": "method",
              "name": "#handleInvalidDateSelection",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "CustomEvent"
                  }
                }
              ],
              "description": "anytime user selects invalid dates outside variable date range"
            },
            {
              "kind": "method",
              "name": "#handleVariableChange",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "TerraComboboxChangeEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#handleMapChange",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "TerraMapChangeEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#handleTimeSeriesDateRangeChange",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "CustomEvent"
                  }
                }
              ]
            }
          ],
          "attributes": [
            {
              "name": "variable-entry-id",
              "type": {
                "text": "string | undefined"
              },
              "description": "a variable entry ID (ex: GPM_3IMERGHH_06_precipitationCal)",
              "fieldName": "variableEntryId"
            },
            {
              "name": "collection",
              "type": {
                "text": "string | undefined"
              },
              "description": "a collection entry id (ex: GPM_3IMERGHH_06)\nonly required if you don't include a variableEntryId",
              "fieldName": "collection"
            },
            {
              "name": "variable",
              "type": {
                "text": "string | undefined"
              },
              "description": "a variable short name to plot (ex: precipitationCal)\nonly required if you don't include a variableEntryId",
              "fieldName": "variable"
            },
            {
              "name": "start-date",
              "type": {
                "text": "string | undefined"
              },
              "description": "The start date for the time series plot. (ex: 2021-01-01)",
              "fieldName": "startDate"
            },
            {
              "name": "end-date",
              "type": {
                "text": "string | undefined"
              },
              "description": "The end date for the time series plot. (ex: 2021-01-01)",
              "fieldName": "endDate"
            },
            {
              "name": "location",
              "type": {
                "text": "string | undefined"
              },
              "description": "The point location in \"lat,lon\" format.",
              "fieldName": "location"
            },
            {
              "name": "bearer-token",
              "type": {
                "text": "string"
              },
              "description": "The token to be used for authentication with remote servers.\nThe component provides the header \"Authorization: Bearer\" (the request header and authentication scheme).\nThe property's value will be inserted after \"Bearer\" (the authentication scheme).",
              "fieldName": "bearerToken"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "tagNameWithoutPrefix": "data-rods",
          "tagName": "terra-data-rods",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraDataRods",
            "module": "components/data-rods/data-rods.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/data-subsetter/data-subsetter.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraDataSubsetter",
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "Record<string, typeof TerraElement>"
              },
              "static": true,
              "default": "{\n        'terra-accordion': TerraAccordion,\n        'terra-date-picker': TerraDatePicker,\n        'terra-icon': TerraIcon,\n        'terra-input': TerraInput,\n        'terra-spatial-picker': TerraSpatialPicker,\n        'terra-login': TerraLogin,\n        'terra-loader': TerraLoader,\n        'terra-data-access': TerraDataAccess,\n        'terra-dialog': TerraDialog,\n        'terra-dropdown': TerraDropdown,\n        'terra-menu': TerraMenu,\n        'terra-menu-item': TerraMenuItem,\n        'terra-button': TerraButton,\n        'terra-alert': TerraAlert,\n    }"
            },
            {
              "kind": "field",
              "name": "collectionEntryId",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "collection-entry-id",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "shortName",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "short-name",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "version",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "version",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "showCollectionSearch",
              "type": {
                "text": "boolean | undefined"
              },
              "default": "true",
              "attribute": "show-collection-search",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "showHistoryPanel",
              "type": {
                "text": "boolean | undefined"
              },
              "default": "true",
              "attribute": "show-history-panel",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "jobId",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "job-id",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "bearerToken",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "bearer-token"
            },
            {
              "kind": "field",
              "name": "dialog",
              "type": {
                "text": "string | undefined"
              },
              "description": "Optional dialog ID. When set, the subsetter will render inside a dialog with this ID.",
              "attribute": "dialog",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "isHistoryView",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "is-history-view",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "collectionWithServices",
              "type": {
                "text": "CollectionWithAvailableServices | undefined"
              }
            },
            {
              "kind": "field",
              "name": "variableDetails",
              "type": {
                "text": "Array<VariableDetails> | undefined"
              }
            },
            {
              "kind": "field",
              "name": "selectedVariables",
              "type": {
                "text": "Variable[]"
              },
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "expandedVariableGroups",
              "type": {
                "text": "Set<string>"
              },
              "default": "new Set()"
            },
            {
              "kind": "field",
              "name": "variableFilterText",
              "type": {
                "text": "string"
              },
              "default": "''"
            },
            {
              "kind": "field",
              "name": "touchedFields",
              "type": {
                "text": "Set<string>"
              },
              "default": "new Set()"
            },
            {
              "kind": "field",
              "name": "spatialSelection",
              "type": {
                "text": "BoundingBox | LatLng | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "selectedDateRange",
              "type": {
                "text": "{ startDate: string | null; endDate: string | null }"
              },
              "default": "{\n        startDate: null,\n        endDate: null,\n    }"
            },
            {
              "kind": "field",
              "name": "selectedFormat",
              "type": {
                "text": "string"
              },
              "default": "defaultSubsetFileMimeType"
            },
            {
              "kind": "field",
              "name": "cancelingGetData",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "selectedTab",
              "type": {
                "text": "'web-links' | 'selected-params'"
              },
              "default": "'web-links'"
            },
            {
              "kind": "field",
              "name": "refineParameters",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "collectionSearchType",
              "type": {
                "text": "'collection' | 'variable' | 'all'"
              },
              "default": "'all'"
            },
            {
              "kind": "field",
              "name": "collectionSearchQuery",
              "type": {
                "text": "string | undefined"
              }
            },
            {
              "kind": "field",
              "name": "collectionSearchLoading",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "collectionSearchResults",
              "type": {
                "text": "Array<CmrSearchResult> | undefined"
              }
            },
            {
              "kind": "field",
              "name": "collectionLoading",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "collectionAccordionOpen",
              "type": {
                "text": "boolean"
              },
              "default": "true"
            },
            {
              "kind": "field",
              "name": "dataAccessMode",
              "type": {
                "text": "'original' | 'subset'"
              },
              "default": "'original'"
            },
            {
              "kind": "field",
              "name": "validationError",
              "type": {
                "text": "string | undefined"
              }
            },
            {
              "kind": "field",
              "name": "granuleMinDate",
              "type": {
                "text": "string | undefined"
              }
            },
            {
              "kind": "field",
              "name": "granuleMaxDate",
              "type": {
                "text": "string | undefined"
              }
            },
            {
              "kind": "field",
              "name": "giovanniConfiguredVariables",
              "type": {
                "text": "Set<string> | undefined"
              }
            },
            {
              "kind": "field",
              "name": "spatialPicker",
              "type": {
                "text": "TerraSpatialPicker"
              }
            },
            {
              "kind": "field",
              "name": "dialogElement",
              "type": {
                "text": "TerraDialog | undefined"
              }
            },
            {
              "kind": "field",
              "name": "controller",
              "default": "new DataSubsetterController(this)"
            },
            {
              "kind": "field",
              "name": "#authController",
              "privacy": "private",
              "default": "new AuthController(this)"
            },
            {
              "kind": "method",
              "name": "jobIdChanged"
            },
            {
              "kind": "method",
              "name": "shortNameAndVersionChanged"
            },
            {
              "kind": "method",
              "name": "collectionEntryIdChanged"
            },
            {
              "kind": "method",
              "name": "collectionChanged"
            },
            {
              "kind": "method",
              "name": "granuleDatesChanged"
            },
            {
              "kind": "method",
              "name": "selectedFormatChanged"
            },
            {
              "kind": "method",
              "name": "showDialog"
            },
            {
              "kind": "method",
              "name": "#renderFooterForDialog"
            },
            {
              "kind": "method",
              "name": "minimizeDialog"
            },
            {
              "kind": "method",
              "name": "#renderSizeInfo",
              "parameters": [
                {
                  "name": "estimates",
                  "type": {
                    "text": "{ days: number; links: number }"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#renderSubsetOptions"
            },
            {
              "kind": "method",
              "name": "#renderSearchForCollection"
            },
            {
              "kind": "method",
              "name": "handleCollectionSearch",
              "parameters": [
                {
                  "name": "searchTerm",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#renderOutputFormatSelection"
            },
            {
              "kind": "method",
              "name": "#renderDateRangeSelection"
            },
            {
              "kind": "field",
              "name": "#handleDateChange",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#resetDateRangeSelection",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#resetFormatSelection",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "#getCollectionDateRange"
            },
            {
              "kind": "method",
              "name": "#handleRegionAccordionToggle"
            },
            {
              "kind": "method",
              "name": "isLatLng",
              "return": {
                "type": {
                  "text": "value is LatLng"
                }
              },
              "parameters": [
                {
                  "name": "value",
                  "type": {
                    "text": "any"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "isLatLngBounds",
              "return": {
                "type": {
                  "text": "value is LatLngBounds"
                }
              },
              "parameters": [
                {
                  "name": "value",
                  "type": {
                    "text": "any"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#renderSpatialSelection"
            },
            {
              "kind": "field",
              "name": "#handleSpatialChange",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#resetSpatialSelection",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "#renderVariableSelection"
            },
            {
              "kind": "method",
              "name": "#filterVariableTree",
              "return": {
                "type": {
                  "text": "Record<string, any>"
                }
              },
              "parameters": [
                {
                  "name": "tree",
                  "type": {
                    "text": "Record<string, any>"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#handleVariableFilterChange"
            },
            {
              "kind": "method",
              "name": "#buildVariableTree",
              "return": {
                "type": {
                  "text": "Record<string, any>"
                }
              },
              "parameters": [
                {
                  "name": "variables",
                  "type": {
                    "text": "Variable[]"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#renderVariableTree",
              "return": {
                "type": {
                  "text": "unknown"
                }
              },
              "parameters": [
                {
                  "name": "node",
                  "type": {
                    "text": "Record<string, any>"
                  }
                },
                {
                  "name": "path",
                  "type": {
                    "text": "string[]"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#getAllGroupPaths",
              "return": {
                "type": {
                  "text": "string[]"
                }
              },
              "parameters": [
                {
                  "name": "node",
                  "type": {
                    "text": "Record<string, any>"
                  }
                },
                {
                  "name": "path",
                  "default": "[]",
                  "type": {
                    "text": "string[]"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#toggleGroupExpand",
              "parameters": [
                {
                  "name": "groupPath",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#toggleExpandCollapseAll",
              "parameters": [
                {
                  "name": "tree",
                  "type": {
                    "text": "Record<string, any>"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#toggleVariableSelection",
              "parameters": [
                {
                  "name": "e",
                  "type": {
                    "text": "Event"
                  }
                },
                {
                  "name": "variable",
                  "type": {
                    "text": "Variable"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#markFieldTouched",
              "parameters": [
                {
                  "name": "field",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "#resetVariableSelection",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "#renderJobStatus"
            },
            {
              "kind": "method",
              "name": "#renderSelectedParams"
            },
            {
              "kind": "method",
              "name": "#cancelJob"
            },
            {
              "kind": "method",
              "name": "#getData"
            },
            {
              "kind": "method",
              "name": "#touchAllFields"
            },
            {
              "kind": "method",
              "name": "#numberOfFilesFoundEstimate"
            },
            {
              "kind": "method",
              "name": "#getDocumentationLinks"
            },
            {
              "kind": "method",
              "name": "#getDataLinks"
            },
            {
              "kind": "method",
              "name": "#hasAtLeastOneSubsetOption"
            },
            {
              "kind": "method",
              "name": "#hasSpatialSubset"
            },
            {
              "kind": "method",
              "name": "#renderJobMessage"
            },
            {
              "kind": "method",
              "name": "#getJobMessageText"
            },
            {
              "kind": "method",
              "name": "#estimateJobSize"
            },
            {
              "kind": "method",
              "name": "#refineParameters"
            },
            {
              "kind": "method",
              "name": "#backToSubsetOptions"
            },
            {
              "kind": "method",
              "name": "#viewRunningJob"
            },
            {
              "kind": "method",
              "name": "#handleDownloadSelect",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "TerraSelectEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#downloadLinksAsTxt",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#downloadPythonScript",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#downloadEarthdataDownload",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#handleJupyterNotebookClick"
            },
            {
              "kind": "method",
              "name": "renderHistoryPanel"
            },
            {
              "kind": "method",
              "name": "#renderAvailableTemporalRangeSection"
            },
            {
              "kind": "method",
              "name": "#renderAvailableSpatialRangeSection"
            },
            {
              "kind": "method",
              "name": "#renderDataAccessModeSelection"
            },
            {
              "kind": "method",
              "name": "#isGiovanniFormat",
              "return": {
                "type": {
                  "text": "boolean"
                }
              }
            },
            {
              "kind": "method",
              "name": "#getGiovanniValidationError",
              "return": {
                "type": {
                  "text": "string | null"
                }
              }
            }
          ],
          "events": [
            {
              "description": "called when a subset job enters a final state (e.g. successful, failed, completed_with_errors)",
              "name": "terra-subset-job-complete",
              "reactName": "onTerraSubsetJobComplete",
              "eventName": "TerraSubsetJobCompleteEvent"
            }
          ],
          "attributes": [
            {
              "name": "collection-entry-id",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "collectionEntryId"
            },
            {
              "name": "short-name",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "shortName"
            },
            {
              "name": "version",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "version"
            },
            {
              "name": "show-collection-search",
              "type": {
                "text": "boolean | undefined"
              },
              "default": "true",
              "fieldName": "showCollectionSearch"
            },
            {
              "name": "show-history-panel",
              "type": {
                "text": "boolean | undefined"
              },
              "default": "true",
              "fieldName": "showHistoryPanel"
            },
            {
              "name": "job-id",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "jobId"
            },
            {
              "name": "bearer-token",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "bearerToken"
            },
            {
              "name": "dialog",
              "type": {
                "text": "string | undefined"
              },
              "description": "Optional dialog ID. When set, the subsetter will render inside a dialog with this ID.",
              "fieldName": "dialog"
            },
            {
              "name": "is-history-view",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "isHistoryView"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Easily allow users to select, subset, and download NASA Earth science data collections with spatial, temporal, and variable filters.",
          "tagNameWithoutPrefix": "data-subsetter",
          "tagName": "terra-data-subsetter",
          "customElement": true,
          "jsDoc": "/**\n * @summary Easily allow users to select, subset, and download NASA Earth science data collections with spatial, temporal, and variable filters.\n * @documentation https://terra-ui.netlify.app/components/data-subsetter\n * @status stable\n * @since 1.0\n *\n * @dependency terra-accordion\n * @dependency terra-date-picker\n * @dependency terra-icon\n * @dependency terra-spatial-picker\n *\n * @event terra-subset-job-complete - called when a subset job enters a final state (e.g. successful, failed, completed_with_errors)\n */",
          "documentation": "https://terra-ui.netlify.app/components/data-subsetter",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-accordion",
            "terra-date-picker",
            "terra-icon",
            "terra-spatial-picker"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraDataSubsetter",
            "module": "components/data-subsetter/data-subsetter.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/data-subsetter-history/data-subsetter-history.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraDataSubsetterHistory",
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "Record<string, typeof TerraElement>"
              },
              "static": true,
              "default": "{\n        'terra-icon': TerraIcon,\n        'terra-data-subsetter': TerraDataSubsetter,\n        'terra-dialog': TerraDialog,\n    }"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "'History'",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "bearerToken",
              "type": {
                "text": "string"
              },
              "attribute": "bearer-token"
            },
            {
              "kind": "field",
              "name": "alwaysShow",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "description": "if a user has never done a subset request, by default they don't see the history panel at all\nthis prop allows you to override that behavior and always show the history panel",
              "attribute": "always-show"
            },
            {
              "kind": "field",
              "name": "collapsed",
              "type": {
                "text": "boolean"
              },
              "default": "true"
            },
            {
              "kind": "field",
              "name": "selectedJob",
              "type": {
                "text": "string | undefined"
              }
            },
            {
              "kind": "field",
              "name": "selectedCollectionEntryId",
              "type": {
                "text": "string | undefined"
              }
            },
            {
              "kind": "field",
              "name": "hideCancelled",
              "type": {
                "text": "boolean"
              },
              "default": "true"
            },
            {
              "kind": "field",
              "name": "dialog",
              "type": {
                "text": "TerraDialog"
              }
            },
            {
              "kind": "field",
              "name": "subsetter",
              "type": {
                "text": "TerraDataSubsetter"
              }
            },
            {
              "kind": "field",
              "name": "#controller",
              "privacy": "private",
              "default": "new DataSubsetterHistoryController(this)"
            },
            {
              "kind": "field",
              "name": "_authController",
              "default": "new AuthController(this)"
            },
            {
              "kind": "method",
              "name": "toggleCollapsed",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "#renderHistoryItems",
              "parameters": [
                {
                  "name": "subsetJobs",
                  "type": {
                    "text": "SubsetJobs"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#renderSubsetterHistoryItem",
              "parameters": [
                {
                  "name": "job",
                  "type": {
                    "text": "SubsetJobStatus"
                  }
                },
                {
                  "name": "labels",
                  "type": {
                    "text": "Record<string, unknown>"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#handleHistoryItemClick",
              "parameters": [
                {
                  "name": "job",
                  "type": {
                    "text": "SubsetJobStatus"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#parseLabelsAsJson",
              "return": {
                "type": {
                  "text": "{ [k: string]: unknown }"
                }
              },
              "parameters": [
                {
                  "name": "labels",
                  "type": {
                    "text": "string[]"
                  }
                }
              ]
            }
          ],
          "attributes": [
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "'History'",
              "fieldName": "label"
            },
            {
              "name": "bearer-token",
              "type": {
                "text": "string"
              },
              "fieldName": "bearerToken"
            },
            {
              "name": "always-show",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "description": "if a user has never done a subset request, by default they don't see the history panel at all\nthis prop allows you to override that behavior and always show the history panel",
              "fieldName": "alwaysShow"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Shows a floating panel with a user's recent data subset requests and their status, with quick access to results and re-submission.",
          "tagNameWithoutPrefix": "data-subsetter-history",
          "tagName": "terra-data-subsetter-history",
          "customElement": true,
          "jsDoc": "/**\n * @summary Shows a floating panel with a user's recent data subset requests and their status, with quick access to results and re-submission.\n * @documentation https://terra-ui.netlify.app/components/data-subsetter-history\n * @status stable\n * @since 1.0\n *\n * @dependency terra-icon\n * @dependency terra-data-subsetter\n * @dependency terra-dialog\n */",
          "documentation": "https://terra-ui.netlify.app/components/data-subsetter-history",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-icon",
            "terra-data-subsetter",
            "terra-dialog"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraDataSubsetterHistory",
            "module": "components/data-subsetter-history/data-subsetter-history.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/date-picker/date-picker.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraDatePicker",
          "cssProperties": [
            {
              "description": "All date picker design tokens from horizon.css are supported.",
              "name": "--terra-date-picker-*"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The date input element (terra-input).",
              "name": "input"
            },
            {
              "description": "The calendar dropdown.",
              "name": "calendar"
            },
            {
              "description": "The preset ranges sidebar.",
              "name": "sidebar"
            }
          ],
          "slots": [
            {
              "description": "The default slot.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-button': TerraButton,\n        'terra-input': TerraInput,\n        'terra-dropdown': TerraDropdown,\n    }"
            },
            {
              "kind": "field",
              "name": "id",
              "type": {
                "text": "string"
              },
              "attribute": "id"
            },
            {
              "kind": "field",
              "name": "range",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "range",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "minDate",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "min-date",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "maxDate",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "max-date",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "startDate",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "start-date",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "endDate",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "end-date",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "hideLabel",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "hide-label"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "'Select Date'",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "startHelpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "start-help-text"
            },
            {
              "kind": "field",
              "name": "endHelpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "end-help-text"
            },
            {
              "kind": "field",
              "name": "startLabel",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "start-label"
            },
            {
              "kind": "field",
              "name": "endLabel",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "end-label"
            },
            {
              "kind": "field",
              "name": "showPresets",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "show-presets"
            },
            {
              "kind": "field",
              "name": "presets",
              "type": {
                "text": "PresetRange[]"
              },
              "default": "[]",
              "attribute": "presets"
            },
            {
              "kind": "field",
              "name": "enableTime",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "enable-time"
            },
            {
              "kind": "field",
              "name": "displayFormat",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "display-format"
            },
            {
              "kind": "field",
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "inline"
            },
            {
              "kind": "field",
              "name": "splitInputs",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "split-inputs"
            },
            {
              "kind": "field",
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "'Select Date'",
              "attribute": "placeholder"
            },
            {
              "kind": "field",
              "name": "startPlaceholder",
              "type": {
                "text": "string"
              },
              "default": "'Start Date'",
              "attribute": "startPlaceholder"
            },
            {
              "kind": "field",
              "name": "endPlaceholder",
              "type": {
                "text": "string"
              },
              "default": "'End Date'",
              "attribute": "endPlaceholder"
            },
            {
              "kind": "field",
              "name": "role",
              "type": {
                "text": "string | null"
              },
              "default": "'group'",
              "description": "The ARIA role for the button. Defaults to 'group'.",
              "attribute": "role",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "ariaLabel",
              "type": {
                "text": "string | null"
              },
              "default": "'Date picker'",
              "description": "The ARIA label for the date picker. Defaults to 'Date picker'.",
              "attribute": "aria-label",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "hideClearAll",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "hideClearAll"
            },
            {
              "kind": "field",
              "name": "clearAllLabel",
              "type": {
                "text": "string"
              },
              "default": "'Clear Dates'",
              "attribute": "clearAllLabel"
            },
            {
              "kind": "field",
              "name": "useEndOfDay",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "attribute": "use-end-of-day"
            },
            {
              "kind": "field",
              "name": "isOpen",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "leftMonth",
              "type": {
                "text": "Date"
              },
              "default": "new Date()"
            },
            {
              "kind": "field",
              "name": "rightMonth",
              "type": {
                "text": "Date"
              },
              "default": "new Date()"
            },
            {
              "kind": "field",
              "name": "selectedStart",
              "type": {
                "text": "Date | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "selectedEnd",
              "type": {
                "text": "Date | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "hoverDate",
              "type": {
                "text": "Date | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "isSelectingRange",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "showLeftMonthDropdown",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "showRightMonthDropdown",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "startHour",
              "type": {
                "text": "number"
              },
              "default": "0"
            },
            {
              "kind": "field",
              "name": "startMinute",
              "type": {
                "text": "number"
              },
              "default": "0"
            },
            {
              "kind": "field",
              "name": "startSecond",
              "type": {
                "text": "number"
              },
              "default": "0"
            },
            {
              "kind": "field",
              "name": "endHour",
              "type": {
                "text": "number"
              },
              "default": "23"
            },
            {
              "kind": "field",
              "name": "endMinute",
              "type": {
                "text": "number"
              },
              "default": "59"
            },
            {
              "kind": "field",
              "name": "endSecond",
              "type": {
                "text": "number"
              },
              "default": "59"
            },
            {
              "kind": "method",
              "name": "getDefaultEndHour",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "getDefaultEndMinute",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "getDefaultEndSecond",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "selectedDates",
              "type": {
                "text": "object"
              },
              "default": "{\n        startDate: new Date().toString(),\n        endDate: new Date().toString(),\n    }"
            },
            {
              "kind": "field",
              "name": "dropdown",
              "type": {
                "text": "HTMLElement"
              }
            },
            {
              "kind": "field",
              "name": "dropdownRef"
            },
            {
              "kind": "field",
              "name": "DAYS",
              "type": {
                "text": "array"
              },
              "privacy": "private",
              "readonly": true,
              "default": "['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa']"
            },
            {
              "kind": "field",
              "name": "MONTHS",
              "type": {
                "text": "array"
              },
              "privacy": "private",
              "readonly": true,
              "default": "[\n        'January',\n        'February',\n        'March',\n        'April',\n        'May',\n        'June',\n        'July',\n        'August',\n        'September',\n        'October',\n        'November',\n        'December',\n    ]"
            },
            {
              "kind": "method",
              "name": "parseLocalDate",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "Date"
                }
              },
              "parameters": [
                {
                  "name": "dateString",
                  "type": {
                    "text": "string"
                  }
                }
              ],
              "description": "Parse a date string (YYYY-MM-DD or ISO datetime) as a local date, avoiding timezone issues.\nWhen you do `new Date(\"2024-03-20\")`, JavaScript interprets it as UTC midnight,\nwhich can cause off-by-one day errors when using getDate() in local timezone.\nThis function parses the date as a local date instead.\n\nWhen enableTime is true, datetime strings are parsed as UTC to match API min/max dates."
            },
            {
              "kind": "method",
              "name": "isSameMonth",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "boolean"
                }
              },
              "parameters": [
                {
                  "name": "date1",
                  "type": {
                    "text": "Date"
                  }
                },
                {
                  "name": "date2",
                  "type": {
                    "text": "Date"
                  }
                }
              ],
              "description": "Check if two dates are in the same calendar month and year"
            },
            {
              "kind": "method",
              "name": "isDateInMonth",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "boolean"
                }
              },
              "parameters": [
                {
                  "name": "date",
                  "type": {
                    "text": "Date"
                  }
                },
                {
                  "name": "monthDate",
                  "type": {
                    "text": "Date"
                  }
                }
              ],
              "description": "Check if a date's month/year matches a given month Date"
            },
            {
              "kind": "method",
              "name": "getBounds",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "{ min?: Date; max?: Date }"
                }
              }
            },
            {
              "kind": "method",
              "name": "doesRangeOverlapBounds",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "boolean"
                }
              },
              "parameters": [
                {
                  "name": "range",
                  "type": {
                    "text": "DateRange"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "isPresetWithinBounds",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "boolean"
                }
              },
              "parameters": [
                {
                  "name": "range",
                  "type": {
                    "text": "DateRange"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "filteredPresets",
              "type": {
                "text": "PresetRange[]"
              },
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "method",
              "name": "open"
            },
            {
              "kind": "method",
              "name": "close"
            },
            {
              "kind": "method",
              "name": "clear",
              "description": "Clears the selected date(s) and resets the date picker to its initial state."
            },
            {
              "kind": "method",
              "name": "setOpen",
              "parameters": [
                {
                  "name": "open",
                  "type": {
                    "text": "boolean"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "initializePresets",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleDropdownShow",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleDropdownHide",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "formatDisplayDate",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "string"
                }
              },
              "parameters": [
                {
                  "name": "date",
                  "type": {
                    "text": "Date | null"
                  }
                },
                {
                  "name": "isStart",
                  "default": "true",
                  "type": {
                    "text": "boolean"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "getDisplayValue",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "string"
                }
              }
            },
            {
              "kind": "method",
              "name": "getStartDateDisplayValue",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "string"
                }
              }
            },
            {
              "kind": "method",
              "name": "getEndDateDisplayValue",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "string"
                }
              }
            },
            {
              "kind": "method",
              "name": "parseAndFormatDate",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "string | null"
                }
              },
              "parameters": [
                {
                  "name": "dateStr",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "clearInputValidation",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "formatDateForError",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "string"
                }
              },
              "parameters": [
                {
                  "name": "dateString",
                  "type": {
                    "text": "string"
                  }
                }
              ],
              "description": "Format a date string for display in error messages\nWhen time is disabled, only show the date portion (YYYY-MM-DD)"
            },
            {
              "kind": "method",
              "name": "setInputValidationError",
              "privacy": "private",
              "parameters": [
                {
                  "name": "input",
                  "type": {
                    "text": "TerraInput"
                  }
                },
                {
                  "name": "message",
                  "type": {
                    "text": "string"
                  }
                }
              ],
              "description": "Set validation error on input and emit invalid event"
            },
            {
              "kind": "method",
              "name": "handleInputBlur",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleStartInputBlur",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleEndInputBlur",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "updateMonthViews",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleKeydown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "previousMonth",
              "privacy": "private",
              "parameters": [
                {
                  "name": "isLeft",
                  "type": {
                    "text": "boolean"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "nextMonth",
              "privacy": "private",
              "parameters": [
                {
                  "name": "isLeft",
                  "type": {
                    "text": "boolean"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "toggleMonthDropdown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "isLeft",
                  "type": {
                    "text": "boolean"
                  }
                },
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "selectMonth",
              "privacy": "private",
              "parameters": [
                {
                  "name": "month",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "isLeft",
                  "type": {
                    "text": "boolean"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "changeYear",
              "privacy": "private",
              "parameters": [
                {
                  "name": "delta",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "isLeft",
                  "type": {
                    "text": "boolean"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleYearInput",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                },
                {
                  "name": "isLeft",
                  "type": {
                    "text": "boolean"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "getDaysInMonth",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "Date[]"
                }
              },
              "parameters": [
                {
                  "name": "date",
                  "type": {
                    "text": "Date"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "isSameDay",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "boolean"
                }
              },
              "parameters": [
                {
                  "name": "date1",
                  "type": {
                    "text": "Date | null"
                  }
                },
                {
                  "name": "date2",
                  "type": {
                    "text": "Date | null"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "isInRange",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "boolean"
                }
              },
              "parameters": [
                {
                  "name": "date",
                  "type": {
                    "text": "Date"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "isInHoverRange",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "boolean"
                }
              },
              "parameters": [
                {
                  "name": "date",
                  "type": {
                    "text": "Date"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "isDisabled",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "boolean"
                }
              },
              "parameters": [
                {
                  "name": "date",
                  "type": {
                    "text": "Date"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "selectDate",
              "parameters": [
                {
                  "name": "date",
                  "type": {
                    "text": "Date"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleDateHover",
              "privacy": "private",
              "parameters": [
                {
                  "name": "date",
                  "type": {
                    "text": "Date"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "selectPreset",
              "privacy": "private",
              "parameters": [
                {
                  "name": "preset",
                  "type": {
                    "text": "PresetRange"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "emitChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "initializeTimeFromDate",
              "privacy": "private",
              "parameters": [
                {
                  "name": "date",
                  "type": {
                    "text": "Date"
                  }
                },
                {
                  "name": "isStart",
                  "type": {
                    "text": "boolean"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "changeTime",
              "privacy": "private",
              "parameters": [
                {
                  "name": "type",
                  "type": {
                    "text": "'hour' | 'minute' | 'second'"
                  }
                },
                {
                  "name": "delta",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "isStart",
                  "type": {
                    "text": "boolean"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleTimeInput",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                },
                {
                  "name": "type",
                  "type": {
                    "text": "'hour' | 'minute' | 'second'"
                  }
                },
                {
                  "name": "isStart",
                  "type": {
                    "text": "boolean"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "renderCalendar",
              "privacy": "private",
              "parameters": [
                {
                  "name": "month",
                  "type": {
                    "text": "Date"
                  }
                },
                {
                  "name": "isLeft",
                  "default": "true",
                  "type": {
                    "text": "boolean"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "renderTimePicker",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "renderCalendarIcon",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "renderCalendarContent",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "description": "Emitted when a date selection is made or changed.",
              "name": "terra-date-range-change",
              "reactName": "onTerraDateRangeChange",
              "eventName": "TerraDateRangeChangeEvent"
            }
          ],
          "attributes": [
            {
              "name": "id",
              "type": {
                "text": "string"
              },
              "fieldName": "id"
            },
            {
              "name": "range",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "range"
            },
            {
              "name": "min-date",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "minDate"
            },
            {
              "name": "max-date",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "maxDate"
            },
            {
              "name": "start-date",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "startDate"
            },
            {
              "name": "end-date",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "endDate"
            },
            {
              "name": "hide-label",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "hideLabel"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "'Select Date'",
              "fieldName": "label"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "helpText"
            },
            {
              "name": "start-help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "startHelpText"
            },
            {
              "name": "end-help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "endHelpText"
            },
            {
              "name": "start-label",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "startLabel"
            },
            {
              "name": "end-label",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "endLabel"
            },
            {
              "name": "show-presets",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "showPresets"
            },
            {
              "name": "presets",
              "type": {
                "text": "PresetRange[]"
              },
              "default": "[]",
              "fieldName": "presets"
            },
            {
              "name": "enable-time",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "enableTime"
            },
            {
              "name": "display-format",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "displayFormat"
            },
            {
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "inline"
            },
            {
              "name": "split-inputs",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "splitInputs"
            },
            {
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "'Select Date'",
              "fieldName": "placeholder"
            },
            {
              "name": "startPlaceholder",
              "type": {
                "text": "string"
              },
              "default": "'Start Date'",
              "fieldName": "startPlaceholder"
            },
            {
              "name": "endPlaceholder",
              "type": {
                "text": "string"
              },
              "default": "'End Date'",
              "fieldName": "endPlaceholder"
            },
            {
              "name": "role",
              "type": {
                "text": "string | null"
              },
              "default": "'group'",
              "description": "The ARIA role for the button. Defaults to 'group'.",
              "fieldName": "role"
            },
            {
              "name": "aria-label",
              "type": {
                "text": "string | null"
              },
              "default": "'Date picker'",
              "description": "The ARIA label for the date picker. Defaults to 'Date picker'.",
              "fieldName": "ariaLabel"
            },
            {
              "name": "hideClearAll",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "hideClearAll"
            },
            {
              "name": "clearAllLabel",
              "type": {
                "text": "string"
              },
              "default": "'Clear Dates'",
              "fieldName": "clearAllLabel"
            },
            {
              "name": "use-end-of-day",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "fieldName": "useEndOfDay"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "A date picker component that implements the Horizon Design System (HDS) Date Picker patterns. Supports single date selection or date range selection with calendar popup.",
          "tagNameWithoutPrefix": "date-picker",
          "tagName": "terra-date-picker",
          "customElement": true,
          "jsDoc": "/**\n * @summary A date picker component that implements the Horizon Design System (HDS) Date Picker patterns. Supports single date selection or date range selection with calendar popup.\n * @documentation https://terra-ui.netlify.app/components/date-picker\n * @status stable\n * @since 1.0\n *\n * @dependency terra-input\n * @dependency terra-button\n * @dependency terra-dropdown\n *\n * @slot - The default slot.\n *\n * @event terra-date-range-change - Emitted when a date selection is made or changed.\n * @eventDetail { startDate: string, endDate: string } - ISO date strings or YYYY-MM-DD format.\n *\n * @csspart base - The component's base wrapper.\n * @csspart input - The date input element (terra-input).\n * @csspart calendar - The calendar dropdown.\n * @csspart sidebar - The preset ranges sidebar.\n *\n * @cssproperty --terra-date-picker-* - All date picker design tokens from horizon.css are supported.\n */",
          "documentation": "https://terra-ui.netlify.app/components/date-picker",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-input",
            "terra-button",
            "terra-dropdown"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraDatePicker",
            "module": "components/date-picker/date-picker.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/date-range-slider/date-range-slider.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraDateRangeSlider",
          "cssProperties": [
            {
              "description": "An example CSS custom property.",
              "name": "--example"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "slots": [
            {
              "description": "The default slot.",
              "name": ""
            },
            {
              "description": "An example slot.",
              "name": "example"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "slider",
              "type": {
                "text": "HTMLElement & { noUiSlider: API }"
              }
            },
            {
              "kind": "field",
              "name": "timeScale",
              "type": {
                "text": "TimeScale"
              },
              "default": "'daily'",
              "attribute": "time-scale"
            },
            {
              "kind": "field",
              "name": "minDate",
              "type": {
                "text": "string"
              },
              "attribute": "min-date"
            },
            {
              "kind": "field",
              "name": "maxDate",
              "type": {
                "text": "string"
              },
              "attribute": "max-date"
            },
            {
              "kind": "field",
              "name": "startDate",
              "type": {
                "text": "string"
              },
              "description": "The start date for the time series plot.",
              "attribute": "start-date"
            },
            {
              "kind": "field",
              "name": "endDate",
              "type": {
                "text": "string"
              },
              "attribute": "end-date"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "hasPips",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "attribute": "has-pips",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "updateSlider"
            },
            {
              "kind": "method",
              "name": "disabledChanged"
            },
            {
              "kind": "method",
              "name": "renderSlider"
            },
            {
              "kind": "method",
              "name": "renderEmptySlider"
            },
            {
              "kind": "method",
              "name": "_getStep",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_getSliderFormatter",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "Formatter"
                }
              }
            },
            {
              "kind": "method",
              "name": "_formatDate",
              "privacy": "private",
              "parameters": [
                {
                  "name": "date",
                  "type": {
                    "text": "string | number | Date"
                  }
                }
              ]
            }
          ],
          "attributes": [
            {
              "name": "time-scale",
              "type": {
                "text": "TimeScale"
              },
              "default": "'daily'",
              "fieldName": "timeScale"
            },
            {
              "name": "min-date",
              "type": {
                "text": "string"
              },
              "fieldName": "minDate"
            },
            {
              "name": "max-date",
              "type": {
                "text": "string"
              },
              "fieldName": "maxDate"
            },
            {
              "name": "start-date",
              "type": {
                "text": "string"
              },
              "description": "The start date for the time series plot.",
              "fieldName": "startDate"
            },
            {
              "name": "end-date",
              "type": {
                "text": "string"
              },
              "fieldName": "endDate"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "disabled"
            },
            {
              "name": "has-pips",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "fieldName": "hasPips"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Short summary of the component's intended use.",
          "tagNameWithoutPrefix": "date-range-slider",
          "tagName": "terra-date-range-slider",
          "customElement": true,
          "jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://terra-ui.netlify.app/components/date-range-slider\n * @status stable\n * @since 1.0\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
          "documentation": "https://terra-ui.netlify.app/components/date-range-slider",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraDateRangeSlider",
            "module": "components/date-range-slider/date-range-slider.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/dialog/dialog.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraDialog",
          "cssProperties": [
            {
              "description": "The preferred width of the dialog. Defaults to `fit-content` to size based on content. Can be set to a fixed value like `31rem` if needed. Note that the dialog will shrink to accommodate smaller screens.",
              "name": "--width"
            },
            {
              "description": "The amount of padding to use for the header.",
              "name": "--header-spacing"
            },
            {
              "description": "The amount of padding to use for the body.",
              "name": "--body-spacing"
            },
            {
              "description": "The amount of padding to use for the footer.",
              "name": "--footer-spacing"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The overlay that covers the screen behind the dialog.",
              "name": "overlay"
            },
            {
              "description": "The dialog's panel (where the dialog and its content are rendered).",
              "name": "panel"
            },
            {
              "description": "The dialog's header. This element wraps the title and header actions.",
              "name": "header"
            },
            {
              "description": "Optional actions to add to the header. Works best with `<terra-button>`.",
              "name": "header-actions"
            },
            {
              "description": "The dialog's title.",
              "name": "title"
            },
            {
              "description": "The close button, an `<terra-button>`.",
              "name": "close-button"
            },
            {
              "description": "The close button's exported `base` part.",
              "name": "close-button__base"
            },
            {
              "description": "The dialog's body.",
              "name": "body"
            },
            {
              "description": "The dialog's footer.",
              "name": "footer"
            }
          ],
          "slots": [
            {
              "description": "The dialog's main content.",
              "name": ""
            },
            {
              "description": "The dialog's label. Alternatively, you can use the `label` attribute.",
              "name": "label"
            },
            {
              "description": "Optional actions to add to the header. Works best with `<terra-button>`.",
              "name": "header-actions"
            },
            {
              "description": "The dialog's footer, usually one or more buttons representing various options.",
              "name": "footer"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-button': TerraButton,\n        'terra-icon': TerraIcon,\n    }"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'footer')"
            },
            {
              "kind": "field",
              "name": "originalTrigger",
              "type": {
                "text": "HTMLElement | null"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "modal",
              "privacy": "public",
              "default": "new Modal(this)",
              "description": "Exposes the internal modal utility that controls focus trapping. To temporarily disable focus trapping and allow third-party modals spawned from an active Terra modal, call `modal.activateExternal()` when the third-party modal opens. Upon closing, call `modal.deactivateExternal()` to restore Terra's focus trapping."
            },
            {
              "kind": "field",
              "name": "closeWatcher",
              "type": {
                "text": "CloseWatcher | null"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "dialog",
              "type": {
                "text": "HTMLElement"
              }
            },
            {
              "kind": "field",
              "name": "panel",
              "type": {
                "text": "HTMLElement"
              }
            },
            {
              "kind": "field",
              "name": "overlay",
              "type": {
                "text": "HTMLElement"
              }
            },
            {
              "kind": "field",
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the dialog is open. You can toggle this attribute to show and hide the dialog, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the dialog's open state.",
              "attribute": "open",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The dialog's label as displayed in the header. You should always include a relevant label even when using\n`no-header`, as it is required for proper accessibility. If you need to display HTML, use the `label` slot instead.",
              "attribute": "label",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "noHeader",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the header. This will also remove the default close button, so please ensure you provide an easy,\naccessible way for users to dismiss the dialog.",
              "attribute": "no-header",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "requestClose",
              "privacy": "private",
              "parameters": [
                {
                  "name": "source",
                  "type": {
                    "text": "'close-button' | 'keyboard' | 'overlay'"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "addOpenListeners",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "removeOpenListeners",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleDocumentKeyDown",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleOpenChange"
            },
            {
              "kind": "method",
              "name": "show",
              "description": "Shows the dialog."
            },
            {
              "kind": "method",
              "name": "hide",
              "description": "Hides the dialog"
            }
          ],
          "events": [
            {
              "description": "Emitted when the dialog opens.",
              "name": "terra-dialog-show",
              "reactName": "onTerraDialogShow",
              "eventName": "TerraDialogShowEvent"
            },
            {
              "description": "Emitted after the dialog opens and all animations are complete.",
              "name": "terra-dialog-after-show",
              "reactName": "onTerraDialogAfterShow",
              "eventName": "TerraDialogAfterShowEvent"
            },
            {
              "description": "Emitted when the dialog closes.",
              "name": "terra-dialog-hide",
              "reactName": "onTerraDialogHide",
              "eventName": "TerraDialogHideEvent"
            },
            {
              "description": "Emitted after the dialog closes and all animations are complete.",
              "name": "terra-dialog-after-hide",
              "reactName": "onTerraDialogAfterHide",
              "eventName": "TerraDialogAfterHideEvent"
            },
            {
              "description": "Emitted when the dialog opens and is ready to receive focus. Calling `event.preventDefault()` will prevent focusing and allow you to set it on a different element, such as an input.",
              "name": "terra-dialog-initial-focus",
              "reactName": "onTerraDialogInitialFocus",
              "eventName": "TerraDialogInitialFocusEvent"
            },
            {
              "type": {
                "text": "{ source: 'close-button' | 'keyboard' | 'overlay' }"
              },
              "description": "Emitted when the user attempts to close the dialog by clicking the close button, clicking the overlay, or pressing escape. Calling `event.preventDefault()` will keep the dialog open. Avoid using this unless closing the dialog will result in destructive behavior such as data loss.",
              "name": "terra-dialog-request-close",
              "reactName": "onTerraDialogRequestClose",
              "eventName": "TerraDialogRequestCloseEvent"
            }
          ],
          "attributes": [
            {
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the dialog is open. You can toggle this attribute to show and hide the dialog, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the dialog's open state.",
              "fieldName": "open"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The dialog's label as displayed in the header. You should always include a relevant label even when using\n`no-header`, as it is required for proper accessibility. If you need to display HTML, use the `label` slot instead.",
              "fieldName": "label"
            },
            {
              "name": "no-header",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the header. This will also remove the default close button, so please ensure you provide an easy,\naccessible way for users to dismiss the dialog.",
              "fieldName": "noHeader"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Dialogs, sometimes called \"modals\", appear above the page and require the user's immediate attention.",
          "tagNameWithoutPrefix": "dialog",
          "tagName": "terra-dialog",
          "customElement": true,
          "jsDoc": "/**\n * @summary Dialogs, sometimes called \"modals\", appear above the page and require the user's immediate attention.\n * @documentation https://terra-ui.netlify.app/components/dialog\n * @status stable\n * @since 1.0\n *\n * @dependency terra-button\n * @dependency terra-icon\n *\n * @slot - The dialog's main content.\n * @slot label - The dialog's label. Alternatively, you can use the `label` attribute.\n * @slot header-actions - Optional actions to add to the header. Works best with `<terra-button>`.\n * @slot footer - The dialog's footer, usually one or more buttons representing various options.\n *\n * @event terra-dialog-show - Emitted when the dialog opens.\n * @event terra-dialog-after-show - Emitted after the dialog opens and all animations are complete.\n * @event terra-dialog-hide - Emitted when the dialog closes.\n * @event terra-dialog-after-hide - Emitted after the dialog closes and all animations are complete.\n * @event terra-dialog-initial-focus - Emitted when the dialog opens and is ready to receive focus. Calling\n *   `event.preventDefault()` will prevent focusing and allow you to set it on a different element, such as an input.\n * @event {{ source: 'close-button' | 'keyboard' | 'overlay' }} terra-dialog-request-close - Emitted when the user attempts to\n *   close the dialog by clicking the close button, clicking the overlay, or pressing escape. Calling\n *   `event.preventDefault()` will keep the dialog open. Avoid using this unless closing the dialog will result in\n *   destructive behavior such as data loss.\n *\n * @csspart base - The component's base wrapper.\n * @csspart overlay - The overlay that covers the screen behind the dialog.\n * @csspart panel - The dialog's panel (where the dialog and its content are rendered).\n * @csspart header - The dialog's header. This element wraps the title and header actions.\n * @csspart header-actions - Optional actions to add to the header. Works best with `<terra-button>`.\n * @csspart title - The dialog's title.\n * @csspart close-button - The close button, an `<terra-button>`.\n * @csspart close-button__base - The close button's exported `base` part.\n * @csspart body - The dialog's body.\n * @csspart footer - The dialog's footer.\n *\n * @cssproperty --width - The preferred width of the dialog. Defaults to `fit-content` to size based on content. Can be set to a fixed value like `31rem` if needed. Note that the dialog will shrink to accommodate smaller screens.\n * @cssproperty --header-spacing - The amount of padding to use for the header.\n * @cssproperty --body-spacing - The amount of padding to use for the body.\n * @cssproperty --footer-spacing - The amount of padding to use for the footer.\n *\n * @animation dialog.show - The animation to use when showing the dialog.\n * @animation dialog.hide - The animation to use when hiding the dialog.\n * @animation dialog.denyClose - The animation to use when a request to close the dialog is denied.\n * @animation dialog.overlay.show - The animation to use when showing the dialog's overlay.\n * @animation dialog.overlay.hide - The animation to use when hiding the dialog's overlay.\n *\n * @property modal - Exposes the internal modal utility that controls focus trapping. To temporarily disable focus\n *   trapping and allow third-party modals spawned from an active Terra modal, call `modal.activateExternal()` when\n *   the third-party modal opens. Upon closing, call `modal.deactivateExternal()` to restore Terra's focus trapping.\n */",
          "documentation": "https://terra-ui.netlify.app/components/dialog",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-button",
            "terra-icon"
          ],
          "animations": [
            {
              "name": "dialog.show",
              "description": "The animation to use when showing the dialog."
            },
            {
              "name": "dialog.hide",
              "description": "The animation to use when hiding the dialog."
            },
            {
              "name": "dialog.denyClose",
              "description": "The animation to use when a request to close the dialog is denied."
            },
            {
              "name": "dialog.overlay.show",
              "description": "The animation to use when showing the dialog's overlay."
            },
            {
              "name": "dialog.overlay.hide",
              "description": "The animation to use when hiding the dialog's overlay."
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraDialog",
            "module": "components/dialog/dialog.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/divider/divider.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraDivider",
          "cssProperties": [
            {
              "description": "The color of the divider.",
              "name": "--terra-divider-color"
            },
            {
              "description": "The width of the divider.",
              "name": "--terra-divider-width"
            },
            {
              "description": "The spacing of the divider.",
              "name": "--terra-divider-spacing"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "vertical",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the divider in a vertical orientation.",
              "attribute": "vertical",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "handleVerticalChange"
            }
          ],
          "attributes": [
            {
              "name": "vertical",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the divider in a vertical orientation.",
              "fieldName": "vertical"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Dividers are used to visually separate or group elements.",
          "tagNameWithoutPrefix": "divider",
          "tagName": "terra-divider",
          "customElement": true,
          "jsDoc": "/**\n * @summary Dividers are used to visually separate or group elements.\n * @documentation https://terra-ui.netlify.app/components/divider\n * @status stable\n * @since 1.0\n *\n * @cssproperty --terra-divider-color - The color of the divider.\n * @cssproperty --terra-divider-width - The width of the divider.\n * @cssproperty --terra-divider-spacing - The spacing of the divider.\n */",
          "documentation": "https://terra-ui.netlify.app/components/divider",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraDivider",
            "module": "components/divider/divider.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/dropdown/dropdown.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraDropdown",
          "cssParts": [
            {
              "description": "The component's base wrapper, an `<terra-popup>` element.",
              "name": "base"
            },
            {
              "description": "The popup's exported `popup` part. Use this to target the dropdown's popup container.",
              "name": "base__popup"
            },
            {
              "description": "The container that wraps the trigger.",
              "name": "trigger"
            },
            {
              "description": "The panel that gets shown when the dropdown is open.",
              "name": "panel"
            }
          ],
          "slots": [
            {
              "description": "The dropdown's main content, typically a `<terra-menu>` element.",
              "name": ""
            },
            {
              "description": "The dropdown's trigger, usually a `<terra-button>` element.",
              "name": "trigger"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{ 'terra-popup': TerraPopup }"
            },
            {
              "kind": "field",
              "name": "popup",
              "type": {
                "text": "TerraPopup"
              }
            },
            {
              "kind": "field",
              "name": "trigger",
              "type": {
                "text": "HTMLSlotElement"
              }
            },
            {
              "kind": "field",
              "name": "panel",
              "type": {
                "text": "HTMLSlotElement"
              }
            },
            {
              "kind": "field",
              "name": "closeWatcher",
              "type": {
                "text": "CloseWatcher | null"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the dropdown is open. You can toggle this attribute to show and hide the dropdown, or you\ncan use the `show()` and `hide()` methods and this attribute will reflect the dropdown's open state.",
              "attribute": "open",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "placement",
              "type": {
                "text": "| 'top'\n        | 'top-start'\n        | 'top-end'\n        | 'bottom'\n        | 'bottom-start'\n        | 'bottom-end'\n        | 'right'\n        | 'right-start'\n        | 'right-end'\n        | 'left'\n        | 'left-start'\n        | 'left-end'"
              },
              "default": "'bottom-start'",
              "description": "The preferred placement of the dropdown panel. Note that the actual placement may vary as needed to keep the panel\ninside of the viewport.",
              "attribute": "placement",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the dropdown so the panel will not open.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "stayOpenOnSelect",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "By default, the dropdown is closed when an item is selected. This attribute will keep it open instead. Useful for\ndropdowns that allow for multiple interactions.",
              "attribute": "stay-open-on-select",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "containingElement",
              "type": {
                "text": "HTMLElement | undefined"
              },
              "description": "The dropdown will close when the user interacts outside of this element (e.g. clicking). Useful for composing other\ncomponents that use a dropdown internally."
            },
            {
              "kind": "field",
              "name": "distance",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The distance in pixels from which to offset the panel away from its trigger.",
              "attribute": "distance"
            },
            {
              "kind": "field",
              "name": "skidding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The distance in pixels from which to offset the panel along its trigger.",
              "attribute": "skidding"
            },
            {
              "kind": "field",
              "name": "hoist",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Enable this option to prevent the panel from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.",
              "attribute": "hoist"
            },
            {
              "kind": "field",
              "name": "hover",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, the dropdown opens on mouse hover instead of click.",
              "attribute": "hover",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "hoverTimeout",
              "type": {
                "text": "number | null"
              },
              "privacy": "private",
              "default": "null"
            },
            {
              "kind": "field",
              "name": "hideTimeout",
              "type": {
                "text": "number | null"
              },
              "privacy": "private",
              "default": "null"
            },
            {
              "kind": "field",
              "name": "sync",
              "type": {
                "text": "'width' | 'height' | 'both' | undefined"
              },
              "default": "undefined",
              "description": "Syncs the popup width or height to that of the trigger element.",
              "attribute": "sync",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "removeHoverListeners",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "focusOnTrigger"
            },
            {
              "kind": "method",
              "name": "getMenu"
            },
            {
              "kind": "field",
              "name": "handleKeyDown",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleDocumentKeyDown",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleDocumentMouseDown",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handlePanelSelect",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleTriggerClick"
            },
            {
              "kind": "field",
              "name": "handleTriggerMouseEnter",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleTriggerMouseLeave",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handlePanelMouseEnter",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handlePanelMouseLeave",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleTriggerKeyDown",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleTriggerKeyUp",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleTriggerSlotChange"
            },
            {
              "kind": "method",
              "name": "attachHoverListeners",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "attachPanelHoverListeners",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "updateAccessibleTrigger"
            },
            {
              "kind": "method",
              "name": "show",
              "description": "Shows the dropdown panel."
            },
            {
              "kind": "method",
              "name": "hide",
              "description": "Hides the dropdown panel"
            },
            {
              "kind": "method",
              "name": "reposition",
              "description": "Instructs the dropdown menu to reposition. Useful when the position or size of the trigger changes when the menu\nis activated."
            },
            {
              "kind": "method",
              "name": "addOpenListeners"
            },
            {
              "kind": "method",
              "name": "removeOpenListeners"
            },
            {
              "kind": "method",
              "name": "handleOpenChange"
            },
            {
              "kind": "method",
              "name": "handleHoverChange"
            }
          ],
          "events": [
            {
              "description": "Emitted when the dropdown opens.",
              "name": "terra-show",
              "reactName": "onTerraShow",
              "eventName": "TerraShowEvent"
            },
            {
              "description": "Emitted after the dropdown opens and all animations are complete.",
              "name": "terra-after-show",
              "reactName": "onTerraAfterShow",
              "eventName": "TerraAfterShowEvent"
            },
            {
              "description": "Emitted when the dropdown closes.",
              "name": "terra-hide",
              "reactName": "onTerraHide",
              "eventName": "TerraHideEvent"
            },
            {
              "description": "Emitted after the dropdown closes and all animations are complete.",
              "name": "terra-after-hide",
              "reactName": "onTerraAfterHide",
              "eventName": "TerraAfterHideEvent"
            }
          ],
          "attributes": [
            {
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the dropdown is open. You can toggle this attribute to show and hide the dropdown, or you\ncan use the `show()` and `hide()` methods and this attribute will reflect the dropdown's open state.",
              "fieldName": "open"
            },
            {
              "name": "placement",
              "type": {
                "text": "| 'top'\n        | 'top-start'\n        | 'top-end'\n        | 'bottom'\n        | 'bottom-start'\n        | 'bottom-end'\n        | 'right'\n        | 'right-start'\n        | 'right-end'\n        | 'left'\n        | 'left-start'\n        | 'left-end'"
              },
              "default": "'bottom-start'",
              "description": "The preferred placement of the dropdown panel. Note that the actual placement may vary as needed to keep the panel\ninside of the viewport.",
              "fieldName": "placement"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the dropdown so the panel will not open.",
              "fieldName": "disabled"
            },
            {
              "name": "stay-open-on-select",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "By default, the dropdown is closed when an item is selected. This attribute will keep it open instead. Useful for\ndropdowns that allow for multiple interactions.",
              "fieldName": "stayOpenOnSelect"
            },
            {
              "name": "distance",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The distance in pixels from which to offset the panel away from its trigger.",
              "fieldName": "distance"
            },
            {
              "name": "skidding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The distance in pixels from which to offset the panel along its trigger.",
              "fieldName": "skidding"
            },
            {
              "name": "hoist",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Enable this option to prevent the panel from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.",
              "fieldName": "hoist"
            },
            {
              "name": "hover",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, the dropdown opens on mouse hover instead of click.",
              "fieldName": "hover"
            },
            {
              "name": "sync",
              "type": {
                "text": "'width' | 'height' | 'both' | undefined"
              },
              "default": "undefined",
              "description": "Syncs the popup width or height to that of the trigger element.",
              "resolveInitializer": {
                "module": "src/components/dropdown/dropdown.component.ts"
              },
              "fieldName": "sync"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Dropdowns expose additional content that \"drops down\" in a panel.",
          "tagNameWithoutPrefix": "dropdown",
          "tagName": "terra-dropdown",
          "customElement": true,
          "jsDoc": "/**\n * @summary Dropdowns expose additional content that \"drops down\" in a panel.\n * @documentation https://terra-ui.netlify.app/components/dropdown\n * @status stable\n * @since 1.0\n *\n * @dependency terra-popup\n *\n * @slot - The dropdown's main content, typically a `<terra-menu>` element.\n * @slot trigger - The dropdown's trigger, usually a `<terra-button>` element.\n *\n * @event terra-show - Emitted when the dropdown opens.\n * @event terra-after-show - Emitted after the dropdown opens and all animations are complete.\n * @event terra-hide - Emitted when the dropdown closes.\n * @event terra-after-hide - Emitted after the dropdown closes and all animations are complete.\n *\n * @csspart base - The component's base wrapper, an `<terra-popup>` element.\n * @csspart base__popup - The popup's exported `popup` part. Use this to target the dropdown's popup container.\n * @csspart trigger - The container that wraps the trigger.\n * @csspart panel - The panel that gets shown when the dropdown is open.\n *\n * @animation dropdown.show - The animation to use when showing the dropdown.\n * @animation dropdown.hide - The animation to use when hiding the dropdown.\n */",
          "documentation": "https://terra-ui.netlify.app/components/dropdown",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-popup"
          ],
          "animations": [
            {
              "name": "dropdown.show",
              "description": "The animation to use when showing the dropdown."
            },
            {
              "name": "dropdown.hide",
              "description": "The animation to use when hiding the dropdown."
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraDropdown",
            "module": "components/dropdown/dropdown.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/earthdata-login/earthdata-login.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraEarthdataLogin",
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-button': TerraButton,\n        'terra-icon': TerraIcon,\n        'terra-input': TerraInput,\n        'terra-loader': TerraLoader,\n    }"
            },
            {
              "kind": "field",
              "name": "loggedInMessage",
              "type": {
                "text": "string | undefined"
              },
              "description": "The message to show when the user is logged in\nYou can use the following placeholders:\n{username} - The username of the user\n{first_name} - The first name of the user\n{last_name} - The last name of the user",
              "attribute": "logged-in-message"
            },
            {
              "kind": "field",
              "name": "loggedOutMessage",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "logged-out-message"
            },
            {
              "kind": "field",
              "name": "loadingMessage",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "loading-message"
            },
            {
              "kind": "field",
              "name": "username",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "username"
            },
            {
              "kind": "field",
              "name": "password",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "password"
            },
            {
              "kind": "field",
              "name": "hidePasswordToggle",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "hide-password-toggle"
            },
            {
              "kind": "field",
              "name": "autoLogin",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "if true and the user has passed in a username and password, we will automatically log them in\nthis is useful for Jupyter Notebooks where we may want to automatically log the user in when the component is rendered",
              "attribute": "auto-login"
            },
            {
              "kind": "field",
              "name": "usernameError",
              "type": {
                "text": "string"
              },
              "default": "''"
            },
            {
              "kind": "field",
              "name": "passwordError",
              "type": {
                "text": "string"
              },
              "default": "''"
            },
            {
              "kind": "field",
              "name": "usernameInput",
              "type": {
                "text": "TerraInput | undefined"
              }
            },
            {
              "kind": "field",
              "name": "passwordInput",
              "type": {
                "text": "TerraInput | undefined"
              }
            },
            {
              "kind": "field",
              "name": "#authController",
              "privacy": "private",
              "default": "new AuthController(this)"
            },
            {
              "kind": "method",
              "name": "#handleUsernameInput",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#handlePasswordInput",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#validateUsername"
            },
            {
              "kind": "method",
              "name": "#validatePassword"
            },
            {
              "kind": "method",
              "name": "#handleFormSubmit",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            }
          ],
          "events": [
            {
              "description": "Emitted when a bearer token has been received from EDL.",
              "name": "terra-login",
              "reactName": "onTerraLogin",
              "eventName": "TerraLoginEvent"
            }
          ],
          "attributes": [
            {
              "name": "logged-in-message",
              "type": {
                "text": "string | undefined"
              },
              "description": "The message to show when the user is logged in\nYou can use the following placeholders:\n{username} - The username of the user\n{first_name} - The first name of the user\n{last_name} - The last name of the user",
              "fieldName": "loggedInMessage"
            },
            {
              "name": "logged-out-message",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "loggedOutMessage"
            },
            {
              "name": "loading-message",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "loadingMessage"
            },
            {
              "name": "username",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "username"
            },
            {
              "name": "password",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "password"
            },
            {
              "name": "hide-password-toggle",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "hidePasswordToggle"
            },
            {
              "name": "auto-login",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "if true and the user has passed in a username and password, we will automatically log them in\nthis is useful for Jupyter Notebooks where we may want to automatically log the user in when the component is rendered",
              "fieldName": "autoLogin"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "A form that logs in to Earthdata Login (EDL)",
          "tagNameWithoutPrefix": "earthdata-login",
          "tagName": "terra-earthdata-login",
          "customElement": true,
          "jsDoc": "/**\n * @summary A form that logs in to Earthdata Login (EDL)\n * @documentation https://terra-ui.netlify.app/components/earthdata-login\n * @status stable\n * @since 1.0\n *\n * @event terra-login - Emitted when a bearer token has been received from EDL.\n */",
          "documentation": "https://terra-ui.netlify.app/components/earthdata-login",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraEarthdataLogin",
            "module": "components/earthdata-login/earthdata-login.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/file-upload/file-upload.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraFileUpload",
          "cssProperties": [
            {
              "description": "All file upload design tokens from horizon.css are supported.",
              "name": "--terra-file-upload-*"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The drop zone area.",
              "name": "dropzone"
            },
            {
              "description": "The hidden file input element.",
              "name": "file-input"
            },
            {
              "description": "The container for file previews.",
              "name": "file-list"
            },
            {
              "description": "Individual file preview item.",
              "name": "file-item"
            },
            {
              "description": "The file thumbnail image.",
              "name": "file-thumbnail"
            },
            {
              "description": "The file name text.",
              "name": "file-name"
            },
            {
              "description": "The \"Change files\" link.",
              "name": "change-link"
            }
          ],
          "slots": [
            {
              "description": "Custom content to display inside the drop zone.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "fileInput",
              "type": {
                "text": "HTMLInputElement"
              }
            },
            {
              "kind": "field",
              "name": "dropzone",
              "type": {
                "text": "HTMLElement"
              }
            },
            {
              "kind": "field",
              "name": "files",
              "type": {
                "text": "FileWithPreview[]"
              },
              "privacy": "private",
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "isDragging",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "'Upload'",
              "description": "The file upload's label.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The file upload's help text.",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the file input, submitted as a name/value pair with form data.",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "multiple",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Allows multiple files to be selected.",
              "attribute": "multiple",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the file upload.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the file upload a required field.",
              "attribute": "required",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "accept",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Accepted file types (e.g., \"image/*\", \".pdf\", \"image/png,image/jpeg\").",
              "attribute": "accept"
            },
            {
              "kind": "field",
              "name": "maxFileSize",
              "type": {
                "text": "number | undefined"
              },
              "description": "Maximum file size in bytes.",
              "attribute": "max-file-size"
            },
            {
              "kind": "field",
              "name": "maxFiles",
              "type": {
                "text": "number | undefined"
              },
              "description": "Maximum number of files allowed when multiple is enabled.",
              "attribute": "max-files"
            },
            {
              "kind": "method",
              "name": "setupDragAndDrop",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "cleanupDragAndDrop",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleDragOver",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleDragLeave",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleDrop",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleFileInputChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleFiles",
              "privacy": "private",
              "parameters": [
                {
                  "name": "newFiles",
                  "type": {
                    "text": "File[]"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "handleClick",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleChangeFiles",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleFocus",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleBlur",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "getFiles",
              "return": {
                "type": {
                  "text": "File[]"
                }
              },
              "description": "Gets the current files."
            },
            {
              "kind": "method",
              "name": "clearFiles",
              "description": "Clears all selected files."
            }
          ],
          "events": [
            {
              "description": "Emitted when files are selected or removed.",
              "name": "terra-change",
              "reactName": "onTerraChange",
              "eventName": "TerraChangeEvent"
            },
            {
              "description": "Emitted when the control gains focus.",
              "name": "terra-focus",
              "reactName": "onTerraFocus",
              "eventName": "TerraFocusEvent"
            },
            {
              "description": "Emitted when the control loses focus.",
              "name": "terra-blur",
              "reactName": "onTerraBlur",
              "eventName": "TerraBlurEvent"
            }
          ],
          "attributes": [
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "'Upload'",
              "description": "The file upload's label.",
              "fieldName": "label"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The file upload's help text.",
              "fieldName": "helpText"
            },
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the file input, submitted as a name/value pair with form data.",
              "fieldName": "name"
            },
            {
              "name": "multiple",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Allows multiple files to be selected.",
              "fieldName": "multiple"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the file upload.",
              "fieldName": "disabled"
            },
            {
              "name": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the file upload a required field.",
              "fieldName": "required"
            },
            {
              "name": "accept",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Accepted file types (e.g., \"image/*\", \".pdf\", \"image/png,image/jpeg\").",
              "fieldName": "accept"
            },
            {
              "name": "max-file-size",
              "type": {
                "text": "number | undefined"
              },
              "description": "Maximum file size in bytes.",
              "fieldName": "maxFileSize"
            },
            {
              "name": "max-files",
              "type": {
                "text": "number | undefined"
              },
              "description": "Maximum number of files allowed when multiple is enabled.",
              "fieldName": "maxFiles"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "File upload fields allow visitors to attach one or multiple files to be submitted with a form.",
          "tagNameWithoutPrefix": "file-upload",
          "tagName": "terra-file-upload",
          "customElement": true,
          "jsDoc": "/**\n * @summary File upload fields allow visitors to attach one or multiple files to be submitted with a form.\n * @documentation https://terra-ui.netlify.app/components/file-upload\n * @status stable\n * @since 1.0\n *\n * @slot - Custom content to display inside the drop zone.\n *\n * @event terra-change - Emitted when files are selected or removed.\n * @event terra-focus - Emitted when the control gains focus.\n * @event terra-blur - Emitted when the control loses focus.\n *\n * @csspart base - The component's base wrapper.\n * @csspart dropzone - The drop zone area.\n * @csspart file-input - The hidden file input element.\n * @csspart file-list - The container for file previews.\n * @csspart file-item - Individual file preview item.\n * @csspart file-thumbnail - The file thumbnail image.\n * @csspart file-name - The file name text.\n * @csspart change-link - The \"Change files\" link.\n *\n * @cssproperty --terra-file-upload-* - All file upload design tokens from horizon.css are supported.\n */",
          "documentation": "https://terra-ui.netlify.app/components/file-upload",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraFileUpload",
            "module": "components/file-upload/file-upload.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/icon/icon.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraIcon",
          "cssParts": [
            {
              "description": "The internal SVG element.",
              "name": "svg"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "#initialRender",
              "privacy": "private",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "svg",
              "type": {
                "text": "SVGElement | HTMLTemplateResult | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string | undefined"
              },
              "description": "The name of the icon to draw. Available names depend on the icon library being used.",
              "attribute": "name",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "src",
              "type": {
                "text": "string | undefined"
              },
              "description": "An external URL of an SVG file. Be sure you trust the content you are including, as it will be executed as code and\ncan result in XSS attacks.",
              "attribute": "src"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "An alternate description to use for assistive devices. If omitted, the icon will be considered presentational and\nignored by assistive devices.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "library",
              "type": {
                "text": "'default' | 'heroicons' | string"
              },
              "default": "'default'",
              "description": "The name of a registered custom icon library.",
              "attribute": "library",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "color",
              "type": {
                "text": "string | null"
              },
              "default": "null",
              "description": "The CSS color to assign to the SVG.",
              "attribute": "color"
            },
            {
              "kind": "field",
              "name": "fontSize",
              "type": {
                "text": "string | null"
              },
              "default": "null",
              "description": "The CSS font-size to assign to the SVG.",
              "attribute": "font-size"
            },
            {
              "kind": "method",
              "name": "#resolveIcon",
              "return": {
                "type": {
                  "text": "Promise<SVGResult>"
                }
              },
              "parameters": [
                {
                  "name": "url",
                  "type": {
                    "text": "string"
                  }
                }
              ],
              "description": "Given a URL, this function returns the resulting SVG element or an appropriate error symbol."
            },
            {
              "kind": "method",
              "name": "#getIconSource",
              "return": {
                "type": {
                  "text": "IconSource"
                }
              }
            },
            {
              "kind": "method",
              "name": "#styleFromAttributes",
              "description": "SVG takes a few presentation attributes. Since we're using a template for SVG and our host element isn't an SVG, we can pass those presentational attributes into a style attribute to affect the underlying SVG.\nMerge select attributes with existing inline style attribute to forward values to underlying SVG."
            },
            {
              "kind": "method",
              "name": "handleLabelChange"
            },
            {
              "kind": "method",
              "name": "setIcon"
            }
          ],
          "events": [
            {
              "description": "Emitted when the icon has loaded.",
              "name": "terra-load",
              "reactName": "onTerraLoad",
              "eventName": "TerraLoadEvent"
            },
            {
              "description": "Emitted when the icon fails to load due to an error.",
              "name": "terra-error",
              "reactName": "onTerraError",
              "eventName": "TerraErrorEvent"
            }
          ],
          "attributes": [
            {
              "name": "name",
              "type": {
                "text": "string | undefined"
              },
              "description": "The name of the icon to draw. Available names depend on the icon library being used.",
              "fieldName": "name"
            },
            {
              "name": "src",
              "type": {
                "text": "string | undefined"
              },
              "description": "An external URL of an SVG file. Be sure you trust the content you are including, as it will be executed as code and\ncan result in XSS attacks.",
              "fieldName": "src"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "An alternate description to use for assistive devices. If omitted, the icon will be considered presentational and\nignored by assistive devices.",
              "fieldName": "label"
            },
            {
              "name": "library",
              "type": {
                "text": "'default' | 'heroicons' | string"
              },
              "default": "'default'",
              "description": "The name of a registered custom icon library.",
              "fieldName": "library"
            },
            {
              "name": "color",
              "type": {
                "text": "string | null"
              },
              "default": "null",
              "description": "The CSS color to assign to the SVG.",
              "fieldName": "color"
            },
            {
              "name": "font-size",
              "type": {
                "text": "string | null"
              },
              "default": "null",
              "description": "The CSS font-size to assign to the SVG.",
              "fieldName": "fontSize"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Icons are symbols that can be used to represent various options within an application.",
          "tagNameWithoutPrefix": "icon",
          "tagName": "terra-icon",
          "customElement": true,
          "jsDoc": "/**\n * @summary Icons are symbols that can be used to represent various options within an application.\n * @documentation https://terra-ui.netlify.app/components/icon\n * @status stable\n * @since 1.0\n *\n * @event terra-load - Emitted when the icon has loaded.\n * @event terra-error - Emitted when the icon fails to load due to an error.\n *\n * @csspart svg - The internal SVG element.\n */",
          "documentation": "https://terra-ui.netlify.app/components/icon",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraIcon",
            "module": "components/icon/icon.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/input/input.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraInput",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The internal input control.",
              "name": "input"
            },
            {
              "description": "The container for prefix content.",
              "name": "prefix"
            },
            {
              "description": "The container for suffix content.",
              "name": "suffix"
            },
            {
              "description": "The clear button.",
              "name": "clear-button"
            },
            {
              "description": "The password toggle button.",
              "name": "password-toggle-button"
            },
            {
              "description": "The help text's wrapper.",
              "name": "form-control-help-text"
            },
            {
              "description": "The error text's wrapper.",
              "name": "form-control-error-text"
            }
          ],
          "slots": [
            {
              "description": "Used to prepend content (like an icon) to the input.",
              "name": "prefix"
            },
            {
              "description": "Used to append content (like an icon) to the input. When `clearable` or `resettable` is true, this slot is overridden.",
              "name": "suffix"
            },
            {
              "description": "An icon to use in lieu of the default clear icon.",
              "name": "clear-icon"
            },
            {
              "description": "An icon to use in lieu of the default show password icon.",
              "name": "show-password-icon"
            },
            {
              "description": "An icon to use in lieu of the default hide password icon.",
              "name": "hide-password-icon"
            },
            {
              "description": "Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.",
              "name": "help-text"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-icon': TerraIcon,\n    }"
            },
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this, {\n        value: (control: TerraInput) => control.value,\n        defaultValue: (control: TerraInput) => control.defaultValue,\n        setValue: (control: TerraInput, value: string) => (control.value = value),\n    })"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(\n        this,\n        'help-text',\n        'error',\n        'clear-icon',\n        'show-password-icon',\n        'hide-password-icon'\n    )"
            },
            {
              "kind": "field",
              "name": "input",
              "type": {
                "text": "HTMLInputElement"
              }
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "validationErrorMessage",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "default": "''"
            },
            {
              "kind": "field",
              "name": "__numberInput",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "__dateInput",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "title"
            },
            {
              "kind": "field",
              "name": "type",
              "type": {
                "text": "| 'date'\n        | 'datetime-local'\n        | 'email'\n        | 'number'\n        | 'password'\n        | 'search'\n        | 'tel'\n        | 'text'\n        | 'time'\n        | 'url'"
              },
              "default": "'text'",
              "attribute": "type",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "placeholder"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "filled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "filled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "pill",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "readonly",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "readonly",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "required",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "autocomplete",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "autocomplete"
            },
            {
              "kind": "field",
              "name": "minlength",
              "type": {
                "text": "number | undefined"
              },
              "attribute": "minlength"
            },
            {
              "kind": "field",
              "name": "maxlength",
              "type": {
                "text": "number | undefined"
              },
              "attribute": "maxlength"
            },
            {
              "kind": "field",
              "name": "min",
              "type": {
                "text": "number | string | undefined"
              },
              "attribute": "min"
            },
            {
              "kind": "field",
              "name": "max",
              "type": {
                "text": "number | string | undefined"
              },
              "attribute": "max"
            },
            {
              "kind": "field",
              "name": "step",
              "type": {
                "text": "number | 'any' | undefined"
              },
              "attribute": "step"
            },
            {
              "kind": "field",
              "name": "pattern",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "pattern"
            },
            {
              "kind": "field",
              "name": "inputMode",
              "type": {
                "text": "| 'none'\n        | 'text'\n        | 'decimal'\n        | 'numeric'\n        | 'tel'\n        | 'search'\n        | 'email'\n        | 'url'"
              },
              "default": "'text'",
              "attribute": "input-mode"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "hideLabel",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "hide-label"
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "errorText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "error-text"
            },
            {
              "kind": "field",
              "name": "clearable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "clearable"
            },
            {
              "kind": "field",
              "name": "passwordToggle",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "password-toggle"
            },
            {
              "kind": "field",
              "name": "passwordVisible",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "password-visible"
            },
            {
              "kind": "field",
              "name": "noSpinButtons",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "no-spin-buttons"
            },
            {
              "kind": "field",
              "name": "autofocus",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "autofocus"
            },
            {
              "kind": "field",
              "name": "enterkeyhint",
              "type": {
                "text": "| 'enter'\n        | 'done'\n        | 'go'\n        | 'next'\n        | 'previous'\n        | 'search'\n        | 'send' | undefined"
              },
              "attribute": "enterkeyhint"
            },
            {
              "kind": "field",
              "name": "spellcheck",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "attribute": "spellcheck"
            },
            {
              "kind": "field",
              "name": "defaultValue",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The default value of the form control. Primarily used for resetting the form control."
            },
            {
              "kind": "field",
              "name": "resettable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, shows a reset icon in the suffix that clears the input value when clicked.\nThe input will be reset to its `defaultValue` (or empty string if no defaultValue is set).",
              "attribute": "resettable",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "form",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "attribute": "form",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "validity",
              "description": "Gets the validity state object",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "validationMessage",
              "description": "Gets the validation message",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "valueAsDate",
              "description": "Gets or sets the current value as a `Date` object. Returns `null` if the value can't be converted.\nThis will use the native `<input type=\"{{type}}\">` implementation and may result in an error."
            },
            {
              "kind": "field",
              "name": "valueAsNumber",
              "description": "Gets or sets the current value as a number. Returns `NaN` if the value can't be converted."
            },
            {
              "kind": "method",
              "name": "handleInput"
            },
            {
              "kind": "method",
              "name": "handleChange"
            },
            {
              "kind": "method",
              "name": "handleInvalid",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleFocus"
            },
            {
              "kind": "method",
              "name": "handleBlur"
            },
            {
              "kind": "method",
              "name": "handleKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "updateValidationErrorMessage",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleReset",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleClearClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handlePasswordToggle",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleDisabledChange"
            },
            {
              "kind": "method",
              "name": "handleStepChange"
            },
            {
              "kind": "method",
              "name": "handleValueChange"
            },
            {
              "kind": "method",
              "name": "checkValidity",
              "description": "Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid."
            },
            {
              "kind": "method",
              "name": "getForm",
              "return": {
                "type": {
                  "text": "HTMLFormElement | null"
                }
              },
              "description": "Gets the associated form, if one exists."
            },
            {
              "kind": "method",
              "name": "reportValidity",
              "description": "Checks for validity and shows the browser's validation message if the control is invalid."
            },
            {
              "kind": "method",
              "name": "setCustomValidity",
              "parameters": [
                {
                  "name": "message",
                  "type": {
                    "text": "string"
                  }
                }
              ],
              "description": "Sets a custom validation message. The value provided will be shown to the user when the form is submitted. To clear\nthe custom validation message, call this method with an empty string."
            },
            {
              "kind": "method",
              "name": "focus",
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "FocusOptions"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "blur"
            },
            {
              "kind": "method",
              "name": "select"
            },
            {
              "kind": "method",
              "name": "setSelectionRange",
              "parameters": [
                {
                  "name": "selectionStart",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "selectionEnd",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "selectionDirection",
                  "default": "'none'",
                  "type": {
                    "text": "'forward' | 'backward' | 'none'"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "setRangeText",
              "parameters": [
                {
                  "name": "replacement",
                  "type": {
                    "text": "string"
                  }
                },
                {
                  "name": "start",
                  "optional": true,
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "end",
                  "optional": true,
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "selectMode",
                  "default": "'preserve'",
                  "type": {
                    "text": "'select' | 'start' | 'end' | 'preserve'"
                  }
                }
              ],
              "description": "Replaces a range of text with a new string."
            },
            {
              "kind": "method",
              "name": "showPicker",
              "description": "Displays the browser picker for an input element (only works if the browser supports it for the input type)."
            },
            {
              "kind": "method",
              "name": "stepUp",
              "description": "Increments the value of a numeric input type by the value of the step attribute."
            },
            {
              "kind": "method",
              "name": "stepDown",
              "description": "Decrements the value of a numeric input type by the value of the step attribute."
            }
          ],
          "events": [
            {
              "description": "Emitted when the input receives input.",
              "name": "terra-input",
              "reactName": "onTerraInput",
              "eventName": "TerraInputEvent"
            },
            {
              "description": "Emitted when an alteration to the control's value is committed by the user.",
              "name": "terra-change",
              "reactName": "onTerraChange",
              "eventName": "TerraChangeEvent"
            },
            {
              "description": "Emitted when the control gains focus.",
              "name": "terra-focus",
              "reactName": "onTerraFocus",
              "eventName": "TerraFocusEvent"
            },
            {
              "description": "Emitted when the control loses focus.",
              "name": "terra-blur",
              "reactName": "onTerraBlur",
              "eventName": "TerraBlurEvent"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "terra-invalid",
              "reactName": "onTerraInvalid",
              "eventName": "TerraInvalidEvent"
            },
            {
              "description": "Emitted when the clear button is activated.",
              "name": "terra-clear",
              "reactName": "onTerraClear",
              "eventName": "TerraClearEvent"
            }
          ],
          "attributes": [
            {
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "title"
            },
            {
              "name": "type",
              "type": {
                "text": "| 'date'\n        | 'datetime-local'\n        | 'email'\n        | 'number'\n        | 'password'\n        | 'search'\n        | 'tel'\n        | 'text'\n        | 'time'\n        | 'url'"
              },
              "default": "'text'",
              "fieldName": "type"
            },
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "name"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "value"
            },
            {
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "placeholder"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "fieldName": "size"
            },
            {
              "name": "filled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "filled"
            },
            {
              "name": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "pill"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "disabled"
            },
            {
              "name": "readonly",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "readonly"
            },
            {
              "name": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "required"
            },
            {
              "name": "autocomplete",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "autocomplete"
            },
            {
              "name": "minlength",
              "type": {
                "text": "number | undefined"
              },
              "fieldName": "minlength"
            },
            {
              "name": "maxlength",
              "type": {
                "text": "number | undefined"
              },
              "fieldName": "maxlength"
            },
            {
              "name": "min",
              "type": {
                "text": "number | string | undefined"
              },
              "fieldName": "min"
            },
            {
              "name": "max",
              "type": {
                "text": "number | string | undefined"
              },
              "fieldName": "max"
            },
            {
              "name": "step",
              "type": {
                "text": "number | 'any' | undefined"
              },
              "fieldName": "step"
            },
            {
              "name": "pattern",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "pattern"
            },
            {
              "name": "input-mode",
              "type": {
                "text": "| 'none'\n        | 'text'\n        | 'decimal'\n        | 'numeric'\n        | 'tel'\n        | 'search'\n        | 'email'\n        | 'url'"
              },
              "default": "'text'",
              "fieldName": "inputMode"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "label"
            },
            {
              "name": "hide-label",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "hideLabel"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "helpText"
            },
            {
              "name": "error-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "errorText"
            },
            {
              "name": "clearable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "clearable"
            },
            {
              "name": "password-toggle",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "passwordToggle"
            },
            {
              "name": "password-visible",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "passwordVisible"
            },
            {
              "name": "no-spin-buttons",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "noSpinButtons"
            },
            {
              "name": "autofocus",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "autofocus"
            },
            {
              "name": "enterkeyhint",
              "type": {
                "text": "| 'enter'\n        | 'done'\n        | 'go'\n        | 'next'\n        | 'previous'\n        | 'search'\n        | 'send' | undefined"
              },
              "fieldName": "enterkeyhint"
            },
            {
              "name": "spellcheck",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "fieldName": "spellcheck"
            },
            {
              "name": "resettable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, shows a reset icon in the suffix that clears the input value when clicked.\nThe input will be reset to its `defaultValue` (or empty string if no defaultValue is set).",
              "fieldName": "resettable"
            },
            {
              "name": "form",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "fieldName": "form"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "A text input component with consistent styling across the design system.",
          "tagNameWithoutPrefix": "input",
          "tagName": "terra-input",
          "customElement": true,
          "jsDoc": "/**\n * @summary A text input component with consistent styling across the design system.\n * @documentation https://terra-ui.netlify.app/components/input\n * @status stable\n * @since 1.0\n *\n * @dependency terra-icon\n *\n * @slot prefix - Used to prepend content (like an icon) to the input.\n * @slot suffix - Used to append content (like an icon) to the input. When `clearable` or `resettable` is true, this slot is overridden.\n * @slot clear-icon - An icon to use in lieu of the default clear icon.\n * @slot show-password-icon - An icon to use in lieu of the default show password icon.\n * @slot hide-password-icon - An icon to use in lieu of the default hide password icon.\n * @slot help-text - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.\n *\n * @event terra-input - Emitted when the input receives input.\n * @event terra-change - Emitted when an alteration to the control's value is committed by the user.\n * @event terra-focus - Emitted when the control gains focus.\n * @event terra-blur - Emitted when the control loses focus.\n * @event terra-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n * @event terra-clear - Emitted when the clear button is activated.\n *\n * @csspart base - The component's base wrapper.\n * @csspart input - The internal input control.\n * @csspart prefix - The container for prefix content.\n * @csspart suffix - The container for suffix content.\n * @csspart clear-button - The clear button.\n * @csspart password-toggle-button - The password toggle button.\n * @csspart form-control-help-text - The help text's wrapper.\n * @csspart form-control-error-text - The error text's wrapper.\n */",
          "documentation": "https://terra-ui.netlify.app/components/input",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-icon"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraInput",
            "module": "components/input/input.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/loader/loader.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraLoader",
          "cssProperties": [
            {
              "description": "An example CSS custom property.",
              "name": "--example"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "'small' | 'large' | 'orbit'"
              },
              "default": "'large'",
              "description": "The loader's variant",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "percent",
              "type": {
                "text": "string"
              },
              "default": "'0'",
              "description": "The percent complete for the loader to display",
              "attribute": "percent"
            },
            {
              "kind": "field",
              "name": "indeterminate",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "an indeterminate loader has an unknown progress and will show a spinner",
              "attribute": "indeterminate"
            },
            {
              "kind": "field",
              "name": "role",
              "type": {
                "text": "string | null"
              },
              "default": "'progressbar'",
              "description": "The ARIA role for the loader",
              "attribute": "role",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "_currentPercent",
              "type": {
                "text": "number"
              },
              "default": "0"
            },
            {
              "kind": "method",
              "name": "formatPercent",
              "parameters": [
                {
                  "name": "percent",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            }
          ],
          "attributes": [
            {
              "name": "variant",
              "type": {
                "text": "'small' | 'large' | 'orbit'"
              },
              "default": "'large'",
              "description": "The loader's variant",
              "fieldName": "variant"
            },
            {
              "name": "percent",
              "type": {
                "text": "string"
              },
              "default": "'0'",
              "description": "The percent complete for the loader to display",
              "fieldName": "percent"
            },
            {
              "name": "indeterminate",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "an indeterminate loader has an unknown progress and will show a spinner",
              "fieldName": "indeterminate"
            },
            {
              "name": "role",
              "type": {
                "text": "string | null"
              },
              "default": "'progressbar'",
              "description": "The ARIA role for the loader",
              "fieldName": "role"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Loaders are used to indicate there is content that is loading.",
          "tagNameWithoutPrefix": "loader",
          "tagName": "terra-loader",
          "customElement": true,
          "jsDoc": "/**\n * @summary Loaders are used to indicate there is content that is loading.\n * @documentation https://terra-ui.netlify.app/components/loader\n * @status stable\n * @since 1.0\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --example - An example CSS custom property.\n */",
          "documentation": "https://terra-ui.netlify.app/components/loader",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraLoader",
            "module": "components/loader/loader.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/map/map.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraMap",
          "members": [
            {
              "kind": "field",
              "name": "minZoom",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "Minimum zoom level of the map.",
              "attribute": "min-zoom"
            },
            {
              "kind": "field",
              "name": "maxZoom",
              "type": {
                "text": "number"
              },
              "default": "23",
              "description": "Maximum zoom level of the map.",
              "attribute": "max-zoom"
            },
            {
              "kind": "field",
              "name": "zoom",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "Initial map zoom level",
              "attribute": "zoom"
            },
            {
              "kind": "field",
              "name": "hasNavigation",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "has map navigation toolbar",
              "attribute": "has-navigation"
            },
            {
              "kind": "field",
              "name": "hasCoordTracker",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "has coordinate tracker",
              "attribute": "has-coord-tracker"
            },
            {
              "kind": "field",
              "name": "hasShapeSelector",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "has shape selector",
              "attribute": "has-shape-selector"
            },
            {
              "kind": "field",
              "name": "hideBoundingBoxSelection",
              "type": {
                "text": "boolean | undefined"
              },
              "attribute": "hide-bounding-box-selection"
            },
            {
              "kind": "field",
              "name": "hidePointSelection",
              "type": {
                "text": "boolean | undefined"
              },
              "attribute": "hide-point-selection"
            },
            {
              "kind": "field",
              "name": "staticMode",
              "type": {
                "text": "boolean | undefined"
              },
              "default": "false",
              "attribute": "staticMode"
            },
            {
              "kind": "field",
              "name": "noWorldWrap",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables infinite horizontal scrolling on the map (world wrapping)",
              "attribute": "no-world-wrap"
            },
            {
              "kind": "field",
              "name": "spatialConstraints",
              "type": {
                "text": "string"
              },
              "default": "'-180, -90, 180, 90'",
              "description": "Spatial constraints for the map (default: '-180, -90, 180, 90')\nFormat: 'west, south, east, north'",
              "attribute": "spatial-constraints"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "any"
              },
              "default": "[]",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "mapElement",
              "type": {
                "text": "HTMLDivElement"
              }
            },
            {
              "kind": "field",
              "name": "hasProcessedInitialDraw",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "method",
              "name": "valueChanged",
              "parameters": [
                {
                  "name": "_oldValue",
                  "type": {
                    "text": "any"
                  }
                },
                {
                  "name": "newValue",
                  "type": {
                    "text": "any"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "map",
              "default": "new Leaflet()"
            },
            {
              "kind": "field",
              "name": "shapes",
              "type": {
                "text": "ShapeFilesResponse"
              },
              "description": "List of geojson shapes"
            },
            {
              "kind": "field",
              "name": "_mapController",
              "type": {
                "text": "MapController"
              },
              "default": "new MapController(this)"
            },
            {
              "kind": "method",
              "name": "getDrawLayer"
            },
            {
              "kind": "method",
              "name": "#parseConstraints"
            },
            {
              "kind": "method",
              "name": "#normalizeBounds",
              "parameters": [
                {
                  "name": "bounds",
                  "type": {
                    "text": "number[]"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#isPointInsideBounds",
              "return": {
                "type": {
                  "text": "boolean"
                }
              },
              "parameters": [
                {
                  "name": "point",
                  "type": {
                    "text": "any"
                  }
                },
                {
                  "name": "rawBounds",
                  "type": {
                    "text": "number[]"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#isBoundsInsideBounds",
              "return": {
                "type": {
                  "text": "boolean"
                }
              },
              "parameters": [
                {
                  "name": "inner",
                  "type": {
                    "text": "any"
                  }
                },
                {
                  "name": "rawOuter",
                  "type": {
                    "text": "number[]"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#markDynamicLeafletContent"
            },
            {
              "kind": "method",
              "name": "selectTemplate"
            },
            {
              "kind": "method",
              "name": "invalidateSize"
            }
          ],
          "attributes": [
            {
              "name": "min-zoom",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "Minimum zoom level of the map.",
              "fieldName": "minZoom"
            },
            {
              "name": "max-zoom",
              "type": {
                "text": "number"
              },
              "default": "23",
              "description": "Maximum zoom level of the map.",
              "fieldName": "maxZoom"
            },
            {
              "name": "zoom",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "Initial map zoom level",
              "fieldName": "zoom"
            },
            {
              "name": "has-navigation",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "has map navigation toolbar",
              "fieldName": "hasNavigation"
            },
            {
              "name": "has-coord-tracker",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "has coordinate tracker",
              "fieldName": "hasCoordTracker"
            },
            {
              "name": "has-shape-selector",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "has shape selector",
              "fieldName": "hasShapeSelector"
            },
            {
              "name": "hide-bounding-box-selection",
              "type": {
                "text": "boolean | undefined"
              },
              "fieldName": "hideBoundingBoxSelection"
            },
            {
              "name": "hide-point-selection",
              "type": {
                "text": "boolean | undefined"
              },
              "fieldName": "hidePointSelection"
            },
            {
              "name": "staticMode",
              "type": {
                "text": "boolean | undefined"
              },
              "default": "false",
              "fieldName": "staticMode"
            },
            {
              "name": "no-world-wrap",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables infinite horizontal scrolling on the map (world wrapping)",
              "fieldName": "noWorldWrap"
            },
            {
              "name": "spatial-constraints",
              "type": {
                "text": "string"
              },
              "default": "'-180, -90, 180, 90'",
              "description": "Spatial constraints for the map (default: '-180, -90, 180, 90')\nFormat: 'west, south, east, north'",
              "fieldName": "spatialConstraints"
            },
            {
              "name": "value",
              "type": {
                "text": "any"
              },
              "default": "[]",
              "fieldName": "value"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "A map component for visualizing and selecting coordinates.",
          "tagNameWithoutPrefix": "map",
          "tagName": "terra-map",
          "customElement": true,
          "jsDoc": "/**\n * @summary A map component for visualizing and selecting coordinates.\n * @documentation https://terra-ui.netlify.app/components/map\n * @status stable\n * @since 1.0\n *\n */",
          "documentation": "https://terra-ui.netlify.app/components/map",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraMap",
            "module": "components/map/map.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/login/login.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraLogin",
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-button': TerraButton,\n        'terra-icon': TerraIcon,\n        'terra-loader': TerraLoader,\n    }"
            },
            {
              "kind": "field",
              "name": "buttonLabel",
              "type": {
                "text": "string"
              },
              "default": "'Earthdata Login'",
              "attribute": "button-label"
            },
            {
              "kind": "field",
              "name": "loggedInMessage",
              "type": {
                "text": "string | undefined"
              },
              "description": "The message to show when the user is logged in\nYou can use the following placeholders:\n{username} - The username of the user\n{first_name} - The first name of the user\n{last_name} - The last name of the user",
              "attribute": "logged-in-message"
            },
            {
              "kind": "field",
              "name": "loggedOutMessage",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "logged-out-message"
            },
            {
              "kind": "field",
              "name": "loadingMessage",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "loading-message"
            },
            {
              "kind": "field",
              "name": "#authController",
              "privacy": "private",
              "default": "new AuthController(this)"
            },
            {
              "kind": "method",
              "name": "login"
            },
            {
              "kind": "method",
              "name": "logout"
            },
            {
              "kind": "method",
              "name": "#applyUserToMessage",
              "parameters": [
                {
                  "name": "message",
                  "optional": true,
                  "type": {
                    "text": "string"
                  }
                }
              ]
            }
          ],
          "events": [
            {
              "description": "Emitted when a bearer token has been received from EDL.",
              "name": "terra-login",
              "reactName": "onTerraLogin",
              "eventName": "TerraLoginEvent"
            }
          ],
          "attributes": [
            {
              "name": "button-label",
              "type": {
                "text": "string"
              },
              "default": "'Earthdata Login'",
              "fieldName": "buttonLabel"
            },
            {
              "name": "logged-in-message",
              "type": {
                "text": "string | undefined"
              },
              "description": "The message to show when the user is logged in\nYou can use the following placeholders:\n{username} - The username of the user\n{first_name} - The first name of the user\n{last_name} - The last name of the user",
              "fieldName": "loggedInMessage"
            },
            {
              "name": "logged-out-message",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "loggedOutMessage"
            },
            {
              "name": "loading-message",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "loadingMessage"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "A form that logs in to Earthdata Login (EDL) and returns a bearer token.",
          "tagNameWithoutPrefix": "login",
          "tagName": "terra-login",
          "customElement": true,
          "jsDoc": "/**\n * @summary A form that logs in to Earthdata Login (EDL) and returns a bearer token.\n * @documentation https://terra-ui.netlify.app/components/login\n * @status stable\n * @since 1.0\n *\n * @event terra-login - Emitted when a bearer token has been received from EDL.\n */",
          "documentation": "https://terra-ui.netlify.app/components/login",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraLogin",
            "module": "components/login/login.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/menu/menu.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraMenu",
          "slots": [
            {
              "description": "The menu's content, typically `<terra-menu-item>` elements.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "defaultSlot",
              "type": {
                "text": "HTMLSlotElement"
              }
            },
            {
              "kind": "method",
              "name": "handleClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleMouseDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleSlotChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "isMenuItem",
              "privacy": "private",
              "parameters": [
                {
                  "name": "item",
                  "type": {
                    "text": "HTMLElement"
                  }
                }
              ]
            }
          ],
          "events": [
            {
              "description": "Emitted when a menu item is selected. The event detail contains the selected menu item.",
              "name": "terra-select",
              "reactName": "onTerraSelect",
              "eventName": "TerraSelectEvent"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Menus provide a list of options for the user to choose from.",
          "tagNameWithoutPrefix": "menu",
          "tagName": "terra-menu",
          "customElement": true,
          "jsDoc": "/**\n * @summary Menus provide a list of options for the user to choose from.\n * @documentation https://terra-ui.netlify.app/components/menu\n * @status stable\n * @since 1.0\n *\n * @slot - The menu's content, typically `<terra-menu-item>` elements.\n *\n * @event terra-select - Emitted when a menu item is selected. The event detail contains the selected menu item.\n */",
          "documentation": "https://terra-ui.netlify.app/components/menu",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraMenu",
            "module": "components/menu/menu.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/menu-item/menu-item.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraMenuItem",
          "cssProperties": [
            {
              "description": "The distance submenus shift to overlap the parent menu.",
              "name": "--submenu-offset",
              "default": "-2px"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The checked icon, which is only visible when the menu item is checked.",
              "name": "checked-icon"
            },
            {
              "description": "The prefix container.",
              "name": "prefix"
            },
            {
              "description": "The menu item label.",
              "name": "label"
            },
            {
              "description": "The suffix container.",
              "name": "suffix"
            },
            {
              "description": "The spinner that shows when the menu item is in the loading state.",
              "name": "spinner"
            },
            {
              "description": "The spinner's base part.",
              "name": "spinner__base"
            },
            {
              "description": "The submenu icon, visible only when the menu item has a submenu.",
              "name": "submenu-icon"
            }
          ],
          "slots": [
            {
              "description": "The menu item's label.",
              "name": ""
            },
            {
              "description": "Used to prepend an icon or similar element to the menu item.",
              "name": "prefix"
            },
            {
              "description": "Used to append an icon or similar element to the menu item.",
              "name": "suffix"
            },
            {
              "description": "Used to denote a nested menu.",
              "name": "submenu"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-icon': TerraIcon,\n        'terra-popup': TerraPopup,\n        'terra-loader': TerraLoader,\n    }"
            },
            {
              "kind": "field",
              "name": "cachedTextLabel",
              "type": {
                "text": "string"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "defaultSlot",
              "type": {
                "text": "HTMLSlotElement"
              }
            },
            {
              "kind": "field",
              "name": "menuItem",
              "type": {
                "text": "HTMLElement"
              }
            },
            {
              "kind": "field",
              "name": "type",
              "type": {
                "text": "'normal' | 'checkbox'"
              },
              "default": "'normal'",
              "description": "The type of menu item to render. To use `checked`, this value must be set to `checkbox`.",
              "attribute": "type"
            },
            {
              "kind": "field",
              "name": "checked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the item in a checked state.",
              "attribute": "checked",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "A unique value to store in the menu item. This can be used as a way to identify menu items when selected.",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "loading",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the menu item in a loading state.",
              "attribute": "loading",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the menu item in a disabled state, preventing selection.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'submenu')"
            },
            {
              "kind": "field",
              "name": "submenuController",
              "type": {
                "text": "SubmenuController"
              },
              "privacy": "private",
              "default": "new SubmenuController(\n        this,\n        this.hasSlotController\n    )"
            },
            {
              "kind": "method",
              "name": "handleDefaultSlotChange",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleHostClick",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleMouseOver",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleCheckedChange"
            },
            {
              "kind": "method",
              "name": "handleDisabledChange"
            },
            {
              "kind": "method",
              "name": "handleTypeChange"
            },
            {
              "kind": "method",
              "name": "getTextLabel",
              "description": "Returns a text label based on the contents of the menu item's default slot."
            },
            {
              "kind": "method",
              "name": "isSubmenu"
            }
          ],
          "attributes": [
            {
              "name": "type",
              "type": {
                "text": "'normal' | 'checkbox'"
              },
              "default": "'normal'",
              "description": "The type of menu item to render. To use `checked`, this value must be set to `checkbox`.",
              "fieldName": "type"
            },
            {
              "name": "checked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the item in a checked state.",
              "fieldName": "checked"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "A unique value to store in the menu item. This can be used as a way to identify menu items when selected.",
              "fieldName": "value"
            },
            {
              "name": "loading",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the menu item in a loading state.",
              "fieldName": "loading"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the menu item in a disabled state, preventing selection.",
              "fieldName": "disabled"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Menu items provide options for the user to pick from in a menu.",
          "tagNameWithoutPrefix": "menu-item",
          "tagName": "terra-menu-item",
          "customElement": true,
          "jsDoc": "/**\n * @summary Menu items provide options for the user to pick from in a menu.\n * @documentation https://terra-ui.netlify.app/components/menu-item\n * @status stable\n * @since 1.0\n *\n * @dependency terra-icon\n * @dependency terra-popup\n * @dependency terra-loader\n *\n * @slot - The menu item's label.\n * @slot prefix - Used to prepend an icon or similar element to the menu item.\n * @slot suffix - Used to append an icon or similar element to the menu item.\n * @slot submenu - Used to denote a nested menu.\n *\n * @csspart base - The component's base wrapper.\n * @csspart checked-icon - The checked icon, which is only visible when the menu item is checked.\n * @csspart prefix - The prefix container.\n * @csspart label - The menu item label.\n * @csspart suffix - The suffix container.\n * @csspart spinner - The spinner that shows when the menu item is in the loading state.\n * @csspart spinner__base - The spinner's base part.\n * @csspart submenu-icon - The submenu icon, visible only when the menu item has a submenu.\n *\n * @cssproperty [--submenu-offset=-2px] - The distance submenus shift to overlap the parent menu.\n */",
          "documentation": "https://terra-ui.netlify.app/components/menu-item",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-icon",
            "terra-popup",
            "terra-loader"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraMenuItem",
            "module": "components/menu-item/menu-item.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/option/option.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraOption",
          "cssProperties": [
            {
              "description": "All option design tokens from horizon.css are supported.",
              "name": "--terra-option-*"
            }
          ],
          "cssParts": [
            {
              "description": "The checked icon, an `<terra-icon>` element.",
              "name": "checked-icon"
            },
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The option's label.",
              "name": "label"
            },
            {
              "description": "The container that wraps the prefix.",
              "name": "prefix"
            },
            {
              "description": "The container that wraps the suffix.",
              "name": "suffix"
            }
          ],
          "slots": [
            {
              "description": "The option's label.",
              "name": ""
            },
            {
              "description": "Used to prepend an icon or similar element to the menu item.",
              "name": "prefix"
            },
            {
              "description": "Used to append an icon or similar element to the menu item.",
              "name": "suffix"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{ 'terra-icon': TerraIcon }"
            },
            {
              "kind": "field",
              "name": "isInitialized",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "defaultSlot",
              "type": {
                "text": "HTMLSlotElement"
              }
            },
            {
              "kind": "field",
              "name": "current",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "selected",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "hasHover",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The option's value. When selected, the containing form control will receive this value. The value must be unique\nfrom other options in the same group. Values may not contain spaces, as spaces are used as delimiters when listing\nmultiple values.",
              "attribute": "value",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the option in a disabled state, preventing selection.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "handleDefaultSlotChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleMouseEnter",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleMouseLeave",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleDisabledChange"
            },
            {
              "kind": "method",
              "name": "handleSelectedChange"
            },
            {
              "kind": "method",
              "name": "handleValueChange"
            },
            {
              "kind": "method",
              "name": "getTextLabel",
              "description": "Returns a plain text label based on the option's content."
            }
          ],
          "attributes": [
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The option's value. When selected, the containing form control will receive this value. The value must be unique\nfrom other options in the same group. Values may not contain spaces, as spaces are used as delimiters when listing\nmultiple values.",
              "fieldName": "value"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the option in a disabled state, preventing selection.",
              "fieldName": "disabled"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Options define the selectable items within various form controls such as [select](/components/select).",
          "tagNameWithoutPrefix": "option",
          "tagName": "terra-option",
          "customElement": true,
          "jsDoc": "/**\n * @summary Options define the selectable items within various form controls such as [select](/components/select).\n * @documentation https://terra-ui.netlify.app/components/option\n * @status stable\n * @since 1.0\n *\n * @dependency terra-icon\n *\n * @slot - The option's label.\n * @slot prefix - Used to prepend an icon or similar element to the menu item.\n * @slot suffix - Used to append an icon or similar element to the menu item.\n *\n * @csspart checked-icon - The checked icon, an `<terra-icon>` element.\n * @csspart base - The component's base wrapper.\n * @csspart label - The option's label.\n * @csspart prefix - The container that wraps the prefix.\n * @csspart suffix - The container that wraps the suffix.\n *\n * @cssproperty --terra-option-* - All option design tokens from horizon.css are supported.\n */",
          "documentation": "https://terra-ui.netlify.app/components/option",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-icon"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraOption",
            "module": "components/option/option.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/pagination/pagination.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraPagination",
          "cssProperties": [
            {
              "description": "The text color of page buttons.",
              "name": "--terra-pagination-button-color"
            },
            {
              "description": "The background color of page buttons.",
              "name": "--terra-pagination-button-background-color"
            },
            {
              "description": "The text color of page buttons on hover.",
              "name": "--terra-pagination-button-color-hover"
            },
            {
              "description": "The background color of page buttons on hover.",
              "name": "--terra-pagination-button-background-color-hover"
            },
            {
              "description": "The text color of the current page button.",
              "name": "--terra-pagination-button-color-current"
            },
            {
              "description": "The background color of the current page button.",
              "name": "--terra-pagination-button-background-color-current"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The navigation container.",
              "name": "nav"
            },
            {
              "description": "The page button elements.",
              "name": "button"
            },
            {
              "description": "The current page button.",
              "name": "button-current"
            },
            {
              "description": "The ellipsis element.",
              "name": "ellipsis"
            },
            {
              "description": "The previous button.",
              "name": "prev"
            },
            {
              "description": "The next button.",
              "name": "next"
            },
            {
              "description": "The right-side slot container.",
              "name": "slot"
            }
          ],
          "slots": [
            {
              "description": "Content to display on the right side (e.g., rows per page dropdown). Only visible when variant is \"left\".",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-icon': TerraIcon,\n    }"
            },
            {
              "kind": "field",
              "name": "current",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "The current page number (1-indexed).",
              "attribute": "current"
            },
            {
              "kind": "field",
              "name": "total",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "The total number of pages.",
              "attribute": "total"
            },
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "'full' | 'simple'"
              },
              "default": "'full'",
              "description": "The pagination variant.",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "centered",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Whether the pagination is centered.",
              "attribute": "centered"
            },
            {
              "kind": "field",
              "name": "_visiblePages",
              "type": {
                "text": "number[]"
              },
              "privacy": "private",
              "default": "[]"
            },
            {
              "kind": "method",
              "name": "handlePropsChange"
            },
            {
              "kind": "method",
              "name": "_updateVisiblePages",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_handlePageClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "page",
                  "type": {
                    "text": "number"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_handlePrevClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_handleNextClick",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "description": "Emitted when the page changes.",
              "name": "terra-page-change",
              "reactName": "onTerraPageChange",
              "eventName": "TerraPageChangeEvent"
            }
          ],
          "attributes": [
            {
              "name": "current",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "The current page number (1-indexed).",
              "fieldName": "current"
            },
            {
              "name": "total",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "The total number of pages.",
              "fieldName": "total"
            },
            {
              "name": "variant",
              "type": {
                "text": "'full' | 'simple'"
              },
              "default": "'full'",
              "description": "The pagination variant.",
              "fieldName": "variant"
            },
            {
              "name": "centered",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Whether the pagination is centered.",
              "fieldName": "centered"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Pagination is a navigational element that allows users to navigate between content or pages.",
          "tagNameWithoutPrefix": "pagination",
          "tagName": "terra-pagination",
          "customElement": true,
          "jsDoc": "/**\n * @summary Pagination is a navigational element that allows users to navigate between content or pages.\n * @documentation https://terra-ui.netlify.app/components/pagination\n * @status stable\n * @since 1.0\n *\n * @dependency terra-icon\n *\n * @slot - Content to display on the right side (e.g., rows per page dropdown). Only visible when variant is \"left\".\n *\n * @event terra-page-change - Emitted when the page changes.\n * @eventDetail { page: number } - The new page number.\n *\n * @csspart base - The component's base wrapper.\n * @csspart nav - The navigation container.\n * @csspart button - The page button elements.\n * @csspart button-current - The current page button.\n * @csspart ellipsis - The ellipsis element.\n * @csspart prev - The previous button.\n * @csspart next - The next button.\n * @csspart slot - The right-side slot container.\n *\n * @cssproperty --terra-pagination-button-color - The text color of page buttons.\n * @cssproperty --terra-pagination-button-background-color - The background color of page buttons.\n * @cssproperty --terra-pagination-button-color-hover - The text color of page buttons on hover.\n * @cssproperty --terra-pagination-button-background-color-hover - The background color of page buttons on hover.\n * @cssproperty --terra-pagination-button-color-current - The text color of the current page button.\n * @cssproperty --terra-pagination-button-background-color-current - The background color of the current page button.\n */",
          "documentation": "https://terra-ui.netlify.app/components/pagination",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-icon"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraPagination",
            "module": "components/pagination/pagination.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/plot/plot.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraPlot",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "#resizeObserver",
              "privacy": "private",
              "type": {
                "text": "ResizeObserver"
              }
            },
            {
              "kind": "field",
              "name": "base",
              "type": {
                "text": "Plotly.PlotlyHTMLElement"
              }
            },
            {
              "kind": "field",
              "name": "plotTitle",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "plotTitle"
            },
            {
              "kind": "field",
              "name": "layout",
              "type": {
                "text": "Partial<Plotly.Layout> | undefined"
              },
              "default": "{}",
              "attribute": "layout"
            },
            {
              "kind": "field",
              "name": "config",
              "type": {
                "text": "Partial<Plotly.Config> | undefined"
              },
              "default": "{}",
              "attribute": "config"
            },
            {
              "kind": "field",
              "name": "data",
              "type": {
                "text": "Array<Partial<Plotly.Data>>"
              },
              "default": "[]",
              "attribute": "data"
            },
            {
              "kind": "field",
              "name": "colors",
              "type": {
                "text": "string[]"
              },
              "default": "[\n        '#1f77b4', // blue\n        '#ff7f0e', // orange\n        '#2ca02c', // green\n        '#d62728', // red\n        '#9467bd', // purple\n        '#8c564b', // brown\n        '#e377c2', // pink\n        '#7f7f7f', // gray\n        '#bcbd22', // yellow-green\n        '#17becf', // cyan\n    ]",
              "description": "Optional: Colors to assign to each time series line",
              "attribute": "colors"
            },
            {
              "kind": "method",
              "name": "handleDataChange"
            },
            {
              "kind": "method",
              "name": "updatePlotWithData"
            },
            {
              "kind": "method",
              "name": "#handlePlotlyRelayout",
              "parameters": [
                {
                  "name": "e",
                  "type": {
                    "text": "Plotly.PlotRelayoutEvent"
                  }
                }
              ]
            }
          ],
          "attributes": [
            {
              "name": "plotTitle",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "plotTitle"
            },
            {
              "name": "layout",
              "type": {
                "text": "Partial<Plotly.Layout> | undefined"
              },
              "default": "{}",
              "fieldName": "layout"
            },
            {
              "name": "config",
              "type": {
                "text": "Partial<Plotly.Config> | undefined"
              },
              "default": "{}",
              "fieldName": "config"
            },
            {
              "name": "data",
              "type": {
                "text": "Array<Partial<Plotly.Data>>"
              },
              "default": "[]",
              "fieldName": "data"
            },
            {
              "name": "colors",
              "type": {
                "text": "string[]"
              },
              "default": "[\n        '#1f77b4', // blue\n        '#ff7f0e', // orange\n        '#2ca02c', // green\n        '#d62728', // red\n        '#9467bd', // purple\n        '#8c564b', // brown\n        '#e377c2', // pink\n        '#7f7f7f', // gray\n        '#bcbd22', // yellow-green\n        '#17becf', // cyan\n    ]",
              "description": "Optional: Colors to assign to each time series line",
              "fieldName": "colors"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "A web component for interactive graphs using Plotly.js.",
          "tagNameWithoutPrefix": "plot",
          "tagName": "terra-plot",
          "customElement": true,
          "jsDoc": "/**\n * @summary A web component for interactive graphs using Plotly.js.\n * @documentation https://terra-ui.netlify.app/components/plot\n * @status stable\n * @since 1.0\n *\n * @csspart base - The component's base wrapper.\n */",
          "documentation": "https://terra-ui.netlify.app/components/plot",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraPlot",
            "module": "components/plot/plot.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/plot-toolbar/plot-toolbar.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraPlotToolbar",
          "cssProperties": [
            {
              "description": "Controls the display of the help menu button. Set to `none` to hide it. Defaults to `flex`.",
              "name": "--terra-plot-toolbar-help-menu-display"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "slots": [
            {
              "description": "The default slot.",
              "name": ""
            },
            {
              "description": "An example slot.",
              "name": "example"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-icon': TerraIcon,\n        'terra-button': TerraButton,\n        'terra-map': TerraMap,\n    }"
            },
            {
              "kind": "field",
              "name": "catalogVariable",
              "type": {
                "text": "Variable"
              },
              "attribute": "catalogVariable"
            },
            {
              "kind": "field",
              "name": "variableEntryId",
              "type": {
                "text": "string"
              },
              "attribute": "variableEntryId"
            },
            {
              "kind": "field",
              "name": "plot",
              "type": {
                "text": "TerraPlot | undefined"
              },
              "attribute": "plot"
            },
            {
              "kind": "field",
              "name": "timeSeriesData",
              "type": {
                "text": "Partial<Plotly.Data>[] | Blob | undefined"
              },
              "attribute": "timeSeriesData"
            },
            {
              "kind": "field",
              "name": "location",
              "type": {
                "text": "string"
              },
              "attribute": "location"
            },
            {
              "kind": "field",
              "name": "startDate",
              "type": {
                "text": "string"
              },
              "attribute": "startDate"
            },
            {
              "kind": "field",
              "name": "endDate",
              "type": {
                "text": "string"
              },
              "attribute": "endDate"
            },
            {
              "kind": "field",
              "name": "cacheKey",
              "type": {
                "text": "string"
              },
              "attribute": "cacheKey"
            },
            {
              "kind": "field",
              "name": "dataType",
              "type": {
                "text": "DataType"
              },
              "attribute": "dataType"
            },
            {
              "kind": "field",
              "name": "showLocation",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "attribute": "show-location"
            },
            {
              "kind": "field",
              "name": "showDateRange",
              "type": {
                "text": "boolean"
              },
              "attribute": "show-date-range"
            },
            {
              "kind": "field",
              "name": "colormaps",
              "type": {
                "text": "string[]"
              },
              "default": "[]",
              "attribute": "colormaps"
            },
            {
              "kind": "field",
              "name": "colorMapName",
              "type": {
                "text": "string"
              },
              "default": "'viridis'",
              "attribute": "color-map-name",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "opacity",
              "type": {
                "text": "number"
              },
              "default": "1",
              "attribute": "opacity"
            },
            {
              "kind": "field",
              "name": "showCitation",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "show-citation"
            },
            {
              "kind": "field",
              "name": "applicationCitation",
              "type": {
                "text": "string | undefined"
              },
              "description": "if you include an application citation, it will be displayed in the citation panel alongside the dataset citation",
              "attribute": "application-citation"
            },
            {
              "kind": "field",
              "name": "mobileView",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "mobile-view",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "productLabel",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "product-label"
            },
            {
              "kind": "field",
              "name": "hideTitle",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "activeMenuItem",
              "type": {
                "text": "MenuNames"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "showLocationTooltip",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "locationMapValue",
              "type": {
                "text": "any"
              },
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "#tooltipTimeout",
              "privacy": "private",
              "type": {
                "text": "number | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "menu",
              "type": {
                "text": "HTMLMenuElement"
              }
            },
            {
              "kind": "field",
              "name": "_authController",
              "default": "new AuthController(this)"
            },
            {
              "kind": "field",
              "name": "#controller",
              "privacy": "private",
              "default": "new PlotToolbarController(this)"
            },
            {
              "kind": "method",
              "name": "handleFocus",
              "parameters": [
                {
                  "name": "_oldValue",
                  "type": {
                    "text": "MenuNames"
                  }
                },
                {
                  "name": "newValue",
                  "type": {
                    "text": "MenuNames"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "closeMenu"
            },
            {
              "kind": "method",
              "name": "#handleLocationMouseEnter"
            },
            {
              "kind": "method",
              "name": "#handleLocationMouseLeave"
            },
            {
              "kind": "method",
              "name": "#getLocationIcon"
            },
            {
              "kind": "method",
              "name": "#getDateRangeIcon"
            },
            {
              "kind": "method",
              "name": "#toggleMobileTitle"
            },
            {
              "kind": "method",
              "name": "#handleActiveMenuItem",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#handleMenuLeave",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "#onShowOpacityChange",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#onColorMapChange",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#showCheckBoxToggle",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "#renderGeotiffPanel"
            },
            {
              "kind": "method",
              "name": "#renderInfoPanel"
            },
            {
              "kind": "method",
              "name": "#renderCitationPanel"
            },
            {
              "kind": "method",
              "name": "#renderDownloadPanel"
            },
            {
              "kind": "method",
              "name": "#renderImageDownloadButtons",
              "parameters": [
                {
                  "name": "isMap",
                  "type": {
                    "text": "boolean"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#renderHelpPanel"
            },
            {
              "kind": "method",
              "name": "#renderJupyterNotebookPanel"
            },
            {
              "kind": "method",
              "name": "#handleJupyterNotebookClick"
            },
            {
              "kind": "method",
              "name": "#sendDataToJupyterNotebook",
              "parameters": [
                {
                  "name": "jupyterWindow",
                  "type": {
                    "text": "Window"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#sendTimeSeriesDataToJupyterNotebook",
              "parameters": [
                {
                  "name": "jupyterWindow",
                  "type": {
                    "text": "Window"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#sendMapDataToJupyterNotebook",
              "parameters": [
                {
                  "name": "jupyterWindow",
                  "type": {
                    "text": "Window"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#downloadPNG",
              "parameters": [
                {
                  "name": "_event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#downloadJPG",
              "parameters": [
                {
                  "name": "_event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#downloadCSV",
              "parameters": [
                {
                  "name": "_event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#convertToCSV",
              "return": {
                "type": {
                  "text": "string"
                }
              },
              "parameters": [
                {
                  "name": "data",
                  "type": {
                    "text": "any[]"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#downloadGeotiff"
            },
            {
              "kind": "method",
              "name": "#downloadMapPNG"
            },
            {
              "kind": "method",
              "name": "#downloadMapJPG"
            }
          ],
          "attributes": [
            {
              "name": "catalogVariable",
              "type": {
                "text": "Variable"
              },
              "fieldName": "catalogVariable"
            },
            {
              "name": "variableEntryId",
              "type": {
                "text": "string"
              },
              "fieldName": "variableEntryId"
            },
            {
              "name": "plot",
              "type": {
                "text": "TerraPlot | undefined"
              },
              "fieldName": "plot"
            },
            {
              "name": "timeSeriesData",
              "type": {
                "text": "Partial<Plotly.Data>[] | Blob | undefined"
              },
              "fieldName": "timeSeriesData"
            },
            {
              "name": "location",
              "type": {
                "text": "string"
              },
              "fieldName": "location"
            },
            {
              "name": "startDate",
              "type": {
                "text": "string"
              },
              "fieldName": "startDate"
            },
            {
              "name": "endDate",
              "type": {
                "text": "string"
              },
              "fieldName": "endDate"
            },
            {
              "name": "cacheKey",
              "type": {
                "text": "string"
              },
              "fieldName": "cacheKey"
            },
            {
              "name": "dataType",
              "type": {
                "text": "DataType"
              },
              "fieldName": "dataType"
            },
            {
              "name": "show-location",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "fieldName": "showLocation"
            },
            {
              "name": "show-date-range",
              "type": {
                "text": "boolean"
              },
              "fieldName": "showDateRange"
            },
            {
              "name": "colormaps",
              "type": {
                "text": "string[]"
              },
              "default": "[]",
              "fieldName": "colormaps"
            },
            {
              "name": "color-map-name",
              "type": {
                "text": "string"
              },
              "default": "'viridis'",
              "fieldName": "colorMapName"
            },
            {
              "name": "opacity",
              "type": {
                "text": "number"
              },
              "default": "1",
              "fieldName": "opacity"
            },
            {
              "name": "show-citation",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "showCitation"
            },
            {
              "name": "application-citation",
              "type": {
                "text": "string | undefined"
              },
              "description": "if you include an application citation, it will be displayed in the citation panel alongside the dataset citation",
              "fieldName": "applicationCitation"
            },
            {
              "name": "mobile-view",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "mobileView"
            },
            {
              "name": "product-label",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "productLabel"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Short summary of the component's intended use.",
          "tagNameWithoutPrefix": "plot-toolbar",
          "tagName": "terra-plot-toolbar",
          "customElement": true,
          "jsDoc": "/**\n * @summary Short summary of the component's intended use.\n * @documentation https://terra-ui.netlify.app/components/plot-toolbar\n * @status stable\n * @since 1.0\n *\n * @dependency terra-example\n *\n * @slot - The default slot.\n * @slot example - An example slot.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --terra-plot-toolbar-help-menu-display - Controls the display of the help menu button. Set to `none` to hide it. Defaults to `flex`.\n */",
          "documentation": "https://terra-ui.netlify.app/components/plot-toolbar",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-example"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraPlotToolbar",
            "module": "components/plot-toolbar/plot-toolbar.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/progress-bar/progress-bar.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraProgressBar",
          "cssProperties": [
            {
              "description": "The progress bar's height.",
              "name": "--height"
            },
            {
              "description": "The color of the track.",
              "name": "--track-color"
            },
            {
              "description": "The color of the indicator.",
              "name": "--indicator-color"
            },
            {
              "description": "The color of the label.",
              "name": "--label-color"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The progress bar's indicator.",
              "name": "indicator"
            },
            {
              "description": "The progress bar's label.",
              "name": "label"
            }
          ],
          "slots": [
            {
              "description": "A label to show inside the progress indicator.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The current progress as a percentage, 0 to 100.",
              "attribute": "value",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "indeterminate",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.",
              "attribute": "indeterminate",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "A custom label for assistive devices.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "| 'default'\n        | 'primary'\n        | 'success'\n        | 'warning'\n        | 'danger'"
              },
              "default": "'primary'",
              "description": "The progress bar's theme variant.",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "title"
            }
          ],
          "attributes": [
            {
              "name": "value",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The current progress as a percentage, 0 to 100.",
              "fieldName": "value"
            },
            {
              "name": "indeterminate",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, percentage is ignored, the label is hidden, and the progress bar is drawn in an indeterminate state.",
              "fieldName": "indeterminate"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "A custom label for assistive devices.",
              "fieldName": "label"
            },
            {
              "name": "variant",
              "type": {
                "text": "| 'default'\n        | 'primary'\n        | 'success'\n        | 'warning'\n        | 'danger'"
              },
              "default": "'primary'",
              "description": "The progress bar's theme variant.",
              "fieldName": "variant"
            },
            {
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "title"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Progress bars are used to show the status of an ongoing operation.",
          "tagNameWithoutPrefix": "progress-bar",
          "tagName": "terra-progress-bar",
          "customElement": true,
          "jsDoc": "/**\n * @summary Progress bars are used to show the status of an ongoing operation.\n * @documentation https://terra-ui.netlify.app/components/progress-bar\n * @status stable\n * @since 1.0\n *\n * @slot - A label to show inside the progress indicator.\n *\n * @csspart base - The component's base wrapper.\n * @csspart indicator - The progress bar's indicator.\n * @csspart label - The progress bar's label.\n *\n * @cssproperty --height - The progress bar's height.\n * @cssproperty --track-color - The color of the track.\n * @cssproperty --indicator-color - The color of the indicator.\n * @cssproperty --label-color - The color of the label.\n */",
          "documentation": "https://terra-ui.netlify.app/components/progress-bar",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraProgressBar",
            "module": "components/progress-bar/progress-bar.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/popup/popup.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraPopup",
          "cssProperties": [
            {
              "description": "The size of the arrow. Note that an arrow won't be shown unless the `arrow` attribute is used.",
              "name": "--arrow-size",
              "default": "6px"
            },
            {
              "description": "The color of the arrow.",
              "name": "--arrow-color",
              "default": "var(--terra-color-carbon-black)"
            },
            {
              "description": "A read-only custom property that determines the amount of width the popup can be before overflowing. Useful for positioning child elements that need to overflow. This property is only available when using `auto-size`.",
              "name": "--auto-size-available-width"
            },
            {
              "description": "A read-only custom property that determines the amount of height the popup can be before overflowing. Useful for positioning child elements that need to overflow. This property is only available when using `auto-size`.",
              "name": "--auto-size-available-height"
            }
          ],
          "cssParts": [
            {
              "description": "The arrow's container. Avoid setting `top|bottom|left|right` properties, as these values are assigned dynamically as the popup moves. This is most useful for applying a background color to match the popup, and maybe a border or box shadow.",
              "name": "arrow"
            },
            {
              "description": "The popup's container. Useful for setting a background color, box shadow, etc.",
              "name": "popup"
            },
            {
              "description": "The hover bridge element. Only available when the `hover-bridge` option is enabled.",
              "name": "hover-bridge"
            }
          ],
          "slots": [
            {
              "description": "The popup's content.",
              "name": ""
            },
            {
              "description": "The element the popup will be anchored to. If the anchor lives outside of the popup, you can use the `anchor` attribute or property instead.",
              "name": "anchor"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "anchorEl",
              "type": {
                "text": "Element | VirtualElement | null"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "cleanup",
              "type": {
                "text": "ReturnType<typeof autoUpdate> | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "popup",
              "type": {
                "text": "HTMLElement"
              },
              "description": "A reference to the internal popup container. Useful for animating and styling the popup with JavaScript."
            },
            {
              "kind": "field",
              "name": "arrowEl",
              "type": {
                "text": "HTMLElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "anchor",
              "type": {
                "text": "Element | string | VirtualElement"
              },
              "description": "The element the popup will be anchored to. If the anchor lives outside of the popup, you can provide the anchor\nelement `id`, a DOM element reference, or a `VirtualElement`. If the anchor lives inside the popup, use the\n`anchor` slot instead.",
              "attribute": "anchor"
            },
            {
              "kind": "field",
              "name": "active",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Activates the positioning logic and shows the popup. When this attribute is removed, the positioning logic is torn\ndown and the popup will be hidden.",
              "attribute": "active",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "placement",
              "type": {
                "text": "| 'top'\n        | 'top-start'\n        | 'top-end'\n        | 'bottom'\n        | 'bottom-start'\n        | 'bottom-end'\n        | 'right'\n        | 'right-start'\n        | 'right-end'\n        | 'left'\n        | 'left-start'\n        | 'left-end'"
              },
              "default": "'top'",
              "description": "The preferred placement of the popup. Note that the actual placement will vary as configured to keep the\npanel inside of the viewport.",
              "attribute": "placement",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "strategy",
              "type": {
                "text": "'absolute' | 'fixed'"
              },
              "default": "'absolute'",
              "description": "Determines how the popup is positioned. The `absolute` strategy works well in most cases, but if overflow is\nclipped, using a `fixed` position strategy can often workaround it.",
              "attribute": "strategy",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "distance",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The distance in pixels from which to offset the panel away from its anchor.",
              "attribute": "distance"
            },
            {
              "kind": "field",
              "name": "skidding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The distance in pixels from which to offset the panel along its anchor.",
              "attribute": "skidding"
            },
            {
              "kind": "field",
              "name": "arrow",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Attaches an arrow to the popup. The arrow's size and color can be customized using the `--arrow-size` and\n`--arrow-color` custom properties. For additional customizations, you can also target the arrow using\n`::part(arrow)` in your stylesheet.",
              "attribute": "arrow"
            },
            {
              "kind": "field",
              "name": "arrowPlacement",
              "type": {
                "text": "| 'start'\n        | 'end'\n        | 'center'\n        | 'anchor'"
              },
              "default": "'anchor'",
              "description": "The placement of the arrow. The default is `anchor`, which will align the arrow as close to the center of the\nanchor as possible, considering available space and `arrow-padding`. A value of `start`, `end`, or `center` will\nalign the arrow to the start, end, or center of the popover instead.",
              "attribute": "arrow-placement"
            },
            {
              "kind": "field",
              "name": "arrowPadding",
              "type": {
                "text": "number"
              },
              "default": "10",
              "description": "The amount of padding between the arrow and the edges of the popup. If the popup has a border-radius, for example,\nthis will prevent it from overflowing the corners.",
              "attribute": "arrow-padding"
            },
            {
              "kind": "field",
              "name": "flip",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When set, placement of the popup will flip to the opposite site to keep it in view. You can use\n`flipFallbackPlacements` to further configure how the fallback placement is determined.",
              "attribute": "flip"
            },
            {
              "kind": "field",
              "name": "flipFallbackPlacements",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "If the preferred placement doesn't fit, popup will be tested in these fallback placements until one fits. Must be a\nstring of any number of placements separated by a space, e.g. \"top bottom left\". If no placement fits, the flip\nfallback strategy will be used instead.",
              "attribute": "flip-fallback-placements"
            },
            {
              "kind": "field",
              "name": "flipFallbackStrategy",
              "type": {
                "text": "| 'best-fit'\n        | 'initial'"
              },
              "default": "'best-fit'",
              "description": "When neither the preferred placement nor the fallback placements fit, this value will be used to determine whether\nthe popup should be positioned using the best available fit based on available space or as it was initially\npreferred.",
              "attribute": "flip-fallback-strategy"
            },
            {
              "kind": "field",
              "name": "flipBoundary",
              "type": {
                "text": "Element | Element[]"
              },
              "description": "The flip boundary describes clipping element(s) that overflow will be checked relative to when flipping. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
              "attribute": "flipBoundary"
            },
            {
              "kind": "field",
              "name": "flipPadding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The amount of padding, in pixels, to exceed before the flip behavior will occur.",
              "attribute": "flip-padding"
            },
            {
              "kind": "field",
              "name": "shift",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Moves the popup along the axis to keep it in view when clipped.",
              "attribute": "shift"
            },
            {
              "kind": "field",
              "name": "shiftBoundary",
              "type": {
                "text": "Element | Element[]"
              },
              "description": "The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
              "attribute": "shiftBoundary"
            },
            {
              "kind": "field",
              "name": "shiftPadding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The amount of padding, in pixels, to exceed before the shift behavior will occur.",
              "attribute": "shift-padding"
            },
            {
              "kind": "field",
              "name": "autoSize",
              "type": {
                "text": "'horizontal' | 'vertical' | 'both'"
              },
              "description": "When set, this will cause the popup to automatically resize itself to prevent it from overflowing.",
              "attribute": "auto-size"
            },
            {
              "kind": "field",
              "name": "sync",
              "type": {
                "text": "'width' | 'height' | 'both'"
              },
              "description": "Syncs the popup's width or height to that of the anchor element.",
              "attribute": "sync"
            },
            {
              "kind": "field",
              "name": "autoSizeBoundary",
              "type": {
                "text": "Element | Element[]"
              },
              "description": "The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
              "attribute": "autoSizeBoundary"
            },
            {
              "kind": "field",
              "name": "autoSizePadding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The amount of padding, in pixels, to exceed before the auto-size behavior will occur.",
              "attribute": "auto-size-padding"
            },
            {
              "kind": "field",
              "name": "hoverBridge",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When a gap exists between the anchor and the popup element, this option will add a \"hover bridge\" that fills the\ngap using an invisible element. This makes listening for events such as `mouseenter` and `mouseleave` more sane\nbecause the pointer never technically leaves the element. The hover bridge will only be drawn when the popover is\nactive.",
              "attribute": "hover-bridge"
            },
            {
              "kind": "method",
              "name": "handleAnchorChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "start",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "stop",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "Promise<void>"
                }
              }
            },
            {
              "kind": "method",
              "name": "reposition",
              "description": "Forces the popup to recalculate and reposition itself."
            },
            {
              "kind": "field",
              "name": "updateHoverBridge",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "description": "Emitted when the popup is repositioned. This event can fire a lot, so avoid putting expensive operations in your listener or consider debouncing it.",
              "name": "terra-reposition",
              "reactName": "onTerraReposition",
              "eventName": "TerraRepositionEvent"
            }
          ],
          "attributes": [
            {
              "name": "anchor",
              "type": {
                "text": "Element | string | VirtualElement"
              },
              "description": "The element the popup will be anchored to. If the anchor lives outside of the popup, you can provide the anchor\nelement `id`, a DOM element reference, or a `VirtualElement`. If the anchor lives inside the popup, use the\n`anchor` slot instead.",
              "fieldName": "anchor"
            },
            {
              "name": "active",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Activates the positioning logic and shows the popup. When this attribute is removed, the positioning logic is torn\ndown and the popup will be hidden.",
              "fieldName": "active"
            },
            {
              "name": "placement",
              "type": {
                "text": "| 'top'\n        | 'top-start'\n        | 'top-end'\n        | 'bottom'\n        | 'bottom-start'\n        | 'bottom-end'\n        | 'right'\n        | 'right-start'\n        | 'right-end'\n        | 'left'\n        | 'left-start'\n        | 'left-end'"
              },
              "default": "'top'",
              "description": "The preferred placement of the popup. Note that the actual placement will vary as configured to keep the\npanel inside of the viewport.",
              "fieldName": "placement"
            },
            {
              "name": "strategy",
              "type": {
                "text": "'absolute' | 'fixed'"
              },
              "default": "'absolute'",
              "description": "Determines how the popup is positioned. The `absolute` strategy works well in most cases, but if overflow is\nclipped, using a `fixed` position strategy can often workaround it.",
              "fieldName": "strategy"
            },
            {
              "name": "distance",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The distance in pixels from which to offset the panel away from its anchor.",
              "fieldName": "distance"
            },
            {
              "name": "skidding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The distance in pixels from which to offset the panel along its anchor.",
              "fieldName": "skidding"
            },
            {
              "name": "arrow",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Attaches an arrow to the popup. The arrow's size and color can be customized using the `--arrow-size` and\n`--arrow-color` custom properties. For additional customizations, you can also target the arrow using\n`::part(arrow)` in your stylesheet.",
              "fieldName": "arrow"
            },
            {
              "name": "arrow-placement",
              "type": {
                "text": "| 'start'\n        | 'end'\n        | 'center'\n        | 'anchor'"
              },
              "default": "'anchor'",
              "description": "The placement of the arrow. The default is `anchor`, which will align the arrow as close to the center of the\nanchor as possible, considering available space and `arrow-padding`. A value of `start`, `end`, or `center` will\nalign the arrow to the start, end, or center of the popover instead.",
              "fieldName": "arrowPlacement"
            },
            {
              "name": "arrow-padding",
              "type": {
                "text": "number"
              },
              "default": "10",
              "description": "The amount of padding between the arrow and the edges of the popup. If the popup has a border-radius, for example,\nthis will prevent it from overflowing the corners.",
              "fieldName": "arrowPadding"
            },
            {
              "name": "flip",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When set, placement of the popup will flip to the opposite site to keep it in view. You can use\n`flipFallbackPlacements` to further configure how the fallback placement is determined.",
              "fieldName": "flip"
            },
            {
              "name": "flip-fallback-placements",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "If the preferred placement doesn't fit, popup will be tested in these fallback placements until one fits. Must be a\nstring of any number of placements separated by a space, e.g. \"top bottom left\". If no placement fits, the flip\nfallback strategy will be used instead.",
              "fieldName": "flipFallbackPlacements"
            },
            {
              "name": "flip-fallback-strategy",
              "type": {
                "text": "| 'best-fit'\n        | 'initial'"
              },
              "default": "'best-fit'",
              "description": "When neither the preferred placement nor the fallback placements fit, this value will be used to determine whether\nthe popup should be positioned using the best available fit based on available space or as it was initially\npreferred.",
              "fieldName": "flipFallbackStrategy"
            },
            {
              "name": "flipBoundary",
              "type": {
                "text": "Element | Element[]"
              },
              "description": "The flip boundary describes clipping element(s) that overflow will be checked relative to when flipping. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
              "fieldName": "flipBoundary"
            },
            {
              "name": "flip-padding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The amount of padding, in pixels, to exceed before the flip behavior will occur.",
              "fieldName": "flipPadding"
            },
            {
              "name": "shift",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Moves the popup along the axis to keep it in view when clipped.",
              "fieldName": "shift"
            },
            {
              "name": "shiftBoundary",
              "type": {
                "text": "Element | Element[]"
              },
              "description": "The shift boundary describes clipping element(s) that overflow will be checked relative to when shifting. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
              "fieldName": "shiftBoundary"
            },
            {
              "name": "shift-padding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The amount of padding, in pixels, to exceed before the shift behavior will occur.",
              "fieldName": "shiftPadding"
            },
            {
              "name": "auto-size",
              "type": {
                "text": "'horizontal' | 'vertical' | 'both'"
              },
              "description": "When set, this will cause the popup to automatically resize itself to prevent it from overflowing.",
              "fieldName": "autoSize"
            },
            {
              "name": "sync",
              "type": {
                "text": "'width' | 'height' | 'both'"
              },
              "description": "Syncs the popup's width or height to that of the anchor element.",
              "fieldName": "sync"
            },
            {
              "name": "autoSizeBoundary",
              "type": {
                "text": "Element | Element[]"
              },
              "description": "The auto-size boundary describes clipping element(s) that overflow will be checked relative to when resizing. By\ndefault, the boundary includes overflow ancestors that will cause the element to be clipped. If needed, you can\nchange the boundary by passing a reference to one or more elements to this property.",
              "fieldName": "autoSizeBoundary"
            },
            {
              "name": "auto-size-padding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The amount of padding, in pixels, to exceed before the auto-size behavior will occur.",
              "fieldName": "autoSizePadding"
            },
            {
              "name": "hover-bridge",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When a gap exists between the anchor and the popup element, this option will add a \"hover bridge\" that fills the\ngap using an invisible element. This makes listening for events such as `mouseenter` and `mouseleave` more sane\nbecause the pointer never technically leaves the element. The hover bridge will only be drawn when the popover is\nactive.",
              "fieldName": "hoverBridge"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Popup is a utility that lets you declaratively anchor \"popup\" containers to another element.",
          "tagNameWithoutPrefix": "popup",
          "tagName": "terra-popup",
          "customElement": true,
          "jsDoc": "/**\n * @summary Popup is a utility that lets you declaratively anchor \"popup\" containers to another element.\n * @documentation https://terra-ui.netlify.app/components/popup\n * @status stable\n * @since 1.0\n *\n * @event terra-reposition - Emitted when the popup is repositioned. This event can fire a lot, so avoid putting expensive\n *  operations in your listener or consider debouncing it.\n *\n * @slot - The popup's content.\n * @slot anchor - The element the popup will be anchored to. If the anchor lives outside of the popup, you can use the\n *  `anchor` attribute or property instead.\n *\n * @csspart arrow - The arrow's container. Avoid setting `top|bottom|left|right` properties, as these values are\n *  assigned dynamically as the popup moves. This is most useful for applying a background color to match the popup, and\n *  maybe a border or box shadow.\n * @csspart popup - The popup's container. Useful for setting a background color, box shadow, etc.\n * @csspart hover-bridge - The hover bridge element. Only available when the `hover-bridge` option is enabled.\n *\n * @cssproperty [--arrow-size=6px] - The size of the arrow. Note that an arrow won't be shown unless the `arrow`\n *  attribute is used.\n * @cssproperty [--arrow-color=var(--terra-color-carbon-black)] - The color of the arrow.\n * @cssproperty [--auto-size-available-width] - A read-only custom property that determines the amount of width the\n *  popup can be before overflowing. Useful for positioning child elements that need to overflow. This property is only\n *  available when using `auto-size`.\n * @cssproperty [--auto-size-available-height] - A read-only custom property that determines the amount of height the\n *  popup can be before overflowing. Useful for positioning child elements that need to overflow. This property is only\n *  available when using `auto-size`.\n */",
          "documentation": "https://terra-ui.netlify.app/components/popup",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraPopup",
            "module": "components/popup/popup.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/radio/radio.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraRadio",
          "cssProperties": [
            {
              "description": "All radio design tokens from horizon.css are supported.",
              "name": "--terra-radio-*"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The circular container that wraps the radio's checked state.",
              "name": "control"
            },
            {
              "description": "The radio control when the radio is checked.",
              "name": "control--checked"
            },
            {
              "description": "The checked icon, an SVG element.",
              "name": "checked-icon"
            },
            {
              "description": "The container that wraps the radio's label.",
              "name": "label"
            }
          ],
          "slots": [
            {
              "description": "The radio's label.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this, {\n        value: (control: TerraRadio) =>\n            control.checked ? control.value || 'on' : undefined,\n        defaultValue: (control: TerraRadio) => control.defaultChecked,\n        setValue: (control: TerraRadio, checked: boolean) =>\n            (control.checked = checked),\n    })"
            },
            {
              "kind": "field",
              "name": "input",
              "type": {
                "text": "HTMLInputElement"
              }
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "title"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the radio, submitted as a name/value pair with form data.",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The radio's value. When selected, the radio group will receive this value.",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The radio's size. When used inside a radio group, the size will be determined by the radio group's size so this\nattribute can typically be omitted.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the radio.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "checked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the radio in a checked state.",
              "attribute": "checked",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "defaultChecked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "The default value of the form control. Primarily used for resetting the form control."
            },
            {
              "kind": "field",
              "name": "form",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "attribute": "form",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the radio a required field.",
              "attribute": "required",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "validity",
              "description": "Gets the validity state object",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "validationMessage",
              "description": "Gets the validation message",
              "readonly": true
            },
            {
              "kind": "method",
              "name": "handleBlur",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleFocus",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleInput",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleInvalid",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleDisabledChange"
            },
            {
              "kind": "method",
              "name": "handleCheckedChange"
            },
            {
              "kind": "method",
              "name": "click",
              "description": "Simulates a click on the radio."
            },
            {
              "kind": "method",
              "name": "focus",
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "FocusOptions"
                  }
                }
              ],
              "description": "Sets focus on the radio."
            },
            {
              "kind": "method",
              "name": "blur",
              "description": "Removes focus from the radio."
            },
            {
              "kind": "method",
              "name": "checkValidity",
              "description": "Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid."
            },
            {
              "kind": "method",
              "name": "getForm",
              "return": {
                "type": {
                  "text": "HTMLFormElement | null"
                }
              },
              "description": "Gets the associated form, if one exists."
            },
            {
              "kind": "method",
              "name": "reportValidity",
              "description": "Checks for validity and shows the browser's validation message if the control is invalid."
            },
            {
              "kind": "method",
              "name": "setCustomValidity",
              "parameters": [
                {
                  "name": "message",
                  "type": {
                    "text": "string"
                  }
                }
              ],
              "description": "Sets a custom validation message. The value provided will be shown to the user when the form is submitted. To clear\nthe custom validation message, call this method with an empty string."
            }
          ],
          "events": [
            {
              "description": "Emitted when the radio loses focus.",
              "name": "terra-blur",
              "reactName": "onTerraBlur",
              "eventName": "TerraBlurEvent"
            },
            {
              "description": "Emitted when the checked state changes.",
              "name": "terra-change",
              "reactName": "onTerraChange",
              "eventName": "TerraChangeEvent"
            },
            {
              "description": "Emitted when the radio gains focus.",
              "name": "terra-focus",
              "reactName": "onTerraFocus",
              "eventName": "TerraFocusEvent"
            },
            {
              "description": "Emitted when the radio receives input.",
              "name": "terra-input",
              "reactName": "onTerraInput",
              "eventName": "TerraInputEvent"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "terra-invalid",
              "reactName": "onTerraInvalid",
              "eventName": "TerraInvalidEvent"
            }
          ],
          "attributes": [
            {
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "title"
            },
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the radio, submitted as a name/value pair with form data.",
              "fieldName": "name"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The radio's value. When selected, the radio group will receive this value.",
              "fieldName": "value"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The radio's size. When used inside a radio group, the size will be determined by the radio group's size so this\nattribute can typically be omitted.",
              "fieldName": "size"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the radio.",
              "fieldName": "disabled"
            },
            {
              "name": "checked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the radio in a checked state.",
              "fieldName": "checked"
            },
            {
              "name": "form",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "fieldName": "form"
            },
            {
              "name": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the radio a required field.",
              "fieldName": "required"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Radio buttons are a form field used when only a single selection can be made from a list.",
          "tagNameWithoutPrefix": "radio",
          "tagName": "terra-radio",
          "customElement": true,
          "jsDoc": "/**\n * @summary Radio buttons are a form field used when only a single selection can be made from a list.\n * @documentation https://terra-ui.netlify.app/components/radio\n * @status stable\n * @since 1.0\n *\n * @slot - The radio's label.\n *\n * @event terra-blur - Emitted when the radio loses focus.\n * @event terra-change - Emitted when the checked state changes.\n * @event terra-focus - Emitted when the radio gains focus.\n * @event terra-input - Emitted when the radio receives input.\n * @event terra-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n *\n * @csspart base - The component's base wrapper.\n * @csspart control - The circular container that wraps the radio's checked state.\n * @csspart control--checked - The radio control when the radio is checked.\n * @csspart checked-icon - The checked icon, an SVG element.\n * @csspart label - The container that wraps the radio's label.\n *\n * @cssproperty --terra-radio-* - All radio design tokens from horizon.css are supported.\n */",
          "documentation": "https://terra-ui.netlify.app/components/radio",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraRadio",
            "module": "components/radio/radio.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/radio-group/radio-group.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraRadioGroup",
          "cssProperties": [
            {
              "description": "All radio group design tokens from horizon.css are supported.",
              "name": "--terra-radio-group-*"
            }
          ],
          "cssParts": [
            {
              "description": "The form control that wraps the label, input, and help text.",
              "name": "form-control"
            },
            {
              "description": "The label's wrapper.",
              "name": "form-control-label"
            },
            {
              "description": "The input's wrapper.",
              "name": "form-control-input"
            },
            {
              "description": "The help text's wrapper.",
              "name": "form-control-help-text"
            }
          ],
          "slots": [
            {
              "description": "The default slot where `<terra-radio>` elements are placed.",
              "name": ""
            },
            {
              "description": "The radio group's label. Required for proper accessibility. Alternatively, you can use the `label` attribute.",
              "name": "label"
            },
            {
              "description": "Text that describes how to use the radio group. Alternatively, you can use the `help-text` attribute.",
              "name": "help-text"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "protected",
              "readonly": true,
              "default": "new FormControlController(this)"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(\n        this,\n        'help-text',\n        'label'\n    )"
            },
            {
              "kind": "field",
              "name": "customValidityMessage",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "default": "''"
            },
            {
              "kind": "field",
              "name": "validationTimeout",
              "type": {
                "text": "number"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "defaultSlot",
              "type": {
                "text": "HTMLSlotElement"
              }
            },
            {
              "kind": "field",
              "name": "validationInput",
              "type": {
                "text": "HTMLInputElement"
              }
            },
            {
              "kind": "field",
              "name": "errorMessage",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "default": "''"
            },
            {
              "kind": "field",
              "name": "defaultValue",
              "type": {
                "text": "string"
              },
              "default": "''"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The radio group's label. Required for proper accessibility. If you need to display HTML, use the `label` slot\ninstead.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The radio groups's help text. If you need to display HTML, use the `help-text` slot instead.",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "'option'",
              "description": "The name of the radio group, submitted as a name/value pair with form data.",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The current value of the radio group, submitted as a name/value pair with form data.",
              "attribute": "value",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The radio group's size. This size will be applied to all child radios and radio buttons.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "form",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "attribute": "form",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Ensures a child radio is checked before allowing the containing form to submit.",
              "attribute": "required",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "validity",
              "description": "Gets the validity state object",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "validationMessage",
              "description": "Gets the validation message",
              "readonly": true
            },
            {
              "kind": "method",
              "name": "getAllRadios",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "TerraRadio[]"
                }
              }
            },
            {
              "kind": "method",
              "name": "handleRadioClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleLabelClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleInvalid",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "syncRadioElements",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "syncRadios",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "updateCheckedRadio",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleNameChange"
            },
            {
              "kind": "method",
              "name": "handleSizeChange"
            },
            {
              "kind": "method",
              "name": "handleValueChange"
            },
            {
              "kind": "method",
              "name": "checkValidity",
              "description": "Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid."
            },
            {
              "kind": "method",
              "name": "getForm",
              "return": {
                "type": {
                  "text": "HTMLFormElement | null"
                }
              },
              "description": "Gets the associated form, if one exists."
            },
            {
              "kind": "method",
              "name": "reportValidity",
              "return": {
                "type": {
                  "text": "boolean"
                }
              },
              "description": "Checks for validity and shows the browser's validation message if the control is invalid."
            },
            {
              "kind": "method",
              "name": "setCustomValidity",
              "parameters": [
                {
                  "name": "message",
                  "default": "''"
                }
              ],
              "description": "Sets a custom validation message. Pass an empty string to restore validity."
            },
            {
              "kind": "method",
              "name": "focus",
              "privacy": "public",
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "FocusOptions"
                  }
                }
              ],
              "description": "Sets focus on the radio-group."
            }
          ],
          "events": [
            {
              "description": "Emitted when the radio group's selected value changes.",
              "name": "terra-change",
              "reactName": "onTerraChange",
              "eventName": "TerraChangeEvent"
            },
            {
              "description": "Emitted when the radio group receives user input.",
              "name": "terra-input",
              "reactName": "onTerraInput",
              "eventName": "TerraInputEvent"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "terra-invalid",
              "reactName": "onTerraInvalid",
              "eventName": "TerraInvalidEvent"
            }
          ],
          "attributes": [
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The radio group's label. Required for proper accessibility. If you need to display HTML, use the `label` slot\ninstead.",
              "fieldName": "label"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The radio groups's help text. If you need to display HTML, use the `help-text` slot instead.",
              "fieldName": "helpText"
            },
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "'option'",
              "description": "The name of the radio group, submitted as a name/value pair with form data.",
              "fieldName": "name"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The current value of the radio group, submitted as a name/value pair with form data.",
              "fieldName": "value"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The radio group's size. This size will be applied to all child radios and radio buttons.",
              "fieldName": "size"
            },
            {
              "name": "form",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "fieldName": "form"
            },
            {
              "name": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Ensures a child radio is checked before allowing the containing form to submit.",
              "fieldName": "required"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Radio groups are used to group multiple radio buttons so they function as a single form control.",
          "tagNameWithoutPrefix": "radio-group",
          "tagName": "terra-radio-group",
          "customElement": true,
          "jsDoc": "/**\n * @summary Radio groups are used to group multiple radio buttons so they function as a single form control.\n * @documentation https://terra-ui.netlify.app/components/radio-group\n * @status stable\n * @since 1.0\n *\n * @slot - The default slot where `<terra-radio>` elements are placed.\n * @slot label - The radio group's label. Required for proper accessibility. Alternatively, you can use the `label`\n *  attribute.\n * @slot help-text - Text that describes how to use the radio group. Alternatively, you can use the `help-text` attribute.\n *\n * @event terra-change - Emitted when the radio group's selected value changes.\n * @event terra-input - Emitted when the radio group receives user input.\n * @event terra-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n *\n * @csspart form-control - The form control that wraps the label, input, and help text.\n * @csspart form-control-label - The label's wrapper.\n * @csspart form-control-input - The input's wrapper.\n * @csspart form-control-help-text - The help text's wrapper.\n *\n * @cssproperty --terra-radio-group-* - All radio group design tokens from horizon.css are supported.\n */",
          "documentation": "https://terra-ui.netlify.app/components/radio-group",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraRadioGroup",
            "module": "components/radio-group/radio-group.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/scroll-hint/scroll-hint.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraScrollHint",
          "cssProperties": [
            {
              "description": "The background color of the icon circle.",
              "name": "--terra-scroll-hint-icon-background-color"
            },
            {
              "description": "The color of the chevron icon.",
              "name": "--terra-scroll-hint-icon-color"
            },
            {
              "description": "The color of the text.",
              "name": "--terra-scroll-hint-text-color"
            },
            {
              "description": "The color of the pulsing ring.",
              "name": "--terra-scroll-hint-ring-color"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The clickable button element.",
              "name": "button"
            },
            {
              "description": "The container for the icon and pulsing ring.",
              "name": "icon-container"
            },
            {
              "description": "The chevron icon.",
              "name": "icon"
            },
            {
              "description": "The pulsing ring around the icon.",
              "name": "ring"
            },
            {
              "description": "The \"SCROLL TO CONTINUE\" text.",
              "name": "text"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-icon': TerraIcon,\n    }"
            },
            {
              "kind": "field",
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, the component will be positioned inline in the DOM flow instead of fixed to the viewport.",
              "attribute": "inline",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "dark",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, forces dark mode styles regardless of system preference. Useful when placing the component on a dark background.",
              "attribute": "dark",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "inactivityDelay",
              "type": {
                "text": "number"
              },
              "default": "3000",
              "description": "The delay in milliseconds before showing the scroll hint after inactivity. Defaults to 3000ms (3 seconds).",
              "attribute": "inactivityDelay"
            },
            {
              "kind": "field",
              "name": "visible",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "method",
              "name": "handleInlineChange"
            },
            {
              "kind": "field",
              "name": "scrollTimeout",
              "type": {
                "text": "number | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "clickTimeout",
              "type": {
                "text": "number | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "inactivityTimeout",
              "type": {
                "text": "number | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "setupEventListeners",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "cleanupEventListeners",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleScroll",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleDocumentClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "isAtBottomOfPage",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "boolean"
                }
              }
            },
            {
              "kind": "field",
              "name": "handleClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "scrollDown",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "hide",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "startInactivityTimer",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "clearTimers",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "description": "Emitted when the scroll hint is clicked and scrolling begins.",
              "name": "terra-scroll",
              "reactName": "onTerraScroll",
              "eventName": "TerraScrollEvent"
            }
          ],
          "attributes": [
            {
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, the component will be positioned inline in the DOM flow instead of fixed to the viewport.",
              "fieldName": "inline"
            },
            {
              "name": "dark",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, forces dark mode styles regardless of system preference. Useful when placing the component on a dark background.",
              "fieldName": "dark"
            },
            {
              "name": "inactivityDelay",
              "type": {
                "text": "number"
              },
              "default": "3000",
              "description": "The delay in milliseconds before showing the scroll hint after inactivity. Defaults to 3000ms (3 seconds).",
              "fieldName": "inactivityDelay"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Scroll hint is an animated button that prompts visitors to scroll.",
          "tagNameWithoutPrefix": "scroll-hint",
          "tagName": "terra-scroll-hint",
          "customElement": true,
          "jsDoc": "/**\n * @summary Scroll hint is an animated button that prompts visitors to scroll.\n * @documentation https://terra-ui.netlify.app/components/scroll-hint\n * @status stable\n * @since 1.0\n *\n * @dependency terra-icon\n *\n * @event terra-scroll - Emitted when the scroll hint is clicked and scrolling begins.\n *\n * @csspart base - The component's base wrapper.\n * @csspart button - The clickable button element.\n * @csspart icon-container - The container for the icon and pulsing ring.\n * @csspart icon - The chevron icon.\n * @csspart ring - The pulsing ring around the icon.\n * @csspart text - The \"SCROLL TO CONTINUE\" text.\n *\n * @cssproperty --terra-scroll-hint-icon-background-color - The background color of the icon circle.\n * @cssproperty --terra-scroll-hint-icon-color - The color of the chevron icon.\n * @cssproperty --terra-scroll-hint-text-color - The color of the text.\n * @cssproperty --terra-scroll-hint-ring-color - The color of the pulsing ring.\n */",
          "documentation": "https://terra-ui.netlify.app/components/scroll-hint",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-icon"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraScrollHint",
            "module": "components/scroll-hint/scroll-hint.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/site-header/site-header.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraSiteHeader",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The NASA logo container.",
              "name": "logo"
            },
            {
              "description": "The site title container.",
              "name": "title"
            },
            {
              "description": "The center content container.",
              "name": "center"
            },
            {
              "description": "The right content container.",
              "name": "right"
            }
          ],
          "slots": [
            {
              "description": "The site title displayed next to the logo. Defaults to the `site-name` prop value.",
              "name": "title"
            },
            {
              "description": "Content displayed in the center of the header (e.g., navigation).",
              "name": "center"
            },
            {
              "description": "Content displayed on the right side of the header. Defaults to a search icon button.",
              "name": "right"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{ 'terra-icon': TerraIcon }"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(\n        this,\n        'title',\n        'center',\n        'right'\n    )"
            },
            {
              "kind": "field",
              "name": "siteName",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The default site name displayed in the title slot if no content is provided.",
              "attribute": "site-name"
            }
          ],
          "attributes": [
            {
              "name": "site-name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The default site name displayed in the title slot if no content is provided.",
              "fieldName": "siteName"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Site headers provide a consistent navigation structure at the top of pages.",
          "tagNameWithoutPrefix": "site-header",
          "tagName": "terra-site-header",
          "customElement": true,
          "jsDoc": "/**\n * @summary Site headers provide a consistent navigation structure at the top of pages.\n * @documentation https://terra-ui.netlify.app/components/site-header\n * @status stable\n * @since 1.0\n *\n * @dependency terra-icon\n *\n * @slot title - The site title displayed next to the logo. Defaults to the `site-name` prop value.\n * @slot center - Content displayed in the center of the header (e.g., navigation).\n * @slot right - Content displayed on the right side of the header. Defaults to a search icon button.\n *\n * @csspart base - The component's base wrapper.\n * @csspart logo - The NASA logo container.\n * @csspart title - The site title container.\n * @csspart center - The center content container.\n * @csspart right - The right content container.\n */",
          "documentation": "https://terra-ui.netlify.app/components/site-header",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-icon"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraSiteHeader",
            "module": "components/site-header/site-header.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/select/select.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraSelect",
          "cssProperties": [
            {
              "description": "All select design tokens from horizon.css are supported.",
              "name": "--terra-select-*"
            }
          ],
          "cssParts": [
            {
              "description": "The form control that wraps the label, input, and help text.",
              "name": "form-control"
            },
            {
              "description": "The label's wrapper.",
              "name": "form-control-label"
            },
            {
              "description": "The select's wrapper.",
              "name": "form-control-input"
            },
            {
              "description": "The help text's wrapper.",
              "name": "form-control-help-text"
            },
            {
              "description": "The container the wraps the prefix, suffix, combobox, clear icon, and expand button.",
              "name": "combobox"
            },
            {
              "description": "The container that wraps the prefix slot.",
              "name": "prefix"
            },
            {
              "description": "The container that wraps the suffix slot.",
              "name": "suffix"
            },
            {
              "description": "The element that displays the selected option's label, an `<input>` element.",
              "name": "display-input"
            },
            {
              "description": "The listbox container where options are slotted.",
              "name": "listbox"
            },
            {
              "description": "The container that houses option tags when `multiple` is used.",
              "name": "tags"
            },
            {
              "description": "The individual tags that represent each multiselect option.",
              "name": "tag"
            },
            {
              "description": "The clear button.",
              "name": "clear-button"
            },
            {
              "description": "The container that wraps the expand icon.",
              "name": "expand-icon"
            }
          ],
          "slots": [
            {
              "description": "The listbox options. Must be `<terra-option>` elements.",
              "name": ""
            },
            {
              "description": "The input's label. Alternatively, you can use the `label` attribute.",
              "name": "label"
            },
            {
              "description": "Used to prepend a presentational icon or similar element to the combobox.",
              "name": "prefix"
            },
            {
              "description": "Used to append a presentational icon or similar element to the combobox.",
              "name": "suffix"
            },
            {
              "description": "An icon to use in lieu of the default clear icon.",
              "name": "clear-icon"
            },
            {
              "description": "The icon to show when the control is expanded and collapsed. Rotates on open and close.",
              "name": "expand-icon"
            },
            {
              "description": "Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.",
              "name": "help-text"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-icon': TerraIcon,\n        'terra-popup': TerraPopup,\n        'terra-tag': TerraTag,\n    }"
            },
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this, {\n        assumeInteractionOn: ['terra-blur', 'terra-input'],\n    })"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(\n        this,\n        'help-text',\n        'label'\n    )"
            },
            {
              "kind": "field",
              "name": "typeToSelectString",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "default": "''"
            },
            {
              "kind": "field",
              "name": "typeToSelectTimeout",
              "type": {
                "text": "number"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "closeWatcher",
              "type": {
                "text": "CloseWatcher | null"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "popup",
              "type": {
                "text": "TerraPopup"
              }
            },
            {
              "kind": "field",
              "name": "combobox",
              "type": {
                "text": "HTMLSlotElement"
              }
            },
            {
              "kind": "field",
              "name": "displayInput",
              "type": {
                "text": "HTMLInputElement"
              }
            },
            {
              "kind": "field",
              "name": "valueInput",
              "type": {
                "text": "HTMLInputElement"
              }
            },
            {
              "kind": "field",
              "name": "listbox",
              "type": {
                "text": "HTMLSlotElement"
              }
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "displayLabel",
              "type": {
                "text": "string"
              },
              "default": "''"
            },
            {
              "kind": "field",
              "name": "currentOption",
              "type": {
                "text": "TerraOption"
              }
            },
            {
              "kind": "field",
              "name": "selectedOptions",
              "type": {
                "text": "TerraOption[]"
              },
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "valueHasChanged",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the select, submitted as a name/value pair with form data.",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "_value",
              "type": {
                "text": "string | string[]"
              },
              "privacy": "private",
              "default": "''"
            },
            {
              "kind": "field",
              "name": "value",
              "description": "The current value of the select, submitted as a name/value pair with form data. When `multiple` is enabled, the\nvalue attribute will be a space-delimited list of values based on the options selected, and the value property will\nbe an array. **For this reason, values must not contain spaces.**"
            },
            {
              "kind": "field",
              "name": "defaultValue",
              "type": {
                "text": "string | string[]"
              },
              "default": "''",
              "description": "The default value of the form control. Primarily used for resetting the form control.",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The select's size.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Placeholder text to show as a hint when the select is empty.",
              "attribute": "placeholder"
            },
            {
              "kind": "field",
              "name": "multiple",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Allows more than one option to be selected.",
              "attribute": "multiple",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "maxOptionsVisible",
              "type": {
                "text": "number"
              },
              "default": "3",
              "description": "The maximum number of selected options to show when `multiple` is true. After the maximum, \"+n\" will be shown to\nindicate the number of additional items that are selected. Set to 0 to remove the limit.",
              "attribute": "max-options-visible"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the select control.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "clearable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Adds a clear button when the select is not empty.",
              "attribute": "clearable"
            },
            {
              "kind": "field",
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the select is open. You can toggle this attribute to show and hide the menu, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the select's open state.",
              "attribute": "open",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "hoist",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Enable this option to prevent the listbox from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.",
              "attribute": "hoist"
            },
            {
              "kind": "field",
              "name": "filled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a filled select.",
              "attribute": "filled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a pill-style select with rounded edges.",
              "attribute": "pill",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The select's label. If you need to display HTML, use the `label` slot instead.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "placement",
              "type": {
                "text": "'top' | 'bottom'"
              },
              "default": "'bottom'",
              "description": "The preferred placement of the select's menu. Note that the actual placement may vary as needed to keep the listbox\ninside of the viewport.",
              "attribute": "placement",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The select's help text. If you need to display HTML, use the `help-text` slot instead.",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "form",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "attribute": "form",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "The select's required attribute.",
              "attribute": "required",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "getTag",
              "type": {
                "text": "(\n        option: TerraOption,\n        index: number\n    ) => TemplateResult | string | HTMLElement"
              },
              "description": "A function that customizes the tags to be rendered when multiple=true. The first argument is the option, the second\nis the current tag's index.  The function should return either a Lit TemplateResult or a string containing trusted HTML of the symbol to render at\nthe specified value.",
              "attribute": "getTag"
            },
            {
              "kind": "field",
              "name": "validity",
              "description": "Gets the validity state object",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "validationMessage",
              "description": "Gets the validation message",
              "readonly": true
            },
            {
              "kind": "method",
              "name": "addOpenListeners",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "removeOpenListeners",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleFocus",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleBlur",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleDocumentFocusIn",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleDocumentKeyDown",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleDocumentMouseDown",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleLabelClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleComboboxMouseDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleComboboxKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleClearClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleClearMouseDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleOptionClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleDefaultSlotChange",
              "privacy": "public"
            },
            {
              "kind": "method",
              "name": "handleTagRemove",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "TerraRemoveEvent"
                  }
                },
                {
                  "name": "option",
                  "type": {
                    "text": "TerraOption"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "getAllOptions",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "getFirstOption",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "setCurrentOption",
              "privacy": "private",
              "parameters": [
                {
                  "name": "option",
                  "type": {
                    "text": "TerraOption | null"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "setSelectedOptions",
              "privacy": "private",
              "parameters": [
                {
                  "name": "option",
                  "type": {
                    "text": "TerraOption | TerraOption[]"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "toggleOptionSelection",
              "privacy": "private",
              "parameters": [
                {
                  "name": "option",
                  "type": {
                    "text": "TerraOption"
                  }
                },
                {
                  "name": "force",
                  "optional": true,
                  "type": {
                    "text": "boolean"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "selectionChanged",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "tags",
              "privacy": "protected",
              "readonly": true
            },
            {
              "kind": "method",
              "name": "handleInvalid",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleDisabledChange"
            },
            {
              "kind": "method",
              "name": "handleValueChange"
            },
            {
              "kind": "method",
              "name": "handleOpenChange"
            },
            {
              "kind": "method",
              "name": "show",
              "description": "Shows the listbox."
            },
            {
              "kind": "method",
              "name": "hide",
              "description": "Hides the listbox."
            },
            {
              "kind": "method",
              "name": "checkValidity",
              "description": "Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid."
            },
            {
              "kind": "method",
              "name": "getForm",
              "return": {
                "type": {
                  "text": "HTMLFormElement | null"
                }
              },
              "description": "Gets the associated form, if one exists."
            },
            {
              "kind": "method",
              "name": "reportValidity",
              "description": "Checks for validity and shows the browser's validation message if the control is invalid."
            },
            {
              "kind": "method",
              "name": "setCustomValidity",
              "parameters": [
                {
                  "name": "message",
                  "type": {
                    "text": "string"
                  }
                }
              ],
              "description": "Sets a custom validation message. Pass an empty string to restore validity."
            },
            {
              "kind": "method",
              "name": "focus",
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "FocusOptions"
                  }
                }
              ],
              "description": "Sets focus on the control."
            },
            {
              "kind": "method",
              "name": "blur",
              "description": "Removes focus from the control."
            }
          ],
          "events": [
            {
              "description": "Emitted when the control's value changes.",
              "name": "terra-change",
              "reactName": "onTerraChange",
              "eventName": "TerraChangeEvent"
            },
            {
              "description": "Emitted when the control's value is cleared.",
              "name": "terra-clear",
              "reactName": "onTerraClear",
              "eventName": "TerraClearEvent"
            },
            {
              "description": "Emitted when the control receives input.",
              "name": "terra-input",
              "reactName": "onTerraInput",
              "eventName": "TerraInputEvent"
            },
            {
              "description": "Emitted when the control gains focus.",
              "name": "terra-focus",
              "reactName": "onTerraFocus",
              "eventName": "TerraFocusEvent"
            },
            {
              "description": "Emitted when the control loses focus.",
              "name": "terra-blur",
              "reactName": "onTerraBlur",
              "eventName": "TerraBlurEvent"
            },
            {
              "description": "Emitted when the select's menu opens.",
              "name": "terra-show",
              "reactName": "onTerraShow",
              "eventName": "TerraShowEvent"
            },
            {
              "description": "Emitted after the select's menu opens and all animations are complete.",
              "name": "terra-after-show",
              "reactName": "onTerraAfterShow",
              "eventName": "TerraAfterShowEvent"
            },
            {
              "description": "Emitted when the select's menu closes.",
              "name": "terra-hide",
              "reactName": "onTerraHide",
              "eventName": "TerraHideEvent"
            },
            {
              "description": "Emitted after the select's menu closes and all animations are complete.",
              "name": "terra-after-hide",
              "reactName": "onTerraAfterHide",
              "eventName": "TerraAfterHideEvent"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "terra-invalid",
              "reactName": "onTerraInvalid",
              "eventName": "TerraInvalidEvent"
            }
          ],
          "attributes": [
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the select, submitted as a name/value pair with form data.",
              "fieldName": "name"
            },
            {
              "name": "value",
              "type": {
                "text": "string | string[]"
              },
              "default": "''",
              "description": "The default value of the form control. Primarily used for resetting the form control.",
              "fieldName": "defaultValue"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The select's size.",
              "fieldName": "size"
            },
            {
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Placeholder text to show as a hint when the select is empty.",
              "fieldName": "placeholder"
            },
            {
              "name": "multiple",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Allows more than one option to be selected.",
              "fieldName": "multiple"
            },
            {
              "name": "max-options-visible",
              "type": {
                "text": "number"
              },
              "default": "3",
              "description": "The maximum number of selected options to show when `multiple` is true. After the maximum, \"+n\" will be shown to\nindicate the number of additional items that are selected. Set to 0 to remove the limit.",
              "fieldName": "maxOptionsVisible"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the select control.",
              "fieldName": "disabled"
            },
            {
              "name": "clearable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Adds a clear button when the select is not empty.",
              "fieldName": "clearable"
            },
            {
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the select is open. You can toggle this attribute to show and hide the menu, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the select's open state.",
              "fieldName": "open"
            },
            {
              "name": "hoist",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Enable this option to prevent the listbox from being clipped when the component is placed inside a container with\n`overflow: auto|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all, scenarios.",
              "fieldName": "hoist"
            },
            {
              "name": "filled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a filled select.",
              "fieldName": "filled"
            },
            {
              "name": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a pill-style select with rounded edges.",
              "fieldName": "pill"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The select's label. If you need to display HTML, use the `label` slot instead.",
              "fieldName": "label"
            },
            {
              "name": "placement",
              "type": {
                "text": "'top' | 'bottom'"
              },
              "default": "'bottom'",
              "description": "The preferred placement of the select's menu. Note that the actual placement may vary as needed to keep the listbox\ninside of the viewport.",
              "fieldName": "placement"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The select's help text. If you need to display HTML, use the `help-text` slot instead.",
              "fieldName": "helpText"
            },
            {
              "name": "form",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "fieldName": "form"
            },
            {
              "name": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "The select's required attribute.",
              "fieldName": "required"
            },
            {
              "name": "getTag",
              "type": {
                "text": "(\n        option: TerraOption,\n        index: number\n    ) => TemplateResult | string | HTMLElement"
              },
              "description": "A function that customizes the tags to be rendered when multiple=true. The first argument is the option, the second\nis the current tag's index.  The function should return either a Lit TemplateResult or a string containing trusted HTML of the symbol to render at\nthe specified value.",
              "fieldName": "getTag"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Select fields are a form field used to select one option from a list.",
          "tagNameWithoutPrefix": "select",
          "tagName": "terra-select",
          "customElement": true,
          "jsDoc": "/**\n * @summary Select fields are a form field used to select one option from a list.\n * @documentation https://terra-ui.netlify.app/components/select\n * @status stable\n * @since 1.0\n *\n * @dependency terra-icon\n * @dependency terra-popup\n * @dependency terra-tag\n *\n * @slot - The listbox options. Must be `<terra-option>` elements.\n * @slot label - The input's label. Alternatively, you can use the `label` attribute.\n * @slot prefix - Used to prepend a presentational icon or similar element to the combobox.\n * @slot suffix - Used to append a presentational icon or similar element to the combobox.\n * @slot clear-icon - An icon to use in lieu of the default clear icon.\n * @slot expand-icon - The icon to show when the control is expanded and collapsed. Rotates on open and close.\n * @slot help-text - Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.\n *\n * @event terra-change - Emitted when the control's value changes.\n * @event terra-clear - Emitted when the control's value is cleared.\n * @event terra-input - Emitted when the control receives input.\n * @event terra-focus - Emitted when the control gains focus.\n * @event terra-blur - Emitted when the control loses focus.\n * @event terra-show - Emitted when the select's menu opens.\n * @event terra-after-show - Emitted after the select's menu opens and all animations are complete.\n * @event terra-hide - Emitted when the select's menu closes.\n * @event terra-after-hide - Emitted after the select's menu closes and all animations are complete.\n * @event terra-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n *\n * @csspart form-control - The form control that wraps the label, input, and help text.\n * @csspart form-control-label - The label's wrapper.\n * @csspart form-control-input - The select's wrapper.\n * @csspart form-control-help-text - The help text's wrapper.\n * @csspart combobox - The container the wraps the prefix, suffix, combobox, clear icon, and expand button.\n * @csspart prefix - The container that wraps the prefix slot.\n * @csspart suffix - The container that wraps the suffix slot.\n * @csspart display-input - The element that displays the selected option's label, an `<input>` element.\n * @csspart listbox - The listbox container where options are slotted.\n * @csspart tags - The container that houses option tags when `multiple` is used.\n * @csspart tag - The individual tags that represent each multiselect option.\n * @csspart clear-button - The clear button.\n * @csspart expand-icon - The container that wraps the expand icon.\n *\n * @cssproperty --terra-select-* - All select design tokens from horizon.css are supported.\n */",
          "documentation": "https://terra-ui.netlify.app/components/select",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-icon",
            "terra-popup",
            "terra-tag"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraSelect",
            "module": "components/select/select.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/site-navigation/site-navigation.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraSiteNavigation",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "slots": [
            {
              "description": "Navigation items. Can contain `<terra-dropdown>` elements or any custom navigation content.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "fullWidth",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, dropdowns use full-width panels instead of normal list-based navigation.",
              "attribute": "full-width",
              "reflects": true
            }
          ],
          "attributes": [
            {
              "name": "full-width",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, dropdowns use full-width panels instead of normal list-based navigation.",
              "fieldName": "fullWidth"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Site navigation provides a flexible navigation structure with dropdown menus.",
          "tagNameWithoutPrefix": "site-navigation",
          "tagName": "terra-site-navigation",
          "customElement": true,
          "jsDoc": "/**\n * @summary Site navigation provides a flexible navigation structure with dropdown menus.\n * @documentation https://terra-ui.netlify.app/components/site-navigation\n * @status stable\n * @since 1.0\n *\n * @slot - Navigation items. Can contain `<terra-dropdown>` elements or any custom navigation content.\n *\n * @csspart base - The component's base wrapper.\n */",
          "documentation": "https://terra-ui.netlify.app/components/site-navigation",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraSiteNavigation",
            "module": "components/site-navigation/site-navigation.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/skeleton/skeleton.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraSkeleton",
          "members": [
            {
              "kind": "field",
              "name": "rows",
              "type": {
                "text": "number"
              },
              "default": "1",
              "attribute": "rows"
            },
            {
              "kind": "field",
              "name": "effect",
              "type": {
                "text": "'pulse' | 'sheen' | 'none'"
              },
              "default": "'pulse'",
              "attribute": "effect"
            },
            {
              "kind": "field",
              "name": "variableWidths",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "attribute": "variableWidths",
              "reflects": true
            }
          ],
          "attributes": [
            {
              "name": "rows",
              "type": {
                "text": "number"
              },
              "default": "1",
              "fieldName": "rows"
            },
            {
              "name": "effect",
              "type": {
                "text": "'pulse' | 'sheen' | 'none'"
              },
              "default": "'pulse'",
              "fieldName": "effect"
            },
            {
              "name": "variableWidths",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "fieldName": "variableWidths"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Skeletons are loading indicators to represent where content will eventually be drawn.",
          "tagNameWithoutPrefix": "skeleton",
          "tagName": "terra-skeleton",
          "customElement": true,
          "jsDoc": "/**\n * @summary Skeletons are loading indicators to represent where content will eventually be drawn.\n * @documentation https://terra-ui.netlify.app/components/skeleton\n * @status stable\n * @since 1.0\n */",
          "documentation": "https://terra-ui.netlify.app/components/skeleton",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraSkeleton",
            "module": "components/skeleton/skeleton.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/spatial-picker/spatial-picker.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraSpatialPicker",
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-map': TerraMap,\n        'terra-input': TerraInput,\n        'terra-dropdown': TerraDropdown,\n    }"
            },
            {
              "kind": "field",
              "name": "minZoom",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "Minimum zoom level of the map.",
              "attribute": "min-zoom"
            },
            {
              "kind": "field",
              "name": "maxZoom",
              "type": {
                "text": "number"
              },
              "default": "23",
              "description": "Maximum zoom level of the map.",
              "attribute": "max-zoom"
            },
            {
              "kind": "field",
              "name": "zoom",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "Initial map zoom level",
              "attribute": "zoom"
            },
            {
              "kind": "field",
              "name": "hasNavigation",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "description": "has map navigation toolbar",
              "attribute": "has-navigation"
            },
            {
              "kind": "field",
              "name": "hasCoordTracker",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "description": "has coordinate tracker",
              "attribute": "has-coord-tracker"
            },
            {
              "kind": "field",
              "name": "hasShapeSelector",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "has shape selector",
              "attribute": "has-shape-selector"
            },
            {
              "kind": "field",
              "name": "hideBoundingBoxSelection",
              "type": {
                "text": "boolean | undefined"
              },
              "attribute": "hide-bounding-box-selection"
            },
            {
              "kind": "field",
              "name": "hidePointSelection",
              "type": {
                "text": "boolean | undefined"
              },
              "attribute": "hide-point-selection"
            },
            {
              "kind": "field",
              "name": "initialValue",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "initialValue of spatial picker",
              "attribute": "initial-value"
            },
            {
              "kind": "field",
              "name": "hideLabel",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Hide the combobox's label text.\nWhen hidden, still presents to screen readers.",
              "attribute": "hide-label"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "'Select Region'",
              "description": "spatial picker label",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "spatialConstraints",
              "type": {
                "text": "string | undefined"
              },
              "default": "'-180, -90, 180, 90'",
              "description": "Spatial constraints for the map (default: '-180, -90, 180, 90')",
              "attribute": "spatial-constraints"
            },
            {
              "kind": "method",
              "name": "handleSpatialConstraintsChange"
            },
            {
              "kind": "field",
              "name": "isExpanded",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "is-expanded",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "noWorldWrap",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables infinite horizontal scrolling on the map (world wrapping)",
              "attribute": "no-world-wrap"
            },
            {
              "kind": "field",
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Whether the map should be shown inline, or as part of the normal content flow\nthe default is false, the map is positioned absolute under the input",
              "attribute": "inline"
            },
            {
              "kind": "field",
              "name": "showMapOnFocus",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Whether the map should show automatically when the input is focused",
              "attribute": "show-map-on-focus"
            },
            {
              "kind": "field",
              "name": "urlState",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "url-state"
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "mapValue",
              "type": {
                "text": "any"
              }
            },
            {
              "kind": "field",
              "name": "error",
              "type": {
                "text": "string"
              },
              "default": "''"
            },
            {
              "kind": "field",
              "name": "dropdownRef"
            },
            {
              "kind": "field",
              "name": "terraInput",
              "type": {
                "text": "TerraInput"
              }
            },
            {
              "kind": "field",
              "name": "map",
              "type": {
                "text": "TerraMap"
              }
            },
            {
              "kind": "field",
              "name": "constraintOverlay",
              "type": {
                "text": "Rectangle | null"
              },
              "privacy": "private",
              "default": "null"
            },
            {
              "kind": "method",
              "name": "setValue",
              "parameters": [
                {
                  "name": "value",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_input",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_change",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_keydown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_blur",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_parseSpatialInput",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "any"
                }
              },
              "parameters": [
                {
                  "name": "input",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_validateCoordinateRange",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "boolean"
                }
              },
              "parameters": [
                {
                  "name": "parsed",
                  "type": {
                    "text": "any"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_validateAndSetValue",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_drawOnMap",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_updateConstraintOverlay",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_focus",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_click",
              "privacy": "private",
              "parameters": [
                {
                  "name": "e",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleDropdownShow",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleDropdownHide",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_normalizeBounds",
              "privacy": "private",
              "parameters": [
                {
                  "name": "bounds",
                  "type": {
                    "text": "any"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_isPointInsideBounds",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "boolean"
                }
              },
              "parameters": [
                {
                  "name": "point",
                  "type": {
                    "text": "any"
                  }
                },
                {
                  "name": "rawBounds",
                  "type": {
                    "text": "any"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_isBoundsInsideBounds",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "boolean"
                }
              },
              "parameters": [
                {
                  "name": "inner",
                  "type": {
                    "text": "any"
                  }
                },
                {
                  "name": "rawOuter",
                  "type": {
                    "text": "any"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "parsedConstraints",
              "readonly": true
            },
            {
              "kind": "method",
              "name": "_rejectDraw",
              "privacy": "private",
              "parameters": [
                {
                  "name": "message",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_emitMapChangeAfterDraw",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "open"
            },
            {
              "kind": "method",
              "name": "close"
            },
            {
              "kind": "method",
              "name": "setOpen",
              "parameters": [
                {
                  "name": "open",
                  "type": {
                    "text": "boolean"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_updateURLParam",
              "privacy": "private",
              "parameters": [
                {
                  "name": "value",
                  "type": {
                    "text": "string | null"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_handleMapChange",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "CustomEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "renderMap"
            },
            {
              "kind": "method",
              "name": "invalidateSize"
            }
          ],
          "attributes": [
            {
              "name": "min-zoom",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "Minimum zoom level of the map.",
              "fieldName": "minZoom"
            },
            {
              "name": "max-zoom",
              "type": {
                "text": "number"
              },
              "default": "23",
              "description": "Maximum zoom level of the map.",
              "fieldName": "maxZoom"
            },
            {
              "name": "zoom",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "Initial map zoom level",
              "fieldName": "zoom"
            },
            {
              "name": "has-navigation",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "description": "has map navigation toolbar",
              "fieldName": "hasNavigation"
            },
            {
              "name": "has-coord-tracker",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "description": "has coordinate tracker",
              "fieldName": "hasCoordTracker"
            },
            {
              "name": "has-shape-selector",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "has shape selector",
              "fieldName": "hasShapeSelector"
            },
            {
              "name": "hide-bounding-box-selection",
              "type": {
                "text": "boolean | undefined"
              },
              "fieldName": "hideBoundingBoxSelection"
            },
            {
              "name": "hide-point-selection",
              "type": {
                "text": "boolean | undefined"
              },
              "fieldName": "hidePointSelection"
            },
            {
              "name": "initial-value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "initialValue of spatial picker",
              "fieldName": "initialValue"
            },
            {
              "name": "hide-label",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Hide the combobox's label text.\nWhen hidden, still presents to screen readers.",
              "fieldName": "hideLabel"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "'Select Region'",
              "description": "spatial picker label",
              "fieldName": "label"
            },
            {
              "name": "spatial-constraints",
              "type": {
                "text": "string | undefined"
              },
              "default": "'-180, -90, 180, 90'",
              "description": "Spatial constraints for the map (default: '-180, -90, 180, 90')",
              "fieldName": "spatialConstraints"
            },
            {
              "name": "is-expanded",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "isExpanded"
            },
            {
              "name": "no-world-wrap",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables infinite horizontal scrolling on the map (world wrapping)",
              "fieldName": "noWorldWrap"
            },
            {
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Whether the map should be shown inline, or as part of the normal content flow\nthe default is false, the map is positioned absolute under the input",
              "fieldName": "inline"
            },
            {
              "name": "show-map-on-focus",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Whether the map should show automatically when the input is focused",
              "fieldName": "showMapOnFocus"
            },
            {
              "name": "url-state",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "urlState"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "helpText"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "A component that allows input of coordinates and rendering of map.",
          "tagNameWithoutPrefix": "spatial-picker",
          "tagName": "terra-spatial-picker",
          "customElement": true,
          "jsDoc": "/**\n * @summary A component that allows input of coordinates and rendering of map.\n * @documentation https://terra-ui.netlify.app/components/spatial-picker\n * @status stable\n * @since 1.0\n *\n */",
          "documentation": "https://terra-ui.netlify.app/components/spatial-picker",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraSpatialPicker",
            "module": "components/spatial-picker/spatial-picker.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/slider/slider.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraSlider",
          "members": [
            {
              "kind": "field",
              "name": "slider",
              "type": {
                "text": "HTMLElement & { noUiSlider: API }"
              }
            },
            {
              "kind": "field",
              "name": "mode",
              "type": {
                "text": "SliderMode"
              },
              "default": "'single'",
              "description": "The slider mode - either 'single' for one value or 'range' for selecting a range.",
              "attribute": "mode",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "min",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The minimum value of the slider.",
              "attribute": "min"
            },
            {
              "kind": "field",
              "name": "max",
              "type": {
                "text": "number"
              },
              "default": "100",
              "description": "The maximum value of the slider.",
              "attribute": "max"
            },
            {
              "kind": "field",
              "name": "step",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "The step size for the slider. Use integers (1, 2, 5) for whole numbers or decimals (0.1, 0.2, 0.5) for fractional steps.",
              "attribute": "step"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the slider.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "hasPips",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Shows tick marks and labels on the slider.",
              "attribute": "has-pips",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "hasTooltips",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Shows tooltips on the slider handles.\nWhen false (default), selected values are shown in the top right instead.",
              "attribute": "has-tooltips",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "showInputs",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Shows input fields below the slider for precise value entry.",
              "attribute": "show-inputs",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "number | undefined"
              },
              "description": "The current value for single mode sliders.",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "startValue",
              "type": {
                "text": "number | undefined"
              },
              "description": "The start value for range mode sliders.",
              "attribute": "start-value"
            },
            {
              "kind": "field",
              "name": "endValue",
              "type": {
                "text": "number | undefined"
              },
              "description": "The end value for range mode sliders.",
              "attribute": "end-value"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "'Slider'",
              "description": "The label text for the slider.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "hideLabel",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Hide the slider's label text.\nWhen hidden, still presents to screen readers.",
              "attribute": "hide-label"
            },
            {
              "kind": "field",
              "name": "currentStartValue",
              "type": {
                "text": "number | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "currentEndValue",
              "type": {
                "text": "number | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "currentValue",
              "type": {
                "text": "number | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "hasBeenManipulated",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "method",
              "name": "updateSlider"
            },
            {
              "kind": "method",
              "name": "disabledChanged"
            },
            {
              "kind": "method",
              "name": "_getStartValues",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "[number, number] | [number]"
                }
              }
            },
            {
              "kind": "method",
              "name": "renderSlider"
            },
            {
              "kind": "method",
              "name": "_updateInputFields",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_getFormatter",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_formatValue",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "string"
                }
              },
              "parameters": [
                {
                  "name": "value",
                  "type": {
                    "text": "number | string | undefined"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleClear",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_renderInputFields",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "_handleInputChange",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "_handleInputKeydown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            }
          ],
          "attributes": [
            {
              "name": "mode",
              "type": {
                "text": "SliderMode"
              },
              "default": "'single'",
              "description": "The slider mode - either 'single' for one value or 'range' for selecting a range.",
              "fieldName": "mode"
            },
            {
              "name": "min",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The minimum value of the slider.",
              "fieldName": "min"
            },
            {
              "name": "max",
              "type": {
                "text": "number"
              },
              "default": "100",
              "description": "The maximum value of the slider.",
              "fieldName": "max"
            },
            {
              "name": "step",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "The step size for the slider. Use integers (1, 2, 5) for whole numbers or decimals (0.1, 0.2, 0.5) for fractional steps.",
              "fieldName": "step"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the slider.",
              "fieldName": "disabled"
            },
            {
              "name": "has-pips",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Shows tick marks and labels on the slider.",
              "fieldName": "hasPips"
            },
            {
              "name": "has-tooltips",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Shows tooltips on the slider handles.\nWhen false (default), selected values are shown in the top right instead.",
              "fieldName": "hasTooltips"
            },
            {
              "name": "show-inputs",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Shows input fields below the slider for precise value entry.",
              "fieldName": "showInputs"
            },
            {
              "name": "value",
              "type": {
                "text": "number | undefined"
              },
              "description": "The current value for single mode sliders.",
              "fieldName": "value"
            },
            {
              "name": "start-value",
              "type": {
                "text": "number | undefined"
              },
              "description": "The start value for range mode sliders.",
              "fieldName": "startValue"
            },
            {
              "name": "end-value",
              "type": {
                "text": "number | undefined"
              },
              "description": "The end value for range mode sliders.",
              "fieldName": "endValue"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "'Slider'",
              "description": "The label text for the slider.",
              "fieldName": "label"
            },
            {
              "name": "hide-label",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Hide the slider's label text.\nWhen hidden, still presents to screen readers.",
              "fieldName": "hideLabel"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "tagNameWithoutPrefix": "slider",
          "tagName": "terra-slider",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraSlider",
            "module": "components/slider/slider.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/status-indicator/status-indicator.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraStatusIndicator",
          "cssProperties": [
            {
              "description": "The color of the status dot.",
              "name": "--terra-status-indicator-dot-color"
            },
            {
              "description": "The color of the label text.",
              "name": "--terra-status-indicator-label-color"
            },
            {
              "description": "The font family for the label.",
              "name": "--terra-status-indicator-font-family"
            },
            {
              "description": "The font size for the label.",
              "name": "--terra-status-indicator-font-size"
            },
            {
              "description": "The font weight for the label.",
              "name": "--terra-status-indicator-font-weight"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The colored status dot.",
              "name": "dot"
            },
            {
              "description": "The text label.",
              "name": "label"
            }
          ],
          "slots": [
            {
              "description": "The status label text.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "| 'active'\n        | 'completed'\n        | 'testing'\n        | 'future'"
              },
              "default": "'active'",
              "description": "The status variant. Determines the color of the indicator dot.",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "dark",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, forces dark mode styles regardless of system preference. Useful when placing the component on a dark background.",
              "attribute": "dark",
              "reflects": true
            }
          ],
          "attributes": [
            {
              "name": "variant",
              "type": {
                "text": "| 'active'\n        | 'completed'\n        | 'testing'\n        | 'future'"
              },
              "default": "'active'",
              "description": "The status variant. Determines the color of the indicator dot.",
              "fieldName": "variant"
            },
            {
              "name": "dark",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, forces dark mode styles regardless of system preference. Useful when placing the component on a dark background.",
              "fieldName": "dark"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Status indicators are dynamic labels that indicate the current state of a mission or project.",
          "tagNameWithoutPrefix": "status-indicator",
          "tagName": "terra-status-indicator",
          "customElement": true,
          "jsDoc": "/**\n * @summary Status indicators are dynamic labels that indicate the current state of a mission or project.\n * @documentation https://terra-ui.netlify.app/components/status-indicator\n * @status stable\n * @since 1.0\n *\n * @slot - The status label text.\n *\n * @csspart base - The component's base wrapper.\n * @csspart dot - The colored status dot.\n * @csspart label - The text label.\n *\n * @cssproperty --terra-status-indicator-dot-color - The color of the status dot.\n * @cssproperty --terra-status-indicator-label-color - The color of the label text.\n * @cssproperty --terra-status-indicator-font-family - The font family for the label.\n * @cssproperty --terra-status-indicator-font-size - The font size for the label.\n * @cssproperty --terra-status-indicator-font-weight - The font weight for the label.\n */",
          "documentation": "https://terra-ui.netlify.app/components/status-indicator",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraStatusIndicator",
            "module": "components/status-indicator/status-indicator.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/stepper/stepper.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraStepper",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "slots": [
            {
              "description": "One or more `<terra-stepper-step>` elements to display in the stepper.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "defaultSlot",
              "type": {
                "text": "HTMLSlotElement"
              }
            },
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "'default' | 'condensed'"
              },
              "default": "'default'",
              "description": "The stepper's variant. The default variant includes titles and optional captions for each step.\nThe condensed variant uses colored bars to represent each step and is useful when space is a concern.",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "handleSlotChange",
              "privacy": "private"
            }
          ],
          "attributes": [
            {
              "name": "variant",
              "type": {
                "text": "'default' | 'condensed'"
              },
              "default": "'default'",
              "description": "The stepper's variant. The default variant includes titles and optional captions for each step.\nThe condensed variant uses colored bars to represent each step and is useful when space is a concern.",
              "fieldName": "variant"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Steppers display a visitor's progress through linear workflows and experiences with multiple steps.",
          "tagNameWithoutPrefix": "stepper",
          "tagName": "terra-stepper",
          "customElement": true,
          "jsDoc": "/**\n * @summary Steppers display a visitor's progress through linear workflows and experiences with multiple steps.\n * @documentation https://terra-ui.netlify.app/components/stepper\n * @status stable\n * @since 1.0\n *\n * @slot - One or more `<terra-stepper-step>` elements to display in the stepper.\n *\n * @csspart base - The component's base wrapper.\n */",
          "documentation": "https://terra-ui.netlify.app/components/stepper",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraStepper",
            "module": "components/stepper/stepper.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/stepper-step/stepper-step.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraStepperStep",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The progress bar indicator.",
              "name": "bar"
            },
            {
              "description": "The content area containing title and caption.",
              "name": "content"
            },
            {
              "description": "The step's title.",
              "name": "title"
            },
            {
              "description": "The step's caption.",
              "name": "caption"
            },
            {
              "description": "The checkmark icon (shown when completed).",
              "name": "icon"
            }
          ],
          "slots": [
            {
              "description": "The step's caption (optional, only shown in default variant).",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-icon': TerraIcon,\n    }"
            },
            {
              "kind": "field",
              "name": "state",
              "type": {
                "text": "'completed' | 'current' | 'upcoming'"
              },
              "default": "'upcoming'",
              "description": "The step's state. \"completed\" shows a checkmark, \"current\" highlights the step as active,\nand \"upcoming\" shows the step as not yet reached.",
              "attribute": "state",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The step's title. Should be short, preferably 1-2 words.",
              "attribute": "title"
            },
            {
              "kind": "field",
              "name": "hideCheckmark",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, hides the checkmark icon for completed steps.",
              "attribute": "hide-checkmark",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "getStepperVariant",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "'default' | 'condensed'"
                }
              }
            }
          ],
          "attributes": [
            {
              "name": "state",
              "type": {
                "text": "'completed' | 'current' | 'upcoming'"
              },
              "default": "'upcoming'",
              "description": "The step's state. \"completed\" shows a checkmark, \"current\" highlights the step as active,\nand \"upcoming\" shows the step as not yet reached.",
              "fieldName": "state"
            },
            {
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The step's title. Should be short, preferably 1-2 words.",
              "fieldName": "title"
            },
            {
              "name": "hide-checkmark",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, hides the checkmark icon for completed steps.",
              "fieldName": "hideCheckmark"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "A step within a stepper component that displays progress through a multi-step workflow.",
          "tagNameWithoutPrefix": "stepper-step",
          "tagName": "terra-stepper-step",
          "customElement": true,
          "jsDoc": "/**\n * @summary A step within a stepper component that displays progress through a multi-step workflow.\n * @documentation https://terra-ui.netlify.app/components/stepper-step\n * @status stable\n * @since 1.0\n *\n * @slot - The step's caption (optional, only shown in default variant).\n *\n * @csspart base - The component's base wrapper.\n * @csspart bar - The progress bar indicator.\n * @csspart content - The content area containing title and caption.\n * @csspart title - The step's title.\n * @csspart caption - The step's caption.\n * @csspart icon - The checkmark icon (shown when completed).\n */",
          "documentation": "https://terra-ui.netlify.app/components/stepper-step",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraStepperStep",
            "module": "components/stepper-step/stepper-step.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tab/tab.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraTab",
          "cssProperties": [
            {
              "description": "All tab design tokens from horizon.css are supported.",
              "name": "--terra-tab-*"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The close button icon.",
              "name": "close-button"
            }
          ],
          "slots": [
            {
              "description": "The tab's label. For icon-only tabs, place a `<terra-icon>` here.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{ 'terra-icon': TerraIcon }"
            },
            {
              "kind": "field",
              "name": "attrId",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "readonly": true,
              "default": "++id"
            },
            {
              "kind": "field",
              "name": "componentId",
              "privacy": "private",
              "readonly": true,
              "default": "`terra-tab-${this.attrId}`"
            },
            {
              "kind": "field",
              "name": "tab",
              "type": {
                "text": "HTMLElement"
              }
            },
            {
              "kind": "field",
              "name": "panel",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the tab panel this tab is associated with. The panel must be located in the same tabs component.",
              "attribute": "panel",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "active",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the tab in an active state.",
              "attribute": "active",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "closable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the tab closable and shows a close button.",
              "attribute": "closable",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the tab and prevents selection.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'large' | 'small'"
              },
              "default": "'large'",
              "description": "The tab's size. Inherits from the parent tabs component if not specified.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "handleCloseClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleActiveChange"
            },
            {
              "kind": "method",
              "name": "handleDisabledChange"
            }
          ],
          "events": [
            {
              "description": "Emitted when the tab is closable and the close button is activated.",
              "name": "terra-close",
              "reactName": "onTerraClose",
              "eventName": "TerraCloseEvent"
            }
          ],
          "attributes": [
            {
              "name": "panel",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the tab panel this tab is associated with. The panel must be located in the same tabs component.",
              "fieldName": "panel"
            },
            {
              "name": "active",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the tab in an active state.",
              "fieldName": "active"
            },
            {
              "name": "closable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the tab closable and shows a close button.",
              "fieldName": "closable"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the tab and prevents selection.",
              "fieldName": "disabled"
            },
            {
              "name": "size",
              "type": {
                "text": "'large' | 'small'"
              },
              "default": "'large'",
              "description": "The tab's size. Inherits from the parent tabs component if not specified.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Tabs are used inside [tabs](/components/tabs) to represent and activate [tab panels](/components/tab-panel).",
          "tagNameWithoutPrefix": "tab",
          "tagName": "terra-tab",
          "customElement": true,
          "jsDoc": "/**\n * @summary Tabs are used inside [tabs](/components/tabs) to represent and activate [tab panels](/components/tab-panel).\n * @documentation https://terra-ui.netlify.app/components/tab\n * @status stable\n * @since 1.0\n *\n * @dependency terra-icon\n *\n * @slot - The tab's label. For icon-only tabs, place a `<terra-icon>` here.\n *\n * @event terra-close - Emitted when the tab is closable and the close button is activated.\n *\n * @csspart base - The component's base wrapper.\n * @csspart close-button - The close button icon.\n *\n * @cssproperty --terra-tab-* - All tab design tokens from horizon.css are supported.\n */",
          "documentation": "https://terra-ui.netlify.app/components/tab",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-icon"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraTab",
            "module": "components/tab/tab.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tab-panel/tab-panel.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraTabPanel",
          "cssProperties": [
            {
              "description": "The tab panel's padding.",
              "name": "--padding"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "slots": [
            {
              "description": "The tab panel's content.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "attrId",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "readonly": true,
              "default": "++id"
            },
            {
              "kind": "field",
              "name": "componentId",
              "privacy": "private",
              "readonly": true,
              "default": "`terra-tab-panel-${this.attrId}`"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The tab panel's name.",
              "attribute": "name",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "active",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, the tab panel will be shown.",
              "attribute": "active",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "handleActiveChange"
            }
          ],
          "attributes": [
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The tab panel's name.",
              "fieldName": "name"
            },
            {
              "name": "active",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, the tab panel will be shown.",
              "fieldName": "active"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Tab panels are used inside [tabs](/components/tabs) to display tabbed content.",
          "tagNameWithoutPrefix": "tab-panel",
          "tagName": "terra-tab-panel",
          "customElement": true,
          "jsDoc": "/**\n * @summary Tab panels are used inside [tabs](/components/tabs) to display tabbed content.\n * @documentation https://terra-ui.netlify.app/components/tab-panel\n * @status stable\n * @since 1.0\n *\n * @slot - The tab panel's content.\n *\n * @csspart base - The component's base wrapper.\n *\n * @cssproperty --padding - The tab panel's padding.\n */",
          "documentation": "https://terra-ui.netlify.app/components/tab-panel",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraTabPanel",
            "module": "components/tab-panel/tab-panel.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tabs/tabs.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraTabs",
          "cssProperties": [
            {
              "description": "The color of the active tab indicator.",
              "name": "--terra-tabs-indicator-color"
            },
            {
              "description": "The color of the indicator's track (the line that separates tabs from panels).",
              "name": "--terra-tabs-track-color"
            },
            {
              "description": "The width of the indicator's track (the line that separates tabs from panels).",
              "name": "--terra-tabs-track-width"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The tabs' navigation container where tabs are slotted in.",
              "name": "nav"
            },
            {
              "description": "The container that wraps the tabs.",
              "name": "tabs"
            },
            {
              "description": "The line that highlights the currently selected tab.",
              "name": "active-tab-indicator"
            },
            {
              "description": "The tabs' body where tab panels are slotted in.",
              "name": "body"
            },
            {
              "description": "The previous/next scroll buttons that show when tabs are scrollable.",
              "name": "scroll-button"
            },
            {
              "description": "The starting scroll button.",
              "name": "scroll-button--start"
            },
            {
              "description": "The ending scroll button.",
              "name": "scroll-button--end"
            }
          ],
          "slots": [
            {
              "description": "Used for grouping tab panels in the tabs component. Must be `<terra-tab-panel>` elements.",
              "name": ""
            },
            {
              "description": "Used for grouping tabs in the tabs component. Must be `<terra-tab>` elements.",
              "name": "nav"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-icon': TerraIcon,\n    }"
            },
            {
              "kind": "field",
              "name": "activeTab",
              "type": {
                "text": "TerraTab | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "mutationObserver",
              "type": {
                "text": "MutationObserver"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "resizeObserver",
              "type": {
                "text": "ResizeObserver"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "tabs",
              "type": {
                "text": "TerraTab[]"
              },
              "privacy": "private",
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "focusableTabs",
              "type": {
                "text": "TerraTab[]"
              },
              "privacy": "private",
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "panels",
              "type": {
                "text": "TerraTabPanel[]"
              },
              "privacy": "private",
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "tabsElement",
              "type": {
                "text": "HTMLElement"
              }
            },
            {
              "kind": "field",
              "name": "body",
              "type": {
                "text": "HTMLSlotElement"
              }
            },
            {
              "kind": "field",
              "name": "nav",
              "type": {
                "text": "HTMLElement"
              }
            },
            {
              "kind": "field",
              "name": "indicator",
              "type": {
                "text": "HTMLElement"
              }
            },
            {
              "kind": "field",
              "name": "hasScrollControls",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "shouldHideScrollStartButton",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "shouldHideScrollEndButton",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "placement",
              "type": {
                "text": "'top' | 'bottom' | 'start' | 'end'"
              },
              "default": "'top'",
              "description": "The placement of the tabs.",
              "attribute": "placement"
            },
            {
              "kind": "field",
              "name": "activation",
              "type": {
                "text": "'auto' | 'manual'"
              },
              "default": "'auto'",
              "description": "When set to auto, navigating tabs with the arrow keys will instantly show the corresponding tab panel. When set to\nmanual, the tab will receive focus but will not show until the user presses spacebar or enter.",
              "attribute": "activation"
            },
            {
              "kind": "field",
              "name": "noScrollControls",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the scroll arrows that appear when tabs overflow.",
              "attribute": "no-scroll-controls"
            },
            {
              "kind": "field",
              "name": "fixedScrollControls",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Prevent scroll buttons from being hidden when inactive.",
              "attribute": "fixed-scroll-controls"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'large' | 'small'"
              },
              "default": "'large'",
              "description": "The size of the tabs. Can be overridden by individual tab components.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "getAllTabs",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "getAllPanels",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "getActiveTab",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleScrollToStart",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleScrollToEnd",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "setActiveTab",
              "privacy": "private",
              "parameters": [
                {
                  "name": "tab",
                  "type": {
                    "text": "TerraTab"
                  }
                },
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "{ emitEvents?: boolean; scrollBehavior?: 'auto' | 'smooth' }"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "setAriaLabels",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "repositionIndicator",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "syncTabsAndPanels",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "findNextFocusableTab",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "TerraTab | null"
                }
              },
              "parameters": [
                {
                  "name": "currentIndex",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "direction",
                  "type": {
                    "text": "'forward' | 'backward'"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "scrollOffset",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "default": "1",
              "description": "The reality of the browser means that we can't expect the scroll position to be exactly what we want it to be, so\nwe add one pixel of wiggle room to our calculations."
            },
            {
              "kind": "method",
              "name": "updateScrollButtons",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "isScrolledToEnd",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "scrollFromStart",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "updateScrollControls"
            },
            {
              "kind": "method",
              "name": "syncIndicator"
            },
            {
              "kind": "method",
              "name": "syncSize"
            },
            {
              "kind": "method",
              "name": "show",
              "parameters": [
                {
                  "name": "panel",
                  "type": {
                    "text": "string"
                  }
                }
              ],
              "description": "Shows the specified tab panel."
            }
          ],
          "events": [
            {
              "type": {
                "text": "{ name: String }"
              },
              "description": "Emitted when a tab is shown.",
              "name": "terra-tab-show",
              "reactName": "onTerraTabShow",
              "eventName": "TerraTabShowEvent"
            },
            {
              "type": {
                "text": "{ name: String }"
              },
              "description": "Emitted when a tab is hidden.",
              "name": "terra-tab-hide",
              "reactName": "onTerraTabHide",
              "eventName": "TerraTabHideEvent"
            }
          ],
          "attributes": [
            {
              "name": "placement",
              "type": {
                "text": "'top' | 'bottom' | 'start' | 'end'"
              },
              "default": "'top'",
              "description": "The placement of the tabs.",
              "fieldName": "placement"
            },
            {
              "name": "activation",
              "type": {
                "text": "'auto' | 'manual'"
              },
              "default": "'auto'",
              "description": "When set to auto, navigating tabs with the arrow keys will instantly show the corresponding tab panel. When set to\nmanual, the tab will receive focus but will not show until the user presses spacebar or enter.",
              "fieldName": "activation"
            },
            {
              "name": "no-scroll-controls",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the scroll arrows that appear when tabs overflow.",
              "fieldName": "noScrollControls"
            },
            {
              "name": "fixed-scroll-controls",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Prevent scroll buttons from being hidden when inactive.",
              "fieldName": "fixedScrollControls"
            },
            {
              "name": "size",
              "type": {
                "text": "'large' | 'small'"
              },
              "default": "'large'",
              "description": "The size of the tabs. Can be overridden by individual tab components.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Tabs organize content into a container that shows one section at a time.",
          "tagNameWithoutPrefix": "tabs",
          "tagName": "terra-tabs",
          "customElement": true,
          "jsDoc": "/**\n * @summary Tabs organize content into a container that shows one section at a time.\n * @documentation https://terra-ui.netlify.app/components/tabs\n * @status stable\n * @since 1.0\n *\n * @dependency terra-icon\n *\n * @slot - Used for grouping tab panels in the tabs component. Must be `<terra-tab-panel>` elements.\n * @slot nav - Used for grouping tabs in the tabs component. Must be `<terra-tab>` elements.\n *\n * @event {{ name: String }} terra-tab-show - Emitted when a tab is shown.\n * @event {{ name: String }} terra-tab-hide - Emitted when a tab is hidden.\n *\n * @csspart base - The component's base wrapper.\n * @csspart nav - The tabs' navigation container where tabs are slotted in.\n * @csspart tabs - The container that wraps the tabs.\n * @csspart active-tab-indicator - The line that highlights the currently selected tab.\n * @csspart body - The tabs' body where tab panels are slotted in.\n * @csspart scroll-button - The previous/next scroll buttons that show when tabs are scrollable.\n * @csspart scroll-button--start - The starting scroll button.\n * @csspart scroll-button--end - The ending scroll button.\n *\n * @cssproperty --terra-tabs-indicator-color - The color of the active tab indicator.\n * @cssproperty --terra-tabs-track-color - The color of the indicator's track (the line that separates tabs from panels).\n * @cssproperty --terra-tabs-track-width - The width of the indicator's track (the line that separates tabs from panels).\n */",
          "documentation": "https://terra-ui.netlify.app/components/tabs",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-icon"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraTabs",
            "module": "components/tabs/tabs.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tag/tag.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraTag",
          "cssProperties": [
            {
              "description": "The font family for the tag.",
              "name": "--terra-tag-font-family"
            },
            {
              "description": "The font size for small tags.",
              "name": "--terra-tag-font-size-small"
            },
            {
              "description": "The font size for medium tags.",
              "name": "--terra-tag-font-size-medium"
            },
            {
              "description": "The font size for large tags.",
              "name": "--terra-tag-font-size-large"
            },
            {
              "description": "The font weight for the tag.",
              "name": "--terra-tag-font-weight"
            },
            {
              "description": "The font weight for urgent tags.",
              "name": "--terra-tag-font-weight-urgent"
            },
            {
              "description": "The text color of the tag.",
              "name": "--terra-tag-color"
            },
            {
              "description": "The background color of the tag.",
              "name": "--terra-tag-background-color"
            },
            {
              "description": "The border color for topic tags.",
              "name": "--terra-tag-border-color"
            },
            {
              "description": "The border color for topic tags on hover.",
              "name": "--terra-tag-border-color-hover"
            },
            {
              "description": "The background color for topic tags on hover.",
              "name": "--terra-tag-background-color-hover"
            },
            {
              "description": "The border color for content tag icons.",
              "name": "--terra-tag-icon-border-color"
            },
            {
              "description": "The size of small content tag icons.",
              "name": "--terra-tag-icon-size-small"
            },
            {
              "description": "The size of medium content tag icons.",
              "name": "--terra-tag-icon-size-medium"
            },
            {
              "description": "The size of large content tag icons.",
              "name": "--terra-tag-icon-size-large"
            },
            {
              "description": "The inner icon size for small content tags.",
              "name": "--terra-tag-icon-inner-size-small"
            },
            {
              "description": "The inner icon size for medium content tags.",
              "name": "--terra-tag-icon-inner-size-medium"
            },
            {
              "description": "The inner icon size for large content tags.",
              "name": "--terra-tag-icon-inner-size-large"
            },
            {
              "description": "The text color for urgent tags.",
              "name": "--terra-tag-urgent-color"
            },
            {
              "description": "The background color for urgent tags.",
              "name": "--terra-tag-urgent-background-color"
            },
            {
              "description": "The padding for small topic/urgent tags.",
              "name": "--terra-tag-padding-small"
            },
            {
              "description": "The padding for medium topic/urgent tags.",
              "name": "--terra-tag-padding-medium"
            },
            {
              "description": "The padding for large topic/urgent tags.",
              "name": "--terra-tag-padding-large"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The icon element (content tags only).",
              "name": "icon"
            },
            {
              "description": "The text label.",
              "name": "label"
            }
          ],
          "slots": [
            {
              "description": "The tag label text.",
              "name": ""
            },
            {
              "description": "Optional icon slot for content tags (overrides icon prop).",
              "name": "icon"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-icon': TerraIcon,\n    }"
            },
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "'content' | 'topic' | 'urgent'"
              },
              "default": "'content'",
              "description": "The tag variant. Determines the styling and behavior.",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The size of the tag.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "icon",
              "type": {
                "text": "string | undefined"
              },
              "description": "The icon name for content tags. Used with the default icon library.",
              "attribute": "icon",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "iconLibrary",
              "type": {
                "text": "'default' | 'heroicons' | string"
              },
              "default": "'default'",
              "description": "The icon library to use for content tags.",
              "attribute": "iconLibrary",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "stack",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, tags will stack vertically instead of sitting side by side.",
              "attribute": "stack",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "dark",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, forces dark mode styles regardless of system preference. Useful when placing the component on a dark background.",
              "attribute": "dark",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "href",
              "type": {
                "text": "string | undefined"
              },
              "description": "The href for topic tags. If provided, the tag will be rendered as a link.",
              "attribute": "href"
            },
            {
              "kind": "field",
              "name": "handleClick",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "description": "Emitted when a topic tag is clicked (unless href is provided).",
              "name": "terra-click",
              "reactName": "onTerraClick",
              "eventName": "TerraClickEvent"
            }
          ],
          "attributes": [
            {
              "name": "variant",
              "type": {
                "text": "'content' | 'topic' | 'urgent'"
              },
              "default": "'content'",
              "description": "The tag variant. Determines the styling and behavior.",
              "fieldName": "variant"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The size of the tag.",
              "fieldName": "size"
            },
            {
              "name": "icon",
              "type": {
                "text": "string | undefined"
              },
              "description": "The icon name for content tags. Used with the default icon library.",
              "fieldName": "icon"
            },
            {
              "name": "iconLibrary",
              "type": {
                "text": "'default' | 'heroicons' | string"
              },
              "default": "'default'",
              "description": "The icon library to use for content tags.",
              "fieldName": "iconLibrary"
            },
            {
              "name": "stack",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, tags will stack vertically instead of sitting side by side.",
              "fieldName": "stack"
            },
            {
              "name": "dark",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, forces dark mode styles regardless of system preference. Useful when placing the component on a dark background.",
              "fieldName": "dark"
            },
            {
              "name": "href",
              "type": {
                "text": "string | undefined"
              },
              "description": "The href for topic tags. If provided, the tag will be rendered as a link.",
              "fieldName": "href"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Tags are simple labels that help categorize items.",
          "tagNameWithoutPrefix": "tag",
          "tagName": "terra-tag",
          "customElement": true,
          "jsDoc": "/**\n * @summary Tags are simple labels that help categorize items.\n * @documentation https://terra-ui.netlify.app/components/tag\n * @status stable\n * @since 1.0\n *\n * @dependency terra-icon\n *\n * @event terra-click - Emitted when a topic tag is clicked (unless href is provided).\n *\n * @slot - The tag label text.\n * @slot icon - Optional icon slot for content tags (overrides icon prop).\n *\n * @csspart base - The component's base wrapper.\n * @csspart icon - The icon element (content tags only).\n * @csspart label - The text label.\n *\n * @cssproperty --terra-tag-font-family - The font family for the tag.\n * @cssproperty --terra-tag-font-size-small - The font size for small tags.\n * @cssproperty --terra-tag-font-size-medium - The font size for medium tags.\n * @cssproperty --terra-tag-font-size-large - The font size for large tags.\n * @cssproperty --terra-tag-font-weight - The font weight for the tag.\n * @cssproperty --terra-tag-font-weight-urgent - The font weight for urgent tags.\n * @cssproperty --terra-tag-color - The text color of the tag.\n * @cssproperty --terra-tag-background-color - The background color of the tag.\n * @cssproperty --terra-tag-border-color - The border color for topic tags.\n * @cssproperty --terra-tag-border-color-hover - The border color for topic tags on hover.\n * @cssproperty --terra-tag-background-color-hover - The background color for topic tags on hover.\n * @cssproperty --terra-tag-icon-border-color - The border color for content tag icons.\n * @cssproperty --terra-tag-icon-size-small - The size of small content tag icons.\n * @cssproperty --terra-tag-icon-size-medium - The size of medium content tag icons.\n * @cssproperty --terra-tag-icon-size-large - The size of large content tag icons.\n * @cssproperty --terra-tag-icon-inner-size-small - The inner icon size for small content tags.\n * @cssproperty --terra-tag-icon-inner-size-medium - The inner icon size for medium content tags.\n * @cssproperty --terra-tag-icon-inner-size-large - The inner icon size for large content tags.\n * @cssproperty --terra-tag-urgent-color - The text color for urgent tags.\n * @cssproperty --terra-tag-urgent-background-color - The background color for urgent tags.\n * @cssproperty --terra-tag-padding-small - The padding for small topic/urgent tags.\n * @cssproperty --terra-tag-padding-medium - The padding for medium topic/urgent tags.\n * @cssproperty --terra-tag-padding-large - The padding for large topic/urgent tags.\n */",
          "documentation": "https://terra-ui.netlify.app/components/tag",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-icon"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraTag",
            "module": "components/tag/tag.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/textarea/textarea.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraTextarea",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The internal textarea control.",
              "name": "textarea"
            },
            {
              "description": "The help text's wrapper.",
              "name": "form-control-help-text"
            }
          ],
          "slots": [
            {
              "description": "Text that describes how to use the textarea. Alternatively, you can use the `help-text` attribute.",
              "name": "help-text"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this, {\n        value: (control: TerraTextarea) => control.value,\n        defaultValue: (control: TerraTextarea) => control.defaultValue,\n        setValue: (control: TerraTextarea, value: string) => (control.value = value),\n    })"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'help-text')"
            },
            {
              "kind": "field",
              "name": "textarea",
              "type": {
                "text": "HTMLTextAreaElement"
              }
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "placeholder"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "readonly",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "readonly",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "required",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "autocomplete",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "autocomplete"
            },
            {
              "kind": "field",
              "name": "minlength",
              "type": {
                "text": "number | undefined"
              },
              "attribute": "minlength"
            },
            {
              "kind": "field",
              "name": "maxlength",
              "type": {
                "text": "number | undefined"
              },
              "attribute": "maxlength"
            },
            {
              "kind": "field",
              "name": "rows",
              "type": {
                "text": "number | undefined"
              },
              "attribute": "rows"
            },
            {
              "kind": "field",
              "name": "cols",
              "type": {
                "text": "number | undefined"
              },
              "attribute": "cols"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "hideLabel",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "hide-label"
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "resize",
              "type": {
                "text": "'none' | 'both' | 'horizontal' | 'vertical'"
              },
              "default": "'vertical'",
              "attribute": "resize",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "defaultValue",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The default value of the form control. Primarily used for resetting the form control."
            },
            {
              "kind": "field",
              "name": "form",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "attribute": "form",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "validity",
              "description": "Gets the validity state object",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "validationMessage",
              "description": "Gets the validation message",
              "readonly": true
            },
            {
              "kind": "method",
              "name": "handleInput"
            },
            {
              "kind": "method",
              "name": "handleChange"
            },
            {
              "kind": "method",
              "name": "handleInvalid",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleFocus"
            },
            {
              "kind": "method",
              "name": "handleBlur"
            },
            {
              "kind": "method",
              "name": "handleDisabledChange"
            },
            {
              "kind": "method",
              "name": "checkValidity",
              "description": "Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid."
            },
            {
              "kind": "method",
              "name": "getForm",
              "return": {
                "type": {
                  "text": "HTMLFormElement | null"
                }
              },
              "description": "Gets the associated form, if one exists."
            },
            {
              "kind": "method",
              "name": "reportValidity",
              "description": "Checks for validity and shows the browser's validation message if the control is invalid."
            },
            {
              "kind": "method",
              "name": "setCustomValidity",
              "parameters": [
                {
                  "name": "message",
                  "type": {
                    "text": "string"
                  }
                }
              ],
              "description": "Sets a custom validation message. The value provided will be shown to the user when the form is submitted. To clear\nthe custom validation message, call this method with an empty string."
            },
            {
              "kind": "method",
              "name": "focus",
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "FocusOptions"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "blur"
            },
            {
              "kind": "method",
              "name": "select"
            },
            {
              "kind": "method",
              "name": "setSelectionRange",
              "parameters": [
                {
                  "name": "selectionStart",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "selectionEnd",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "selectionDirection",
                  "default": "'none'",
                  "type": {
                    "text": "'forward' | 'backward' | 'none'"
                  }
                }
              ]
            }
          ],
          "events": [
            {
              "description": "Emitted when the textarea receives input.",
              "name": "terra-input",
              "reactName": "onTerraInput",
              "eventName": "TerraInputEvent"
            },
            {
              "description": "Emitted when an alteration to the control's value is committed by the user.",
              "name": "terra-change",
              "reactName": "onTerraChange",
              "eventName": "TerraChangeEvent"
            },
            {
              "description": "Emitted when the textarea gains focus.",
              "name": "terra-focus",
              "reactName": "onTerraFocus",
              "eventName": "TerraFocusEvent"
            },
            {
              "description": "Emitted when the textarea loses focus.",
              "name": "terra-blur",
              "reactName": "onTerraBlur",
              "eventName": "TerraBlurEvent"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "terra-invalid",
              "reactName": "onTerraInvalid",
              "eventName": "TerraInvalidEvent"
            }
          ],
          "attributes": [
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "name"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "value"
            },
            {
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "placeholder"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "disabled"
            },
            {
              "name": "readonly",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "readonly"
            },
            {
              "name": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "required"
            },
            {
              "name": "autocomplete",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "autocomplete"
            },
            {
              "name": "minlength",
              "type": {
                "text": "number | undefined"
              },
              "fieldName": "minlength"
            },
            {
              "name": "maxlength",
              "type": {
                "text": "number | undefined"
              },
              "fieldName": "maxlength"
            },
            {
              "name": "rows",
              "type": {
                "text": "number | undefined"
              },
              "fieldName": "rows"
            },
            {
              "name": "cols",
              "type": {
                "text": "number | undefined"
              },
              "fieldName": "cols"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "label"
            },
            {
              "name": "hide-label",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "hideLabel"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "helpText"
            },
            {
              "name": "resize",
              "type": {
                "text": "'none' | 'both' | 'horizontal' | 'vertical'"
              },
              "default": "'vertical'",
              "fieldName": "resize"
            },
            {
              "name": "form",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "fieldName": "form"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "A textarea component with consistent styling across the design system.",
          "tagNameWithoutPrefix": "textarea",
          "tagName": "terra-textarea",
          "customElement": true,
          "jsDoc": "/**\n * @summary A textarea component with consistent styling across the design system.\n * @documentation https://terra-ui.netlify.app/components/textarea\n * @status stable\n * @since 1.0\n *\n * @slot help-text - Text that describes how to use the textarea. Alternatively, you can use the `help-text` attribute.\n *\n * @event terra-input - Emitted when the textarea receives input.\n * @event terra-change - Emitted when an alteration to the control's value is committed by the user.\n * @event terra-focus - Emitted when the textarea gains focus.\n * @event terra-blur - Emitted when the textarea loses focus.\n * @event terra-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n *\n * @csspart base - The component's base wrapper.\n * @csspart textarea - The internal textarea control.\n * @csspart form-control-help-text - The help text's wrapper.\n */",
          "documentation": "https://terra-ui.netlify.app/components/textarea",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraTextarea",
            "module": "components/textarea/textarea.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/time-average-map/time-average-map.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraTimeAverageMap",
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-button': TerraButton,\n        'terra-icon': TerraIcon,\n        'terra-plot-toolbar': TerraPlotToolbar,\n        'terra-loader': TerraLoader,\n        'terra-plot': TerraPlot,\n        'terra-alert': TerraAlert,\n    }"
            },
            {
              "kind": "field",
              "name": "collection",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "collection",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "variable",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "variable",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "startDate",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "start-date",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "endDate",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "end-date",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "location",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "location",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "bearerToken",
              "type": {
                "text": "string"
              },
              "attribute": "bearer-token"
            },
            {
              "kind": "field",
              "name": "long_name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "long_name"
            },
            {
              "kind": "field",
              "name": "colorMapName",
              "type": {
                "text": "string"
              },
              "default": "'viridis'",
              "attribute": "color-map-name",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "opacity",
              "type": {
                "text": "number"
              },
              "default": "1",
              "attribute": "opacity"
            },
            {
              "kind": "field",
              "name": "catalogVariable",
              "type": {
                "text": "Variable"
              }
            },
            {
              "kind": "field",
              "name": "pixelValue",
              "type": {
                "text": "string"
              },
              "default": "'N/A'"
            },
            {
              "kind": "field",
              "name": "pixelCoordinates",
              "type": {
                "text": "string"
              },
              "default": "'N/A'"
            },
            {
              "kind": "field",
              "name": "metadata",
              "type": {
                "text": "{ [key: string]: string }"
              },
              "default": "{}"
            },
            {
              "kind": "field",
              "name": "toggleState",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "minimized",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "noDataValue",
              "type": {
                "text": "number"
              },
              "default": "-9999"
            },
            {
              "kind": "field",
              "name": "min",
              "type": {
                "text": "string"
              },
              "default": "'0'"
            },
            {
              "kind": "field",
              "name": "max",
              "type": {
                "text": "string"
              },
              "default": "'1'"
            },
            {
              "kind": "field",
              "name": "legendValues",
              "type": {
                "text": "{ value: string; rgb: string }[]"
              },
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "timeAverageMapError",
              "type": {
                "text": "{\n        code: string\n        message?: string\n        context?: string\n    } | null"
              },
              "privacy": "private",
              "default": "null",
              "description": "stores error information from time average map requests"
            },
            {
              "kind": "field",
              "name": "#controller",
              "privacy": "private",
              "type": {
                "text": "TimeAvgMapController"
              }
            },
            {
              "kind": "field",
              "name": "#map",
              "privacy": "private",
              "type": {
                "text": "Map | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#gtLayer",
              "privacy": "private",
              "type": {
                "text": "WebGLTileLayer | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#bordersLayer",
              "privacy": "private",
              "type": {
                "text": "VectorLayer<VectorSource> | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#vectorSource",
              "privacy": "private",
              "type": {
                "text": "VectorSource | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#vectorLayer",
              "privacy": "private",
              "type": {
                "text": "VectorLayer | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#draw",
              "privacy": "private",
              "type": {
                "text": "Draw | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#graticuleLayer",
              "privacy": "private",
              "type": {
                "text": "Graticule | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "_authController",
              "default": "new AuthController(this)"
            },
            {
              "kind": "field",
              "name": "colormaps",
              "type": {
                "text": "array"
              },
              "default": "[\n        'jet',\n        'hsv',\n        'hot',\n        'cool',\n        'spring',\n        'summer',\n        'autumn',\n        'winter',\n        'bone',\n        'copper',\n        'greys',\n        'YIGnBu',\n        'greens',\n        'YIOrRd',\n        'bluered',\n        'RdBu',\n        'picnic',\n        'rainbow',\n        'portland',\n        'blackbody',\n        'earth',\n        'electric',\n        'viridis',\n        'inferno',\n        'magma',\n        'plasma',\n        'warm',\n        'cool',\n        'bathymetry',\n        'cdom',\n        'chlorophyll',\n        'density',\n        'fressurface-blue',\n        'freesurface-red',\n        'oxygen',\n        'par',\n        'phase',\n        'salinity',\n        'temperature',\n        'turbidity',\n        'velocity-blue',\n        'velocity-green',\n        'cubhelix',\n    ]"
            },
            {
              "kind": "field",
              "name": "plotData",
              "type": {
                "text": "object"
              },
              "default": "{}"
            },
            {
              "kind": "field",
              "name": "layout",
              "type": {
                "text": "object"
              },
              "default": "{}"
            },
            {
              "kind": "field",
              "name": "harmonyJobId",
              "type": {
                "text": "string | undefined"
              }
            },
            {
              "kind": "field",
              "name": "_fetchVariableTask",
              "description": "anytime the collection or variable changes, we'll fetch the variable from the catalog to get all of it's metadata"
            },
            {
              "kind": "method",
              "name": "handlePropertyChange"
            },
            {
              "kind": "method",
              "name": "handlePlotOptionsChange"
            },
            {
              "kind": "field",
              "name": "#handleMapError",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#handleExportImage",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "#drawLegend",
              "parameters": [
                {
                  "name": "ctx",
                  "type": {
                    "text": "CanvasRenderingContext2D"
                  }
                },
                {
                  "name": "textHeight",
                  "type": {
                    "text": "number"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#getMapTitleText",
              "return": {
                "type": {
                  "text": "string"
                }
              }
            },
            {
              "kind": "method",
              "name": "#wrapText",
              "return": {
                "type": {
                  "text": "string[]"
                }
              },
              "parameters": [
                {
                  "name": "ctx",
                  "type": {
                    "text": "CanvasRenderingContext2D"
                  }
                },
                {
                  "name": "text",
                  "type": {
                    "text": "string"
                  }
                },
                {
                  "name": "maxWidth",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "fontSize",
                  "type": {
                    "text": "number"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "updateGeoTIFFLayer",
              "parameters": [
                {
                  "name": "blob",
                  "type": {
                    "text": "Blob"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "intializeMap"
            },
            {
              "kind": "method",
              "name": "addBordersLayerForGeoTIFF",
              "parameters": [
                {
                  "name": "gtSource",
                  "type": {
                    "text": "GeoTIFF"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "fetchGeotiffMetadata",
              "return": {
                "type": {
                  "text": "Promise<{ [key: string]: string }>"
                }
              },
              "parameters": [
                {
                  "name": "gtSource",
                  "type": {
                    "text": "GeoTIFF"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "renderPixelValues",
              "parameters": [
                {
                  "name": "map",
                  "type": {
                    "text": "Map"
                  }
                },
                {
                  "name": "gtLayer",
                  "type": {
                    "text": "WebGLTileLayer"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "getNoDataValue",
              "parameters": [
                {
                  "name": "gtSource",
                  "type": {
                    "text": "DataTileSource<DataTile | ImageTile> | null"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "getMinMax",
              "parameters": [
                {
                  "name": "gtSource",
                  "type": {
                    "text": "DataTileSource<DataTile | ImageTile>"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "getColorStops",
              "parameters": [
                {
                  "name": "name",
                  "type": {
                    "text": "any"
                  }
                },
                {
                  "name": "min",
                  "type": {
                    "text": "any"
                  }
                },
                {
                  "name": "max",
                  "type": {
                    "text": "any"
                  }
                },
                {
                  "name": "steps",
                  "type": {
                    "text": "any"
                  }
                },
                {
                  "name": "reverse",
                  "type": {
                    "text": "any"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "generatePalette",
              "parameters": [
                {
                  "name": "clrs",
                  "type": {
                    "text": "any"
                  }
                },
                {
                  "name": "dv",
                  "type": {
                    "text": "any"
                  }
                },
                {
                  "name": "min",
                  "type": {
                    "text": "any"
                  }
                },
                {
                  "name": "max",
                  "type": {
                    "text": "any"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#handleOpacityChange",
              "parameters": [
                {
                  "name": "e",
                  "type": {
                    "text": "any"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#handleColorMapChange",
              "parameters": [
                {
                  "name": "e",
                  "type": {
                    "text": "any"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#abortJobStatusTask"
            },
            {
              "kind": "method",
              "name": "applyColorToLayer",
              "parameters": [
                {
                  "name": "gtSource",
                  "type": {
                    "text": "DataTileSource<DataTile | ImageTile>"
                  }
                },
                {
                  "name": "color",
                  "type": {
                    "text": "String"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#getNumberOfPoints",
              "parameters": [
                {
                  "name": "line",
                  "type": {
                    "text": "any"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#quantizeLineString",
              "parameters": [
                {
                  "name": "geo",
                  "type": {
                    "text": "any"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#minifyMapPopover"
            },
            {
              "kind": "method",
              "name": "#cleanUpMap"
            },
            {
              "kind": "method",
              "name": "#getRasterValueAtCoordinate",
              "return": {
                "type": {
                  "text": "number"
                }
              },
              "parameters": [
                {
                  "name": "coord",
                  "type": {
                    "text": "[number, number]"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#handleCheckBoxToggle",
              "parameters": [
                {
                  "name": "e",
                  "type": {
                    "text": "any"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#isVariableNotFound",
              "return": {
                "type": {
                  "text": "boolean"
                }
              }
            },
            {
              "kind": "method",
              "name": "#getErrorMessage",
              "return": {
                "type": {
                  "text": "any"
                }
              },
              "parameters": [
                {
                  "name": "error",
                  "type": {
                    "text": "{\n        code: string\n        message?: string\n        context?: string\n    }"
                  }
                }
              ]
            }
          ],
          "attributes": [
            {
              "name": "collection",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "collection"
            },
            {
              "name": "variable",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "variable"
            },
            {
              "name": "start-date",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "startDate"
            },
            {
              "name": "end-date",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "endDate"
            },
            {
              "name": "location",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "location"
            },
            {
              "name": "bearer-token",
              "type": {
                "text": "string"
              },
              "fieldName": "bearerToken"
            },
            {
              "name": "long_name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "long_name"
            },
            {
              "name": "color-map-name",
              "type": {
                "text": "string"
              },
              "default": "'viridis'",
              "fieldName": "colorMapName"
            },
            {
              "name": "opacity",
              "type": {
                "text": "number"
              },
              "default": "1",
              "fieldName": "opacity"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "tagNameWithoutPrefix": "time-average-map",
          "tagName": "terra-time-average-map",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraTimeAverageMap",
            "module": "components/time-average-map/time-average-map.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/toast/toast.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraToast",
          "cssParts": [
            {
              "description": "The component's base wrapper, an `<terra-alert>` element.",
              "name": "base"
            },
            {
              "description": "The alert's exported `base` part.",
              "name": "base__base"
            },
            {
              "description": "The alert's exported `icon` part.",
              "name": "base__icon"
            },
            {
              "description": "The alert's exported `message` part.",
              "name": "base__message"
            }
          ],
          "slots": [
            {
              "description": "The toast's main content.",
              "name": ""
            },
            {
              "description": "An icon to show in the toast. Works best with `<terra-icon>`.",
              "name": "icon"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{ 'terra-alert': TerraAlert }"
            },
            {
              "kind": "field",
              "name": "alert",
              "type": {
                "text": "TerraAlert | null"
              },
              "readonly": true
            },
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "| 'primary'\n        | 'success'\n        | 'neutral'\n        | 'warning'\n        | 'danger'"
              },
              "default": "'primary'",
              "description": "The toast's theme variant.",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "duration",
              "type": {
                "text": "number"
              },
              "default": "3000",
              "description": "The length of time, in milliseconds, the toast will show before closing itself. If the user interacts with\nthe toast before it closes (e.g. moves the mouse over it), the timer will restart. Defaults to `3000` (3 seconds).",
              "attribute": "duration"
            },
            {
              "kind": "field",
              "name": "closable",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "description": "Enables a close button that allows the user to dismiss the toast.",
              "attribute": "closable",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "countdown",
              "type": {
                "text": "'rtl' | 'ltr' | undefined"
              },
              "description": "Enables a countdown that indicates the remaining time the toast will be displayed.\nTypically used for toasts with relatively long duration.",
              "attribute": "countdown",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "toast",
              "description": "Displays the toast as a notification. This will move the toast out of its position in the DOM and, when\ndismissed, it will be removed from the DOM completely. By storing a reference to the toast, you can reuse it by\ncalling this method again. The returned promise will resolve after the toast is hidden."
            },
            {
              "kind": "method",
              "name": "show",
              "description": "Shows the toast."
            },
            {
              "kind": "method",
              "name": "hide",
              "description": "Hides the toast."
            },
            {
              "kind": "method",
              "name": "notify",
              "static": true,
              "return": {
                "type": {
                  "text": ""
                }
              },
              "parameters": [
                {
                  "name": "message",
                  "type": {
                    "text": "string"
                  },
                  "description": "The message to display in the toast."
                },
                {
                  "name": "variant",
                  "default": "'primary'",
                  "type": {
                    "text": "'primary' | 'success' | 'neutral' | 'warning' | 'danger'"
                  },
                  "description": "The toast variant. Defaults to 'primary'."
                },
                {
                  "name": "icon",
                  "optional": true,
                  "type": {
                    "text": "string"
                  },
                  "description": "Optional icon name to display. Defaults to undefined."
                },
                {
                  "name": "duration",
                  "default": "3000",
                  "description": "The duration in milliseconds. Defaults to 3000."
                }
              ],
              "description": "Creates a toast notification imperatively. This is a convenience method that creates a toast, appends it to the\nbody, and displays it as a notification."
            }
          ],
          "events": [
            {
              "description": "Emitted when the toast opens.",
              "name": "terra-show",
              "reactName": "onTerraShow",
              "eventName": "TerraShowEvent"
            },
            {
              "description": "Emitted after the toast opens and all animations are complete.",
              "name": "terra-after-show",
              "reactName": "onTerraAfterShow",
              "eventName": "TerraAfterShowEvent"
            },
            {
              "description": "Emitted when the toast closes.",
              "name": "terra-hide",
              "reactName": "onTerraHide",
              "eventName": "TerraHideEvent"
            },
            {
              "description": "Emitted after the toast closes and all animations are complete.",
              "name": "terra-after-hide",
              "reactName": "onTerraAfterHide",
              "eventName": "TerraAfterHideEvent"
            }
          ],
          "attributes": [
            {
              "name": "variant",
              "type": {
                "text": "| 'primary'\n        | 'success'\n        | 'neutral'\n        | 'warning'\n        | 'danger'"
              },
              "default": "'primary'",
              "description": "The toast's theme variant.",
              "fieldName": "variant"
            },
            {
              "name": "duration",
              "type": {
                "text": "number"
              },
              "default": "3000",
              "description": "The length of time, in milliseconds, the toast will show before closing itself. If the user interacts with\nthe toast before it closes (e.g. moves the mouse over it), the timer will restart. Defaults to `3000` (3 seconds).",
              "fieldName": "duration"
            },
            {
              "name": "closable",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "description": "Enables a close button that allows the user to dismiss the toast.",
              "fieldName": "closable"
            },
            {
              "name": "countdown",
              "type": {
                "text": "'rtl' | 'ltr' | undefined"
              },
              "description": "Enables a countdown that indicates the remaining time the toast will be displayed.\nTypically used for toasts with relatively long duration.",
              "fieldName": "countdown"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Toasts are used to display brief, non-intrusive notifications that appear temporarily.",
          "tagNameWithoutPrefix": "toast",
          "tagName": "terra-toast",
          "customElement": true,
          "jsDoc": "/**\n * @summary Toasts are used to display brief, non-intrusive notifications that appear temporarily.\n * @documentation https://terra-ui.netlify.app/components/toast\n * @status stable\n * @since 1.0\n *\n * @dependency terra-alert\n *\n * @slot - The toast's main content.\n * @slot icon - An icon to show in the toast. Works best with `<terra-icon>`.\n *\n * @event terra-show - Emitted when the toast opens.\n * @event terra-after-show - Emitted after the toast opens and all animations are complete.\n * @event terra-hide - Emitted when the toast closes.\n * @event terra-after-hide - Emitted after the toast closes and all animations are complete.\n *\n * @csspart base - The component's base wrapper, an `<terra-alert>` element.\n * @csspart base__base - The alert's exported `base` part.\n * @csspart base__icon - The alert's exported `icon` part.\n * @csspart base__message - The alert's exported `message` part.\n *\n * @animation toast.show - The animation to use when showing the toast.\n * @animation toast.hide - The animation to use when hiding the toast.\n */",
          "documentation": "https://terra-ui.netlify.app/components/toast",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-alert"
          ],
          "animations": [
            {
              "name": "toast.show",
              "description": "The animation to use when showing the toast."
            },
            {
              "name": "toast.hide",
              "description": "The animation to use when hiding the toast."
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraToast",
            "module": "components/toast/toast.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/time-series/time-series.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraTimeSeries",
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-plot': TerraPlot,\n        'terra-loader': TerraLoader,\n        'terra-icon': TerraIcon,\n        'terra-button': TerraButton,\n        'terra-alert': TerraAlert,\n        'terra-plot-toolbar': TerraPlotToolbar,\n    }"
            },
            {
              "kind": "field",
              "name": "#timeSeriesController",
              "privacy": "private",
              "type": {
                "text": "TimeSeriesController"
              }
            },
            {
              "kind": "field",
              "name": "variableEntryId",
              "type": {
                "text": "string | undefined"
              },
              "description": "a variable entry ID (ex: GPM_3IMERGHH_06_precipitationCal)",
              "attribute": "variable-entry-id",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "collection",
              "type": {
                "text": "string | undefined"
              },
              "description": "a collection entry id (ex: GPM_3IMERGHH_06)\nonly required if you don't include a variableEntryId",
              "attribute": "collection",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "variable",
              "type": {
                "text": "string | undefined"
              },
              "description": "a variable short name to plot (ex: precipitationCal)\nonly required if you don't include a variableEntryId",
              "attribute": "variable",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "startDate",
              "type": {
                "text": "string | undefined"
              },
              "description": "The start date for the time series plot. (ex: 2021-01-01)",
              "attribute": "start-date",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "endDate",
              "type": {
                "text": "string | undefined"
              },
              "description": "The end date for the time series plot. (ex: 2021-01-01)",
              "attribute": "end-date",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "location",
              "type": {
                "text": "string | undefined"
              },
              "description": "The point location in \"lat,lon\" format.\nOr the bounding box in \"west,south,east,north\" format.",
              "attribute": "location",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "showCitation",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "show-citation"
            },
            {
              "kind": "field",
              "name": "applicationCitation",
              "type": {
                "text": "string | undefined"
              },
              "description": "if you include an application citation, it will be displayed in the citation panel alongside the dataset citation",
              "attribute": "application-citation"
            },
            {
              "kind": "field",
              "name": "disableAutoFetch",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, disables automatic data fetching when the user zooms, pans, or otherwise interacts with the plot.\nWhen disabled, the plot will only show the data for the initial date range and won't fetch new data on plot interactions.",
              "attribute": "disable-auto-fetch"
            },
            {
              "kind": "field",
              "name": "bearerToken",
              "type": {
                "text": "string | undefined"
              },
              "description": "The token to be used for authentication with remote servers.\nThe component provides the header \"Authorization: Bearer\" (the request header and authentication scheme).\nThe property's value will be inserted after \"Bearer\" (the authentication scheme).",
              "attribute": "bearer-token"
            },
            {
              "kind": "field",
              "name": "mobileView",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "mobile-view",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "hideToolbar",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "hide-toolbar",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "productLabel",
              "type": {
                "text": "string | undefined"
              },
              "attribute": "product-label",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "plot",
              "type": {
                "text": "TerraPlot"
              }
            },
            {
              "kind": "field",
              "name": "plotToolbar",
              "type": {
                "text": "TerraPlotToolbar"
              }
            },
            {
              "kind": "field",
              "name": "catalogVariable",
              "type": {
                "text": "Variable"
              }
            },
            {
              "kind": "field",
              "name": "quotaExceededOpen",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false",
              "description": "user quota reached maximum request"
            },
            {
              "kind": "field",
              "name": "timeSeriesError",
              "type": {
                "text": "{\n        code: string\n        message?: string\n        context?: string\n    } | null"
              },
              "privacy": "private",
              "default": "null",
              "description": "stores error information from time series requests"
            },
            {
              "kind": "field",
              "name": "showDataPointWarning",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "if true, we'll show a warning to the user about them requesting a large number of data points"
            },
            {
              "kind": "field",
              "name": "estimatedDataPoints",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "stores the estimated"
            },
            {
              "kind": "field",
              "name": "_authController",
              "default": "new AuthController(this)"
            },
            {
              "kind": "field",
              "name": "_fetchVariableTask"
            },
            {
              "kind": "field",
              "name": "#handleQuotaError",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "#confirmDataPointWarning"
            },
            {
              "kind": "method",
              "name": "#cancelDataPointWarning"
            },
            {
              "kind": "method",
              "name": "#abortDataLoad",
              "description": "aborts the underlying data loading task, which cancels the network request"
            },
            {
              "kind": "method",
              "name": "#handleComponentLeave",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#getYAxisLabel"
            },
            {
              "kind": "method",
              "name": "#hasNoData",
              "return": {
                "type": {
                  "text": "boolean"
                }
              }
            },
            {
              "kind": "method",
              "name": "#isVariableNotFound",
              "return": {
                "type": {
                  "text": "boolean"
                }
              }
            },
            {
              "kind": "method",
              "name": "#getErrorMessage",
              "return": {
                "type": {
                  "text": "any"
                }
              },
              "parameters": [
                {
                  "name": "error",
                  "type": {
                    "text": "{\n        code: string\n        message?: string\n        context?: string\n    }"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#handlePlotRelayout",
              "parameters": [
                {
                  "name": "e",
                  "type": {
                    "text": "TerraPlotRelayoutEvent"
                  }
                }
              ]
            }
          ],
          "events": [
            {
              "name": "terra-date-range-change",
              "type": {
                "text": "CustomEvent"
              },
              "description": "Emitted whenever the date range is modified",
              "reactName": "onTerraDateRangeChange",
              "eventName": "TerraDateRangeChangeEvent"
            },
            {
              "description": "Emitted whenever time series data has been fetched from Giovanni",
              "name": "terra-time-series-data-change",
              "reactName": "onTerraTimeSeriesDataChange",
              "eventName": "TerraTimeSeriesDataChangeEvent"
            }
          ],
          "attributes": [
            {
              "name": "variable-entry-id",
              "type": {
                "text": "string | undefined"
              },
              "description": "a variable entry ID (ex: GPM_3IMERGHH_06_precipitationCal)",
              "fieldName": "variableEntryId"
            },
            {
              "name": "collection",
              "type": {
                "text": "string | undefined"
              },
              "description": "a collection entry id (ex: GPM_3IMERGHH_06)\nonly required if you don't include a variableEntryId",
              "fieldName": "collection"
            },
            {
              "name": "variable",
              "type": {
                "text": "string | undefined"
              },
              "description": "a variable short name to plot (ex: precipitationCal)\nonly required if you don't include a variableEntryId",
              "fieldName": "variable"
            },
            {
              "name": "start-date",
              "type": {
                "text": "string | undefined"
              },
              "description": "The start date for the time series plot. (ex: 2021-01-01)",
              "fieldName": "startDate"
            },
            {
              "name": "end-date",
              "type": {
                "text": "string | undefined"
              },
              "description": "The end date for the time series plot. (ex: 2021-01-01)",
              "fieldName": "endDate"
            },
            {
              "name": "location",
              "type": {
                "text": "string | undefined"
              },
              "description": "The point location in \"lat,lon\" format.\nOr the bounding box in \"west,south,east,north\" format.",
              "fieldName": "location"
            },
            {
              "name": "show-citation",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "showCitation"
            },
            {
              "name": "application-citation",
              "type": {
                "text": "string | undefined"
              },
              "description": "if you include an application citation, it will be displayed in the citation panel alongside the dataset citation",
              "fieldName": "applicationCitation"
            },
            {
              "name": "disable-auto-fetch",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, disables automatic data fetching when the user zooms, pans, or otherwise interacts with the plot.\nWhen disabled, the plot will only show the data for the initial date range and won't fetch new data on plot interactions.",
              "fieldName": "disableAutoFetch"
            },
            {
              "name": "bearer-token",
              "type": {
                "text": "string | undefined"
              },
              "description": "The token to be used for authentication with remote servers.\nThe component provides the header \"Authorization: Bearer\" (the request header and authentication scheme).\nThe property's value will be inserted after \"Bearer\" (the authentication scheme).",
              "fieldName": "bearerToken"
            },
            {
              "name": "mobile-view",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "mobileView"
            },
            {
              "name": "hide-toolbar",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "hideToolbar"
            },
            {
              "name": "product-label",
              "type": {
                "text": "string | undefined"
              },
              "fieldName": "productLabel"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "A component for visualizing time series data using the GES DISC Giovanni API.",
          "tagNameWithoutPrefix": "time-series",
          "tagName": "terra-time-series",
          "customElement": true,
          "jsDoc": "/**\n * @summary A component for visualizing time series data using the GES DISC Giovanni API.\n * @documentation https://terra-ui.netlify.app/components/time-series\n * @status stable\n * @since 1.0\n *\n * @dependency terra-plot\n *\n * @event terra-date-range-change - Emitted whenever the date range is modified\n * @event terra-time-series-data-change - Emitted whenever time series data has been fetched from Giovanni\n */",
          "documentation": "https://terra-ui.netlify.app/components/time-series",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-plot"
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraTimeSeries",
            "module": "components/time-series/time-series.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/toggle/toggle.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraToggle",
          "cssProperties": [
            {
              "description": "The width of the switch.",
              "name": "--width"
            },
            {
              "description": "The height of the switch.",
              "name": "--height"
            },
            {
              "description": "The size of the thumb.",
              "name": "--thumb-size"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The control that houses the switch's thumb.",
              "name": "control"
            },
            {
              "description": "The switch's thumb.",
              "name": "thumb"
            },
            {
              "description": "The switch's label.",
              "name": "label"
            },
            {
              "description": "The help text's wrapper.",
              "name": "form-control-help-text"
            }
          ],
          "slots": [
            {
              "description": "The switch's label.",
              "name": ""
            },
            {
              "description": "Text that describes how to use the switch. Alternatively, you can use the `help-text` attribute.",
              "name": "help-text"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this, {\n        value: (control: TerraToggle) =>\n            control.checked ? control.value || 'on' : undefined,\n        defaultValue: (control: TerraToggle) => control.defaultChecked,\n        setValue: (control: TerraToggle, checked: boolean) =>\n            (control.checked = checked),\n    })"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'help-text')"
            },
            {
              "kind": "field",
              "name": "input",
              "type": {
                "text": "HTMLInputElement"
              }
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "title"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the switch, submitted as a name/value pair with form data.",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The current value of the switch, submitted as a name/value pair with form data.",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The switch's size.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the switch.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "checked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the switch in a checked state.",
              "attribute": "checked",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "defaultChecked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "The default value of the form control. Primarily used for resetting the form control."
            },
            {
              "kind": "field",
              "name": "form",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "attribute": "form",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the switch a required field.",
              "attribute": "required",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The switch's help text. If you need to display HTML, use the `help-text` slot instead.",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "validity",
              "description": "Gets the validity state object",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "validationMessage",
              "description": "Gets the validation message",
              "readonly": true
            },
            {
              "kind": "method",
              "name": "handleBlur",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleInput",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleInvalid",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleFocus",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleCheckedChange"
            },
            {
              "kind": "method",
              "name": "handleDisabledChange"
            },
            {
              "kind": "method",
              "name": "click",
              "description": "Simulates a click on the switch."
            },
            {
              "kind": "method",
              "name": "focus",
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "FocusOptions"
                  }
                }
              ],
              "description": "Sets focus on the switch."
            },
            {
              "kind": "method",
              "name": "blur",
              "description": "Removes focus from the switch."
            },
            {
              "kind": "method",
              "name": "checkValidity",
              "description": "Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid."
            },
            {
              "kind": "method",
              "name": "getForm",
              "return": {
                "type": {
                  "text": "HTMLFormElement | null"
                }
              },
              "description": "Gets the associated form, if one exists."
            },
            {
              "kind": "method",
              "name": "reportValidity",
              "description": "Checks for validity and shows the browser's validation message if the control is invalid."
            },
            {
              "kind": "method",
              "name": "setCustomValidity",
              "parameters": [
                {
                  "name": "message",
                  "type": {
                    "text": "string"
                  }
                }
              ],
              "description": "Sets a custom validation message. Pass an empty string to restore validity."
            }
          ],
          "events": [
            {
              "description": "Emitted when the control loses focus.",
              "name": "terra-blur",
              "reactName": "onTerraBlur",
              "eventName": "TerraBlurEvent"
            },
            {
              "description": "Emitted when the control's checked state changes.",
              "name": "terra-change",
              "reactName": "onTerraChange",
              "eventName": "TerraChangeEvent"
            },
            {
              "description": "Emitted when the control receives input.",
              "name": "terra-input",
              "reactName": "onTerraInput",
              "eventName": "TerraInputEvent"
            },
            {
              "description": "Emitted when the control gains focus.",
              "name": "terra-focus",
              "reactName": "onTerraFocus",
              "eventName": "TerraFocusEvent"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "terra-invalid",
              "reactName": "onTerraInvalid",
              "eventName": "TerraInvalidEvent"
            }
          ],
          "attributes": [
            {
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "title"
            },
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the switch, submitted as a name/value pair with form data.",
              "fieldName": "name"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The current value of the switch, submitted as a name/value pair with form data.",
              "fieldName": "value"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The switch's size.",
              "fieldName": "size"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the switch.",
              "fieldName": "disabled"
            },
            {
              "name": "checked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the switch in a checked state.",
              "fieldName": "checked"
            },
            {
              "name": "form",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "By default, form controls are associated with the nearest containing `<form>` element. This attribute allows you\nto place the form control outside of a form and associate it with the form that has this `id`. The form must be in\nthe same document or shadow root for this to work.",
              "fieldName": "form"
            },
            {
              "name": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the switch a required field.",
              "fieldName": "required"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The switch's help text. If you need to display HTML, use the `help-text` slot instead.",
              "fieldName": "helpText"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Switches allow the user to toggle an option on or off.",
          "tagNameWithoutPrefix": "toggle",
          "tagName": "terra-toggle",
          "customElement": true,
          "jsDoc": "/**\n * @summary Switches allow the user to toggle an option on or off.\n * @documentation https://terra-ui.netlify.app/components/toggle\n * @status stable\n * @since 1.0\n *\n * @slot - The switch's label.\n * @slot help-text - Text that describes how to use the switch. Alternatively, you can use the `help-text` attribute.\n *\n * @event terra-blur - Emitted when the control loses focus.\n * @event terra-change - Emitted when the control's checked state changes.\n * @event terra-input - Emitted when the control receives input.\n * @event terra-focus - Emitted when the control gains focus.\n * @event terra-invalid - Emitted when the form control has been checked for validity and its constraints aren't satisfied.\n *\n * @csspart base - The component's base wrapper.\n * @csspart control - The control that houses the switch's thumb.\n * @csspart thumb - The switch's thumb.\n * @csspart label - The switch's label.\n * @csspart form-control-help-text - The help text's wrapper.\n *\n * @cssproperty --width - The width of the switch.\n * @cssproperty --height - The height of the switch.\n * @cssproperty --thumb-size - The size of the thumb.\n */",
          "documentation": "https://terra-ui.netlify.app/components/toggle",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraToggle",
            "module": "components/toggle/toggle.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/variable-combobox/variable-combobox.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraVariableCombobox",
          "cssProperties": [
            {
              "description": "The height of the host element.",
              "name": "--host-height"
            },
            {
              "description": "The height of the search help element.",
              "name": "--help-height"
            },
            {
              "description": "The height of the input's label element.",
              "name": "--label-height"
            }
          ],
          "cssParts": [
            {
              "description": "A `search` element, the component's base.",
              "name": "base"
            },
            {
              "description": "An `input` element used for searching.",
              "name": "combobox"
            },
            {
              "description": "A `button` used for toggling the listbox's visibility.",
              "name": "button"
            },
            {
              "description": "A `ul` that holds the clickable options.",
              "name": "listbox"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-button': TerraButton,\n        'terra-icon': TerraIcon,\n    }"
            },
            {
              "kind": "field",
              "name": "shadowRootOptions",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        ...LitElement.shadowRootOptions,\n        delegatesFocus: true,\n    }"
            },
            {
              "kind": "field",
              "name": "tagName",
              "type": {
                "text": "string"
              },
              "static": true,
              "default": "'terra-variable-combobox'"
            },
            {
              "kind": "field",
              "name": "initialQuery",
              "type": {
                "text": "string"
              },
              "static": true,
              "default": "''"
            },
            {
              "kind": "field",
              "name": "#combobox",
              "privacy": "private",
              "type": {
                "text": "HTMLInputElement | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#fetchController",
              "privacy": "private",
              "type": {
                "text": "FetchController"
              }
            },
            {
              "kind": "field",
              "name": "#searchableList",
              "privacy": "private",
              "type": {
                "text": "ListItem[]"
              },
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "#listbox",
              "privacy": "private",
              "type": {
                "text": "HTMLUListElement | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#searchEngine",
              "privacy": "private",
              "type": {
                "text": "Fuse<ListItem> | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#walker",
              "privacy": "private",
              "type": {
                "text": "TreeWalker | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#tagContainer",
              "privacy": "private",
              "type": {
                "text": "HTMLDivElement | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "'Search for Variables'",
              "description": "Label the combobox with this.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "description": "Set a placeholder for the combobox with this.\nDefaults to the label's value.",
              "attribute": "placeholder"
            },
            {
              "kind": "field",
              "name": "hideHelp",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Hide the combobox's help text.\nWhen hidden, not rendered at all.",
              "attribute": "hide-help",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "hideLabel",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Hide the combobox's label text.\nWhen hidden, still presents to screen readers.",
              "attribute": "hide-label",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "useTags",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Determines if the variable combobox uses tags or plain text to display the query.",
              "attribute": "use-tags",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "Represents the EntryID (<collection-name>_<variable-name>) of the selected variable.\nOther components (like the time-series graphing component) will use this.",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "bearerToken",
              "type": {
                "text": "string"
              },
              "description": "The token to be used for authentication with remote servers.\nThe component provides the header \"Authorization: Bearer\" (the request header and authentication scheme).\nThe property's value will be inserted after \"Bearer\" (the authentication scheme).",
              "attribute": "bearer-token"
            },
            {
              "kind": "field",
              "name": "isExpanded",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "query"
            },
            {
              "kind": "field",
              "name": "searchResults",
              "type": {
                "text": "ListItem[]"
              },
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "tags",
              "type": {
                "text": "string[]"
              },
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "tagContainerWidth",
              "type": {
                "text": "number"
              },
              "default": "0"
            },
            {
              "kind": "method",
              "name": "valueChanged",
              "parameters": [
                {
                  "name": "oldValue",
                  "type": {
                    "text": "string"
                  }
                },
                {
                  "name": "newValue",
                  "type": {
                    "text": "string"
                  }
                }
              ],
              "description": "This component's value is read by other components.\nInternally, the variable metdata has slight differences that require adapting."
            },
            {
              "kind": "method",
              "name": "clear"
            },
            {
              "kind": "method",
              "name": "close"
            },
            {
              "kind": "method",
              "name": "toggle"
            },
            {
              "kind": "field",
              "name": "#dispatchChange",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#handleButtonClick",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#handleComboboxChange",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#handleOptionClick",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#handleKeydown",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#manageListboxVisibility",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#selectOption",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "#renderTags",
              "parameters": [
                {
                  "name": "tag",
                  "type": {
                    "text": "string"
                  }
                },
                {
                  "name": "_index",
                  "type": {
                    "text": "number"
                  }
                }
              ]
            }
          ],
          "events": [
            {
              "description": "Emitted when an option is selected.",
              "name": "terra-combobox-change",
              "reactName": "onTerraComboboxChange",
              "eventName": "TerraComboboxChangeEvent"
            }
          ],
          "attributes": [
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "'Search for Variables'",
              "description": "Label the combobox with this.",
              "fieldName": "label"
            },
            {
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "description": "Set a placeholder for the combobox with this.\nDefaults to the label's value.",
              "fieldName": "placeholder"
            },
            {
              "name": "hide-help",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Hide the combobox's help text.\nWhen hidden, not rendered at all.",
              "fieldName": "hideHelp"
            },
            {
              "name": "hide-label",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Hide the combobox's label text.\nWhen hidden, still presents to screen readers.",
              "fieldName": "hideLabel"
            },
            {
              "name": "use-tags",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Determines if the variable combobox uses tags or plain text to display the query.",
              "fieldName": "useTags"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "Represents the EntryID (<collection-name>_<variable-name>) of the selected variable.\nOther components (like the time-series graphing component) will use this.",
              "fieldName": "value"
            },
            {
              "name": "bearer-token",
              "type": {
                "text": "string"
              },
              "description": "The token to be used for authentication with remote servers.\nThe component provides the header \"Authorization: Bearer\" (the request header and authentication scheme).\nThe property's value will be inserted after \"Bearer\" (the authentication scheme).",
              "fieldName": "bearerToken"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Fuzzy-search for dataset variables in combobox with list autocomplete.",
          "tagNameWithoutPrefix": "variable-combobox",
          "tagName": "terra-variable-combobox",
          "customElement": true,
          "jsDoc": "/**\n * @summary Fuzzy-search for dataset variables in combobox with list autocomplete.\n * @documentation https://terra-ui.netlify.app/components/variable-combobox\n * @see https://www.w3.org/WAI/ARIA/apg/patterns/combobox/examples/combobox-autocomplete-list/\n * @status stable\n * @since 1.0\n *\n * @csspart base - A `search` element, the component's base.\n * @csspart combobox - An `input` element used for searching.\n * @csspart button - A `button` used for toggling the listbox's visibility.\n * @csspart listbox - A `ul` that holds the clickable options.\n *\n * @cssproperty --host-height - The height of the host element.\n * @cssproperty --help-height - The height of the search help element.\n * @cssproperty --label-height - The height of the input's label element.\n *\n * @event terra-combobox-change - Emitted when an option is selected.\n */",
          "documentation": "https://terra-ui.netlify.app/components/variable-combobox",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraVariableCombobox",
            "module": "components/variable-combobox/variable-combobox.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/variable-keyword-search/variable-keyword-search.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraVariableKeywordSearch",
          "cssProperties": [
            {
              "description": "The height of the host element.",
              "name": "--host-height"
            },
            {
              "description": "The height of the input's label element.",
              "name": "--label-height"
            }
          ],
          "cssParts": [
            {
              "description": "A `search` element, the component's base.",
              "name": "base"
            },
            {
              "description": "An `input` element used for searching.",
              "name": "combobox"
            },
            {
              "description": "A `button` used for toggling the listbox's visibility.",
              "name": "button"
            },
            {
              "description": "A `ul` that holds the clickable options.",
              "name": "listbox"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        'terra-button': TerraButton,\n        'terra-icon': TerraIcon,\n    }"
            },
            {
              "kind": "field",
              "name": "shadowRootOptions",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{\n        ...LitElement.shadowRootOptions,\n        delegatesFocus: true,\n    }"
            },
            {
              "kind": "field",
              "name": "tagName",
              "type": {
                "text": "string"
              },
              "static": true,
              "default": "'terra-variable-keyword-search'"
            },
            {
              "kind": "field",
              "name": "initialQuery",
              "type": {
                "text": "string"
              },
              "static": true,
              "default": "''"
            },
            {
              "kind": "field",
              "name": "#combobox",
              "privacy": "private",
              "type": {
                "text": "HTMLInputElement | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#fetchController",
              "privacy": "private",
              "default": "new FetchController(this)"
            },
            {
              "kind": "field",
              "name": "#listbox",
              "privacy": "private",
              "type": {
                "text": "HTMLUListElement | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#searchEngine",
              "privacy": "private",
              "type": {
                "text": "Fuse<ListItem> | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "#walker",
              "privacy": "private",
              "type": {
                "text": "TreeWalker | null"
              },
              "default": "null"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "'Enter search terms (e.g., precipitation, AOD)'",
              "description": "Label the combobox with this.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "description": "Set a placeholder for the combobox with this.\nDefaults to the label's value.",
              "attribute": "placeholder"
            },
            {
              "kind": "field",
              "name": "hideLabel",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "description": "Hide the combobox's label text.\nWhen hidden, still presents to screen readers.",
              "attribute": "hide-label"
            },
            {
              "kind": "field",
              "name": "searchConfig",
              "type": {
                "text": "object"
              },
              "default": "{\n        //* @see {@link https://www.fusejs.io/api/options.html#options}\n        keys: ['id'],\n        useExtendedSearch: true,\n    }",
              "description": "type can be `Boolean`, `String`, `Number`, `Object`, or `Array`",
              "attribute": "searchConfig"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "isExpanded",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "query"
            },
            {
              "kind": "field",
              "name": "searchResults",
              "type": {
                "text": "ListItem[]"
              },
              "default": "[]"
            },
            {
              "kind": "method",
              "name": "valueChanged",
              "parameters": [
                {
                  "name": "_oldValue",
                  "type": {
                    "text": "string"
                  }
                },
                {
                  "name": "newValue",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "clear"
            },
            {
              "kind": "method",
              "name": "close"
            },
            {
              "kind": "method",
              "name": "toggle"
            },
            {
              "kind": "field",
              "name": "#handleComboboxChange",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#handleOptionClick",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#handleKeydown",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#manageListboxVisibility",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "#selectOption",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "#handleSearch",
              "parameters": [
                {
                  "name": "query",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "#clearSearch"
            }
          ],
          "events": [
            {
              "description": "Emitted when an option is selected.",
              "name": "terra-variable-keyword-search-change",
              "reactName": "onTerraVariableKeywordSearchChange",
              "eventName": "TerraVariableKeywordSearchChangeEvent"
            },
            {
              "description": "Emitted when the component is triggering a search (like a form triggering submit).",
              "name": "terra-search",
              "reactName": "onTerraSearch",
              "eventName": "TerraSearchEvent"
            }
          ],
          "attributes": [
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "'Enter search terms (e.g., precipitation, AOD)'",
              "description": "Label the combobox with this.",
              "fieldName": "label"
            },
            {
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "description": "Set a placeholder for the combobox with this.\nDefaults to the label's value.",
              "fieldName": "placeholder"
            },
            {
              "name": "hide-label",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "description": "Hide the combobox's label text.\nWhen hidden, still presents to screen readers.",
              "fieldName": "hideLabel"
            },
            {
              "name": "searchConfig",
              "type": {
                "text": "object"
              },
              "default": "{\n        //* @see {@link https://www.fusejs.io/api/options.html#options}\n        keys: ['id'],\n        useExtendedSearch: true,\n    }",
              "description": "type can be `Boolean`, `String`, `Number`, `Object`, or `Array`",
              "fieldName": "searchConfig"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "fieldName": "value"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Fuzzy-search for dataset keywords in combobox with list autocomplete.",
          "tagNameWithoutPrefix": "variable-keyword-search",
          "tagName": "terra-variable-keyword-search",
          "customElement": true,
          "jsDoc": "/**\n * @summary Fuzzy-search for dataset keywords in combobox with list autocomplete.\n * @documentation https://terra-ui.netlify.app/components/giovanni-serch\n * @see https://www.w3.org/WAI/ARIA/apg/patterns/combobox/examples/combobox-autocomplete-list/\n * @status stable\n * @since 1.0\n *\n * @csspart base - A `search` element, the component's base.\n * @csspart combobox - An `input` element used for searching.\n * @csspart button - A `button` used for toggling the listbox's visibility.\n * @csspart listbox - A `ul` that holds the clickable options.\n *\n * @cssproperty --host-height - The height of the host element.\n * @cssproperty --label-height - The height of the input's label element.\n *\n * @event terra-variable-keyword-search-change - Emitted when an option is selected.\n * @event terra-search - Emitted when the component is triggering a search (like a form triggering submit).\n */",
          "documentation": "https://terra-ui.netlify.app/components/giovanni-serch",
          "status": "stable",
          "since": "1.0"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraVariableKeywordSearch",
            "module": "components/variable-keyword-search/variable-keyword-search.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tooltip/tooltip.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "TerraTooltip",
          "cssProperties": [
            {
              "description": "The maximum width of the tooltip before its content will wrap.",
              "name": "--max-width"
            },
            {
              "description": "The amount of time to wait before hiding the tooltip when hovering.",
              "name": "--hide-delay"
            },
            {
              "description": "The amount of time to wait before showing the tooltip when hovering.",
              "name": "--show-delay"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper, an `<terra-popup>` element.",
              "name": "base"
            },
            {
              "description": "The popup's exported `popup` part. Use this to target the tooltip's popup container.",
              "name": "base__popup"
            },
            {
              "description": "The popup's exported `arrow` part. Use this to target the tooltip's arrow.",
              "name": "base__arrow"
            },
            {
              "description": "The tooltip or popover body where its content is rendered.",
              "name": "body"
            }
          ],
          "slots": [
            {
              "description": "The tooltip or popover target element. Avoid slotting in more than one element, as subsequent ones will be ignored.",
              "name": ""
            },
            {
              "description": "The content to render in the tooltip or popover. Alternatively, you can use the `content` attribute.",
              "name": "content"
            },
            {
              "description": "Optional image slot for popovers. When provided, the image will span the full width of the popover.",
              "name": "image"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{ 'terra-popup': TerraPopup }"
            },
            {
              "kind": "field",
              "name": "hoverTimeout",
              "type": {
                "text": "number"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "closeWatcher",
              "type": {
                "text": "CloseWatcher | null"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "defaultSlot",
              "type": {
                "text": "HTMLSlotElement"
              }
            },
            {
              "kind": "field",
              "name": "body",
              "type": {
                "text": "HTMLElement"
              }
            },
            {
              "kind": "field",
              "name": "popup",
              "type": {
                "text": "TerraPopup"
              }
            },
            {
              "kind": "field",
              "name": "content",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The tooltip or popover content. If you need to display HTML, use the `content` slot instead.",
              "attribute": "content"
            },
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "'tooltip' | 'popover'"
              },
              "default": "'tooltip'",
              "description": "The variant of the component. `tooltip` shows compact inline help, while `popover` shows a larger card-style panel\nthat can contain images and links.",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "placement",
              "type": {
                "text": "| 'top'\n        | 'top-start'\n        | 'top-end'\n        | 'right'\n        | 'right-start'\n        | 'right-end'\n        | 'bottom'\n        | 'bottom-start'\n        | 'bottom-end'\n        | 'left'\n        | 'left-start'\n        | 'left-end'"
              },
              "default": "'top'",
              "description": "The preferred placement of the tooltip. Note that the actual placement may vary as needed to keep the tooltip\ninside of the viewport.",
              "attribute": "placement"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the tooltip so it won't show when triggered.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "distance",
              "type": {
                "text": "number"
              },
              "default": "8",
              "description": "The distance in pixels from which to offset the tooltip or popover away from its target.",
              "attribute": "distance"
            },
            {
              "kind": "field",
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the tooltip or popover is open. You can use this in lieu of the show/hide methods.",
              "attribute": "open",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "skidding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The distance in pixels from which to offset the tooltip along its target.",
              "attribute": "skidding"
            },
            {
              "kind": "field",
              "name": "trigger",
              "type": {
                "text": "string"
              },
              "default": "'hover focus'",
              "description": "Controls how the tooltip or popover is activated. Possible options include `click`, `hover`, `focus`, and `manual`. Multiple\noptions can be passed by separating them with a space. When manual is used, the tooltip must be activated\nprogrammatically.",
              "attribute": "trigger"
            },
            {
              "kind": "field",
              "name": "hoist",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Enable this option to prevent the tooltip from being clipped when the component is placed inside a container with\n`overflow: auto|hidden|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all,\nscenarios.",
              "attribute": "hoist"
            },
            {
              "kind": "field",
              "name": "handleBlur",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleClick",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleFocus",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleDocumentKeyDown",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleMouseOver",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleMouseOut",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "hasTrigger",
              "privacy": "private",
              "parameters": [
                {
                  "name": "triggerType",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleOpenChange"
            },
            {
              "kind": "method",
              "name": "handleOptionsChange"
            },
            {
              "kind": "method",
              "name": "handleDisabledChange"
            },
            {
              "kind": "method",
              "name": "show",
              "description": "Shows the tooltip or popover."
            },
            {
              "kind": "method",
              "name": "hide",
              "description": "Hides the tooltip or popover."
            }
          ],
          "events": [
            {
              "description": "Emitted when the tooltip or popover begins to show.",
              "name": "terra-show",
              "reactName": "onTerraShow",
              "eventName": "TerraShowEvent"
            },
            {
              "description": "Emitted after it has shown and all animations are complete.",
              "name": "terra-after-show",
              "reactName": "onTerraAfterShow",
              "eventName": "TerraAfterShowEvent"
            },
            {
              "description": "Emitted when the tooltip or popover begins to hide.",
              "name": "terra-hide",
              "reactName": "onTerraHide",
              "eventName": "TerraHideEvent"
            },
            {
              "description": "Emitted after it has hidden and all animations are complete.",
              "name": "terra-after-hide",
              "reactName": "onTerraAfterHide",
              "eventName": "TerraAfterHideEvent"
            }
          ],
          "attributes": [
            {
              "name": "content",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The tooltip or popover content. If you need to display HTML, use the `content` slot instead.",
              "fieldName": "content"
            },
            {
              "name": "variant",
              "type": {
                "text": "'tooltip' | 'popover'"
              },
              "default": "'tooltip'",
              "description": "The variant of the component. `tooltip` shows compact inline help, while `popover` shows a larger card-style panel\nthat can contain images and links.",
              "fieldName": "variant"
            },
            {
              "name": "placement",
              "type": {
                "text": "| 'top'\n        | 'top-start'\n        | 'top-end'\n        | 'right'\n        | 'right-start'\n        | 'right-end'\n        | 'bottom'\n        | 'bottom-start'\n        | 'bottom-end'\n        | 'left'\n        | 'left-start'\n        | 'left-end'"
              },
              "default": "'top'",
              "description": "The preferred placement of the tooltip. Note that the actual placement may vary as needed to keep the tooltip\ninside of the viewport.",
              "fieldName": "placement"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the tooltip so it won't show when triggered.",
              "fieldName": "disabled"
            },
            {
              "name": "distance",
              "type": {
                "text": "number"
              },
              "default": "8",
              "description": "The distance in pixels from which to offset the tooltip or popover away from its target.",
              "fieldName": "distance"
            },
            {
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the tooltip or popover is open. You can use this in lieu of the show/hide methods.",
              "fieldName": "open"
            },
            {
              "name": "skidding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The distance in pixels from which to offset the tooltip along its target.",
              "fieldName": "skidding"
            },
            {
              "name": "trigger",
              "type": {
                "text": "string"
              },
              "default": "'hover focus'",
              "description": "Controls how the tooltip or popover is activated. Possible options include `click`, `hover`, `focus`, and `manual`. Multiple\noptions can be passed by separating them with a space. When manual is used, the tooltip must be activated\nprogrammatically.",
              "fieldName": "trigger"
            },
            {
              "name": "hoist",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Enable this option to prevent the tooltip from being clipped when the component is placed inside a container with\n`overflow: auto|hidden|scroll`. Hoisting uses a fixed positioning strategy that works in many, but not all,\nscenarios.",
              "fieldName": "hoist"
            }
          ],
          "superclass": {
            "name": "TerraElement",
            "module": "/src/internal/terra-element.js"
          },
          "summary": "Tooltips display brief, contextual help on hover or focus. Popovers show richer supporting content.",
          "tagNameWithoutPrefix": "tooltip",
          "tagName": "terra-tooltip",
          "customElement": true,
          "jsDoc": "/**\n * @summary Tooltips display brief, contextual help on hover or focus. Popovers show richer supporting content.\n * @documentation https://terra-ui.netlify.app/components/tooltip\n * @status stable\n * @since 1.0\n *\n * @dependency terra-popup\n *\n * @slot - The tooltip or popover target element. Avoid slotting in more than one element, as subsequent ones will be ignored.\n * @slot content - The content to render in the tooltip or popover. Alternatively, you can use the `content` attribute.\n * @slot image - Optional image slot for popovers. When provided, the image will span the full width of the popover.\n *\n * @event terra-show - Emitted when the tooltip or popover begins to show.\n * @event terra-after-show - Emitted after it has shown and all animations are complete.\n * @event terra-hide - Emitted when the tooltip or popover begins to hide.\n * @event terra-after-hide - Emitted after it has hidden and all animations are complete.\n *\n * @csspart base - The component's base wrapper, an `<terra-popup>` element.\n * @csspart base__popup - The popup's exported `popup` part. Use this to target the tooltip's popup container.\n * @csspart base__arrow - The popup's exported `arrow` part. Use this to target the tooltip's arrow.\n * @csspart body - The tooltip or popover body where its content is rendered.\n *\n * @cssproperty --max-width - The maximum width of the tooltip before its content will wrap.\n * @cssproperty --hide-delay - The amount of time to wait before hiding the tooltip when hovering.\n * @cssproperty --show-delay - The amount of time to wait before showing the tooltip when hovering.\n *\n * @animation tooltip.show - The animation to use when showing the tooltip.\n * @animation tooltip.hide - The animation to use when hiding the tooltip.\n */",
          "documentation": "https://terra-ui.netlify.app/components/tooltip",
          "status": "stable",
          "since": "1.0",
          "dependencies": [
            "terra-popup"
          ],
          "animations": [
            {
              "name": "tooltip.show",
              "description": "The animation to use when showing the tooltip."
            },
            {
              "name": "tooltip.hide",
              "description": "The animation to use when hiding the tooltip."
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "TerraTooltip",
            "module": "components/tooltip/tooltip.js"
          }
        }
      ]
    }
  ],
  "package": {
    "name": "@nasa-terra/components",
    "description": "A collection of NASA Earthdata components",
    "version": "0.0.167",
    "author": "NASA GES DISC <https://disc.gsfc.nasa.gov>",
    "homepage": "https://github.com/nasa/terra-ui-components",
    "license": "MIT"
  }
}
