{
  "schemaVersion": "1.0.0",
  "readme": "",
  "modules": [
    {
      "kind": "javascript-module",
      "path": "components/alert/alert.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiAlert",
          "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"
            },
            {
              "description": "The close button, an `<flow-ui-icon-button>`.",
              "name": "close-button"
            },
            {
              "description": "The close button's exported `base` part.",
              "name": "close-button__base"
            }
          ],
          "slots": [
            {
              "description": "The alert's main content.",
              "name": ""
            },
            {
              "description": "An icon to show in the alert. Works best with `<flow-ui-icon>`.",
              "name": "icon"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "autoHideTimeout",
              "type": {
                "text": "number"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'icon', 'suffix')"
            },
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "base",
              "type": {
                "text": "HTMLElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to display the alert. You can also\nuse the `show()` and `hide()` methods.",
              "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' | 'secondary' | 'success' | 'neutral' | 'warning' | 'danger'"
              },
              "default": "'primary'",
              "description": "The alert's theme variant.",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "duration",
              "default": "Infinity",
              "description": "The length of time (in ms) that the alert will show itself before closing. If the user interacts with\nthe alert before it closes (e.g. by moving the mouse over it), the timer will restart.",
              "attribute": "duration"
            },
            {
              "kind": "method",
              "name": "restartAutoHide",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleCloseClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleMouseMove",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "show",
              "description": "Shows the alert."
            },
            {
              "kind": "method",
              "name": "hide",
              "description": "Hides the alert"
            },
            {
              "kind": "method",
              "name": "toast",
              "return": {
                "type": {
                  "text": "Promise<void>"
                }
              },
              "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": "flow-ui-show",
              "reactName": "onFlowUiShow"
            },
            {
              "description": "Emitted after the alert opens and all animations are complete.",
              "name": "flow-ui-after-show",
              "reactName": "onFlowUiAfterShow"
            },
            {
              "description": "Emitted when the alert closes.",
              "name": "flow-ui-hide",
              "reactName": "onFlowUiHide"
            },
            {
              "description": "Emitted after the alert closes and all animations are complete.",
              "name": "flow-ui-after-hide",
              "reactName": "onFlowUiAfterHide"
            }
          ],
          "attributes": [
            {
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to display the alert. You can also\nuse the `show()` and `hide()` methods.",
              "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' | 'secondary' | 'success' | 'neutral' | 'warning' | 'danger'"
              },
              "default": "'primary'",
              "description": "The alert's theme variant.",
              "fieldName": "variant"
            },
            {
              "name": "duration",
              "default": "Infinity",
              "description": "The length of time (in ms) that the alert will show itself before closing. If the user interacts with\nthe alert before it closes (e.g. by moving the mouse over it), the timer will restart.",
              "resolveInitializer": {
                "module": "src/components/alert/alert.component.ts"
              },
              "fieldName": "duration"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-alert",
          "summary": "Alerts are used to display important messages inline or as toast notifications.",
          "dependencies": [
            "flow-ui-icon-button"
          ],
          "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."
            }
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiAlert",
            "module": "components/alert/alert.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/alert/alert.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./alert.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiAlert",
            "module": "components/alert/alert.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/animation/animation.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiAnimation",
          "slots": [
            {
              "description": "The element to animate. Avoid slotting in more than one element, as subsequent ones will be ignored. To animate multiple elements, either wrap them in a single container or use multiple `<flow-ui-animation>` elements.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "animation",
              "type": {
                "text": "Animation | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "hasStarted",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "defaultSlot",
              "type": {
                "text": "Promise<HTMLSlotElement>"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "'none'",
              "description": "The name of the built-in animation to use. For custom animations, use the `keyframes` prop.\nUse `getAnimationNames()` to retrieve a list of available animations.",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "play",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Plays the animation. When omitted, the animation will be paused. This attribute will be automatically removed when\nthe animation finishes or gets canceled.",
              "attribute": "play",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "delay",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The number of milliseconds to delay the start of the animation.",
              "attribute": "delay"
            },
            {
              "kind": "field",
              "name": "direction",
              "type": {
                "text": "PlaybackDirection"
              },
              "default": "'normal'",
              "description": "Determines the direction of playback as well as the behavior when reaching the end of an iteration.\n[Learn more](https://developer.mozilla.org/en-US/docs/Web/CSS/animation-direction)",
              "attribute": "direction"
            },
            {
              "kind": "field",
              "name": "duration",
              "type": {
                "text": "number"
              },
              "default": "1000",
              "description": "The number of milliseconds each iteration of the animation takes to complete.",
              "attribute": "duration"
            },
            {
              "kind": "field",
              "name": "easing",
              "type": {
                "text": "string"
              },
              "default": "'linear'",
              "description": "The easing function to use for the animation. This can be a Shoelace easing function or a custom easing function\nsuch as `cubic-bezier(0, 1, .76, 1.14)`.",
              "attribute": "easing"
            },
            {
              "kind": "field",
              "name": "endDelay",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The number of milliseconds to delay after the active period of an animation sequence.",
              "attribute": "end-delay"
            },
            {
              "kind": "field",
              "name": "fill",
              "type": {
                "text": "FillMode"
              },
              "default": "'auto'",
              "description": "Sets how the animation applies styles to its target before and after its execution.",
              "attribute": "fill"
            },
            {
              "kind": "field",
              "name": "iterations",
              "default": "Infinity",
              "description": "The number of iterations to run before the animation completes. Defaults to `Infinity`, which loops.",
              "attribute": "iterations"
            },
            {
              "kind": "field",
              "name": "iterationStart",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The offset at which to start the animation, usually between 0 (start) and 1 (end).",
              "attribute": "iteration-start"
            },
            {
              "kind": "field",
              "name": "keyframes",
              "type": {
                "text": "Keyframe[] | undefined"
              },
              "description": "The keyframes to use for the animation. If this is set, `name` will be ignored."
            },
            {
              "kind": "field",
              "name": "playbackRate",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "Sets the animation's playback rate. The default is `1`, which plays the animation at a normal speed. Setting this\nto `2`, for example, will double the animation's speed. A negative value can be used to reverse the animation. This\nvalue can be changed without causing the animation to restart.",
              "attribute": "playback-rate"
            },
            {
              "kind": "field",
              "name": "currentTime",
              "type": {
                "text": "CSSNumberish"
              },
              "description": "Gets and sets the current animation time."
            },
            {
              "kind": "field",
              "name": "handleAnimationFinish",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "handleAnimationCancel",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleSlotChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "createAnimation",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "destroyAnimation",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "cancel",
              "description": "Clears all keyframe effects caused by this animation and aborts its playback."
            },
            {
              "kind": "method",
              "name": "finish",
              "description": "Sets the playback time to the end of the animation corresponding to the current playback direction."
            }
          ],
          "events": [
            {
              "description": "Emitted when the animation is canceled.",
              "name": "flow-ui-cancel",
              "reactName": "onFlowUiCancel"
            },
            {
              "description": "Emitted when the animation finishes.",
              "name": "flow-ui-finish",
              "reactName": "onFlowUiFinish"
            },
            {
              "description": "Emitted when the animation starts or restarts.",
              "name": "flow-ui-start",
              "reactName": "onFlowUiStart"
            }
          ],
          "attributes": [
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "'none'",
              "description": "The name of the built-in animation to use. For custom animations, use the `keyframes` prop.\nUse `getAnimationNames()` to retrieve a list of available animations.",
              "fieldName": "name"
            },
            {
              "name": "play",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Plays the animation. When omitted, the animation will be paused. This attribute will be automatically removed when\nthe animation finishes or gets canceled.",
              "fieldName": "play"
            },
            {
              "name": "delay",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The number of milliseconds to delay the start of the animation.",
              "fieldName": "delay"
            },
            {
              "name": "direction",
              "type": {
                "text": "PlaybackDirection"
              },
              "default": "'normal'",
              "description": "Determines the direction of playback as well as the behavior when reaching the end of an iteration.\n[Learn more](https://developer.mozilla.org/en-US/docs/Web/CSS/animation-direction)",
              "fieldName": "direction"
            },
            {
              "name": "duration",
              "type": {
                "text": "number"
              },
              "default": "1000",
              "description": "The number of milliseconds each iteration of the animation takes to complete.",
              "fieldName": "duration"
            },
            {
              "name": "easing",
              "type": {
                "text": "string"
              },
              "default": "'linear'",
              "description": "The easing function to use for the animation. This can be a Shoelace easing function or a custom easing function\nsuch as `cubic-bezier(0, 1, .76, 1.14)`.",
              "fieldName": "easing"
            },
            {
              "name": "end-delay",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The number of milliseconds to delay after the active period of an animation sequence.",
              "fieldName": "endDelay"
            },
            {
              "name": "fill",
              "type": {
                "text": "FillMode"
              },
              "default": "'auto'",
              "description": "Sets how the animation applies styles to its target before and after its execution.",
              "fieldName": "fill"
            },
            {
              "name": "iterations",
              "default": "Infinity",
              "description": "The number of iterations to run before the animation completes. Defaults to `Infinity`, which loops.",
              "resolveInitializer": {
                "module": "src/components/animation/animation.component.ts"
              },
              "fieldName": "iterations"
            },
            {
              "name": "iteration-start",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The offset at which to start the animation, usually between 0 (start) and 1 (end).",
              "fieldName": "iterationStart"
            },
            {
              "name": "playback-rate",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "Sets the animation's playback rate. The default is `1`, which plays the animation at a normal speed. Setting this\nto `2`, for example, will double the animation's speed. A negative value can be used to reverse the animation. This\nvalue can be changed without causing the animation to restart.",
              "fieldName": "playbackRate"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-animation",
          "summary": "Animate elements declaratively with over 100 animation presets. Powered by the [Web Animations API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Animations_API).",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiAnimation",
            "module": "components/animation/animation.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/animation/animation.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./animation.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiAnimation",
            "module": "components/animation/animation.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/animation/animations.js",
      "declarations": [
        {
          "kind": "function",
          "name": "getAnimationNames",
          "description": "Returns a list of all supported animation names.\n\nSupply the required animation as the `name` property of the\n`<flow-ui-animation>` component."
        },
        {
          "kind": "function",
          "name": "getEasingNames",
          "description": "Returns a list of all supported easing method names.\n\nSupply the required easing method as the `easing` property of the\n`<flow-ui-animation>` component."
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "animations",
          "declaration": {
            "name": "animations",
            "module": "components/animation/animations.js"
          }
        },
        {
          "kind": "js",
          "name": "getAnimationNames",
          "declaration": {
            "name": "getAnimationNames",
            "module": "components/animation/animations.js"
          }
        },
        {
          "kind": "js",
          "name": "getEasingNames",
          "declaration": {
            "name": "getEasingNames",
            "module": "components/animation/animations.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/autocomplete/autocomplete.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiAutocomplete",
          "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 clear button.",
              "name": "clear-button"
            }
          ],
          "slots": [
            {
              "description": "The listbox options. Must be `<flow-option>` elements. You can use `<flow-divider>` to group items visually.",
              "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": "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    'flow-ui-popup': FlowPopup,\n    'flow-ui-icon': FlowIcon\n  }"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'help-text', 'label')"
            },
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "debouncedInput",
              "type": {
                "text": "(displayValue: string) => void"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "pendingChangeEvent",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "pendingInputEvent",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "hasOptions",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this, {\n    assumeInteractionOn: ['flow-ui-blur', 'flow-ui-input']\n  })"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The autocomplete's size",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "filled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a filled autocomplete input",
              "attribute": "filled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a pill-style autocomplete input with rounded edges",
              "attribute": "pill",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The autocomplete input's label. If you need to display HTML, use the `help-text` slot instead",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The autocomplete input's help text. If you need to display HTML, use the `help-text` slot instead",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The autocomplete input's placeholder text",
              "attribute": "placeholder"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the autocomplete",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "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": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the autocomplete a required field",
              "attribute": "required",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the autocomplete in the 'inline' form control style",
              "attribute": "inline",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "divider",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates that the control should display a divider",
              "attribute": "divider",
              "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": "placement",
              "type": {
                "text": "'top' | 'bottom'"
              },
              "default": "'bottom'",
              "description": "The preferred placement of the autocomplete'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": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Current value of the control, selected from one of the valid options available",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "displayWith",
              "type": {
                "text": "((value: string) => string) | ((value: string) => Promise<string>)"
              },
              "description": "Function for determining the `displayValue` for a given `value`.\nBy default, it will show the `value` itself.",
              "attribute": "displayWith"
            },
            {
              "kind": "field",
              "name": "debounceDelay",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "Debounce delay",
              "attribute": "debounce-delay",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "clearable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Show the option to clear input",
              "attribute": "clearable",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "clearOnFocus",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Clear the value when the autocomplete is focused on",
              "attribute": "clear-on-focus",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "inputText",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "default": "''",
              "description": "Current value displayed by the control; this can be what the user is typing or the label of the selected option"
            },
            {
              "kind": "field",
              "name": "selectedOption",
              "type": {
                "text": "FlowOption | null"
              },
              "privacy": "private",
              "default": "null"
            },
            {
              "kind": "field",
              "name": "currentOption",
              "type": {
                "text": "FlowOption | null"
              },
              "privacy": "private",
              "default": "null"
            },
            {
              "kind": "field",
              "name": "input",
              "type": {
                "text": "HTMLInputElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "popup",
              "type": {
                "text": "FlowPopup"
              },
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "getForm",
              "return": {
                "type": {
                  "text": "HTMLFormElement | null"
                }
              },
              "description": "Gets the associated form, if one exists."
            },
            {
              "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": "checkValidity",
              "return": {
                "type": {
                  "text": "boolean"
                }
              },
              "description": "Checks for validity but does not show a validation message. Returns `true` when valid and `false` when invalid."
            },
            {
              "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": "_",
                  "type": {
                    "text": "string"
                  }
                }
              ],
              "description": "Sets a custom validation message. Pass an empty string to restore validity."
            },
            {
              "kind": "method",
              "name": "handleClearClick",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "focus",
              "description": "Focuses on the control"
            },
            {
              "kind": "method",
              "name": "blur",
              "description": "Blurs from the control."
            },
            {
              "kind": "method",
              "name": "show",
              "description": "Shows the listbox."
            },
            {
              "kind": "method",
              "name": "hide",
              "description": "Hides the listbox."
            },
            {
              "kind": "method",
              "name": "getInputText",
              "description": "Gets the current value of the text input"
            }
          ],
          "events": [
            {
              "description": "Emitted when the display value changes.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            },
            {
              "description": "Emitted when the input value changes.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when the input is focused.",
              "name": "flow-ui-focus",
              "reactName": "onFlowUiFocus"
            },
            {
              "description": "Emitted when the input is blurred.",
              "name": "flow-ui-blur",
              "reactName": "onFlowUiBlur"
            },
            {
              "description": "Emitted when the dropdown is shown.",
              "name": "flow-ui-show",
              "reactName": "onFlowUiShow"
            },
            {
              "description": "Emitted when the dropdown is shown.",
              "name": "flow-ui-after-show",
              "reactName": "onFlowUiAfterShow"
            },
            {
              "description": "Emitted when the dropdown is hidden.",
              "name": "flow-ui-hide",
              "reactName": "onFlowUiHide"
            },
            {
              "description": "Emitted when the dropdown is hidden.",
              "name": "flow-ui-after-hide",
              "reactName": "onFlowUiAfterHide"
            },
            {
              "description": "Emitted when the input is invalid.",
              "name": "flow-ui-invalid",
              "reactName": "onFlowUiInvalid"
            },
            {
              "description": "Emitted when the input is valid.",
              "name": "flow-ui-valid",
              "reactName": "onFlowUiValid"
            },
            {
              "description": "Emitted when the input is validated.",
              "name": "flow-ui-validate",
              "reactName": "onFlowUiValidate"
            },
            {
              "description": "Emitted when the input is validated and the validity state is updated.",
              "name": "flow-ui-validate-complete",
              "reactName": "onFlowUiValidateComplete"
            },
            {
              "description": "Emitted when the input is validated and an error occurs.",
              "name": "flow-ui-validate-error",
              "reactName": "onFlowUiValidateError"
            },
            {
              "description": "Emitted when the input is validated and no errors occur.",
              "name": "flow-ui-validate-success",
              "reactName": "onFlowUiValidateSuccess"
            }
          ],
          "attributes": [
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The autocomplete's size",
              "fieldName": "size"
            },
            {
              "name": "filled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a filled autocomplete input",
              "fieldName": "filled"
            },
            {
              "name": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a pill-style autocomplete input with rounded edges",
              "fieldName": "pill"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The autocomplete input's label. If you need to display HTML, use the `help-text` slot instead",
              "fieldName": "label"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The autocomplete input's help text. If you need to display HTML, use the `help-text` slot instead",
              "fieldName": "helpText"
            },
            {
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The autocomplete input's placeholder text",
              "fieldName": "placeholder"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the autocomplete",
              "fieldName": "disabled"
            },
            {
              "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": "required",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the autocomplete a required field",
              "fieldName": "required"
            },
            {
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the autocomplete in the 'inline' form control style",
              "fieldName": "inline"
            },
            {
              "name": "divider",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates that the control should display a divider",
              "fieldName": "divider"
            },
            {
              "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": "placement",
              "type": {
                "text": "'top' | 'bottom'"
              },
              "default": "'bottom'",
              "description": "The preferred placement of the autocomplete's menu. Note that the actual placement may vary as needed to keep the listbox\ninside of the viewport.",
              "fieldName": "placement"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Current value of the control, selected from one of the valid options available",
              "fieldName": "value"
            },
            {
              "name": "displayWith",
              "type": {
                "text": "((value: string) => string) | ((value: string) => Promise<string>)"
              },
              "description": "Function for determining the `displayValue` for a given `value`.\nBy default, it will show the `value` itself.",
              "fieldName": "displayWith"
            },
            {
              "name": "debounce-delay",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "Debounce delay",
              "fieldName": "debounceDelay"
            },
            {
              "name": "clearable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Show the option to clear input",
              "fieldName": "clearable"
            },
            {
              "name": "clear-on-focus",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Clear the value when the autocomplete is focused on",
              "fieldName": "clearOnFocus"
            }
          ],
          "superclass": {
            "name": "FlowRdfFormControl",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-autocomplete",
          "summary": "The Autocomplete is a Text input enhanced by a panel of suggested options.",
          "dependencies": [
            "flow-ui-popup",
            "flow-ui-icon"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiAutocomplete",
            "module": "components/autocomplete/autocomplete.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/autocomplete/autocomplete.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./autocomplete.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiAutocomplete",
            "module": "components/autocomplete/autocomplete.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/avatar/avatar.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiAvatar",
          "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 `<flow-ui-icon>`.",
              "name": "icon"
            }
          ],
          "members": [
            {
              "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
            }
          ],
          "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": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-avatar",
          "summary": "Avatars are used to represent a person or object.",
          "dependencies": [
            "flow-ui-icon"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiAvatar",
            "module": "components/avatar/avatar.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/avatar/avatar.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiAvatar",
            "module": "components/avatar/avatar.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/base-control/base-control.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiBaseControl",
          "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"
            },
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The internal `<input>` control.",
              "name": "input"
            },
            {
              "description": "The container that wraps the prefix.",
              "name": "prefix"
            },
            {
              "description": "The clear button.",
              "name": "clear-button"
            },
            {
              "description": "The password toggle button.",
              "name": "password-toggle-button"
            },
            {
              "description": "The container that wraps the suffix.",
              "name": "suffix"
            }
          ],
          "slots": [
            {
              "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 input.",
              "name": "prefix"
            },
            {
              "description": "Used to append a presentational icon or similar element to the input.",
              "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": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this, {\n    assumeInteractionOn: ['flow-ui-blur', 'flow-ui-input']\n  })"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'help-text', 'label')"
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The input's size.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "filled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a filled input.",
              "attribute": "filled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a pill-style input with rounded edges.",
              "attribute": "pill",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The input's label. If you need to display HTML, use the `label` slot instead.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The input's help text. If you need to display HTML, use the `help-text` slot instead.",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the input.",
              "attribute": "disabled",
              "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": "Makes the input a required field.",
              "attribute": "required",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the input in the 'inline' form control style.",
              "attribute": "inline",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "divider",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates that the control should display a divider",
              "attribute": "divider",
              "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": "handleFocus",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "focus",
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "FocusOptions"
                  }
                }
              ],
              "description": "Sets focus on the input."
            },
            {
              "kind": "method",
              "name": "blur",
              "description": "Removes focus from the input."
            },
            {
              "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": "flow-ui-blur",
              "reactName": "onFlowUiBlur"
            },
            {
              "description": "Emitted when an alteration to the control's value is committed by the user.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when the clear button is activated.",
              "name": "flow-ui-clear",
              "reactName": "onFlowUiClear"
            },
            {
              "description": "Emitted when the control gains focus.",
              "name": "flow-ui-focus",
              "reactName": "onFlowUiFocus"
            },
            {
              "description": "Emitted when the control receives input.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "flow-ui-invalid",
              "reactName": "onFlowUiInvalid"
            }
          ],
          "attributes": [
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The input's size.",
              "fieldName": "size"
            },
            {
              "name": "filled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a filled input.",
              "fieldName": "filled"
            },
            {
              "name": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a pill-style input with rounded edges.",
              "fieldName": "pill"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The input's label. If you need to display HTML, use the `label` slot instead.",
              "fieldName": "label"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The input's help text. If you need to display HTML, use the `help-text` slot instead.",
              "fieldName": "helpText"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the input.",
              "fieldName": "disabled"
            },
            {
              "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 input a required field.",
              "fieldName": "required"
            },
            {
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the input in the 'inline' form control style.",
              "fieldName": "inline"
            },
            {
              "name": "divider",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates that the control should display a divider",
              "fieldName": "divider"
            }
          ],
          "superclass": {
            "name": "FlowRdfFormControl",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-base-control",
          "summary": "Inputs collect data from the user.",
          "documentation": "https://developer.emu-analytics.net/docs/flow-ui-rdf/components/input",
          "status": "stable",
          "since": "2.0",
          "dependencies": [
            "flow-ui-icon",
            "flow-ui-icon-button"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiBaseControl",
            "module": "components/base-control/base-control.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/base-control/base-control.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./base-control.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiBaseControl",
            "module": "components/base-control/base-control.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/breadcrumb-item/breadcrumb-item.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiBreadcrumbItem",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The breadcrumb item's label.",
              "name": "label"
            },
            {
              "description": "The container that wraps the prefix.",
              "name": "prefix"
            },
            {
              "description": "The container that wraps the suffix.",
              "name": "suffix"
            },
            {
              "description": "The container that wraps the separator.",
              "name": "separator"
            }
          ],
          "slots": [
            {
              "description": "The breadcrumb item's label.",
              "name": ""
            },
            {
              "description": "An optional prefix, usually an icon or icon button.",
              "name": "prefix"
            },
            {
              "description": "An optional suffix, usually an icon or icon button.",
              "name": "suffix"
            },
            {
              "description": "The separator to use for the breadcrumb item. This will only change the separator for this item. If you want to change it for all items in the group, set the separator on `<flow-ui-breadcrumb>` instead.",
              "name": "separator"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'prefix', 'suffix')"
            },
            {
              "kind": "field",
              "name": "href",
              "type": {
                "text": "string | undefined"
              },
              "description": "Optional URL to direct the user to when the breadcrumb item is activated. When set, a link will be rendered\ninternally. When unset, a button will be rendered instead.",
              "attribute": "href"
            },
            {
              "kind": "field",
              "name": "target",
              "type": {
                "text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
              },
              "description": "Tells the browser where to open the link. Only used when `href` is set.",
              "attribute": "target"
            },
            {
              "kind": "field",
              "name": "rel",
              "type": {
                "text": "string"
              },
              "default": "'noreferrer noopener'",
              "description": "The `rel` attribute to use on the link. Only used when `href` is set.",
              "attribute": "rel"
            }
          ],
          "attributes": [
            {
              "name": "href",
              "type": {
                "text": "string | undefined"
              },
              "description": "Optional URL to direct the user to when the breadcrumb item is activated. When set, a link will be rendered\ninternally. When unset, a button will be rendered instead.",
              "fieldName": "href"
            },
            {
              "name": "target",
              "type": {
                "text": "'_blank' | '_parent' | '_self' | '_top' | undefined"
              },
              "description": "Tells the browser where to open the link. Only used when `href` is set.",
              "fieldName": "target"
            },
            {
              "name": "rel",
              "type": {
                "text": "string"
              },
              "default": "'noreferrer noopener'",
              "description": "The `rel` attribute to use on the link. Only used when `href` is set.",
              "fieldName": "rel"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-breadcrumb-item",
          "summary": "Breadcrumb Items are used inside [breadcrumbs](./flow-ui-breadcrumb) to represent different links.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiBreadcrumbItem",
            "module": "components/breadcrumb-item/breadcrumb-item.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/breadcrumb-item/breadcrumb-item.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiBreadcrumbItem",
            "module": "components/breadcrumb-item/breadcrumb-item.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/breadcrumb/breadcrumb.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiBreadcrumb",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "slots": [
            {
              "description": "One or more breadcrumb items to display.",
              "name": ""
            },
            {
              "description": "The separator to use between breadcrumb items. Works best with `<flow-ui-icon>`.",
              "name": "separator"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "separatorDir",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "defaultSlot",
              "type": {
                "text": "HTMLSlotElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "separatorSlot",
              "type": {
                "text": "HTMLSlotElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The label to use for the breadcrumb control. This will not be shown on the screen, but it will be announced by\nscreen readers and other assistive devices to provide more context for users.",
              "attribute": "label"
            },
            {
              "kind": "method",
              "name": "getSeparator",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleSlotChange",
              "privacy": "private"
            }
          ],
          "attributes": [
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The label to use for the breadcrumb control. This will not be shown on the screen, but it will be announced by\nscreen readers and other assistive devices to provide more context for users.",
              "fieldName": "label"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-breadcrumb",
          "summary": "Breadcrumbs provide a group of links so users can easily navigate a website's hierarchy.",
          "dependencies": [
            "flow-ui-icon"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiBreadcrumb",
            "module": "components/breadcrumb/breadcrumb.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/breadcrumb/breadcrumb.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiBreadcrumb",
            "module": "components/breadcrumb/breadcrumb.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/badge/badge.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiBadge",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "slots": [
            {
              "description": "The badge's content.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "'primary' | 'secondary' | 'success' | 'neutral' | 'warning' | 'danger'"
              },
              "default": "'primary'",
              "description": "The badge's theme variant.",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The badge size.",
              "attribute": "size",
              "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' | 'secondary' | 'success' | 'neutral' | 'warning' | 'danger'"
              },
              "default": "'primary'",
              "description": "The badge's theme variant.",
              "fieldName": "variant"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The badge size.",
              "fieldName": "size"
            },
            {
              "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": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-badge",
          "summary": "Badges are used to draw attention and display statuses or counts.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiBadge",
            "module": "components/badge/badge.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/badge/badge.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiBadge",
            "module": "components/badge/badge.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/busy-overlay/busy-overlay.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiBusyOverlay",
          "cssProperties": [
            {
              "description": "The delay after which the overlay is shown.",
              "name": "--transition-delay"
            },
            {
              "description": "The duration of the overlay's fade-in/out transition.",
              "name": "--transition-duration"
            },
            {
              "description": "The size of the default progress ring loading animation.",
              "name": "--progress-ring-size"
            },
            {
              "description": "The width of the default progress ring's track.",
              "name": "--progress-ring-track-width"
            },
            {
              "description": "The color of the default progress ring's track.",
              "name": "--progress-ring-track-color"
            },
            {
              "description": "The background color of the overlay.",
              "name": "--overlay-background-color"
            }
          ],
          "slots": [
            {
              "description": "The component to overlay with when busy.",
              "name": ""
            },
            {
              "description": "The indeterminate custom loading animation to display when busy.",
              "name": "busy-animation"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "busy",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "busy",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "'primary' | 'secondary' | 'success' | 'neutral' | 'warning' | 'danger'"
              },
              "default": "'neutral'",
              "description": "The default loading animation's theme variant.",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "Size of the loading animation",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "overlayParent",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "To overlay the parent element",
              "attribute": "overlay-parent",
              "reflects": true
            }
          ],
          "attributes": [
            {
              "name": "busy",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "busy"
            },
            {
              "name": "variant",
              "type": {
                "text": "'primary' | 'secondary' | 'success' | 'neutral' | 'warning' | 'danger'"
              },
              "default": "'neutral'",
              "description": "The default loading animation's theme variant.",
              "fieldName": "variant"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "Size of the loading animation",
              "fieldName": "size"
            },
            {
              "name": "overlay-parent",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "To overlay the parent element",
              "fieldName": "overlayParent"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-busy-overlay",
          "summary": "Busy overlay is used to indicate that a component which displays data is being currently updated.",
          "dependencies": [
            "flow-ui-progress-ring"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiBusyOverlay",
            "module": "components/busy-overlay/busy-overlay.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/busy-overlay/busy-overlay.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiBusyOverlay",
            "module": "components/busy-overlay/busy-overlay.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/button/button.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiButton",
          "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 `<flow-ui-icon>` element.",
              "name": "caret"
            }
          ],
          "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": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this, {\n    form: (input) => {\n      // Buttons support a form attribute that points to an arbitrary form, so if this attribute is set we need to query\n      // the form from the same root using its id\n      if (input.hasAttribute('form')) {\n        const doc = input.getRootNode() as Document | ShadowRoot;\n        const formId = input.getAttribute('form')!;\n        return doc.getElementById(formId) as HTMLFormElement;\n      }\n\n      // Fall back to the closest containing form\n      return input.closest('form');\n    },\n    assumeInteractionOn: ['click']\n  })"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, '[default]', 'prefix', 'suffix')"
            },
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "| 'default'\n    | 'primary'\n    | 'secondary'\n    | 'success'\n    | 'neutral'\n    | 'warning'\n    | 'danger'\n    | 'text'"
              },
              "default": "'default'",
              "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": "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": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a pill-style button with rounded edges.",
              "attribute": "pill",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "fabCircle",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a circular FAB. When this attribute is present, the button expects a single `<flow-ui-icon>` in the\ndefault slot.",
              "attribute": "fab-circle",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "fabSquare",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a square FAB. When this attribute is present, the button expects a single `<flow-ui-icon>` in the\ndefault slot.",
              "attribute": "fab-square",
              "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' | 'multipart/form-data' | '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' | '_blank' | '_parent' | '_top' | string"
              },
              "description": "Used to override the form owner's `target` attribute.",
              "attribute": "formtarget"
            },
            {
              "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": "handleFocus",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleHostClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "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": "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."
            }
          ],
          "events": [
            {
              "description": "Emitted when the button loses focus.",
              "name": "flow-ui-blur",
              "reactName": "onFlowUiBlur"
            },
            {
              "description": "Emitted when the button gains focus.",
              "name": "flow-ui-focus",
              "reactName": "onFlowUiFocus"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "flow-ui-invalid",
              "reactName": "onFlowUiInvalid"
            }
          ],
          "attributes": [
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "label"
            },
            {
              "name": "variant",
              "type": {
                "text": "| 'default'\n    | 'primary'\n    | 'secondary'\n    | 'success'\n    | 'neutral'\n    | 'warning'\n    | 'danger'\n    | 'text'"
              },
              "default": "'default'",
              "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": "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": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a pill-style button with rounded edges.",
              "fieldName": "pill"
            },
            {
              "name": "fab-circle",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a circular FAB. When this attribute is present, the button expects a single `<flow-ui-icon>` in the\ndefault slot.",
              "fieldName": "fabCircle"
            },
            {
              "name": "fab-square",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a square FAB. When this attribute is present, the button expects a single `<flow-ui-icon>` in the\ndefault slot.",
              "fieldName": "fabSquare"
            },
            {
              "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' | 'multipart/form-data' | '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' | '_blank' | '_parent' | '_top' | string"
              },
              "description": "Used to override the form owner's `target` attribute.",
              "fieldName": "formTarget"
            }
          ],
          "superclass": {
            "name": "FlowRdfFormControl",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-button",
          "summary": "Buttons represent actions that are available to the user.",
          "dependencies": [
            "flow-ui-icon",
            "flow-ui-progress-ring"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiButton",
            "module": "components/button/button.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/button/button.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiButton",
            "module": "components/button/button.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/button-group/button-group.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiButtonGroup",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "slots": [
            {
              "description": "One or more `<flow-ui-button>` elements to display in the button group.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Text label for assistive devices.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "vertical",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Use vertical layout for the button group.",
              "attribute": "vertical",
              "reflects": true
            },
            {
              "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": "Text label for assistive devices.",
              "fieldName": "label"
            },
            {
              "name": "vertical",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Use vertical layout for the button group.",
              "fieldName": "vertical"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-button-group",
          "summary": "Button groups can be used to group related buttons into sections.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiButtonGroup",
            "module": "components/button-group/button-group.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/button-group/button-group.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiButtonGroup",
            "module": "components/button-group/button-group.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/calendar/calendar.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiCalendar",
          "cssProperties": [
            {
              "description": "The width of the calendar in CSS units. Set automatically if `size` is set.",
              "name": "--width"
            },
            {
              "description": "The font size of the calendar. Set automatically if `size` is set.",
              "name": "--font-size"
            },
            {
              "description": "The font size of the day labels. Set automatically if `size` is set.",
              "name": "--day-font-size"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "_monthSelect",
              "type": {
                "text": "FlowSelect"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_yearSelect",
              "type": {
                "text": "FlowSelect"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_displayDate",
              "type": {
                "text": "DateTime<true>"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_selectedDate",
              "type": {
                "text": "DateTime<true> | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The value of the control. (ISO8601 date/time string)",
              "attribute": "value",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "displayMode",
              "type": {
                "text": "'date' | 'time' | 'datetime'"
              },
              "default": "'date'",
              "description": "Select whether to show date only, time only or both date and time.",
              "attribute": "display-mode"
            },
            {
              "kind": "field",
              "name": "timezone",
              "type": {
                "text": "string | undefined"
              },
              "description": "Set the timezone for display. If not set the default timezone will be used. (TZ name e.g. `'Europe/London'`)",
              "attribute": "timezone"
            },
            {
              "kind": "field",
              "name": "locale",
              "type": {
                "text": "string | undefined"
              },
              "description": "Set the locale for display. If not set the default locale will be used. (e.g `'en-GB'`)",
              "attribute": "locale"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "Set the size of the calendar.",
              "attribute": "size"
            },
            {
              "kind": "method",
              "name": "dateClicked",
              "privacy": "private",
              "parameters": [
                {
                  "name": "val",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "stepDisplayDate",
              "privacy": "private",
              "parameters": [
                {
                  "name": "duration",
                  "type": {
                    "text": "DurationLike"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "yearOptionsForDate",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "number[]"
                }
              },
              "parameters": [
                {
                  "name": "date",
                  "type": {
                    "text": "DateTime"
                  }
                }
              ],
              "description": "Generate a list of years for the year select dropdown"
            },
            {
              "kind": "method",
              "name": "makeDate",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "DateTime<true> | undefined"
                }
              },
              "parameters": [
                {
                  "name": "d",
                  "optional": true,
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "updateValue",
              "privacy": "private",
              "parameters": [
                {
                  "name": "emitEvents",
                  "default": "true"
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleHeaderSelectChange",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "FlowChangeEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleTimeChange",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "FlowChangeEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "calendarHeaderTemplate",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "dayOfWeekGridTemplate",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "dayGridTemplate",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "timeTemplate",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "description": "Emitted when the calendar value changes.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            },
            {
              "description": "Emitted when the calendar value changes.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            }
          ],
          "attributes": [
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The value of the control. (ISO8601 date/time string)",
              "fieldName": "value"
            },
            {
              "name": "display-mode",
              "type": {
                "text": "'date' | 'time' | 'datetime'"
              },
              "default": "'date'",
              "description": "Select whether to show date only, time only or both date and time.",
              "fieldName": "displayMode"
            },
            {
              "name": "timezone",
              "type": {
                "text": "string | undefined"
              },
              "description": "Set the timezone for display. If not set the default timezone will be used. (TZ name e.g. `'Europe/London'`)",
              "fieldName": "timezone"
            },
            {
              "name": "locale",
              "type": {
                "text": "string | undefined"
              },
              "description": "Set the locale for display. If not set the default locale will be used. (e.g `'en-GB'`)",
              "fieldName": "locale"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "Set the size of the calendar.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-calendar",
          "summary": "A calendar component for selecting dates and times.",
          "dependencies": [
            "flow-ui-icon-button",
            "flow-ui-input",
            "flow-ui-select",
            "flow-ui-option"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiCalendar",
            "module": "components/calendar/calendar.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/calendar/calendar.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./calendar.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiCalendar",
            "module": "components/calendar/calendar.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/card/card.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiCard",
          "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(this, 'footer', 'header', 'image')"
            },
            {
              "kind": "field",
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "attribute": "title",
              "reflects": true
            }
          ],
          "attributes": [
            {
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "fieldName": "title"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-card",
          "summary": "Cards can be used to group related subjects in a container.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiCard",
            "module": "components/card/card.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/card/card.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./card.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiCard",
            "module": "components/card/card.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/carousel/autoplay-controller.js",
      "declarations": [
        {
          "kind": "class",
          "description": "A controller that repeatedly calls the specified callback with the provided interval time.\nThe timer is automatically paused while the user is interacting with the component.",
          "name": "AutoplayController",
          "members": [
            {
              "kind": "field",
              "name": "host",
              "type": {
                "text": "ReactiveElement"
              },
              "privacy": "private",
              "default": "host"
            },
            {
              "kind": "field",
              "name": "timerId",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "default": "0"
            },
            {
              "kind": "field",
              "name": "tickCallback",
              "type": {
                "text": "() => void"
              },
              "privacy": "private",
              "default": "tickCallback"
            },
            {
              "kind": "field",
              "name": "activeInteractions",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "default": "0"
            },
            {
              "kind": "field",
              "name": "paused",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "stopped",
              "type": {
                "text": "boolean"
              },
              "default": "true"
            },
            {
              "kind": "method",
              "name": "hostConnected",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "method",
              "name": "hostDisconnected",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "method",
              "name": "start",
              "parameters": [
                {
                  "name": "interval",
                  "type": {
                    "text": "number"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "stop"
            },
            {
              "kind": "field",
              "name": "pause"
            },
            {
              "kind": "field",
              "name": "resume"
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "AutoplayController",
          "declaration": {
            "name": "AutoplayController",
            "module": "components/carousel/autoplay-controller.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/carousel/carousel.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiCarousel",
          "cssProperties": [
            {
              "description": "The space between each slide.",
              "name": "--slide-gap"
            },
            {
              "description": "The aspect ratio of each slide.",
              "name": "--aspect-ratio"
            },
            {
              "description": "The amount of padding to apply to the scroll area, allowing adjacent slides to become partially visible as a scroll hint.",
              "name": "--scroll-hint"
            }
          ],
          "cssParts": [
            {
              "description": "The carousel's internal wrapper.",
              "name": "base"
            },
            {
              "description": "The scroll container that wraps the slides.",
              "name": "scroll-container"
            },
            {
              "description": "The pagination indicators wrapper.",
              "name": "pagination"
            },
            {
              "description": "The pagination indicator.",
              "name": "pagination-item"
            },
            {
              "description": "Applied when the item is active.",
              "name": "pagination-item--active"
            },
            {
              "description": "The navigation wrapper.",
              "name": "navigation"
            },
            {
              "description": "The navigation button.",
              "name": "navigation-button"
            },
            {
              "description": "Applied to the previous button.",
              "name": "navigation-button--previous"
            },
            {
              "description": "Applied to the next button.",
              "name": "navigation-button--next"
            }
          ],
          "slots": [
            {
              "description": "The carousel's main content, one or more `<flow-ui-carousel-item>` elements.",
              "name": ""
            },
            {
              "description": "Optional next icon to use instead of the default. Works best with `<flow-ui-icon>`.",
              "name": "next-icon"
            },
            {
              "description": "Optional previous icon to use instead of the default. Works best with `<flow-ui-icon>`.",
              "name": "previous-icon"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "loop",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to allow the user to navigate the carousel in the same direction indefinitely.",
              "attribute": "loop",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "navigation",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to show the carousel's navigation.",
              "attribute": "navigation",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "pagination",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to show the carousel's pagination indicators.",
              "attribute": "pagination",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "autoplay",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to automatically advance the carousel.",
              "attribute": "autoplay",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "autoplayInterval",
              "type": {
                "text": "number"
              },
              "default": "3000",
              "description": "Specifies the amount of time (in ms) between each automatic scroll.",
              "attribute": "autoplay-interval"
            },
            {
              "kind": "field",
              "name": "slidesPerPage",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "Specifies how many slides should be shown at a given time.",
              "attribute": "slides-per-page"
            },
            {
              "kind": "field",
              "name": "slidesPerMove",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "Specifies the number of slides the carousel will advance when scrolling, useful when specifying a `slides-per-page`\ngreater than one.",
              "attribute": "slides-per-move"
            },
            {
              "kind": "field",
              "name": "orientation",
              "type": {
                "text": "'horizontal' | 'vertical'"
              },
              "default": "'horizontal'",
              "description": "Specifies the orientation in which the carousel will lay out.",
              "attribute": "orientation"
            },
            {
              "kind": "field",
              "name": "mouseDragging",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When set, it is possible to scroll through the slides by dragging them with the mouse.",
              "attribute": "mouse-dragging",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "activeSlide",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "default": "0"
            },
            {
              "kind": "field",
              "name": "autoplayController",
              "privacy": "private",
              "default": "new AutoplayController(this, () => this.next())"
            },
            {
              "kind": "field",
              "name": "scrollController",
              "privacy": "private",
              "default": "new ScrollController(this)"
            },
            {
              "kind": "field",
              "name": "slides",
              "privacy": "private",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "intersectionObserver",
              "type": {
                "text": "IntersectionObserver"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "intersectionObserverEntries",
              "privacy": "private",
              "readonly": true,
              "default": "new Map<Element, IntersectionObserverEntry>()"
            },
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "mutationObserver",
              "type": {
                "text": "MutationObserver"
              },
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "getPageCount",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "getCurrentPage",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "getSlides",
              "privacy": "private",
              "parameters": [
                {
                  "name": "{ excludeClones = true }",
                  "default": "{}",
                  "type": {
                    "text": "{ excludeClones?: boolean }"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleScrollEnd",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleSlotChange",
              "privacy": "private",
              "parameters": [
                {
                  "name": "mutations",
                  "type": {
                    "text": "MutationRecord[]"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "previous",
              "parameters": [
                {
                  "name": "behavior",
                  "default": "'smooth'",
                  "type": {
                    "text": "ScrollBehavior"
                  },
                  "description": "The behavior used for scrolling."
                }
              ],
              "description": "Move the carousel backward by `slides-per-move` slides."
            },
            {
              "kind": "method",
              "name": "next",
              "parameters": [
                {
                  "name": "behavior",
                  "default": "'smooth'",
                  "type": {
                    "text": "ScrollBehavior"
                  },
                  "description": "The behavior used for scrolling."
                }
              ],
              "description": "Move the carousel forward by `slides-per-move` slides."
            },
            {
              "kind": "method",
              "name": "goToSlide",
              "parameters": [
                {
                  "name": "index",
                  "type": {
                    "text": "number"
                  },
                  "description": "The slide index."
                },
                {
                  "name": "behavior",
                  "default": "'smooth'",
                  "type": {
                    "text": "ScrollBehavior"
                  },
                  "description": "The behavior used for scrolling."
                }
              ],
              "description": "Scrolls the carousel to the slide specified by `index`."
            }
          ],
          "events": [
            {
              "type": {
                "text": "{ index: number, slide: FlowCarouselItem }"
              },
              "description": "Emitted when the active slide changes.",
              "name": "flow-ui-slide-change",
              "reactName": "onFlowUiSlideChange"
            }
          ],
          "attributes": [
            {
              "name": "loop",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to allow the user to navigate the carousel in the same direction indefinitely.",
              "fieldName": "loop"
            },
            {
              "name": "navigation",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to show the carousel's navigation.",
              "fieldName": "navigation"
            },
            {
              "name": "pagination",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to show the carousel's pagination indicators.",
              "fieldName": "pagination"
            },
            {
              "name": "autoplay",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to automatically advance the carousel.",
              "fieldName": "autoplay"
            },
            {
              "name": "autoplay-interval",
              "type": {
                "text": "number"
              },
              "default": "3000",
              "description": "Specifies the amount of time (in ms) between each automatic scroll.",
              "fieldName": "autoplayInterval"
            },
            {
              "name": "slides-per-page",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "Specifies how many slides should be shown at a given time.",
              "fieldName": "slidesPerPage"
            },
            {
              "name": "slides-per-move",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "Specifies the number of slides the carousel will advance when scrolling, useful when specifying a `slides-per-page`\ngreater than one.",
              "fieldName": "slidesPerMove"
            },
            {
              "name": "orientation",
              "type": {
                "text": "'horizontal' | 'vertical'"
              },
              "default": "'horizontal'",
              "description": "Specifies the orientation in which the carousel will lay out.",
              "fieldName": "orientation"
            },
            {
              "name": "mouse-dragging",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When set, it is possible to scroll through the slides by dragging them with the mouse.",
              "fieldName": "mouseDragging"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-carousel",
          "summary": "Carousels display an arbitrary number of content slides along a horizontal or vertical axis.",
          "since": "2.2",
          "status": "experimental",
          "dependencies": [
            "flow-ui-icon"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiCarousel",
            "module": "components/carousel/carousel.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/carousel/carousel.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./carousel.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiCarousel",
            "module": "components/carousel/carousel.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/carousel/scroll-controller.js",
      "declarations": [
        {
          "kind": "class",
          "description": "A controller for handling scrolling and mouse dragging.",
          "name": "ScrollController",
          "members": [
            {
              "kind": "field",
              "name": "host",
              "type": {
                "text": "T"
              },
              "privacy": "private",
              "default": "host"
            },
            {
              "kind": "field",
              "name": "pointers",
              "privacy": "private",
              "default": "new Set()"
            },
            {
              "kind": "field",
              "name": "dragging",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "scrolling",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "field",
              "name": "mouseDragging",
              "type": {
                "text": "boolean"
              },
              "default": "false"
            },
            {
              "kind": "method",
              "name": "hostConnected"
            },
            {
              "kind": "method",
              "name": "hostDisconnected",
              "return": {
                "type": {
                  "text": "void"
                }
              }
            },
            {
              "kind": "method",
              "name": "handleScroll"
            },
            {
              "kind": "method",
              "name": "handleScrollEnd"
            },
            {
              "kind": "method",
              "name": "handlePointerDown",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "PointerEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handlePointerMove",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "PointerEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handlePointerUp",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "PointerEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleTouchEnd",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "TouchEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleTouchStart",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "TouchEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleDragStart"
            },
            {
              "kind": "method",
              "name": "handleDrag",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "PointerEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleDragEnd"
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "ScrollController",
          "declaration": {
            "name": "ScrollController",
            "module": "components/carousel/scroll-controller.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/carousel-item/carousel-item.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiCarouselItem",
          "cssProperties": [
            {
              "description": "The slide's aspect ratio. Inherited from the carousel by default.",
              "name": "--aspect-ratio"
            }
          ],
          "slots": [
            {
              "description": "The carousel item's content..",
              "name": ""
            }
          ],
          "members": [],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-carousel-item",
          "summary": "A carousel item represent a slide within a [carousel](./flow-ui-carousel).",
          "since": "2.0",
          "status": "experimental",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiCarouselItem",
            "module": "components/carousel-item/carousel-item.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/carousel-item/carousel-item.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./carousel-item.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiCarouselItem",
            "module": "components/carousel-item/carousel-item.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/chart/chart.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "The chart component is a container for [Chart.js](https://www.chartjs.org/) charts. The component\nsupplies additional Flow RDF UI features including:\n\n- Consistent theming with other flow-rdf-ui components.\n- Additional plugins and charts types for commonly-used charts.",
          "name": "FlowUiChart",
          "cssProperties": [
            {
              "description": "Chart background color (applied as the background color of the base container).",
              "name": "--background-color"
            },
            {
              "description": "General text color (titles etc.)",
              "name": "--text-color"
            },
            {
              "description": "Color of the axis lines.",
              "name": "--axis-color"
            },
            {
              "description": "Color of the x-axis lines. (defaults to `--axis-color`)",
              "name": "--x-axis-color"
            },
            {
              "description": "Color of the y-axis lines. (defaults to `--axis-color`)",
              "name": "--y-axis-color"
            },
            {
              "description": "Color of the axis grid lines.",
              "name": "--axis-grid-color"
            },
            {
              "description": "Color of the x-axis grid lines. (defaults to `--axis-grid-color`)",
              "name": "--x-axis-grid-color"
            },
            {
              "description": "Color of the y-axis grid lines. (defaults to `--axis-grid-color`)",
              "name": "--y-axis-grid-color"
            },
            {
              "description": "Color of the axis labels.",
              "name": "--axis-label-color"
            },
            {
              "description": "Color of the x-axis labels. (defaults to `--axis-label-color`)",
              "name": "--x-axis-label-color"
            },
            {
              "description": "Color of the y-axis labels. (defaults to `--axis-label-color`)",
              "name": "--y-axis-label-color"
            },
            {
              "description": "Color of the tick labels.",
              "name": "--tick-label-color"
            },
            {
              "description": "Color of the x-axis tick labels. (defaults to `--tick-label-color`)",
              "name": "--x-tick-label-color"
            },
            {
              "description": "Color of the y-axis tick labels. (defaults to `--tick-label-color`)",
              "name": "--y-tick-label-color"
            },
            {
              "description": "Color of the stroke for dataset n (where n = 0-9).",
              "name": "--dataset-stroke-color-n"
            },
            {
              "description": "Color of the fill for dataset n (where n = 0-9).",
              "name": "--dataset-fill-color-n"
            },
            {
              "description": "Chart header padding.",
              "name": "--header-padding"
            },
            {
              "description": "Chart header height.",
              "name": "--header-height"
            },
            {
              "description": "Chart header font size.",
              "name": "--header-font-size"
            },
            {
              "description": "Chart header text color.",
              "name": "--header-color"
            }
          ],
          "cssParts": [
            {
              "description": "The header container of the chart.",
              "name": "header"
            },
            {
              "description": "The chart title placed in the header.",
              "name": "title"
            }
          ],
          "slots": [
            {
              "description": "The chart's title. Alternatively, you can use the `title` attribute.",
              "name": "title"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'label')"
            },
            {
              "kind": "field",
              "name": "_chartRef",
              "type": {
                "text": "Ref<HTMLCanvasElement>"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_chart",
              "type": {
                "text": "Chart | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "chart",
              "description": "The Chart.js chart instance.",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "A label displayed in the chart's header. If you need to display HTML, use the `label` slot instead.",
              "attribute": "title",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "type",
              "type": {
                "text": "string"
              },
              "description": "The Chart.js chart type (e.g `line`, `bar` or a custom type).",
              "attribute": "type"
            },
            {
              "kind": "field",
              "name": "options",
              "type": {
                "text": "ChartOptions"
              },
              "description": "The Chart.js `options` object."
            },
            {
              "kind": "field",
              "name": "data",
              "type": {
                "text": "ChartData"
              },
              "description": "The Chart.js `data` object"
            },
            {
              "kind": "field",
              "name": "plugins",
              "type": {
                "text": "Plugin[]"
              },
              "default": "[]",
              "description": "List of extra plugins to use for this chart.",
              "attribute": "plugins"
            },
            {
              "kind": "method",
              "name": "repaint",
              "description": "Trigger a repaint of the chart."
            }
          ],
          "attributes": [
            {
              "name": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "A label displayed in the chart's header. If you need to display HTML, use the `label` slot instead.",
              "fieldName": "title"
            },
            {
              "name": "type",
              "type": {
                "text": "string"
              },
              "description": "The Chart.js chart type (e.g `line`, `bar` or a custom type).",
              "fieldName": "type"
            },
            {
              "name": "plugins",
              "type": {
                "text": "Plugin[]"
              },
              "default": "[]",
              "description": "List of extra plugins to use for this chart.",
              "fieldName": "plugins"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-chart",
          "summary": "The chart component displays Chart.js charts.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiChart",
            "module": "components/chart/chart.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/chart/chart.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./chart.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiChart",
            "module": "components/chart/chart.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/chart/chartjs-support.js",
      "declarations": [
        {
          "kind": "function",
          "name": "registerChartComponent",
          "parameters": [
            {
              "name": "components",
              "type": {
                "text": "ChartComponentLike[]"
              }
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "registerChartComponent",
          "declaration": {
            "name": "registerChartComponent",
            "module": "components/chart/chartjs-support.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/checkbox/checkbox.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiCheckbox",
          "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 `<flow-ui-icon>` element.",
              "name": "checked-icon"
            },
            {
              "description": "The indeterminate icon, an `<flow-ui-icon>` element.",
              "name": "indeterminate-icon"
            },
            {
              "description": "The container that wraps the checkbox's label.",
              "name": "label"
            }
          ],
          "slots": [
            {
              "description": "The checkbox's label.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, '[default]')"
            },
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this, {\n    value: (control: FlowUiCheckbox) => (control.checked ? control.value || 'on' : undefined),\n    defaultValue: (control: FlowUiCheckbox) => control.defaultChecked,\n    setValue: (control: FlowUiCheckbox, checked: boolean) => (control.checked = checked)\n  })"
            },
            {
              "kind": "field",
              "name": "input",
              "type": {
                "text": "HTMLInputElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "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.",
              "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": "reverse",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the checkbox using a reversed style with left-aligned label.",
              "attribute": "reverse",
              "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": "Makes the checkbox 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": "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": "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": "flow-ui-blur",
              "reactName": "onFlowUiBlur"
            },
            {
              "description": "Emitted when the checked state changes.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when the checkbox gains focus.",
              "name": "flow-ui-focus",
              "reactName": "onFlowUiFocus"
            },
            {
              "description": "Emitted when the checkbox receives input.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "flow-ui-invalid",
              "reactName": "onFlowUiInvalid"
            }
          ],
          "attributes": [
            {
              "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.",
              "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": "reverse",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the checkbox using a reversed style with left-aligned label.",
              "fieldName": "reverse"
            },
            {
              "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"
            }
          ],
          "superclass": {
            "name": "FlowRdfFormControl",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-checkbox",
          "summary": "Checkboxes allow the user to toggle an option on or off.",
          "dependencies": [
            "flow-ui-icon"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiCheckbox",
            "module": "components/checkbox/checkbox.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/checkbox/checkbox.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiCheckbox",
            "module": "components/checkbox/checkbox.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/checkbox/index.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "FlowCheckbox",
          "declaration": {
            "name": "default",
            "module": "./checkbox"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/checkbox-group/checkbox-group.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiCheckboxGroup",
          "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"
            },
            {
              "description": "The button group that wraps radio buttons.",
              "name": "button-group"
            },
            {
              "description": "The button group's `base` part.",
              "name": "button-group__base"
            }
          ],
          "slots": [
            {
              "description": "The default slot where `<flow-ui-radio>` or `<flow-ui-tool-button>` elements are placed.",
              "name": ""
            },
            {
              "description": "The radio group's label. Required for proper accessibility. Alternatively, you can use the `label` attribute.",
              "name": "label"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "protected",
              "readonly": true,
              "default": "new FormControlController(this)"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'help-text', 'label')"
            },
            {
              "kind": "field",
              "name": "customValidityMessage",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "default": "''"
            },
            {
              "kind": "field",
              "name": "validationTimeout",
              "type": {
                "text": "number"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "errorMessage",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "default": "''"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The checkbox 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 checkbox 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 checkbox group, submitted as a name/value pair with form data.",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string[]"
              },
              "default": "[]",
              "attribute": "value"
            },
            {
              "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 checkboxes.",
              "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": "reverse",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the radio using a reversed style with left-aligned label.",
              "attribute": "reverse",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "divider",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates that the control should display a divider",
              "attribute": "divider",
              "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": "getAllCheckboxes",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleCheckboxClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleLabelClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleInvalid",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "syncCheckboxes",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "updateCheckedState",
              "privacy": "private"
            },
            {
              "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": "handleChildEvents",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ],
              "description": "Stop propagation of flow-ui-input and flow-ui-change from child checkboxes"
            }
          ],
          "events": [
            {
              "description": "Emitted when the radio group's selected value changes.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when the radio group receives user input.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "flow-ui-invalid",
              "reactName": "onFlowUiInvalid"
            }
          ],
          "attributes": [
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The checkbox 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 checkbox 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 checkbox group, submitted as a name/value pair with form data.",
              "fieldName": "name"
            },
            {
              "name": "value",
              "type": {
                "text": "string[]"
              },
              "default": "[]",
              "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 checkboxes.",
              "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"
            },
            {
              "name": "reverse",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the radio using a reversed style with left-aligned label.",
              "fieldName": "reverse"
            },
            {
              "name": "divider",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates that the control should display a divider",
              "fieldName": "divider"
            }
          ],
          "superclass": {
            "name": "FlowRdfFormControl",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-checkbox-group",
          "summary": "Radio groups are used to group multiple [radios](/components/radio) or [radio buttons](/components/radio-button) so they function as a single form control.",
          "dependencies": [
            "flow-ui-button-group"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiCheckboxGroup",
            "module": "components/checkbox-group/checkbox-group.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/checkbox-group/checkbox-group.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./checkbox-group.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiCheckboxGroup",
            "module": "components/checkbox-group/checkbox-group.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/color-mapper/color-mapper.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiColorMapper",
          "members": [
            {
              "kind": "field",
              "name": "currentField",
              "type": {
                "text": "string | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'info')"
            },
            {
              "kind": "field",
              "name": "modeRadioGroup",
              "type": {
                "text": "FlowRadioGroup"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "fixedColorPicker",
              "type": {
                "text": "FlowColorPicker"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "fieldSelect",
              "type": {
                "text": "FlowSelect"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "infoDialog",
              "type": {
                "text": "FlowDialog"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "options",
              "type": {
                "text": "ColorMapperOptions"
              },
              "description": "The color mapper configuration specifying available fields.",
              "attribute": "options"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "ColorMapperValue"
              },
              "default": "{\n    mode: 'fixed',\n    field: undefined,\n    defaultColor: 'gray',\n    colorStops: []\n  }",
              "description": "The current value of the color mapper.",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'small'",
              "description": "The size of the color mapper component.",
              "attribute": "size"
            },
            {
              "kind": "field",
              "name": "swatches",
              "type": {
                "text": "string | string[]"
              },
              "default": "[\n    '#d7191c',\n    '#ffa500',\n    '#ffe909',\n    '#a6d96a',\n    '#1a9641',\n    '#3c58fd',\n    'white',\n    'black'\n  ]",
              "description": "One or more predefined color swatches to display as presets in the color picker. Can include any format the color\npicker can parse, including HEX(A), RGB(A), HSL(A), HSV(A), and CSS color names. Each color must be separated by a\nsemicolon (`;`). Alternatively, you can pass an array of color values to this property using JavaScript.",
              "attribute": "swatches"
            },
            {
              "kind": "method",
              "name": "handleFixedPickerClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleChange",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "FlowChangeEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "emitChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleColorStopRemove",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "FlowRemoveEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "getAllColorStops",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "getColorStopPlaceholder",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "fixedColorTemplate",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "dataDrivenColorTemplate",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "colorStopsTemplate",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "infoDialogTemplate",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "description": "Fired when the color mapper's value changes.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            }
          ],
          "attributes": [
            {
              "name": "options",
              "type": {
                "text": "ColorMapperOptions"
              },
              "description": "The color mapper configuration specifying available fields.",
              "fieldName": "options"
            },
            {
              "name": "value",
              "type": {
                "text": "ColorMapperValue"
              },
              "default": "{\n    mode: 'fixed',\n    field: undefined,\n    defaultColor: 'gray',\n    colorStops: []\n  }",
              "description": "The current value of the color mapper.",
              "fieldName": "value"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'small'",
              "description": "The size of the color mapper component.",
              "fieldName": "size"
            },
            {
              "name": "swatches",
              "type": {
                "text": "string | string[]"
              },
              "default": "[\n    '#d7191c',\n    '#ffa500',\n    '#ffe909',\n    '#a6d96a',\n    '#1a9641',\n    '#3c58fd',\n    'white',\n    'black'\n  ]",
              "description": "One or more predefined color swatches to display as presets in the color picker. Can include any format the color\npicker can parse, including HEX(A), RGB(A), HSL(A), HSV(A), and CSS color names. Each color must be separated by a\nsemicolon (`;`). Alternatively, you can pass an array of color values to this property using JavaScript.",
              "fieldName": "swatches"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-color-mapper",
          "summary": "A component for defining mappings between data values and colors.",
          "dependencies": [
            "flow-ui-color-picker",
            "flow-ui-color-stop",
            "flow-ui-dialog",
            "flow-ui-button",
            "flow-ui-radio-group",
            "flow-ui-radio",
            "flow-ui-select",
            "flow-ui-option",
            "flow-ui-icon-button"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiColorMapper",
            "module": "components/color-mapper/color-mapper.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/color-mapper/color-mapper.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiColorMapper",
            "module": "components/color-mapper/color-mapper.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/color-mapper/helpers.js",
      "declarations": [
        {
          "kind": "function",
          "name": "colorMapperValueToMaplibreExpression",
          "return": {
            "type": {
              "text": "string"
            }
          },
          "parameters": [
            {
              "name": "value",
              "type": {
                "text": "ColorMapperValue"
              }
            }
          ]
        },
        {
          "kind": "function",
          "name": "escapeMaplibreString",
          "parameters": [
            {
              "name": "value",
              "type": {
                "text": "string"
              }
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "colorMapperValueToMaplibreExpression",
          "declaration": {
            "name": "colorMapperValueToMaplibreExpression",
            "module": "components/color-mapper/helpers.js"
          }
        },
        {
          "kind": "js",
          "name": "escapeMaplibreString",
          "declaration": {
            "name": "escapeMaplibreString",
            "module": "components/color-mapper/helpers.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/color-mapper/types.js",
      "declarations": [],
      "exports": []
    },
    {
      "kind": "javascript-module",
      "path": "components/color-picker/color-picker.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiColorPicker",
          "cssProperties": [
            {
              "description": "The width of the color grid.",
              "name": "--grid-width"
            },
            {
              "description": "The height of the color grid.",
              "name": "--grid-height"
            },
            {
              "description": "The size of the color grid's handle.",
              "name": "--grid-handle-size"
            },
            {
              "description": "The height of the hue and alpha sliders.",
              "name": "--slider-height"
            },
            {
              "description": "The diameter of the slider's handle.",
              "name": "--slider-handle-size"
            },
            {
              "description": "The size of each predefined color swatch.",
              "name": "--swatch-size"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The color picker's dropdown trigger.",
              "name": "trigger"
            },
            {
              "description": "The container that holds the swatches.",
              "name": "swatches"
            },
            {
              "description": "Each individual swatch.",
              "name": "swatch"
            },
            {
              "description": "The color grid.",
              "name": "grid"
            },
            {
              "description": "The color grid's handle.",
              "name": "grid-handle"
            },
            {
              "description": "Hue and opacity sliders.",
              "name": "slider"
            },
            {
              "description": "Hue and opacity slider handles.",
              "name": "slider-handle"
            },
            {
              "description": "The hue slider.",
              "name": "hue-slider"
            },
            {
              "description": "The hue slider's handle.",
              "name": "hue-slider-handle"
            },
            {
              "description": "The opacity slider.",
              "name": "opacity-slider"
            },
            {
              "description": "The opacity slider's handle.",
              "name": "opacity-slider-handle"
            },
            {
              "description": "The preview color.",
              "name": "preview"
            },
            {
              "description": "The text input.",
              "name": "input"
            },
            {
              "description": "The eye dropper button.",
              "name": "eye-dropper-button"
            },
            {
              "description": "The eye dropper button's exported `button` part.",
              "name": "eye-dropper-button__base"
            },
            {
              "description": "The eye dropper button's exported `prefix` part.",
              "name": "eye-dropper-button__prefix"
            },
            {
              "description": "The eye dropper button's exported `label` part.",
              "name": "eye-dropper-button__label"
            },
            {
              "description": "The eye dropper button's exported `suffix` part.",
              "name": "eye-dropper-button__suffix"
            },
            {
              "description": "The eye dropper button's exported `caret` part.",
              "name": "eye-dropper-button__caret"
            },
            {
              "description": "The format button.",
              "name": "format-button"
            },
            {
              "description": "The format button's exported `button` part.",
              "name": "format-button__base"
            },
            {
              "description": "The format button's exported `prefix` part.",
              "name": "format-button__prefix"
            },
            {
              "description": "The format button's exported `label` part.",
              "name": "format-button__label"
            },
            {
              "description": "The format button's exported `suffix` part.",
              "name": "format-button__suffix"
            },
            {
              "description": "The format button's exported `caret` part.",
              "name": "format-button__caret"
            }
          ],
          "slots": [
            {
              "description": "The color picker's form label. Alternatively, you can use the `label` attribute.",
              "name": "label"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this)"
            },
            {
              "kind": "field",
              "name": "isSafeValue",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "base",
              "type": {
                "text": "HTMLElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "input",
              "type": {
                "text": "FlowInput"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "dropdown",
              "type": {
                "text": "FlowDropdown"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "previewButton",
              "type": {
                "text": "HTMLButtonElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "trigger",
              "type": {
                "text": "HTMLButtonElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "isDraggingGridHandle",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "isEmpty",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "inputValue",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "default": "''"
            },
            {
              "kind": "field",
              "name": "hue",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "default": "0"
            },
            {
              "kind": "field",
              "name": "saturation",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "default": "100"
            },
            {
              "kind": "field",
              "name": "brightness",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "default": "100"
            },
            {
              "kind": "field",
              "name": "alpha",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "default": "100"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The current value of the color picker. The value's format will vary based the `format` attribute. To get the value\nin a specific format, use the `getFormattedValue()` method. The value is submitted as a name/value pair with form\ndata.",
              "attribute": "value"
            },
            {
              "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": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The color picker's label. This will not be displayed, but it will be announced by assistive devices. If you need to\ndisplay HTML, you can use the `label` slot` instead.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "format",
              "type": {
                "text": "'hex' | 'rgb' | 'hsl' | 'hsv'"
              },
              "default": "'hex'",
              "description": "The format to use. If opacity is enabled, these will translate to HEXA, RGBA, HSLA, and HSVA respectively. The color\npicker will accept user input in any format (including CSS color names) and convert it to the desired format.",
              "attribute": "format"
            },
            {
              "kind": "field",
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Renders the color picker inline rather than in a dropdown.",
              "attribute": "inline",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "Determines the size of the color picker's trigger. This has no effect on inline color pickers.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "noFormatToggle",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Removes the button that lets users toggle between format.",
              "attribute": "no-format-toggle"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the form control, submitted as a name/value pair with form data.",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the color picker.",
              "attribute": "disabled",
              "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": "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": "opacity",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Shows the opacity slider. Enabling this will cause the formatted value to be HEXA, RGBA, or HSLA.",
              "attribute": "opacity"
            },
            {
              "kind": "field",
              "name": "uppercase",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "By default, values are lowercase. With this attribute, values will be uppercase instead.",
              "attribute": "uppercase"
            },
            {
              "kind": "field",
              "name": "swatches",
              "type": {
                "text": "string | string[]"
              },
              "default": "''",
              "description": "One or more predefined color swatches to display as presets in the color picker. Can include any format the color\npicker can parse, including HEX(A), RGB(A), HSL(A), HSV(A), and CSS color names. Each color must be separated by a\nsemicolon (`;`). Alternatively, you can pass an array of color values to this property using JavaScript.",
              "attribute": "swatches"
            },
            {
              "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 color picker 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": "handleCopy",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleFocusIn",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleFocusOut",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleFormatToggle",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleAlphaDrag",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "PointerEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleHueDrag",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "PointerEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleGridDrag",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "PointerEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleAlphaKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleHueKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleGridKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleInputChange",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleInputInput",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleInputKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleInputInvalid",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleTouchMove",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "TouchEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "parseColor",
              "privacy": "private",
              "parameters": [
                {
                  "name": "colorString",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "setColor",
              "privacy": "private",
              "parameters": [
                {
                  "name": "colorString",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "setLetterCase",
              "privacy": "private",
              "parameters": [
                {
                  "name": "string",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "syncValues",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleAfterHide",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleEyeDropper",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "selectSwatch",
              "privacy": "private",
              "parameters": [
                {
                  "name": "color",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "getHexString",
              "privacy": "private",
              "parameters": [
                {
                  "name": "hue",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "saturation",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "brightness",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "alpha",
                  "default": "100"
                }
              ],
              "description": "Generates a hex string from HSV values. Hue must be 0-360. All other arguments must be 0-100."
            },
            {
              "kind": "method",
              "name": "stopNestedEventPropagation",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "CustomEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "focus",
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "FocusOptions"
                  }
                }
              ],
              "description": "Sets focus on the color picker."
            },
            {
              "kind": "method",
              "name": "blur",
              "description": "Removes focus from the color picker."
            },
            {
              "kind": "method",
              "name": "getFormattedValue",
              "parameters": [
                {
                  "name": "format",
                  "default": "'hex'",
                  "type": {
                    "text": "'hex' | 'hexa' | 'rgb' | 'rgba' | 'hsl' | 'hsla' | 'hsv' | 'hsva'"
                  }
                }
              ],
              "description": "Returns the current value as a string in the specified format."
            },
            {
              "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 color picker loses focus.",
              "name": "flow-ui-blur",
              "reactName": "onFlowUiBlur"
            },
            {
              "description": "Emitted when the color picker's value changes.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when the color picker receives focus.",
              "name": "flow-ui-focus",
              "reactName": "onFlowUiFocus"
            },
            {
              "description": "Emitted when the color picker receives input.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "flow-ui-invalid",
              "reactName": "onFlowUiInvalid"
            }
          ],
          "attributes": [
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The current value of the color picker. The value's format will vary based the `format` attribute. To get the value\nin a specific format, use the `getFormattedValue()` method. The value is submitted as a name/value pair with form\ndata.",
              "fieldName": "value"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The color picker's label. This will not be displayed, but it will be announced by assistive devices. If you need to\ndisplay HTML, you can use the `label` slot` instead.",
              "fieldName": "label"
            },
            {
              "name": "format",
              "type": {
                "text": "'hex' | 'rgb' | 'hsl' | 'hsv'"
              },
              "default": "'hex'",
              "description": "The format to use. If opacity is enabled, these will translate to HEXA, RGBA, HSLA, and HSVA respectively. The color\npicker will accept user input in any format (including CSS color names) and convert it to the desired format.",
              "fieldName": "format"
            },
            {
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Renders the color picker inline rather than in a dropdown.",
              "fieldName": "inline"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "Determines the size of the color picker's trigger. This has no effect on inline color pickers.",
              "fieldName": "size"
            },
            {
              "name": "no-format-toggle",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Removes the button that lets users toggle between format.",
              "fieldName": "noFormatToggle"
            },
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the form control, submitted as a name/value pair with form data.",
              "fieldName": "name"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the color picker.",
              "fieldName": "disabled"
            },
            {
              "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": "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": "opacity",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Shows the opacity slider. Enabling this will cause the formatted value to be HEXA, RGBA, or HSLA.",
              "fieldName": "opacity"
            },
            {
              "name": "uppercase",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "By default, values are lowercase. With this attribute, values will be uppercase instead.",
              "fieldName": "uppercase"
            },
            {
              "name": "swatches",
              "type": {
                "text": "string | string[]"
              },
              "default": "''",
              "description": "One or more predefined color swatches to display as presets in the color picker. Can include any format the color\npicker can parse, including HEX(A), RGB(A), HSL(A), HSV(A), and CSS color names. Each color must be separated by a\nsemicolon (`;`). Alternatively, you can pass an array of color values to this property using JavaScript.",
              "fieldName": "swatches"
            },
            {
              "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 color picker a required field.",
              "fieldName": "required"
            }
          ],
          "superclass": {
            "name": "FlowRdfFormControl",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-color-picker",
          "summary": "Color pickers allow the user to select a color.",
          "dependencies": [
            "flow-ui-button",
            "flow-ui-button-group",
            "flow-ui-dropdown",
            "flow-ui-input",
            "flow-ui-visually-hidden"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiColorPicker",
            "module": "components/color-picker/color-picker.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/color-picker/color-picker.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiColorPicker",
            "module": "components/color-picker/color-picker.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/color-stop/color-stop.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiColorStop",
          "members": [
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this, {\n    assumeInteractionOn: ['flow-ui-blur', 'flow-ui-change']\n  })"
            },
            {
              "kind": "field",
              "name": "input",
              "type": {
                "text": "HTMLInputElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "picker",
              "type": {
                "text": "FlowColorPicker"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "textOptions",
              "type": {
                "text": "FlowToolButtonGroup"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the color stop, submitted as a name/value pair with form data.",
              "attribute": "name"
            },
            {
              "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 color stop as a required field.",
              "attribute": "required",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "options",
              "type": {
                "text": "ColorStopOptions"
              },
              "description": "The color stop options object.",
              "attribute": "options"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "ColorStopValue"
              },
              "description": "The current value of the color stop component.",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'small'",
              "description": "The size of the color stop component.",
              "attribute": "size"
            },
            {
              "kind": "field",
              "name": "placeholder",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to display a placeholder color stop that\nallows the user to add a new color stop.",
              "attribute": "placeholder",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "fixed",
              "type": {
                "text": "string | undefined"
              },
              "default": "undefined",
              "description": "Set to `true` to display a fixed color stop that allows the user\nto select a fixed color in a color mapping.",
              "attribute": "fixed",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "swatches",
              "type": {
                "text": "string | string[]"
              },
              "default": "''",
              "description": "One or more predefined color swatches to display as presets in the color picker. Can include any format the color\npicker can parse, including HEX(A), RGB(A), HSL(A), HSV(A), and CSS color names. Each color must be separated by a\nsemicolon (`;`). Alternatively, you can pass an array of color values to this property using JavaScript.",
              "attribute": "swatches"
            },
            {
              "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": "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": "handleRemove",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleChange",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "emitChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "validate",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "boolean"
                }
              }
            },
            {
              "kind": "method",
              "name": "textInputTemplate",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "numberInputTemplate",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "fixedInputTemplate",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "selectInputTemplate",
              "privacy": "private"
            }
          ],
          "attributes": [
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the color stop, submitted as a name/value pair with form data.",
              "fieldName": "name"
            },
            {
              "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 color stop as a required field.",
              "fieldName": "required"
            },
            {
              "name": "options",
              "type": {
                "text": "ColorStopOptions"
              },
              "description": "The color stop options object.",
              "fieldName": "options"
            },
            {
              "name": "value",
              "type": {
                "text": "ColorStopValue"
              },
              "description": "The current value of the color stop component.",
              "fieldName": "value"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'small'",
              "description": "The size of the color stop component.",
              "fieldName": "size"
            },
            {
              "name": "placeholder",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to display a placeholder color stop that\nallows the user to add a new color stop.",
              "fieldName": "placeholder"
            },
            {
              "name": "fixed",
              "type": {
                "text": "string | undefined"
              },
              "default": "undefined",
              "description": "Set to `true` to display a fixed color stop that allows the user\nto select a fixed color in a color mapping.",
              "resolveInitializer": {
                "module": "src/components/color-stop/color-stop.component.ts"
              },
              "fieldName": "fixed"
            },
            {
              "name": "swatches",
              "type": {
                "text": "string | string[]"
              },
              "default": "''",
              "description": "One or more predefined color swatches to display as presets in the color picker. Can include any format the color\npicker can parse, including HEX(A), RGB(A), HSL(A), HSV(A), and CSS color names. Each color must be separated by a\nsemicolon (`;`). Alternatively, you can pass an array of color values to this property using JavaScript.",
              "fieldName": "swatches"
            }
          ],
          "superclass": {
            "name": "FlowRdfFormControl",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-color-stop",
          "summary": "A single color stop used by the `flow-ui-color-mapper` component.",
          "dependencies": [
            "flow-ui-color-picker",
            "flow-ui-input",
            "flow-ui-option",
            "flow-ui-select",
            "flow-ui-tool-button",
            "flow-ui-tool-button-group",
            "flow-ui-icon-button"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiColorStop",
            "module": "components/color-stop/color-stop.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/color-stop/color-stop.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiColorStop",
            "module": "components/color-stop/color-stop.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/date-time-picker/date-time-picker.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiDateTimePicker",
          "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 help text's wrapper.",
              "name": "form-control-help-text"
            },
            {
              "description": "The container the wraps the prefix, mode-icon, combobox, and clear icon.",
              "name": "combobox"
            },
            {
              "description": "The container that wraps the prefix slot.",
              "name": "prefix"
            },
            {
              "description": "The element that displays the selected date/time, an `<input>` element.",
              "name": "display-input"
            },
            {
              "description": "The clear button.",
              "name": "clear-button"
            },
            {
              "description": "The mode icon, a `<flow-ui-icon>` element.",
              "name": "mode-icon"
            }
          ],
          "slots": [
            {
              "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 picker.",
              "name": "prefix"
            },
            {
              "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 mode icon.",
              "name": "mode-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": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this, {\n    assumeInteractionOn: ['flow-ui-blur', 'flow-ui-input']\n  })"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'help-text', 'label')"
            },
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "popup",
              "type": {
                "text": "FlowPopup"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "displayInput",
              "type": {
                "text": "HTMLInputElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "valueInput",
              "type": {
                "text": "HTMLInputElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "calendarContainer",
              "type": {
                "text": "HTMLDivElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "displayLabel",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "default": "''"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the date/time picker, 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 date/time picker. (ISO8601 date/time string)",
              "attribute": "value",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "displayMode",
              "type": {
                "text": "'date' | 'time' | 'datetime'"
              },
              "default": "'datetime'",
              "description": "Select whether to show date only, time only or both date and time.",
              "attribute": "display-mode"
            },
            {
              "kind": "field",
              "name": "format",
              "type": {
                "text": "string"
              },
              "default": "'FFF'",
              "description": "Specify the display format using a [Luxon format string](https://moment.github.io/luxon/#/formatting?id=table-of-tokens).",
              "attribute": "format"
            },
            {
              "kind": "field",
              "name": "timezone",
              "type": {
                "text": "string | undefined"
              },
              "description": "Set the timezone for display. If not set the default timezone will be used. (TZ name e.g. `'Europe/London'`)",
              "attribute": "timezone"
            },
            {
              "kind": "field",
              "name": "locale",
              "type": {
                "text": "string | undefined"
              },
              "description": "Set the locale for display. If not set the default locale will be used. (e.g `'en-GB'`)",
              "attribute": "locale"
            },
            {
              "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": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The date/time picker's size.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Placeholder text to show as a hint when the date/time picker is empty.",
              "attribute": "placeholder"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the date/time picker control.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "clearable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Adds a clear button when the date/time picker is not empty.",
              "attribute": "clearable"
            },
            {
              "kind": "field",
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the calendar is open. You can toggle this attribute to show and hide the calendar, or you can\nuse the `show()` and `hide()` methods.",
              "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' | 'top-end' | 'top-start' | 'bottom' | 'bottom-end' | 'bottom-start'"
              },
              "default": "'bottom-end'",
              "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": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the control in the 'inline' form control style.",
              "attribute": "inline",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "divider",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates that the control should display a divider",
              "attribute": "divider",
              "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": "addOpenListeners",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "removeOpenListeners",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleFocus",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleBlur",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleDocumentFocusIn",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleDocumentKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleDocumentMouseDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "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": "handleCalendarChange",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "FlowChangeEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleInvalid",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "show",
              "description": "Shows the calendar."
            },
            {
              "kind": "method",
              "name": "hide",
              "description": "Hides the calendar."
            },
            {
              "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": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when the control's value is cleared.",
              "name": "flow-ui-clear",
              "reactName": "onFlowUiClear"
            },
            {
              "description": "Emitted when the control receives input.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            },
            {
              "description": "Emitted when the control gains focus.",
              "name": "flow-ui-focus",
              "reactName": "onFlowUiFocus"
            },
            {
              "description": "Emitted when the control loses focus.",
              "name": "flow-ui-blur",
              "reactName": "onFlowUiBlur"
            },
            {
              "description": "Emitted when calendar opens.",
              "name": "flow-ui-show",
              "reactName": "onFlowUiShow"
            },
            {
              "description": "Emitted after the calendar opens and all animations are complete.",
              "name": "flow-ui-after-show",
              "reactName": "onFlowUiAfterShow"
            },
            {
              "description": "Emitted when the calendar closes.",
              "name": "flow-ui-hide",
              "reactName": "onFlowUiHide"
            },
            {
              "description": "Emitted after the calendar closes and all animations are complete.",
              "name": "flow-ui-after-hide",
              "reactName": "onFlowUiAfterHide"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "flow-ui-invalid",
              "reactName": "onFlowUiInvalid"
            }
          ],
          "attributes": [
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the date/time picker, submitted as a name/value pair with form data.",
              "fieldName": "name"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The current value of the date/time picker. (ISO8601 date/time string)",
              "fieldName": "value"
            },
            {
              "name": "display-mode",
              "type": {
                "text": "'date' | 'time' | 'datetime'"
              },
              "default": "'datetime'",
              "description": "Select whether to show date only, time only or both date and time.",
              "fieldName": "displayMode"
            },
            {
              "name": "format",
              "type": {
                "text": "string"
              },
              "default": "'FFF'",
              "description": "Specify the display format using a [Luxon format string](https://moment.github.io/luxon/#/formatting?id=table-of-tokens).",
              "fieldName": "format"
            },
            {
              "name": "timezone",
              "type": {
                "text": "string | undefined"
              },
              "description": "Set the timezone for display. If not set the default timezone will be used. (TZ name e.g. `'Europe/London'`)",
              "fieldName": "timezone"
            },
            {
              "name": "locale",
              "type": {
                "text": "string | undefined"
              },
              "description": "Set the locale for display. If not set the default locale will be used. (e.g `'en-GB'`)",
              "fieldName": "locale"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The date/time picker's size.",
              "fieldName": "size"
            },
            {
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Placeholder text to show as a hint when the date/time picker is empty.",
              "fieldName": "placeholder"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the date/time picker control.",
              "fieldName": "disabled"
            },
            {
              "name": "clearable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Adds a clear button when the date/time picker is not empty.",
              "fieldName": "clearable"
            },
            {
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the calendar is open. You can toggle this attribute to show and hide the calendar, or you can\nuse the `show()` and `hide()` methods.",
              "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' | 'top-end' | 'top-start' | 'bottom' | 'bottom-end' | 'bottom-start'"
              },
              "default": "'bottom-end'",
              "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": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the control in the 'inline' form control style.",
              "fieldName": "inline"
            },
            {
              "name": "divider",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates that the control should display a divider",
              "fieldName": "divider"
            }
          ],
          "superclass": {
            "name": "FlowRdfFormControl",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-date-time-picker",
          "summary": "Date time pickers allow users to select a date and time from a calendar and clock interface.",
          "dependencies": [
            "flow-ui-icon",
            "flow-ui-popup",
            "flow-ui-calendar"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiDateTimePicker",
            "module": "components/date-time-picker/date-time-picker.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/date-time-picker/date-time-picker.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./date-time-picker.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiDateTimePicker",
            "module": "components/date-time-picker/date-time-picker.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/details/details.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiDetails",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The header that wraps both the summary and the expand/collapse icon.",
              "name": "header"
            },
            {
              "description": "The container that wraps the summary.",
              "name": "summary"
            },
            {
              "description": "The container that wraps the expand/collapse icons.",
              "name": "summary-icon"
            },
            {
              "description": "The details content.",
              "name": "content"
            }
          ],
          "slots": [
            {
              "description": "The details' main content.",
              "name": ""
            },
            {
              "description": "The details' summary. Alternatively, you can use the `summary` attribute.",
              "name": "summary"
            },
            {
              "description": "Optional expand icon to use instead of the default. Works best with `<flow-ui-icon>`.",
              "name": "expand-icon"
            },
            {
              "description": "Optional collapse icon to use instead of the default. Works best with `<flow-ui-icon>`.",
              "name": "collapse-icon"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the details is open. You can toggle this attribute to show and hide the details, or you\ncan use the `show()` and `hide()` methods and this attribute will reflect the details' open state.",
              "attribute": "open",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "summary",
              "type": {
                "text": "string"
              },
              "description": "The summary to show in the header. If you need to display HTML, use the `summary` slot instead.",
              "attribute": "summary"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the details so it can't be toggled.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "handleSummaryClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleSummaryKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "show",
              "description": "Shows the details."
            },
            {
              "kind": "method",
              "name": "hide",
              "description": "Hides the details"
            }
          ],
          "events": [
            {
              "description": "Emitted when the details opens.",
              "name": "flow-ui-show",
              "reactName": "onFlowUiShow"
            },
            {
              "description": "Emitted after the details opens and all animations are complete.",
              "name": "flow-ui-after-show",
              "reactName": "onFlowUiAfterShow"
            },
            {
              "description": "Emitted when the details closes.",
              "name": "flow-ui-hide",
              "reactName": "onFlowUiHide"
            },
            {
              "description": "Emitted after the details closes and all animations are complete.",
              "name": "flow-ui-after-hide",
              "reactName": "onFlowUiAfterHide"
            }
          ],
          "attributes": [
            {
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the details is open. You can toggle this attribute to show and hide the details, or you\ncan use the `show()` and `hide()` methods and this attribute will reflect the details' open state.",
              "fieldName": "open"
            },
            {
              "name": "summary",
              "type": {
                "text": "string"
              },
              "description": "The summary to show in the header. If you need to display HTML, use the `summary` slot instead.",
              "fieldName": "summary"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the details so it can't be toggled.",
              "fieldName": "disabled"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-details",
          "summary": "Details show a brief summary and expand to show additional content.",
          "dependencies": [
            "flow-ui-icon"
          ],
          "animations": [
            {
              "name": "details.show",
              "description": "The animation to use when showing details. You can use `height: auto` with this animation."
            },
            {
              "name": "details.hide",
              "description": "The animation to use when hiding details. You can use `height: auto` with this animation."
            }
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiDetails",
            "module": "components/details/details.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/details/details.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./details.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiDetails",
            "module": "components/details/details.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/dialog/dialog.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiDialog",
          "cssProperties": [
            {
              "description": "The preferred width of the dialog. 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 `<flow-ui-icon-button>`.",
              "name": "header-actions"
            },
            {
              "description": "The dialog's title text.",
              "name": "title"
            },
            {
              "description": "The close button, an `<flow-ui-icon-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"
            },
            {
              "description": "The tab group's navigation container where tabs are slotted in.",
              "name": "tab-group__nav"
            },
            {
              "description": "The container that wraps the tabs.",
              "name": "tab-group__tabs"
            },
            {
              "description": "The line that highlights the currently selected tab.",
              "name": "tab-group__active-tab-indicator"
            },
            {
              "description": "The tab group's body where tab panels are slotted in.",
              "name": "tab-group__body"
            }
          ],
          "slots": [
            {
              "description": "The dialog's main content.",
              "name": ""
            },
            {
              "description": "The dialog's title text. Alternatively, you can use the `title` attribute.",
              "name": "title"
            },
            {
              "description": "Optional actions to add to the header. Works best with `<flow-ui-icon-button>`.",
              "name": "header-actions"
            },
            {
              "description": "The dialog's footer, usually one or more buttons representing various options.",
              "name": "footer"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'footer')"
            },
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "modal",
              "type": {
                "text": "Modal"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "originalTrigger",
              "type": {
                "text": "HTMLElement | null"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "tabGroup",
              "type": {
                "text": "FlowUiTabGroup"
              },
              "description": "The embedded tab group in a tabbed-style dialog"
            },
            {
              "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": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The dialog's title text. If you need to display HTML, use the `title` slot instead.",
              "attribute": "title",
              "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": "field",
              "name": "tabbed",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display a tabbed-style settings dialog.",
              "attribute": "tabbed",
              "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": "method",
              "name": "handleDocumentKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "show",
              "description": "Shows the dialog."
            },
            {
              "kind": "method",
              "name": "hide",
              "description": "Hides the dialog"
            },
            {
              "kind": "method",
              "name": "handleTabShow",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "syncTabbedDialog",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleChildHide",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "renderHeader",
              "parameters": [
                {
                  "name": "slot",
                  "optional": true,
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "renderTabContainer"
            },
            {
              "kind": "method",
              "name": "renderDefaultContainer"
            }
          ],
          "events": [
            {
              "description": "Emitted when the dialog opens.",
              "name": "flow-ui-show",
              "reactName": "onFlowUiShow"
            },
            {
              "description": "Emitted after the dialog opens and all animations are complete.",
              "name": "flow-ui-after-show",
              "reactName": "onFlowUiAfterShow"
            },
            {
              "description": "Emitted when the dialog closes.",
              "name": "flow-ui-hide",
              "reactName": "onFlowUiHide"
            },
            {
              "description": "Emitted after the dialog closes and all animations are complete.",
              "name": "flow-ui-after-hide",
              "reactName": "onFlowUiAfterHide"
            },
            {
              "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": "flow-ui-initial-focus",
              "reactName": "onFlowUiInitialFocus"
            },
            {
              "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": "flow-ui-request-close",
              "reactName": "onFlowUiRequestClose"
            },
            {
              "type": {
                "text": "{ name: String }"
              },
              "description": "Emitted when a tab is shown.",
              "name": "flow-ui-tab-show",
              "reactName": "onFlowUiTabShow"
            },
            {
              "type": {
                "text": "{ name: String }"
              },
              "description": "Emitted when a tab is hidden.",
              "name": "flow-ui-tab-hide",
              "reactName": "onFlowUiTabHide"
            }
          ],
          "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": "title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The dialog's title text. If you need to display HTML, use the `title` slot instead.",
              "fieldName": "title"
            },
            {
              "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"
            },
            {
              "name": "tabbed",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display a tabbed-style settings dialog.",
              "fieldName": "tabbed"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-dialog",
          "summary": "Dialogs, sometimes called \"modals\", appear above the page and require the user's immediate attention.",
          "dependencies": [
            "flow-ui-icon-button"
          ],
          "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."
            }
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiDialog",
            "module": "components/dialog/dialog.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/dialog/dialog.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./dialog.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiDialog",
            "module": "components/dialog/dialog.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/divider/divider.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiDivider",
          "cssProperties": [
            {
              "description": "The color of the divider.",
              "name": "--color"
            },
            {
              "description": "The width of the divider.",
              "name": "--width"
            },
            {
              "description": "The spacing of the divider.",
              "name": "--spacing"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "vertical",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the divider in a vertical orientation.",
              "attribute": "vertical",
              "reflects": true
            }
          ],
          "attributes": [
            {
              "name": "vertical",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the divider in a vertical orientation.",
              "fieldName": "vertical"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-divider",
          "summary": "Dividers are used to visually separate or group elements.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiDivider",
            "module": "components/divider/divider.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/divider/divider.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./divider.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiDivider",
            "module": "components/divider/divider.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/drawer/drawer.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiDrawer",
          "cssProperties": [
            {
              "description": "The preferred size of the drawer. This will be applied to the drawer's width or height depending on its `placement`. Note that the drawer will shrink to accommodate smaller screens.",
              "name": "--size"
            },
            {
              "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 drawer.",
              "name": "overlay"
            },
            {
              "description": "The drawer's panel (where the drawer and its content are rendered).",
              "name": "panel"
            },
            {
              "description": "The drawer's header. This element wraps the title and header actions.",
              "name": "header"
            },
            {
              "description": "Optional actions to add to the header. Works best with `<flow-ui-icon-button>`.",
              "name": "header-actions"
            },
            {
              "description": "The drawer's title.",
              "name": "title"
            },
            {
              "description": "The close button, an `<flow-ui-icon-button>`.",
              "name": "close-button"
            },
            {
              "description": "The close button's exported `base` part.",
              "name": "close-button__base"
            },
            {
              "description": "The drawer's body.",
              "name": "body"
            },
            {
              "description": "The drawer's footer.",
              "name": "footer"
            }
          ],
          "slots": [
            {
              "description": "The drawer's main content.",
              "name": ""
            },
            {
              "description": "The drawer's label. Alternatively, you can use the `label` attribute.",
              "name": "label"
            },
            {
              "description": "Optional actions to add to the header. Works best with `<flow-ui-icon-button>`.",
              "name": "header-actions"
            },
            {
              "description": "The drawer's footer, usually one or more buttons representing various options.",
              "name": "footer"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'footer')"
            },
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "modal",
              "type": {
                "text": "Modal"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "originalTrigger",
              "type": {
                "text": "HTMLElement | null"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the drawer is open. You can toggle this attribute to show and hide the drawer, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the drawer's open state.",
              "attribute": "open",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The drawer'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": "placement",
              "type": {
                "text": "'top' | 'end' | 'bottom' | 'start'"
              },
              "default": "'end'",
              "description": "The direction from which the drawer will open.",
              "attribute": "placement",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "contained",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "By default, the drawer slides out of its containing block (usually the viewport). To make the drawer slide out of\nits parent element, set this attribute and add `position: relative` to the parent.",
              "attribute": "contained",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "noHeader",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Removes the header. This will also remove the default close button, so please ensure you provide an easy,\naccessible way for users to dismiss the drawer.",
              "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": "method",
              "name": "handleDocumentKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "show",
              "description": "Shows the drawer."
            },
            {
              "kind": "method",
              "name": "hide",
              "description": "Hides the drawer"
            }
          ],
          "events": [
            {
              "description": "Emitted when the drawer opens.",
              "name": "flow-ui-show",
              "reactName": "onFlowUiShow"
            },
            {
              "description": "Emitted after the drawer opens and all animations are complete.",
              "name": "flow-ui-after-show",
              "reactName": "onFlowUiAfterShow"
            },
            {
              "description": "Emitted when the drawer closes.",
              "name": "flow-ui-hide",
              "reactName": "onFlowUiHide"
            },
            {
              "description": "Emitted after the drawer closes and all animations are complete.",
              "name": "flow-ui-after-hide",
              "reactName": "onFlowUiAfterHide"
            },
            {
              "description": "Emitted when the drawer 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": "flow-ui-initial-focus",
              "reactName": "onFlowUiInitialFocus"
            },
            {
              "type": {
                "text": "{ source: 'close-button' | 'keyboard' | 'overlay' }"
              },
              "description": "Emitted when the user attempts to close the drawer by clicking the close button, clicking the overlay, or pressing escape. Calling `event.preventDefault()` will keep the drawer open. Avoid using this unless closing the drawer will result in destructive behavior such as data loss.",
              "name": "flow-ui-request-close",
              "reactName": "onFlowUiRequestClose"
            }
          ],
          "attributes": [
            {
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the drawer is open. You can toggle this attribute to show and hide the drawer, or you can\nuse the `show()` and `hide()` methods and this attribute will reflect the drawer's open state.",
              "fieldName": "open"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The drawer'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": "placement",
              "type": {
                "text": "'top' | 'end' | 'bottom' | 'start'"
              },
              "default": "'end'",
              "description": "The direction from which the drawer will open.",
              "fieldName": "placement"
            },
            {
              "name": "contained",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "By default, the drawer slides out of its containing block (usually the viewport). To make the drawer slide out of\nits parent element, set this attribute and add `position: relative` to the parent.",
              "fieldName": "contained"
            },
            {
              "name": "no-header",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Removes the header. This will also remove the default close button, so please ensure you provide an easy,\naccessible way for users to dismiss the drawer.",
              "fieldName": "noHeader"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-drawer",
          "summary": "Drawers slide in from a container to expose additional options and information.",
          "dependencies": [
            "flow-ui-icon-button"
          ],
          "animations": [
            {
              "name": "drawer.showTop",
              "description": "The animation to use when showing a drawer with `top` placement."
            },
            {
              "name": "drawer.showEnd",
              "description": "The animation to use when showing a drawer with `end` placement."
            },
            {
              "name": "drawer.showBottom",
              "description": "The animation to use when showing a drawer with `bottom` placement."
            },
            {
              "name": "drawer.showStart",
              "description": "The animation to use when showing a drawer with `start` placement."
            },
            {
              "name": "drawer.hideTop",
              "description": "The animation to use when hiding a drawer with `top` placement."
            },
            {
              "name": "drawer.hideEnd",
              "description": "The animation to use when hiding a drawer with `end` placement."
            },
            {
              "name": "drawer.hideBottom",
              "description": "The animation to use when hiding a drawer with `bottom` placement."
            },
            {
              "name": "drawer.hideStart",
              "description": "The animation to use when hiding a drawer with `start` placement."
            },
            {
              "name": "drawer.denyClose",
              "description": "The animation to use when a request to close the drawer is denied."
            },
            {
              "name": "drawer.overlay.show",
              "description": "The animation to use when showing the drawer's overlay."
            },
            {
              "name": "drawer.overlay.hide",
              "description": "The animation to use when hiding the drawer's overlay."
            }
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiDrawer",
            "module": "components/drawer/drawer.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/drawer/drawer.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./drawer.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiDrawer",
            "module": "components/drawer/drawer.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/dropdown/dropdown.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiDropdown",
          "cssParts": [
            {
              "description": "The component's base wrapper, an `<flow-ui-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 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.",
              "name": ""
            },
            {
              "description": "The dropdown's trigger, usually a `<flow-ui-button>` element.",
              "name": "trigger"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{ 'flow-ui-popup': FlowPopup }"
            },
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "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": "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' | 'end' | 'center' | '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": "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": "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": "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."
            }
          ],
          "events": [
            {
              "description": "Emitted when the dropdown opens.",
              "name": "flow-ui-show",
              "reactName": "onFlowUiShow"
            },
            {
              "description": "Emitted after the dropdown opens and all animations are complete.",
              "name": "flow-ui-after-show",
              "reactName": "onFlowUiAfterShow"
            },
            {
              "description": "Emitted when the dropdown closes.",
              "name": "flow-ui-hide",
              "reactName": "onFlowUiHide"
            },
            {
              "description": "Emitted after the dropdown closes and all animations are complete.",
              "name": "flow-ui-after-hide",
              "reactName": "onFlowUiAfterHide"
            }
          ],
          "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": "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' | 'end' | 'center' | '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": "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": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-dropdown",
          "summary": "Dropdowns expose additional content that \"drops down\" in a panel.",
          "dependencies": [
            "flow-ui-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."
            }
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiDropdown",
            "module": "components/dropdown/dropdown.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/dropdown/dropdown.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./dropdown.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiDropdown",
            "module": "components/dropdown/dropdown.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/form-group/form-group.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiFormGroup",
          "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"
            },
            {
              "description": "The button group that wraps radio buttons.",
              "name": "button-group"
            },
            {
              "description": "The button group's `base` part.",
              "name": "button-group__base"
            }
          ],
          "slots": [
            {
              "description": "The default slot where `<flow-ui-radio>` or `<flow-ui-tool-button>` elements are placed.",
              "name": ""
            },
            {
              "description": "The radio group's label. Required for proper accessibility. Alternatively, you can use the `label` attribute.",
              "name": "label"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'help-text', 'label')"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The form group's label. If you need to display HTML, use the `label` slot instead.",
              "attribute": "label",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The form group's size. Child form controls will automatically be set to the selected size.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The form groups's help text. If you need to display HTML, use the `help-text` slot instead.",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "borders",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to display form group borders.",
              "attribute": "borders",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "'default' | 'warning' | 'danger'"
              },
              "default": "'default'",
              "description": "The form group's theme variant.",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "syncControls",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "getAllControls",
              "privacy": "private"
            }
          ],
          "attributes": [
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The form group's label. If you need to display HTML, use the `label` slot instead.",
              "fieldName": "label"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The form group's size. Child form controls will automatically be set to the selected size.",
              "fieldName": "size"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The form groups's help text. If you need to display HTML, use the `help-text` slot instead.",
              "fieldName": "helpText"
            },
            {
              "name": "borders",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to display form group borders.",
              "fieldName": "borders"
            },
            {
              "name": "variant",
              "type": {
                "text": "'default' | 'warning' | 'danger'"
              },
              "default": "'default'",
              "description": "The form group's theme variant.",
              "fieldName": "variant"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-form-group",
          "summary": "Radio groups are used to group multiple [radios](/components/radio) or [radio buttons](/components/radio-button) so they function as a single form control.",
          "dependencies": [
            "flow-ui-button-group"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiFormGroup",
            "module": "components/form-group/form-group.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/form-group/form-group.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./form-group.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiFormGroup",
            "module": "components/form-group/form-group.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/gauge/gauge.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiGauge",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The gauge's header.",
              "name": "header"
            },
            {
              "description": "The icon in the gauge's header.",
              "name": "header-icon"
            },
            {
              "description": "The title text in the gauge's header.",
              "name": "title"
            },
            {
              "description": "The info button in the gauge's header (if info dialog configured).",
              "name": "info-button"
            }
          ],
          "slots": [
            {
              "description": "The gauge's title. Alternatively, you can use the `title` attribute.",
              "name": "title"
            },
            {
              "description": "The gauge's value. Alternatively, you can use the `value` attribute.",
              "name": "value"
            },
            {
              "description": "Alternatively, you can use the `unit` attribute.",
              "name": "unit"
            },
            {
              "description": "The content to display in the gauge's info dialog. If this is set then an info button will be displayed in the gauge's header.",
              "name": "info"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'info')"
            },
            {
              "kind": "field",
              "name": "_formatter",
              "type": {
                "text": "(val: string | number) => string"
              },
              "privacy": "private",
              "default": "DEFAULT_FORMATTER"
            },
            {
              "kind": "field",
              "name": "_infoDialog",
              "type": {
                "text": "FlowDialog"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "title",
              "type": {
                "text": "string"
              },
              "description": "The gauge title displayed in the header. Alternatively, use the `title` slot to enhance the label with HTML markup.",
              "attribute": "title",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "units",
              "type": {
                "text": "string"
              },
              "description": "The units of the gauge value.",
              "attribute": "units"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string | number"
              },
              "description": "The value to display in the gauge.",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "icon",
              "type": {
                "text": "string"
              },
              "description": "The icon to display in the gauge header.",
              "attribute": "icon"
            },
            {
              "kind": "field",
              "name": "iconLibrary",
              "type": {
                "text": "string"
              },
              "description": "The icon library to use for the icon. Uses default library if not specified.",
              "attribute": "icon-library"
            },
            {
              "kind": "field",
              "name": "format",
              "type": {
                "text": "string"
              },
              "description": "The [D3 format](https://d3js.org/d3-format#locale_format) to use when displaying numeric values.",
              "attribute": "format"
            },
            {
              "kind": "method",
              "name": "showInfoDialog",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "hideInfoDialog",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "headerIconTemplate",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "infoButtonTemplate",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "infoDialogTemplate",
              "privacy": "private"
            }
          ],
          "attributes": [
            {
              "name": "title",
              "type": {
                "text": "string"
              },
              "description": "The gauge title displayed in the header. Alternatively, use the `title` slot to enhance the label with HTML markup.",
              "fieldName": "title"
            },
            {
              "name": "units",
              "type": {
                "text": "string"
              },
              "description": "The units of the gauge value.",
              "fieldName": "units"
            },
            {
              "name": "value",
              "type": {
                "text": "string | number"
              },
              "description": "The value to display in the gauge.",
              "fieldName": "value"
            },
            {
              "name": "icon",
              "type": {
                "text": "string"
              },
              "description": "The icon to display in the gauge header.",
              "fieldName": "icon"
            },
            {
              "name": "icon-library",
              "type": {
                "text": "string"
              },
              "description": "The icon library to use for the icon. Uses default library if not specified.",
              "fieldName": "iconLibrary"
            },
            {
              "name": "format",
              "type": {
                "text": "string"
              },
              "description": "The [D3 format](https://d3js.org/d3-format#locale_format) to use when displaying numeric values.",
              "fieldName": "format"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-gauge",
          "summary": "Gauges are used to display a single value with an optional icon and heading.",
          "dependencies": [
            "flow-ui-icon",
            "flow-ui-icon-button",
            "flow-ui-dialog",
            "flow-ui-button"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiGauge",
            "module": "components/gauge/gauge.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/gauge/gauge.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./gauge.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiGauge",
            "module": "components/gauge/gauge.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/icon/icon.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiIcon",
          "cssParts": [
            {
              "description": "The internal SVG element.",
              "name": "svg"
            }
          ],
          "members": [
            {
              "kind": "method",
              "name": "resolveIcon",
              "privacy": "private",
              "static": true,
              "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": "field",
              "name": "svg",
              "type": {
                "text": "SVGElement | null"
              },
              "privacy": "private",
              "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": "string"
              },
              "default": "'default'",
              "description": "The name of a registered custom icon library.",
              "attribute": "library",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "getUrl",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "description": "Emitted when the icon has loaded.",
              "name": "flow-ui-load",
              "reactName": "onFlowUiLoad"
            },
            {
              "description": "Emitted when the icon fails to load due to an error.",
              "name": "flow-ui-error",
              "reactName": "onFlowUiError"
            }
          ],
          "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": "string"
              },
              "default": "'default'",
              "description": "The name of a registered custom icon library.",
              "fieldName": "library"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-icon",
          "summary": "Icons are symbols that can be used to represent various options within an application.",
          "documentation": "https://developer.emu-analytics.net/docs/flow-ui-rdf/components/icon",
          "status": "stable",
          "since": "2.0",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiIcon",
            "module": "components/icon/icon.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/icon/icon.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./icon.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiIcon",
            "module": "components/icon/icon.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/icon/library.default.js",
      "declarations": [
        {
          "kind": "function",
          "name": "addIcons",
          "parameters": [
            {
              "name": "icons",
              "type": {
                "text": "{ [name: string]: string }"
              }
            }
          ],
          "description": "\nThe following code shows how to import FontAwesome SVG icons from the `flow-rdf-ui/icons` package and add them to the\ndefault icon library.\n```js\n// Import and register icons\nimport {fasHouse, fasGear, fasUser} from '@emuanalytics/flow-rdf-ui/icons';\nimport {addIcons} from '@emuanalytics/flow-rdf-ui';\naddIcons({fasHouse, fasGear, fasUser});\n```\n\nIcons are registered under their camelCase name **and** kebab-case name.\nOnce registered, they can be used in the following way:\n\n```html\n<flow-ui-icon name=\"fas-house\"></flow-ui-icon>\n```\n\nNote that missing or mis-spelled icons will be displayed as <flow-ui-icon name=\"unknown\"></flow-ui-icon>.\n\nFor a list of available icons, see the [FontAwesome icon gallery](https://fontawesome.com/search?o=r&m=free)."
        },
        {
          "kind": "function",
          "name": "getIconMap"
        },
        {
          "kind": "variable",
          "name": "library",
          "type": {
            "text": "IconLibrary"
          },
          "default": "{\n  name: 'default',\n  resolver: (name) => {\n    const map = getIconMap();\n    const icon = map.get(name);\n\n    return icon ?? notDefined;\n  }\n}"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "getIconMap",
          "declaration": {
            "name": "getIconMap",
            "module": "components/icon/library.default.js"
          }
        },
        {
          "kind": "js",
          "name": "addIcons",
          "declaration": {
            "name": "addIcons",
            "module": "components/icon/library.default.js"
          }
        },
        {
          "kind": "js",
          "name": "library",
          "declaration": {
            "name": "library",
            "module": "components/icon/library.default.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/icon/library.system.js",
      "declarations": [
        {
          "kind": "variable",
          "name": "systemLibrary",
          "type": {
            "text": "IconLibrary"
          },
          "default": "{\n  name: 'system',\n  resolver: (name: keyof typeof icons) => {\n    if (name in icons) {\n      return `data:image/svg+xml,${encodeURIComponent(icons[name])}`;\n    }\n    return '';\n  }\n}"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "systemLibrary",
            "module": "components/icon/library.system.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/icon/library.js",
      "declarations": [
        {
          "kind": "function",
          "name": "watchIcon",
          "parameters": [
            {
              "name": "icon",
              "type": {
                "text": "FlowIcon"
              }
            }
          ],
          "description": "Adds an icon to the list of watched icons."
        },
        {
          "kind": "function",
          "name": "unwatchIcon",
          "parameters": [
            {
              "name": "icon",
              "type": {
                "text": "FlowIcon"
              }
            }
          ],
          "description": "Removes an icon from the list of watched icons."
        },
        {
          "kind": "function",
          "name": "getIconLibrary",
          "parameters": [
            {
              "name": "name",
              "optional": true,
              "type": {
                "text": "string"
              }
            }
          ],
          "description": "Returns a library from the registry."
        },
        {
          "kind": "function",
          "name": "registerIconLibrary",
          "parameters": [
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "description": "The name of the custom icon library."
            },
            {
              "name": "options",
              "type": {
                "text": "{ resolver: IconLibraryResolver; mutator?: IconLibraryMutator }"
              },
              "description": "The icon library resolver and optional mutator."
            },
            {
              "description": "A function that returns the URL of given icon.",
              "name": "options.resolver"
            },
            {
              "description": "An optional function that mutates the SVG element of the icon.",
              "name": "options.mutator"
            }
          ],
          "description": "\nUse this function to add a custom icon library to the registry or override an existing one.\nProvide a resolver function that returns the URL of the icon based on its name.\nOptionally, provide a mutator function that modifies the SVG element of the icon.\n\nTwo icon libraries are included by default:\n- `system` (System icons used by `flow-rdf-ui` components)\n- `default` (FontAwesome 6.4.2)\n\nTo use a custom icon library, set the `library` property of the `<flow-ui-icon>` component\nto the registered name of the library. If omitted, the `default` library is used.\n\n```typescript\n// Register FontAwesome icon library using SVGs from Flo.w CDN\nregisterIconLibrary('fa', {\n  resolver: (name) => {\n    const filename = name.replace(/^fa[rbs]-/, '');\n    let folder = 'regular';\n    if (name.substring(0, 4) === 'fas-') folder = 'solid';\n    if (name.substring(0, 4) === 'fab-') folder = 'brands';\n    return `https://flow-cdn.emu-analytics.net/icons/fontawesome-6.4.2/${folder}/${filename}.svg`;\n  },\n  mutator: (svg) => svg.setAttribute('fill', 'currentColor')\n});\n```\n\n```html\n<flow-ui-icon library=\"fa\" name=\"fas-house\"></flow-ui-icon>\n```"
        },
        {
          "kind": "function",
          "name": "redrawWatchedIcons"
        },
        {
          "kind": "function",
          "name": "unregisterIconLibrary",
          "parameters": [
            {
              "name": "name",
              "type": {
                "text": "string"
              }
            }
          ],
          "description": "Removes a custom icon library from the registry."
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "addIcons",
          "declaration": {
            "name": "addIcons",
            "module": "./library.default"
          }
        },
        {
          "kind": "js",
          "name": "watchIcon",
          "declaration": {
            "name": "watchIcon",
            "module": "components/icon/library.js"
          }
        },
        {
          "kind": "js",
          "name": "unwatchIcon",
          "declaration": {
            "name": "unwatchIcon",
            "module": "components/icon/library.js"
          }
        },
        {
          "kind": "js",
          "name": "getIconLibrary",
          "declaration": {
            "name": "getIconLibrary",
            "module": "components/icon/library.js"
          }
        },
        {
          "kind": "js",
          "name": "registerIconLibrary",
          "declaration": {
            "name": "registerIconLibrary",
            "module": "components/icon/library.js"
          }
        },
        {
          "kind": "js",
          "name": "redrawWatchedIcons",
          "declaration": {
            "name": "redrawWatchedIcons",
            "module": "components/icon/library.js"
          }
        },
        {
          "kind": "js",
          "name": "unregisterIconLibrary",
          "declaration": {
            "name": "unregisterIconLibrary",
            "module": "components/icon/library.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/icon-button/icon-button.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiIconButton",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "slots": [
            {
              "description": "The tooltip content to display when the user hovers over the icon button. Alternatively, you can use the `tooltip` attribute.",
              "name": "tooltip"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'tooltip')"
            },
            {
              "kind": "field",
              "name": "tooltipAnimating",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "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"
            },
            {
              "kind": "field",
              "name": "library",
              "type": {
                "text": "string | undefined"
              },
              "description": "The name of a registered custom icon library.",
              "attribute": "library"
            },
            {
              "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": "href",
              "type": {
                "text": "string | undefined"
              },
              "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' | undefined"
              },
              "description": "Tells the browser where to open the link. Only used when `href` is set.",
              "attribute": "target"
            },
            {
              "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 set.",
              "attribute": "download"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "A description that gets read by assistive devices. For optimal accessibility, you should always include a label\nthat describes what the icon button does.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "tooltip",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Tooltip text that gets displayed when the user hovers over the icon button. If you need to display HTML, use the\n`tooltip` slot instead.",
              "attribute": "tooltip"
            },
            {
              "kind": "field",
              "name": "tooltipPlacement",
              "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": "tooltip-placement"
            },
            {
              "kind": "field",
              "name": "tooltipDistance",
              "type": {
                "text": "number"
              },
              "default": "8",
              "description": "The distance in pixels from which to offset the tooltip away from the icon button.",
              "attribute": "tooltip-distance"
            },
            {
              "kind": "field",
              "name": "tooltipSkidding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The distance in pixels from which to offset the tooltip along the icon button.",
              "attribute": "tooltip-skidding"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the button.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "confirm",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Confirmation text that gets displayed in a tooltip when the user clicks the icon button.\n If you need to display HTML, use the `confirm` slot instead.",
              "attribute": "confirm"
            },
            {
              "kind": "method",
              "name": "handleBlur",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleFocus",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleClick",
              "privacy": "protected",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "click",
              "description": "Simulates a click on the icon button."
            },
            {
              "kind": "method",
              "name": "focus",
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "FocusOptions"
                  }
                }
              ],
              "description": "Sets focus on the icon button."
            },
            {
              "kind": "method",
              "name": "blur",
              "description": "Removes focus from the icon button."
            },
            {
              "kind": "method",
              "name": "hideConfirm",
              "description": "Hide the confirmation tooltip if it is showing"
            },
            {
              "kind": "method",
              "name": "showConfirm",
              "description": "Show the confirmation tooltip"
            },
            {
              "kind": "method",
              "name": "handleConfirmClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "renderWithTooltip",
              "privacy": "private",
              "parameters": [
                {
                  "name": "contents",
                  "type": {
                    "text": "TemplateResult"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "renderWithConfirmation",
              "privacy": "private",
              "parameters": [
                {
                  "name": "contents",
                  "type": {
                    "text": "TemplateResult"
                  }
                }
              ]
            }
          ],
          "events": [
            {
              "description": "Emitted when the icon button loses focus.",
              "name": "flow-ui-blur",
              "reactName": "onFlowUiBlur"
            },
            {
              "description": "Emitted when the icon button gains focus.",
              "name": "flow-ui-focus",
              "reactName": "onFlowUiFocus"
            }
          ],
          "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": "library",
              "type": {
                "text": "string | undefined"
              },
              "description": "The name of a registered custom icon library.",
              "fieldName": "library"
            },
            {
              "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": "href",
              "type": {
                "text": "string | undefined"
              },
              "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' | undefined"
              },
              "description": "Tells the browser where to open the link. Only used when `href` is set.",
              "fieldName": "target"
            },
            {
              "name": "download",
              "type": {
                "text": "string | undefined"
              },
              "description": "Tells the browser to download the linked file as this filename. Only used when `href` is set.",
              "fieldName": "download"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "A description that gets read by assistive devices. For optimal accessibility, you should always include a label\nthat describes what the icon button does.",
              "fieldName": "label"
            },
            {
              "name": "tooltip",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Tooltip text that gets displayed when the user hovers over the icon button. If you need to display HTML, use the\n`tooltip` slot instead.",
              "fieldName": "tooltip"
            },
            {
              "name": "tooltip-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": "tooltipPlacement"
            },
            {
              "name": "tooltip-distance",
              "type": {
                "text": "number"
              },
              "default": "8",
              "description": "The distance in pixels from which to offset the tooltip away from the icon button.",
              "fieldName": "tooltipDistance"
            },
            {
              "name": "tooltip-skidding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The distance in pixels from which to offset the tooltip along the icon button.",
              "fieldName": "tooltipSkidding"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the button.",
              "fieldName": "disabled"
            },
            {
              "name": "confirm",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Confirmation text that gets displayed in a tooltip when the user clicks the icon button.\n If you need to display HTML, use the `confirm` slot instead.",
              "fieldName": "confirm"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-icon-button",
          "summary": "Icons buttons are simple, icon-only buttons that can be used for actions and in toolbars.",
          "documentation": "https://developer.emu-analytics.net/docs/flow-ui-rdf/components/icon-button",
          "status": "stable",
          "since": "2.0",
          "dependencies": [
            "flow-ui-icon",
            "flow-ui-tooltip"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiIconButton",
            "module": "components/icon-button/icon-button.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/icon-button/icon-button.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./icon-button.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiIconButton",
            "module": "components/icon-button/icon-button.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/input/input.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiInput",
          "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"
            },
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The internal `<input>` control.",
              "name": "input"
            },
            {
              "description": "The container that wraps the prefix.",
              "name": "prefix"
            },
            {
              "description": "The clear button.",
              "name": "clear-button"
            },
            {
              "description": "The password toggle button.",
              "name": "password-toggle-button"
            },
            {
              "description": "The container that wraps the suffix.",
              "name": "suffix"
            }
          ],
          "slots": [
            {
              "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 input.",
              "name": "prefix"
            },
            {
              "description": "Used to append a presentational icon or similar element to the input.",
              "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": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this, {\n    assumeInteractionOn: ['flow-ui-blur', 'flow-ui-input']\n  })"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'help-text', 'label')"
            },
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "_numberFormatter",
              "type": {
                "text": "(val: string | number | undefined) => string"
              },
              "privacy": "private",
              "default": "DEFAULT_FORMATTER"
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "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'",
              "description": "The type of input. Works the same as a native `<input>` element, but only a subset of types are supported. Defaults\nto `text`.",
              "attribute": "type",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the input, 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 input, submitted as a name/value pair with form data.",
              "attribute": "value"
            },
            {
              "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": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The input's size.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "filled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a filled input.",
              "attribute": "filled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a pill-style input with rounded edges.",
              "attribute": "pill",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The input's label. If you need to display HTML, use the `label` slot instead.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The input's help text. If you need to display HTML, use the `help-text` slot instead.",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "clearable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Adds a clear button when the input is not empty.",
              "attribute": "clearable"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the input.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Placeholder text to show as a hint when the input is empty.",
              "attribute": "placeholder"
            },
            {
              "kind": "field",
              "name": "format",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Number format to use for input controls with `type=\"number\"`. (D3 format string)",
              "attribute": "format"
            },
            {
              "kind": "field",
              "name": "readonly",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the input readonly.",
              "attribute": "readonly",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "passwordToggle",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Adds a button to toggle the password's visibility. Only applies to password types.",
              "attribute": "password-toggle"
            },
            {
              "kind": "field",
              "name": "passwordVisible",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Determines whether or not the password is currently visible. Only applies to password input types.",
              "attribute": "password-visible"
            },
            {
              "kind": "field",
              "name": "noStepButtons",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Hides the increment/decrement step buttons for number inputs.",
              "attribute": "no-step-buttons"
            },
            {
              "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 input a required field.",
              "attribute": "required",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "pattern",
              "type": {
                "text": "string"
              },
              "description": "A regular expression pattern to validate input against.",
              "attribute": "pattern"
            },
            {
              "kind": "field",
              "name": "minlength",
              "type": {
                "text": "number"
              },
              "description": "The minimum length of input that will be considered valid.",
              "attribute": "minlength"
            },
            {
              "kind": "field",
              "name": "maxlength",
              "type": {
                "text": "number"
              },
              "description": "The maximum length of input that will be considered valid.",
              "attribute": "maxlength"
            },
            {
              "kind": "field",
              "name": "min",
              "type": {
                "text": "number | string"
              },
              "description": "The input's minimum value. Only applies to date and number input types.",
              "attribute": "min"
            },
            {
              "kind": "field",
              "name": "max",
              "type": {
                "text": "number | string"
              },
              "description": "The input's maximum value. Only applies to date and number input types.",
              "attribute": "max"
            },
            {
              "kind": "field",
              "name": "step",
              "type": {
                "text": "number | 'any'"
              },
              "description": "Specifies the granularity that the value must adhere to, or the special value `any` which means no stepping is\nimplied, allowing any numeric value. Only applies to date and number input types.",
              "attribute": "step"
            },
            {
              "kind": "field",
              "name": "autocapitalize",
              "type": {
                "text": "'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters'"
              },
              "description": "Controls whether and how text input is automatically capitalized as it is entered by the user.",
              "attribute": "autocapitalize"
            },
            {
              "kind": "field",
              "name": "autocorrect",
              "type": {
                "text": "'off' | 'on'"
              },
              "description": "Indicates whether the browser's autocorrect feature is on or off.",
              "attribute": "autocorrect"
            },
            {
              "kind": "field",
              "name": "autocomplete",
              "type": {
                "text": "string"
              },
              "description": "Specifies what permission the browser has to provide assistance in filling out form field values. Refer to\n[this page on MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) for available values.",
              "attribute": "autocomplete"
            },
            {
              "kind": "field",
              "name": "autofocus",
              "type": {
                "text": "boolean"
              },
              "description": "Indicates that the input should receive focus on page load.",
              "attribute": "autofocus"
            },
            {
              "kind": "field",
              "name": "enterkeyhint",
              "type": {
                "text": "'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send'"
              },
              "description": "Used to customize the label or icon of the Enter key on virtual keyboards.",
              "attribute": "enterkeyhint"
            },
            {
              "kind": "field",
              "name": "spellcheck",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "description": "Enables spell checking on the input.",
              "attribute": "spellcheck"
            },
            {
              "kind": "field",
              "name": "inputmode",
              "type": {
                "text": "'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url'"
              },
              "description": "Tells the browser what type of data will be entered by the user, allowing it to display the appropriate virtual\nkeyboard on supportive devices.",
              "attribute": "inputmode"
            },
            {
              "kind": "field",
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the input in the 'inline' form control style.",
              "attribute": "inline",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "divider",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates that the control should display a divider",
              "attribute": "divider",
              "reflects": 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."
            },
            {
              "kind": "field",
              "name": "valueAsNumber",
              "description": "Gets or sets the current value as a number. Returns `NaN` if the value can't be converted."
            },
            {
              "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": "handleChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleClearClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleFocus",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleInput",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "InputEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleInvalid",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handlePasswordToggle",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "focus",
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "FocusOptions"
                  }
                }
              ],
              "description": "Sets focus on the input."
            },
            {
              "kind": "method",
              "name": "blur",
              "description": "Removes focus from the input."
            },
            {
              "kind": "method",
              "name": "select",
              "description": "Selects all the text in the input."
            },
            {
              "kind": "method",
              "name": "setSelectionRange",
              "parameters": [
                {
                  "name": "selectionStart",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "selectionEnd",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "selectionDirection",
                  "default": "'none'",
                  "type": {
                    "text": "'forward' | 'backward' | 'none'"
                  }
                }
              ],
              "description": "Sets the start and end positions of the text selection (0-based)."
            },
            {
              "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",
                  "optional": true,
                  "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."
            },
            {
              "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": "fromDisplayValue",
              "privacy": "private",
              "parameters": [
                {
                  "name": "displayValue",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "toDisplayValue",
              "privacy": "private",
              "parameters": [
                {
                  "name": "value",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "toSizeValue",
              "privacy": "private",
              "parameters": [
                {
                  "name": "value",
                  "type": {
                    "text": "string"
                  }
                }
              ],
              "description": "Value to use for input sizer in inline mode"
            },
            {
              "kind": "method",
              "name": "clampValue",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "string"
                }
              },
              "parameters": [
                {
                  "name": "value",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            }
          ],
          "events": [
            {
              "description": "Emitted when the control loses focus.",
              "name": "flow-ui-blur",
              "reactName": "onFlowUiBlur"
            },
            {
              "description": "Emitted when an alteration to the control's value is committed by the user.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when the clear button is activated.",
              "name": "flow-ui-clear",
              "reactName": "onFlowUiClear"
            },
            {
              "description": "Emitted when the control gains focus.",
              "name": "flow-ui-focus",
              "reactName": "onFlowUiFocus"
            },
            {
              "description": "Emitted when the control receives input.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "flow-ui-invalid",
              "reactName": "onFlowUiInvalid"
            }
          ],
          "attributes": [
            {
              "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'",
              "description": "The type of input. Works the same as a native `<input>` element, but only a subset of types are supported. Defaults\nto `text`.",
              "fieldName": "type"
            },
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the input, submitted as a name/value pair with form data.",
              "fieldName": "name"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The current value of the input, submitted as a name/value pair with form data.",
              "fieldName": "value"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The input's size.",
              "fieldName": "size"
            },
            {
              "name": "filled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a filled input.",
              "fieldName": "filled"
            },
            {
              "name": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a pill-style input with rounded edges.",
              "fieldName": "pill"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The input's label. If you need to display HTML, use the `label` slot instead.",
              "fieldName": "label"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The input's help text. If you need to display HTML, use the `help-text` slot instead.",
              "fieldName": "helpText"
            },
            {
              "name": "clearable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Adds a clear button when the input is not empty.",
              "fieldName": "clearable"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the input.",
              "fieldName": "disabled"
            },
            {
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Placeholder text to show as a hint when the input is empty.",
              "fieldName": "placeholder"
            },
            {
              "name": "format",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Number format to use for input controls with `type=\"number\"`. (D3 format string)",
              "fieldName": "format"
            },
            {
              "name": "readonly",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the input readonly.",
              "fieldName": "readonly"
            },
            {
              "name": "password-toggle",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Adds a button to toggle the password's visibility. Only applies to password types.",
              "fieldName": "passwordToggle"
            },
            {
              "name": "password-visible",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Determines whether or not the password is currently visible. Only applies to password input types.",
              "fieldName": "passwordVisible"
            },
            {
              "name": "no-step-buttons",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Hides the increment/decrement step buttons for number inputs.",
              "fieldName": "noStepButtons"
            },
            {
              "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 input a required field.",
              "fieldName": "required"
            },
            {
              "name": "pattern",
              "type": {
                "text": "string"
              },
              "description": "A regular expression pattern to validate input against.",
              "fieldName": "pattern"
            },
            {
              "name": "minlength",
              "type": {
                "text": "number"
              },
              "description": "The minimum length of input that will be considered valid.",
              "fieldName": "minlength"
            },
            {
              "name": "maxlength",
              "type": {
                "text": "number"
              },
              "description": "The maximum length of input that will be considered valid.",
              "fieldName": "maxlength"
            },
            {
              "name": "min",
              "type": {
                "text": "number | string"
              },
              "description": "The input's minimum value. Only applies to date and number input types.",
              "fieldName": "min"
            },
            {
              "name": "max",
              "type": {
                "text": "number | string"
              },
              "description": "The input's maximum value. Only applies to date and number input types.",
              "fieldName": "max"
            },
            {
              "name": "step",
              "type": {
                "text": "number | 'any'"
              },
              "description": "Specifies the granularity that the value must adhere to, or the special value `any` which means no stepping is\nimplied, allowing any numeric value. Only applies to date and number input types.",
              "fieldName": "step"
            },
            {
              "name": "autocapitalize",
              "type": {
                "text": "'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters'"
              },
              "description": "Controls whether and how text input is automatically capitalized as it is entered by the user.",
              "fieldName": "autocapitalize"
            },
            {
              "name": "autocorrect",
              "type": {
                "text": "'off' | 'on'"
              },
              "description": "Indicates whether the browser's autocorrect feature is on or off.",
              "fieldName": "autocorrect"
            },
            {
              "name": "autocomplete",
              "type": {
                "text": "string"
              },
              "description": "Specifies what permission the browser has to provide assistance in filling out form field values. Refer to\n[this page on MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) for available values.",
              "fieldName": "autocomplete"
            },
            {
              "name": "autofocus",
              "type": {
                "text": "boolean"
              },
              "description": "Indicates that the input should receive focus on page load.",
              "fieldName": "autofocus"
            },
            {
              "name": "enterkeyhint",
              "type": {
                "text": "'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send'"
              },
              "description": "Used to customize the label or icon of the Enter key on virtual keyboards.",
              "fieldName": "enterkeyhint"
            },
            {
              "name": "spellcheck",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "description": "Enables spell checking on the input.",
              "fieldName": "spellcheck"
            },
            {
              "name": "inputmode",
              "type": {
                "text": "'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url'"
              },
              "description": "Tells the browser what type of data will be entered by the user, allowing it to display the appropriate virtual\nkeyboard on supportive devices.",
              "fieldName": "inputmode"
            },
            {
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the input in the 'inline' form control style.",
              "fieldName": "inline"
            },
            {
              "name": "divider",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates that the control should display a divider",
              "fieldName": "divider"
            }
          ],
          "superclass": {
            "name": "FlowRdfFormControl",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-input",
          "summary": "Inputs collect data from the user.",
          "documentation": "https://developer.emu-analytics.net/docs/flow-ui-rdf/components/input",
          "status": "stable",
          "since": "2.0",
          "dependencies": [
            "flow-ui-icon",
            "flow-ui-icon-button"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiInput",
            "module": "components/input/input.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/input/input.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./input.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiInput",
            "module": "components/input/input.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/list/list.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiList",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "draggedItem",
              "type": {
                "text": "FlowListItem | null"
              },
              "privacy": "private",
              "default": "null"
            },
            {
              "kind": "field",
              "name": "draggedOverItem",
              "type": {
                "text": "FlowListItem | null"
              },
              "privacy": "private",
              "default": "null"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The current selected list item. (selectable lists only)",
              "attribute": "value",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "selectable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to enable radio-button-style selection of list items.",
              "attribute": "selectable"
            },
            {
              "kind": "field",
              "name": "editable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to enable renaming of the list item text.",
              "attribute": "editable"
            },
            {
              "kind": "field",
              "name": "reorder",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to reordering of the list item.",
              "attribute": "reorder"
            },
            {
              "kind": "field",
              "name": "removable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to enable removing the list item.",
              "attribute": "removable"
            },
            {
              "kind": "field",
              "name": "listItems",
              "type": {
                "text": "FlowListItem[]"
              },
              "readonly": true
            },
            {
              "kind": "method",
              "name": "handleItemClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "syncItems",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "updateCheckedItem",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleDragStart",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "DragEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleDragOver",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "DragEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleDrop",
              "privacy": "private",
              "parameters": [
                {
                  "name": "_ev",
                  "type": {
                    "text": "DragEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleDragEnd",
              "privacy": "private",
              "parameters": [
                {
                  "name": "_ev",
                  "type": {
                    "text": "DragEvent"
                  }
                }
              ]
            }
          ],
          "events": [
            {
              "description": "Emitted when a list item is renamed **or**  a list item is selected (selectable lists only).",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when a list item is selected (selectable lists only).",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            },
            {
              "description": "Emitted when a list item is removed.",
              "name": "flow-ui-remove",
              "reactName": "onFlowUiRemove"
            },
            {
              "description": "Emitted when the user starts dragging to reorder list items.",
              "name": "flow-ui-drag-start",
              "reactName": "onFlowUiDragStart"
            },
            {
              "description": "Emitted when the user drops a list item to reorder it.",
              "name": "flow-ui-drag-drop",
              "reactName": "onFlowUiDragDrop"
            },
            {
              "description": "Emitted when the drag-drop operation has finished or been cancelled.",
              "name": "flow-ui-drag-end",
              "reactName": "onFlowUiDragEnd"
            }
          ],
          "attributes": [
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The current selected list item. (selectable lists only)",
              "fieldName": "value"
            },
            {
              "name": "selectable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to enable radio-button-style selection of list items.",
              "fieldName": "selectable"
            },
            {
              "name": "editable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to enable renaming of the list item text.",
              "fieldName": "editable"
            },
            {
              "name": "reorder",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to reordering of the list item.",
              "fieldName": "reorder"
            },
            {
              "name": "removable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to enable removing the list item.",
              "fieldName": "removable"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-list",
          "summary": "A list of items that can be edited and reordered.",
          "dependencies": [
            "flow-ui-list-item"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiList",
            "module": "components/list/list.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/list/list.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiList",
            "module": "components/list/list.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/list-item/list-item.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiListItem",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The list item's flow-ui-input control.",
              "name": "input"
            },
            {
              "description": "The container that wraps the prefix.",
              "name": "prefix"
            },
            {
              "description": "The container that wraps the suffix.",
              "name": "suffix"
            },
            {
              "description": "The list item's reorder icon.",
              "name": "reorder-icon"
            },
            {
              "description": "The list item's menu-button.",
              "name": "menu-button"
            }
          ],
          "slots": [
            {
              "description": "The list item's prefix content.",
              "name": "prefix"
            },
            {
              "description": "The list item's suffix content.",
              "name": "suffix"
            },
            {
              "description": "Specify custom menu items to add to the list item's menu.",
              "name": "menu"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'prefix', 'suffix', 'menu')"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "description": "The label text for the list item.",
              "attribute": "label",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "editMenuName",
              "type": {
                "text": "string"
              },
              "default": "'Edit'",
              "description": "The 'edit' menu item text. (default: 'Edit')",
              "attribute": "edit-menu-name"
            },
            {
              "kind": "field",
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "description": "The list item input control's placeholder text.",
              "attribute": "placeholder"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The tracking value (id) for the list item.",
              "attribute": "value",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "checked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "checked",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "editable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to enable renaming of the list item text.",
              "attribute": "editable",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "reorder",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to reordering of the list item.",
              "attribute": "reorder",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "removable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to enable removing the list item.",
              "attribute": "removable",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to enable removing the list item.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "rename",
              "deprecated": "Use `edit` instead"
            },
            {
              "kind": "method",
              "name": "edit"
            },
            {
              "kind": "method",
              "name": "addEventListeners",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "removeEventListeners",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleBlur",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleFocus",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleMenuSelect",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "FlowSelectEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleInputEvents",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "CustomEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleReorderPointerDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "_ev",
                  "type": {
                    "text": "PointerEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleReorderPointerUp",
              "privacy": "private",
              "parameters": [
                {
                  "name": "_ev",
                  "type": {
                    "text": "PointerEvent"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "handleDragStart",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleDragOver",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "DragEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleDragEnd",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "DragEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleDrop",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "DragEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "renderMenu"
            }
          ],
          "events": [
            {
              "description": "Emitted when the list item is renamed.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when the list item is removed. Calling `event.preventDefault()` will cancel the removal.",
              "name": "flow-ui-remove",
              "reactName": "onFlowUiRemove"
            },
            {
              "description": "Emitted when a menu item is selected.",
              "name": "flow-ui-select",
              "reactName": "onFlowUiSelect"
            },
            {
              "description": "Emitted when the control loses focus.",
              "name": "flow-ui-blur",
              "reactName": "onFlowUiBlur"
            },
            {
              "description": "Emitted when the control gains focus.",
              "name": "flow-ui-focus",
              "reactName": "onFlowUiFocus"
            }
          ],
          "attributes": [
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "description": "The label text for the list item.",
              "fieldName": "label"
            },
            {
              "name": "edit-menu-name",
              "type": {
                "text": "string"
              },
              "default": "'Edit'",
              "description": "The 'edit' menu item text. (default: 'Edit')",
              "fieldName": "editMenuName"
            },
            {
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "description": "The list item input control's placeholder text.",
              "fieldName": "placeholder"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The tracking value (id) for the list item.",
              "fieldName": "value"
            },
            {
              "name": "checked",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "checked"
            },
            {
              "name": "editable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to enable renaming of the list item text.",
              "fieldName": "editable"
            },
            {
              "name": "reorder",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to reordering of the list item.",
              "fieldName": "reorder"
            },
            {
              "name": "removable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to enable removing the list item.",
              "fieldName": "removable"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to enable removing the list item.",
              "fieldName": "disabled"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-list-item",
          "summary": "A list item. Use with `<flow-ui-list>` to create selectable, editable, and reorderable lists.",
          "dependencies": [
            "flow-ui-input",
            "flow-ui-icon",
            "flow-ui-menu",
            "flow-ui-menu-item"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiListItem",
            "module": "components/list-item/list-item.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/list-item/list-item.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiListItem",
            "module": "components/list-item/list-item.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/map/map.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "This component wraps a `FlowCoreMap` instance from the flow-rdf-core library and\nprovides access to its API.\n\nThe `map` property provides direct access to the underlying `FlowCoreMap` instance.\n\nThe `initialized` property provides a promise that resolves to the `FlowCoreMap` once\nit has been initialized and is the safest way to access the map API.\n\nConvenience properties are provided for setting the base style, center, zoom, bearing, and pitch\nof the map. These properties can be set to update the map or the `FlowCoreMap` API can be used directly.",
          "name": "FlowUiMap",
          "cssParts": [
            {
              "description": "The base element of the component.",
              "name": "base"
            },
            {
              "description": "The busy indicator flow-ui-progress-bar.",
              "name": "busy-indicator"
            },
            {
              "description": "The map control containers.",
              "name": "control-container"
            },
            {
              "description": "The top left control container element.",
              "name": "control-container--top-left"
            },
            {
              "description": "The top right control container element.",
              "name": "control-container--top-right"
            },
            {
              "description": "The bottom left control container element.",
              "name": "control-container--bottom-left"
            },
            {
              "description": "The bottom right control container element.",
              "name": "control-container--bottom-right"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "_map",
              "type": {
                "text": "FlowCoreMap | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_initialized",
              "type": {
                "text": "Promise<FlowCoreMap>"
              },
              "privacy": "private",
              "default": "new Promise<FlowCoreMap>((resolve) => {\n      this._resolveInitialized = resolve;\n    })"
            },
            {
              "kind": "field",
              "name": "_resolveInitialized",
              "type": {
                "text": "(map: FlowCoreMap) => void"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_pendingCenter",
              "type": {
                "text": "MapCenterOptions | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_pendingBaseStyle",
              "type": {
                "text": "string | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_mapLoading",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "mapId",
              "type": {
                "text": "string"
              },
              "description": "The map ID. If not provided, a unique ID will be generated.",
              "attribute": "map-id"
            },
            {
              "kind": "field",
              "name": "baseStyle",
              "type": {
                "text": "string"
              },
              "default": "'fjord'",
              "description": "The base style of the map.",
              "attribute": "base-style"
            },
            {
              "kind": "field",
              "name": "center",
              "type": {
                "text": "[number, number]"
              },
              "default": "[-0.1, 51.5]",
              "description": "The center of the map specified as a longitude and latitude pair.\n\nAlternatively, use the `setCenter` method to update the center of the map\nwith animation options.",
              "attribute": "center"
            },
            {
              "kind": "field",
              "name": "zoom",
              "type": {
                "text": "number"
              },
              "default": "9",
              "description": "The zoom level of the map.\n\nAlternatively, use the `setCenter` method to update the center of the map\nwith animation options.",
              "attribute": "zoom"
            },
            {
              "kind": "field",
              "name": "bearing",
              "type": {
                "text": "number"
              },
              "description": "The bearing of the map.\n\nAlternatively, use the `setCenter` method to update the center of the map\nwith animation options.",
              "attribute": "bearing"
            },
            {
              "kind": "field",
              "name": "pitch",
              "type": {
                "text": "number"
              },
              "description": "The pitch of the map.\n\nAlternatively, use the `setCenter` method to update the center of the map\nwith animation options.",
              "attribute": "pitch"
            },
            {
              "kind": "field",
              "name": "busy",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to show a busy indicator on the map.\n\nNote that the busy indicator will also be automatically be shown when the map\nis loading data.",
              "attribute": "busy"
            },
            {
              "kind": "field",
              "name": "fixed",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to apply `fixed` positioning to the map canvas.\n\nThe map canvas will break out of its `flow-map` container to fill the entire viewport.\nThis allows side bars to be opened and closed smoothly without having to re-render the map.\n\nNote that the `flow-map` container will still be positioned as normal, providing a visible\nwindow onto the full map.\n\nUse the `visibleBounds` property to retrieve the visible bounds of the map in map coordinates.",
              "attribute": "fixed"
            },
            {
              "kind": "field",
              "name": "bearingSnap",
              "type": {
                "text": "number"
              },
              "default": "7",
              "description": "Set the bearing snap threshold in degrees. Set to 0 to disable bearing snapping.",
              "attribute": "bearing-snap"
            },
            {
              "kind": "field",
              "name": "fadeDuration",
              "type": {
                "text": "number"
              },
              "default": "300",
              "description": "Set fade duration in milliseconds for the label collision fade-in/fade-out animation.",
              "attribute": "fade-duration"
            },
            {
              "kind": "field",
              "name": "map",
              "type": {
                "text": "FlowCoreMap | undefined"
              },
              "description": "The underlying core FlowCoreMap instance. Note that this is\n`undefined` until the map has been initialized.",
              "readonly": true
            },
            {
              "kind": "field",
              "name": "initialized",
              "type": {
                "text": "Promise<FlowCoreMap>"
              },
              "privacy": "public",
              "description": "A promise that resolves to a map instance when the map has been initialized.\n\nThis is the safest way to retrieve the underlying core FlowCoreMap instance before\nusing its API.",
              "readonly": true
            },
            {
              "kind": "method",
              "name": "initializeMap",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "type": {
                "text": "CustomEvent<{ map: FlowCoreMap }>"
              },
              "description": "Dispatched when the map is first initialized and has completed loading. The Flo.w Core map instance can be retrieved from the event `detail` property.",
              "name": "flow-ui-map-load",
              "reactName": "onFlowUiMapLoad"
            }
          ],
          "attributes": [
            {
              "name": "map-id",
              "type": {
                "text": "string"
              },
              "description": "The map ID. If not provided, a unique ID will be generated.",
              "fieldName": "mapId"
            },
            {
              "name": "base-style",
              "type": {
                "text": "string"
              },
              "default": "'fjord'",
              "description": "The base style of the map.",
              "fieldName": "baseStyle"
            },
            {
              "name": "center",
              "type": {
                "text": "[number, number]"
              },
              "default": "[-0.1, 51.5]",
              "description": "The center of the map specified as a longitude and latitude pair.\n\nAlternatively, use the `setCenter` method to update the center of the map\nwith animation options.",
              "fieldName": "center"
            },
            {
              "name": "zoom",
              "type": {
                "text": "number"
              },
              "default": "9",
              "description": "The zoom level of the map.\n\nAlternatively, use the `setCenter` method to update the center of the map\nwith animation options.",
              "fieldName": "zoom"
            },
            {
              "name": "bearing",
              "type": {
                "text": "number"
              },
              "description": "The bearing of the map.\n\nAlternatively, use the `setCenter` method to update the center of the map\nwith animation options.",
              "fieldName": "bearing"
            },
            {
              "name": "pitch",
              "type": {
                "text": "number"
              },
              "description": "The pitch of the map.\n\nAlternatively, use the `setCenter` method to update the center of the map\nwith animation options.",
              "fieldName": "pitch"
            },
            {
              "name": "busy",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to show a busy indicator on the map.\n\nNote that the busy indicator will also be automatically be shown when the map\nis loading data.",
              "fieldName": "busy"
            },
            {
              "name": "fixed",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to apply `fixed` positioning to the map canvas.\n\nThe map canvas will break out of its `flow-map` container to fill the entire viewport.\nThis allows side bars to be opened and closed smoothly without having to re-render the map.\n\nNote that the `flow-map` container will still be positioned as normal, providing a visible\nwindow onto the full map.\n\nUse the `visibleBounds` property to retrieve the visible bounds of the map in map coordinates.",
              "fieldName": "fixed"
            },
            {
              "name": "bearing-snap",
              "type": {
                "text": "number"
              },
              "default": "7",
              "description": "Set the bearing snap threshold in degrees. Set to 0 to disable bearing snapping.",
              "fieldName": "bearingSnap"
            },
            {
              "name": "fade-duration",
              "type": {
                "text": "number"
              },
              "default": "300",
              "description": "Set fade duration in milliseconds for the label collision fade-in/fade-out animation.",
              "fieldName": "fadeDuration"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-map",
          "summary": "Display a Flo.w map.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiMap",
            "module": "components/map/map.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/map/map.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./map.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiMap",
            "module": "components/map/map.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/menu/menu.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiMenu",
          "slots": [
            {
              "description": "The menu's content, including menu items, menu labels, and dividers.",
              "name": ""
            }
          ],
          "members": [
            {
              "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": [
            {
              "type": {
                "text": "CustomEvent<{item: FlowMenuItem}>"
              },
              "description": "Emitted when a menu item is selected.",
              "name": "flow-ui-select",
              "reactName": "onFlowUiSelect"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-menu",
          "summary": "Menus provide a list of options for the user to choose from.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiMenu",
            "module": "components/menu/menu.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/menu/menu.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./menu.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiMenu",
            "module": "components/menu/menu.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/menu-item/menu-item.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiMenuItem",
          "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 submenu icon, visible only when the menu item has a submenu (not yet implemented).",
              "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"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "cachedTextLabel",
              "type": {
                "text": "string"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "type",
              "type": {
                "text": "'normal' | 'checkbox' | 'radio'"
              },
              "default": "'normal'",
              "description": "The type of menu item to render. To use `checked`, this value must be set to `checkbox` or `radio`.",
              "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": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the menu item in a disabled state, preventing selection.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "handleDefaultSlotChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleHostClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            }
          ],
          "attributes": [
            {
              "name": "type",
              "type": {
                "text": "'normal' | 'checkbox' | 'radio'"
              },
              "default": "'normal'",
              "description": "The type of menu item to render. To use `checked`, this value must be set to `checkbox` or `radio`.",
              "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": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the menu item in a disabled state, preventing selection.",
              "fieldName": "disabled"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-menu-item",
          "summary": "Menu items provide options for the user to pick from in a menu.",
          "dependencies": [
            "flow-ui-icon"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiMenuItem",
            "module": "components/menu-item/menu-item.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/menu-item/menu-item.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./menu-item.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiMenuItem",
            "module": "components/menu-item/menu-item.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/menu-label/menu-label.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiMenuLabel",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "slots": [
            {
              "description": "The menu label's content.",
              "name": ""
            }
          ],
          "members": [],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-menu-label",
          "summary": "Menu labels are used to describe a group of menu items.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiMenuLabel",
            "module": "components/menu-label/menu-label.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/menu-label/menu-label.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./menu-label.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiMenuLabel",
            "module": "components/menu-label/menu-label.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/mutation-observer/mutation-observer.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiMutationObserver",
          "slots": [
            {
              "description": "The content to watch for mutations.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "mutationObserver",
              "type": {
                "text": "MutationObserver"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "attr",
              "type": {
                "text": "string"
              },
              "description": "Watches for changes to attributes. To watch only specific attributes, separate them by a space, e.g.\n`attr=\"class id title\"`. To watch all attributes, use `*`.",
              "attribute": "attr",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "attrOldValue",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the attribute's previous value should be recorded when monitoring changes.",
              "attribute": "attr-old-value",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "charData",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Watches for changes to the character data contained within the node.",
              "attribute": "char-data",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "charDataOldValue",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the previous value of the node's text should be recorded.",
              "attribute": "char-data-old-value",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "childList",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Watches for the addition or removal of new child nodes.",
              "attribute": "child-list",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the observer.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "handleMutation",
              "privacy": "private",
              "parameters": [
                {
                  "name": "mutationList",
                  "type": {
                    "text": "MutationRecord[]"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "startObserver",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "stopObserver",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "type": {
                "text": "{ mutationList: MutationRecord[] }"
              },
              "description": "Emitted when a mutation occurs.",
              "name": "flow-ui-mutation",
              "reactName": "onFlowUiMutation"
            }
          ],
          "attributes": [
            {
              "name": "attr",
              "type": {
                "text": "string"
              },
              "description": "Watches for changes to attributes. To watch only specific attributes, separate them by a space, e.g.\n`attr=\"class id title\"`. To watch all attributes, use `*`.",
              "fieldName": "attr"
            },
            {
              "name": "attr-old-value",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the attribute's previous value should be recorded when monitoring changes.",
              "fieldName": "attrOldValue"
            },
            {
              "name": "char-data",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Watches for changes to the character data contained within the node.",
              "fieldName": "charData"
            },
            {
              "name": "char-data-old-value",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the previous value of the node's text should be recorded.",
              "fieldName": "charDataOldValue"
            },
            {
              "name": "child-list",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Watches for the addition or removal of new child nodes.",
              "fieldName": "childList"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the observer.",
              "fieldName": "disabled"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-mutation-observer",
          "summary": "The Mutation Observer component offers a thin, declarative interface to the [`MutationObserver API`](https://developer.mozilla.org/en-US/docs/Web/API/MutationObserver).",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiMutationObserver",
            "module": "components/mutation-observer/mutation-observer.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/mutation-observer/mutation-observer.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./mutation-observer.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiMutationObserver",
            "module": "components/mutation-observer/mutation-observer.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/option/option.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiOption",
          "cssParts": [
            {
              "description": "The checked icon, a `<flow-ui-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": "{ 'flow-ui-icon': FlowIcon }"
            },
            {
              "kind": "field",
              "name": "cachedTextLabel",
              "type": {
                "text": "string"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "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": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The options's size.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "handleDefaultSlotChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleMouseEnter",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleMouseLeave",
              "privacy": "private"
            }
          ],
          "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"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The options's size.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-option",
          "summary": "Options define the selectable items within various form controls such as [select](/components/select).",
          "dependencies": [
            "flow-ui-icon"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiOption",
            "module": "components/option/option.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/option/option.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiOption",
            "module": "components/option/option.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/panel/panel.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiPanel",
          "cssProperties": [
            {
              "description": "Padding to add to the panel when the `padding` attribute is set. Defaults to `--flow-ui-spacing-small`.",
              "name": "--padding"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "formElements",
              "type": {
                "text": "Array<HTMLElement>"
              }
            },
            {
              "kind": "field",
              "name": "closed",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether the panel is open or closed.",
              "attribute": "closed",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "scrollable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether the panel is scrollable. By default overflow is hidden.",
              "attribute": "scrollable",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "padding",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether the panel body has padding.",
              "attribute": "padding",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "expand",
              "parameters": [
                {
                  "name": "emitEvent",
                  "default": "true",
                  "type": {
                    "text": "boolean"
                  }
                }
              ],
              "description": "Open the panel"
            },
            {
              "kind": "method",
              "name": "collapse",
              "parameters": [
                {
                  "name": "emitEvent",
                  "default": "true",
                  "type": {
                    "text": "boolean"
                  }
                }
              ],
              "description": "Close the panel"
            },
            {
              "kind": "method",
              "name": "handleSlotChange",
              "privacy": "private"
            }
          ],
          "attributes": [
            {
              "name": "closed",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether the panel is open or closed.",
              "fieldName": "closed"
            },
            {
              "name": "scrollable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether the panel is scrollable. By default overflow is hidden.",
              "fieldName": "scrollable"
            },
            {
              "name": "padding",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether the panel body has padding.",
              "fieldName": "padding"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-panel",
          "summary": "Panels are use with split-views to create resizable areas.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiPanel",
            "module": "components/panel/panel.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/panel/panel.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiPanel",
            "module": "components/panel/panel.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/panel-header/panel-header.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiPanelHeader",
          "cssProperties": [
            {
              "description": "The padding around the header. Defaults to `--flow-ui-panel-header-padding`.",
              "name": "padding"
            },
            {
              "description": "The height of the header. Defaults to `--flow-ui-panel-header-height`.",
              "name": "header-height"
            },
            {
              "description": "The background color of the header. Defaults to `--flow-ui-panel-header-background-color`.",
              "name": "background-color"
            },
            {
              "description": "The text color of the header. Defaults to `--flow-ui-panel-header-color`.",
              "name": "color"
            },
            {
              "description": "The color of the accessory controls. Defaults to `--flow-ui-panel-header-accessory-color`.",
              "name": "accessory-color"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The container that wraps the title.",
              "name": "title"
            },
            {
              "description": "The container that wraps the prefix.",
              "name": "prefix"
            },
            {
              "description": "The container that wraps the suffix.",
              "name": "suffix"
            },
            {
              "description": "The container that wraps the expand/collapse icon.",
              "name": "toggle-icon"
            }
          ],
          "slots": [
            {
              "description": "The panel header's title content. Alternatively, use the `title` attribute for plain text.",
              "name": "title"
            },
            {
              "description": "The panel header's prefix content.",
              "name": "prefix"
            },
            {
              "description": "The panel header's suffix content.",
              "name": "suffix"
            },
            {
              "description": "Specify an alternative `<flow-ui-icon>` to use for the expand icon.",
              "name": "expand-icon"
            },
            {
              "description": "Specify an alternative `<flow-ui-icon>` to use for the collapse icon.",
              "name": "collapse-icon"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'prefix', 'suffix')"
            },
            {
              "kind": "field",
              "name": "header",
              "type": {
                "text": "HTMLElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "toggleButton",
              "type": {
                "text": "FlowSplitViewToggleButton"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "closed",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the header is open or closed. Toggle this attribute to expand or collapse the header.\nAlternatively, call the `expand()` and `collapse()` methods.",
              "attribute": "closed",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "title",
              "type": {
                "text": "string"
              },
              "description": "The header title. Use the `title` slot instead to display HTML.",
              "attribute": "title",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "fixed",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to hide the panel expand/collapse button.",
              "attribute": "fixed",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "handleHeaderClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleAccessoryClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleToggleClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleHeaderKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleExpandCollapse",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "description": "Emitted when the header is collapsed by UI interaction.",
              "name": "flow-ui-collapse",
              "reactName": "onFlowUiCollapse"
            },
            {
              "description": "Emitted when the header is expanded by UI interaction.",
              "name": "flow-ui-expand",
              "reactName": "onFlowUiExpand"
            }
          ],
          "attributes": [
            {
              "name": "closed",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the header is open or closed. Toggle this attribute to expand or collapse the header.\nAlternatively, call the `expand()` and `collapse()` methods.",
              "fieldName": "closed"
            },
            {
              "name": "title",
              "type": {
                "text": "string"
              },
              "description": "The header title. Use the `title` slot instead to display HTML.",
              "fieldName": "title"
            },
            {
              "name": "fixed",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to hide the panel expand/collapse button.",
              "fieldName": "fixed"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-panel-header",
          "summary": "A panel header provides a label, optional accessory controls and expand/collapse behavior for panels.",
          "dependencies": [
            "flow-ui-split-view-toggle-button"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiPanelHeader",
            "module": "components/panel-header/panel-header.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/panel-header/panel-header.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiPanelHeader",
            "module": "components/panel-header/panel-header.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/popup/popup.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiPopup",
          "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"
            },
            {
              "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": "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' | 'end' | 'center' | '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' | '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": "flow-ui-reposition",
              "reactName": "onFlowUiReposition"
            }
          ],
          "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' | 'end' | 'center' | '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' | '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": "FlowRDfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-popup",
          "summary": "Popup is a utility that lets you declaratively anchor \"popup\" containers to another element.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiPopup",
            "module": "components/popup/popup.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/popup/popup.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./popup.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiPopup",
            "module": "components/popup/popup.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/progress-bar/progress-bar.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiProgressBar",
          "cssProperties": [
            {
              "description": "The progress bar's thickness (same as the indicator's thickness).",
              "name": "--track-height"
            },
            {
              "description": "The color of the track.",
              "name": "--track-color"
            },
            {
              "description": "The color of the indicator.",
              "name": "--indicator-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": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "A custom label for assistive devices.",
              "attribute": "label"
            },
            {
              "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": "variant",
              "type": {
                "text": "'primary' | 'secondary' | 'success' | 'neutral' | 'warning' | 'danger'"
              },
              "default": "'primary'",
              "description": "The progress bar's theme variant",
              "attribute": "variant",
              "reflects": true
            }
          ],
          "attributes": [
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "A custom label for assistive devices.",
              "fieldName": "label"
            },
            {
              "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": "variant",
              "type": {
                "text": "'primary' | 'secondary' | 'success' | 'neutral' | 'warning' | 'danger'"
              },
              "default": "'primary'",
              "description": "The progress bar's theme variant",
              "fieldName": "variant"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-progress-bar",
          "summary": "Progress bars are used to show the status of an ongoing operation.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiProgressBar",
            "module": "components/progress-bar/progress-bar.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/progress-bar/progress-bar.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiProgressBar",
            "module": "components/progress-bar/progress-bar.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/progress-ring/progress-ring.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiProgressRing",
          "cssProperties": [
            {
              "description": "The diameter of the progress ring (cannot be a percentage).",
              "name": "--size"
            },
            {
              "description": "The width of the track.",
              "name": "--track-width"
            },
            {
              "description": "The color of the track.",
              "name": "--track-color"
            },
            {
              "description": "The width of the indicator. Defaults to the track width.",
              "name": "--indicator-width"
            },
            {
              "description": "The color of the indicator.",
              "name": "--indicator-color"
            },
            {
              "description": "The duration of the indicator's transition when the value changes.",
              "name": "--indicator-transition-duration"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The progress ring label.",
              "name": "label"
            }
          ],
          "slots": [
            {
              "description": "A label to show inside the ring.",
              "name": "label"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "A custom label for assistive devices.",
              "attribute": "label"
            },
            {
              "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": "If the progress animation is indeterminate",
              "attribute": "indeterminate",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "'primary' | 'secondary' | 'success' | 'neutral' | 'warning' | 'danger'"
              },
              "default": "'primary'",
              "description": "The progress ring's theme variant",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The progress ring's size",
              "attribute": "size",
              "reflects": true
            }
          ],
          "attributes": [
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "A custom label for assistive devices.",
              "fieldName": "label"
            },
            {
              "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": "If the progress animation is indeterminate",
              "fieldName": "indeterminate"
            },
            {
              "name": "variant",
              "type": {
                "text": "'primary' | 'secondary' | 'success' | 'neutral' | 'warning' | 'danger'"
              },
              "default": "'primary'",
              "description": "The progress ring's theme variant",
              "fieldName": "variant"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The progress ring's size",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-progress-ring",
          "summary": "Progress rings are used to show the progress of a determinate operation in a circular fashion.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiProgressRing",
            "module": "components/progress-ring/progress-ring.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/progress-ring/progress-ring.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiProgressRing",
            "module": "components/progress-ring/progress-ring.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/query-builder/default-value-templates.js",
      "declarations": [
        {
          "kind": "function",
          "name": "defaultStringTemplate",
          "parameters": [
            {
              "name": "rule",
              "type": {
                "text": "FlowQueryBuilderRule<string>"
              }
            },
            {
              "name": "field",
              "type": {
                "text": "FlowQueryBuilderStringField"
              }
            },
            {
              "name": "qb",
              "type": {
                "text": "FlowQueryBuilder"
              }
            },
            {
              "name": "update",
              "type": {
                "text": "() => void"
              }
            }
          ]
        },
        {
          "kind": "function",
          "name": "defaultNumberTemplate",
          "parameters": [
            {
              "name": "rule",
              "type": {
                "text": "FlowQueryBuilderRule<number>"
              }
            },
            {
              "name": "field",
              "type": {
                "text": "FlowQueryBuilderNumberField"
              }
            },
            {
              "name": "qb",
              "type": {
                "text": "FlowQueryBuilder"
              }
            },
            {
              "name": "update",
              "type": {
                "text": "() => void"
              }
            }
          ]
        },
        {
          "kind": "function",
          "name": "defaultDateTimeTemplate",
          "parameters": [
            {
              "name": "rule",
              "type": {
                "text": "FlowQueryBuilderRule<string>"
              }
            },
            {
              "name": "field",
              "type": {
                "text": "FlowQueryBuilderDateTimeField"
              }
            },
            {
              "name": "qb",
              "type": {
                "text": "FlowQueryBuilder"
              }
            },
            {
              "name": "update",
              "type": {
                "text": "() => void"
              }
            }
          ]
        },
        {
          "kind": "function",
          "name": "defaultDateTemplate",
          "parameters": [
            {
              "name": "rule",
              "type": {
                "text": "FlowQueryBuilderRule<string>"
              }
            },
            {
              "name": "field",
              "type": {
                "text": "FlowQueryBuilderDateField"
              }
            },
            {
              "name": "qb",
              "type": {
                "text": "FlowQueryBuilder"
              }
            },
            {
              "name": "update",
              "type": {
                "text": "() => void"
              }
            }
          ]
        },
        {
          "kind": "function",
          "name": "defaultTimeTemplate",
          "parameters": [
            {
              "name": "rule",
              "type": {
                "text": "FlowQueryBuilderRule<string>"
              }
            },
            {
              "name": "field",
              "type": {
                "text": "FlowQueryBuilderTimeField"
              }
            },
            {
              "name": "qb",
              "type": {
                "text": "FlowQueryBuilder"
              }
            },
            {
              "name": "update",
              "type": {
                "text": "() => void"
              }
            }
          ]
        },
        {
          "kind": "function",
          "name": "defaultSelectTemplate",
          "parameters": [
            {
              "name": "rule",
              "type": {
                "text": "FlowQueryBuilderRule<string | string[]>"
              }
            },
            {
              "name": "field",
              "type": {
                "text": "FlowQueryBuilderSelectField"
              }
            },
            {
              "name": "qb",
              "type": {
                "text": "FlowQueryBuilder"
              }
            },
            {
              "name": "update",
              "type": {
                "text": "() => void"
              }
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "defaultStringTemplate",
          "declaration": {
            "name": "defaultStringTemplate",
            "module": "components/query-builder/default-value-templates.js"
          }
        },
        {
          "kind": "js",
          "name": "defaultNumberTemplate",
          "declaration": {
            "name": "defaultNumberTemplate",
            "module": "components/query-builder/default-value-templates.js"
          }
        },
        {
          "kind": "js",
          "name": "defaultDateTimeTemplate",
          "declaration": {
            "name": "defaultDateTimeTemplate",
            "module": "components/query-builder/default-value-templates.js"
          }
        },
        {
          "kind": "js",
          "name": "defaultDateTemplate",
          "declaration": {
            "name": "defaultDateTemplate",
            "module": "components/query-builder/default-value-templates.js"
          }
        },
        {
          "kind": "js",
          "name": "defaultTimeTemplate",
          "declaration": {
            "name": "defaultTimeTemplate",
            "module": "components/query-builder/default-value-templates.js"
          }
        },
        {
          "kind": "js",
          "name": "defaultSelectTemplate",
          "declaration": {
            "name": "defaultSelectTemplate",
            "module": "components/query-builder/default-value-templates.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/query-builder/helpers.js",
      "declarations": [
        {
          "kind": "function",
          "name": "filterRuleSet",
          "return": {
            "type": {
              "text": "FlowQueryBuilderRuleSet"
            }
          },
          "parameters": [
            {
              "name": "ruleset",
              "type": {
                "text": "FlowQueryBuilderRuleSet"
              },
              "description": "Rule set to filter"
            },
            {
              "name": "options",
              "type": {
                "text": "{ excludeFields?: string[]; includeFields?: string[] }"
              },
              "description": "Filter rules"
            },
            {
              "description": "Fields to exclude from the {@link FlowQueryBuilderRuleSet}",
              "name": "options.excludeFields"
            },
            {
              "description": "Fields to include in the {@link FlowQueryBuilderRuleSet}",
              "name": "options.includeFields"
            }
          ],
          "description": "Recursively applies filters to the supplied FlowQueryBuilderRuleSet\nreturning a new rule set.\n\nThis is used to sanitize user queries before they are executed by removing\nexcluded fields or including only the specified fields.\n\nNote that `includeFields` takes precedence over `excludeFields`.\n\n```ts\nconst ruleSet = {\n  condition: 'and',\n  rules: [ { field: 'a', ... }, { field: 'b', ... }, { field: 'c', ... } ]\n};\n\nconst filteredRuleSet = filterRuleSet(ruleSet, { excludeFields: ['b', 'c'] });\n```"
        },
        {
          "kind": "function",
          "name": "renameRuleSetFields",
          "return": {
            "type": {
              "text": ""
            }
          },
          "parameters": [
            {
              "name": "ruleset",
              "type": {
                "text": "FlowQueryBuilderRuleSet"
              },
              "description": "Rule set to rename."
            },
            {
              "name": "replacements",
              "type": {
                "text": "Record<string, string>"
              },
              "description": "Set of field name replacements."
            }
          ],
          "description": "Recursively renames fields in the supplied FlowQueryBuilderRuleSet\nreturning a new rule set.\n\nThis can be used to sanitize user queries before they are executed.\n\n```ts\nconst ruleSet = {\n  condition: 'and',\n  rules: [ { field: 'a', ... }, { field: 'b', ... }, ... } ]\n};\n\nconst renamedRuleSet = renameRuleSetFields(ruleSet, { a: 'renamedA' });\n\n// renamedRuleSet = {\n//   condition: 'and',\n//   rules: [ { field: 'renamedA', ... }, { field: 'b', ... }, ... } ]\n// };\n\n```"
        },
        {
          "kind": "function",
          "name": "transformRuleSet",
          "return": {
            "type": {
              "text": ""
            }
          },
          "parameters": [
            {
              "name": "ruleSet",
              "type": {
                "text": "FlowQueryBuilderRuleSet"
              },
              "description": "Query builder rule set to transform."
            },
            {
              "name": "transformFn",
              "type": {
                "text": "(rule: FlowQueryBuilderRule) => FlowQueryBuilderRule | undefined"
              },
              "description": "Transform function"
            },
            {
              "name": "clone",
              "default": "true"
            }
          ],
          "description": "Recursively applies a tranform function to the supplied FlowQueryBuilderRuleSet returning a new rule set.\n\nThe transform function should expect a single `FlowQueryBuilderRule` and return:\n\n- the same rule unmodified or modified in place\n- `undefined` to exclude the rule from the rule set\n\nThis can be used to modify and sanitize rule sets before they are used to perform queries."
        },
        {
          "kind": "function",
          "name": "countRuleSet",
          "return": {
            "type": {
              "text": ""
            }
          },
          "parameters": [
            {
              "name": "ruleset",
              "type": {
                "text": "FlowQueryBuilderRuleSet"
              }
            },
            {
              "description": "Query builder rule set to count.",
              "name": "ruleSet"
            }
          ],
          "description": "Recursively count the number of active rules in the supplied FlowQueryBuilderRuleSet.\n\nAn 'active' rules is defined as having a valid field and being enabled."
        },
        {
          "kind": "function",
          "name": "isRule",
          "return": {
            "type": {
              "text": "r is FlowQueryBuilderRule"
            }
          },
          "parameters": [
            {
              "name": "r",
              "type": {
                "text": "unknown"
              }
            }
          ],
          "description": "Helper function to determine if the supplied argument is a FlowQueryBuilderRule"
        },
        {
          "kind": "function",
          "name": "isRuleSet",
          "return": {
            "type": {
              "text": "r is FlowQueryBuilderRuleSet"
            }
          },
          "parameters": [
            {
              "name": "r",
              "type": {
                "text": "unknown"
              }
            }
          ],
          "description": "Helper function to determine if the supplied argument is a FlowQueryBuilderRuleSet"
        },
        {
          "kind": "function",
          "name": "isRuleOrRuleset",
          "return": {
            "type": {
              "text": "r is FlowQueryBuilderRule | FlowQueryBuilderRuleSet"
            }
          },
          "parameters": [
            {
              "name": "r",
              "type": {
                "text": "unknown"
              }
            }
          ],
          "description": "Helper function to determine if the supplied argument is a FlowQueryBuilderRule or FlowQueryBuilderRuleSet"
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "filterRuleSet",
          "declaration": {
            "name": "filterRuleSet",
            "module": "components/query-builder/helpers.js"
          }
        },
        {
          "kind": "js",
          "name": "renameRuleSetFields",
          "declaration": {
            "name": "renameRuleSetFields",
            "module": "components/query-builder/helpers.js"
          }
        },
        {
          "kind": "js",
          "name": "transformRuleSet",
          "declaration": {
            "name": "transformRuleSet",
            "module": "components/query-builder/helpers.js"
          }
        },
        {
          "kind": "js",
          "name": "countRuleSet",
          "declaration": {
            "name": "countRuleSet",
            "module": "components/query-builder/helpers.js"
          }
        },
        {
          "kind": "js",
          "name": "isRule",
          "declaration": {
            "name": "isRule",
            "module": "components/query-builder/helpers.js"
          }
        },
        {
          "kind": "js",
          "name": "isRuleSet",
          "declaration": {
            "name": "isRuleSet",
            "module": "components/query-builder/helpers.js"
          }
        },
        {
          "kind": "js",
          "name": "isRuleOrRuleset",
          "declaration": {
            "name": "isRuleOrRuleset",
            "module": "components/query-builder/helpers.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/query-builder/query-builder.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiQueryBuilder",
          "slots": [
            {
              "description": "The component's label. Alternatively, you can use the `label` attribute.",
              "name": "label"
            },
            {
              "description": "Text that describes how to use the component. Alternatively, you can use the `help-text` attribute.",
              "name": "help-text"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "fieldDefinitions",
              "privacy": "private",
              "static": true,
              "default": "new Map<FlowQueryBuilderFieldType, FlowQueryBuilderFieldDefinition<any>>()"
            },
            {
              "kind": "field",
              "name": "_value",
              "type": {
                "text": "FlowQueryBuilderRuleSet"
              },
              "privacy": "private",
              "default": "{ condition: 'and', rules: [{ field: '', operator: '=', enabled: true }] }"
            },
            {
              "kind": "field",
              "name": "enterKeyElement",
              "type": {
                "text": "HTMLElement | null"
              },
              "privacy": "private",
              "default": "null"
            },
            {
              "kind": "method",
              "name": "registerFieldDefinition",
              "static": true,
              "parameters": [
                {
                  "name": "type",
                  "type": {
                    "text": "T"
                  }
                },
                {
                  "name": "fieldDefinition",
                  "type": {
                    "text": "FlowQueryBuilderFieldDefinition<NoUnion<T>>"
                  }
                }
              ],
              "description": "Register a custom field definition.\n\nA field definition is used to add support for a custom field type. A field type comprises:\n\n- a field `type` string\n- a `template` function that returns the template for the field's value control\n- an array of `operators` that are valid for the field"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(\n    this,\n    'help-text',\n    'label',\n    'header-accessory',\n    'footer-accessory',\n    'menu'\n  )"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "FlowQueryBuilderRuleSet"
              },
              "default": "{ condition: 'and', rules: [] }",
              "description": "The query builder's value object."
            },
            {
              "kind": "field",
              "name": "config",
              "type": {
                "text": "FlowQueryBuilderConfig"
              },
              "default": "{ fields: {} }",
              "description": "The query builder's configuration object."
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The query builder's size.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the select control.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The query builders's label. If you need to display HTML, use the `label` slot instead.",
              "attribute": "label",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The query builders's help text. If you need to display HTML, use the `help-text` slot instead.",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "treeLines",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display tree connector lines between query rules",
              "attribute": "tree-lines"
            },
            {
              "kind": "field",
              "name": "borders",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display control borders",
              "attribute": "borders"
            },
            {
              "kind": "method",
              "name": "valueTemplateForRule",
              "privacy": "private",
              "parameters": [
                {
                  "name": "_rule",
                  "type": {
                    "text": "FlowQueryBuilderRule"
                  }
                },
                {
                  "name": "field",
                  "type": {
                    "text": "FlowQueryBuilderField | undefined"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "getDefault",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "T | undefined"
                }
              },
              "parameters": [
                {
                  "name": "defaultVal",
                  "type": {
                    "text": "T | (() => T)"
                  }
                },
                {
                  "name": "fallback",
                  "optional": true,
                  "type": {
                    "text": "T"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleAddRule",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleRemoveRule",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "FlowRemoveEvent"
                  }
                },
                {
                  "name": "index",
                  "type": {
                    "text": "number"
                  }
                }
              ],
              "description": "Handles removal of a rule set (displayed by a sub-query builder) in response to a remove event."
            },
            {
              "kind": "method",
              "name": "handleSubQueryValueChange",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "FlowChangeEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleFieldChanged",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "FlowChangeEvent"
                  }
                },
                {
                  "name": "rule",
                  "type": {
                    "text": "FlowQueryBuilderRule"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleOperatorChanged",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "FlowChangeEvent"
                  }
                },
                {
                  "name": "rule",
                  "type": {
                    "text": "FlowQueryBuilderRule"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleConditionChange",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "FlowChangeEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleRuleMenuSelect",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "FlowSelectEvent"
                  }
                },
                {
                  "name": "rule",
                  "type": {
                    "text": "FlowQueryBuilderRule"
                  }
                },
                {
                  "name": "index",
                  "type": {
                    "text": "number"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleValueKeyDown",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleToolbarMenuSelect",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "FlowSelectEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "emitValueChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "operatorsForField",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "string[]"
                }
              },
              "parameters": [
                {
                  "name": "field",
                  "type": {
                    "text": "string | undefined"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "defaultOperatorsForFieldType",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "string[]"
                }
              },
              "parameters": [
                {
                  "name": "type",
                  "type": {
                    "text": "FlowQueryBuilderFieldType"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "toolbarTemplate",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ruleSet",
                  "type": {
                    "text": "FlowQueryBuilderRuleSet"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "ruleTemplate",
              "privacy": "private",
              "parameters": [
                {
                  "name": "rule",
                  "type": {
                    "text": "FlowQueryBuilderRule"
                  }
                },
                {
                  "name": "fieldConfig",
                  "type": {
                    "text": "FlowQueryBuilderField | undefined"
                  }
                },
                {
                  "name": "index",
                  "type": {
                    "text": "number"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "ruleValueTemplate",
              "privacy": "private",
              "parameters": [
                {
                  "name": "rule",
                  "type": {
                    "text": "FlowQueryBuilderRule"
                  }
                },
                {
                  "name": "fieldConfig",
                  "type": {
                    "text": "FlowQueryBuilderField | undefined"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "subQueryBuilderTemplate",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ruleSet",
                  "type": {
                    "text": "FlowQueryBuilderRuleSet"
                  }
                },
                {
                  "name": "index",
                  "type": {
                    "text": "number"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "emptyRulesetTemplate",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "description": "Emitted when the control's value changes.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            },
            {
              "description": "Emitted when the control's value changes.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when a custom menu item is selected.",
              "name": "flow-ui-select",
              "reactName": "onFlowUiSelect"
            },
            {
              "description": "Emitted when the user attempts to remove a rule or ruleset. Calling `event.preventDefault()` will cancel the removal.",
              "name": "flow-ui-remove",
              "reactName": "onFlowUiRemove"
            },
            {
              "description": "Emitted when the user clears all rules from the tool menu.",
              "name": "flow-ui-clear",
              "reactName": "onFlowUiClear"
            },
            {
              "description": "Emitted when the user presses 'Enter' twice in the same value input control.",
              "name": "flow-ui-apply",
              "reactName": "onFlowUiApply"
            }
          ],
          "attributes": [
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The query builder's size.",
              "fieldName": "size"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the select control.",
              "fieldName": "disabled"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The query builders's label. If you need to display HTML, use the `label` slot instead.",
              "fieldName": "label"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The query builders's help text. If you need to display HTML, use the `help-text` slot instead.",
              "fieldName": "helpText"
            },
            {
              "name": "tree-lines",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display tree connector lines between query rules",
              "fieldName": "treeLines"
            },
            {
              "name": "borders",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display control borders",
              "fieldName": "borders"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-query-builder",
          "summary": "Query builder component",
          "dependencies": [
            "flow-ui-input",
            "flow-ui-select",
            "flow-ui-option",
            "flow-ui-checkbox",
            "flow-ui-icon-button",
            "flow-ui-tool-button",
            "flow-ui-date-time-picker",
            "flow-ui-tooltip"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiQueryBuilder",
            "module": "components/query-builder/query-builder.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/query-builder/query-builder.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./query-builder.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiQueryBuilder",
            "module": "components/query-builder/query-builder.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/query-builder/types.js",
      "declarations": [],
      "exports": []
    },
    {
      "kind": "javascript-module",
      "path": "components/radio/radio.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiRadio",
          "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 `<flow-ui-icon>` 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": "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": "variant",
              "type": {
                "text": "'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'neutral'"
              },
              "default": "'secondary'",
              "description": "The radio's variant color.",
              "attribute": "variant"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the radio.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "reverse",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the radio using a reversed style with left-aligned label.",
              "attribute": "reverse",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "addEventListeners",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "removeEventListeners",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleBlur",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleClick",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleFocus",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "setInitialAttributes",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "description": "Emitted when the control loses focus.",
              "name": "flow-ui-blur",
              "reactName": "onFlowUiBlur"
            },
            {
              "description": "Emitted when the control gains focus.",
              "name": "flow-ui-focus",
              "reactName": "onFlowUiFocus"
            }
          ],
          "attributes": [
            {
              "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": "variant",
              "type": {
                "text": "'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'neutral'"
              },
              "default": "'secondary'",
              "description": "The radio's variant color.",
              "fieldName": "variant"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the radio.",
              "fieldName": "disabled"
            },
            {
              "name": "reverse",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the radio using a reversed style with left-aligned label.",
              "fieldName": "reverse"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-radio",
          "summary": "Radios allow the user to select a single option from a group.",
          "dependencies": [
            "flow-ui-icon"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiRadio",
            "module": "components/radio/radio.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/radio/radio.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./radio.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiRadio",
            "module": "components/radio/radio.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/radio-group/radio-group.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiRadioGroup",
          "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"
            },
            {
              "description": "The button group that wraps radio buttons.",
              "name": "button-group"
            },
            {
              "description": "The button group's `base` part.",
              "name": "button-group__base"
            }
          ],
          "slots": [
            {
              "description": "The default slot where `<flow-ui-radio>` or `<flow-ui-tool-button>` elements are placed.",
              "name": ""
            },
            {
              "description": "The radio group's label. Required for proper accessibility. Alternatively, you can use the `label` attribute.",
              "name": "label"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "protected",
              "readonly": true,
              "default": "new FormControlController(this)"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'help-text', 'label')"
            },
            {
              "kind": "field",
              "name": "customValidityMessage",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "default": "''"
            },
            {
              "kind": "field",
              "name": "validationTimeout",
              "type": {
                "text": "number"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "errorMessage",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "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": "reverse",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the radios using a reversed style with left-aligned labels.",
              "attribute": "reverse",
              "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"
            },
            {
              "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": "syncRadios",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "updateCheckedRadio",
              "privacy": "private"
            },
            {
              "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."
            }
          ],
          "events": [
            {
              "description": "Emitted when the radio group's selected value changes.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when the radio group receives user input.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "flow-ui-invalid",
              "reactName": "onFlowUiInvalid"
            }
          ],
          "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": "reverse",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the radios using a reversed style with left-aligned labels.",
              "fieldName": "reverse"
            },
            {
              "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": "FlowRdfFormControl",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-radio-group",
          "summary": "Radio groups are used to group multiple [radios](/components/radio) or [radio buttons](/components/radio-button) so they function as a single form control.",
          "dependencies": [
            "flow-ui-button-group"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiRadioGroup",
            "module": "components/radio-group/radio-group.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/radio-group/radio-group.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./radio-group.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiRadioGroup",
            "module": "components/radio-group/radio-group.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/range/range.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiRange",
          "cssProperties": [
            {
              "description": "The size of the thumb.",
              "name": "--thumb-size"
            },
            {
              "description": "The color of the portion of the track that represents the current value.",
              "name": "--track-color-active"
            },
            {
              "description": "The of the portion of the track that represents the remaining value.",
              "name": "--track-color-inactive"
            },
            {
              "description": "The height of the track.",
              "name": "--track-height"
            },
            {
              "description": "The point of origin of the active track.",
              "name": "--track-active-offset"
            }
          ],
          "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 range's wrapper.",
              "name": "form-control-input"
            },
            {
              "description": "The help text's wrapper.",
              "name": "form-control-help-text"
            },
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The range's number input control.",
              "name": "number-input"
            }
          ],
          "slots": [
            {
              "description": "The range's label. Alternatively, you can use the `label` attribute.",
              "name": "label"
            },
            {
              "description": "Text that describes how to use the input. Alternatively, you can use the `help-text` attribute.",
              "name": "help-text"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this)"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'help-text', 'label', 'prefix', 'suffix')"
            },
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "resizeObserver",
              "type": {
                "text": "ResizeObserver"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the range, submitted as a name/value pair with form data.",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The current value of the range, submitted as a name/value pair with form data.",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The input's size.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The range's label. If you need to display HTML, use the `label` slot instead.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The range's help text. If you need to display HTML, use the help-text slot instead.",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the range.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "min",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The minimum acceptable value of the range.",
              "attribute": "min"
            },
            {
              "kind": "field",
              "name": "max",
              "type": {
                "text": "number"
              },
              "default": "100",
              "description": "The maximum acceptable value of the range.",
              "attribute": "max"
            },
            {
              "kind": "field",
              "name": "step",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "The interval at which the range will increase and decrease.",
              "attribute": "step"
            },
            {
              "kind": "field",
              "name": "format",
              "type": {
                "text": "string"
              },
              "default": "'0'",
              "description": "Number format to use for numeric display. (D3 format string)",
              "attribute": "format"
            },
            {
              "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": "defaultValue",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The default value of the form control. Primarily used for resetting the form control."
            },
            {
              "kind": "field",
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the control in the 'inline' form control style.",
              "attribute": "inline",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "noInput",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "attribute": "no-input",
              "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": "handleRangeChange",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleRangeInput",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleNumberChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleBlur",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "FocusEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleFocus",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "FocusEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleThumbDragStart",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleThumbDragEnd",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "syncProgress",
              "privacy": "private",
              "parameters": [
                {
                  "name": "percent",
                  "type": {
                    "text": "number"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleRangeInvalid",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "focus",
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "FocusOptions"
                  }
                }
              ],
              "description": "Sets focus on the range."
            },
            {
              "kind": "method",
              "name": "blur",
              "description": "Removes focus from the range."
            },
            {
              "kind": "method",
              "name": "stepUp",
              "description": "Increments the value of the range by the value of the step attribute."
            },
            {
              "kind": "method",
              "name": "stepDown",
              "description": "Decrements the value of the range by the value of the step attribute."
            },
            {
              "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": "flow-ui-blur",
              "reactName": "onFlowUiBlur"
            },
            {
              "description": "Emitted when an alteration to the control's value is committed by the user.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when the control gains focus.",
              "name": "flow-ui-focus",
              "reactName": "onFlowUiFocus"
            },
            {
              "description": "Emitted when the control receives input.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "flow-ui-invalid",
              "reactName": "onFlowUiInvalid"
            }
          ],
          "attributes": [
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the range, submitted as a name/value pair with form data.",
              "fieldName": "name"
            },
            {
              "name": "value",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The current value of the range, submitted as a name/value pair with form data.",
              "fieldName": "value"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The input's size.",
              "fieldName": "size"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The range's label. If you need to display HTML, use the `label` slot instead.",
              "fieldName": "label"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The range's help text. If you need to display HTML, use the help-text slot instead.",
              "fieldName": "helpText"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the range.",
              "fieldName": "disabled"
            },
            {
              "name": "min",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The minimum acceptable value of the range.",
              "fieldName": "min"
            },
            {
              "name": "max",
              "type": {
                "text": "number"
              },
              "default": "100",
              "description": "The maximum acceptable value of the range.",
              "fieldName": "max"
            },
            {
              "name": "step",
              "type": {
                "text": "number"
              },
              "default": "1",
              "description": "The interval at which the range will increase and decrease.",
              "fieldName": "step"
            },
            {
              "name": "format",
              "type": {
                "text": "string"
              },
              "default": "'0'",
              "description": "Number format to use for numeric display. (D3 format string)",
              "fieldName": "format"
            },
            {
              "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": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the control in the 'inline' form control style.",
              "fieldName": "inline"
            },
            {
              "name": "no-input",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "fieldName": "noInput"
            }
          ],
          "superclass": {
            "name": "FlowRdfFormControl",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-range",
          "summary": "Ranges allow the user to select a single value within a given range using a slider.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiRange",
            "module": "components/range/range.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/range/range.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./range.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiRange",
            "module": "components/range/range.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/resize-observer/resize-observer.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiResizeObserver",
          "slots": [
            {
              "description": "One or more elements to watch for resizing.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "resizeObserver",
              "type": {
                "text": "ResizeObserver"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "observedElements",
              "type": {
                "text": "HTMLElement[]"
              },
              "privacy": "private",
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the observer.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "handleSlotChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "startObserver",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "stopObserver",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "type": {
                "text": "CustomEvent<{entries: ResizeObserverEntry[]}>"
              },
              "description": "Emitted when the element is resized.",
              "name": "flow-ui-resize",
              "reactName": "onFlowUiResize"
            }
          ],
          "attributes": [
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the observer.",
              "fieldName": "disabled"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-resize-observer",
          "summary": "The Resize Observer component offers a thin, declarative interface to the [`ResizeObserver API`](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver).",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiResizeObserver",
            "module": "components/resize-observer/resize-observer.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/resize-observer/resize-observer.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./resize-observer.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiResizeObserver",
            "module": "components/resize-observer/resize-observer.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/scroll-view/scroll-view.component.js",
      "declarations": [
        {
          "kind": "function",
          "name": "configureScrollViews",
          "parameters": [
            {
              "name": "options",
              "type": {
                "text": "ScrollViewOptions"
              }
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "configureScrollViews",
          "declaration": {
            "name": "configureScrollViews",
            "module": "components/scroll-view/scroll-view.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/scroll-view/scroll-view.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./scroll-view.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiScrollView",
            "module": "components/scroll-view/scroll-view.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/select/select.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiSelect",
          "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 `multiselect` is used.",
              "name": "tags"
            },
            {
              "description": "The individual tags that represent each multiselect option.",
              "name": "tag"
            },
            {
              "description": "The tag's base part.",
              "name": "tag__base"
            },
            {
              "description": "The tag's content part.",
              "name": "tag__content"
            },
            {
              "description": "The tag's remove button.",
              "name": "tag__remove-button"
            },
            {
              "description": "The tag's remove button base part.",
              "name": "tag__remove-button__base"
            },
            {
              "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 `<flow-option>` elements. You can use `<flow-divider>` to group items visually.",
              "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    'flow-icon': FlowIcon,\n    'flow-popup': FlowPopup,\n    'flow-tag': FlowTag\n  }"
            },
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this, {\n    assumeInteractionOn: ['flow-ui-blur', 'flow-ui-input']\n  })"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'help-text', 'label')"
            },
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "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": "mutationObserver",
              "type": {
                "text": "MutationObserver"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "mouseDownAt",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "default": "0"
            },
            {
              "kind": "field",
              "name": "popup",
              "type": {
                "text": "FlowPopup"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "displayInput",
              "type": {
                "text": "HTMLInputElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "valueInput",
              "type": {
                "text": "HTMLInputElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "listbox",
              "type": {
                "text": "HTMLSlotElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "displayLabel",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "default": "''"
            },
            {
              "kind": "field",
              "name": "currentOption",
              "type": {
                "text": "FlowOption"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "selectedOptions",
              "type": {
                "text": "FlowOption[]"
              },
              "privacy": "private",
              "default": "[]"
            },
            {
              "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[]"
              },
              "default": "''",
              "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.**",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "defaultValue",
              "type": {
                "text": "string | string[]"
              },
              "default": "''",
              "description": "The default value of the form control. Primarily used for resetting the form control."
            },
            {
              "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": "4",
              "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": "filled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a filled input.",
              "attribute": "filled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the select in the 'inline' form control style.",
              "attribute": "inline",
              "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": "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": "sync",
              "type": {
                "text": "'width' | 'none'"
              },
              "default": "'none'",
              "attribute": "sync"
            },
            {
              "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": "(option: FlowOption, index: number) => 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": "private"
            },
            {
              "kind": "method",
              "name": "handleTagRemove",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "FlowRemoveEvent"
                  }
                },
                {
                  "name": "option",
                  "type": {
                    "text": "FlowOption"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "getAllOptions",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "getFirstOption",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "setCurrentOption",
              "privacy": "private",
              "parameters": [
                {
                  "name": "option",
                  "type": {
                    "text": "FlowOption | null"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "setSelectedOptions",
              "privacy": "private",
              "parameters": [
                {
                  "name": "option",
                  "type": {
                    "text": "FlowOption | FlowOption[]"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "toggleOptionSelection",
              "privacy": "private",
              "parameters": [
                {
                  "name": "option",
                  "type": {
                    "text": "FlowOption"
                  }
                },
                {
                  "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": "syncOptions",
              "privacy": "private"
            },
            {
              "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": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when the control's value is cleared.",
              "name": "flow-ui-clear",
              "reactName": "onFlowUiClear"
            },
            {
              "description": "Emitted when the control receives input.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            },
            {
              "description": "Emitted when the control gains focus.",
              "name": "flow-ui-focus",
              "reactName": "onFlowUiFocus"
            },
            {
              "description": "Emitted when the control loses focus.",
              "name": "flow-ui-blur",
              "reactName": "onFlowUiBlur"
            },
            {
              "description": "Emitted when the select's menu opens.",
              "name": "flow-ui-show",
              "reactName": "onFlowUiShow"
            },
            {
              "description": "Emitted after the select's menu opens and all animations are complete.",
              "name": "flow-ui-after-show",
              "reactName": "onFlowUiAfterShow"
            },
            {
              "description": "Emitted when the select's menu closes.",
              "name": "flow-ui-hide",
              "reactName": "onFlowUiHide"
            },
            {
              "description": "Emitted after the select's menu closes and all animations are complete.",
              "name": "flow-ui-after-hide",
              "reactName": "onFlowUiAfterHide"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "flow-ui-invalid",
              "reactName": "onFlowUiInvalid"
            }
          ],
          "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 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.**",
              "fieldName": "value"
            },
            {
              "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": "4",
              "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": "filled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a filled input.",
              "fieldName": "filled"
            },
            {
              "name": "inline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display the select in the 'inline' form control style.",
              "fieldName": "inline"
            },
            {
              "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": "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": "sync",
              "type": {
                "text": "'width' | 'none'"
              },
              "default": "'none'",
              "fieldName": "sync"
            },
            {
              "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": "(option: FlowOption, index: number) => 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": "FlowRdfFormControl",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-select",
          "summary": "Selects allow you to choose items from a menu of predefined options.",
          "documentation": "https://shoelace.style/components/select",
          "status": "stable",
          "since": "2.0",
          "dependencies": [
            "flow-icon",
            "flow-popup",
            "flow-tag"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiSelect",
            "module": "components/select/select.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/select/select.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./select.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiSelect",
            "module": "components/select/select.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/split-view/split-view.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiSplitView",
          "members": [
            {
              "kind": "field",
              "name": "_panelLayouts",
              "type": {
                "text": "Record<string, PaneLayout[]>"
              },
              "privacy": "private",
              "default": "{}"
            },
            {
              "kind": "field",
              "name": "_panels",
              "type": {
                "text": "FlowSplitViewPane[]"
              },
              "privacy": "private",
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "dragTargetPanel",
              "type": {
                "text": "FlowSplitViewPane | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "mutationObserver",
              "type": {
                "text": "MutationObserver"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "resizeObserver",
              "type": {
                "text": "ResizeObserver"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "animatingPanelIndex",
              "type": {
                "text": "number | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "noDragClose",
              "type": {
                "text": "boolean"
              },
              "privacy": "public",
              "default": "false",
              "description": "Disable drag-to-close behaviour.",
              "attribute": "no-drag-close"
            },
            {
              "kind": "field",
              "name": "positions",
              "type": {
                "text": "string[]"
              },
              "privacy": "public",
              "default": "['auto', 'auto', 'auto', 'auto']",
              "description": "The pane positions in CSS size units",
              "attribute": "positions"
            },
            {
              "kind": "field",
              "name": "vertical",
              "type": {
                "text": "boolean"
              },
              "privacy": "public",
              "default": "false",
              "description": "Set to `true` for vertically-arranged panes. By default, panes are layed out horizontally.",
              "attribute": "vertical",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "actualPanelSize",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "number"
                }
              },
              "parameters": [
                {
                  "name": "panel",
                  "type": {
                    "text": "FlowSplitViewPane"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "growPanels",
              "privacy": "private",
              "parameters": [
                {
                  "name": "startIndex",
                  "type": {
                    "text": "number"
                  },
                  "description": "panel index to start growing from"
                },
                {
                  "name": "direction",
                  "type": {
                    "text": "1 | -1"
                  },
                  "description": "1 (right/down) or -1 (left/up)"
                },
                {
                  "name": "canOpen",
                  "type": {
                    "text": "boolean"
                  }
                },
                {
                  "name": "amount",
                  "type": {
                    "text": "number"
                  },
                  "description": "Number of pixels to grow by"
                },
                {
                  "name": "dryRun",
                  "default": "false",
                  "description": "if true, don't actually row panels, just calculate the amount that can be grown"
                },
                {
                  "description": "whether panels can be opened to grow space",
                  "name": "caOpen"
                }
              ],
              "description": "Grow panels starting from startIndex in specified direction by resizing panels\nup to their maximum size and (optionally) opening panels."
            },
            {
              "kind": "method",
              "name": "handleCollapseExpand",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "FlowCollapseEvent | FlowExpandEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleDrag",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "FlowDragEvent"
                  }
                }
              ],
              "description": "This is called repeatedly as the user drags a panel divider."
            },
            {
              "kind": "method",
              "name": "handleDragEnd",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleDragStart",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "FlowDragEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handlePointerLeave",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleTransitionEnd",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "TransitionEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "isPanel",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "element is FlowSplitViewPane"
                }
              },
              "parameters": [
                {
                  "name": "element",
                  "type": {
                    "text": "unknown"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "layoutPanels",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "layoutAutoPanels",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "number"
                }
              },
              "parameters": [
                {
                  "name": "autoPanels",
                  "type": {
                    "text": "AutoPanelInfo[]"
                  }
                },
                {
                  "name": "totalAutoSize",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "initialize",
                  "default": "false"
                }
              ]
            },
            {
              "kind": "method",
              "name": "resizePanels",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "shrinkPanels",
              "privacy": "private",
              "parameters": [
                {
                  "name": "startIndex",
                  "type": {
                    "text": "number"
                  },
                  "description": "panel index to start shrinking from"
                },
                {
                  "name": "direction",
                  "type": {
                    "text": "1 | -1"
                  },
                  "description": "1 (right/down) or -1 (left/up)"
                },
                {
                  "name": "canClose",
                  "type": {
                    "text": "boolean"
                  },
                  "description": "whether panels can be closed to make space"
                },
                {
                  "name": "amount",
                  "type": {
                    "text": "number"
                  },
                  "description": "Number of pixels to shrink by"
                },
                {
                  "name": "dryRun",
                  "default": "false",
                  "description": "if true, don't actually shrink panels, just calculate the amount that can be shrunk"
                }
              ],
              "description": "Shrink panels starting from startIndex in specified direction by resizing panels\ndown to their minimum size and (optionally) closing panels."
            },
            {
              "kind": "method",
              "name": "sizeToPixels",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "number"
                }
              },
              "parameters": [
                {
                  "name": "size",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handlePanelAdded",
              "privacy": "private",
              "parameters": [
                {
                  "name": "panel",
                  "type": {
                    "text": "FlowSplitViewPane"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handlePanelRemoved",
              "privacy": "private",
              "parameters": [
                {
                  "name": "panel",
                  "type": {
                    "text": "FlowSplitViewPane"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "updatePanelInfo",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "panelLayoutsKey",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "string"
                }
              }
            },
            {
              "kind": "method",
              "name": "savePanelLayouts",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "restorePanelLayouts",
              "privacy": "private"
            }
          ],
          "attributes": [
            {
              "name": "no-drag-close",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disable drag-to-close behaviour.",
              "fieldName": "noDragClose"
            },
            {
              "name": "positions",
              "type": {
                "text": "string[]"
              },
              "default": "['auto', 'auto', 'auto', 'auto']",
              "description": "The pane positions in CSS size units",
              "fieldName": "positions"
            },
            {
              "name": "vertical",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` for vertically-arranged panes. By default, panes are layed out horizontally.",
              "fieldName": "vertical"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-split-view",
          "summary": "Split-views contain two or more split-view panes to create resizable areas.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiSplitView",
            "module": "components/split-view/split-view.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/split-view/split-view.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./split-view.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiSplitView",
            "module": "components/split-view/split-view.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/split-view-divider/split-view-divider.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiSplitViewDivider",
          "members": [
            {
              "kind": "field",
              "name": "dragCanceller",
              "type": {
                "text": "(() => void) | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables user interaction with the split pane divider.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "vertical",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the divider for vertically-arranged panes",
              "attribute": "vertical",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "handleDrag",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "PointerEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "closestElement",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "Element | null"
                }
              },
              "parameters": [
                {
                  "name": "selector",
                  "type": {
                    "text": "string"
                  }
                },
                {
                  "name": "base",
                  "default": "this",
                  "type": {
                    "text": "Element"
                  }
                }
              ]
            }
          ],
          "attributes": [
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables user interaction with the split pane divider.",
              "fieldName": "disabled"
            },
            {
              "name": "vertical",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the divider for vertically-arranged panes",
              "fieldName": "vertical"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-split-view-divider",
          "summary": "Split-view dividers are used internally by split-views to create resizable areas.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiSplitViewDivider",
            "module": "components/split-view-divider/split-view-divider.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/split-view-divider/split-view-divider.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./split-view-divider.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiSplitViewDivider",
            "module": "components/split-view-divider/split-view-divider.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/split-view-pane/split-view-pane.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiSplitViewPane",
          "members": [
            {
              "kind": "field",
              "name": "attrId",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "readonly": true,
              "default": "++id"
            },
            {
              "kind": "field",
              "name": "componentId",
              "privacy": "private",
              "readonly": true,
              "default": "`flow-ui-split-view-pane-${this.attrId}`"
            },
            {
              "kind": "field",
              "name": "dividerComponent",
              "type": {
                "text": "FlowPanelDivider | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "vertical",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` for vertically-arranged panes.",
              "attribute": "vertical",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "string"
              },
              "description": "Set the initial size of the split pane in CSS px or % units",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "minSize",
              "type": {
                "text": "string"
              },
              "description": "Set the minimum size of the split pane in CSS px or % units",
              "attribute": "min-size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "maxSize",
              "type": {
                "text": "string"
              },
              "description": "Set the maximum size of the split pane in CSS px or % units",
              "attribute": "max-size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "closedSize",
              "type": {
                "text": "string"
              },
              "description": "Set the closed size split pane in CSS px or % units",
              "attribute": "closed-size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "closed",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates if the split-view pane is open or closed.",
              "attribute": "closed",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "divider",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates if the split-view pane has a divider.",
              "attribute": "divider",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "hidden",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates if the split-view pane is hidden.",
              "attribute": "hidden",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "expand",
              "parameters": [
                {
                  "name": "emitEvent",
                  "default": "true"
                }
              ],
              "description": "Open the split pane."
            },
            {
              "kind": "method",
              "name": "collapse",
              "parameters": [
                {
                  "name": "emitEvent",
                  "default": "true"
                }
              ],
              "description": "Close the split pane."
            }
          ],
          "attributes": [
            {
              "name": "vertical",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` for vertically-arranged panes.",
              "fieldName": "vertical"
            },
            {
              "name": "size",
              "type": {
                "text": "string"
              },
              "description": "Set the initial size of the split pane in CSS px or % units",
              "fieldName": "size"
            },
            {
              "name": "min-size",
              "type": {
                "text": "string"
              },
              "description": "Set the minimum size of the split pane in CSS px or % units",
              "fieldName": "minSize"
            },
            {
              "name": "max-size",
              "type": {
                "text": "string"
              },
              "description": "Set the maximum size of the split pane in CSS px or % units",
              "fieldName": "maxSize"
            },
            {
              "name": "closed-size",
              "type": {
                "text": "string"
              },
              "description": "Set the closed size split pane in CSS px or % units",
              "fieldName": "closedSize"
            },
            {
              "name": "closed",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates if the split-view pane is open or closed.",
              "fieldName": "closed"
            },
            {
              "name": "divider",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates if the split-view pane has a divider.",
              "fieldName": "divider"
            },
            {
              "name": "hidden",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates if the split-view pane is hidden.",
              "fieldName": "hidden"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-split-view-pane",
          "summary": "Split-view panes are used with split-views to create resizable areas.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiSplitViewPane",
            "module": "components/split-view-pane/split-view-pane.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/split-view-pane/split-view-pane.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiSplitViewPane",
            "module": "components/split-view-pane/split-view-pane.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/split-view-toggle-button/split-view-toggle-button.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiSplitViewToggleButton",
          "members": [
            {
              "kind": "field",
              "name": "parentPane",
              "type": {
                "text": "FlowSplitViewPane | null"
              },
              "privacy": "private",
              "default": "null"
            },
            {
              "kind": "field",
              "name": "parentPanelObserver",
              "type": {
                "text": "MutationObserver | null"
              },
              "privacy": "private",
              "default": "null"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "'chevron-right'",
              "description": "The icon to use for the button.",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "library",
              "type": {
                "text": "string"
              },
              "default": "'system'",
              "description": "The icon library to use for the button icon.",
              "attribute": "library"
            },
            {
              "kind": "field",
              "name": "closed",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to control the open/closed state of the parent split pane.",
              "attribute": "closed",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "toggle",
              "parameters": [
                {
                  "name": "emitEvents",
                  "default": "true"
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleClick",
              "privacy": "protected",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "closestElement",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "Element | null"
                }
              },
              "parameters": [
                {
                  "name": "selector",
                  "type": {
                    "text": "string"
                  }
                },
                {
                  "name": "base",
                  "default": "this",
                  "type": {
                    "text": "Element"
                  }
                }
              ]
            }
          ],
          "attributes": [
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "'chevron-right'",
              "description": "The icon to use for the button.",
              "fieldName": "name"
            },
            {
              "name": "library",
              "type": {
                "text": "string"
              },
              "default": "'system'",
              "description": "The icon library to use for the button icon.",
              "fieldName": "library"
            },
            {
              "name": "closed",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to control the open/closed state of the parent split pane.",
              "fieldName": "closed"
            }
          ],
          "superclass": {
            "name": "FlowIconButton",
            "module": "/src/components/icon-button/icon-button.component"
          },
          "tagName": "flow-ui-split-view-toggle-button",
          "summary": "Use a split panel toggle button to control a parent panel's open/closed state",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiSplitViewToggleButton",
            "module": "components/split-view-toggle-button/split-view-toggle-button.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/split-view-toggle-button/split-view-toggle-button.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./split-view-toggle-button.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiSplitViewToggleButton",
            "module": "components/split-view-toggle-button/split-view-toggle-button.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/stepper/stepper.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiStepper",
          "members": [
            {
              "kind": "field",
              "name": "bodySlot",
              "type": {
                "text": "HTMLSlotElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "headerScrollContainer",
              "type": {
                "text": "HTMLDivElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "attrId",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "readonly": true,
              "default": "++id"
            },
            {
              "kind": "field",
              "name": "componentId",
              "privacy": "private",
              "readonly": true,
              "default": "`flow-ui-stepper-${this.attrId}`"
            },
            {
              "kind": "field",
              "name": "activePanel",
              "type": {
                "text": "FlowStepperPanel | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "mutationObserver",
              "type": {
                "text": "MutationObserver"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "panels",
              "type": {
                "text": "FlowStepperPanel[]"
              },
              "privacy": "private",
              "default": "[]"
            },
            {
              "kind": "method",
              "name": "setComplete",
              "parameters": [
                {
                  "name": "panelName",
                  "type": {
                    "text": "string"
                  }
                },
                {
                  "name": "complete",
                  "default": "true",
                  "type": {
                    "text": "boolean"
                  }
                }
              ],
              "description": "Mark the specified panel as `complete`"
            },
            {
              "kind": "method",
              "name": "show",
              "parameters": [
                {
                  "name": "panelName",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "syncPanels",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "getAllPanels",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "setActivePanel",
              "privacy": "private",
              "parameters": [
                {
                  "name": "panel",
                  "type": {
                    "text": "FlowStepperPanel"
                  }
                },
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "{ emitEvents?: boolean; scrollBehavior?: 'auto' | 'smooth' }"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "renderHeaderItem",
              "privacy": "private",
              "parameters": [
                {
                  "name": "panel",
                  "type": {
                    "text": "FlowStepperPanel"
                  }
                },
                {
                  "name": "index",
                  "type": {
                    "text": "number"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "renderHeader",
              "privacy": "private"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-stepper",
          "summary": "Steppers are used to guide users through a series of steps in a wizard-like UI.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiStepper",
            "module": "components/stepper/stepper.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/stepper/stepper.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./stepper.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiStepper",
            "module": "components/stepper/stepper.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/stepper-panel/stepper-panel.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiStepperPanel",
          "members": [
            {
              "kind": "field",
              "name": "attrId",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "readonly": true,
              "default": "++id"
            },
            {
              "kind": "field",
              "name": "componentId",
              "privacy": "private",
              "readonly": true,
              "default": "`flow-ui-stepper-panel-${this.attrId}`"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The tab panel's name.",
              "attribute": "name",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "subTitle",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The stepper panel's sub-title.",
              "attribute": "sub-title",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "active",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, the stepper panel will be shown.",
              "attribute": "active",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "complete",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, the stepper panel is marked as complete",
              "attribute": "complete",
              "reflects": true
            }
          ],
          "attributes": [
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The tab panel's name.",
              "fieldName": "name"
            },
            {
              "name": "sub-title",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The stepper panel's sub-title.",
              "fieldName": "subTitle"
            },
            {
              "name": "active",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, the stepper panel will be shown.",
              "fieldName": "active"
            },
            {
              "name": "complete",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "When true, the stepper panel is marked as complete",
              "fieldName": "complete"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-stepper-panel",
          "summary": "Stepper panels provide a single page in a stepper to guide users through a series of steps.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiStepperPanel",
            "module": "components/stepper-panel/stepper-panel.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/stepper-panel/stepper-panel.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./stepper-panel.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiStepperPanel",
            "module": "components/stepper-panel/stepper-panel.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tab/tab.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiTab",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The close button, an `<flow-ui-icon-button>`.",
              "name": "close-button"
            },
            {
              "description": "The close button's exported `base` part.",
              "name": "close-button__base"
            }
          ],
          "slots": [
            {
              "description": "The tab's label.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, '[default]', 'icon')"
            },
            {
              "kind": "field",
              "name": "attrId",
              "type": {
                "text": "number"
              },
              "privacy": "private",
              "readonly": true,
              "default": "++id"
            },
            {
              "kind": "field",
              "name": "componentId",
              "privacy": "private",
              "readonly": true,
              "default": "`flow-ui-tab-${this.attrId}`"
            },
            {
              "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 tab group.",
              "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": "iconOnly",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display tab icon only. Label text is displayed as a tooltip",
              "attribute": "icon-only"
            },
            {
              "kind": "field",
              "name": "closable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the tab closable and shows a close button.",
              "attribute": "closable"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the tab and prevents selection.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "description": "Full title of tab",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "tooltipPlacement",
              "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": "tooltip-placement"
            },
            {
              "kind": "field",
              "name": "tooltipDistance",
              "type": {
                "text": "number"
              },
              "default": "-4",
              "description": "The distance in pixels from which to offset the tooltip away from the icon button.",
              "attribute": "tooltip-distance"
            },
            {
              "kind": "field",
              "name": "tooltipSkidding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The distance in pixels from which to offset the tooltip along the icon button.",
              "attribute": "tooltip-skidding"
            },
            {
              "kind": "field",
              "name": "tabGroup",
              "type": {
                "text": "FlowUiTabGroup | undefined"
              },
              "privacy": "public"
            },
            {
              "kind": "method",
              "name": "handleCloseClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "focus",
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "FocusOptions"
                  }
                }
              ],
              "description": "Sets focus to the tab."
            },
            {
              "kind": "method",
              "name": "blur",
              "description": "Removes focus from the tab."
            }
          ],
          "events": [
            {
              "description": "Emitted when the tab is closable and the close button is activated.",
              "name": "flow-ui-close",
              "reactName": "onFlowUiClose"
            }
          ],
          "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 tab group.",
              "fieldName": "panel"
            },
            {
              "name": "active",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the tab in an active state.",
              "fieldName": "active"
            },
            {
              "name": "icon-only",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Display tab icon only. Label text is displayed as a tooltip",
              "fieldName": "iconOnly"
            },
            {
              "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": "label",
              "type": {
                "text": "string"
              },
              "description": "Full title of tab",
              "fieldName": "label"
            },
            {
              "name": "tooltip-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": "tooltipPlacement"
            },
            {
              "name": "tooltip-distance",
              "type": {
                "text": "number"
              },
              "default": "-4",
              "description": "The distance in pixels from which to offset the tooltip away from the icon button.",
              "fieldName": "tooltipDistance"
            },
            {
              "name": "tooltip-skidding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The distance in pixels from which to offset the tooltip along the icon button.",
              "fieldName": "tooltipSkidding"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-tab",
          "summary": "Tabs are used inside [tab groups](/components/tab-group) to represent and activate [tab panels](/components/tab-panel).",
          "dependencies": [
            "flow-ui-icon-button"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTab",
            "module": "components/tab/tab.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tab/tab.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./tab.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTab",
            "module": "components/tab/tab.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tab-group/tab-group.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiTabGroup",
          "cssProperties": [
            {
              "description": "The color of the active tab indicator.",
              "name": "--indicator-color"
            },
            {
              "description": "The color of the indicator's track (the line that separates tabs from panels).",
              "name": "--track-color"
            },
            {
              "description": "The width of the indicator's track (the line that separates tabs from panels).",
              "name": "--track-width"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The tab group's 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 tab group's body where tab panels are slotted in.",
              "name": "body"
            },
            {
              "description": "The previous/next scroll buttons that show when tabs are scrollable, an `<flow-ui-icon-button>`.",
              "name": "scroll-button"
            },
            {
              "description": "The starting scroll button.",
              "name": "scroll-button--start"
            },
            {
              "description": "The ending scroll button.",
              "name": "scroll-button--end"
            },
            {
              "description": "The scroll button's exported `base` part.",
              "name": "scroll-button__base"
            }
          ],
          "slots": [
            {
              "description": "Used for grouping tab panels in the tab group. Must be `<flow-ui-tab-panel>` elements.",
              "name": ""
            },
            {
              "description": "Used for grouping tabs in the tab group. Must be `<flow-ui-tab>` elements.",
              "name": "nav"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'nav-accessories-start', 'nav-accessories-end')"
            },
            {
              "kind": "field",
              "name": "_activeTab",
              "type": {
                "text": "FlowUiTab | 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": "FlowUiTab[]"
              },
              "privacy": "private",
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "panels",
              "type": {
                "text": "FlowUiTabPanel[]"
              },
              "privacy": "private",
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "hasScrollControls",
              "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": "controlSplitView",
              "type": {
                "text": "boolean"
              },
              "description": "Set to `true` to allow parent split-view pane to be automatically opened and closed when tabs are clicked.",
              "attribute": "control-split-view"
            },
            {
              "kind": "method",
              "name": "getAllTabs",
              "privacy": "private",
              "parameters": [
                {
                  "name": "options",
                  "default": "{ includeDisabled: true }",
                  "type": {
                    "text": "{ includeDisabled: boolean }"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "activeTab",
              "type": {
                "text": "FlowUiTab | undefined"
              },
              "readonly": true
            },
            {
              "kind": "method",
              "name": "getAllPanels",
              "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": "isHorizontal",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "setActiveTab",
              "privacy": "private",
              "parameters": [
                {
                  "name": "tab",
                  "type": {
                    "text": "FlowUiTab"
                  }
                },
                {
                  "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": "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": "flow-ui-tab-show",
              "reactName": "onFlowUiTabShow"
            },
            {
              "type": {
                "text": "{ name: String }"
              },
              "description": "Emitted when a tab is hidden.",
              "name": "flow-ui-tab-hide",
              "reactName": "onFlowUiTabHide"
            }
          ],
          "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": "control-split-view",
              "type": {
                "text": "boolean"
              },
              "description": "Set to `true` to allow parent split-view pane to be automatically opened and closed when tabs are clicked.",
              "fieldName": "controlSplitView"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-tab-group",
          "summary": "Tab groups organize content into a container that shows one section at a time.",
          "dependencies": [
            "flow-ui-icon-button"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTabGroup",
            "module": "components/tab-group/tab-group.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tab-group/tab-group.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./tab-group.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTabGroup",
            "module": "components/tab-group/tab-group.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tab-panel/tab-panel.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiTabPanel",
          "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": "`flow-ui-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": "field",
              "name": "scrollable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether the panel is scrollable. By default overflow is hidden.",
              "attribute": "scrollable",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "padding",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether the panel body has padding.",
              "attribute": "padding",
              "reflects": true
            }
          ],
          "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"
            },
            {
              "name": "scrollable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether the panel is scrollable. By default overflow is hidden.",
              "fieldName": "scrollable"
            },
            {
              "name": "padding",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether the panel body has padding.",
              "fieldName": "padding"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-tab-panel",
          "summary": "Tab panels are used inside [tab groups](/components/tab-group) to display tabbed content.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTabPanel",
            "module": "components/tab-panel/tab-panel.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tab-panel/tab-panel.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./tab-panel.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTabPanel",
            "module": "components/tab-panel/tab-panel.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/switch/switch.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiSwitch",
          "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"
            }
          ],
          "slots": [
            {
              "description": "The switch's label.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "formControlController",
              "privacy": "private",
              "readonly": true,
              "default": "new FormControlController(this, {\n    value: (control: FlowUiSwitch) => (control.checked ? control.value || 'on' : undefined),\n    defaultValue: (control: FlowUiSwitch) => control.defaultChecked,\n    setValue: (control: FlowUiSwitch, checked: boolean) => (control.checked = checked)\n  })"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'help-text', '[default]')"
            },
            {
              "kind": "field",
              "name": "input",
              "type": {
                "text": "HTMLInputElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "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 select's help text. If you need to display HTML, use the `help-text` slot instead.",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "divider",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates that the control should display a divider",
              "attribute": "divider"
            },
            {
              "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": "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": "flow-ui-blur",
              "reactName": "onFlowUiBlur"
            },
            {
              "description": "Emitted when the control's checked state changes.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when the control receives input.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            },
            {
              "description": "Emitted when the control gains focus.",
              "name": "flow-ui-focus",
              "reactName": "onFlowUiFocus"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "flow-ui-invalid",
              "reactName": "onFlowUiInvalid"
            }
          ],
          "attributes": [
            {
              "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 select's help text. If you need to display HTML, use the `help-text` slot instead.",
              "fieldName": "helpText"
            },
            {
              "name": "divider",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates that the control should display a divider",
              "fieldName": "divider"
            }
          ],
          "superclass": {
            "name": "FlowRdfFormControl",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-switch",
          "summary": "Switches allow the user to toggle an option on or off.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiSwitch",
            "module": "components/switch/switch.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/switch/switch.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./switch.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiSwitch",
            "module": "components/switch/switch.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tag/tag.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiTag",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The tag's content.",
              "name": "content"
            },
            {
              "description": "The tag's remove button, an `<flow-ui-icon-button>`.",
              "name": "remove-button"
            },
            {
              "description": "The remove button's exported `base` part.",
              "name": "remove-button__base"
            }
          ],
          "slots": [
            {
              "description": "The tag's content.",
              "name": ""
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "dependencies",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{ 'flow-icon-button': FlowIconButton }"
            },
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "| 'primary'\n    | 'secondary'\n    | 'success'\n    | 'neutral'\n    | 'warning'\n    | 'danger'\n    | 'text'"
              },
              "default": "'neutral'",
              "description": "The tag's theme variant.",
              "attribute": "variant",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The tag's size.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a pill-style tag with rounded edges.",
              "attribute": "pill",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "removable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the tag removable and shows a remove button.",
              "attribute": "removable"
            },
            {
              "kind": "method",
              "name": "handleRemoveClick",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "description": "Emitted when the remove button is activated.",
              "name": "flow-ui-remove",
              "reactName": "onFlowUiRemove"
            }
          ],
          "attributes": [
            {
              "name": "variant",
              "type": {
                "text": "| 'primary'\n    | 'secondary'\n    | 'success'\n    | 'neutral'\n    | 'warning'\n    | 'danger'\n    | 'text'"
              },
              "default": "'neutral'",
              "description": "The tag's theme variant.",
              "fieldName": "variant"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The tag's size.",
              "fieldName": "size"
            },
            {
              "name": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a pill-style tag with rounded edges.",
              "fieldName": "pill"
            },
            {
              "name": "removable",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the tag removable and shows a remove button.",
              "fieldName": "removable"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-tag",
          "summary": "Tags are used as labels to organize things or to indicate a selection.",
          "dependencies": [
            "flow-ui-icon-button"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTag",
            "module": "components/tag/tag.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tag/tag.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./tag.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTag",
            "module": "components/tag/tag.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/textarea/textarea.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiTextarea",
          "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"
            },
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The internal `<textarea>` control.",
              "name": "textarea"
            }
          ],
          "slots": [
            {
              "description": "The textarea's label. Alternatively, you can use the `label` attribute.",
              "name": "label"
            },
            {
              "description": "Text that describes how to use the input. 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    assumeInteractionOn: ['flow-ui-blur', 'flow-ui-input']\n  })"
            },
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, 'help-text', 'label')"
            },
            {
              "kind": "field",
              "name": "resizeObserver",
              "type": {
                "text": "ResizeObserver"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "private",
              "default": "false"
            },
            {
              "kind": "field",
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the textarea, 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 textarea, submitted as a name/value pair with form data.",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The textarea's size.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "filled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a filled textarea.",
              "attribute": "filled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The textarea's label. If you need to display HTML, use the `label` slot instead.",
              "attribute": "label"
            },
            {
              "kind": "field",
              "name": "helpText",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The textarea's help text. If you need to display HTML, use the `help-text` slot instead.",
              "attribute": "help-text"
            },
            {
              "kind": "field",
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Placeholder text to show as a hint when the input is empty.",
              "attribute": "placeholder"
            },
            {
              "kind": "field",
              "name": "rows",
              "type": {
                "text": "number"
              },
              "default": "4",
              "description": "The number of rows to display by default.",
              "attribute": "rows"
            },
            {
              "kind": "field",
              "name": "resize",
              "type": {
                "text": "'none' | 'vertical' | 'auto'"
              },
              "default": "'vertical'",
              "description": "Controls how the textarea can be resized.",
              "attribute": "resize"
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the textarea.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "readonly",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the textarea readonly.",
              "attribute": "readonly",
              "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": "Makes the textarea a required field.",
              "attribute": "required",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "minlength",
              "type": {
                "text": "number"
              },
              "description": "The minimum length of input that will be considered valid.",
              "attribute": "minlength"
            },
            {
              "kind": "field",
              "name": "maxlength",
              "type": {
                "text": "number"
              },
              "description": "The maximum length of input that will be considered valid.",
              "attribute": "maxlength"
            },
            {
              "kind": "field",
              "name": "autocapitalize",
              "type": {
                "text": "'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters'"
              },
              "description": "Controls whether and how text input is automatically capitalized as it is entered by the user.",
              "attribute": "autocapitalize"
            },
            {
              "kind": "field",
              "name": "autocorrect",
              "type": {
                "text": "string"
              },
              "description": "Indicates whether the browser's autocorrect feature is on or off.",
              "attribute": "autocorrect"
            },
            {
              "kind": "field",
              "name": "autocomplete",
              "type": {
                "text": "string"
              },
              "description": "Specifies what permission the browser has to provide assistance in filling out form field values. Refer to\n[this page on MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) for available values.",
              "attribute": "autocomplete"
            },
            {
              "kind": "field",
              "name": "autofocus",
              "type": {
                "text": "boolean"
              },
              "description": "Indicates that the input should receive focus on page load.",
              "attribute": "autofocus"
            },
            {
              "kind": "field",
              "name": "enterkeyhint",
              "type": {
                "text": "'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send'"
              },
              "description": "Used to customize the label or icon of the Enter key on virtual keyboards.",
              "attribute": "enterkeyhint"
            },
            {
              "kind": "field",
              "name": "spellcheck",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "description": "Enables spell checking on the textarea.",
              "attribute": "spellcheck"
            },
            {
              "kind": "field",
              "name": "inputmode",
              "type": {
                "text": "'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url'"
              },
              "description": "Tells the browser what type of data will be entered by the user, allowing it to display the appropriate virtual\nkeyboard on supportive devices.",
              "attribute": "inputmode"
            },
            {
              "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": "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": "handleChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleFocus",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleInput",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleInvalid",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "setTextareaHeight",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "focus",
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "FocusOptions"
                  }
                }
              ],
              "description": "Sets focus on the textarea."
            },
            {
              "kind": "method",
              "name": "blur",
              "description": "Removes focus from the textarea."
            },
            {
              "kind": "method",
              "name": "select",
              "description": "Selects all the text in the textarea."
            },
            {
              "kind": "method",
              "name": "scrollPosition",
              "return": {
                "type": {
                  "text": "{ top: number; left: number } | undefined"
                }
              },
              "parameters": [
                {
                  "name": "position",
                  "optional": true,
                  "type": {
                    "text": "{ top?: number; left?: number }"
                  }
                }
              ],
              "description": "Gets or sets the textarea's scroll position."
            },
            {
              "kind": "method",
              "name": "setSelectionRange",
              "parameters": [
                {
                  "name": "selectionStart",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "selectionEnd",
                  "type": {
                    "text": "number"
                  }
                },
                {
                  "name": "selectionDirection",
                  "default": "'none'",
                  "type": {
                    "text": "'forward' | 'backward' | 'none'"
                  }
                }
              ],
              "description": "Sets the start and end positions of the text selection (0-based)."
            },
            {
              "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",
                  "optional": true,
                  "type": {
                    "text": "'select' | 'start' | 'end' | 'preserve'"
                  }
                }
              ],
              "description": "Replaces a range of text with a new string."
            },
            {
              "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": "flow-ui-blur",
              "reactName": "onFlowUiBlur"
            },
            {
              "description": "Emitted when an alteration to the control's value is committed by the user.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when the control gains focus.",
              "name": "flow-ui-focus",
              "reactName": "onFlowUiFocus"
            },
            {
              "description": "Emitted when the control receives input.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            },
            {
              "description": "Emitted when the form control has been checked for validity and its constraints aren't satisfied.",
              "name": "flow-ui-invalid",
              "reactName": "onFlowUiInvalid"
            }
          ],
          "attributes": [
            {
              "name": "name",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The name of the textarea, submitted as a name/value pair with form data.",
              "fieldName": "name"
            },
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The current value of the textarea, submitted as a name/value pair with form data.",
              "fieldName": "value"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The textarea's size.",
              "fieldName": "size"
            },
            {
              "name": "filled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a filled textarea.",
              "fieldName": "filled"
            },
            {
              "name": "label",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The textarea's label. If you need to display HTML, use the `label` slot instead.",
              "fieldName": "label"
            },
            {
              "name": "help-text",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The textarea's help text. If you need to display HTML, use the `help-text` slot instead.",
              "fieldName": "helpText"
            },
            {
              "name": "placeholder",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Placeholder text to show as a hint when the input is empty.",
              "fieldName": "placeholder"
            },
            {
              "name": "rows",
              "type": {
                "text": "number"
              },
              "default": "4",
              "description": "The number of rows to display by default.",
              "fieldName": "rows"
            },
            {
              "name": "resize",
              "type": {
                "text": "'none' | 'vertical' | 'auto'"
              },
              "default": "'vertical'",
              "description": "Controls how the textarea can be resized.",
              "fieldName": "resize"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the textarea.",
              "fieldName": "disabled"
            },
            {
              "name": "readonly",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Makes the textarea readonly.",
              "fieldName": "readonly"
            },
            {
              "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 textarea a required field.",
              "fieldName": "required"
            },
            {
              "name": "minlength",
              "type": {
                "text": "number"
              },
              "description": "The minimum length of input that will be considered valid.",
              "fieldName": "minlength"
            },
            {
              "name": "maxlength",
              "type": {
                "text": "number"
              },
              "description": "The maximum length of input that will be considered valid.",
              "fieldName": "maxlength"
            },
            {
              "name": "autocapitalize",
              "type": {
                "text": "'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters'"
              },
              "description": "Controls whether and how text input is automatically capitalized as it is entered by the user.",
              "fieldName": "autocapitalize"
            },
            {
              "name": "autocorrect",
              "type": {
                "text": "string"
              },
              "description": "Indicates whether the browser's autocorrect feature is on or off.",
              "fieldName": "autocorrect"
            },
            {
              "name": "autocomplete",
              "type": {
                "text": "string"
              },
              "description": "Specifies what permission the browser has to provide assistance in filling out form field values. Refer to\n[this page on MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) for available values.",
              "fieldName": "autocomplete"
            },
            {
              "name": "autofocus",
              "type": {
                "text": "boolean"
              },
              "description": "Indicates that the input should receive focus on page load.",
              "fieldName": "autofocus"
            },
            {
              "name": "enterkeyhint",
              "type": {
                "text": "'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send'"
              },
              "description": "Used to customize the label or icon of the Enter key on virtual keyboards.",
              "fieldName": "enterkeyhint"
            },
            {
              "name": "spellcheck",
              "type": {
                "text": "boolean"
              },
              "default": "true",
              "description": "Enables spell checking on the textarea.",
              "fieldName": "spellcheck"
            },
            {
              "name": "inputmode",
              "type": {
                "text": "'none' | 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url'"
              },
              "description": "Tells the browser what type of data will be entered by the user, allowing it to display the appropriate virtual\nkeyboard on supportive devices.",
              "fieldName": "inputmode"
            }
          ],
          "superclass": {
            "name": "FlowRdfFormControl",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-textarea",
          "summary": "Textareas collect data from the user and allow multiple lines of text.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTextarea",
            "module": "components/textarea/textarea.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/textarea/textarea.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./textarea.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTextarea",
            "module": "components/textarea/textarea.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/timer/ticker.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "Ticker",
          "members": [
            {
              "kind": "field",
              "name": "subscribers",
              "type": {
                "text": "TickerSubscriptionFn[]"
              },
              "privacy": "private",
              "default": "[]"
            },
            {
              "kind": "field",
              "name": "timer",
              "type": {
                "text": "ReturnType<typeof setTimeout> | undefined"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "currentDateTime",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "nextUpdateAt",
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "zone",
              "type": {
                "text": "string | undefined"
              },
              "privacy": "private",
              "default": "zone"
            },
            {
              "kind": "field",
              "name": "tickInterval",
              "type": {
                "text": "DurationLikeObject"
              },
              "privacy": "private",
              "default": "tickInterval"
            },
            {
              "kind": "method",
              "name": "subscribe",
              "return": {
                "type": {
                  "text": "TickerSubscription"
                }
              },
              "parameters": [
                {
                  "name": "fn",
                  "type": {
                    "text": "TickerSubscriptionFn"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "unsubscribe",
              "parameters": [
                {
                  "name": "fn",
                  "type": {
                    "text": "TickerSubscriptionFn"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "start"
            },
            {
              "kind": "method",
              "name": "stop"
            },
            {
              "kind": "method",
              "name": "setZone",
              "parameters": [
                {
                  "name": "zone",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "setTickInterval",
              "parameters": [
                {
                  "name": "tickInterval",
                  "type": {
                    "text": "DurationLikeObject"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "tick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "forceMajor",
                  "default": "false"
                }
              ],
              "description": "Tick the clock\n\nA major-rounded tick is forced when the clock is started to ensure\nthat the timer control updates its value as soon as 'play' is clicked,\nrather than waiting for the next major tick."
            },
            {
              "kind": "method",
              "name": "notifySubscribers",
              "privacy": "private",
              "parameters": [
                {
                  "name": "dateTime",
                  "type": {
                    "text": "DateTime"
                  }
                },
                {
                  "name": "tickType",
                  "type": {
                    "text": "'minor' | 'major'"
                  }
                }
              ]
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "Ticker",
          "declaration": {
            "name": "Ticker",
            "module": "components/timer/ticker.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/timer/timer.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "The timer component is the primary time control for Flo.w time-based visualizations. The current timer value is typically bound to a reactive state property\nso that reactive queries and computed state will be re-evaluated when the timer changes.\n\nThe timer value is an ISO8601 date/time string.\n\nThe timer operates in two modes:\n\n- running - the timer is set to 'real time' and updates every second.\n- paused - the timer is set to a specific time and does not update automatically.\n\nSelecting a date/time with the timer step controls or the popup calendar will set the timer to paused mode.\nClicking the play button switches the timer to 'real time' running mode.\nThe mode can also be set programmatically using the `running` attribute.",
          "name": "FlowUiTimer",
          "members": [
            {
              "kind": "field",
              "name": "ticker",
              "type": {
                "text": "Ticker"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "tickerSubscription",
              "type": {
                "text": "TickerSubscription"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "minorStepDuration",
              "type": {
                "text": "DurationLikeObject"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "majorStepDuration",
              "type": {
                "text": "DurationLikeObject"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "dropdown",
              "type": {
                "text": "FlowDropdown"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "calendar",
              "type": {
                "text": "FlowCalendar"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "_displayDateTime",
              "type": {
                "text": "DateTime"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The value of the timer. (ISO8601 date/time string)",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "timezone",
              "type": {
                "text": "string | undefined"
              },
              "description": "The timezone to use for display. (IANA timezone string).\nIf not set, the timezone will be the browser's local timezone.",
              "attribute": "timezone"
            },
            {
              "kind": "field",
              "name": "locale",
              "type": {
                "text": "string | undefined"
              },
              "description": "The locale to use for display. (IETF BCP 47 language tag).\nIf not set, the locale will be the browser's default locale.",
              "attribute": "locale"
            },
            {
              "kind": "field",
              "name": "running",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to start the timer running.",
              "attribute": "running",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "dateFormat",
              "type": {
                "text": "string"
              },
              "default": "'DD'",
              "description": "The date format to use for display as a [Luxon format string](https://moment.github.io/luxon/#/formatting?id=table-of-tokens).",
              "attribute": "dateFormat"
            },
            {
              "kind": "field",
              "name": "dayFormat",
              "type": {
                "text": "string"
              },
              "default": "'ccc'",
              "description": "The day format to use for display as a [Luxon format string](https://moment.github.io/luxon/#/formatting?id=table-of-tokens).",
              "attribute": "dayFormat"
            },
            {
              "kind": "field",
              "name": "timeFormat",
              "type": {
                "text": "string"
              },
              "default": "'TT'",
              "description": "The time format to use for display as a [Luxon format string](https://moment.github.io/luxon/#/formatting?id=table-of-tokens).",
              "attribute": "timeFormat"
            },
            {
              "kind": "field",
              "name": "zoneFormat",
              "type": {
                "text": "string"
              },
              "default": "'ZZZZ'",
              "description": "The timezone format to use for display as a [Luxon format string](https://moment.github.io/luxon/#/formatting?id=table-of-tokens).",
              "attribute": "zoneFormat"
            },
            {
              "kind": "field",
              "name": "majorStep",
              "type": {
                "text": "string"
              },
              "default": "'1 minute'",
              "description": "The major step size to use for the timer step controls.",
              "attribute": "major-step"
            },
            {
              "kind": "field",
              "name": "minorStep",
              "type": {
                "text": "string"
              },
              "default": "'5 seconds'",
              "description": "The minor step size to use for the timer step controls.",
              "attribute": "minor-step"
            },
            {
              "kind": "field",
              "name": "updateInterval",
              "type": {
                "text": "string"
              },
              "default": "'5 seconds'",
              "description": "The timer update interval.",
              "attribute": "update-interval"
            },
            {
              "kind": "field",
              "name": "hideZone",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to hide the timezone display.",
              "attribute": "hide-zone"
            },
            {
              "kind": "field",
              "name": "placement",
              "type": {
                "text": "'top' | 'top-end' | 'top-start' | 'bottom' | 'bottom-start' | 'bottom-end'"
              },
              "default": "'bottom-start'",
              "description": "The placement of the calendar popup relative to the timer control.",
              "attribute": "placement"
            },
            {
              "kind": "method",
              "name": "setDisplayDateTime",
              "privacy": "private",
              "parameters": [
                {
                  "name": "dateTime",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleDateTimeKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleCalendarChange",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "CustomEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handlePlayPauseClicked",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleStepClicked",
              "privacy": "private",
              "parameters": [
                {
                  "name": "ev",
                  "type": {
                    "text": "MouseEvent"
                  }
                },
                {
                  "name": "direction",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "debouncedEmitChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "formattedDisplayDateTime",
              "privacy": "private",
              "parameters": [
                {
                  "name": "format",
                  "type": {
                    "text": "string"
                  }
                },
                {
                  "name": "uppercase",
                  "default": "false"
                }
              ]
            }
          ],
          "events": [
            {
              "description": "Emitted when the control's value changes.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when the control receives input.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            }
          ],
          "attributes": [
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The value of the timer. (ISO8601 date/time string)",
              "fieldName": "value"
            },
            {
              "name": "timezone",
              "type": {
                "text": "string | undefined"
              },
              "description": "The timezone to use for display. (IANA timezone string).\nIf not set, the timezone will be the browser's local timezone.",
              "fieldName": "timezone"
            },
            {
              "name": "locale",
              "type": {
                "text": "string | undefined"
              },
              "description": "The locale to use for display. (IETF BCP 47 language tag).\nIf not set, the locale will be the browser's default locale.",
              "fieldName": "locale"
            },
            {
              "name": "running",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to start the timer running.",
              "fieldName": "running"
            },
            {
              "name": "dateFormat",
              "type": {
                "text": "string"
              },
              "default": "'DD'",
              "description": "The date format to use for display as a [Luxon format string](https://moment.github.io/luxon/#/formatting?id=table-of-tokens).",
              "fieldName": "dateFormat"
            },
            {
              "name": "dayFormat",
              "type": {
                "text": "string"
              },
              "default": "'ccc'",
              "description": "The day format to use for display as a [Luxon format string](https://moment.github.io/luxon/#/formatting?id=table-of-tokens).",
              "fieldName": "dayFormat"
            },
            {
              "name": "timeFormat",
              "type": {
                "text": "string"
              },
              "default": "'TT'",
              "description": "The time format to use for display as a [Luxon format string](https://moment.github.io/luxon/#/formatting?id=table-of-tokens).",
              "fieldName": "timeFormat"
            },
            {
              "name": "zoneFormat",
              "type": {
                "text": "string"
              },
              "default": "'ZZZZ'",
              "description": "The timezone format to use for display as a [Luxon format string](https://moment.github.io/luxon/#/formatting?id=table-of-tokens).",
              "fieldName": "zoneFormat"
            },
            {
              "name": "major-step",
              "type": {
                "text": "string"
              },
              "default": "'1 minute'",
              "description": "The major step size to use for the timer step controls.",
              "fieldName": "majorStep"
            },
            {
              "name": "minor-step",
              "type": {
                "text": "string"
              },
              "default": "'5 seconds'",
              "description": "The minor step size to use for the timer step controls.",
              "fieldName": "minorStep"
            },
            {
              "name": "update-interval",
              "type": {
                "text": "string"
              },
              "default": "'5 seconds'",
              "description": "The timer update interval.",
              "fieldName": "updateInterval"
            },
            {
              "name": "hide-zone",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to hide the timezone display.",
              "fieldName": "hideZone"
            },
            {
              "name": "placement",
              "type": {
                "text": "'top' | 'top-end' | 'top-start' | 'bottom' | 'bottom-start' | 'bottom-end'"
              },
              "default": "'bottom-start'",
              "description": "The placement of the calendar popup relative to the timer control.",
              "fieldName": "placement"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-timer",
          "summary": "The timer component is the primary time control for Flo.w time-based visualizations.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTimer",
            "module": "components/timer/timer.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/timer/timer.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./timer.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTimer",
            "module": "components/timer/timer.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tool-button/tool-button.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiToolButton",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The button element.",
              "name": "button"
            },
            {
              "description": "The button element when checked.",
              "name": "button--checked"
            },
            {
              "description": "The tooltip element.",
              "name": "tooltip"
            },
            {
              "description": "The prefix slot.",
              "name": "prefix"
            },
            {
              "description": "The suffix slot.",
              "name": "suffix"
            },
            {
              "description": "The wrapper that contains the icon and label.",
              "name": "label-wrapper"
            },
            {
              "description": "The icon slot. Alternatively, you can use the `icon` attribute.",
              "name": "icon"
            },
            {
              "description": "The button label.",
              "name": "label"
            }
          ],
          "slots": [
            {
              "description": "A presentational prefix icon or similar element.",
              "name": "prefix"
            },
            {
              "description": "A presentational suffix icon or similar element.",
              "name": "suffix"
            },
            {
              "description": "The tool button's icon.",
              "name": "icon"
            },
            {
              "description": "The tool button's tooltip content.",
              "name": "tooltip"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "hasSlotController",
              "privacy": "private",
              "readonly": true,
              "default": "new HasSlotController(this, '[default]', 'prefix', 'suffix', 'icon')"
            },
            {
              "kind": "field",
              "name": "hasFocus",
              "type": {
                "text": "boolean"
              },
              "privacy": "protected",
              "default": "false"
            },
            {
              "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": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the radio button.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'x-small' | 'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The radio button's size. When used inside a radio group, the size will be determined by the radio group's size so\nthis attribute can typically be omitted.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a pill-style radio button with rounded edges.",
              "attribute": "pill",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "outline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws an tool button with with an outline.",
              "attribute": "outline",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "tooltip",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Tooltip text that gets displayed when the user hovers over the button. If you need to display HTML, use the\n`tooltip` slot instead.",
              "attribute": "tooltip"
            },
            {
              "kind": "field",
              "name": "tooltipPlacement",
              "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": "tooltip-placement"
            },
            {
              "kind": "field",
              "name": "tooltipDistance",
              "type": {
                "text": "number"
              },
              "default": "8",
              "description": "The distance in pixels from which to offset the tooltip away from the button.",
              "attribute": "tooltip-distance"
            },
            {
              "kind": "field",
              "name": "tooltipSkidding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The distance in pixels from which to offset the tooltip along the button.",
              "attribute": "tooltip-skidding"
            },
            {
              "kind": "field",
              "name": "icon",
              "type": {
                "text": "string | undefined"
              },
              "description": "Specify an icon by name to display above the tool button label. Available names depend on the icon library being used.",
              "attribute": "icon"
            },
            {
              "kind": "field",
              "name": "iconSrc",
              "type": {
                "text": "string | undefined"
              },
              "description": "Specify an external SVG file to display as an icon above the tool button label.",
              "attribute": "icon-src"
            },
            {
              "kind": "field",
              "name": "iconLibrary",
              "type": {
                "text": "string"
              },
              "default": "'default'",
              "description": "The name of a registered custom icon library.",
              "attribute": "icon-library"
            },
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'neutral'"
              },
              "attribute": "variant"
            },
            {
              "kind": "method",
              "name": "handleBlur",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "e",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleFocus",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "focus",
              "parameters": [
                {
                  "name": "options",
                  "optional": true,
                  "type": {
                    "text": "FocusOptions"
                  }
                }
              ],
              "description": "Sets focus on the radio button."
            },
            {
              "kind": "method",
              "name": "blur",
              "description": "Removes focus from the radio button."
            },
            {
              "kind": "method",
              "name": "renderWithTooltip",
              "privacy": "private",
              "parameters": [
                {
                  "name": "content",
                  "type": {
                    "text": "TemplateResult"
                  }
                }
              ]
            }
          ],
          "attributes": [
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "description": "The radio's value. When selected, the radio group will receive this value.",
              "fieldName": "value"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the radio button.",
              "fieldName": "disabled"
            },
            {
              "name": "size",
              "type": {
                "text": "'x-small' | 'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The radio button's size. When used inside a radio group, the size will be determined by the radio group's size so\nthis attribute can typically be omitted.",
              "fieldName": "size"
            },
            {
              "name": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws a pill-style radio button with rounded edges.",
              "fieldName": "pill"
            },
            {
              "name": "outline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws an tool button with with an outline.",
              "fieldName": "outline"
            },
            {
              "name": "tooltip",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "Tooltip text that gets displayed when the user hovers over the button. If you need to display HTML, use the\n`tooltip` slot instead.",
              "fieldName": "tooltip"
            },
            {
              "name": "tooltip-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": "tooltipPlacement"
            },
            {
              "name": "tooltip-distance",
              "type": {
                "text": "number"
              },
              "default": "8",
              "description": "The distance in pixels from which to offset the tooltip away from the button.",
              "fieldName": "tooltipDistance"
            },
            {
              "name": "tooltip-skidding",
              "type": {
                "text": "number"
              },
              "default": "0",
              "description": "The distance in pixels from which to offset the tooltip along the button.",
              "fieldName": "tooltipSkidding"
            },
            {
              "name": "icon",
              "type": {
                "text": "string | undefined"
              },
              "description": "Specify an icon by name to display above the tool button label. Available names depend on the icon library being used.",
              "fieldName": "icon"
            },
            {
              "name": "icon-src",
              "type": {
                "text": "string | undefined"
              },
              "description": "Specify an external SVG file to display as an icon above the tool button label.",
              "fieldName": "iconSrc"
            },
            {
              "name": "icon-library",
              "type": {
                "text": "string"
              },
              "default": "'default'",
              "description": "The name of a registered custom icon library.",
              "fieldName": "iconLibrary"
            },
            {
              "name": "variant",
              "type": {
                "text": "'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'neutral'"
              },
              "fieldName": "variant"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-tool-button",
          "summary": "Tool buttons are used to build [toolbars](./flow-ui-tool-button-group). They can be used to toggle a state or perform an action.",
          "dependencies": [
            "flow-ui-icon",
            "flow-ui-tooltip"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiToolButton",
            "module": "components/tool-button/tool-button.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tool-button/tool-button.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./tool-button.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiToolButton",
            "module": "components/tool-button/tool-button.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tool-button-group/tool-button-group.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiToolButtonGroup",
          "members": [
            {
              "kind": "field",
              "name": "customValidityMessage",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "default": "''"
            },
            {
              "kind": "field",
              "name": "validationTimeout",
              "type": {
                "text": "number"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "validationInput",
              "type": {
                "text": "HTMLInputElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "errorMessage",
              "type": {
                "text": "string"
              },
              "privacy": "private",
              "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": "name",
              "type": {
                "text": "string"
              },
              "default": "'option'",
              "description": "The name of the tool button group, submitted as a name/value pair with form data.",
              "attribute": "name"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string | string[]"
              },
              "default": "''",
              "description": "The current value of the tool button group, submitted as a name/value pair with form data. When `checkbox` mode is enabled, the\nvalue will be a space-delimited list of values based on the checked tool buttons.",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'x-small' | '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": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws pill-style tool buttons. This style will be applied to all child tool buttons.",
              "attribute": "pill",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "outline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws outline-style tool buttons. This style will be applied to all child tool buttons.",
              "attribute": "outline",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "variant",
              "type": {
                "text": "'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'neutral'"
              },
              "default": "'primary'",
              "attribute": "variant"
            },
            {
              "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": "vertical",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Use vertical layout for the radio group.",
              "attribute": "vertical",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "mode",
              "type": {
                "text": "'radio' | 'checkbox'"
              },
              "default": "'radio'",
              "attribute": "mode"
            },
            {
              "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": "getAllToolButtons",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleButtonClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleInvalid",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "syncButtons",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "updateCheckedButtons",
              "privacy": "private"
            },
            {
              "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."
            }
          ],
          "events": [
            {
              "description": "Emitted when the control's value changes.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            },
            {
              "description": "Emitted when the control receives input.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            }
          ],
          "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": "name",
              "type": {
                "text": "string"
              },
              "default": "'option'",
              "description": "The name of the tool button group, submitted as a name/value pair with form data.",
              "fieldName": "name"
            },
            {
              "name": "value",
              "type": {
                "text": "string | string[]"
              },
              "default": "''",
              "description": "The current value of the tool button group, submitted as a name/value pair with form data. When `checkbox` mode is enabled, the\nvalue will be a space-delimited list of values based on the checked tool buttons.",
              "fieldName": "value"
            },
            {
              "name": "size",
              "type": {
                "text": "'x-small' | '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": "pill",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws pill-style tool buttons. This style will be applied to all child tool buttons.",
              "fieldName": "pill"
            },
            {
              "name": "outline",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws outline-style tool buttons. This style will be applied to all child tool buttons.",
              "fieldName": "outline"
            },
            {
              "name": "variant",
              "type": {
                "text": "'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'neutral'"
              },
              "default": "'primary'",
              "fieldName": "variant"
            },
            {
              "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": "vertical",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Use vertical layout for the radio group.",
              "fieldName": "vertical"
            },
            {
              "name": "mode",
              "type": {
                "text": "'radio' | 'checkbox'"
              },
              "default": "'radio'",
              "fieldName": "mode"
            }
          ],
          "superclass": {
            "name": "FlowRdfFormControl",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-tool-button-group",
          "summary": "Tool buttons groups are used to build toolbars from [tool buttons](./flow-ui-tool-button).",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiToolButtonGroup",
            "module": "components/tool-button-group/tool-button-group.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tool-button-group/tool-button-group.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./tool-button-group.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiToolButtonGroup",
            "module": "components/tool-button-group/tool-button-group.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tooltip/tooltip.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiTooltip",
          "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 `<flow-ui-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's body where its content is rendered.",
              "name": "body"
            }
          ],
          "slots": [
            {
              "description": "The tooltip's target element. Avoid slotting in more than one element, as subsequent ones will be ignored.",
              "name": ""
            },
            {
              "description": "The content to render in the tooltip. Alternatively, you can use the `content` attribute.",
              "name": "content"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "hoverTimeout",
              "type": {
                "text": "number"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "content",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The tooltip's content. If you need to display HTML, use the `content` slot instead.",
              "attribute": "content"
            },
            {
              "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 away from its target.",
              "attribute": "distance"
            },
            {
              "kind": "field",
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the tooltip 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 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": "method",
              "name": "handleBlur",
              "privacy": "private"
            },
            {
              "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": "handleMouseOver",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleMouseOut",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "hasTrigger",
              "privacy": "private",
              "parameters": [
                {
                  "name": "triggerType",
                  "type": {
                    "text": "string"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "show",
              "description": "Shows the tooltip."
            },
            {
              "kind": "method",
              "name": "hide",
              "description": "Hides the tooltip"
            }
          ],
          "events": [
            {
              "description": "Emitted when the tooltip begins to show.",
              "name": "flow-ui-show",
              "reactName": "onFlowUiShow"
            },
            {
              "description": "Emitted after the tooltip has shown and all animations are complete.",
              "name": "flow-ui-after-show",
              "reactName": "onFlowUiAfterShow"
            },
            {
              "description": "Emitted when the tooltip begins to hide.",
              "name": "flow-ui-hide",
              "reactName": "onFlowUiHide"
            },
            {
              "description": "Emitted after the tooltip has hidden and all animations are complete.",
              "name": "flow-ui-after-hide",
              "reactName": "onFlowUiAfterHide"
            }
          ],
          "attributes": [
            {
              "name": "content",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The tooltip's content. If you need to display HTML, use the `content` slot instead.",
              "fieldName": "content"
            },
            {
              "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 away from its target.",
              "fieldName": "distance"
            },
            {
              "name": "open",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Indicates whether or not the tooltip 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 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": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-tooltip",
          "summary": "Tooltips display additional information based on a specific action.",
          "dependencies": [
            "flow-ui-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."
            }
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTooltip",
            "module": "components/tooltip/tooltip.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tooltip/tooltip.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./tooltip.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTooltip",
            "module": "components/tooltip/tooltip.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tree/tree.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiTree",
          "cssProperties": [
            {
              "description": "The size of the indentation for nested items.",
              "name": "--indent-size",
              "default": "var(--flow-ui-spacing-medium)"
            },
            {
              "description": "The color of the indentation line.",
              "name": "--indent-guide-color",
              "default": "var(--flow-ui-color-neutral-200)"
            },
            {
              "description": "The amount of vertical spacing to leave between the top and bottom of the indentation line's starting position.",
              "name": "--indent-guide-offset",
              "default": "0"
            },
            {
              "description": "The style of the indentation line, e.g. solid, dotted, dashed.",
              "name": "--indent-guide-style",
              "default": "solid"
            },
            {
              "description": "The width of the indentation line.",
              "name": "--indent-guide-width",
              "default": "0"
            }
          ],
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            }
          ],
          "slots": [
            {
              "description": "The default slot.",
              "name": ""
            },
            {
              "description": "The icon to show when the tree item is expanded. Works best with `<flow-ui-icon>`.",
              "name": "expand-icon"
            },
            {
              "description": "The icon to show when the tree item is collapsed. Works best with `<flow-ui-icon>`.",
              "name": "collapse-icon"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "expandedIconSlot",
              "type": {
                "text": "HTMLSlotElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "collapsedIconSlot",
              "type": {
                "text": "HTMLSlotElement"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string[]"
              },
              "default": "[]",
              "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.**",
              "attribute": "value"
            },
            {
              "kind": "field",
              "name": "selectionMode",
              "type": {
                "text": "'single' | 'multiple' | 'leaf'"
              },
              "default": "'multiple'",
              "description": "The selection behavior of the tree. Single selection allows only one node to be selected at a time. Multiple\ndisplays checkboxes and allows more than one node to be selected. Leaf allows only leaf nodes to be selected.",
              "attribute": "selection-mode"
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The select's size.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "lastFocusedItem",
              "type": {
                "text": "FlowTreeItem"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "mutationObserver",
              "type": {
                "text": "MutationObserver"
              },
              "privacy": "private"
            },
            {
              "kind": "field",
              "name": "clickTarget",
              "type": {
                "text": "FlowTreeItem | null"
              },
              "privacy": "private",
              "default": "null"
            },
            {
              "kind": "method",
              "name": "getExpandButtonIcon",
              "privacy": "private",
              "parameters": [
                {
                  "name": "status",
                  "type": {
                    "text": "'expand' | 'collapse'"
                  }
                }
              ]
            },
            {
              "kind": "field",
              "name": "initTreeItem",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "handleTreeChanged",
              "privacy": "private",
              "parameters": [
                {
                  "name": "mutations",
                  "type": {
                    "text": "MutationRecord[]"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "syncTreeItems",
              "privacy": "private",
              "parameters": [
                {
                  "name": "selectedItem",
                  "optional": true,
                  "type": {
                    "text": "FlowTreeItem"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "selectItem",
              "privacy": "private",
              "parameters": [
                {
                  "name": "selectedItem",
                  "type": {
                    "text": "FlowTreeItem"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "getAllTreeItems",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "focusItem",
              "privacy": "private",
              "parameters": [
                {
                  "name": "item",
                  "optional": true,
                  "type": {
                    "text": "FlowTreeItem | null"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleKeyDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "KeyboardEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleClick",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleMouseDown",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "MouseEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleFocusOut",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "FocusEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleFocusIn",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "FocusEvent"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleHostExpandCollapse",
              "privacy": "private",
              "parameters": [
                {
                  "name": "event",
                  "type": {
                    "text": "Event"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "handleSlotChange",
              "privacy": "private"
            }
          ],
          "events": [
            {
              "description": "Emitted when a tree item is selected or deselected.",
              "name": "flow-ui-input",
              "reactName": "onFlowUiInput"
            },
            {
              "description": "Emitted when a tree item is selected or deselected.",
              "name": "flow-ui-change",
              "reactName": "onFlowUiChange"
            }
          ],
          "attributes": [
            {
              "name": "value",
              "type": {
                "text": "string[]"
              },
              "default": "[]",
              "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.**",
              "fieldName": "value"
            },
            {
              "name": "selection-mode",
              "type": {
                "text": "'single' | 'multiple' | 'leaf'"
              },
              "default": "'multiple'",
              "description": "The selection behavior of the tree. Single selection allows only one node to be selected at a time. Multiple\ndisplays checkboxes and allows more than one node to be selected. Leaf allows only leaf nodes to be selected.",
              "fieldName": "selectionMode"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The select's size.",
              "fieldName": "size"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-tree",
          "summary": "Trees allow you to display a hierarchical list of selectable [tree items](./flow-ui-tree-item). Items with children can be expanded and collapsed as desired by the user.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTree",
            "module": "components/tree/tree.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tree/tree.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./tree.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTree",
            "module": "components/tree/tree.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tree-item/tree-item.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiTreeItem",
          "cssParts": [
            {
              "description": "The component's base wrapper.",
              "name": "base"
            },
            {
              "description": "The tree item's container. This element wraps everything except slotted tree item children.",
              "name": "item"
            },
            {
              "description": "Applied when the tree item is disabled.",
              "name": "item--disabled"
            },
            {
              "description": "Applied when the tree item is expanded.",
              "name": "item--expanded"
            },
            {
              "description": "Applied when the selection is indeterminate.",
              "name": "item--indeterminate"
            },
            {
              "description": "Applied when the tree item is selected.",
              "name": "item--selected"
            },
            {
              "description": "The tree item's indentation container.",
              "name": "indentation"
            },
            {
              "description": "The container that wraps the tree item's expand button and spinner.",
              "name": "expand-button"
            },
            {
              "description": "The tree item's label.",
              "name": "label"
            },
            {
              "description": "The container that wraps the tree item's nested children.",
              "name": "children"
            },
            {
              "description": "The checkbox that shows when using multiselect.",
              "name": "checkbox"
            },
            {
              "description": "The checkbox's exported `base` part.",
              "name": "checkbox__base"
            },
            {
              "description": "The checkbox's exported `control` part.",
              "name": "checkbox__control"
            },
            {
              "description": "The checkbox's exported `control--checked` part.",
              "name": "checkbox__control--checked"
            },
            {
              "description": "The checkbox's exported `control--indeterminate` part.",
              "name": "checkbox__control--indeterminate"
            },
            {
              "description": "The checkbox's exported `checked-icon` part.",
              "name": "checkbox__checked-icon"
            },
            {
              "description": "The checkbox's exported `indeterminate-icon` part.",
              "name": "checkbox__indeterminate-icon"
            },
            {
              "description": "The checkbox's exported `label` part.",
              "name": "checkbox__label"
            }
          ],
          "slots": [
            {
              "description": "The default slot.",
              "name": ""
            },
            {
              "description": "The icon to show when the tree item is expanded.",
              "name": "expand-icon"
            },
            {
              "description": "The icon to show when the tree item is collapsed.",
              "name": "collapse-icon"
            }
          ],
          "members": [
            {
              "kind": "field",
              "name": "localize",
              "privacy": "private",
              "readonly": true,
              "default": "new LocalizeController(this)"
            },
            {
              "kind": "field",
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The tree-items's value. When selected, the containing tree control will receive this value. The value must be unique\nfrom other tree-items in the same tree. Values may not contain spaces, as spaces are used as delimiters when listing\nmultiple values.",
              "attribute": "value",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "expanded",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Expands the tree item.",
              "attribute": "expanded",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "selected",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the tree item in a selected state.",
              "attribute": "selected",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the tree item.",
              "attribute": "disabled",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "lazy",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Enables lazy loading behavior.",
              "attribute": "lazy",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The select's size.",
              "attribute": "size",
              "reflects": true
            },
            {
              "kind": "field",
              "name": "hidden",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to visually hide the tree item.",
              "attribute": "hidden",
              "reflects": true
            },
            {
              "kind": "method",
              "name": "animateCollapse",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "isNestedItem",
              "privacy": "private",
              "return": {
                "type": {
                  "text": "boolean"
                }
              }
            },
            {
              "kind": "method",
              "name": "handleChildrenSlotChange",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "animateExpand",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "getChildrenItems",
              "return": {
                "type": {
                  "text": "FlowUiTreeItem[]"
                }
              },
              "parameters": [
                {
                  "name": "{ includeDisabled = true }",
                  "default": "{}",
                  "type": {
                    "text": "{ includeDisabled?: boolean }"
                  }
                }
              ],
              "description": "Gets all the nested tree items in this node."
            }
          ],
          "events": [
            {
              "description": "Emitted when the tree item expands.",
              "name": "flow-ui-expand",
              "reactName": "onFlowUiExpand"
            },
            {
              "description": "Emitted after the tree item expands and all animations are complete.",
              "name": "flow-ui-after-expand",
              "reactName": "onFlowUiAfterExpand"
            },
            {
              "description": "Emitted when the tree item collapses.",
              "name": "flow-ui-collapse",
              "reactName": "onFlowUiCollapse"
            },
            {
              "description": "Emitted after the tree item collapses and all animations are complete.",
              "name": "flow-ui-after-collapse",
              "reactName": "onFlowUiAfterCollapse"
            },
            {
              "description": "Emitted when the tree item's lazy state changes.",
              "name": "flow-ui-lazy-change",
              "reactName": "onFlowUiLazyChange"
            },
            {
              "description": "Emitted when a lazy item is selected. Use this event to asynchronously load data and append items to the tree before expanding. After appending new items, remove the `lazy` attribute to remove the loading state and update the tree.",
              "name": "flow-ui-lazy-load",
              "reactName": "onFlowUiLazyLoad"
            }
          ],
          "attributes": [
            {
              "name": "value",
              "type": {
                "text": "string"
              },
              "default": "''",
              "description": "The tree-items's value. When selected, the containing tree control will receive this value. The value must be unique\nfrom other tree-items in the same tree. Values may not contain spaces, as spaces are used as delimiters when listing\nmultiple values.",
              "fieldName": "value"
            },
            {
              "name": "expanded",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Expands the tree item.",
              "fieldName": "expanded"
            },
            {
              "name": "selected",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Draws the tree item in a selected state.",
              "fieldName": "selected"
            },
            {
              "name": "disabled",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Disables the tree item.",
              "fieldName": "disabled"
            },
            {
              "name": "lazy",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Enables lazy loading behavior.",
              "fieldName": "lazy"
            },
            {
              "name": "size",
              "type": {
                "text": "'small' | 'medium' | 'large'"
              },
              "default": "'medium'",
              "description": "The select's size.",
              "fieldName": "size"
            },
            {
              "name": "hidden",
              "type": {
                "text": "boolean"
              },
              "default": "false",
              "description": "Set to `true` to visually hide the tree item.",
              "fieldName": "hidden"
            }
          ],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-tree-item",
          "summary": "A tree item serves as a hierarchical node that lives inside a [tree](/components/tree).",
          "dependencies": [
            "flow-ui-checkbox",
            "flow-ui-icon",
            "flow-ui-progress-ring"
          ],
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTreeItem",
            "module": "components/tree-item/tree-item.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/tree-item/tree-item.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./tree-item.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiTreeItem",
            "module": "components/tree-item/tree-item.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/visually-hidden/visually-hidden.component.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "FlowUiVisuallyHidden",
          "slots": [
            {
              "description": "The content to be visually hidden.",
              "name": ""
            }
          ],
          "members": [],
          "superclass": {
            "name": "FlowRdfElement",
            "module": "/src/internal/flow-ui-rdf-element"
          },
          "tagName": "flow-ui-visually-hidden",
          "summary": "The visually hidden utility makes content accessible to assistive devices without displaying it on the screen.",
          "customElement": true
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiVisuallyHidden",
            "module": "components/visually-hidden/visually-hidden.component.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/visually-hidden/visually-hidden.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "*",
          "declaration": {
            "name": "*",
            "package": "./visually-hidden.component"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "FlowUiVisuallyHidden",
            "module": "components/visually-hidden/visually-hidden.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/chart/chartjs-plugins/interaction.interpolate.js",
      "declarations": [
        {
          "kind": "function",
          "name": "Interpolate",
          "parameters": [
            {
              "name": "chart",
              "type": {
                "text": "Chart"
              }
            },
            {
              "name": "e",
              "type": {
                "text": "ChartEvent"
              }
            },
            {
              "name": "options",
              "type": {
                "text": "InteractionOptions"
              }
            }
          ],
          "description": "Custom interaction mode to interpolate values on the chart."
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "Interpolate",
            "module": "components/chart/chartjs-plugins/interaction.interpolate.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/chart/chartjs-plugins/luxon.adapter.js",
      "declarations": [],
      "exports": []
    },
    {
      "kind": "javascript-module",
      "path": "components/chart/chartjs-plugins/plugin.flow-ui-colors.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "module": "components/chart/chartjs-plugins/plugin.flow-ui-colors.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/chart/chartjs-plugins/plugin.flow-ui-crosshairs.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "module": "components/chart/chartjs-plugins/plugin.flow-ui-crosshairs.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/chart/chartjs-plugins/positioner.cursor.js",
      "declarations": [
        {
          "kind": "function",
          "name": "CursorPositioner",
          "parameters": [
            {
              "name": "this",
              "type": {
                "text": "TooltipModel<any>"
              }
            },
            {
              "name": "_elements",
              "type": {
                "text": "Element[]"
              }
            },
            {
              "name": "eventPosition",
              "type": {
                "text": "Point"
              }
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "CursorPositioner",
            "module": "components/chart/chartjs-plugins/positioner.cursor.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/chart/chartjs-plugins/symlog.scale.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "SymlogAxis",
          "members": [
            {
              "kind": "field",
              "name": "id",
              "type": {
                "text": "string"
              },
              "static": true,
              "default": "'symlog'"
            },
            {
              "kind": "field",
              "name": "defaults",
              "type": {
                "text": "object"
              },
              "static": true,
              "default": "{}"
            },
            {
              "kind": "field",
              "name": "_scale",
              "privacy": "private"
            },
            {
              "kind": "method",
              "name": "parse",
              "return": {
                "type": {
                  "text": "unknown"
                }
              },
              "parameters": [
                {
                  "name": "raw",
                  "type": {
                    "text": "unknown"
                  }
                },
                {
                  "name": "index",
                  "optional": true,
                  "type": {
                    "text": "number"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "determineDataLimits"
            },
            {
              "kind": "method",
              "name": "buildTicks"
            },
            {
              "kind": "method",
              "name": "configure",
              "privacy": "protected"
            },
            {
              "kind": "method",
              "name": "getPixelForValue",
              "parameters": [
                {
                  "name": "value",
                  "type": {
                    "text": "number"
                  }
                }
              ]
            },
            {
              "kind": "method",
              "name": "getValueForPixel",
              "parameters": [
                {
                  "name": "pixel",
                  "type": {
                    "text": "number"
                  }
                }
              ]
            }
          ],
          "superclass": {
            "name": "Scale",
            "package": "chart.js"
          }
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "SymlogAxis",
            "module": "components/chart/chartjs-plugins/symlog.scale.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/query-builder/converters/flow-query-converters.js",
      "declarations": [
        {
          "kind": "function",
          "name": "converter",
          "parameters": [
            {
              "name": "ruleset",
              "type": {
                "text": "FlowQueryBuilderRuleSet"
              }
            },
            {
              "name": "config",
              "type": {
                "text": "FlowQueryBuilderConfig"
              }
            },
            {
              "name": "options",
              "optional": true,
              "type": {
                "text": "FlowQueryBuilderConverterOptions"
              }
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "converter",
            "module": "components/query-builder/converters/flow-query-converters.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/query-builder/converters/index.js",
      "declarations": [],
      "exports": [
        {
          "kind": "js",
          "name": "JavaScriptFilterError",
          "declaration": {
            "name": "JavaScriptFilterError",
            "module": "./javascript-filter-converter"
          }
        },
        {
          "kind": "js",
          "name": "JavaScriptFilterFn",
          "declaration": {
            "name": "JavaScriptFilterFn",
            "module": "./javascript-filter-converter"
          }
        },
        {
          "kind": "js",
          "name": "flowQueryConverter",
          "declaration": {
            "name": "flowQueryConverter",
            "module": "components/query-builder/converters/index.js"
          }
        },
        {
          "kind": "js",
          "name": "javascriptFilterConverter",
          "declaration": {
            "name": "javascriptFilterConverter",
            "module": "components/query-builder/converters/index.js"
          }
        },
        {
          "kind": "js",
          "name": "mapLayerFilterConverter",
          "declaration": {
            "name": "mapLayerFilterConverter",
            "module": "components/query-builder/converters/index.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/query-builder/converters/javascript-filter-converter.js",
      "declarations": [
        {
          "kind": "class",
          "description": "",
          "name": "JavaScriptFilterError",
          "superclass": {
            "name": "Error",
            "module": "src/components/query-builder/converters/javascript-filter-converter.ts"
          }
        },
        {
          "kind": "function",
          "name": "converter",
          "return": {
            "type": {
              "text": ""
            }
          },
          "parameters": [
            {
              "name": "ruleset",
              "type": {
                "text": "FlowQueryBuilderRuleSet"
              },
              "description": "Flo.w Query Builder ruleset to convert"
            },
            {
              "name": "config",
              "type": {
                "text": "FlowQueryBuilderConfig"
              },
              "description": "Flo.w Query Builder field configuration"
            },
            {
              "name": "options",
              "optional": true,
              "type": {
                "text": "FlowQueryBuilderConverterOptions"
              },
              "description": "Converter options"
            }
          ],
          "description": "A Query Builder converter that generates a JavaScript filter function from a user-specified FlowQueryBuilderRuleSet.\n\nThe generated filter function accepts a data object as an argument and returns a boolean result indicating whether the data object\nmatches the rule set.\n\nThis converter is typically used to apply a user-defined filter produced by the [Query Builder](/flow-rdf-ui/web-components/flow-ui-query-builder) component to a collection of data objects returned\nfrom a Flo.w reactive query. The filter is applied client-side as an alternative to server-side filtering using the flowQueryConverter converter.\n\nSee [Examples](#filtering-reactive-query-results) for example usage.\n\n\n### The generated filter function\n\nThe abstract logical expression defined by the Query Builder ruleset is compiled into a safe and efficient JavaScript function that is designed\nto be passed to the Array.filter method. To view the generated JavaScript expression for debugging purposes, inspect the `expression` property\nof the returned filter function. Note that the generated expression makes use of two internal helper functions: `get(prop, data)` to retrieve a\n sanitized property from the data object, and `regex(regex, value, caseInsensitive)` to compile, cache and evaluate regular expressions.\n\nOptionally, specify a type parameter when calling javascriptFilterConverter to strongly type the `data` parameter of the resulting filter function."
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "JavaScriptFilterError",
          "declaration": {
            "name": "JavaScriptFilterError",
            "module": "components/query-builder/converters/javascript-filter-converter.js"
          }
        },
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "converter",
            "module": "components/query-builder/converters/javascript-filter-converter.js"
          }
        }
      ]
    },
    {
      "kind": "javascript-module",
      "path": "components/query-builder/converters/map-layer-filter-converter.js",
      "declarations": [
        {
          "kind": "function",
          "name": "converter",
          "parameters": [
            {
              "name": "ruleset",
              "type": {
                "text": "FlowQueryBuilderRuleSet"
              }
            },
            {
              "name": "config",
              "type": {
                "text": "FlowQueryBuilderConfig"
              }
            },
            {
              "name": "options",
              "optional": true,
              "type": {
                "text": "FlowQueryBuilderConverterOptions"
              }
            }
          ]
        }
      ],
      "exports": [
        {
          "kind": "js",
          "name": "default",
          "declaration": {
            "name": "converter",
            "module": "components/query-builder/converters/map-layer-filter-converter.js"
          }
        }
      ]
    }
  ],
  "package": {
    "name": "@emuanalytics/flow-rdf-ui",
    "version": "4.1.25"
  }
}
