From a02f284baa1e4bc78dbad960377810a1665a5c49 Mon Sep 17 00:00:00 2001 From: sarahgm <38324334+sarahgm@users.noreply.github.com> Date: Tue, 2 Jul 2024 12:30:27 +0200 Subject: [PATCH] Fix: fix some props and add command to build step (#3979) --- .changeset/rotten-items-tell.md | 7 + .gitignore | 1 + docs/.component-props/index.json | 34840 ++++++++++------ .../routerprovider/routerprovider.mdx | 18 +- .../collection/selectlist/selectlist.mdx | 143 +- .../components/content/badge/badge.mdx | 2 +- docs/content/components/content/icon/icon.mdx | 17 +- docs/content/components/content/svg/svg.mdx | 23 +- .../form/fieldgroup/field-group.mdx | 12 +- docs/content/components/form/form/form.mdx | 50 +- .../content/components/form/select/select.mdx | 77 +- .../formatters/dateformat/dateFormat.mdx | 83 +- .../numericformat/numericFormat.mdx | 71 +- docs/content/components/layout/grid/grid.mdx | 30 +- .../layout/scrollable/scrollable.mdx | 18 +- docs/package.json | 2 +- docs/scripts/build-component-props.mjs | 6 + .../components/src/FieldBase/FieldGroup.tsx | 3 + packages/components/src/Select/Select.tsx | 53 + .../components/src/SelectList/SelectList.tsx | 6 + .../src/components/Formatters/DateFormat.tsx | 7 + .../components/Formatters/NumericFormat.tsx | 10 + packages/system/src/components/SVG/SVG.tsx | 6 + 23 files changed, 22784 insertions(+), 12701 deletions(-) create mode 100644 .changeset/rotten-items-tell.md diff --git a/.changeset/rotten-items-tell.md b/.changeset/rotten-items-tell.md new file mode 100644 index 0000000000..bbced4091f --- /dev/null +++ b/.changeset/rotten-items-tell.md @@ -0,0 +1,7 @@ +--- +"@marigold/docs": patch +"@marigold/components": patch +"@marigold/system": patch +--- + +Fix: fix some props and add command to build step diff --git a/.gitignore b/.gitignore index b8748a46c8..3a9bafb0d2 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ slack-notification.json out .contentlayer .registry +.component-props ## env .env*.local diff --git a/docs/.component-props/index.json b/docs/.component-props/index.json index d211306a3c..b28edfcf80 100644 --- a/docs/.component-props/index.json +++ b/docs/.component-props/index.json @@ -5314,6 +5314,873 @@ } } }, + "Autocomplete.tsx": { + "defaultValue": { + "defaultValue": null, + "description": "The value of the input (uncontrolled).", + "name": "defaultValue", + "parent": { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "value": { + "defaultValue": null, + "description": "The value of the input (controlled).", + "name": "value", + "parent": { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "onChange": { + "defaultValue": null, + "description": "Called when the input value changes.", + "name": "onChange", + "parent": { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + } + ], + "required": false, + "type": { + "name": "((value: string) => void)" + } + }, + "onClear": { + "defaultValue": null, + "description": "Called when the clear button is pressed.", + "name": "onClear", + "parent": { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + } + ], + "required": false, + "type": { + "name": "(() => void)" + } + }, + "disabled": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the input is disabled.", + "name": "disabled", + "parent": { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "required": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the input is required.", + "name": "required", + "parent": { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "error": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the field is considered invalid and if set the `errorMessage` is shown instead of the `description`.", + "name": "error", + "parent": { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "readOnly": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the input is readOnly.", + "name": "readOnly", + "parent": { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "placeholder": { + "defaultValue": null, + "description": "", + "name": "placeholder", + "parent": { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "onSubmit": { + "defaultValue": null, + "description": "Handler that is called when the SearchAutocomplete is submitted.\n\nA `key` will be passed if the submission is a selected item (e.g. a user\nclicks or presses enter on an option). If the input is a custom `value`, `key` will be `null`.\n\nA `value` will be passed if the submission is a custom value (e.g. a user\ntypes then presses enter). If the input is a selected item, `value` will be `null`.", + "name": "onSubmit", + "parent": { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", + "name": "AutocompleteProps" + } + ], + "required": false, + "type": { + "name": "((value: string | number | null, key: Key | null) => void)" + } + }, + "children": { + "defaultValue": null, + "description": "The children of the component. A function may be provided to alter the children based on component state.", + "name": "children", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RenderProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RenderProps" + } + ], + "required": false, + "type": { + "name": "ReactNode | ((values: ComboBoxRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" + } + }, + "validationBehavior": { + "defaultValue": { + "value": "'native'" + }, + "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.", + "name": "validationBehavior", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RACValidation" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RACValidation" + } + ], + "required": false, + "type": { + "name": "\"native\" | \"aria\"" + } + }, + "onSelectionChange": { + "defaultValue": null, + "description": "Handler that is called when the selection changes.", + "name": "onSelectionChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + } + ], + "required": false, + "type": { + "name": "((key: Key | null) => void)" + } + }, + "selectedKey": { + "defaultValue": null, + "description": "The currently selected key in the collection (controlled).", + "name": "selectedKey", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "SingleSelection" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "SingleSelection" + } + ], + "required": false, + "type": { + "name": "Key | null" + } + }, + "defaultSelectedKey": { + "defaultValue": null, + "description": "The initial selected key in the collection (uncontrolled).", + "name": "defaultSelectedKey", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "SingleSelection" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "SingleSelection" + } + ], + "required": false, + "type": { + "name": "Key" + } + }, + "shouldFocusWrap": { + "defaultValue": null, + "description": "Whether keyboard navigation is circular.", + "name": "shouldFocusWrap", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "AriaComboBoxProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "AriaComboBoxProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "defaultItems": { + "defaultValue": null, + "description": "The list of ComboBox items (uncontrolled).", + "name": "defaultItems", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + } + ], + "required": false, + "type": { + "name": "Iterable" + } + }, + "items": { + "defaultValue": null, + "description": "The list of ComboBox items (controlled).", + "name": "items", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + } + ], + "required": false, + "type": { + "name": "Iterable" + } + }, + "onOpenChange": { + "defaultValue": null, + "description": "Method that is called when the open state of the menu changes. Returns the new open state and the action that caused the opening of the menu.", + "name": "onOpenChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + } + ], + "required": false, + "type": { + "name": "((isOpen: boolean, menuTrigger?: MenuTriggerAction) => void)" + } + }, + "defaultInputValue": { + "defaultValue": null, + "description": "The default value of the ComboBox input (uncontrolled).", + "name": "defaultInputValue", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "allowsCustomValue": { + "defaultValue": null, + "description": "Whether the ComboBox allows a non-item matching input value to be set.", + "name": "allowsCustomValue", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "menuTrigger": { + "defaultValue": { + "value": "'input'" + }, + "description": "The interaction required to display the ComboBox menu.", + "name": "menuTrigger", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + } + ], + "required": false, + "type": { + "name": "MenuTriggerAction" + } + }, + "disabledKeys": { + "defaultValue": null, + "description": "The item keys that are disabled. These items cannot be selected, focused, or otherwise interacted with.", + "name": "disabledKeys", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/collections.d.ts", + "name": "CollectionBase" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/collections.d.ts", + "name": "CollectionBase" + } + ], + "required": false, + "type": { + "name": "Iterable" + } + }, + "autoFocus": { + "defaultValue": null, + "description": "Whether the element should receive focus on render.", + "name": "autoFocus", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusableProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusableProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "onFocus": { + "defaultValue": null, + "description": "Handler that is called when the element receives focus.", + "name": "onFocus", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + } + ], + "required": false, + "type": { + "name": "((e: FocusEvent) => void)" + } + }, + "onBlur": { + "defaultValue": null, + "description": "Handler that is called when the element loses focus.", + "name": "onBlur", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + } + ], + "required": false, + "type": { + "name": "((e: FocusEvent) => void)" + } + }, + "onFocusChange": { + "defaultValue": null, + "description": "Handler that is called when the element's focus status changes.", + "name": "onFocusChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + } + ], + "required": false, + "type": { + "name": "((isFocused: boolean) => void)" + } + }, + "onKeyDown": { + "defaultValue": null, + "description": "Handler that is called when a key is pressed.", + "name": "onKeyDown", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + } + ], + "required": false, + "type": { + "name": "((e: KeyboardEvent) => void)" + } + }, + "onKeyUp": { + "defaultValue": null, + "description": "Handler that is called when a key is released.", + "name": "onKeyUp", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + } + ], + "required": false, + "type": { + "name": "((e: KeyboardEvent) => void)" + } + }, + "id": { + "defaultValue": null, + "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", + "name": "id", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "name": { + "defaultValue": null, + "description": "The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).", + "name": "name", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "InputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "InputDOMProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-label": { + "defaultValue": null, + "description": "Defines a string value that labels the current element.", + "name": "aria-label", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-labelledby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that labels the current element.", + "name": "aria-labelledby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-describedby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that describes the object.", + "name": "aria-describedby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-details": { + "defaultValue": null, + "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", + "name": "aria-details", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "defaultFilter": { + "defaultValue": null, + "description": "The filter function used to determine if a option should be included in the combo box list.", + "name": "defaultFilter", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ComboBoxProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ComboBoxProps" + } + ], + "required": false, + "type": { + "name": "((textValue: string, inputValue: string) => boolean)" + } + }, + "formValue": { + "defaultValue": { + "value": "'key'" + }, + "description": "Whether the text or key of the selected item is submitted as part of an HTML form.\nWhen `allowsCustomValue` is `true`, this option does not apply and the text is always submitted.", + "name": "formValue", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ComboBoxProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ComboBoxProps" + } + ], + "required": false, + "type": { + "name": "\"key\" | \"text\"" + } + }, + "allowsEmptyCollection": { + "defaultValue": null, + "description": "Whether the combo box allows the menu to be open when the collection is empty.", + "name": "allowsEmptyCollection", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ComboBoxProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ComboBoxProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "slot": { + "defaultValue": null, + "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", + "name": "slot", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" + } + ], + "required": false, + "type": { + "name": "string | null" + } + }, + "label": { + "defaultValue": null, + "description": "", + "name": "label", + "parent": { + "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", + "name": "FieldBaseProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", + "name": "FieldBaseProps" + } + ], + "required": false, + "type": { + "name": "ReactNode" + } + }, + "description": { + "defaultValue": null, + "description": "A helpful text.", + "name": "description", + "parent": { + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" + } + ], + "required": false, + "type": { + "name": "ReactNode" + } + }, + "errorMessage": { + "defaultValue": null, + "description": "An error message.", + "name": "errorMessage", + "parent": { + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" + } + ], + "required": false, + "type": { + "name": "ReactNode | ((v: ValidationResult) => ReactNode)" + } + }, + "width": { + "defaultValue": null, + "description": "Set the width of the element.", + "name": "width", + "declarations": [ + { + "fileName": "marigold/packages/system/src/style-props.tsx", + "name": "TypeLiteral" + } + ], + "required": false, + "type": { + "name": "0 | \"auto\" | \"full\" | \"fit\" | \"min\" | \"max\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." + } + }, + "ref": { + "defaultValue": null, + "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", + "name": "ref", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "RefAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "RefAttributes" + } + ], + "required": false, + "type": { + "name": "LegacyRef" + } + }, + "key": { + "defaultValue": null, + "description": "", + "name": "key", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" + } + ], + "required": false, + "type": { + "name": "Key | null" + } + } + }, "Badge.tsx": { "children": { "defaultValue": null, @@ -10294,24 +11161,66 @@ } } }, - "Body.tsx": { - "children": { + "Breakout.tsx": { + "height": { "defaultValue": null, - "description": "Children of the component", - "name": "children", + "description": "Set the height of the breakout element.", + "name": "height", "parent": { - "fileName": "marigold/packages/components/src/Body/Body.tsx", - "name": "BodyProps" + "fileName": "marigold/packages/components/src/Breakout/Breakout.tsx", + "name": "BreakoutProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Body/Body.tsx", - "name": "BodyProps" + "fileName": "marigold/packages/components/src/Breakout/Breakout.tsx", + "name": "BreakoutProps" } ], "required": false, "type": { - "name": "ReactNode" + "name": "string" + } + }, + "alignX": { + "defaultValue": { + "value": "left" + }, + "description": "Horizontal alignment of the items inside the breakout element.", + "name": "alignX", + "parent": { + "fileName": "marigold/packages/components/src/Breakout/Breakout.tsx", + "name": "BreakoutProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Breakout/Breakout.tsx", + "name": "BreakoutProps" + } + ], + "required": false, + "type": { + "name": "\"center\" | \"none\" | \"left\" | \"right\"" + } + }, + "alignY": { + "defaultValue": { + "value": "center" + }, + "description": "Vertical alignment of the items inside the breakout element.", + "name": "alignY", + "parent": { + "fileName": "marigold/packages/components/src/Breakout/Breakout.tsx", + "name": "BreakoutProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Breakout/Breakout.tsx", + "name": "BreakoutProps" + } + ], + "required": false, + "type": { + "name": "\"center\" | \"none\" | \"top\" | \"bottom\"" } }, "slot": { @@ -11261,7 +12170,7 @@ ], "required": false, "type": { - "name": "\"list\" | \"none\" | \"inline\" | \"both\"" + "name": "\"none\" | \"list\" | \"inline\" | \"both\"" } }, "aria-braillelabel": { @@ -12249,7 +13158,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCopyCapture": { @@ -12268,7 +13177,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCut": { @@ -12287,7 +13196,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCutCapture": { @@ -12306,7 +13215,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onPaste": { @@ -12325,7 +13234,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onPasteCapture": { @@ -12344,7 +13253,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCompositionEnd": { @@ -12363,7 +13272,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionEndCapture": { @@ -12382,7 +13291,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionStart": { @@ -12401,7 +13310,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionStartCapture": { @@ -12420,7 +13329,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionUpdate": { @@ -12439,7 +13348,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionUpdateCapture": { @@ -12458,7 +13367,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onFocus": { @@ -12477,7 +13386,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onFocusCapture": { @@ -12496,7 +13405,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onBlur": { @@ -12515,7 +13424,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onBlurCapture": { @@ -12534,7 +13443,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onChange": { @@ -12553,7 +13462,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onChangeCapture": { @@ -12572,7 +13481,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onBeforeInput": { @@ -12591,7 +13500,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onBeforeInputCapture": { @@ -12610,7 +13519,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInput": { @@ -12629,7 +13538,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInputCapture": { @@ -12648,7 +13557,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onReset": { @@ -12667,7 +13576,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onResetCapture": { @@ -12686,7 +13595,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onSubmit": { @@ -12705,7 +13614,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onSubmitCapture": { @@ -12724,7 +13633,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInvalid": { @@ -12743,7 +13652,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInvalidCapture": { @@ -12762,7 +13671,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onLoad": { @@ -12781,7 +13690,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadCapture": { @@ -12800,7 +13709,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onError": { @@ -12819,7 +13728,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onErrorCapture": { @@ -12838,7 +13747,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onKeyDown": { @@ -12857,7 +13766,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyDownCapture": { @@ -12876,7 +13785,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyPress": { @@ -12895,7 +13804,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyPressCapture": { @@ -12914,7 +13823,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyUp": { @@ -12933,7 +13842,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyUpCapture": { @@ -12952,7 +13861,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onAbort": { @@ -12971,7 +13880,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onAbortCapture": { @@ -12990,7 +13899,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlay": { @@ -13009,7 +13918,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayCapture": { @@ -13028,7 +13937,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayThrough": { @@ -13047,7 +13956,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayThroughCapture": { @@ -13066,7 +13975,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onDurationChange": { @@ -13085,7 +13994,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onDurationChangeCapture": { @@ -13104,7 +14013,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEmptied": { @@ -13123,7 +14032,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEmptiedCapture": { @@ -13142,7 +14051,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEncrypted": { @@ -13161,7 +14070,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEncryptedCapture": { @@ -13180,7 +14089,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEnded": { @@ -13199,7 +14108,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEndedCapture": { @@ -13218,7 +14127,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedData": { @@ -13237,7 +14146,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedDataCapture": { @@ -13256,7 +14165,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedMetadata": { @@ -13275,7 +14184,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedMetadataCapture": { @@ -13294,7 +14203,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadStart": { @@ -13313,7 +14222,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadStartCapture": { @@ -13332,7 +14241,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPause": { @@ -13351,7 +14260,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPauseCapture": { @@ -13370,7 +14279,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlay": { @@ -13389,7 +14298,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlayCapture": { @@ -13408,7 +14317,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlaying": { @@ -13427,7 +14336,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlayingCapture": { @@ -13446,7 +14355,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onProgress": { @@ -13465,7 +14374,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onProgressCapture": { @@ -13484,7 +14393,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onRateChange": { @@ -13503,7 +14412,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onRateChangeCapture": { @@ -13522,7 +14431,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onResize": { @@ -13541,7 +14450,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onResizeCapture": { @@ -13560,7 +14469,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeeked": { @@ -13579,7 +14488,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeekedCapture": { @@ -13598,7 +14507,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeeking": { @@ -13617,7 +14526,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeekingCapture": { @@ -13636,7 +14545,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onStalled": { @@ -13655,7 +14564,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onStalledCapture": { @@ -13674,7 +14583,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSuspend": { @@ -13693,7 +14602,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSuspendCapture": { @@ -13712,7 +14621,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTimeUpdate": { @@ -13731,7 +14640,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTimeUpdateCapture": { @@ -13750,7 +14659,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onVolumeChange": { @@ -13769,7 +14678,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onVolumeChangeCapture": { @@ -13788,7 +14697,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onWaiting": { @@ -13807,7 +14716,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onWaitingCapture": { @@ -13826,7 +14735,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onAuxClick": { @@ -13845,7 +14754,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onAuxClickCapture": { @@ -13864,7 +14773,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onClick": { @@ -13883,7 +14792,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onClickCapture": { @@ -13902,7 +14811,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onContextMenu": { @@ -13921,7 +14830,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onContextMenuCapture": { @@ -13940,7 +14849,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDoubleClick": { @@ -13959,7 +14868,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDoubleClickCapture": { @@ -13978,7 +14887,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDrag": { @@ -13997,7 +14906,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragCapture": { @@ -14016,7 +14925,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnd": { @@ -14035,7 +14944,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEndCapture": { @@ -14054,7 +14963,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnter": { @@ -14073,7 +14982,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnterCapture": { @@ -14092,7 +15001,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragExit": { @@ -14111,7 +15020,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragExitCapture": { @@ -14130,7 +15039,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragLeave": { @@ -14149,7 +15058,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragLeaveCapture": { @@ -14168,7 +15077,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragOver": { @@ -14187,7 +15096,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragOverCapture": { @@ -14206,7 +15115,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragStart": { @@ -14225,7 +15134,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragStartCapture": { @@ -14244,7 +15153,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDrop": { @@ -14263,7 +15172,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDropCapture": { @@ -14282,7 +15191,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onMouseDown": { @@ -14301,7 +15210,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseDownCapture": { @@ -14320,7 +15229,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseEnter": { @@ -14339,7 +15248,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseLeave": { @@ -14358,7 +15267,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseMove": { @@ -14377,7 +15286,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseMoveCapture": { @@ -14396,7 +15305,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOut": { @@ -14415,7 +15324,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOutCapture": { @@ -14434,7 +15343,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOver": { @@ -14453,7 +15362,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOverCapture": { @@ -14472,7 +15381,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseUp": { @@ -14491,7 +15400,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseUpCapture": { @@ -14510,7 +15419,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onSelect": { @@ -14529,7 +15438,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSelectCapture": { @@ -14548,7 +15457,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTouchCancel": { @@ -14567,7 +15476,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchCancelCapture": { @@ -14586,7 +15495,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchEnd": { @@ -14605,7 +15514,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchEndCapture": { @@ -14624,7 +15533,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchMove": { @@ -14643,7 +15552,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchMoveCapture": { @@ -14662,7 +15571,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchStart": { @@ -14681,7 +15590,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchStartCapture": { @@ -14700,7 +15609,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onPointerDown": { @@ -14719,7 +15628,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerDownCapture": { @@ -14738,7 +15647,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerMove": { @@ -14757,7 +15666,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerMoveCapture": { @@ -14776,7 +15685,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerUp": { @@ -14795,7 +15704,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerUpCapture": { @@ -14814,7 +15723,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerCancel": { @@ -14833,7 +15742,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerCancelCapture": { @@ -14852,7 +15761,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerEnter": { @@ -14871,7 +15780,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerLeave": { @@ -14890,7 +15799,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOver": { @@ -14909,7 +15818,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOverCapture": { @@ -14928,7 +15837,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOut": { @@ -14947,7 +15856,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOutCapture": { @@ -14966,7 +15875,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onGotPointerCapture": { @@ -14985,7 +15894,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onGotPointerCaptureCapture": { @@ -15004,7 +15913,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onLostPointerCapture": { @@ -15023,7 +15932,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onLostPointerCaptureCapture": { @@ -15042,7 +15951,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onScroll": { @@ -15061,7 +15970,7 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "UIEventHandler" } }, "onScrollCapture": { @@ -15080,7 +15989,7 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "UIEventHandler" } }, "onWheel": { @@ -15099,7 +16008,7 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "WheelEventHandler" } }, "onWheelCapture": { @@ -15118,7 +16027,7 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "WheelEventHandler" } }, "onAnimationStart": { @@ -15137,7 +16046,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationStartCapture": { @@ -15156,7 +16065,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationEnd": { @@ -15175,7 +16084,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationEndCapture": { @@ -15194,7 +16103,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationIteration": { @@ -15213,7 +16122,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationIterationCapture": { @@ -15232,7 +16141,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onTransitionEnd": { @@ -15251,7 +16160,7 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" + "name": "TransitionEventHandler" } }, "onTransitionEndCapture": { @@ -15270,122 +16179,114 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" + "name": "TransitionEventHandler" } - } - }, - "Autocomplete.tsx": { - "defaultValue": { + }, + "orientation": { "defaultValue": null, - "description": "The value of the input (uncontrolled).", - "name": "defaultValue", - "parent": { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" - }, + "description": "", + "name": "orientation", "declarations": [ { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/packages/system/src/style-props.tsx", + "name": "TypeLiteral" } ], "required": false, "type": { - "name": "string" + "name": "{ vertical?: { alignY?: \"center\" | \"none\" | \"top\" | \"bottom\"; alignX?: \"center\" | \"none\" | \"left\" | \"right\"; } | undefined; horizontal?: { alignX?: \"center\" | \"none\" | \"left\" | \"right\" | undefined; alignY?: \"center\" | ... 3 more ... | undefined; } | undefined; } | undefined" } - }, - "value": { + } + }, + "Body.tsx": { + "children": { "defaultValue": null, - "description": "The value of the input (controlled).", - "name": "value", + "description": "Children of the component", + "name": "children", "parent": { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/packages/components/src/Body/Body.tsx", + "name": "BodyProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/packages/components/src/Body/Body.tsx", + "name": "BodyProps" } ], "required": false, "type": { - "name": "string" + "name": "ReactNode" } }, - "onChange": { + "slot": { "defaultValue": null, - "description": "Called when the input value changes.", - "name": "onChange", + "description": "", + "name": "slot", "parent": { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((value: string) => void)" + "name": "string" } }, - "onClear": { + "title": { "defaultValue": null, - "description": "Called when the clear button is pressed.", - "name": "onClear", + "description": "", + "name": "title", "parent": { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "(() => void)" + "name": "string" } }, - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the input is disabled.", - "name": "disabled", + "key": { + "defaultValue": null, + "description": "", + "name": "key", "parent": { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" } ], "required": false, "type": { - "name": "boolean" + "name": "Key | null" } }, - "required": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the input is required.", - "name": "required", + "defaultChecked": { + "defaultValue": null, + "description": "", + "name": "defaultChecked", "parent": { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -15393,41 +16294,37 @@ "name": "boolean" } }, - "error": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the field is considered invalid and if set the `errorMessage` is shown instead of the `description`.", - "name": "error", + "defaultValue": { + "defaultValue": null, + "description": "", + "name": "defaultValue", "parent": { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string | number | readonly string[]" } }, - "readOnly": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the input is readOnly.", - "name": "readOnly", + "suppressContentEditableWarning": { + "defaultValue": null, + "description": "", + "name": "suppressContentEditableWarning", "parent": { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -15435,153 +16332,151 @@ "name": "boolean" } }, - "placeholder": { + "suppressHydrationWarning": { "defaultValue": null, "description": "", - "name": "placeholder", + "name": "suppressHydrationWarning", "parent": { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "string" + "name": "boolean" } }, - "onSubmit": { + "accessKey": { "defaultValue": null, - "description": "Handler that is called when the SearchAutocomplete is submitted.\n\nA `key` will be passed if the submission is a selected item (e.g. a user\nclicks or presses enter on an option). If the input is a custom `value`, `key` will be `null`.\n\nA `value` will be passed if the submission is a custom value (e.g. a user\ntypes then presses enter). If the input is a selected item, `value` will be `null`.", - "name": "onSubmit", + "description": "", + "name": "accessKey", "parent": { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Autocomplete/Autocomplete.tsx", - "name": "AutocompleteProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((value: string | number | null, key: Key | null) => void)" + "name": "string" } }, - "children": { + "autoFocus": { "defaultValue": null, - "description": "The children of the component. A function may be provided to alter the children based on component state.", - "name": "children", + "description": "", + "name": "autoFocus", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RenderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RenderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ReactNode | ((values: ComboBoxRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" + "name": "boolean" } }, - "validationBehavior": { - "defaultValue": { - "value": "'native'" - }, - "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.", - "name": "validationBehavior", + "contentEditable": { + "defaultValue": null, + "description": "", + "name": "contentEditable", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RACValidation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RACValidation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "\"native\" | \"aria\"" + "name": "Booleanish | \"inherit\" | \"plaintext-only\"" } }, - "onSelectionChange": { + "contextMenu": { "defaultValue": null, - "description": "Handler that is called when the selection changes.", - "name": "onSelectionChange", + "description": "", + "name": "contextMenu", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((key: Key | null) => void)" + "name": "string" } }, - "selectedKey": { + "dir": { "defaultValue": null, - "description": "The currently selected key in the collection (controlled).", - "name": "selectedKey", + "description": "", + "name": "dir", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", - "name": "SingleSelection" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", - "name": "SingleSelection" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "Key | null" + "name": "string" } }, - "defaultSelectedKey": { + "draggable": { "defaultValue": null, - "description": "The initial selected key in the collection (uncontrolled).", - "name": "defaultSelectedKey", + "description": "", + "name": "draggable", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", - "name": "SingleSelection" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", - "name": "SingleSelection" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "Key" + "name": "Booleanish" } }, - "shouldFocusWrap": { + "hidden": { "defaultValue": null, - "description": "Whether keyboard navigation is circular.", - "name": "shouldFocusWrap", + "description": "", + "name": "hidden", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "AriaComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "AriaComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -15589,267 +16484,265 @@ "name": "boolean" } }, - "defaultItems": { + "id": { "defaultValue": null, - "description": "The list of ComboBox items (uncontrolled).", - "name": "defaultItems", + "description": "", + "name": "id", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "Iterable" + "name": "string" } }, - "items": { + "lang": { "defaultValue": null, - "description": "The list of ComboBox items (controlled).", - "name": "items", + "description": "", + "name": "lang", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "Iterable" + "name": "string" } }, - "onOpenChange": { + "nonce": { "defaultValue": null, - "description": "Method that is called when the open state of the menu changes. Returns the new open state and the action that caused the opening of the menu.", - "name": "onOpenChange", + "description": "", + "name": "nonce", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((isOpen: boolean, menuTrigger?: MenuTriggerAction) => void)" + "name": "string" } }, - "defaultInputValue": { + "spellCheck": { "defaultValue": null, - "description": "The default value of the ComboBox input (uncontrolled).", - "name": "defaultInputValue", + "description": "", + "name": "spellCheck", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "string" + "name": "Booleanish" } }, - "allowsCustomValue": { + "tabIndex": { "defaultValue": null, - "description": "Whether the ComboBox allows a non-item matching input value to be set.", - "name": "allowsCustomValue", + "description": "", + "name": "tabIndex", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "number" } }, - "menuTrigger": { - "defaultValue": { - "value": "'input'" - }, - "description": "The interaction required to display the ComboBox menu.", - "name": "menuTrigger", + "translate": { + "defaultValue": null, + "description": "", + "name": "translate", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "MenuTriggerAction" + "name": "\"yes\" | \"no\"" } }, - "disabledKeys": { + "radioGroup": { "defaultValue": null, - "description": "The item keys that are disabled. These items cannot be selected, focused, or otherwise interacted with.", - "name": "disabledKeys", + "description": "", + "name": "radioGroup", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/collections.d.ts", - "name": "CollectionBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/collections.d.ts", - "name": "CollectionBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "Iterable" + "name": "string" } }, - "autoFocus": { + "role": { "defaultValue": null, - "description": "Whether the element should receive focus on render.", - "name": "autoFocus", + "description": "", + "name": "role", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusableProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusableProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "AriaRole" } }, - "onFocus": { + "about": { "defaultValue": null, - "description": "Handler that is called when the element receives focus.", - "name": "onFocus", + "description": "", + "name": "about", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((e: FocusEvent) => void)" + "name": "string" } }, - "onBlur": { + "content": { "defaultValue": null, - "description": "Handler that is called when the element loses focus.", - "name": "onBlur", + "description": "", + "name": "content", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((e: FocusEvent) => void)" + "name": "string" } }, - "onFocusChange": { + "datatype": { "defaultValue": null, - "description": "Handler that is called when the element's focus status changes.", - "name": "onFocusChange", + "description": "", + "name": "datatype", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((isFocused: boolean) => void)" + "name": "string" } }, - "onKeyDown": { + "inlist": { "defaultValue": null, - "description": "Handler that is called when a key is pressed.", - "name": "onKeyDown", + "description": "", + "name": "inlist", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((e: KeyboardEvent) => void)" + "name": "any" } }, - "onKeyUp": { + "prefix": { "defaultValue": null, - "description": "Handler that is called when a key is released.", - "name": "onKeyUp", + "description": "", + "name": "prefix", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((e: KeyboardEvent) => void)" + "name": "string" } }, - "id": { + "property": { "defaultValue": null, - "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", - "name": "id", + "description": "", + "name": "property", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -15857,18 +16750,18 @@ "name": "string" } }, - "name": { + "rel": { "defaultValue": null, - "description": "The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).", - "name": "name", + "description": "", + "name": "rel", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "InputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "InputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -15876,18 +16769,18 @@ "name": "string" } }, - "aria-label": { + "resource": { "defaultValue": null, - "description": "Defines a string value that labels the current element.", - "name": "aria-label", + "description": "", + "name": "resource", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -15895,18 +16788,18 @@ "name": "string" } }, - "aria-labelledby": { + "rev": { "defaultValue": null, - "description": "Identifies the element (or elements) that labels the current element.", - "name": "aria-labelledby", + "description": "", + "name": "rev", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -15914,18 +16807,18 @@ "name": "string" } }, - "aria-describedby": { + "typeof": { "defaultValue": null, - "description": "Identifies the element (or elements) that describes the object.", - "name": "aria-describedby", + "description": "", + "name": "typeof", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -15933,18 +16826,18 @@ "name": "string" } }, - "aria-details": { + "vocab": { "defaultValue": null, - "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", - "name": "aria-details", + "description": "", + "name": "vocab", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -15952,961 +16845,83 @@ "name": "string" } }, - "defaultFilter": { + "autoCapitalize": { "defaultValue": null, - "description": "The filter function used to determine if a option should be included in the combo box list.", - "name": "defaultFilter", + "description": "", + "name": "autoCapitalize", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((textValue: string, inputValue: string) => boolean)" + "name": "string" } }, - "formValue": { - "defaultValue": { - "value": "'key'" - }, - "description": "Whether the text or key of the selected item is submitted as part of an HTML form.\nWhen `allowsCustomValue` is `true`, this option does not apply and the text is always submitted.", - "name": "formValue", + "autoCorrect": { + "defaultValue": null, + "description": "", + "name": "autoCorrect", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "\"key\" | \"text\"" + "name": "string" } }, - "allowsEmptyCollection": { + "autoSave": { "defaultValue": null, - "description": "Whether the combo box allows the menu to be open when the collection is empty.", - "name": "allowsEmptyCollection", + "description": "", + "name": "autoSave", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ComboBoxProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string" } }, - "slot": { + "color": { "defaultValue": null, - "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", - "name": "slot", + "description": "", + "name": "color", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "string | null" + "name": "string" } }, - "label": { - "defaultValue": null, - "description": "", - "name": "label", - "parent": { - "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", - "name": "FieldBaseProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", - "name": "FieldBaseProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "description": { - "defaultValue": null, - "description": "A helpful text.", - "name": "description", - "parent": { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "errorMessage": { - "defaultValue": null, - "description": "An error message.", - "name": "errorMessage", - "parent": { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" - } - ], - "required": false, - "type": { - "name": "ReactNode | ((v: ValidationResult) => ReactNode)" - } - }, - "width": { - "defaultValue": null, - "description": "Set the width of the element.", - "name": "width", - "declarations": [ - { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" - } - ], - "required": false, - "type": { - "name": "0 | \"auto\" | \"full\" | \"fit\" | \"min\" | \"max\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." - } - }, - "ref": { - "defaultValue": null, - "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", - "name": "ref", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" - } - ], - "required": false, - "type": { - "name": "LegacyRef" - } - }, - "key": { - "defaultValue": null, - "description": "", - "name": "key", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" - } - ], - "required": false, - "type": { - "name": "Key | null" - } - } - }, - "Breakout.tsx": { - "height": { - "defaultValue": null, - "description": "Set the height of the breakout element.", - "name": "height", - "parent": { - "fileName": "marigold/packages/components/src/Breakout/Breakout.tsx", - "name": "BreakoutProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Breakout/Breakout.tsx", - "name": "BreakoutProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "alignX": { - "defaultValue": { - "value": "left" - }, - "description": "Horizontal alignment of the items inside the breakout element.", - "name": "alignX", - "parent": { - "fileName": "marigold/packages/components/src/Breakout/Breakout.tsx", - "name": "BreakoutProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Breakout/Breakout.tsx", - "name": "BreakoutProps" - } - ], - "required": false, - "type": { - "name": "\"center\" | \"none\" | \"left\" | \"right\"" - } - }, - "alignY": { - "defaultValue": { - "value": "center" - }, - "description": "Vertical alignment of the items inside the breakout element.", - "name": "alignY", - "parent": { - "fileName": "marigold/packages/components/src/Breakout/Breakout.tsx", - "name": "BreakoutProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Breakout/Breakout.tsx", - "name": "BreakoutProps" - } - ], - "required": false, - "type": { - "name": "\"center\" | \"none\" | \"top\" | \"bottom\"" - } - }, - "slot": { - "defaultValue": null, - "description": "", - "name": "slot", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "title": { - "defaultValue": null, - "description": "", - "name": "title", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "key": { - "defaultValue": null, - "description": "", - "name": "key", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" - } - ], - "required": false, - "type": { - "name": "Key | null" - } - }, - "defaultChecked": { - "defaultValue": null, - "description": "", - "name": "defaultChecked", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "defaultValue": { - "defaultValue": null, - "description": "", - "name": "defaultValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string | number | readonly string[]" - } - }, - "suppressContentEditableWarning": { - "defaultValue": null, - "description": "", - "name": "suppressContentEditableWarning", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "suppressHydrationWarning": { - "defaultValue": null, - "description": "", - "name": "suppressHydrationWarning", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "accessKey": { - "defaultValue": null, - "description": "", - "name": "accessKey", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "autoFocus": { - "defaultValue": null, - "description": "", - "name": "autoFocus", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "contentEditable": { - "defaultValue": null, - "description": "", - "name": "contentEditable", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "Booleanish | \"inherit\" | \"plaintext-only\"" - } - }, - "contextMenu": { - "defaultValue": null, - "description": "", - "name": "contextMenu", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "dir": { - "defaultValue": null, - "description": "", - "name": "dir", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "draggable": { - "defaultValue": null, - "description": "", - "name": "draggable", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "Booleanish" - } - }, - "hidden": { - "defaultValue": null, - "description": "", - "name": "hidden", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "id": { - "defaultValue": null, - "description": "", - "name": "id", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "lang": { - "defaultValue": null, - "description": "", - "name": "lang", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "nonce": { - "defaultValue": null, - "description": "", - "name": "nonce", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "spellCheck": { - "defaultValue": null, - "description": "", - "name": "spellCheck", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "Booleanish" - } - }, - "tabIndex": { - "defaultValue": null, - "description": "", - "name": "tabIndex", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "number" - } - }, - "translate": { - "defaultValue": null, - "description": "", - "name": "translate", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "\"yes\" | \"no\"" - } - }, - "radioGroup": { - "defaultValue": null, - "description": "", - "name": "radioGroup", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "role": { - "defaultValue": null, - "description": "", - "name": "role", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "AriaRole" - } - }, - "about": { - "defaultValue": null, - "description": "", - "name": "about", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "content": { - "defaultValue": null, - "description": "", - "name": "content", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "datatype": { - "defaultValue": null, - "description": "", - "name": "datatype", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "inlist": { - "defaultValue": null, - "description": "", - "name": "inlist", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "any" - } - }, - "prefix": { - "defaultValue": null, - "description": "", - "name": "prefix", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "property": { - "defaultValue": null, - "description": "", - "name": "property", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "rel": { - "defaultValue": null, - "description": "", - "name": "rel", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "resource": { - "defaultValue": null, - "description": "", - "name": "resource", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "rev": { - "defaultValue": null, - "description": "", - "name": "rev", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "typeof": { - "defaultValue": null, - "description": "", - "name": "typeof", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "vocab": { - "defaultValue": null, - "description": "", - "name": "vocab", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "autoCapitalize": { - "defaultValue": null, - "description": "", - "name": "autoCapitalize", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "autoCorrect": { - "defaultValue": null, - "description": "", - "name": "autoCorrect", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "autoSave": { - "defaultValue": null, - "description": "", - "name": "autoSave", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "color": { - "defaultValue": null, - "description": "", - "name": "color", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "itemProp": { + "itemProp": { "defaultValue": null, "description": "", "name": "itemProp", @@ -17150,7 +17165,7 @@ ], "required": false, "type": { - "name": "\"none\" | \"list\" | \"inline\" | \"both\"" + "name": "\"list\" | \"none\" | \"inline\" | \"both\"" } }, "aria-braillelabel": { @@ -18138,7 +18153,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCopyCapture": { @@ -18157,7 +18172,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCut": { @@ -18176,7 +18191,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCutCapture": { @@ -18195,7 +18210,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onPaste": { @@ -18214,7 +18229,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onPasteCapture": { @@ -18233,7 +18248,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCompositionEnd": { @@ -18252,7 +18267,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionEndCapture": { @@ -18271,7 +18286,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionStart": { @@ -18290,7 +18305,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionStartCapture": { @@ -18309,7 +18324,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionUpdate": { @@ -18328,7 +18343,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionUpdateCapture": { @@ -18347,7 +18362,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onFocus": { @@ -18366,7 +18381,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onFocusCapture": { @@ -18385,7 +18400,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onBlur": { @@ -18404,7 +18419,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onBlurCapture": { @@ -18423,7 +18438,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onChange": { @@ -18442,7 +18457,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onChangeCapture": { @@ -18461,7 +18476,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onBeforeInput": { @@ -18480,7 +18495,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onBeforeInputCapture": { @@ -18499,7 +18514,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInput": { @@ -18518,7 +18533,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInputCapture": { @@ -18537,7 +18552,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onReset": { @@ -18556,7 +18571,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onResetCapture": { @@ -18575,7 +18590,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onSubmit": { @@ -18594,7 +18609,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onSubmitCapture": { @@ -18613,7 +18628,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInvalid": { @@ -18632,7 +18647,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInvalidCapture": { @@ -18651,7 +18666,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onLoad": { @@ -18670,7 +18685,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadCapture": { @@ -18689,7 +18704,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onError": { @@ -18708,7 +18723,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onErrorCapture": { @@ -18727,7 +18742,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onKeyDown": { @@ -18746,7 +18761,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyDownCapture": { @@ -18765,7 +18780,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyPress": { @@ -18784,7 +18799,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyPressCapture": { @@ -18803,7 +18818,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyUp": { @@ -18822,7 +18837,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyUpCapture": { @@ -18841,7 +18856,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onAbort": { @@ -18860,7 +18875,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onAbortCapture": { @@ -18879,7 +18894,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlay": { @@ -18898,7 +18913,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayCapture": { @@ -18917,7 +18932,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayThrough": { @@ -18936,7 +18951,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayThroughCapture": { @@ -18955,7 +18970,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onDurationChange": { @@ -18974,7 +18989,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onDurationChangeCapture": { @@ -18993,7 +19008,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEmptied": { @@ -19012,7 +19027,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEmptiedCapture": { @@ -19031,7 +19046,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEncrypted": { @@ -19050,7 +19065,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEncryptedCapture": { @@ -19069,7 +19084,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEnded": { @@ -19088,7 +19103,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEndedCapture": { @@ -19107,7 +19122,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedData": { @@ -19126,7 +19141,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedDataCapture": { @@ -19145,7 +19160,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedMetadata": { @@ -19164,7 +19179,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedMetadataCapture": { @@ -19183,7 +19198,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadStart": { @@ -19202,7 +19217,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadStartCapture": { @@ -19221,7 +19236,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPause": { @@ -19240,7 +19255,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPauseCapture": { @@ -19259,7 +19274,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlay": { @@ -19278,7 +19293,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlayCapture": { @@ -19297,7 +19312,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlaying": { @@ -19316,7 +19331,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlayingCapture": { @@ -19335,7 +19350,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onProgress": { @@ -19354,7 +19369,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onProgressCapture": { @@ -19373,7 +19388,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onRateChange": { @@ -19392,7 +19407,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onRateChangeCapture": { @@ -19411,7 +19426,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onResize": { @@ -19430,7 +19445,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onResizeCapture": { @@ -19449,7 +19464,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeeked": { @@ -19468,7 +19483,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeekedCapture": { @@ -19487,7 +19502,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeeking": { @@ -19506,7 +19521,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeekingCapture": { @@ -19525,7 +19540,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onStalled": { @@ -19544,7 +19559,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onStalledCapture": { @@ -19563,7 +19578,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSuspend": { @@ -19582,7 +19597,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSuspendCapture": { @@ -19601,7 +19616,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTimeUpdate": { @@ -19620,7 +19635,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTimeUpdateCapture": { @@ -19639,7 +19654,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onVolumeChange": { @@ -19658,7 +19673,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onVolumeChangeCapture": { @@ -19677,7 +19692,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onWaiting": { @@ -19696,7 +19711,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onWaitingCapture": { @@ -19715,7 +19730,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onAuxClick": { @@ -19734,7 +19749,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onAuxClickCapture": { @@ -19753,7 +19768,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onClick": { @@ -19772,7 +19787,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onClickCapture": { @@ -19791,7 +19806,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onContextMenu": { @@ -19810,7 +19825,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onContextMenuCapture": { @@ -19829,7 +19844,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDoubleClick": { @@ -19848,7 +19863,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDoubleClickCapture": { @@ -19867,7 +19882,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDrag": { @@ -19886,7 +19901,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragCapture": { @@ -19905,7 +19920,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnd": { @@ -19924,7 +19939,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEndCapture": { @@ -19943,7 +19958,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnter": { @@ -19962,7 +19977,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnterCapture": { @@ -19981,7 +19996,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragExit": { @@ -20000,7 +20015,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragExitCapture": { @@ -20019,7 +20034,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragLeave": { @@ -20038,7 +20053,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragLeaveCapture": { @@ -20057,7 +20072,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragOver": { @@ -20076,7 +20091,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragOverCapture": { @@ -20095,7 +20110,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragStart": { @@ -20114,7 +20129,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragStartCapture": { @@ -20133,7 +20148,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDrop": { @@ -20152,7 +20167,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDropCapture": { @@ -20171,7 +20186,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onMouseDown": { @@ -20190,7 +20205,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseDownCapture": { @@ -20209,7 +20224,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseEnter": { @@ -20228,7 +20243,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseLeave": { @@ -20247,7 +20262,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseMove": { @@ -20266,7 +20281,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseMoveCapture": { @@ -20285,7 +20300,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOut": { @@ -20304,7 +20319,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOutCapture": { @@ -20323,7 +20338,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOver": { @@ -20342,7 +20357,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOverCapture": { @@ -20361,7 +20376,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseUp": { @@ -20380,7 +20395,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseUpCapture": { @@ -20399,7 +20414,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onSelect": { @@ -20418,7 +20433,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSelectCapture": { @@ -20437,7 +20452,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTouchCancel": { @@ -20456,7 +20471,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchCancelCapture": { @@ -20475,7 +20490,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchEnd": { @@ -20494,7 +20509,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchEndCapture": { @@ -20513,7 +20528,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchMove": { @@ -20532,7 +20547,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchMoveCapture": { @@ -20551,7 +20566,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchStart": { @@ -20570,7 +20585,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchStartCapture": { @@ -20589,7 +20604,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onPointerDown": { @@ -20608,7 +20623,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerDownCapture": { @@ -20627,7 +20642,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerMove": { @@ -20646,7 +20661,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerMoveCapture": { @@ -20665,7 +20680,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerUp": { @@ -20684,7 +20699,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerUpCapture": { @@ -20703,7 +20718,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerCancel": { @@ -20722,7 +20737,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerCancelCapture": { @@ -20741,7 +20756,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerEnter": { @@ -20760,7 +20775,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerLeave": { @@ -20779,7 +20794,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOver": { @@ -20798,7 +20813,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOverCapture": { @@ -20817,7 +20832,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOut": { @@ -20836,7 +20851,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOutCapture": { @@ -20855,7 +20870,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onGotPointerCapture": { @@ -20874,7 +20889,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onGotPointerCaptureCapture": { @@ -20893,7 +20908,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onLostPointerCapture": { @@ -20912,7 +20927,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onLostPointerCaptureCapture": { @@ -20931,7 +20946,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onScroll": { @@ -20950,7 +20965,7 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "UIEventHandler" } }, "onScrollCapture": { @@ -20969,7 +20984,7 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "UIEventHandler" } }, "onWheel": { @@ -20988,7 +21003,7 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "WheelEventHandler" } }, "onWheelCapture": { @@ -21007,7 +21022,7 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "WheelEventHandler" } }, "onAnimationStart": { @@ -21026,7 +21041,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationStartCapture": { @@ -21045,7 +21060,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationEnd": { @@ -21064,7 +21079,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationEndCapture": { @@ -21083,7 +21098,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationIteration": { @@ -21102,7 +21117,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationIterationCapture": { @@ -21121,7 +21136,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onTransitionEnd": { @@ -21140,7 +21155,7 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" + "name": "TransitionEventHandler" } }, "onTransitionEndCapture": { @@ -21159,22 +21174,7 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" - } - }, - "orientation": { - "defaultValue": null, - "description": "", - "name": "orientation", - "declarations": [ - { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" - } - ], - "required": false, - "type": { - "name": "{ vertical?: { alignY?: \"center\" | \"none\" | \"top\" | \"bottom\"; alignX?: \"center\" | \"none\" | \"left\" | \"right\"; } | undefined; horizontal?: { alignX?: \"center\" | \"none\" | \"left\" | \"right\" | undefined; alignY?: \"center\" | ... 3 more ... | undefined; } | undefined; } | undefined" + "name": "TransitionEventHandler" } } }, @@ -27625,21 +27625,101 @@ } } }, - "Center.tsx": { - "maxWidth": { + "CheckBoxField.tsx": { + "labelWidth": { + "defaultValue": null, + "description": "", + "name": "labelWidth", + "parent": { + "fileName": "marigold/packages/components/src/Checkbox/CheckBoxField.tsx", + "name": "CheckboxFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Checkbox/CheckBoxField.tsx", + "name": "CheckboxFieldProps" + } + ], + "required": true, + "type": { + "name": "string" + } + } + }, + "Checkbox.tsx": { + "indeterminate": { "defaultValue": { - "value": "100%" + "value": "false" }, - "description": "The maximum width of the container.", - "name": "maxWidth", + "description": "Use when it represents both selected and not selected values.", + "name": "indeterminate", "parent": { - "fileName": "marigold/packages/components/src/Center/Center.tsx", - "name": "CenterProps" + "fileName": "marigold/packages/components/src/Checkbox/Checkbox.tsx", + "name": "CheckboxProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Center/Center.tsx", - "name": "CenterProps" + "fileName": "marigold/packages/components/src/Checkbox/Checkbox.tsx", + "name": "CheckboxProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "error": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the checkbox is considered invalid and if set the `errorMessage` is shown instead of the `description`.", + "name": "error", + "parent": { + "fileName": "marigold/packages/components/src/Checkbox/Checkbox.tsx", + "name": "CheckboxProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Checkbox/Checkbox.tsx", + "name": "CheckboxProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "className": { + "defaultValue": null, + "description": "", + "name": "className", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "form": { + "defaultValue": null, + "description": "", + "name": "form", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" } ], "required": false, @@ -27685,6 +27765,25 @@ "name": "string" } }, + "pattern": { + "defaultValue": null, + "description": "", + "name": "pattern", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, "key": { "defaultValue": null, "description": "", @@ -27694,6 +27793,10 @@ "name": "Attributes" }, "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" + }, { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "Attributes" @@ -27704,18 +27807,94 @@ "name": "Key | null" } }, - "defaultChecked": { + "accept": { "defaultValue": null, "description": "", - "name": "defaultChecked", + "name": "accept", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "InputHTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "alt": { + "defaultValue": null, + "description": "", + "name": "alt", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "autoComplete": { + "defaultValue": null, + "description": "", + "name": "autoComplete", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "HTMLInputAutoCompleteAttribute" + } + }, + "capture": { + "defaultValue": null, + "description": "", + "name": "capture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "boolean | \"user\" | \"environment\"" + } + }, + "checked": { + "defaultValue": null, + "description": "", + "name": "checked", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" } ], "required": false, @@ -27723,10 +27902,409 @@ "name": "boolean" } }, - "defaultValue": { + "disabled": { "defaultValue": null, "description": "", - "name": "defaultValue", + "name": "disabled", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "enterKeyHint": { + "defaultValue": null, + "description": "", + "name": "enterKeyHint", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "\"search\" | \"enter\" | \"done\" | \"go\" | \"next\" | \"previous\" | \"send\"" + } + }, + "formAction": { + "defaultValue": null, + "description": "", + "name": "formAction", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "formEncType": { + "defaultValue": null, + "description": "", + "name": "formEncType", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "formMethod": { + "defaultValue": null, + "description": "", + "name": "formMethod", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "formNoValidate": { + "defaultValue": null, + "description": "", + "name": "formNoValidate", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "formTarget": { + "defaultValue": null, + "description": "", + "name": "formTarget", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "height": { + "defaultValue": null, + "description": "", + "name": "height", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string | number" + } + }, + "list": { + "defaultValue": null, + "description": "", + "name": "list", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "max": { + "defaultValue": null, + "description": "", + "name": "max", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string | number" + } + }, + "maxLength": { + "defaultValue": null, + "description": "", + "name": "maxLength", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "min": { + "defaultValue": null, + "description": "", + "name": "min", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string | number" + } + }, + "minLength": { + "defaultValue": null, + "description": "", + "name": "minLength", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "multiple": { + "defaultValue": null, + "description": "", + "name": "multiple", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "name": { + "defaultValue": null, + "description": "", + "name": "name", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "placeholder": { + "defaultValue": null, + "description": "", + "name": "placeholder", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "readOnly": { + "defaultValue": null, + "description": "", + "name": "readOnly", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "required": { + "defaultValue": null, + "description": "", + "name": "required", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "src": { + "defaultValue": null, + "description": "", + "name": "src", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "step": { + "defaultValue": null, + "description": "", + "name": "step", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string | number" + } + }, + "width": { + "defaultValue": null, + "description": "", + "name": "width", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string | number" + } + }, + "defaultChecked": { + "defaultValue": null, + "description": "", + "name": "defaultChecked", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -27739,7 +28317,7 @@ ], "required": false, "type": { - "name": "string | number | readonly string[]" + "name": "boolean" } }, "suppressContentEditableWarning": { @@ -28499,7 +29077,7 @@ ], "required": false, "type": { - "name": "\"on\" | \"off\"" + "name": "\"off\" | \"on\"" } }, "inputMode": { @@ -28518,7 +29096,7 @@ ], "required": false, "type": { - "name": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" + "name": "\"search\" | \"text\" | \"email\" | \"tel\" | \"none\" | \"url\" | \"numeric\" | \"decimal\"" } }, "is": { @@ -28784,7 +29362,7 @@ ], "required": false, "type": { - "name": "boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\"" + "name": "boolean | \"time\" | \"step\" | \"true\" | \"false\" | \"page\" | \"location\" | \"date\"" } }, "aria-describedby": { @@ -29582,7 +30160,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCopyCapture": { @@ -29601,7 +30179,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCut": { @@ -29620,7 +30198,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCutCapture": { @@ -29639,7 +30217,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onPaste": { @@ -29658,7 +30236,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onPasteCapture": { @@ -29677,7 +30255,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCompositionEnd": { @@ -29696,7 +30274,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionEndCapture": { @@ -29715,7 +30293,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionStart": { @@ -29734,7 +30312,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionStartCapture": { @@ -29753,7 +30331,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionUpdate": { @@ -29772,7 +30350,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionUpdateCapture": { @@ -29791,26 +30369,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" - } - }, - "onFocus": { - "defaultValue": null, - "description": "", - "name": "onFocus", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" - } - ], - "required": false, - "type": { - "name": "FocusEventHandler" + "name": "CompositionEventHandler" } }, "onFocusCapture": { @@ -29829,26 +30388,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" - } - }, - "onBlur": { - "defaultValue": null, - "description": "", - "name": "onBlur", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" - } - ], - "required": false, - "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onBlurCapture": { @@ -29867,26 +30407,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" - } - }, - "onChange": { - "defaultValue": null, - "description": "", - "name": "onChange", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" - } - ], - "required": false, - "type": { - "name": "FormEventHandler" + "name": "FocusEventHandler" } }, "onChangeCapture": { @@ -29905,7 +30426,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onBeforeInput": { @@ -29924,7 +30445,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onBeforeInputCapture": { @@ -29943,7 +30464,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInput": { @@ -29962,7 +30483,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInputCapture": { @@ -29981,7 +30502,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onReset": { @@ -30000,7 +30521,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onResetCapture": { @@ -30019,7 +30540,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onSubmit": { @@ -30038,7 +30559,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onSubmitCapture": { @@ -30057,7 +30578,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInvalid": { @@ -30076,7 +30597,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInvalidCapture": { @@ -30095,7 +30616,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onLoad": { @@ -30114,7 +30635,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadCapture": { @@ -30133,7 +30654,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onError": { @@ -30152,7 +30673,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onErrorCapture": { @@ -30171,26 +30692,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" - } - }, - "onKeyDown": { - "defaultValue": null, - "description": "", - "name": "onKeyDown", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" - } - ], - "required": false, - "type": { - "name": "KeyboardEventHandler" + "name": "ReactEventHandler" } }, "onKeyDownCapture": { @@ -30209,7 +30711,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyPress": { @@ -30228,7 +30730,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyPressCapture": { @@ -30247,26 +30749,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" - } - }, - "onKeyUp": { - "defaultValue": null, - "description": "", - "name": "onKeyUp", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" - } - ], - "required": false, - "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyUpCapture": { @@ -30285,7 +30768,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onAbort": { @@ -30304,7 +30787,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onAbortCapture": { @@ -30323,7 +30806,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlay": { @@ -30342,7 +30825,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayCapture": { @@ -30361,7 +30844,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayThrough": { @@ -30380,7 +30863,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayThroughCapture": { @@ -30399,7 +30882,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onDurationChange": { @@ -30418,7 +30901,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onDurationChangeCapture": { @@ -30437,7 +30920,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEmptied": { @@ -30456,7 +30939,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEmptiedCapture": { @@ -30475,7 +30958,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEncrypted": { @@ -30494,7 +30977,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEncryptedCapture": { @@ -30513,7 +30996,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEnded": { @@ -30532,7 +31015,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEndedCapture": { @@ -30551,7 +31034,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedData": { @@ -30570,7 +31053,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedDataCapture": { @@ -30589,7 +31072,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedMetadata": { @@ -30608,7 +31091,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedMetadataCapture": { @@ -30627,7 +31110,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadStart": { @@ -30646,7 +31129,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadStartCapture": { @@ -30665,7 +31148,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPause": { @@ -30684,7 +31167,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPauseCapture": { @@ -30703,7 +31186,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlay": { @@ -30722,7 +31205,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlayCapture": { @@ -30741,7 +31224,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlaying": { @@ -30760,7 +31243,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlayingCapture": { @@ -30779,7 +31262,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onProgress": { @@ -30798,7 +31281,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onProgressCapture": { @@ -30817,7 +31300,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onRateChange": { @@ -30836,7 +31319,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onRateChangeCapture": { @@ -30855,7 +31338,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onResize": { @@ -30874,7 +31357,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onResizeCapture": { @@ -30893,7 +31376,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeeked": { @@ -30912,7 +31395,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeekedCapture": { @@ -30931,7 +31414,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeeking": { @@ -30950,7 +31433,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeekingCapture": { @@ -30969,7 +31452,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onStalled": { @@ -30988,7 +31471,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onStalledCapture": { @@ -31007,7 +31490,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSuspend": { @@ -31026,7 +31509,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSuspendCapture": { @@ -31045,7 +31528,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTimeUpdate": { @@ -31064,7 +31547,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTimeUpdateCapture": { @@ -31083,7 +31566,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onVolumeChange": { @@ -31102,7 +31585,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onVolumeChangeCapture": { @@ -31121,7 +31604,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onWaiting": { @@ -31140,7 +31623,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onWaitingCapture": { @@ -31159,7 +31642,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onAuxClick": { @@ -31178,7 +31661,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onAuxClickCapture": { @@ -31197,7 +31680,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onClick": { @@ -31216,7 +31699,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onClickCapture": { @@ -31235,7 +31718,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onContextMenu": { @@ -31254,7 +31737,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onContextMenuCapture": { @@ -31273,7 +31756,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDoubleClick": { @@ -31292,7 +31775,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDoubleClickCapture": { @@ -31311,7 +31794,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDrag": { @@ -31330,7 +31813,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragCapture": { @@ -31349,7 +31832,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnd": { @@ -31368,7 +31851,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEndCapture": { @@ -31387,7 +31870,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnter": { @@ -31406,7 +31889,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnterCapture": { @@ -31425,7 +31908,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragExit": { @@ -31444,7 +31927,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragExitCapture": { @@ -31463,7 +31946,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragLeave": { @@ -31482,7 +31965,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragLeaveCapture": { @@ -31501,7 +31984,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragOver": { @@ -31520,7 +32003,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragOverCapture": { @@ -31539,7 +32022,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragStart": { @@ -31558,7 +32041,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragStartCapture": { @@ -31577,7 +32060,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDrop": { @@ -31596,7 +32079,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDropCapture": { @@ -31615,7 +32098,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onMouseDown": { @@ -31634,7 +32117,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseDownCapture": { @@ -31653,7 +32136,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseEnter": { @@ -31672,7 +32155,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseLeave": { @@ -31691,7 +32174,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseMove": { @@ -31710,7 +32193,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseMoveCapture": { @@ -31729,7 +32212,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOut": { @@ -31748,7 +32231,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOutCapture": { @@ -31767,7 +32250,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOver": { @@ -31786,7 +32269,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOverCapture": { @@ -31805,7 +32288,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseUp": { @@ -31824,7 +32307,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseUpCapture": { @@ -31843,7 +32326,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onSelect": { @@ -31862,7 +32345,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSelectCapture": { @@ -31881,7 +32364,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTouchCancel": { @@ -31900,7 +32383,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchCancelCapture": { @@ -31919,7 +32402,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchEnd": { @@ -31938,7 +32421,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchEndCapture": { @@ -31957,7 +32440,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchMove": { @@ -31976,7 +32459,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchMoveCapture": { @@ -31995,7 +32478,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchStart": { @@ -32014,7 +32497,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchStartCapture": { @@ -32033,7 +32516,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onPointerDown": { @@ -32052,7 +32535,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerDownCapture": { @@ -32071,7 +32554,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerMove": { @@ -32090,7 +32573,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerMoveCapture": { @@ -32109,7 +32592,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerUp": { @@ -32128,7 +32611,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerUpCapture": { @@ -32147,7 +32630,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerCancel": { @@ -32166,7 +32649,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerCancelCapture": { @@ -32185,7 +32668,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerEnter": { @@ -32204,7 +32687,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerLeave": { @@ -32223,7 +32706,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOver": { @@ -32242,7 +32725,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOverCapture": { @@ -32261,7 +32744,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOut": { @@ -32280,7 +32763,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOutCapture": { @@ -32299,7 +32782,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onGotPointerCapture": { @@ -32318,7 +32801,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onGotPointerCaptureCapture": { @@ -32337,7 +32820,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onLostPointerCapture": { @@ -32356,7 +32839,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onLostPointerCaptureCapture": { @@ -32375,7 +32858,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onScroll": { @@ -32394,7 +32877,7 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "UIEventHandler" } }, "onScrollCapture": { @@ -32413,7 +32896,7 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "UIEventHandler" } }, "onWheel": { @@ -32432,7 +32915,7 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "WheelEventHandler" } }, "onWheelCapture": { @@ -32451,7 +32934,7 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "WheelEventHandler" } }, "onAnimationStart": { @@ -32470,7 +32953,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationStartCapture": { @@ -32489,7 +32972,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationEnd": { @@ -32508,7 +32991,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationEndCapture": { @@ -32527,7 +33010,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationIteration": { @@ -32546,7 +33029,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationIterationCapture": { @@ -32565,7 +33048,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onTransitionEnd": { @@ -32584,7 +33067,7 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" + "name": "TransitionEventHandler" } }, "onTransitionEndCapture": { @@ -32603,373 +33086,379 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" + "name": "TransitionEventHandler" } }, - "space": { - "defaultValue": { - "value": 0 + "value": { + "defaultValue": null, + "description": "The value of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefvalue).", + "name": "value", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+checkbox@3.8.1_react@18.3.1/node_modules/@react-types/checkbox/src/index.d.ts", + "name": "ToggleProps" }, - "description": "The space between the children.", - "name": "space", "declarations": [ { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" + "fileName": "marigold/node_modules/.pnpm/@react-types+checkbox@3.8.1_react@18.3.1/node_modules/@react-types/checkbox/src/index.d.ts", + "name": "ToggleProps" } ], "required": false, "type": { - "name": "0 | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96" + "name": "string" } - } - }, - "CheckBoxField.tsx": { - "labelWidth": { + }, + "onChange": { "defaultValue": null, - "description": "", - "name": "labelWidth", + "description": "Handler that is called when the element's selection state changes.", + "name": "onChange", "parent": { - "fileName": "marigold/packages/components/src/Checkbox/CheckBoxField.tsx", - "name": "CheckboxFieldProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+checkbox@3.8.1_react@18.3.1/node_modules/@react-types/checkbox/src/index.d.ts", + "name": "ToggleProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Checkbox/CheckBoxField.tsx", - "name": "CheckboxFieldProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+checkbox@3.8.1_react@18.3.1/node_modules/@react-types/checkbox/src/index.d.ts", + "name": "ToggleProps" } ], - "required": true, + "required": false, "type": { - "name": "string" + "name": "((isSelected: boolean) => void)" } - } - }, - "Checkbox.tsx": { - "indeterminate": { - "defaultValue": { - "value": "false" - }, - "description": "Use when it represents both selected and not selected values.", - "name": "indeterminate", + }, + "onFocus": { + "defaultValue": null, + "description": "Handler that is called when the element receives focus.", + "name": "onFocus", "parent": { - "fileName": "marigold/packages/components/src/Checkbox/Checkbox.tsx", - "name": "CheckboxProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Checkbox/Checkbox.tsx", - "name": "CheckboxProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" } ], "required": false, "type": { - "name": "boolean" + "name": "((e: FocusEvent) => void)" } }, - "error": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the checkbox is considered invalid and if set the `errorMessage` is shown instead of the `description`.", - "name": "error", + "onBlur": { + "defaultValue": null, + "description": "Handler that is called when the element loses focus.", + "name": "onBlur", "parent": { - "fileName": "marigold/packages/components/src/Checkbox/Checkbox.tsx", - "name": "CheckboxProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Checkbox/Checkbox.tsx", - "name": "CheckboxProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" } ], "required": false, "type": { - "name": "boolean" + "name": "((e: FocusEvent) => void)" } }, - "className": { + "onKeyDown": { "defaultValue": null, - "description": "", - "name": "className", + "description": "Handler that is called when a key is pressed.", + "name": "onKeyDown", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" } ], "required": false, "type": { - "name": "string" + "name": "((e: KeyboardEvent) => void)" } }, - "form": { + "onKeyUp": { "defaultValue": null, - "description": "", - "name": "form", + "description": "Handler that is called when a key is released.", + "name": "onKeyUp", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" } ], "required": false, "type": { - "name": "string" + "name": "((e: KeyboardEvent) => void)" } }, - "slot": { + "ref": { "defaultValue": null, - "description": "", - "name": "slot", + "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", + "name": "ref", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "RefAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "RefAttributes" } ], "required": false, "type": { - "name": "string" + "name": "LegacyRef" } - }, - "title": { + } + }, + "CheckboxGroup.tsx": { + "children": { "defaultValue": null, - "description": "", - "name": "title", + "description": "The children of the component", + "name": "children", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", + "name": "CheckboxGroupProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", + "name": "CheckboxGroupProps" } ], "required": false, "type": { - "name": "string" + "name": "ReactNode" } }, - "pattern": { - "defaultValue": null, - "description": "", - "name": "pattern", + "width": { + "defaultValue": { + "value": "full" + }, + "description": "Sets the width of the field. You can see allowed tokens here: https://tailwindcss.com/docs/width", + "name": "width", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", + "name": "CheckboxGroupProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", + "name": "CheckboxGroupProps" } ], "required": false, "type": { - "name": "string" + "name": "0 | \"auto\" | \"full\" | \"fit\" | \"min\" | \"max\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." } }, - "key": { - "defaultValue": null, - "description": "", - "name": "key", + "disabled": { + "defaultValue": { + "value": "false" + }, + "description": "Sets all checkboxes to disabled", + "name": "disabled", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", + "name": "CheckboxGroupProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" - }, - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", + "name": "CheckboxGroupProps" } ], "required": false, "type": { - "name": "Key | null" + "name": "boolean" } }, - "accept": { - "defaultValue": null, - "description": "", - "name": "accept", + "required": { + "defaultValue": { + "value": "false" + }, + "description": "Sets the checkbox as required.", + "name": "required", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", + "name": "CheckboxGroupProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", + "name": "CheckboxGroupProps" } ], "required": false, "type": { - "name": "string" + "name": "boolean" } }, - "alt": { - "defaultValue": null, - "description": "", - "name": "alt", + "error": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the checkbox is considered invalid and if set the `errorMessage` is shown instead of the `description`.", + "name": "error", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", + "name": "CheckboxGroupProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", + "name": "CheckboxGroupProps" } ], "required": false, "type": { - "name": "string" + "name": "boolean" } }, - "autoComplete": { - "defaultValue": null, - "description": "", - "name": "autoComplete", + "readOnly": { + "defaultValue": { + "value": "false" + }, + "description": "Sets the checkbox on read only.", + "name": "readOnly", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", + "name": "CheckboxGroupProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", + "name": "CheckboxGroupProps" } ], "required": false, "type": { - "name": "HTMLInputAutoCompleteAttribute" + "name": "boolean" } }, - "capture": { - "defaultValue": null, - "description": "", - "name": "capture", + "orientation": { + "defaultValue": { + "value": "vertical" + }, + "description": "Wheather the component is displayed vertically or horizontally.", + "name": "orientation", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", + "name": "CheckboxGroupProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", + "name": "CheckboxGroupProps" } ], "required": false, "type": { - "name": "boolean | \"user\" | \"environment\"" + "name": "Orientation" } }, - "checked": { - "defaultValue": null, - "description": "", - "name": "checked", + "validationBehavior": { + "defaultValue": { + "value": "'native'" + }, + "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.", + "name": "validationBehavior", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RACValidation" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RACValidation" } ], "required": false, "type": { - "name": "boolean" + "name": "\"native\" | \"aria\"" } }, - "disabled": { + "value": { "defaultValue": null, - "description": "", - "name": "disabled", + "description": "The current value (controlled).", + "name": "value", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "ValueBase" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "ValueBase" } ], "required": false, "type": { - "name": "boolean" + "name": "string[]" } }, - "enterKeyHint": { + "defaultValue": { "defaultValue": null, - "description": "", - "name": "enterKeyHint", + "description": "The default value (uncontrolled).", + "name": "defaultValue", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "ValueBase" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "ValueBase" } ], "required": false, "type": { - "name": "\"search\" | \"enter\" | \"done\" | \"go\" | \"next\" | \"previous\" | \"send\"" + "name": "string[]" } }, - "formAction": { + "onChange": { "defaultValue": null, - "description": "", - "name": "formAction", + "description": "Handler that is called when the value changes.", + "name": "onChange", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "ValueBase" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "ValueBase" } ], "required": false, "type": { - "name": "string" + "name": "((value: string[]) => void)" } }, - "formEncType": { + "name": { "defaultValue": null, - "description": "", - "name": "formEncType", + "description": "The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).", + "name": "name", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "InputDOMProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "InputDOMProps" } ], "required": false, @@ -32977,56 +33466,56 @@ "name": "string" } }, - "formMethod": { + "validate": { "defaultValue": null, - "description": "", - "name": "formMethod", + "description": "A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.", + "name": "validate", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "Validation" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "Validation" } ], "required": false, "type": { - "name": "string" + "name": "((value: string[]) => true | ValidationError | null)" } }, - "formNoValidate": { + "id": { "defaultValue": null, - "description": "", - "name": "formNoValidate", + "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", + "name": "id", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" } ], "required": false, "type": { - "name": "boolean" + "name": "string" } }, - "formTarget": { + "aria-label": { "defaultValue": null, - "description": "", - "name": "formTarget", + "description": "Defines a string value that labels the current element.", + "name": "aria-label", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" } ], "required": false, @@ -33034,37 +33523,37 @@ "name": "string" } }, - "height": { + "aria-labelledby": { "defaultValue": null, - "description": "", - "name": "height", + "description": "Identifies the element (or elements) that labels the current element.", + "name": "aria-labelledby", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" } ], "required": false, "type": { - "name": "string | number" + "name": "string" } }, - "list": { + "aria-describedby": { "defaultValue": null, - "description": "", - "name": "list", + "description": "Identifies the element (or elements) that describes the object.", + "name": "aria-describedby", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" } ], "required": false, @@ -33072,189 +33561,193 @@ "name": "string" } }, - "max": { + "aria-details": { "defaultValue": null, - "description": "", - "name": "max", + "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", + "name": "aria-details", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" } ], "required": false, "type": { - "name": "string | number" + "name": "string" } }, - "maxLength": { + "aria-errormessage": { "defaultValue": null, - "description": "", - "name": "maxLength", + "description": "Identifies the element that provides an error message for the object.", + "name": "aria-errormessage", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaValidationProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaValidationProps" } ], "required": false, "type": { - "name": "number" + "name": "string" } }, - "min": { + "onFocus": { "defaultValue": null, - "description": "", - "name": "min", + "description": "Handler that is called when the element receives focus.", + "name": "onFocus", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" } ], "required": false, "type": { - "name": "string | number" + "name": "((e: FocusEvent) => void)" } }, - "minLength": { + "onBlur": { "defaultValue": null, - "description": "", - "name": "minLength", + "description": "Handler that is called when the element loses focus.", + "name": "onBlur", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" } ], "required": false, "type": { - "name": "number" + "name": "((e: FocusEvent) => void)" } }, - "multiple": { + "onFocusChange": { "defaultValue": null, - "description": "", - "name": "multiple", + "description": "Handler that is called when the element's focus status changes.", + "name": "onFocusChange", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" } ], "required": false, "type": { - "name": "boolean" + "name": "((isFocused: boolean) => void)" } }, - "name": { + "slot": { "defaultValue": null, - "description": "", - "name": "name", + "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", + "name": "slot", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" } ], "required": false, "type": { - "name": "string" + "name": "string | null" } }, - "placeholder": { + "label": { "defaultValue": null, "description": "", - "name": "placeholder", + "name": "label", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", + "name": "FieldBaseProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", + "name": "FieldBaseProps" } ], "required": false, "type": { - "name": "string" + "name": "ReactNode" } }, - "readOnly": { + "description": { "defaultValue": null, - "description": "", - "name": "readOnly", + "description": "A helpful text.", + "name": "description", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" } ], "required": false, "type": { - "name": "boolean" + "name": "ReactNode" } }, - "required": { + "errorMessage": { "defaultValue": null, - "description": "", - "name": "required", + "description": "An error message.", + "name": "errorMessage", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" } ], "required": false, "type": { - "name": "boolean" + "name": "ReactNode | ((v: ValidationResult) => ReactNode)" } - }, - "src": { - "defaultValue": null, - "description": "", - "name": "src", + } + }, + "Center.tsx": { + "maxWidth": { + "defaultValue": { + "value": "100%" + }, + "description": "The maximum width of the container.", + "name": "maxWidth", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Center/Center.tsx", + "name": "CenterProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Center/Center.tsx", + "name": "CenterProps" } ], "required": false, @@ -33262,48 +33755,67 @@ "name": "string" } }, - "step": { + "slot": { "defaultValue": null, "description": "", - "name": "step", + "name": "slot", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "string | number" + "name": "string" } }, - "width": { + "title": { "defaultValue": null, "description": "", - "name": "width", + "name": "title", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "string | number" + "name": "string" } }, - "defaultChecked": { + "key": { "defaultValue": null, "description": "", - "name": "defaultChecked", + "name": "key", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" + } + ], + "required": false, + "type": { + "name": "Key | null" + } + }, + "defaultChecked": { + "defaultValue": null, + "description": "", + "name": "defaultChecked", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -33319,6 +33831,25 @@ "name": "boolean" } }, + "defaultValue": { + "defaultValue": null, + "description": "", + "name": "defaultValue", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string | number | readonly string[]" + } + }, "suppressContentEditableWarning": { "defaultValue": null, "description": "", @@ -34076,7 +34607,7 @@ ], "required": false, "type": { - "name": "\"off\" | \"on\"" + "name": "\"on\" | \"off\"" } }, "inputMode": { @@ -34095,7 +34626,7 @@ ], "required": false, "type": { - "name": "\"search\" | \"text\" | \"email\" | \"tel\" | \"none\" | \"url\" | \"numeric\" | \"decimal\"" + "name": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" } }, "is": { @@ -34361,7 +34892,7 @@ ], "required": false, "type": { - "name": "boolean | \"time\" | \"step\" | \"true\" | \"false\" | \"page\" | \"location\" | \"date\"" + "name": "boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\"" } }, "aria-describedby": { @@ -35159,7 +35690,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCopyCapture": { @@ -35178,7 +35709,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCut": { @@ -35197,7 +35728,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCutCapture": { @@ -35216,7 +35747,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onPaste": { @@ -35235,7 +35766,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onPasteCapture": { @@ -35254,7 +35785,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCompositionEnd": { @@ -35273,7 +35804,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionEndCapture": { @@ -35292,7 +35823,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionStart": { @@ -35311,7 +35842,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionStartCapture": { @@ -35330,7 +35861,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionUpdate": { @@ -35349,7 +35880,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionUpdateCapture": { @@ -35368,7 +35899,26 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" + } + }, + "onFocus": { + "defaultValue": null, + "description": "", + "name": "onFocus", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FocusEventHandler" } }, "onFocusCapture": { @@ -35387,7 +35937,26 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" + } + }, + "onBlur": { + "defaultValue": null, + "description": "", + "name": "onBlur", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FocusEventHandler" } }, "onBlurCapture": { @@ -35406,7 +35975,26 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" + } + }, + "onChange": { + "defaultValue": null, + "description": "", + "name": "onChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" } }, "onChangeCapture": { @@ -35425,7 +36013,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onBeforeInput": { @@ -35444,7 +36032,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onBeforeInputCapture": { @@ -35463,7 +36051,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInput": { @@ -35482,7 +36070,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInputCapture": { @@ -35501,7 +36089,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onReset": { @@ -35520,7 +36108,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onResetCapture": { @@ -35539,7 +36127,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onSubmit": { @@ -35558,7 +36146,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onSubmitCapture": { @@ -35577,7 +36165,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInvalid": { @@ -35596,7 +36184,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInvalidCapture": { @@ -35615,7 +36203,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onLoad": { @@ -35634,7 +36222,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadCapture": { @@ -35653,7 +36241,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onError": { @@ -35672,7 +36260,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onErrorCapture": { @@ -35691,7 +36279,26 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" + } + }, + "onKeyDown": { + "defaultValue": null, + "description": "", + "name": "onKeyDown", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "KeyboardEventHandler" } }, "onKeyDownCapture": { @@ -35710,7 +36317,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyPress": { @@ -35729,7 +36336,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyPressCapture": { @@ -35748,7 +36355,26 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" + } + }, + "onKeyUp": { + "defaultValue": null, + "description": "", + "name": "onKeyUp", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "KeyboardEventHandler" } }, "onKeyUpCapture": { @@ -35767,7 +36393,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onAbort": { @@ -35786,7 +36412,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onAbortCapture": { @@ -35805,7 +36431,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlay": { @@ -35824,7 +36450,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayCapture": { @@ -35843,7 +36469,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayThrough": { @@ -35862,7 +36488,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayThroughCapture": { @@ -35881,7 +36507,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onDurationChange": { @@ -35900,7 +36526,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onDurationChangeCapture": { @@ -35919,7 +36545,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEmptied": { @@ -35938,7 +36564,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEmptiedCapture": { @@ -35957,7 +36583,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEncrypted": { @@ -35976,7 +36602,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEncryptedCapture": { @@ -35995,7 +36621,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEnded": { @@ -36014,7 +36640,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEndedCapture": { @@ -36033,7 +36659,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedData": { @@ -36052,7 +36678,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedDataCapture": { @@ -36071,7 +36697,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedMetadata": { @@ -36090,7 +36716,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedMetadataCapture": { @@ -36109,7 +36735,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadStart": { @@ -36128,7 +36754,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadStartCapture": { @@ -36147,7 +36773,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPause": { @@ -36166,7 +36792,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPauseCapture": { @@ -36185,7 +36811,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlay": { @@ -36204,7 +36830,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlayCapture": { @@ -36223,7 +36849,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlaying": { @@ -36242,7 +36868,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlayingCapture": { @@ -36261,7 +36887,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onProgress": { @@ -36280,7 +36906,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onProgressCapture": { @@ -36299,7 +36925,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onRateChange": { @@ -36318,7 +36944,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onRateChangeCapture": { @@ -36337,7 +36963,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onResize": { @@ -36356,7 +36982,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onResizeCapture": { @@ -36375,7 +37001,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeeked": { @@ -36394,7 +37020,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeekedCapture": { @@ -36413,7 +37039,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeeking": { @@ -36432,7 +37058,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeekingCapture": { @@ -36451,7 +37077,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onStalled": { @@ -36470,7 +37096,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onStalledCapture": { @@ -36489,7 +37115,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSuspend": { @@ -36508,7 +37134,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSuspendCapture": { @@ -36527,7 +37153,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTimeUpdate": { @@ -36546,7 +37172,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTimeUpdateCapture": { @@ -36565,7 +37191,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onVolumeChange": { @@ -36584,7 +37210,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onVolumeChangeCapture": { @@ -36603,7 +37229,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onWaiting": { @@ -36622,7 +37248,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onWaitingCapture": { @@ -36641,7 +37267,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onAuxClick": { @@ -36660,7 +37286,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onAuxClickCapture": { @@ -36679,7 +37305,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onClick": { @@ -36698,7 +37324,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onClickCapture": { @@ -36717,7 +37343,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onContextMenu": { @@ -36736,7 +37362,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onContextMenuCapture": { @@ -36755,7 +37381,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDoubleClick": { @@ -36774,7 +37400,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDoubleClickCapture": { @@ -36793,7 +37419,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDrag": { @@ -36812,7 +37438,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragCapture": { @@ -36831,7 +37457,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnd": { @@ -36850,7 +37476,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEndCapture": { @@ -36869,7 +37495,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnter": { @@ -36888,7 +37514,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnterCapture": { @@ -36907,7 +37533,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragExit": { @@ -36926,7 +37552,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragExitCapture": { @@ -36945,7 +37571,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragLeave": { @@ -36964,7 +37590,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragLeaveCapture": { @@ -36983,7 +37609,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragOver": { @@ -37002,7 +37628,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragOverCapture": { @@ -37021,7 +37647,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragStart": { @@ -37040,7 +37666,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragStartCapture": { @@ -37059,7 +37685,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDrop": { @@ -37078,7 +37704,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDropCapture": { @@ -37097,7 +37723,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onMouseDown": { @@ -37116,7 +37742,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseDownCapture": { @@ -37135,7 +37761,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseEnter": { @@ -37154,7 +37780,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseLeave": { @@ -37173,7 +37799,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseMove": { @@ -37192,7 +37818,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseMoveCapture": { @@ -37211,7 +37837,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOut": { @@ -37230,7 +37856,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOutCapture": { @@ -37249,7 +37875,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOver": { @@ -37268,7 +37894,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOverCapture": { @@ -37287,7 +37913,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseUp": { @@ -37306,7 +37932,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseUpCapture": { @@ -37325,7 +37951,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onSelect": { @@ -37344,7 +37970,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSelectCapture": { @@ -37363,7 +37989,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTouchCancel": { @@ -37382,7 +38008,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchCancelCapture": { @@ -37401,7 +38027,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchEnd": { @@ -37420,7 +38046,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchEndCapture": { @@ -37439,7 +38065,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchMove": { @@ -37458,7 +38084,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchMoveCapture": { @@ -37477,7 +38103,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchStart": { @@ -37496,7 +38122,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchStartCapture": { @@ -37515,7 +38141,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onPointerDown": { @@ -37534,7 +38160,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerDownCapture": { @@ -37553,7 +38179,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerMove": { @@ -37572,7 +38198,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerMoveCapture": { @@ -37591,7 +38217,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerUp": { @@ -37610,7 +38236,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerUpCapture": { @@ -37629,7 +38255,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerCancel": { @@ -37648,7 +38274,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerCancelCapture": { @@ -37667,7 +38293,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerEnter": { @@ -37686,7 +38312,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerLeave": { @@ -37705,7 +38331,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOver": { @@ -37724,7 +38350,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOverCapture": { @@ -37743,7 +38369,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOut": { @@ -37762,7 +38388,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOutCapture": { @@ -37781,7 +38407,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onGotPointerCapture": { @@ -37800,7 +38426,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onGotPointerCaptureCapture": { @@ -37819,7 +38445,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onLostPointerCapture": { @@ -37838,7 +38464,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onLostPointerCaptureCapture": { @@ -37857,7 +38483,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onScroll": { @@ -37876,7 +38502,7 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "UIEventHandler" } }, "onScrollCapture": { @@ -37895,7 +38521,7 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "UIEventHandler" } }, "onWheel": { @@ -37914,7 +38540,7 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "WheelEventHandler" } }, "onWheelCapture": { @@ -37933,7 +38559,7 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "WheelEventHandler" } }, "onAnimationStart": { @@ -37952,7 +38578,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationStartCapture": { @@ -37971,7 +38597,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationEnd": { @@ -37990,7 +38616,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationEndCapture": { @@ -38009,7 +38635,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationIteration": { @@ -38028,7 +38654,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationIterationCapture": { @@ -38047,7 +38673,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onTransitionEnd": { @@ -38066,7 +38692,7 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" + "name": "TransitionEventHandler" } }, "onTransitionEndCapture": { @@ -38085,379 +38711,363 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" + "name": "TransitionEventHandler" } }, - "value": { - "defaultValue": null, - "description": "The value of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefvalue).", - "name": "value", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+checkbox@3.8.1_react@18.3.1/node_modules/@react-types/checkbox/src/index.d.ts", - "name": "ToggleProps" + "space": { + "defaultValue": { + "value": 0 }, + "description": "The space between the children.", + "name": "space", "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+checkbox@3.8.1_react@18.3.1/node_modules/@react-types/checkbox/src/index.d.ts", - "name": "ToggleProps" + "fileName": "marigold/packages/system/src/style-props.tsx", + "name": "TypeLiteral" } ], "required": false, "type": { - "name": "string" + "name": "0 | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96" } - }, - "onChange": { + } + }, + "ChevronDown.tsx": { + "className": { "defaultValue": null, - "description": "Handler that is called when the element's selection state changes.", - "name": "onChange", + "description": "To add a className on svg and icons.", + "name": "className", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+checkbox@3.8.1_react@18.3.1/node_modules/@react-types/checkbox/src/index.d.ts", - "name": "ToggleProps" + "fileName": "marigold/packages/components/src/Chevron/ChevronDown.tsx", + "name": "SVGProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+checkbox@3.8.1_react@18.3.1/node_modules/@react-types/checkbox/src/index.d.ts", - "name": "ToggleProps" + "fileName": "marigold/packages/components/src/Chevron/ChevronDown.tsx", + "name": "SVGProps" } ], "required": false, "type": { - "name": "((isSelected: boolean) => void)" + "name": "string" } }, - "onFocus": { + "string": { "defaultValue": null, - "description": "Handler that is called when the element receives focus.", - "name": "onFocus", + "description": "", + "name": "string", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "((e: FocusEvent) => void)" + "name": "string | number" } }, - "onBlur": { + "clipPath": { "defaultValue": null, - "description": "Handler that is called when the element loses focus.", - "name": "onBlur", + "description": "", + "name": "clipPath", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "((e: FocusEvent) => void)" + "name": "string" } }, - "onKeyDown": { + "filter": { "defaultValue": null, - "description": "Handler that is called when a key is pressed.", - "name": "onKeyDown", + "description": "", + "name": "filter", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "((e: KeyboardEvent) => void)" + "name": "string" } }, - "onKeyUp": { + "mask": { "defaultValue": null, - "description": "Handler that is called when a key is released.", - "name": "onKeyUp", + "description": "", + "name": "mask", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "((e: KeyboardEvent) => void)" + "name": "string" } }, - "ref": { + "path": { "defaultValue": null, - "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", - "name": "ref", + "description": "", + "name": "path", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "LegacyRef" + "name": "string" } - } - }, - "CheckboxGroup.tsx": { - "children": { + }, + "suppressHydrationWarning": { "defaultValue": null, - "description": "The children of the component", - "name": "children", + "description": "", + "name": "suppressHydrationWarning", "parent": { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactNode" + "name": "boolean" } }, - "width": { - "defaultValue": { - "value": "full" - }, - "description": "Sets the width of the field. You can see allowed tokens here: https://tailwindcss.com/docs/width", - "name": "width", + "color": { + "defaultValue": null, + "description": "", + "name": "color", "parent": { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "0 | \"auto\" | \"full\" | \"fit\" | \"min\" | \"max\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." + "name": "string" } }, - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "Sets all checkboxes to disabled", - "name": "disabled", + "height": { + "defaultValue": null, + "description": "", + "name": "height", "parent": { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string | number" } }, - "required": { - "defaultValue": { - "value": "false" - }, - "description": "Sets the checkbox as required.", - "name": "required", + "id": { + "defaultValue": null, + "description": "", + "name": "id", "parent": { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string" } }, - "error": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the checkbox is considered invalid and if set the `errorMessage` is shown instead of the `description`.", - "name": "error", + "lang": { + "defaultValue": null, + "description": "", + "name": "lang", "parent": { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string" } }, - "readOnly": { - "defaultValue": { - "value": "false" - }, - "description": "Sets the checkbox on read only.", - "name": "readOnly", + "max": { + "defaultValue": null, + "description": "", + "name": "max", "parent": { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string | number" } }, - "orientation": { - "defaultValue": { - "value": "vertical" - }, - "description": "Wheather the component is displayed vertically or horizontally.", - "name": "orientation", + "media": { + "defaultValue": null, + "description": "", + "name": "media", "parent": { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "Orientation" + "name": "string" } }, - "validationBehavior": { - "defaultValue": { - "value": "'native'" - }, - "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.", - "name": "validationBehavior", + "method": { + "defaultValue": null, + "description": "", + "name": "method", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RACValidation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RACValidation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "\"native\" | \"aria\"" + "name": "string" } }, - "value": { + "min": { "defaultValue": null, - "description": "The current value (controlled).", - "name": "value", + "description": "", + "name": "min", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "ValueBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "ValueBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string[]" + "name": "string | number" } }, - "defaultValue": { + "name": { "defaultValue": null, - "description": "The default value (uncontrolled).", - "name": "defaultValue", + "description": "", + "name": "name", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "ValueBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "ValueBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string[]" + "name": "string" } }, - "onChange": { + "target": { "defaultValue": null, - "description": "Handler that is called when the value changes.", - "name": "onChange", + "description": "", + "name": "target", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "ValueBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "ValueBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "((value: string[]) => void)" + "name": "string" } }, - "name": { + "type": { "defaultValue": null, - "description": "The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).", - "name": "name", + "description": "", + "name": "type", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "InputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "InputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, @@ -38465,894 +39075,284 @@ "name": "string" } }, - "validate": { + "width": { "defaultValue": null, - "description": "A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.", - "name": "validate", + "description": "", + "name": "width", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "Validation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "Validation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "((value: string[]) => true | ValidationError | null)" + "name": "string | number" } }, - "id": { + "role": { "defaultValue": null, - "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", - "name": "id", + "description": "", + "name": "role", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "AriaRole" } }, - "aria-label": { + "tabIndex": { "defaultValue": null, - "description": "Defines a string value that labels the current element.", - "name": "aria-label", + "description": "", + "name": "tabIndex", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "number" } }, - "aria-labelledby": { + "crossOrigin": { "defaultValue": null, - "description": "Identifies the element (or elements) that labels the current element.", - "name": "aria-labelledby", + "description": "", + "name": "crossOrigin", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "CrossOrigin" } }, - "aria-describedby": { + "accentHeight": { "defaultValue": null, - "description": "Identifies the element (or elements) that describes the object.", - "name": "aria-describedby", + "description": "", + "name": "accentHeight", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "string | number" } }, - "aria-details": { + "accumulate": { "defaultValue": null, - "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", - "name": "aria-details", + "description": "", + "name": "accumulate", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "\"none\" | \"sum\"" } }, - "aria-errormessage": { + "additive": { "defaultValue": null, - "description": "Identifies the element that provides an error message for the object.", - "name": "aria-errormessage", + "description": "", + "name": "additive", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaValidationProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaValidationProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "\"sum\" | \"replace\"" } }, - "onFocus": { + "alignmentBaseline": { "defaultValue": null, - "description": "Handler that is called when the element receives focus.", - "name": "onFocus", + "description": "", + "name": "alignmentBaseline", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "((e: FocusEvent) => void)" + "name": "\"alphabetic\" | \"hanging\" | \"ideographic\" | \"mathematical\" | \"auto\" | \"baseline\" | \"before-edge\" | \"text-before-edge\" | \"middle\" | \"central\" | \"after-edge\" | \"text-after-edge\" | \"inherit\"" } }, - "onBlur": { + "allowReorder": { "defaultValue": null, - "description": "Handler that is called when the element loses focus.", - "name": "onBlur", + "description": "", + "name": "allowReorder", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "((e: FocusEvent) => void)" + "name": "\"no\" | \"yes\"" } }, - "onFocusChange": { + "alphabetic": { "defaultValue": null, - "description": "Handler that is called when the element's focus status changes.", - "name": "onFocusChange", + "description": "", + "name": "alphabetic", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "((isFocused: boolean) => void)" + "name": "string | number" } }, - "slot": { + "amplitude": { "defaultValue": null, - "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", - "name": "slot", + "description": "", + "name": "amplitude", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string | null" + "name": "string | number" } }, - "label": { + "arabicForm": { "defaultValue": null, "description": "", - "name": "label", + "name": "arabicForm", "parent": { - "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", - "name": "FieldBaseProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", - "name": "FieldBaseProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactNode" + "name": "\"initial\" | \"medial\" | \"terminal\" | \"isolated\"" } }, - "description": { + "ascent": { "defaultValue": null, - "description": "A helpful text.", - "name": "description", + "description": "", + "name": "ascent", "parent": { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactNode" + "name": "string | number" } }, - "errorMessage": { + "attributeName": { "defaultValue": null, - "description": "An error message.", - "name": "errorMessage", + "description": "", + "name": "attributeName", "parent": { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactNode | ((v: ValidationResult) => ReactNode)" + "name": "string" } - } - }, - "ChevronDown.tsx": { - "className": { + }, + "attributeType": { "defaultValue": null, "description": "", - "name": "className", + "name": "attributeType", "parent": { - "fileName": "marigold/packages/components/src/Chevron/ChevronDown.tsx", - "name": "SVGProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Chevron/ChevronDown.tsx", - "name": "SVGProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "string": { - "defaultValue": null, - "description": "", - "name": "string", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "clipPath": { - "defaultValue": null, - "description": "", - "name": "clipPath", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "filter": { - "defaultValue": null, - "description": "", - "name": "filter", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "mask": { - "defaultValue": null, - "description": "", - "name": "mask", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "path": { - "defaultValue": null, - "description": "", - "name": "path", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "suppressHydrationWarning": { - "defaultValue": null, - "description": "", - "name": "suppressHydrationWarning", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "color": { - "defaultValue": null, - "description": "", - "name": "color", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "height": { - "defaultValue": null, - "description": "", - "name": "height", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "id": { - "defaultValue": null, - "description": "", - "name": "id", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "lang": { - "defaultValue": null, - "description": "", - "name": "lang", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "max": { - "defaultValue": null, - "description": "", - "name": "max", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "media": { - "defaultValue": null, - "description": "", - "name": "media", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "method": { - "defaultValue": null, - "description": "", - "name": "method", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "min": { - "defaultValue": null, - "description": "", - "name": "min", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "name": { - "defaultValue": null, - "description": "", - "name": "name", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "target": { - "defaultValue": null, - "description": "", - "name": "target", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "type": { - "defaultValue": null, - "description": "", - "name": "type", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "width": { - "defaultValue": null, - "description": "", - "name": "width", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "role": { - "defaultValue": null, - "description": "", - "name": "role", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "AriaRole" - } - }, - "tabIndex": { - "defaultValue": null, - "description": "", - "name": "tabIndex", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "number" - } - }, - "crossOrigin": { - "defaultValue": null, - "description": "", - "name": "crossOrigin", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "CrossOrigin" - } - }, - "accentHeight": { - "defaultValue": null, - "description": "", - "name": "accentHeight", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "accumulate": { - "defaultValue": null, - "description": "", - "name": "accumulate", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "\"none\" | \"sum\"" - } - }, - "additive": { - "defaultValue": null, - "description": "", - "name": "additive", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "\"sum\" | \"replace\"" - } - }, - "alignmentBaseline": { - "defaultValue": null, - "description": "", - "name": "alignmentBaseline", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "\"alphabetic\" | \"hanging\" | \"ideographic\" | \"mathematical\" | \"auto\" | \"baseline\" | \"before-edge\" | \"text-before-edge\" | \"middle\" | \"central\" | \"after-edge\" | \"text-after-edge\" | \"inherit\"" - } - }, - "allowReorder": { - "defaultValue": null, - "description": "", - "name": "allowReorder", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "\"no\" | \"yes\"" - } - }, - "alphabetic": { - "defaultValue": null, - "description": "", - "name": "alphabetic", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "amplitude": { - "defaultValue": null, - "description": "", - "name": "amplitude", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "arabicForm": { - "defaultValue": null, - "description": "", - "name": "arabicForm", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "\"initial\" | \"medial\" | \"terminal\" | \"isolated\"" - } - }, - "ascent": { - "defaultValue": null, - "description": "", - "name": "ascent", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "attributeName": { - "defaultValue": null, - "description": "", - "name": "attributeName", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "attributeType": { - "defaultValue": null, - "description": "", - "name": "attributeType", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, @@ -47747,7 +47747,7 @@ "ChevronLeft.tsx": { "className": { "defaultValue": null, - "description": "", + "description": "To add a className on svg and icons.", "name": "className", "parent": { "fileName": "marigold/packages/components/src/Chevron/ChevronLeft.tsx", @@ -56759,7 +56759,7 @@ "ChevronRight.tsx": { "className": { "defaultValue": null, - "description": "", + "description": "To add a className on svg and icons.", "name": "className", "parent": { "fileName": "marigold/packages/components/src/Chevron/ChevronRight.tsx", @@ -65771,7 +65771,7 @@ "ChevronUp.tsx": { "className": { "defaultValue": null, - "description": "", + "description": "To add a className on svg and icons.", "name": "className", "parent": { "fileName": "marigold/packages/components/src/Chevron/ChevronUp.tsx", @@ -74780,105 +74780,6 @@ } } }, - "Columns.tsx": { - "children": { - "defaultValue": null, - "description": "The children of the component.", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Columns/Columns.tsx", - "name": "ColumnsProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Columns/Columns.tsx", - "name": "ColumnsProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "columns": { - "defaultValue": null, - "description": "An array of numbers to set the size of the children. The columns array length and the count of children must be the same. Write \"fit\" for the column you want to have it fitting the contents width and height.", - "name": "columns", - "parent": { - "fileName": "marigold/packages/components/src/Columns/Columns.tsx", - "name": "ColumnsProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Columns/Columns.tsx", - "name": "ColumnsProps" - } - ], - "required": true, - "type": { - "name": "(number | \"fit\")[]" - } - }, - "collapseAt": { - "defaultValue": { - "value": "0em" - }, - "description": "Collapse children into a vertical layout at given width. Note that `collapseAt` is based on the total element width, and not the window width. With a default value of \"0\" columns will not collapse by default.", - "name": "collapseAt", - "parent": { - "fileName": "marigold/packages/components/src/Columns/Columns.tsx", - "name": "ColumnsProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Columns/Columns.tsx", - "name": "ColumnsProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "stretch": { - "defaultValue": { - "value": "false" - }, - "description": "Stretch to height of parent container.", - "name": "stretch", - "parent": { - "fileName": "marigold/packages/components/src/Columns/Columns.tsx", - "name": "ColumnsProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Columns/Columns.tsx", - "name": "ColumnsProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "space": { - "defaultValue": { - "value": 0 - }, - "description": "The space between the children.", - "name": "space", - "declarations": [ - { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" - } - ], - "required": false, - "type": { - "name": "0 | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96" - } - } - }, "ComboBox.tsx": { "disabled": { "defaultValue": { @@ -75708,6 +75609,105 @@ } } }, + "Columns.tsx": { + "children": { + "defaultValue": null, + "description": "The children of the component.", + "name": "children", + "parent": { + "fileName": "marigold/packages/components/src/Columns/Columns.tsx", + "name": "ColumnsProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Columns/Columns.tsx", + "name": "ColumnsProps" + } + ], + "required": false, + "type": { + "name": "ReactNode" + } + }, + "columns": { + "defaultValue": null, + "description": "An array of numbers to set the size of the children. The columns array length and the count of children must be the same. Write \"fit\" for the column you want to have it fitting the contents width and height.", + "name": "columns", + "parent": { + "fileName": "marigold/packages/components/src/Columns/Columns.tsx", + "name": "ColumnsProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Columns/Columns.tsx", + "name": "ColumnsProps" + } + ], + "required": true, + "type": { + "name": "(number | \"fit\")[]" + } + }, + "collapseAt": { + "defaultValue": { + "value": "0em" + }, + "description": "Collapse children into a vertical layout at given width. Note that `collapseAt` is based on the total element width, and not the window width. With a default value of \"0\" columns will not collapse by default.", + "name": "collapseAt", + "parent": { + "fileName": "marigold/packages/components/src/Columns/Columns.tsx", + "name": "ColumnsProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Columns/Columns.tsx", + "name": "ColumnsProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "stretch": { + "defaultValue": { + "value": "false" + }, + "description": "Stretch to height of parent container.", + "name": "stretch", + "parent": { + "fileName": "marigold/packages/components/src/Columns/Columns.tsx", + "name": "ColumnsProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Columns/Columns.tsx", + "name": "ColumnsProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "space": { + "defaultValue": { + "value": 0 + }, + "description": "The space between the children.", + "name": "space", + "declarations": [ + { + "fileName": "marigold/packages/system/src/style-props.tsx", + "name": "TypeLiteral" + } + ], + "required": false, + "type": { + "name": "0 | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96" + } + } + }, "Container.tsx": { "contentType": { "defaultValue": { @@ -83014,6 +83014,44 @@ "name": "ReactNode" } }, + "isInvalid": { + "defaultValue": null, + "description": "Use RAC prop names here so we can directly pass the components via \"as\"", + "name": "isInvalid", + "parent": { + "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", + "name": "FieldBaseProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", + "name": "FieldBaseProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "isRequired": { + "defaultValue": null, + "description": "", + "name": "isRequired", + "parent": { + "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", + "name": "FieldBaseProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", + "name": "FieldBaseProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, "width": { "defaultValue": null, "description": "Set the width of the element.", @@ -83026,7 +83064,7 @@ ], "required": false, "type": { - "name": "0 | 1 | \"auto\" | \"max\" | \"min\" | \"full\" | \"fit\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." + "name": "0 | \"auto\" | \"max\" | \"min\" | \"full\" | \"fit\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." } }, "description": { @@ -83109,7 +83147,7 @@ "FieldGroup.tsx": { "labelWidth": { "defaultValue": null, - "description": "", + "description": "Sets the width of all Fields labels used inside the `FieldGroup`", "name": "labelWidth", "parent": { "fileName": "marigold/packages/components/src/FieldBase/FieldGroup.tsx", @@ -88662,6 +88700,46 @@ } } }, + "HelpText.tsx": { + "description": { + "defaultValue": null, + "description": "A helpful text.", + "name": "description", + "parent": { + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" + } + ], + "required": false, + "type": { + "name": "ReactNode" + } + }, + "errorMessage": { + "defaultValue": null, + "description": "An error message.", + "name": "errorMessage", + "parent": { + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" + } + ], + "required": false, + "type": { + "name": "ReactNode | ((v: ValidationResult) => ReactNode)" + } + } + }, "Header.tsx": { "children": { "defaultValue": null, @@ -93680,51 +93758,49 @@ } } }, - "Headline.tsx": { - "color": { + "Image.tsx": { + "children": { "defaultValue": null, - "description": "Set the color of the headline.", - "name": "color", + "description": "The children of the component.", + "name": "children", "parent": { - "fileName": "marigold/packages/components/src/Headline/Headline.tsx", - "name": "HeadlineProps" + "fileName": "marigold/packages/components/src/Image/Image.tsx", + "name": "ImageProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Headline/Headline.tsx", - "name": "HeadlineProps" + "fileName": "marigold/packages/components/src/Image/Image.tsx", + "name": "ImageProps" } ], "required": false, "type": { - "name": "string" + "name": "undefined" } }, - "level": { - "defaultValue": { - "value": 1 - }, - "description": "Set a different level from theme, values are from 1 - 6.", - "name": "level", + "alt": { + "defaultValue": null, + "description": "specifies an alternate text for an image, if the image cannot be displayed.", + "name": "alt", "parent": { - "fileName": "marigold/packages/components/src/Headline/Headline.tsx", - "name": "HeadlineProps" + "fileName": "marigold/packages/components/src/Image/Image.tsx", + "name": "ImageProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Headline/Headline.tsx", - "name": "HeadlineProps" + "fileName": "marigold/packages/components/src/Image/Image.tsx", + "name": "ImageProps" } ], - "required": false, + "required": true, "type": { - "name": "number | \"1\" | \"2\" | \"3\" | \"4\" | \"5\" | \"6\"" + "name": "string" } }, - "defaultChecked": { + "slot": { "defaultValue": null, "description": "", - "name": "defaultChecked", + "name": "slot", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -93737,13 +93813,13 @@ ], "required": false, "type": { - "name": "boolean" + "name": "string" } }, - "defaultValue": { + "title": { "defaultValue": null, "description": "", - "name": "defaultValue", + "name": "title", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -93756,32 +93832,241 @@ ], "required": false, "type": { - "name": "string | number | readonly string[]" + "name": "string" } }, - "suppressContentEditableWarning": { + "key": { "defaultValue": null, "description": "", - "name": "suppressContentEditableWarning", + "name": "key", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "Attributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "Attributes" } ], "required": false, "type": { - "name": "boolean" + "name": "Key | null" } }, - "suppressHydrationWarning": { + "crossOrigin": { "defaultValue": null, "description": "", - "name": "suppressHydrationWarning", + "name": "crossOrigin", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "CrossOrigin" + } + }, + "decoding": { + "defaultValue": null, + "description": "", + "name": "decoding", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "\"async\" | \"auto\" | \"sync\"" + } + }, + "fetchPriority": { + "defaultValue": null, + "description": "", + "name": "fetchPriority", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "\"auto\" | \"high\" | \"low\"" + } + }, + "height": { + "defaultValue": null, + "description": "", + "name": "height", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string | number" + } + }, + "loading": { + "defaultValue": null, + "description": "", + "name": "loading", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "\"eager\" | \"lazy\"" + } + }, + "referrerPolicy": { + "defaultValue": null, + "description": "", + "name": "referrerPolicy", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "HTMLAttributeReferrerPolicy" + } + }, + "sizes": { + "defaultValue": null, + "description": "", + "name": "sizes", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "src": { + "defaultValue": null, + "description": "", + "name": "src", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "srcSet": { + "defaultValue": null, + "description": "", + "name": "srcSet", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "useMap": { + "defaultValue": null, + "description": "", + "name": "useMap", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "width": { + "defaultValue": null, + "description": "", + "name": "width", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "ImgHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string | number" + } + }, + "defaultChecked": { + "defaultValue": null, + "description": "", + "name": "defaultChecked", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -93797,10 +94082,10 @@ "name": "boolean" } }, - "accessKey": { + "defaultValue": { "defaultValue": null, "description": "", - "name": "accessKey", + "name": "defaultValue", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -93813,13 +94098,13 @@ ], "required": false, "type": { - "name": "string" + "name": "string | number | readonly string[]" } }, - "autoFocus": { + "suppressContentEditableWarning": { "defaultValue": null, "description": "", - "name": "autoFocus", + "name": "suppressContentEditableWarning", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -93835,10 +94120,10 @@ "name": "boolean" } }, - "contentEditable": { + "suppressHydrationWarning": { "defaultValue": null, "description": "", - "name": "contentEditable", + "name": "suppressHydrationWarning", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -93851,13 +94136,13 @@ ], "required": false, "type": { - "name": "Booleanish | \"inherit\" | \"plaintext-only\"" + "name": "boolean" } }, - "contextMenu": { + "accessKey": { "defaultValue": null, "description": "", - "name": "contextMenu", + "name": "accessKey", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -93873,10 +94158,10 @@ "name": "string" } }, - "dir": { + "autoFocus": { "defaultValue": null, "description": "", - "name": "dir", + "name": "autoFocus", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -93889,13 +94174,13 @@ ], "required": false, "type": { - "name": "string" + "name": "boolean" } }, - "draggable": { + "contentEditable": { "defaultValue": null, "description": "", - "name": "draggable", + "name": "contentEditable", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -93908,13 +94193,13 @@ ], "required": false, "type": { - "name": "Booleanish" + "name": "Booleanish | \"inherit\" | \"plaintext-only\"" } }, - "hidden": { + "contextMenu": { "defaultValue": null, "description": "", - "name": "hidden", + "name": "contextMenu", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -93927,13 +94212,13 @@ ], "required": false, "type": { - "name": "boolean" + "name": "string" } }, - "id": { + "dir": { "defaultValue": null, "description": "", - "name": "id", + "name": "dir", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -93949,10 +94234,10 @@ "name": "string" } }, - "lang": { + "draggable": { "defaultValue": null, "description": "", - "name": "lang", + "name": "draggable", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -93965,13 +94250,13 @@ ], "required": false, "type": { - "name": "string" + "name": "Booleanish" } }, - "nonce": { + "hidden": { "defaultValue": null, "description": "", - "name": "nonce", + "name": "hidden", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -93984,13 +94269,13 @@ ], "required": false, "type": { - "name": "string" + "name": "boolean" } }, - "slot": { + "id": { "defaultValue": null, "description": "", - "name": "slot", + "name": "id", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -94006,10 +94291,10 @@ "name": "string" } }, - "spellCheck": { + "lang": { "defaultValue": null, "description": "", - "name": "spellCheck", + "name": "lang", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -94022,13 +94307,13 @@ ], "required": false, "type": { - "name": "Booleanish" + "name": "string" } }, - "style": { + "nonce": { "defaultValue": null, "description": "", - "name": "style", + "name": "nonce", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -94041,13 +94326,13 @@ ], "required": false, "type": { - "name": "CSSProperties" + "name": "string" } }, - "tabIndex": { + "spellCheck": { "defaultValue": null, "description": "", - "name": "tabIndex", + "name": "spellCheck", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -94060,13 +94345,13 @@ ], "required": false, "type": { - "name": "number" + "name": "Booleanish" } }, - "title": { + "tabIndex": { "defaultValue": null, "description": "", - "name": "title", + "name": "tabIndex", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "HTMLAttributes" @@ -94079,7 +94364,7 @@ ], "required": false, "type": { - "name": "string" + "name": "number" } }, "translate": { @@ -94405,6 +94690,25 @@ "name": "string" } }, + "color": { + "defaultValue": null, + "description": "", + "name": "color", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, "itemProp": { "defaultValue": null, "description": "", @@ -94573,7 +94877,7 @@ ], "required": false, "type": { - "name": "\"none\" | \"search\" | \"text\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" + "name": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" } }, "is": { @@ -94839,7 +95143,7 @@ ], "required": false, "type": { - "name": "boolean | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\" | \"time\"" + "name": "boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\"" } }, "aria-describedby": { @@ -94934,7 +95238,7 @@ ], "required": false, "type": { - "name": "\"none\" | \"link\" | \"copy\" | \"execute\" | \"move\" | \"popup\"" + "name": "\"link\" | \"none\" | \"copy\" | \"execute\" | \"move\" | \"popup\"" } }, "aria-errormessage": { @@ -95029,7 +95333,7 @@ ], "required": false, "type": { - "name": "boolean | \"true\" | \"false\" | \"dialog\" | \"grid\" | \"listbox\" | \"menu\" | \"tree\"" + "name": "boolean | \"dialog\" | \"menu\" | \"true\" | \"false\" | \"grid\" | \"listbox\" | \"tree\"" } }, "aria-hidden": { @@ -95637,7 +95941,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCopyCapture": { @@ -95656,7 +95960,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCut": { @@ -95675,7 +95979,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCutCapture": { @@ -95694,7 +95998,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onPaste": { @@ -95713,7 +96017,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onPasteCapture": { @@ -95732,7 +96036,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCompositionEnd": { @@ -95751,7 +96055,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionEndCapture": { @@ -95770,7 +96074,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionStart": { @@ -95789,7 +96093,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionStartCapture": { @@ -95808,7 +96112,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionUpdate": { @@ -95827,7 +96131,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionUpdateCapture": { @@ -95846,7 +96150,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onFocus": { @@ -95865,7 +96169,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onFocusCapture": { @@ -95884,7 +96188,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onBlur": { @@ -95903,7 +96207,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onBlurCapture": { @@ -95922,7 +96226,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onChange": { @@ -95941,7 +96245,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onChangeCapture": { @@ -95960,7 +96264,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onBeforeInput": { @@ -95979,7 +96283,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onBeforeInputCapture": { @@ -95998,7 +96302,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInput": { @@ -96017,7 +96321,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInputCapture": { @@ -96036,7 +96340,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onReset": { @@ -96055,7 +96359,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onResetCapture": { @@ -96074,7 +96378,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onSubmit": { @@ -96093,7 +96397,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onSubmitCapture": { @@ -96112,7 +96416,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInvalid": { @@ -96131,7 +96435,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInvalidCapture": { @@ -96150,7 +96454,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onLoad": { @@ -96169,7 +96473,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadCapture": { @@ -96188,7 +96492,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onError": { @@ -96207,7 +96511,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onErrorCapture": { @@ -96226,7 +96530,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onKeyDown": { @@ -96245,7 +96549,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyDownCapture": { @@ -96264,7 +96568,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyPress": { @@ -96283,7 +96587,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyPressCapture": { @@ -96302,7 +96606,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyUp": { @@ -96321,7 +96625,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyUpCapture": { @@ -96340,7 +96644,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onAbort": { @@ -96359,7 +96663,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onAbortCapture": { @@ -96378,7 +96682,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlay": { @@ -96397,7 +96701,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayCapture": { @@ -96416,7 +96720,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayThrough": { @@ -96435,7 +96739,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayThroughCapture": { @@ -96454,7 +96758,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onDurationChange": { @@ -96473,7 +96777,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onDurationChangeCapture": { @@ -96492,7 +96796,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEmptied": { @@ -96511,7 +96815,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEmptiedCapture": { @@ -96530,7 +96834,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEncrypted": { @@ -96549,7 +96853,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEncryptedCapture": { @@ -96568,7 +96872,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEnded": { @@ -96587,7 +96891,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEndedCapture": { @@ -96606,7 +96910,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedData": { @@ -96625,7 +96929,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedDataCapture": { @@ -96644,7 +96948,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedMetadata": { @@ -96663,7 +96967,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedMetadataCapture": { @@ -96682,7 +96986,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadStart": { @@ -96701,7 +97005,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadStartCapture": { @@ -96720,7 +97024,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPause": { @@ -96739,7 +97043,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPauseCapture": { @@ -96758,7 +97062,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlay": { @@ -96777,7 +97081,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlayCapture": { @@ -96796,7 +97100,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlaying": { @@ -96815,7 +97119,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlayingCapture": { @@ -96834,7 +97138,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onProgress": { @@ -96853,7 +97157,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onProgressCapture": { @@ -96872,7 +97176,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onRateChange": { @@ -96891,7 +97195,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onRateChangeCapture": { @@ -96910,7 +97214,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onResize": { @@ -96929,7 +97233,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onResizeCapture": { @@ -96948,7 +97252,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeeked": { @@ -96967,7 +97271,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeekedCapture": { @@ -96986,7 +97290,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeeking": { @@ -97005,7 +97309,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeekingCapture": { @@ -97024,7 +97328,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onStalled": { @@ -97043,7 +97347,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onStalledCapture": { @@ -97062,7 +97366,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSuspend": { @@ -97081,7 +97385,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSuspendCapture": { @@ -97100,7 +97404,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTimeUpdate": { @@ -97119,7 +97423,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTimeUpdateCapture": { @@ -97138,7 +97442,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onVolumeChange": { @@ -97157,7 +97461,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onVolumeChangeCapture": { @@ -97176,7 +97480,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onWaiting": { @@ -97195,7 +97499,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onWaitingCapture": { @@ -97214,7 +97518,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onAuxClick": { @@ -97233,7 +97537,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onAuxClickCapture": { @@ -97252,7 +97556,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onClick": { @@ -97271,7 +97575,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onClickCapture": { @@ -97290,7 +97594,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onContextMenu": { @@ -97309,7 +97613,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onContextMenuCapture": { @@ -97328,7 +97632,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDoubleClick": { @@ -97347,7 +97651,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDoubleClickCapture": { @@ -97366,7 +97670,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDrag": { @@ -97385,7 +97689,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragCapture": { @@ -97404,7 +97708,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnd": { @@ -97423,7 +97727,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEndCapture": { @@ -97442,7 +97746,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnter": { @@ -97461,7 +97765,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnterCapture": { @@ -97480,7 +97784,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragExit": { @@ -97499,7 +97803,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragExitCapture": { @@ -97518,7 +97822,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragLeave": { @@ -97537,7 +97841,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragLeaveCapture": { @@ -97556,7 +97860,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragOver": { @@ -97575,7 +97879,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragOverCapture": { @@ -97594,7 +97898,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragStart": { @@ -97613,7 +97917,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragStartCapture": { @@ -97632,7 +97936,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDrop": { @@ -97651,7 +97955,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDropCapture": { @@ -97670,7 +97974,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onMouseDown": { @@ -97689,7 +97993,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseDownCapture": { @@ -97708,7 +98012,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseEnter": { @@ -97727,7 +98031,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseLeave": { @@ -97746,7 +98050,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseMove": { @@ -97765,7 +98069,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseMoveCapture": { @@ -97784,7 +98088,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOut": { @@ -97803,7 +98107,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOutCapture": { @@ -97822,7 +98126,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOver": { @@ -97841,7 +98145,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOverCapture": { @@ -97860,7 +98164,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseUp": { @@ -97879,7 +98183,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseUpCapture": { @@ -97898,7 +98202,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onSelect": { @@ -97917,7 +98221,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSelectCapture": { @@ -97936,7 +98240,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTouchCancel": { @@ -97955,7 +98259,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchCancelCapture": { @@ -97974,7 +98278,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchEnd": { @@ -97993,7 +98297,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchEndCapture": { @@ -98012,7 +98316,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchMove": { @@ -98031,7 +98335,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchMoveCapture": { @@ -98050,7 +98354,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchStart": { @@ -98069,7 +98373,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchStartCapture": { @@ -98088,7 +98392,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onPointerDown": { @@ -98107,7 +98411,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerDownCapture": { @@ -98126,7 +98430,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerMove": { @@ -98145,7 +98449,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerMoveCapture": { @@ -98164,7 +98468,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerUp": { @@ -98183,7 +98487,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerUpCapture": { @@ -98202,7 +98506,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerCancel": { @@ -98221,7 +98525,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerCancelCapture": { @@ -98240,7 +98544,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerEnter": { @@ -98259,7 +98563,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerLeave": { @@ -98278,7 +98582,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOver": { @@ -98297,7 +98601,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOverCapture": { @@ -98316,7 +98620,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOut": { @@ -98335,7 +98639,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOutCapture": { @@ -98354,7 +98658,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onGotPointerCapture": { @@ -98373,7 +98677,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onGotPointerCaptureCapture": { @@ -98392,7 +98696,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onLostPointerCapture": { @@ -98411,7 +98715,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onLostPointerCaptureCapture": { @@ -98430,7 +98734,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onScroll": { @@ -98449,7 +98753,7 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "UIEventHandler" } }, "onScrollCapture": { @@ -98468,7 +98772,7 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "UIEventHandler" } }, "onWheel": { @@ -98487,7 +98791,7 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "WheelEventHandler" } }, "onWheelCapture": { @@ -98506,7 +98810,7 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "WheelEventHandler" } }, "onAnimationStart": { @@ -98525,7 +98829,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationStartCapture": { @@ -98544,7 +98848,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationEnd": { @@ -98563,7 +98867,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationEndCapture": { @@ -98582,7 +98886,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationIteration": { @@ -98601,7 +98905,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationIterationCapture": { @@ -98620,7 +98924,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onTransitionEnd": { @@ -98639,7 +98943,7 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" + "name": "TransitionEventHandler" } }, "onTransitionEndCapture": { @@ -98658,15 +98962,15 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" + "name": "TransitionEventHandler" } }, - "align": { + "fit": { "defaultValue": { - "value": "left" + "value": "none" }, - "description": "Set the text alignment for the element.", - "name": "align", + "description": "Set the object-fit property for the element.", + "name": "fit", "declarations": [ { "fileName": "marigold/packages/system/src/style-props.tsx", @@ -98675,101 +98979,249 @@ ], "required": false, "type": { - "name": "\"none\" | \"left\" | \"center\" | \"right\"" + "name": "\"contain\" | \"cover\" | \"fill\" | \"none\" | \"scaleDown\"" + } + }, + "position": { + "defaultValue": { + "value": "none" + }, + "description": "Set the object-position property for the element.", + "name": "position", + "declarations": [ + { + "fileName": "marigold/packages/system/src/style-props.tsx", + "name": "TypeLiteral" + } + ], + "required": false, + "type": { + "name": "\"center\" | \"none\" | \"bottom\" | \"left\" | \"leftBottom\" | \"leftTop\" | \"right\" | \"rightBottom\" | \"rightTop\" | \"top\"" } } }, - "HelpText.tsx": { - "description": { + "Input.tsx": { + "icon": { "defaultValue": null, - "description": "A helpful text.", - "name": "description", + "description": "", + "name": "icon", "parent": { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" + "fileName": "marigold/packages/components/src/Input/Input.tsx", + "name": "InputProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" + "fileName": "marigold/packages/components/src/Input/Input.tsx", + "name": "InputProps" } ], "required": false, "type": { - "name": "ReactNode" + "name": "ReactElement>" } }, - "errorMessage": { + "action": { "defaultValue": null, - "description": "An error message.", - "name": "errorMessage", + "description": "", + "name": "action", "parent": { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" + "fileName": "marigold/packages/components/src/Input/Input.tsx", + "name": "InputProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" + "fileName": "marigold/packages/components/src/Input/Input.tsx", + "name": "InputProps" } ], "required": false, "type": { - "name": "ReactNode | ((v: ValidationResult) => ReactNode)" + "name": "ReactElement>" } - } - }, - "Image.tsx": { - "children": { + }, + "className": { "defaultValue": null, - "description": "The children of the component.", - "name": "children", + "description": "", + "name": "className", "parent": { - "fileName": "marigold/packages/components/src/Image/Image.tsx", - "name": "ImageProps" + "fileName": "marigold/packages/components/src/Input/Input.tsx", + "name": "InputProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Image/Image.tsx", - "name": "ImageProps" + "fileName": "marigold/packages/components/src/Input/Input.tsx", + "name": "InputProps" } ], "required": false, "type": { - "name": "undefined" + "name": "string" + } + }, + "type": { + "defaultValue": null, + "description": "", + "name": "type", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "HTMLInputTypeAttribute" + } + }, + "accept": { + "defaultValue": null, + "description": "", + "name": "accept", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" } }, "alt": { "defaultValue": null, - "description": "specifies an alternate text for an image, if the image cannot be displayed.", + "description": "", "name": "alt", "parent": { - "fileName": "marigold/packages/components/src/Image/Image.tsx", - "name": "ImageProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Image/Image.tsx", - "name": "ImageProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" } ], - "required": true, + "required": false, "type": { "name": "string" } }, - "slot": { + "autoComplete": { "defaultValue": null, "description": "", - "name": "slot", + "name": "autoComplete", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "InputHTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "HTMLInputAutoCompleteAttribute" + } + }, + "capture": { + "defaultValue": null, + "description": "", + "name": "capture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "boolean | \"user\" | \"environment\"" + } + }, + "checked": { + "defaultValue": null, + "description": "", + "name": "checked", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "disabled": { + "defaultValue": null, + "description": "", + "name": "disabled", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "enterKeyHint": { + "defaultValue": null, + "description": "", + "name": "enterKeyHint", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "\"search\" | \"enter\" | \"done\" | \"go\" | \"next\" | \"previous\" | \"send\"" + } + }, + "form": { + "defaultValue": null, + "description": "", + "name": "form", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" } ], "required": false, @@ -98777,18 +99229,18 @@ "name": "string" } }, - "title": { + "formAction": { "defaultValue": null, "description": "", - "name": "title", + "name": "formAction", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "InputHTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "InputHTMLAttributes" } ], "required": false, @@ -98796,80 +99248,80 @@ "name": "string" } }, - "key": { + "formEncType": { "defaultValue": null, "description": "", - "name": "key", + "name": "formEncType", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "name": "InputHTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "name": "InputHTMLAttributes" } ], "required": false, "type": { - "name": "Key | null" + "name": "string" } }, - "crossOrigin": { + "formMethod": { "defaultValue": null, "description": "", - "name": "crossOrigin", + "name": "formMethod", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" } ], "required": false, "type": { - "name": "CrossOrigin" + "name": "string" } }, - "decoding": { + "formNoValidate": { "defaultValue": null, "description": "", - "name": "decoding", + "name": "formNoValidate", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" } ], "required": false, "type": { - "name": "\"async\" | \"auto\" | \"sync\"" + "name": "boolean" } }, - "fetchPriority": { + "formTarget": { "defaultValue": null, "description": "", - "name": "fetchPriority", + "name": "formTarget", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" } ], "required": false, "type": { - "name": "\"auto\" | \"high\" | \"low\"" + "name": "string" } }, "height": { @@ -98878,12 +99330,12 @@ "name": "height", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" } ], "required": false, @@ -98891,56 +99343,132 @@ "name": "string | number" } }, - "loading": { + "list": { "defaultValue": null, "description": "", - "name": "loading", + "name": "list", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" } ], "required": false, "type": { - "name": "\"eager\" | \"lazy\"" + "name": "string" } }, - "referrerPolicy": { + "max": { "defaultValue": null, "description": "", - "name": "referrerPolicy", + "name": "max", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" } ], "required": false, "type": { - "name": "HTMLAttributeReferrerPolicy" + "name": "string | number" } }, - "sizes": { + "maxLength": { "defaultValue": null, "description": "", - "name": "sizes", + "name": "maxLength", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "min": { + "defaultValue": null, + "description": "", + "name": "min", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string | number" + } + }, + "minLength": { + "defaultValue": null, + "description": "", + "name": "minLength", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "multiple": { + "defaultValue": null, + "description": "", + "name": "multiple", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "name": { + "defaultValue": null, + "description": "", + "name": "name", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" } ], "required": false, @@ -98948,18 +99476,18 @@ "name": "string" } }, - "src": { + "pattern": { "defaultValue": null, "description": "", - "name": "src", + "name": "pattern", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" } ], "required": false, @@ -98967,18 +99495,18 @@ "name": "string" } }, - "srcSet": { + "placeholder": { "defaultValue": null, "description": "", - "name": "srcSet", + "name": "placeholder", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" } ], "required": false, @@ -98986,18 +99514,56 @@ "name": "string" } }, - "useMap": { + "readOnly": { "defaultValue": null, "description": "", - "name": "useMap", + "name": "readOnly", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "required": { + "defaultValue": null, + "description": "", + "name": "required", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "src": { + "defaultValue": null, + "description": "", + "name": "src", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" } ], "required": false, @@ -99005,18 +99571,56 @@ "name": "string" } }, + "step": { + "defaultValue": null, + "description": "", + "name": "step", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string | number" + } + }, + "value": { + "defaultValue": null, + "description": "", + "name": "value", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string | number | readonly string[]" + } + }, "width": { "defaultValue": null, "description": "", "name": "width", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ImgHTMLAttributes" + "name": "InputHTMLAttributes" } ], "required": false, @@ -99024,6 +99628,25 @@ "name": "string | number" } }, + "onChange": { + "defaultValue": null, + "description": "", + "name": "onChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "ChangeEventHandler" + } + }, "defaultChecked": { "defaultValue": null, "description": "", @@ -99290,6 +99913,25 @@ "name": "string" } }, + "slot": { + "defaultValue": null, + "description": "", + "name": "slot", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, "spellCheck": { "defaultValue": null, "description": "", @@ -99328,6 +99970,25 @@ "name": "number" } }, + "title": { + "defaultValue": null, + "description": "", + "name": "title", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, "translate": { "defaultValue": null, "description": "", @@ -99819,7 +100480,7 @@ ], "required": false, "type": { - "name": "\"on\" | \"off\"" + "name": "\"off\" | \"on\"" } }, "inputMode": { @@ -99838,7 +100499,7 @@ ], "required": false, "type": { - "name": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" + "name": "\"email\" | \"search\" | \"tel\" | \"text\" | \"url\" | \"none\" | \"numeric\" | \"decimal\"" } }, "is": { @@ -99914,7 +100575,7 @@ ], "required": false, "type": { - "name": "\"none\" | \"list\" | \"inline\" | \"both\"" + "name": "\"list\" | \"none\" | \"inline\" | \"both\"" } }, "aria-braillelabel": { @@ -100104,7 +100765,7 @@ ], "required": false, "type": { - "name": "boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\"" + "name": "boolean | \"step\" | \"date\" | \"time\" | \"true\" | \"false\" | \"page\" | \"location\"" } }, "aria-describedby": { @@ -100294,7 +100955,7 @@ ], "required": false, "type": { - "name": "boolean | \"dialog\" | \"menu\" | \"true\" | \"false\" | \"grid\" | \"listbox\" | \"tree\"" + "name": "boolean | \"true\" | \"false\" | \"dialog\" | \"grid\" | \"listbox\" | \"menu\" | \"tree\"" } }, "aria-hidden": { @@ -100902,7 +101563,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCopyCapture": { @@ -100921,7 +101582,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCut": { @@ -100940,7 +101601,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCutCapture": { @@ -100959,7 +101620,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onPaste": { @@ -100978,7 +101639,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onPasteCapture": { @@ -100997,7 +101658,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCompositionEnd": { @@ -101016,7 +101677,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionEndCapture": { @@ -101035,7 +101696,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionStart": { @@ -101054,7 +101715,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionStartCapture": { @@ -101073,7 +101734,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionUpdate": { @@ -101092,7 +101753,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionUpdateCapture": { @@ -101111,7 +101772,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onFocus": { @@ -101130,7 +101791,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onFocusCapture": { @@ -101149,7 +101810,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onBlur": { @@ -101168,7 +101829,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onBlurCapture": { @@ -101187,26 +101848,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" - } - }, - "onChange": { - "defaultValue": null, - "description": "", - "name": "onChange", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" - } - ], - "required": false, - "type": { - "name": "FormEventHandler" + "name": "FocusEventHandler" } }, "onChangeCapture": { @@ -101225,7 +101867,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onBeforeInput": { @@ -101244,7 +101886,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onBeforeInputCapture": { @@ -101263,7 +101905,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInput": { @@ -101282,7 +101924,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInputCapture": { @@ -101301,7 +101943,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onReset": { @@ -101320,7 +101962,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onResetCapture": { @@ -101339,7 +101981,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onSubmit": { @@ -101358,7 +102000,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onSubmitCapture": { @@ -101377,7 +102019,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInvalid": { @@ -101396,7 +102038,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInvalidCapture": { @@ -101415,7 +102057,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onLoad": { @@ -101434,7 +102076,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadCapture": { @@ -101453,7 +102095,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onError": { @@ -101472,7 +102114,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onErrorCapture": { @@ -101491,7 +102133,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onKeyDown": { @@ -101510,7 +102152,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyDownCapture": { @@ -101529,7 +102171,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyPress": { @@ -101548,7 +102190,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyPressCapture": { @@ -101567,7 +102209,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyUp": { @@ -101586,7 +102228,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyUpCapture": { @@ -101605,7 +102247,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onAbort": { @@ -101624,7 +102266,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onAbortCapture": { @@ -101643,7 +102285,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlay": { @@ -101662,7 +102304,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayCapture": { @@ -101681,7 +102323,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayThrough": { @@ -101700,7 +102342,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayThroughCapture": { @@ -101719,7 +102361,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onDurationChange": { @@ -101738,7 +102380,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onDurationChangeCapture": { @@ -101757,7 +102399,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEmptied": { @@ -101776,7 +102418,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEmptiedCapture": { @@ -101795,7 +102437,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEncrypted": { @@ -101814,7 +102456,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEncryptedCapture": { @@ -101833,7 +102475,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEnded": { @@ -101852,7 +102494,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEndedCapture": { @@ -101871,7 +102513,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedData": { @@ -101890,7 +102532,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedDataCapture": { @@ -101909,7 +102551,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedMetadata": { @@ -101928,7 +102570,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedMetadataCapture": { @@ -101947,7 +102589,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadStart": { @@ -101966,7 +102608,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadStartCapture": { @@ -101985,7 +102627,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPause": { @@ -102004,7 +102646,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPauseCapture": { @@ -102023,7 +102665,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlay": { @@ -102042,7 +102684,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlayCapture": { @@ -102061,7 +102703,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlaying": { @@ -102080,7 +102722,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlayingCapture": { @@ -102099,7 +102741,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onProgress": { @@ -102118,7 +102760,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onProgressCapture": { @@ -102137,7 +102779,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onRateChange": { @@ -102156,7 +102798,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onRateChangeCapture": { @@ -102175,7 +102817,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onResize": { @@ -102194,7 +102836,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onResizeCapture": { @@ -102213,7 +102855,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeeked": { @@ -102232,7 +102874,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeekedCapture": { @@ -102251,7 +102893,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeeking": { @@ -102270,7 +102912,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeekingCapture": { @@ -102289,7 +102931,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onStalled": { @@ -102308,7 +102950,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onStalledCapture": { @@ -102327,7 +102969,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSuspend": { @@ -102346,7 +102988,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSuspendCapture": { @@ -102365,7 +103007,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTimeUpdate": { @@ -102384,7 +103026,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTimeUpdateCapture": { @@ -102403,7 +103045,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onVolumeChange": { @@ -102422,7 +103064,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onVolumeChangeCapture": { @@ -102441,7 +103083,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onWaiting": { @@ -102460,7 +103102,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onWaitingCapture": { @@ -102479,7 +103121,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onAuxClick": { @@ -102498,7 +103140,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onAuxClickCapture": { @@ -102517,7 +103159,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onClick": { @@ -102536,7 +103178,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onClickCapture": { @@ -102555,7 +103197,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onContextMenu": { @@ -102574,7 +103216,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onContextMenuCapture": { @@ -102593,7 +103235,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDoubleClick": { @@ -102612,7 +103254,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDoubleClickCapture": { @@ -102631,7 +103273,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDrag": { @@ -102650,7 +103292,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragCapture": { @@ -102669,7 +103311,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnd": { @@ -102688,7 +103330,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEndCapture": { @@ -102707,7 +103349,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnter": { @@ -102726,7 +103368,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnterCapture": { @@ -102745,7 +103387,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragExit": { @@ -102764,7 +103406,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragExitCapture": { @@ -102783,7 +103425,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragLeave": { @@ -102802,7 +103444,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragLeaveCapture": { @@ -102821,7 +103463,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragOver": { @@ -102840,7 +103482,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragOverCapture": { @@ -102859,7 +103501,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragStart": { @@ -102878,7 +103520,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragStartCapture": { @@ -102897,7 +103539,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDrop": { @@ -102916,7 +103558,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDropCapture": { @@ -102935,7 +103577,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onMouseDown": { @@ -102954,7 +103596,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseDownCapture": { @@ -102973,7 +103615,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseEnter": { @@ -102992,7 +103634,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseLeave": { @@ -103011,7 +103653,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseMove": { @@ -103030,7 +103672,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseMoveCapture": { @@ -103049,7 +103691,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOut": { @@ -103068,7 +103710,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOutCapture": { @@ -103087,7 +103729,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOver": { @@ -103106,7 +103748,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOverCapture": { @@ -103125,7 +103767,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseUp": { @@ -103144,7 +103786,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseUpCapture": { @@ -103163,7 +103805,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onSelect": { @@ -103182,7 +103824,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSelectCapture": { @@ -103201,7 +103843,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTouchCancel": { @@ -103220,7 +103862,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchCancelCapture": { @@ -103239,7 +103881,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchEnd": { @@ -103258,7 +103900,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchEndCapture": { @@ -103277,7 +103919,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchMove": { @@ -103296,7 +103938,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchMoveCapture": { @@ -103315,7 +103957,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchStart": { @@ -103334,7 +103976,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchStartCapture": { @@ -103353,7 +103995,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onPointerDown": { @@ -103372,7 +104014,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerDownCapture": { @@ -103391,7 +104033,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerMove": { @@ -103410,7 +104052,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerMoveCapture": { @@ -103429,7 +104071,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerUp": { @@ -103448,7 +104090,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerUpCapture": { @@ -103467,7 +104109,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerCancel": { @@ -103486,7 +104128,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerCancelCapture": { @@ -103505,7 +104147,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerEnter": { @@ -103524,7 +104166,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerLeave": { @@ -103543,7 +104185,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOver": { @@ -103562,7 +104204,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOverCapture": { @@ -103581,7 +104223,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOut": { @@ -103600,7 +104242,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOutCapture": { @@ -103619,7 +104261,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onGotPointerCapture": { @@ -103638,7 +104280,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onGotPointerCaptureCapture": { @@ -103657,7 +104299,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onLostPointerCapture": { @@ -103676,7 +104318,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onLostPointerCaptureCapture": { @@ -103695,7 +104337,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onScroll": { @@ -103714,7 +104356,7 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "UIEventHandler" } }, "onScrollCapture": { @@ -103733,7 +104375,7 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "UIEventHandler" } }, "onWheel": { @@ -103752,7 +104394,7 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "WheelEventHandler" } }, "onWheelCapture": { @@ -103771,7 +104413,7 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "WheelEventHandler" } }, "onAnimationStart": { @@ -103790,7 +104432,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationStartCapture": { @@ -103809,7 +104451,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationEnd": { @@ -103828,7 +104470,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationEndCapture": { @@ -103847,7 +104489,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationIteration": { @@ -103866,7 +104508,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationIterationCapture": { @@ -103885,7 +104527,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onTransitionEnd": { @@ -103904,7 +104546,7 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" + "name": "TransitionEventHandler" } }, "onTransitionEndCapture": { @@ -103923,195 +104565,142 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" - } - }, - "fit": { - "defaultValue": { - "value": "none" - }, - "description": "Set the object-fit property for the element.", - "name": "fit", - "declarations": [ - { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" - } - ], - "required": false, - "type": { - "name": "\"contain\" | \"cover\" | \"fill\" | \"none\" | \"scaleDown\"" + "name": "TransitionEventHandler" } }, - "position": { - "defaultValue": { - "value": "none" - }, - "description": "Set the object-position property for the element.", - "name": "position", - "declarations": [ - { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" - } - ], - "required": false, - "type": { - "name": "\"center\" | \"none\" | \"bottom\" | \"left\" | \"leftBottom\" | \"leftTop\" | \"right\" | \"rightBottom\" | \"rightTop\" | \"top\"" - } - } - }, - "Inline.tsx": { - "alignX": { - "defaultValue": { - "value": "orientation?.horizontal?.alignX" - }, - "description": "Horizontal alignment of the items inside the breakout element.", - "name": "alignX", + "onHoverStart": { + "defaultValue": null, + "description": "Handler that is called when a hover interaction starts.", + "name": "onHoverStart", "parent": { - "fileName": "marigold/packages/components/src/Inline/Inline.tsx", - "name": "InlineProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Inline/Inline.tsx", - "name": "InlineProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" } ], "required": false, "type": { - "name": "\"none\" | \"left\" | \"center\" | \"right\"" + "name": "((e: HoverEvent) => void)" } }, - "alignY": { - "defaultValue": { - "value": "orientation?.horizontal?.alignY" - }, - "description": "Vertical alignment of the items inside the breakout element.", - "name": "alignY", + "onHoverEnd": { + "defaultValue": null, + "description": "Handler that is called when a hover interaction ends.", + "name": "onHoverEnd", "parent": { - "fileName": "marigold/packages/components/src/Inline/Inline.tsx", - "name": "InlineProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Inline/Inline.tsx", - "name": "InlineProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" } ], "required": false, "type": { - "name": "\"none\" | \"center\" | \"top\" | \"bottom\"" + "name": "((e: HoverEvent) => void)" } }, - "orientation": { + "onHoverChange": { "defaultValue": null, - "description": "", - "name": "orientation", - "declarations": [ - { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" - } - ], - "required": false, - "type": { - "name": "{ vertical?: { alignY?: \"none\" | \"center\" | \"top\" | \"bottom\"; alignX?: \"none\" | \"left\" | \"center\" | \"right\"; } | undefined; horizontal?: { alignX?: \"none\" | \"left\" | \"center\" | \"right\" | undefined; alignY?: \"none\" | ... 3 more ... | undefined; } | undefined; } | undefined" - } - }, - "space": { - "defaultValue": { - "value": 0 + "description": "Handler that is called when the hover state changes.", + "name": "onHoverChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" }, - "description": "The space between the children.", - "name": "space", "declarations": [ { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" } ], "required": false, "type": { - "name": "0 | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96" + "name": "((isHovering: boolean) => void)" } - } - }, - "Input.tsx": { - "icon": { + }, + "ref": { "defaultValue": null, - "description": "", - "name": "icon", + "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", + "name": "ref", "parent": { - "fileName": "marigold/packages/components/src/Input/Input.tsx", - "name": "InputProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "RefAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Input/Input.tsx", - "name": "InputProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "RefAttributes" } ], "required": false, "type": { - "name": "ReactElement>" + "name": "LegacyRef" } }, - "action": { + "key": { "defaultValue": null, "description": "", - "name": "action", + "name": "key", "parent": { - "fileName": "marigold/packages/components/src/Input/Input.tsx", - "name": "InputProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Input/Input.tsx", - "name": "InputProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" } ], "required": false, "type": { - "name": "ReactElement>" + "name": "Key | null" } - }, + } + }, + "SearchInput.tsx": { "className": { "defaultValue": null, "description": "", "name": "className", "parent": { - "fileName": "marigold/packages/components/src/Input/Input.tsx", - "name": "InputProps" + "fileName": "marigold/packages/components/src/Input/SearchInput.tsx", + "name": "SearchInputProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Input/Input.tsx", - "name": "InputProps" + "fileName": "marigold/packages/components/src/Input/SearchInput.tsx", + "name": "SearchInputProps" } ], "required": false, "type": { - "name": "string" + "name": "{ input?: string; action?: string; } | undefined" } }, - "type": { + "onClear": { "defaultValue": null, "description": "", - "name": "type", + "name": "onClear", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Input/SearchInput.tsx", + "name": "SearchInputProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Input/SearchInput.tsx", + "name": "SearchInputProps" } ], "required": false, "type": { - "name": "HTMLInputTypeAttribute" + "name": "(() => void)" } }, "accept": { @@ -104244,7 +104833,7 @@ ], "required": false, "type": { - "name": "\"search\" | \"enter\" | \"done\" | \"go\" | \"next\" | \"previous\" | \"send\"" + "name": "\"enter\" | \"done\" | \"go\" | \"next\" | \"previous\" | \"search\" | \"send\"" } }, "form": { @@ -104627,6 +105216,25 @@ "name": "string | number" } }, + "type": { + "defaultValue": null, + "description": "", + "name": "type", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "InputHTMLAttributes" + } + ], + "required": false, + "type": { + "name": "HTMLInputTypeAttribute" + } + }, "value": { "defaultValue": null, "description": "", @@ -105536,7 +106144,7 @@ ], "required": false, "type": { - "name": "\"email\" | \"search\" | \"tel\" | \"text\" | \"url\" | \"none\" | \"numeric\" | \"decimal\"" + "name": "\"email\" | \"tel\" | \"search\" | \"text\" | \"url\" | \"none\" | \"numeric\" | \"decimal\"" } }, "is": { @@ -109662,6 +110270,25 @@ "name": "((isHovering: boolean) => void)" } }, + "action": { + "defaultValue": null, + "description": "", + "name": "action", + "parent": { + "fileName": "marigold/packages/components/src/Input/Input.tsx", + "name": "InputProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Input/Input.tsx", + "name": "InputProps" + } + ], + "required": false, + "type": { + "name": "ReactElement>" + } + }, "ref": { "defaultValue": null, "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", @@ -109701,532 +110328,95 @@ } } }, - "SearchInput.tsx": { - "className": { - "defaultValue": null, - "description": "", - "name": "className", - "parent": { - "fileName": "marigold/packages/components/src/Input/SearchInput.tsx", - "name": "SearchInputProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Input/SearchInput.tsx", - "name": "SearchInputProps" - } - ], - "required": false, - "type": { - "name": "{ input?: string; action?: string; } | undefined" - } - }, - "onClear": { - "defaultValue": null, - "description": "", - "name": "onClear", - "parent": { - "fileName": "marigold/packages/components/src/Input/SearchInput.tsx", - "name": "SearchInputProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Input/SearchInput.tsx", - "name": "SearchInputProps" - } - ], - "required": false, - "type": { - "name": "(() => void)" - } - }, - "accept": { - "defaultValue": null, - "description": "", - "name": "accept", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "alt": { - "defaultValue": null, - "description": "", - "name": "alt", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "autoComplete": { - "defaultValue": null, - "description": "", - "name": "autoComplete", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "HTMLInputAutoCompleteAttribute" - } - }, - "capture": { - "defaultValue": null, - "description": "", - "name": "capture", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "boolean | \"user\" | \"environment\"" - } - }, - "checked": { - "defaultValue": null, - "description": "", - "name": "checked", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "disabled": { - "defaultValue": null, - "description": "", - "name": "disabled", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "enterKeyHint": { - "defaultValue": null, - "description": "", - "name": "enterKeyHint", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "\"enter\" | \"done\" | \"go\" | \"next\" | \"previous\" | \"search\" | \"send\"" - } - }, - "form": { - "defaultValue": null, - "description": "", - "name": "form", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "formAction": { - "defaultValue": null, - "description": "", - "name": "formAction", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "formEncType": { - "defaultValue": null, - "description": "", - "name": "formEncType", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "formMethod": { - "defaultValue": null, - "description": "", - "name": "formMethod", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "formNoValidate": { - "defaultValue": null, - "description": "", - "name": "formNoValidate", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "formTarget": { - "defaultValue": null, - "description": "", - "name": "formTarget", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "height": { - "defaultValue": null, - "description": "", - "name": "height", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "list": { - "defaultValue": null, - "description": "", - "name": "list", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "max": { - "defaultValue": null, - "description": "", - "name": "max", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "maxLength": { - "defaultValue": null, - "description": "", - "name": "maxLength", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "number" - } - }, - "min": { - "defaultValue": null, - "description": "", - "name": "min", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "minLength": { - "defaultValue": null, - "description": "", - "name": "minLength", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "number" - } - }, - "multiple": { - "defaultValue": null, - "description": "", - "name": "multiple", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "Inline.tsx": { + "alignX": { + "defaultValue": { + "value": "orientation?.horizontal?.alignX" }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "name": { - "defaultValue": null, - "description": "", - "name": "name", + "description": "Horizontal alignment of the items inside the breakout element.", + "name": "alignX", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Inline/Inline.tsx", + "name": "InlineProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Inline/Inline.tsx", + "name": "InlineProps" } ], "required": false, "type": { - "name": "string" + "name": "\"none\" | \"left\" | \"center\" | \"right\"" } }, - "pattern": { - "defaultValue": null, - "description": "", - "name": "pattern", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "alignY": { + "defaultValue": { + "value": "orientation?.horizontal?.alignY" }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "placeholder": { - "defaultValue": null, - "description": "", - "name": "placeholder", + "description": "Vertical alignment of the items inside the breakout element.", + "name": "alignY", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Inline/Inline.tsx", + "name": "InlineProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Inline/Inline.tsx", + "name": "InlineProps" } ], "required": false, "type": { - "name": "string" + "name": "\"none\" | \"center\" | \"top\" | \"bottom\"" } }, - "readOnly": { + "orientation": { "defaultValue": null, "description": "", - "name": "readOnly", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, + "name": "orientation", "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/system/src/style-props.tsx", + "name": "TypeLiteral" } ], "required": false, "type": { - "name": "boolean" + "name": "{ vertical?: { alignY?: \"none\" | \"center\" | \"top\" | \"bottom\"; alignX?: \"none\" | \"left\" | \"center\" | \"right\"; } | undefined; horizontal?: { alignX?: \"none\" | \"left\" | \"center\" | \"right\" | undefined; alignY?: \"none\" | ... 3 more ... | undefined; } | undefined; } | undefined" } }, - "required": { - "defaultValue": null, - "description": "", - "name": "required", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "space": { + "defaultValue": { + "value": 0 }, + "description": "The space between the children.", + "name": "space", "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/system/src/style-props.tsx", + "name": "TypeLiteral" } ], "required": false, "type": { - "name": "boolean" + "name": "0 | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96" } - }, - "src": { + } + }, + "Headline.tsx": { + "color": { "defaultValue": null, - "description": "", - "name": "src", + "description": "Set the color of the headline.", + "name": "color", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Headline/Headline.tsx", + "name": "HeadlineProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Headline/Headline.tsx", + "name": "HeadlineProps" } ], "required": false, @@ -110234,99 +110424,25 @@ "name": "string" } }, - "step": { - "defaultValue": null, - "description": "", - "name": "step", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "type": { - "defaultValue": null, - "description": "", - "name": "type", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "HTMLInputTypeAttribute" - } - }, - "value": { - "defaultValue": null, - "description": "", - "name": "value", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string | number | readonly string[]" - } - }, - "width": { - "defaultValue": null, - "description": "", - "name": "width", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "level": { + "defaultValue": { + "value": 1 }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "onChange": { - "defaultValue": null, - "description": "", - "name": "onChange", + "description": "Set a different level from theme, values are from 1 - 6.", + "name": "level", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Headline/Headline.tsx", + "name": "HeadlineProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "InputHTMLAttributes" + "fileName": "marigold/packages/components/src/Headline/Headline.tsx", + "name": "HeadlineProps" } ], "required": false, "type": { - "name": "ChangeEventHandler" + "name": "number | \"1\" | \"2\" | \"3\" | \"4\" | \"5\" | \"6\"" } }, "defaultChecked": { @@ -110633,6 +110749,25 @@ "name": "Booleanish" } }, + "style": { + "defaultValue": null, + "description": "", + "name": "style", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "CSSProperties" + } + }, "tabIndex": { "defaultValue": null, "description": "", @@ -110994,25 +111129,6 @@ "name": "string" } }, - "color": { - "defaultValue": null, - "description": "", - "name": "color", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, "itemProp": { "defaultValue": null, "description": "", @@ -111162,7 +111278,7 @@ ], "required": false, "type": { - "name": "\"off\" | \"on\"" + "name": "\"on\" | \"off\"" } }, "inputMode": { @@ -111181,7 +111297,7 @@ ], "required": false, "type": { - "name": "\"email\" | \"tel\" | \"search\" | \"text\" | \"url\" | \"none\" | \"numeric\" | \"decimal\"" + "name": "\"none\" | \"search\" | \"text\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" } }, "is": { @@ -111257,7 +111373,7 @@ ], "required": false, "type": { - "name": "\"list\" | \"none\" | \"inline\" | \"both\"" + "name": "\"none\" | \"list\" | \"inline\" | \"both\"" } }, "aria-braillelabel": { @@ -111447,7 +111563,7 @@ ], "required": false, "type": { - "name": "boolean | \"step\" | \"date\" | \"time\" | \"true\" | \"false\" | \"page\" | \"location\"" + "name": "boolean | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\" | \"time\"" } }, "aria-describedby": { @@ -111542,7 +111658,7 @@ ], "required": false, "type": { - "name": "\"link\" | \"none\" | \"copy\" | \"execute\" | \"move\" | \"popup\"" + "name": "\"none\" | \"link\" | \"copy\" | \"execute\" | \"move\" | \"popup\"" } }, "aria-errormessage": { @@ -112245,7 +112361,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCopyCapture": { @@ -112264,7 +112380,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCut": { @@ -112283,7 +112399,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCutCapture": { @@ -112302,7 +112418,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onPaste": { @@ -112321,7 +112437,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onPasteCapture": { @@ -112340,7 +112456,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCompositionEnd": { @@ -112359,7 +112475,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionEndCapture": { @@ -112378,7 +112494,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionStart": { @@ -112397,7 +112513,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionStartCapture": { @@ -112416,7 +112532,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionUpdate": { @@ -112435,7 +112551,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionUpdateCapture": { @@ -112454,7 +112570,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onFocus": { @@ -112473,7 +112589,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onFocusCapture": { @@ -112492,7 +112608,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onBlur": { @@ -112511,7 +112627,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onBlurCapture": { @@ -112530,7 +112646,26 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" + } + }, + "onChange": { + "defaultValue": null, + "description": "", + "name": "onChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" } }, "onChangeCapture": { @@ -112549,7 +112684,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onBeforeInput": { @@ -112568,7 +112703,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onBeforeInputCapture": { @@ -112587,7 +112722,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInput": { @@ -112606,7 +112741,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInputCapture": { @@ -112625,7 +112760,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onReset": { @@ -112644,7 +112779,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onResetCapture": { @@ -112663,7 +112798,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onSubmit": { @@ -112682,7 +112817,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onSubmitCapture": { @@ -112701,7 +112836,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInvalid": { @@ -112720,7 +112855,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInvalidCapture": { @@ -112739,7 +112874,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onLoad": { @@ -112758,7 +112893,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadCapture": { @@ -112777,7 +112912,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onError": { @@ -112796,7 +112931,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onErrorCapture": { @@ -112815,7 +112950,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onKeyDown": { @@ -112834,7 +112969,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyDownCapture": { @@ -112853,7 +112988,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyPress": { @@ -112872,7 +113007,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyPressCapture": { @@ -112891,7 +113026,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyUp": { @@ -112910,7 +113045,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyUpCapture": { @@ -112929,7 +113064,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onAbort": { @@ -112948,7 +113083,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onAbortCapture": { @@ -112967,7 +113102,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlay": { @@ -112986,7 +113121,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayCapture": { @@ -113005,7 +113140,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayThrough": { @@ -113024,7 +113159,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayThroughCapture": { @@ -113043,7 +113178,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onDurationChange": { @@ -113062,7 +113197,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onDurationChangeCapture": { @@ -113081,7 +113216,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEmptied": { @@ -113100,7 +113235,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEmptiedCapture": { @@ -113119,7 +113254,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEncrypted": { @@ -113138,7 +113273,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEncryptedCapture": { @@ -113157,7 +113292,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEnded": { @@ -113176,7 +113311,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEndedCapture": { @@ -113195,7 +113330,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedData": { @@ -113214,7 +113349,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedDataCapture": { @@ -113233,7 +113368,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedMetadata": { @@ -113252,7 +113387,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedMetadataCapture": { @@ -113271,7 +113406,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadStart": { @@ -113290,7 +113425,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadStartCapture": { @@ -113309,7 +113444,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPause": { @@ -113328,7 +113463,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPauseCapture": { @@ -113347,7 +113482,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlay": { @@ -113366,7 +113501,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlayCapture": { @@ -113385,7 +113520,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlaying": { @@ -113404,7 +113539,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlayingCapture": { @@ -113423,7 +113558,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onProgress": { @@ -113442,7 +113577,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onProgressCapture": { @@ -113461,7 +113596,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onRateChange": { @@ -113480,7 +113615,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onRateChangeCapture": { @@ -113499,7 +113634,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onResize": { @@ -113518,7 +113653,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onResizeCapture": { @@ -113537,7 +113672,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeeked": { @@ -113556,7 +113691,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeekedCapture": { @@ -113575,7 +113710,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeeking": { @@ -113594,7 +113729,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeekingCapture": { @@ -113613,7 +113748,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onStalled": { @@ -113632,7 +113767,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onStalledCapture": { @@ -113651,7 +113786,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSuspend": { @@ -113670,7 +113805,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSuspendCapture": { @@ -113689,7 +113824,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTimeUpdate": { @@ -113708,7 +113843,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTimeUpdateCapture": { @@ -113727,7 +113862,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onVolumeChange": { @@ -113746,7 +113881,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onVolumeChangeCapture": { @@ -113765,7 +113900,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onWaiting": { @@ -113784,7 +113919,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onWaitingCapture": { @@ -113803,7 +113938,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onAuxClick": { @@ -113822,7 +113957,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onAuxClickCapture": { @@ -113841,7 +113976,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onClick": { @@ -113860,7 +113995,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onClickCapture": { @@ -113879,7 +114014,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onContextMenu": { @@ -113898,7 +114033,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onContextMenuCapture": { @@ -113917,7 +114052,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDoubleClick": { @@ -113936,7 +114071,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDoubleClickCapture": { @@ -113955,7 +114090,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDrag": { @@ -113974,7 +114109,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragCapture": { @@ -113993,7 +114128,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnd": { @@ -114012,7 +114147,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEndCapture": { @@ -114031,7 +114166,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnter": { @@ -114050,7 +114185,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnterCapture": { @@ -114069,7 +114204,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragExit": { @@ -114088,7 +114223,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragExitCapture": { @@ -114107,7 +114242,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragLeave": { @@ -114126,7 +114261,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragLeaveCapture": { @@ -114145,7 +114280,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragOver": { @@ -114164,7 +114299,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragOverCapture": { @@ -114183,7 +114318,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragStart": { @@ -114202,7 +114337,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragStartCapture": { @@ -114221,7 +114356,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDrop": { @@ -114240,7 +114375,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDropCapture": { @@ -114259,7 +114394,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onMouseDown": { @@ -114278,7 +114413,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseDownCapture": { @@ -114297,7 +114432,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseEnter": { @@ -114316,7 +114451,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseLeave": { @@ -114335,7 +114470,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseMove": { @@ -114354,7 +114489,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseMoveCapture": { @@ -114373,7 +114508,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOut": { @@ -114392,7 +114527,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOutCapture": { @@ -114411,7 +114546,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOver": { @@ -114430,7 +114565,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOverCapture": { @@ -114449,7 +114584,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseUp": { @@ -114468,7 +114603,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseUpCapture": { @@ -114487,7 +114622,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onSelect": { @@ -114506,7 +114641,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSelectCapture": { @@ -114525,7 +114660,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTouchCancel": { @@ -114544,7 +114679,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchCancelCapture": { @@ -114563,7 +114698,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchEnd": { @@ -114582,7 +114717,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchEndCapture": { @@ -114601,7 +114736,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchMove": { @@ -114620,7 +114755,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchMoveCapture": { @@ -114639,7 +114774,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchStart": { @@ -114658,7 +114793,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchStartCapture": { @@ -114677,7 +114812,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onPointerDown": { @@ -114696,7 +114831,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerDownCapture": { @@ -114715,7 +114850,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerMove": { @@ -114734,7 +114869,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerMoveCapture": { @@ -114753,7 +114888,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerUp": { @@ -114772,7 +114907,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerUpCapture": { @@ -114791,7 +114926,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerCancel": { @@ -114810,7 +114945,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerCancelCapture": { @@ -114829,7 +114964,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerEnter": { @@ -114848,7 +114983,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerLeave": { @@ -114867,7 +115002,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOver": { @@ -114886,7 +115021,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOverCapture": { @@ -114905,7 +115040,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOut": { @@ -114924,7 +115059,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOutCapture": { @@ -114943,7 +115078,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onGotPointerCapture": { @@ -114962,7 +115097,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onGotPointerCaptureCapture": { @@ -114981,7 +115116,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onLostPointerCapture": { @@ -115000,7 +115135,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onLostPointerCaptureCapture": { @@ -115019,7 +115154,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onScroll": { @@ -115038,7 +115173,7 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "UIEventHandler" } }, "onScrollCapture": { @@ -115057,7 +115192,7 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "UIEventHandler" } }, "onWheel": { @@ -115076,7 +115211,7 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "WheelEventHandler" } }, "onWheelCapture": { @@ -115095,7 +115230,7 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "WheelEventHandler" } }, "onAnimationStart": { @@ -115114,7 +115249,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationStartCapture": { @@ -115133,7 +115268,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationEnd": { @@ -115152,7 +115287,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationEndCapture": { @@ -115171,7 +115306,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationIteration": { @@ -115190,7 +115325,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationIterationCapture": { @@ -115209,7 +115344,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onTransitionEnd": { @@ -115228,7 +115363,7 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" + "name": "TransitionEventHandler" } }, "onTransitionEndCapture": { @@ -115247,121 +115382,24 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" - } - }, - "onHoverStart": { - "defaultValue": null, - "description": "Handler that is called when a hover interaction starts.", - "name": "onHoverStart", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - } - ], - "required": false, - "type": { - "name": "((e: HoverEvent) => void)" - } - }, - "onHoverEnd": { - "defaultValue": null, - "description": "Handler that is called when a hover interaction ends.", - "name": "onHoverEnd", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - } - ], - "required": false, - "type": { - "name": "((e: HoverEvent) => void)" - } - }, - "onHoverChange": { - "defaultValue": null, - "description": "Handler that is called when the hover state changes.", - "name": "onHoverChange", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - } - ], - "required": false, - "type": { - "name": "((isHovering: boolean) => void)" - } - }, - "action": { - "defaultValue": null, - "description": "", - "name": "action", - "parent": { - "fileName": "marigold/packages/components/src/Input/Input.tsx", - "name": "InputProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Input/Input.tsx", - "name": "InputProps" - } - ], - "required": false, - "type": { - "name": "ReactElement>" - } - }, - "ref": { - "defaultValue": null, - "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", - "name": "ref", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" - } - ], - "required": false, - "type": { - "name": "LegacyRef" + "name": "TransitionEventHandler" } }, - "key": { - "defaultValue": null, - "description": "", - "name": "key", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "align": { + "defaultValue": { + "value": "left" }, + "description": "Set the text alignment for the element.", + "name": "align", "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "fileName": "marigold/packages/system/src/style-props.tsx", + "name": "TypeLiteral" } ], "required": false, "type": { - "name": "Key | null" + "name": "\"none\" | \"left\" | \"center\" | \"right\"" } } }, @@ -120461,618 +120499,6 @@ } } }, - "Link.tsx": { - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "The link can't be clicked", - "name": "disabled", - "parent": { - "fileName": "marigold/packages/components/src/Link/Link.tsx", - "name": "LinkProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Link/Link.tsx", - "name": "LinkProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "onPress": { - "defaultValue": null, - "description": "Handler that is called when the press is released over the target.", - "name": "onPress", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "PressEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "PressEvents" - } - ], - "required": false, - "type": { - "name": "((e: PressEvent) => void)" - } - }, - "onPressStart": { - "defaultValue": null, - "description": "Handler that is called when a press interaction starts.", - "name": "onPressStart", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "PressEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "PressEvents" - } - ], - "required": false, - "type": { - "name": "((e: PressEvent) => void)" - } - }, - "onPressEnd": { - "defaultValue": null, - "description": "Handler that is called when a press interaction ends, either\nover the target or when the pointer leaves the target.", - "name": "onPressEnd", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "PressEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "PressEvents" - } - ], - "required": false, - "type": { - "name": "((e: PressEvent) => void)" - } - }, - "onPressChange": { - "defaultValue": null, - "description": "Handler that is called when the press state changes.", - "name": "onPressChange", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "PressEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "PressEvents" - } - ], - "required": false, - "type": { - "name": "((isPressed: boolean) => void)" - } - }, - "onPressUp": { - "defaultValue": null, - "description": "Handler that is called when a press is released over the target, regardless of\nwhether it started on the target or not.", - "name": "onPressUp", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "PressEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "PressEvents" - } - ], - "required": false, - "type": { - "name": "((e: PressEvent) => void)" - } - }, - "autoFocus": { - "defaultValue": null, - "description": "Whether the element should receive focus on render.", - "name": "autoFocus", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusableProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusableProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "onFocus": { - "defaultValue": null, - "description": "Handler that is called when the element receives focus.", - "name": "onFocus", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - } - ], - "required": false, - "type": { - "name": "((e: FocusEvent) => void)" - } - }, - "onBlur": { - "defaultValue": null, - "description": "Handler that is called when the element loses focus.", - "name": "onBlur", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - } - ], - "required": false, - "type": { - "name": "((e: FocusEvent) => void)" - } - }, - "onFocusChange": { - "defaultValue": null, - "description": "Handler that is called when the element's focus status changes.", - "name": "onFocusChange", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - } - ], - "required": false, - "type": { - "name": "((isFocused: boolean) => void)" - } - }, - "onKeyDown": { - "defaultValue": null, - "description": "Handler that is called when a key is pressed.", - "name": "onKeyDown", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" - } - ], - "required": false, - "type": { - "name": "((e: KeyboardEvent) => void)" - } - }, - "onKeyUp": { - "defaultValue": null, - "description": "Handler that is called when a key is released.", - "name": "onKeyUp", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" - } - ], - "required": false, - "type": { - "name": "((e: KeyboardEvent) => void)" - } - }, - "href": { - "defaultValue": null, - "description": "A URL to link to. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#href).", - "name": "href", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "hrefLang": { - "defaultValue": null, - "description": "Hints at the human language of the linked URL. See[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#hreflang).", - "name": "hrefLang", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "target": { - "defaultValue": null, - "description": "The target window for the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target).", - "name": "target", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" - } - ], - "required": false, - "type": { - "name": "HTMLAttributeAnchorTarget" - } - }, - "rel": { - "defaultValue": null, - "description": "The relationship between the linked resource and the current page. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).", - "name": "rel", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "download": { - "defaultValue": null, - "description": "Causes the browser to download the linked URL. A string may be provided to suggest a file name. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#download).", - "name": "download", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" - } - ], - "required": false, - "type": { - "name": "string | boolean" - } - }, - "ping": { - "defaultValue": null, - "description": "A space-separated list of URLs to ping when the link is followed. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#ping).", - "name": "ping", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "referrerPolicy": { - "defaultValue": null, - "description": "How much of the referrer to send when following the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#referrerpolicy).", - "name": "referrerPolicy", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" - } - ], - "required": false, - "type": { - "name": "HTMLAttributeReferrerPolicy" - } - }, - "routerOptions": { - "defaultValue": null, - "description": "Options for the configured client side router.", - "name": "routerOptions", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" - } - ], - "required": false, - "type": { - "name": "undefined" - } - }, - "aria-label": { - "defaultValue": null, - "description": "Defines a string value that labels the current element.", - "name": "aria-label", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-labelledby": { - "defaultValue": null, - "description": "Identifies the element (or elements) that labels the current element.", - "name": "aria-labelledby", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-describedby": { - "defaultValue": null, - "description": "Identifies the element (or elements) that describes the object.", - "name": "aria-describedby", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-details": { - "defaultValue": null, - "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", - "name": "aria-details", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "onHoverStart": { - "defaultValue": null, - "description": "Handler that is called when a hover interaction starts.", - "name": "onHoverStart", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - } - ], - "required": false, - "type": { - "name": "((e: HoverEvent) => void)" - } - }, - "onHoverEnd": { - "defaultValue": null, - "description": "Handler that is called when a hover interaction ends.", - "name": "onHoverEnd", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - } - ], - "required": false, - "type": { - "name": "((e: HoverEvent) => void)" - } - }, - "onHoverChange": { - "defaultValue": null, - "description": "Handler that is called when the hover state changes.", - "name": "onHoverChange", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - } - ], - "required": false, - "type": { - "name": "((isHovering: boolean) => void)" - } - }, - "children": { - "defaultValue": null, - "description": "The children of the component. A function may be provided to alter the children based on component state.", - "name": "children", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RenderProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RenderProps" - } - ], - "required": false, - "type": { - "name": "ReactNode | ((values: LinkRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" - } - }, - "style": { - "defaultValue": null, - "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.", - "name": "style", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "StyleRenderProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "StyleRenderProps" - } - ], - "required": false, - "type": { - "name": "CSSProperties | ((values: LinkRenderProps & { defaultStyle: CSSProperties; }) => CSSProperties)" - } - }, - "slot": { - "defaultValue": null, - "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", - "name": "slot", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" - } - ], - "required": false, - "type": { - "name": "string | null" - } - }, - "ref": { - "defaultValue": null, - "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", - "name": "ref", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" - } - ], - "required": false, - "type": { - "name": "LegacyRef" - } - }, - "key": { - "defaultValue": null, - "description": "", - "name": "key", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" - } - ], - "required": false, - "type": { - "name": "Key | null" - } - } - }, "List.tsx": { "as": { "defaultValue": { @@ -131514,774 +130940,6 @@ } } }, - "Multiselect.tsx": { - "label": { - "defaultValue": null, - "description": "", - "name": "label", - "parent": { - "fileName": "marigold/packages/components/src/Multiselect/Multiselect.tsx", - "name": "MultiSelectProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Multiselect/Multiselect.tsx", - "name": "MultiSelectProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "children": { - "defaultValue": null, - "description": "The children of the component. A function may be provided to alter the children based on component state.", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Multiselect/Multiselect.tsx", - "name": "MultiSelectProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Multiselect/Multiselect.tsx", - "name": "MultiSelectProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "defaultSelectedKeys": { - "defaultValue": null, - "description": "", - "name": "defaultSelectedKeys", - "parent": { - "fileName": "marigold/packages/components/src/Multiselect/Multiselect.tsx", - "name": "MultiSelectProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Multiselect/Multiselect.tsx", - "name": "MultiSelectProps" - } - ], - "required": false, - "type": { - "name": "\"all\" | Iterable" - } - }, - "defaultFilter": { - "defaultValue": null, - "description": "The filter function used to determine if a option should be included in the combo box list.", - "name": "defaultFilter", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "((textValue: string, inputValue: string) => boolean)" - } - }, - "formValue": { - "defaultValue": { - "value": "'key'" - }, - "description": "Whether the text or key of the selected item is submitted as part of an HTML form.\nWhen `allowsCustomValue` is `true`, this option does not apply and the text is always submitted.", - "name": "formValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "\"text\" | \"key\"" - } - }, - "allowsEmptyCollection": { - "defaultValue": null, - "description": "Whether the combo box allows the menu to be open when the collection is empty.", - "name": "allowsEmptyCollection", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "onSelectionChange": { - "defaultValue": null, - "description": "Handler that is called when the selection changes.", - "name": "onSelectionChange", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "((key: Key | null) => void)" - } - }, - "selectedKey": { - "defaultValue": null, - "description": "The currently selected key in the collection (controlled).", - "name": "selectedKey", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", - "name": "SingleSelection" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", - "name": "SingleSelection" - } - ], - "required": false, - "type": { - "name": "Key | null" - } - }, - "defaultSelectedKey": { - "defaultValue": null, - "description": "The initial selected key in the collection (uncontrolled).", - "name": "defaultSelectedKey", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", - "name": "SingleSelection" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", - "name": "SingleSelection" - } - ], - "required": false, - "type": { - "name": "Key" - } - }, - "shouldFocusWrap": { - "defaultValue": null, - "description": "Whether keyboard navigation is circular.", - "name": "shouldFocusWrap", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "AriaComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "AriaComboBoxProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "defaultItems": { - "defaultValue": null, - "description": "The list of ComboBox items (uncontrolled).", - "name": "defaultItems", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "Iterable" - } - }, - "items": { - "defaultValue": null, - "description": "The list of ComboBox items (controlled).", - "name": "items", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "Iterable" - } - }, - "onOpenChange": { - "defaultValue": null, - "description": "Method that is called when the open state of the menu changes. Returns the new open state and the action that caused the opening of the menu.", - "name": "onOpenChange", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "((isOpen: boolean, menuTrigger?: MenuTriggerAction) => void)" - } - }, - "inputValue": { - "defaultValue": null, - "description": "The value of the ComboBox input (controlled).", - "name": "inputValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "defaultInputValue": { - "defaultValue": null, - "description": "The default value of the ComboBox input (uncontrolled).", - "name": "defaultInputValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "onInputChange": { - "defaultValue": null, - "description": "Handler that is called when the ComboBox input value changes.", - "name": "onInputChange", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "((value: string) => void)" - } - }, - "allowsCustomValue": { - "defaultValue": null, - "description": "Whether the ComboBox allows a non-item matching input value to be set.", - "name": "allowsCustomValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "menuTrigger": { - "defaultValue": { - "value": "'input'" - }, - "description": "The interaction required to display the ComboBox menu.", - "name": "menuTrigger", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "MenuTriggerAction" - } - }, - "disabledKeys": { - "defaultValue": null, - "description": "The item keys that are disabled. These items cannot be selected, focused, or otherwise interacted with.", - "name": "disabledKeys", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/collections.d.ts", - "name": "CollectionBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/collections.d.ts", - "name": "CollectionBase" - } - ], - "required": false, - "type": { - "name": "Iterable" - } - }, - "isDisabled": { - "defaultValue": null, - "description": "Whether the input is disabled.", - "name": "isDisabled", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "InputBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "InputBase" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "isReadOnly": { - "defaultValue": null, - "description": "Whether the input can be selected but not changed by the user.", - "name": "isReadOnly", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "InputBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "InputBase" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "isRequired": { - "defaultValue": null, - "description": "Whether user input is required on the input before form submission.", - "name": "isRequired", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "Validation" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "Validation" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "isInvalid": { - "defaultValue": null, - "description": "Whether the input value is invalid.", - "name": "isInvalid", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "Validation" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "Validation" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "validate": { - "defaultValue": null, - "description": "A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.", - "name": "validate", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "Validation" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "Validation" - } - ], - "required": false, - "type": { - "name": "((value: ComboBoxValidationValue) => true | ValidationError | null)" - } - }, - "autoFocus": { - "defaultValue": null, - "description": "Whether the element should receive focus on render.", - "name": "autoFocus", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusableProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusableProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "onFocus": { - "defaultValue": null, - "description": "Handler that is called when the element receives focus.", - "name": "onFocus", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - } - ], - "required": false, - "type": { - "name": "((e: FocusEvent) => void)" - } - }, - "onBlur": { - "defaultValue": null, - "description": "Handler that is called when the element loses focus.", - "name": "onBlur", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - } - ], - "required": false, - "type": { - "name": "((e: FocusEvent) => void)" - } - }, - "onFocusChange": { - "defaultValue": null, - "description": "Handler that is called when the element's focus status changes.", - "name": "onFocusChange", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - } - ], - "required": false, - "type": { - "name": "((isFocused: boolean) => void)" - } - }, - "onKeyDown": { - "defaultValue": null, - "description": "Handler that is called when a key is pressed.", - "name": "onKeyDown", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" - } - ], - "required": false, - "type": { - "name": "((e: KeyboardEvent) => void)" - } - }, - "onKeyUp": { - "defaultValue": null, - "description": "Handler that is called when a key is released.", - "name": "onKeyUp", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" - } - ], - "required": false, - "type": { - "name": "((e: KeyboardEvent) => void)" - } - }, - "id": { - "defaultValue": null, - "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", - "name": "id", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "name": { - "defaultValue": null, - "description": "The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).", - "name": "name", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "InputDOMProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "InputDOMProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-label": { - "defaultValue": null, - "description": "Defines a string value that labels the current element.", - "name": "aria-label", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-labelledby": { - "defaultValue": null, - "description": "Identifies the element (or elements) that labels the current element.", - "name": "aria-labelledby", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-describedby": { - "defaultValue": null, - "description": "Identifies the element (or elements) that describes the object.", - "name": "aria-describedby", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-details": { - "defaultValue": null, - "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", - "name": "aria-details", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "validationBehavior": { - "defaultValue": { - "value": "'native'" - }, - "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.", - "name": "validationBehavior", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RACValidation" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RACValidation" - } - ], - "required": false, - "type": { - "name": "\"native\" | \"aria\"" - } - }, - "className": { - "defaultValue": null, - "description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.", - "name": "className", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "StyleRenderProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "StyleRenderProps" - } - ], - "required": false, - "type": { - "name": "string | ((values: ComboBoxRenderProps & { defaultClassName: string; }) => string)" - } - }, - "style": { - "defaultValue": null, - "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.", - "name": "style", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "StyleRenderProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "StyleRenderProps" - } - ], - "required": false, - "type": { - "name": "CSSProperties | ((values: ComboBoxRenderProps & { defaultStyle: CSSProperties; }) => CSSProperties)" - } - }, - "slot": { - "defaultValue": null, - "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", - "name": "slot", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" - } - ], - "required": false, - "type": { - "name": "string | null" - } - } - }, "ActionMenu.tsx": { "disabled": { "defaultValue": null, @@ -133702,126 +132360,116 @@ } } }, - "NumberField.tsx": { - "width": { - "defaultValue": { - "value": "full" - }, - "description": "Sets the width of the field. You can see allowed tokens here: https://tailwindcss.com/docs/width", - "name": "width", + "Multiselect.tsx": { + "label": { + "defaultValue": null, + "description": "", + "name": "label", "parent": { - "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", - "name": "NumberFieldProps" + "fileName": "marigold/packages/components/src/Multiselect/Multiselect.tsx", + "name": "MultiSelectProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", - "name": "NumberFieldProps" + "fileName": "marigold/packages/components/src/Multiselect/Multiselect.tsx", + "name": "MultiSelectProps" } ], "required": false, "type": { - "name": "0 | \"auto\" | \"full\" | \"fit\" | \"min\" | \"max\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." + "name": "string" } }, - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the input is disabled.", - "name": "disabled", + "children": { + "defaultValue": null, + "description": "The children of the component. A function may be provided to alter the children based on component state.", + "name": "children", "parent": { - "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", - "name": "NumberFieldProps" + "fileName": "marigold/packages/components/src/Multiselect/Multiselect.tsx", + "name": "MultiSelectProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", - "name": "NumberFieldProps" + "fileName": "marigold/packages/components/src/Multiselect/Multiselect.tsx", + "name": "MultiSelectProps" } ], "required": false, "type": { - "name": "boolean" + "name": "ReactNode" } }, - "required": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the input is required.", - "name": "required", + "defaultSelectedKeys": { + "defaultValue": null, + "description": "", + "name": "defaultSelectedKeys", "parent": { - "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", - "name": "NumberFieldProps" + "fileName": "marigold/packages/components/src/Multiselect/Multiselect.tsx", + "name": "MultiSelectProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", - "name": "NumberFieldProps" + "fileName": "marigold/packages/components/src/Multiselect/Multiselect.tsx", + "name": "MultiSelectProps" } ], "required": false, "type": { - "name": "boolean" + "name": "\"all\" | Iterable" } }, - "error": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the field is considered invalid and if set the errorMessage is shown instead of the `description`.", - "name": "error", + "defaultFilter": { + "defaultValue": null, + "description": "The filter function used to determine if a option should be included in the combo box list.", + "name": "defaultFilter", "parent": { - "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", - "name": "NumberFieldProps" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ComboBoxProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", - "name": "NumberFieldProps" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ComboBoxProps" } ], "required": false, "type": { - "name": "boolean" + "name": "((textValue: string, inputValue: string) => boolean)" } }, - "readOnly": { + "formValue": { "defaultValue": { - "value": "false" + "value": "'key'" }, - "description": "If `true`, the input is readOnly.", - "name": "readOnly", + "description": "Whether the text or key of the selected item is submitted as part of an HTML form.\nWhen `allowsCustomValue` is `true`, this option does not apply and the text is always submitted.", + "name": "formValue", "parent": { - "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", - "name": "NumberFieldProps" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ComboBoxProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", - "name": "NumberFieldProps" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ComboBoxProps" } ], "required": false, "type": { - "name": "boolean" + "name": "\"text\" | \"key\"" } }, - "hideStepper": { - "defaultValue": { - "value": "false" - }, - "description": "Property for hiding the step buttons of the field.", - "name": "hideStepper", + "allowsEmptyCollection": { + "defaultValue": null, + "description": "Whether the combo box allows the menu to be open when the collection is empty.", + "name": "allowsEmptyCollection", "parent": { - "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", - "name": "NumberFieldProps" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ComboBoxProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", - "name": "NumberFieldProps" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ComboBoxProps" } ], "required": false, @@ -133829,163 +132477,941 @@ "name": "boolean" } }, - "placeholder": { - "defaultValue": { - "value": "none" - }, - "description": "Placeholder text for the input field.", - "name": "placeholder", + "onSelectionChange": { + "defaultValue": null, + "description": "Handler that is called when the selection changes.", + "name": "onSelectionChange", "parent": { - "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", - "name": "NumberFieldProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", - "name": "NumberFieldProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" } ], "required": false, "type": { - "name": "string" + "name": "((key: Key | null) => void)" } }, - "validationBehavior": { - "defaultValue": { - "value": "'native'" - }, - "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.", - "name": "validationBehavior", + "selectedKey": { + "defaultValue": null, + "description": "The currently selected key in the collection (controlled).", + "name": "selectedKey", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RACValidation" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "SingleSelection" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RACValidation" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "SingleSelection" } ], "required": false, "type": { - "name": "\"native\" | \"aria\"" + "name": "Key | null" } }, - "decrementAriaLabel": { + "defaultSelectedKey": { "defaultValue": null, - "description": "A custom aria-label for the decrement button. If not provided, the localized string \"Decrement\" is used.", - "name": "decrementAriaLabel", + "description": "The initial selected key in the collection (uncontrolled).", + "name": "defaultSelectedKey", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+numberfield@3.8.3_react@18.3.1/node_modules/@react-types/numberfield/src/index.d.ts", - "name": "AriaNumberFieldProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "SingleSelection" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+numberfield@3.8.3_react@18.3.1/node_modules/@react-types/numberfield/src/index.d.ts", - "name": "AriaNumberFieldProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "SingleSelection" } ], "required": false, "type": { - "name": "string" + "name": "Key" } }, - "incrementAriaLabel": { + "shouldFocusWrap": { "defaultValue": null, - "description": "A custom aria-label for the increment button. If not provided, the localized string \"Increment\" is used.", - "name": "incrementAriaLabel", + "description": "Whether keyboard navigation is circular.", + "name": "shouldFocusWrap", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+numberfield@3.8.3_react@18.3.1/node_modules/@react-types/numberfield/src/index.d.ts", - "name": "AriaNumberFieldProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "AriaComboBoxProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+numberfield@3.8.3_react@18.3.1/node_modules/@react-types/numberfield/src/index.d.ts", - "name": "AriaNumberFieldProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "AriaComboBoxProps" } ], "required": false, "type": { - "name": "string" + "name": "boolean" } }, - "isWheelDisabled": { + "defaultItems": { "defaultValue": null, - "description": "Enables or disables changing the value with scroll.", - "name": "isWheelDisabled", + "description": "The list of ComboBox items (uncontrolled).", + "name": "defaultItems", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+numberfield@3.8.3_react@18.3.1/node_modules/@react-types/numberfield/src/index.d.ts", - "name": "AriaNumberFieldProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+numberfield@3.8.3_react@18.3.1/node_modules/@react-types/numberfield/src/index.d.ts", - "name": "AriaNumberFieldProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" } ], "required": false, "type": { - "name": "boolean" + "name": "Iterable" } }, - "formatOptions": { + "items": { "defaultValue": null, - "description": "Formatting options for the value displayed in the number field.\nThis also affects what characters are allowed to be typed by the user.", - "name": "formatOptions", + "description": "The list of ComboBox items (controlled).", + "name": "items", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+numberfield@3.8.3_react@18.3.1/node_modules/@react-types/numberfield/src/index.d.ts", - "name": "NumberFieldProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+numberfield@3.8.3_react@18.3.1/node_modules/@react-types/numberfield/src/index.d.ts", - "name": "NumberFieldProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" } ], "required": false, "type": { - "name": "NumberFormatOptions" + "name": "Iterable" } }, - "validate": { + "onOpenChange": { "defaultValue": null, - "description": "A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.", - "name": "validate", + "description": "Method that is called when the open state of the menu changes. Returns the new open state and the action that caused the opening of the menu.", + "name": "onOpenChange", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "Validation" + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "Validation" + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" } ], "required": false, "type": { - "name": "((value: number) => true | ValidationError | null)" + "name": "((isOpen: boolean, menuTrigger?: MenuTriggerAction) => void)" } }, - "autoFocus": { + "inputValue": { "defaultValue": null, - "description": "Whether the element should receive focus on render.", - "name": "autoFocus", + "description": "The value of the ComboBox input (controlled).", + "name": "inputValue", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusableProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusableProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" } ], "required": false, "type": { - "name": "boolean" + "name": "string" } }, - "onFocus": { + "defaultInputValue": { + "defaultValue": null, + "description": "The default value of the ComboBox input (uncontrolled).", + "name": "defaultInputValue", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "onInputChange": { + "defaultValue": null, + "description": "Handler that is called when the ComboBox input value changes.", + "name": "onInputChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + } + ], + "required": false, + "type": { + "name": "((value: string) => void)" + } + }, + "allowsCustomValue": { + "defaultValue": null, + "description": "Whether the ComboBox allows a non-item matching input value to be set.", + "name": "allowsCustomValue", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "menuTrigger": { + "defaultValue": { + "value": "'input'" + }, + "description": "The interaction required to display the ComboBox menu.", + "name": "menuTrigger", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+combobox@3.11.1_react@18.3.1/node_modules/@react-types/combobox/src/index.d.ts", + "name": "ComboBoxProps" + } + ], + "required": false, + "type": { + "name": "MenuTriggerAction" + } + }, + "disabledKeys": { + "defaultValue": null, + "description": "The item keys that are disabled. These items cannot be selected, focused, or otherwise interacted with.", + "name": "disabledKeys", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/collections.d.ts", + "name": "CollectionBase" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/collections.d.ts", + "name": "CollectionBase" + } + ], + "required": false, + "type": { + "name": "Iterable" + } + }, + "isDisabled": { + "defaultValue": null, + "description": "Whether the input is disabled.", + "name": "isDisabled", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "InputBase" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "InputBase" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "isReadOnly": { + "defaultValue": null, + "description": "Whether the input can be selected but not changed by the user.", + "name": "isReadOnly", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "InputBase" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "InputBase" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "isRequired": { + "defaultValue": null, + "description": "Whether user input is required on the input before form submission.", + "name": "isRequired", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "Validation" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "Validation" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "isInvalid": { + "defaultValue": null, + "description": "Whether the input value is invalid.", + "name": "isInvalid", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "Validation" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "Validation" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "validate": { + "defaultValue": null, + "description": "A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.", + "name": "validate", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "Validation" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "Validation" + } + ], + "required": false, + "type": { + "name": "((value: ComboBoxValidationValue) => true | ValidationError | null)" + } + }, + "autoFocus": { + "defaultValue": null, + "description": "Whether the element should receive focus on render.", + "name": "autoFocus", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusableProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusableProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "onFocus": { + "defaultValue": null, + "description": "Handler that is called when the element receives focus.", + "name": "onFocus", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + } + ], + "required": false, + "type": { + "name": "((e: FocusEvent) => void)" + } + }, + "onBlur": { + "defaultValue": null, + "description": "Handler that is called when the element loses focus.", + "name": "onBlur", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + } + ], + "required": false, + "type": { + "name": "((e: FocusEvent) => void)" + } + }, + "onFocusChange": { + "defaultValue": null, + "description": "Handler that is called when the element's focus status changes.", + "name": "onFocusChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + } + ], + "required": false, + "type": { + "name": "((isFocused: boolean) => void)" + } + }, + "onKeyDown": { + "defaultValue": null, + "description": "Handler that is called when a key is pressed.", + "name": "onKeyDown", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + } + ], + "required": false, + "type": { + "name": "((e: KeyboardEvent) => void)" + } + }, + "onKeyUp": { + "defaultValue": null, + "description": "Handler that is called when a key is released.", + "name": "onKeyUp", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + } + ], + "required": false, + "type": { + "name": "((e: KeyboardEvent) => void)" + } + }, + "id": { + "defaultValue": null, + "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", + "name": "id", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "name": { + "defaultValue": null, + "description": "The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).", + "name": "name", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "InputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "InputDOMProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-label": { + "defaultValue": null, + "description": "Defines a string value that labels the current element.", + "name": "aria-label", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-labelledby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that labels the current element.", + "name": "aria-labelledby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-describedby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that describes the object.", + "name": "aria-describedby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-details": { + "defaultValue": null, + "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", + "name": "aria-details", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "validationBehavior": { + "defaultValue": { + "value": "'native'" + }, + "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.", + "name": "validationBehavior", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RACValidation" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RACValidation" + } + ], + "required": false, + "type": { + "name": "\"native\" | \"aria\"" + } + }, + "className": { + "defaultValue": null, + "description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.", + "name": "className", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "StyleRenderProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "StyleRenderProps" + } + ], + "required": false, + "type": { + "name": "string | ((values: ComboBoxRenderProps & { defaultClassName: string; }) => string)" + } + }, + "style": { + "defaultValue": null, + "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.", + "name": "style", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "StyleRenderProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "StyleRenderProps" + } + ], + "required": false, + "type": { + "name": "CSSProperties | ((values: ComboBoxRenderProps & { defaultStyle: CSSProperties; }) => CSSProperties)" + } + }, + "slot": { + "defaultValue": null, + "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", + "name": "slot", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" + } + ], + "required": false, + "type": { + "name": "string | null" + } + } + }, + "NumberField.tsx": { + "width": { + "defaultValue": { + "value": "full" + }, + "description": "Sets the width of the field. You can see allowed tokens here: https://tailwindcss.com/docs/width", + "name": "width", + "parent": { + "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", + "name": "NumberFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", + "name": "NumberFieldProps" + } + ], + "required": false, + "type": { + "name": "0 | \"auto\" | \"full\" | \"fit\" | \"min\" | \"max\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." + } + }, + "disabled": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the input is disabled.", + "name": "disabled", + "parent": { + "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", + "name": "NumberFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", + "name": "NumberFieldProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "required": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the input is required.", + "name": "required", + "parent": { + "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", + "name": "NumberFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", + "name": "NumberFieldProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "error": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the field is considered invalid and if set the errorMessage is shown instead of the `description`.", + "name": "error", + "parent": { + "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", + "name": "NumberFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", + "name": "NumberFieldProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "readOnly": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the input is readOnly.", + "name": "readOnly", + "parent": { + "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", + "name": "NumberFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", + "name": "NumberFieldProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "hideStepper": { + "defaultValue": { + "value": "false" + }, + "description": "Property for hiding the step buttons of the field.", + "name": "hideStepper", + "parent": { + "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", + "name": "NumberFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", + "name": "NumberFieldProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "placeholder": { + "defaultValue": { + "value": "none" + }, + "description": "Placeholder text for the input field.", + "name": "placeholder", + "parent": { + "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", + "name": "NumberFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/NumberField/NumberField.tsx", + "name": "NumberFieldProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "validationBehavior": { + "defaultValue": { + "value": "'native'" + }, + "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.", + "name": "validationBehavior", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RACValidation" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RACValidation" + } + ], + "required": false, + "type": { + "name": "\"native\" | \"aria\"" + } + }, + "decrementAriaLabel": { + "defaultValue": null, + "description": "A custom aria-label for the decrement button. If not provided, the localized string \"Decrement\" is used.", + "name": "decrementAriaLabel", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+numberfield@3.8.3_react@18.3.1/node_modules/@react-types/numberfield/src/index.d.ts", + "name": "AriaNumberFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+numberfield@3.8.3_react@18.3.1/node_modules/@react-types/numberfield/src/index.d.ts", + "name": "AriaNumberFieldProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "incrementAriaLabel": { + "defaultValue": null, + "description": "A custom aria-label for the increment button. If not provided, the localized string \"Increment\" is used.", + "name": "incrementAriaLabel", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+numberfield@3.8.3_react@18.3.1/node_modules/@react-types/numberfield/src/index.d.ts", + "name": "AriaNumberFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+numberfield@3.8.3_react@18.3.1/node_modules/@react-types/numberfield/src/index.d.ts", + "name": "AriaNumberFieldProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "isWheelDisabled": { + "defaultValue": null, + "description": "Enables or disables changing the value with scroll.", + "name": "isWheelDisabled", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+numberfield@3.8.3_react@18.3.1/node_modules/@react-types/numberfield/src/index.d.ts", + "name": "AriaNumberFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+numberfield@3.8.3_react@18.3.1/node_modules/@react-types/numberfield/src/index.d.ts", + "name": "AriaNumberFieldProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "formatOptions": { + "defaultValue": null, + "description": "Formatting options for the value displayed in the number field.\nThis also affects what characters are allowed to be typed by the user.", + "name": "formatOptions", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+numberfield@3.8.3_react@18.3.1/node_modules/@react-types/numberfield/src/index.d.ts", + "name": "NumberFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+numberfield@3.8.3_react@18.3.1/node_modules/@react-types/numberfield/src/index.d.ts", + "name": "NumberFieldProps" + } + ], + "required": false, + "type": { + "name": "NumberFormatOptions" + } + }, + "validate": { + "defaultValue": null, + "description": "A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.", + "name": "validate", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "Validation" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "Validation" + } + ], + "required": false, + "type": { + "name": "((value: number) => true | ValidationError | null)" + } + }, + "autoFocus": { + "defaultValue": null, + "description": "Whether the element should receive focus on render.", + "name": "autoFocus", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusableProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusableProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "onFocus": { "defaultValue": null, "description": "Handler that is called when the element receives focus.", "name": "onFocus", @@ -135189,281 +134615,893 @@ } } }, - "Modal.tsx": { - "shouldCloseOnInteractOutside": { - "defaultValue": null, - "description": "When user interacts with the argument element outside of the overlay ref,\nreturn true if onClose should be called. This gives you a chance to filter\nout interaction with elements that should not dismiss the overlay.\nBy default, onClose will always be called on interaction outside the overlay ref.", - "name": "shouldCloseOnInteractOutside", + "Link.tsx": { + "disabled": { + "defaultValue": { + "value": "false" + }, + "description": "The link can't be clicked", + "name": "disabled", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-aria+overlays@3.22.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/overlays/dist/types.d.ts", - "name": "AriaOverlayProps" + "fileName": "marigold/packages/components/src/Link/Link.tsx", + "name": "LinkProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-aria+overlays@3.22.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/overlays/dist/types.d.ts", - "name": "AriaOverlayProps" + "fileName": "marigold/packages/components/src/Link/Link.tsx", + "name": "LinkProps" } ], "required": false, "type": { - "name": "((element: Element) => boolean)" + "name": "boolean" } }, - "open": { + "onPress": { "defaultValue": null, - "description": "", - "name": "open", + "description": "Handler that is called when the press is released over the target.", + "name": "onPress", "parent": { - "fileName": "marigold/packages/components/src/Overlay/Modal.tsx", - "name": "ModalProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "PressEvents" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Overlay/Modal.tsx", - "name": "ModalProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "PressEvents" } ], "required": false, "type": { - "name": "boolean" + "name": "((e: PressEvent) => void)" } }, - "dismissable": { + "onPressStart": { "defaultValue": null, - "description": "", - "name": "dismissable", + "description": "Handler that is called when a press interaction starts.", + "name": "onPressStart", "parent": { - "fileName": "marigold/packages/components/src/Overlay/Modal.tsx", - "name": "ModalProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "PressEvents" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Overlay/Modal.tsx", - "name": "ModalProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "PressEvents" } ], "required": false, "type": { - "name": "boolean" + "name": "((e: PressEvent) => void)" } }, - "keyboardDismissable": { + "onPressEnd": { "defaultValue": null, - "description": "", - "name": "keyboardDismissable", + "description": "Handler that is called when a press interaction ends, either\nover the target or when the pointer leaves the target.", + "name": "onPressEnd", "parent": { - "fileName": "marigold/packages/components/src/Overlay/Modal.tsx", - "name": "ModalProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "PressEvents" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Overlay/Modal.tsx", - "name": "ModalProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "PressEvents" } ], "required": false, "type": { - "name": "boolean" + "name": "((e: PressEvent) => void)" } }, - "isEntering": { + "onPressChange": { "defaultValue": null, - "description": "Whether the modal is currently performing an entry animation.", - "name": "isEntering", + "description": "Handler that is called when the press state changes.", + "name": "onPressChange", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ModalOverlayProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "PressEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ModalOverlayProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "PressEvents" } ], "required": false, "type": { - "name": "boolean" + "name": "((isPressed: boolean) => void)" } }, - "isExiting": { + "onPressUp": { "defaultValue": null, - "description": "Whether the modal is currently performing an exit animation.", - "name": "isExiting", + "description": "Handler that is called when a press is released over the target, regardless of\nwhether it started on the target or not.", + "name": "onPressUp", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ModalOverlayProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "PressEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ModalOverlayProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "PressEvents" } ], "required": false, "type": { - "name": "boolean" + "name": "((e: PressEvent) => void)" } }, - "UNSTABLE_portalContainer": { - "defaultValue": { - "value": "document.body" - }, - "description": "The container element in which the overlay portal will be placed. This may have unknown behavior depending on where it is portalled to.", - "name": "UNSTABLE_portalContainer", + "autoFocus": { + "defaultValue": null, + "description": "Whether the element should receive focus on render.", + "name": "autoFocus", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ModalOverlayProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusableProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "ModalOverlayProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusableProps" } ], "required": false, "type": { - "name": "Element" + "name": "boolean" } }, - "defaultOpen": { + "onFocus": { "defaultValue": null, - "description": "Whether the overlay is open by default (uncontrolled).", - "name": "defaultOpen", + "description": "Handler that is called when the element receives focus.", + "name": "onFocus", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "OverlayTriggerProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "OverlayTriggerProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" } ], "required": false, "type": { - "name": "boolean" + "name": "((e: FocusEvent) => void)" } }, - "onOpenChange": { + "onBlur": { "defaultValue": null, - "description": "Handler that is called when the overlay's open state changes.", - "name": "onOpenChange", + "description": "Handler that is called when the element loses focus.", + "name": "onBlur", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "OverlayTriggerProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "OverlayTriggerProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" } ], "required": false, "type": { - "name": "((isOpen: boolean) => void)" + "name": "((e: FocusEvent) => void)" } }, - "children": { + "onFocusChange": { "defaultValue": null, - "description": "The children of the component. A function may be provided to alter the children based on component state.", - "name": "children", + "description": "Handler that is called when the element's focus status changes.", + "name": "onFocusChange", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RenderProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RenderProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" } ], "required": false, "type": { - "name": "ReactNode | ((values: ModalRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" + "name": "((isFocused: boolean) => void)" } }, - "style": { + "onKeyDown": { "defaultValue": null, - "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.", - "name": "style", + "description": "Handler that is called when a key is pressed.", + "name": "onKeyDown", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "StyleRenderProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "StyleRenderProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" } ], "required": false, "type": { - "name": "CSSProperties | ((values: ModalRenderProps & { defaultStyle: CSSProperties; }) => CSSProperties)" + "name": "((e: KeyboardEvent) => void)" } }, - "slot": { + "onKeyUp": { "defaultValue": null, - "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", - "name": "slot", + "description": "Handler that is called when a key is released.", + "name": "onKeyUp", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" } ], "required": false, "type": { - "name": "string | null" + "name": "((e: KeyboardEvent) => void)" } }, - "ref": { + "href": { "defaultValue": null, - "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", - "name": "ref", + "description": "A URL to link to. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#href).", + "name": "href", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" } ], "required": false, "type": { - "name": "LegacyRef" + "name": "string" } }, - "key": { + "hrefLang": { "defaultValue": null, - "description": "", - "name": "key", + "description": "Hints at the human language of the linked URL. See[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#hreflang).", + "name": "hrefLang", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" } ], "required": false, "type": { - "name": "Key | null" + "name": "string" } - } - }, - "Popover.tsx": { - "keyboardDismissDisabled": { + }, + "target": { "defaultValue": null, - "description": "", - "name": "keyboardDismissDisabled", + "description": "The target window for the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target).", + "name": "target", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" + } + ], + "required": false, + "type": { + "name": "HTMLAttributeAnchorTarget" + } + }, + "rel": { + "defaultValue": null, + "description": "The relationship between the linked resource and the current page. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).", + "name": "rel", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "download": { + "defaultValue": null, + "description": "Causes the browser to download the linked URL. A string may be provided to suggest a file name. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#download).", + "name": "download", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" + } + ], + "required": false, + "type": { + "name": "string | boolean" + } + }, + "ping": { + "defaultValue": null, + "description": "A space-separated list of URLs to ping when the link is followed. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#ping).", + "name": "ping", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "referrerPolicy": { + "defaultValue": null, + "description": "How much of the referrer to send when following the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#referrerpolicy).", + "name": "referrerPolicy", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" + } + ], + "required": false, + "type": { + "name": "HTMLAttributeReferrerPolicy" + } + }, + "routerOptions": { + "defaultValue": null, + "description": "Options for the configured client side router.", + "name": "routerOptions", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" + } + ], + "required": false, + "type": { + "name": "undefined" + } + }, + "aria-label": { + "defaultValue": null, + "description": "Defines a string value that labels the current element.", + "name": "aria-label", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-labelledby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that labels the current element.", + "name": "aria-labelledby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-describedby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that describes the object.", + "name": "aria-describedby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-details": { + "defaultValue": null, + "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", + "name": "aria-details", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "onHoverStart": { + "defaultValue": null, + "description": "Handler that is called when a hover interaction starts.", + "name": "onHoverStart", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" + } + ], + "required": false, + "type": { + "name": "((e: HoverEvent) => void)" + } + }, + "onHoverEnd": { + "defaultValue": null, + "description": "Handler that is called when a hover interaction ends.", + "name": "onHoverEnd", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" + } + ], + "required": false, + "type": { + "name": "((e: HoverEvent) => void)" + } + }, + "onHoverChange": { + "defaultValue": null, + "description": "Handler that is called when the hover state changes.", + "name": "onHoverChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" + } + ], + "required": false, + "type": { + "name": "((isHovering: boolean) => void)" + } + }, + "children": { + "defaultValue": null, + "description": "The children of the component. A function may be provided to alter the children based on component state.", + "name": "children", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RenderProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RenderProps" + } + ], + "required": false, + "type": { + "name": "ReactNode | ((values: LinkRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" + } + }, + "style": { + "defaultValue": null, + "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.", + "name": "style", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "StyleRenderProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "StyleRenderProps" + } + ], + "required": false, + "type": { + "name": "CSSProperties | ((values: LinkRenderProps & { defaultStyle: CSSProperties; }) => CSSProperties)" + } + }, + "slot": { + "defaultValue": null, + "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", + "name": "slot", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" + } + ], + "required": false, + "type": { + "name": "string | null" + } + }, + "ref": { + "defaultValue": null, + "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", + "name": "ref", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "RefAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "RefAttributes" + } + ], + "required": false, + "type": { + "name": "LegacyRef" + } + }, + "key": { + "defaultValue": null, + "description": "", + "name": "key", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" + } + ], + "required": false, + "type": { + "name": "Key | null" + } + } + }, + "Modal.tsx": { + "shouldCloseOnInteractOutside": { + "defaultValue": null, + "description": "When user interacts with the argument element outside of the overlay ref,\nreturn true if onClose should be called. This gives you a chance to filter\nout interaction with elements that should not dismiss the overlay.\nBy default, onClose will always be called on interaction outside the overlay ref.", + "name": "shouldCloseOnInteractOutside", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-aria+overlays@3.22.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/overlays/dist/types.d.ts", + "name": "AriaOverlayProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-aria+overlays@3.22.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/overlays/dist/types.d.ts", + "name": "AriaOverlayProps" + } + ], + "required": false, + "type": { + "name": "((element: Element) => boolean)" + } + }, + "open": { + "defaultValue": null, + "description": "", + "name": "open", + "parent": { + "fileName": "marigold/packages/components/src/Overlay/Modal.tsx", + "name": "ModalProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Overlay/Modal.tsx", + "name": "ModalProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "dismissable": { + "defaultValue": null, + "description": "", + "name": "dismissable", + "parent": { + "fileName": "marigold/packages/components/src/Overlay/Modal.tsx", + "name": "ModalProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Overlay/Modal.tsx", + "name": "ModalProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "keyboardDismissable": { + "defaultValue": null, + "description": "", + "name": "keyboardDismissable", + "parent": { + "fileName": "marigold/packages/components/src/Overlay/Modal.tsx", + "name": "ModalProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Overlay/Modal.tsx", + "name": "ModalProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "isEntering": { + "defaultValue": null, + "description": "Whether the modal is currently performing an entry animation.", + "name": "isEntering", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ModalOverlayProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ModalOverlayProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "isExiting": { + "defaultValue": null, + "description": "Whether the modal is currently performing an exit animation.", + "name": "isExiting", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ModalOverlayProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ModalOverlayProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "UNSTABLE_portalContainer": { + "defaultValue": { + "value": "document.body" + }, + "description": "The container element in which the overlay portal will be placed. This may have unknown behavior depending on where it is portalled to.", + "name": "UNSTABLE_portalContainer", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ModalOverlayProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ModalOverlayProps" + } + ], + "required": false, + "type": { + "name": "Element" + } + }, + "defaultOpen": { + "defaultValue": null, + "description": "Whether the overlay is open by default (uncontrolled).", + "name": "defaultOpen", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "OverlayTriggerProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "OverlayTriggerProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "onOpenChange": { + "defaultValue": null, + "description": "Handler that is called when the overlay's open state changes.", + "name": "onOpenChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "OverlayTriggerProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "OverlayTriggerProps" + } + ], + "required": false, + "type": { + "name": "((isOpen: boolean) => void)" + } + }, + "children": { + "defaultValue": null, + "description": "The children of the component. A function may be provided to alter the children based on component state.", + "name": "children", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RenderProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RenderProps" + } + ], + "required": false, + "type": { + "name": "ReactNode | ((values: ModalRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" + } + }, + "style": { + "defaultValue": null, + "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.", + "name": "style", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "StyleRenderProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "StyleRenderProps" + } + ], + "required": false, + "type": { + "name": "CSSProperties | ((values: ModalRenderProps & { defaultStyle: CSSProperties; }) => CSSProperties)" + } + }, + "slot": { + "defaultValue": null, + "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", + "name": "slot", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" + } + ], + "required": false, + "type": { + "name": "string | null" + } + }, + "ref": { + "defaultValue": null, + "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", + "name": "ref", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "RefAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "RefAttributes" + } + ], + "required": false, + "type": { + "name": "LegacyRef" + } + }, + "key": { + "defaultValue": null, + "description": "", + "name": "key", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" + } + ], + "required": false, + "type": { + "name": "Key | null" + } + } + }, + "Popover.tsx": { + "keyboardDismissDisabled": { + "defaultValue": null, + "description": "", + "name": "keyboardDismissDisabled", "parent": { "fileName": "marigold/packages/components/src/Overlay/Popover.tsx", "name": "PopoverProps" @@ -138332,19 +138370,19 @@ } } }, - "SectionMessage.tsx": { - "slot": { + "Select.tsx": { + "label": { "defaultValue": null, - "description": "", - "name": "slot", + "description": "Set a label for the select.", + "name": "label", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" } ], "required": false, @@ -138352,18 +138390,18 @@ "name": "string" } }, - "title": { + "description": { "defaultValue": null, - "description": "", - "name": "title", + "description": "Set a description for the select.", + "name": "description", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" } ], "required": false, @@ -138371,94 +138409,96 @@ "name": "string" } }, - "key": { + "errorMessage": { "defaultValue": null, - "description": "", - "name": "key", + "description": "Set a error message for the select.", + "name": "errorMessage", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" } ], "required": false, "type": { - "name": "Key | null" + "name": "string | ((validation: ValidationResult) => string)" } }, - "defaultChecked": { + "items": { "defaultValue": null, - "description": "", - "name": "defaultChecked", + "description": "Items of the select.", + "name": "items", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" } ], "required": false, "type": { - "name": "boolean" + "name": "Iterable" } }, - "defaultValue": { + "children": { "defaultValue": null, - "description": "", - "name": "defaultValue", + "description": "Children of the select.", + "name": "children", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" } ], - "required": false, + "required": true, "type": { - "name": "string | number | readonly string[]" + "name": "ReactNode | ((item: object) => ReactNode)" } }, - "suppressContentEditableWarning": { + "width": { "defaultValue": null, - "description": "", - "name": "suppressContentEditableWarning", + "description": "Sets the width of the field. You can see allowed tokens here: https://tailwindcss.com/docs/width", + "name": "width", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" } ], "required": false, "type": { - "name": "boolean" + "name": "0 | \"auto\" | \"full\" | \"fit\" | \"min\" | \"max\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." } }, - "suppressHydrationWarning": { - "defaultValue": null, - "description": "", - "name": "suppressHydrationWarning", + "required": { + "defaultValue": { + "value": "false" + }, + "description": "If the select should be required.", + "name": "required", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" } ], "required": false, @@ -138466,37 +138506,41 @@ "name": "boolean" } }, - "accessKey": { - "defaultValue": null, - "description": "", - "name": "accessKey", + "disabled": { + "defaultValue": { + "value": "false" + }, + "description": "If the select should be disabled.", + "name": "disabled", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" } ], "required": false, "type": { - "name": "string" + "name": "boolean" } }, - "autoFocus": { - "defaultValue": null, - "description": "", - "name": "autoFocus", + "open": { + "defaultValue": { + "value": "false" + }, + "description": "If the select list should be open.", + "name": "open", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" } ], "required": false, @@ -138504,113 +138548,117 @@ "name": "boolean" } }, - "contentEditable": { - "defaultValue": null, - "description": "", - "name": "contentEditable", + "error": { + "defaultValue": { + "value": "false" + }, + "description": "If the select should throw an error.", + "name": "error", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" } ], "required": false, "type": { - "name": "Booleanish | \"inherit\" | \"plaintext-only\"" + "name": "boolean" } }, - "contextMenu": { + "onChange": { "defaultValue": null, - "description": "", - "name": "contextMenu", + "description": "Handler that is called when the selection changes.", + "name": "onChange", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Select/Select.tsx", + "name": "SelectProps" } ], "required": false, "type": { - "name": "string" + "name": "((key: Key) => void)" } }, - "dir": { - "defaultValue": null, - "description": "", - "name": "dir", + "validationBehavior": { + "defaultValue": { + "value": "'native'" + }, + "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.", + "name": "validationBehavior", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RACValidation" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RACValidation" } ], "required": false, "type": { - "name": "string" + "name": "\"native\" | \"aria\"" } }, - "draggable": { + "selectedKey": { "defaultValue": null, - "description": "", - "name": "draggable", + "description": "The currently selected key in the collection (controlled).", + "name": "selectedKey", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "SingleSelection" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "SingleSelection" } ], "required": false, "type": { - "name": "Booleanish" + "name": "Key | null" } }, - "hidden": { + "defaultSelectedKey": { "defaultValue": null, - "description": "", - "name": "hidden", + "description": "The initial selected key in the collection (uncontrolled).", + "name": "defaultSelectedKey", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "SingleSelection" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "SingleSelection" } ], "required": false, "type": { - "name": "boolean" + "name": "Key" } }, - "id": { + "autoComplete": { "defaultValue": null, - "description": "", - "name": "id", + "description": "Describes the type of autocomplete functionality the input should provide if any. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautocomplete).", + "name": "autoComplete", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", + "name": "AriaSelectProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", + "name": "AriaSelectProps" } ], "required": false, @@ -138618,18 +138666,18 @@ "name": "string" } }, - "lang": { + "name": { "defaultValue": null, - "description": "", - "name": "lang", + "description": "The name of the input, used when submitting an HTML form.", + "name": "name", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", + "name": "AriaSelectProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", + "name": "AriaSelectProps" } ], "required": false, @@ -138637,94 +138685,94 @@ "name": "string" } }, - "nonce": { + "defaultOpen": { "defaultValue": null, - "description": "", - "name": "nonce", + "description": "Sets the default open state of the menu.", + "name": "defaultOpen", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", + "name": "SelectProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", + "name": "SelectProps" } ], "required": false, "type": { - "name": "string" + "name": "boolean" } }, - "spellCheck": { + "onOpenChange": { "defaultValue": null, - "description": "", - "name": "spellCheck", + "description": "Method that is called when the open state of the menu changes.", + "name": "onOpenChange", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", + "name": "SelectProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", + "name": "SelectProps" } ], "required": false, "type": { - "name": "Booleanish" + "name": "((isOpen: boolean) => void)" } }, - "tabIndex": { + "disabledKeys": { "defaultValue": null, - "description": "", - "name": "tabIndex", + "description": "The item keys that are disabled. These items cannot be selected, focused, or otherwise interacted with.", + "name": "disabledKeys", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/collections.d.ts", + "name": "CollectionBase" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/collections.d.ts", + "name": "CollectionBase" } ], "required": false, "type": { - "name": "number" + "name": "Iterable" } }, - "translate": { + "validate": { "defaultValue": null, - "description": "", - "name": "translate", + "description": "A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.", + "name": "validate", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "Validation" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "Validation" } ], "required": false, "type": { - "name": "\"yes\" | \"no\"" + "name": "((value: Key) => true | ValidationError | null)" } }, - "radioGroup": { + "placeholder": { "defaultValue": null, - "description": "", - "name": "radioGroup", + "description": "Temporary text that occupies the text input when it is empty.", + "name": "placeholder", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "TextInputBase" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "TextInputBase" } ], "required": false, @@ -138732,132 +138780,132 @@ "name": "string" } }, - "role": { + "autoFocus": { "defaultValue": null, - "description": "", - "name": "role", + "description": "Whether the element should receive focus on render.", + "name": "autoFocus", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusableProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusableProps" } ], "required": false, "type": { - "name": "AriaRole" + "name": "boolean" } }, - "about": { + "onFocus": { "defaultValue": null, - "description": "", - "name": "about", + "description": "Handler that is called when the element receives focus.", + "name": "onFocus", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" } ], "required": false, "type": { - "name": "string" + "name": "((e: FocusEvent) => void)" } }, - "content": { + "onBlur": { "defaultValue": null, - "description": "", - "name": "content", + "description": "Handler that is called when the element loses focus.", + "name": "onBlur", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" } ], "required": false, "type": { - "name": "string" + "name": "((e: FocusEvent) => void)" } }, - "datatype": { + "onFocusChange": { "defaultValue": null, - "description": "", - "name": "datatype", + "description": "Handler that is called when the element's focus status changes.", + "name": "onFocusChange", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" } ], "required": false, "type": { - "name": "string" + "name": "((isFocused: boolean) => void)" } }, - "inlist": { + "onKeyDown": { "defaultValue": null, - "description": "", - "name": "inlist", + "description": "Handler that is called when a key is pressed.", + "name": "onKeyDown", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" } ], "required": false, "type": { - "name": "any" + "name": "((e: KeyboardEvent) => void)" } }, - "prefix": { + "onKeyUp": { "defaultValue": null, - "description": "", - "name": "prefix", + "description": "Handler that is called when a key is released.", + "name": "onKeyUp", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" } ], "required": false, "type": { - "name": "string" + "name": "((e: KeyboardEvent) => void)" } }, - "property": { + "id": { "defaultValue": null, - "description": "", - "name": "property", + "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", + "name": "id", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" } ], "required": false, @@ -138865,18 +138913,18 @@ "name": "string" } }, - "rel": { + "aria-label": { "defaultValue": null, - "description": "", - "name": "rel", + "description": "Defines a string value that labels the current element.", + "name": "aria-label", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" } ], "required": false, @@ -138884,18 +138932,18 @@ "name": "string" } }, - "resource": { + "aria-labelledby": { "defaultValue": null, - "description": "", - "name": "resource", + "description": "Identifies the element (or elements) that labels the current element.", + "name": "aria-labelledby", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" } ], "required": false, @@ -138903,18 +138951,18 @@ "name": "string" } }, - "rev": { + "aria-describedby": { "defaultValue": null, - "description": "", - "name": "rev", + "description": "Identifies the element (or elements) that describes the object.", + "name": "aria-describedby", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" } ], "required": false, @@ -138922,18 +138970,18 @@ "name": "string" } }, - "typeof": { + "aria-details": { "defaultValue": null, - "description": "", - "name": "typeof", + "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", + "name": "aria-details", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" } ], "required": false, @@ -138941,132 +138989,138 @@ "name": "string" } }, - "vocab": { + "excludeFromTabOrder": { "defaultValue": null, - "description": "", - "name": "vocab", + "description": "Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.", + "name": "excludeFromTabOrder", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "FocusableDOMProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "FocusableDOMProps" } ], "required": false, "type": { - "name": "string" + "name": "boolean" } }, - "autoCapitalize": { + "slot": { "defaultValue": null, - "description": "", - "name": "autoCapitalize", + "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", + "name": "slot", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" } ], "required": false, "type": { - "name": "string" + "name": "string | null" } }, - "autoCorrect": { + "ref": { "defaultValue": null, - "description": "", - "name": "autoCorrect", + "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", + "name": "ref", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "RefAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "RefAttributes" } ], "required": false, "type": { - "name": "string" + "name": "LegacyRef" } }, - "autoSave": { + "key": { "defaultValue": null, "description": "", - "name": "autoSave", + "name": "key", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "Attributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "Attributes" } ], "required": false, "type": { - "name": "string" + "name": "Key | null" } - }, - "color": { + } + }, + "Slider.tsx": { + "thumbLabels": { "defaultValue": null, - "description": "", - "name": "color", + "description": "Labels for the thumbs in the slider.", + "name": "thumbLabels", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Slider/Slider.tsx", + "name": "SliderProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Slider/Slider.tsx", + "name": "SliderProps" } ], "required": false, "type": { - "name": "string" + "name": "string[]" } }, - "itemProp": { - "defaultValue": null, - "description": "", - "name": "itemProp", + "width": { + "defaultValue": { + "value": "full" + }, + "description": "Sets the width of the field. You can see allowed tokens here: https://tailwindcss.com/docs/width", + "name": "width", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Slider/Slider.tsx", + "name": "SliderProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Slider/Slider.tsx", + "name": "SliderProps" } ], "required": false, "type": { - "name": "string" + "name": "0 | \"auto\" | \"full\" | \"fit\" | \"min\" | \"max\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." } }, - "itemScope": { - "defaultValue": null, - "description": "", - "name": "itemScope", + "disabled": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the input is disabled.", + "name": "disabled", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Slider/Slider.tsx", + "name": "SliderProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/packages/components/src/Slider/Slider.tsx", + "name": "SliderProps" } ], "required": false, @@ -139074,75 +139128,81 @@ "name": "boolean" } }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", + "orientation": { + "defaultValue": { + "value": "'horizontal'" + }, + "description": "The orientation of the Slider.", + "name": "orientation", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", + "name": "SliderProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", + "name": "SliderProps" } ], "required": false, "type": { - "name": "string" + "name": "Orientation" } }, - "itemID": { + "onChangeEnd": { "defaultValue": null, - "description": "", - "name": "itemID", + "description": "Fired when the slider stops moving, due to being let go.", + "name": "onChangeEnd", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", + "name": "SliderProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", + "name": "SliderProps" } ], "required": false, "type": { - "name": "string" + "name": "((value: number | number[]) => void)" } }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", + "minValue": { + "defaultValue": { + "value": "0" + }, + "description": "The slider's minimum value.", + "name": "minValue", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", + "name": "SliderProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", + "name": "SliderProps" } ], "required": false, "type": { - "name": "string" + "name": "number" } }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", + "maxValue": { + "defaultValue": { + "value": "100" + }, + "description": "The slider's maximum value.", + "name": "maxValue", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", + "name": "SliderProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", + "name": "SliderProps" } ], "required": false, @@ -139150,94 +139210,96 @@ "name": "number" } }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", + "step": { + "defaultValue": { + "value": "1" + }, + "description": "The slider's step value.", + "name": "step", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", + "name": "SliderProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", + "name": "SliderProps" } ], "required": false, "type": { - "name": "string" + "name": "number" } }, - "unselectable": { + "value": { "defaultValue": null, - "description": "", - "name": "unselectable", + "description": "The current value (controlled).", + "name": "value", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "ValueBase" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "ValueBase" } ], "required": false, "type": { - "name": "\"on\" | \"off\"" + "name": "number | number[]" } }, - "inputMode": { + "defaultValue": { "defaultValue": null, - "description": "Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}", - "name": "inputMode", + "description": "The default value (uncontrolled).", + "name": "defaultValue", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "ValueBase" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "ValueBase" } ], "required": false, "type": { - "name": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" + "name": "number | number[]" } }, - "is": { + "onChange": { "defaultValue": null, - "description": "Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}", - "name": "is", + "description": "Handler that is called when the value changes.", + "name": "onChange", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "ValueBase" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "ValueBase" } ], "required": false, "type": { - "name": "string" + "name": "((value: number | number[]) => void)" } }, - "aria-activedescendant": { + "id": { "defaultValue": null, - "description": "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.", - "name": "aria-activedescendant", + "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", + "name": "id", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" } ], "required": false, @@ -139245,56 +139307,56 @@ "name": "string" } }, - "aria-atomic": { + "aria-label": { "defaultValue": null, - "description": "Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.", - "name": "aria-atomic", + "description": "Defines a string value that labels the current element.", + "name": "aria-label", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" } ], "required": false, "type": { - "name": "Booleanish" + "name": "string" } }, - "aria-autocomplete": { + "aria-labelledby": { "defaultValue": null, - "description": "Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.", - "name": "aria-autocomplete", + "description": "Identifies the element (or elements) that labels the current element.", + "name": "aria-labelledby", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" } ], "required": false, "type": { - "name": "\"list\" | \"none\" | \"inline\" | \"both\"" + "name": "string" } }, - "aria-braillelabel": { + "aria-describedby": { "defaultValue": null, - "description": "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.", - "name": "aria-braillelabel", + "description": "Identifies the element (or elements) that describes the object.", + "name": "aria-describedby", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" } ], "required": false, @@ -139302,18 +139364,18 @@ "name": "string" } }, - "aria-brailleroledescription": { + "aria-details": { "defaultValue": null, - "description": "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.", - "name": "aria-brailleroledescription", + "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", + "name": "aria-details", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" } ], "required": false, @@ -139321,189 +139383,191 @@ "name": "string" } }, - "aria-busy": { + "formatOptions": { "defaultValue": null, - "description": "", - "name": "aria-busy", + "description": "The display format of the value label.", + "name": "formatOptions", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SliderProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SliderProps" } ], "required": false, "type": { - "name": "Booleanish" + "name": "NumberFormatOptions" } }, - "aria-checked": { + "children": { "defaultValue": null, - "description": "Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.", - "name": "aria-checked", + "description": "The children of the component. A function may be provided to alter the children based on component state.", + "name": "children", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RenderProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RenderProps" } ], "required": false, "type": { - "name": "boolean | \"true\" | \"false\" | \"mixed\"" + "name": "ReactNode | ((values: SliderRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" } }, - "aria-colcount": { + "className": { "defaultValue": null, - "description": "Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.", - "name": "aria-colcount", + "description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.", + "name": "className", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "StyleRenderProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "StyleRenderProps" } ], "required": false, "type": { - "name": "number" + "name": "string | ((values: SliderRenderProps & { defaultClassName: string; }) => string)" } }, - "aria-colindex": { + "style": { "defaultValue": null, - "description": "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.", - "name": "aria-colindex", + "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.", + "name": "style", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "StyleRenderProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "StyleRenderProps" } ], "required": false, "type": { - "name": "number" + "name": "CSSProperties | ((values: SliderRenderProps & { defaultStyle: CSSProperties; }) => CSSProperties)" } }, - "aria-colindextext": { + "slot": { "defaultValue": null, - "description": "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.", - "name": "aria-colindextext", + "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", + "name": "slot", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" } ], "required": false, "type": { - "name": "string" + "name": "string | null" } }, - "aria-colspan": { + "ref": { "defaultValue": null, - "description": "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.", - "name": "aria-colspan", + "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", + "name": "ref", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "RefAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "RefAttributes" } ], "required": false, "type": { - "name": "number" + "name": "LegacyRef" } }, - "aria-controls": { + "key": { "defaultValue": null, - "description": "Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.", - "name": "aria-controls", + "description": "", + "name": "key", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "Attributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "Attributes" } ], "required": false, "type": { - "name": "string" + "name": "Key | null" } - }, - "aria-current": { + } + }, + "SelectList.tsx": { + "onChange": { "defaultValue": null, - "description": "Indicates the element that represents the current item within a container or set of related elements.", - "name": "aria-current", + "description": "Handler that is called when the selection change.", + "name": "onChange", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/packages/components/src/SelectList/SelectList.tsx", + "name": "SelectListProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/packages/components/src/SelectList/SelectList.tsx", + "name": "SelectListProps" } ], "required": false, "type": { - "name": "boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\"" + "name": "((keys: Selection) => void) | Dispatch" } }, - "aria-describedby": { + "children": { "defaultValue": null, - "description": "Identifies the element (or elements) that describes the object.\n@see aria-labelledby", - "name": "aria-describedby", + "description": "The contents of the collection.", + "name": "children", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "CollectionProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "CollectionProps" } ], "required": false, "type": { - "name": "string" + "name": "ReactNode | ((item: object) => ReactNode)" } }, - "aria-description": { + "id": { "defaultValue": null, - "description": "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.", - "name": "aria-description", + "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", + "name": "id", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" } ], "required": false, @@ -139511,208 +139575,208 @@ "name": "string" } }, - "aria-details": { + "onAction": { "defaultValue": null, - "description": "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.", - "name": "aria-details", + "description": "Handler that is called when a user performs an action on an item. The exact user event depends on\nthe collection's `selectionBehavior` prop and the interaction modality.", + "name": "onAction", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-aria+gridlist@3.8.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/gridlist/dist/types.d.ts", + "name": "GridListProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-aria+gridlist@3.8.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/gridlist/dist/types.d.ts", + "name": "GridListProps" } ], "required": false, "type": { - "name": "string" + "name": "((key: Key) => void)" } }, - "aria-disabled": { + "disabledBehavior": { "defaultValue": null, - "description": "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.", - "name": "aria-disabled", + "description": "Whether `disabledKeys` applies to all interactions, or only selection.", + "name": "disabledBehavior", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-aria+gridlist@3.8.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/gridlist/dist/types.d.ts", + "name": "GridListProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-aria+gridlist@3.8.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/gridlist/dist/types.d.ts", + "name": "GridListProps" } ], "required": false, "type": { - "name": "Booleanish" + "name": "DisabledBehavior" } }, - "aria-dropeffect": { + "items": { "defaultValue": null, - "description": "Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1", - "name": "aria-dropeffect", + "description": "Item objects in the collection.", + "name": "items", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/collections.d.ts", + "name": "CollectionBase" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/collections.d.ts", + "name": "CollectionBase" } ], "required": false, "type": { - "name": "\"link\" | \"none\" | \"copy\" | \"execute\" | \"move\" | \"popup\"" + "name": "Iterable" } }, - "aria-errormessage": { + "disabledKeys": { "defaultValue": null, - "description": "Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.", - "name": "aria-errormessage", + "description": "The item keys that are disabled. These items cannot be selected, focused, or otherwise interacted with.", + "name": "disabledKeys", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/collections.d.ts", + "name": "CollectionBase" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/collections.d.ts", + "name": "CollectionBase" } ], "required": false, "type": { - "name": "string" + "name": "Iterable" } }, - "aria-expanded": { + "selectionMode": { "defaultValue": null, - "description": "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.", - "name": "aria-expanded", + "description": "The type of selection that is allowed in the collection.", + "name": "selectionMode", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "MultipleSelection" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "MultipleSelection" } ], "required": false, "type": { - "name": "Booleanish" + "name": "SelectionMode" } }, - "aria-flowto": { + "disallowEmptySelection": { "defaultValue": null, - "description": "Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.", - "name": "aria-flowto", + "description": "Whether the collection allows empty selection.", + "name": "disallowEmptySelection", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "MultipleSelection" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "MultipleSelection" } ], "required": false, "type": { - "name": "string" + "name": "boolean" } }, - "aria-grabbed": { + "selectedKeys": { "defaultValue": null, - "description": "Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1", - "name": "aria-grabbed", + "description": "The currently selected keys in the collection (controlled).", + "name": "selectedKeys", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "MultipleSelection" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "MultipleSelection" } ], "required": false, "type": { - "name": "Booleanish" + "name": "\"all\" | Iterable" } }, - "aria-haspopup": { + "defaultSelectedKeys": { "defaultValue": null, - "description": "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.", - "name": "aria-haspopup", + "description": "The initial selected keys in the collection (uncontrolled).", + "name": "defaultSelectedKeys", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "MultipleSelection" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", + "name": "MultipleSelection" } ], "required": false, "type": { - "name": "boolean | \"dialog\" | \"menu\" | \"true\" | \"false\" | \"grid\" | \"listbox\" | \"tree\"" + "name": "\"all\" | Iterable" } }, - "aria-hidden": { + "aria-label": { "defaultValue": null, - "description": "Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.", - "name": "aria-hidden", + "description": "Defines a string value that labels the current element.", + "name": "aria-label", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" } ], "required": false, "type": { - "name": "Booleanish" + "name": "string" } }, - "aria-invalid": { + "aria-labelledby": { "defaultValue": null, - "description": "Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.", - "name": "aria-invalid", + "description": "Identifies the element (or elements) that labels the current element.", + "name": "aria-labelledby", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" } ], "required": false, "type": { - "name": "boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\"" + "name": "string" } }, - "aria-keyshortcuts": { + "aria-describedby": { "defaultValue": null, - "description": "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.", - "name": "aria-keyshortcuts", + "description": "Identifies the element (or elements) that describes the object.", + "name": "aria-describedby", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" } ], "required": false, @@ -139720,18 +139784,18 @@ "name": "string" } }, - "aria-label": { + "aria-details": { "defaultValue": null, - "description": "Defines a string value that labels the current element.\n@see aria-labelledby.", - "name": "aria-label", + "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", + "name": "aria-details", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" } ], "required": false, @@ -139739,284 +139803,286 @@ "name": "string" } }, - "aria-labelledby": { + "selectionBehavior": { "defaultValue": null, - "description": "Identifies the element (or elements) that labels the current element.\n@see aria-describedby.", - "name": "aria-labelledby", + "description": "How multiple selection should behave in the collection.", + "name": "selectionBehavior", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "GridListProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "GridListProps" } ], "required": false, "type": { - "name": "string" + "name": "SelectionBehavior" } }, - "aria-level": { + "dragAndDropHooks": { "defaultValue": null, - "description": "Defines the hierarchical level of an element within a structure.", - "name": "aria-level", + "description": "The drag and drop hooks returned by `useDragAndDrop` used to enable drag and drop behavior for the GridList.", + "name": "dragAndDropHooks", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "GridListProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "GridListProps" } ], "required": false, "type": { - "name": "number" + "name": "DragAndDropHooks" } }, - "aria-live": { + "renderEmptyState": { "defaultValue": null, - "description": "Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.", - "name": "aria-live", + "description": "Provides content to display when there are no items in the list.", + "name": "renderEmptyState", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "GridListProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "GridListProps" } ], "required": false, "type": { - "name": "\"off\" | \"assertive\" | \"polite\"" + "name": "((props: GridListRenderProps) => ReactNode)" } }, - "aria-modal": { + "dependencies": { "defaultValue": null, - "description": "Indicates whether an element is modal when displayed.", - "name": "aria-modal", + "description": "Values that should invalidate the item cache when using dynamic collections.", + "name": "dependencies", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "CollectionProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "CollectionProps" } ], "required": false, "type": { - "name": "Booleanish" + "name": "any[]" } }, - "aria-multiline": { + "slot": { "defaultValue": null, - "description": "Indicates whether a text box accepts multiple lines of input or only a single line.", - "name": "aria-multiline", + "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", + "name": "slot", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" } ], "required": false, "type": { - "name": "Booleanish" + "name": "string | null" } }, - "aria-multiselectable": { + "onScroll": { "defaultValue": null, - "description": "Indicates that the user may select more than one item from the current selectable descendants.", - "name": "aria-multiselectable", + "description": "Handler that is called when a user scrolls. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/scroll_event).", + "name": "onScroll", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ScrollableProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "ScrollableProps" } ], "required": false, "type": { - "name": "Booleanish" + "name": "((e: UIEvent) => void)" } }, - "aria-orientation": { + "ref": { "defaultValue": null, - "description": "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.", - "name": "aria-orientation", + "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", + "name": "ref", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "RefAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "RefAttributes" } ], "required": false, "type": { - "name": "\"horizontal\" | \"vertical\"" + "name": "LegacyRef" } }, - "aria-owns": { + "key": { "defaultValue": null, - "description": "Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.", - "name": "aria-owns", + "description": "", + "name": "key", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "Attributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "Attributes" } ], "required": false, "type": { - "name": "string" + "name": "Key | null" } - }, - "aria-placeholder": { + } + }, + "SelectListItem.tsx": { + "children": { "defaultValue": null, - "description": "Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.", - "name": "aria-placeholder", + "description": "The children of the component. A function may be provided to alter the children based on component state.", + "name": "children", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RenderProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RenderProps" } ], "required": false, "type": { - "name": "string" + "name": "ReactNode | ((values: GridListItemRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" } }, - "aria-posinset": { + "id": { "defaultValue": null, - "description": "Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.", - "name": "aria-posinset", + "description": "The unique id of the item.", + "name": "id", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "GridListItemProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "GridListItemProps" } ], "required": false, "type": { - "name": "number" + "name": "Key" } }, - "aria-pressed": { + "value": { "defaultValue": null, - "description": "Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.", - "name": "aria-pressed", + "description": "The object value that this item represents. When using dynamic collections, this is set automatically.", + "name": "value", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "GridListItemProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "GridListItemProps" } ], "required": false, "type": { - "name": "boolean | \"true\" | \"false\" | \"mixed\"" + "name": "object" } }, - "aria-readonly": { + "textValue": { "defaultValue": null, - "description": "Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.", - "name": "aria-readonly", + "description": "A string representation of the item's contents, used for features like typeahead.", + "name": "textValue", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "GridListItemProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "GridListItemProps" } ], "required": false, "type": { - "name": "Booleanish" + "name": "string" } }, - "aria-relevant": { + "isDisabled": { "defaultValue": null, - "description": "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.", - "name": "aria-relevant", + "description": "Whether the item is disabled.", + "name": "isDisabled", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "GridListItemProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "GridListItemProps" } ], "required": false, "type": { - "name": "\"text\" | \"additions\" | \"additions removals\" | \"additions text\" | \"all\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\"" + "name": "boolean" } }, - "aria-required": { + "onAction": { "defaultValue": null, - "description": "Indicates that user input is required on the element before a form may be submitted.", - "name": "aria-required", + "description": "Handler that is called when a user performs an action on the item. The exact user event depends on\nthe collection's `selectionBehavior` prop and the interaction modality.", + "name": "onAction", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "GridListItemProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "GridListItemProps" } ], "required": false, "type": { - "name": "Booleanish" + "name": "(() => void)" } }, - "aria-roledescription": { + "href": { "defaultValue": null, - "description": "Defines a human-readable, author-localized description for the role of an element.", - "name": "aria-roledescription", + "description": "A URL to link to. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#href).", + "name": "href", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" } ], "required": false, @@ -140024,56 +140090,56 @@ "name": "string" } }, - "aria-rowcount": { + "hrefLang": { "defaultValue": null, - "description": "Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.", - "name": "aria-rowcount", + "description": "Hints at the human language of the linked URL. See[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#hreflang).", + "name": "hrefLang", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" } ], "required": false, "type": { - "name": "number" + "name": "string" } }, - "aria-rowindex": { + "target": { "defaultValue": null, - "description": "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.", - "name": "aria-rowindex", + "description": "The target window for the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target).", + "name": "target", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" } ], "required": false, "type": { - "name": "number" + "name": "HTMLAttributeAnchorTarget" } }, - "aria-rowindextext": { + "rel": { "defaultValue": null, - "description": "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.", - "name": "aria-rowindextext", + "description": "The relationship between the linked resource and the current page. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).", + "name": "rel", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" } ], "required": false, @@ -140081,2081 +140147,2083 @@ "name": "string" } }, - "aria-rowspan": { + "download": { "defaultValue": null, - "description": "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.", - "name": "aria-rowspan", + "description": "Causes the browser to download the linked URL. A string may be provided to suggest a file name. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#download).", + "name": "download", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" } ], "required": false, "type": { - "name": "number" + "name": "string | boolean" } }, - "aria-selected": { + "ping": { "defaultValue": null, - "description": "Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.", - "name": "aria-selected", + "description": "A space-separated list of URLs to ping when the link is followed. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#ping).", + "name": "ping", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" } ], "required": false, "type": { - "name": "Booleanish" + "name": "string" } }, - "aria-setsize": { + "referrerPolicy": { "defaultValue": null, - "description": "Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.", - "name": "aria-setsize", + "description": "How much of the referrer to send when following the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#referrerpolicy).", + "name": "referrerPolicy", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" } ], "required": false, "type": { - "name": "number" + "name": "HTMLAttributeReferrerPolicy" } }, - "aria-sort": { + "routerOptions": { "defaultValue": null, - "description": "Indicates if items in a table or grid are sorted in ascending or descending order.", - "name": "aria-sort", + "description": "Options for the configured client side router.", + "name": "routerOptions", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "LinkDOMProps" } ], "required": false, "type": { - "name": "\"none\" | \"ascending\" | \"descending\" | \"other\"" + "name": "undefined" } }, - "aria-valuemax": { + "onHoverStart": { "defaultValue": null, - "description": "Defines the maximum allowed value for a range widget.", - "name": "aria-valuemax", + "description": "Handler that is called when a hover interaction starts.", + "name": "onHoverStart", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" } ], "required": false, "type": { - "name": "number" + "name": "((e: HoverEvent) => void)" } }, - "aria-valuemin": { + "onHoverEnd": { "defaultValue": null, - "description": "Defines the minimum allowed value for a range widget.", - "name": "aria-valuemin", + "description": "Handler that is called when a hover interaction ends.", + "name": "onHoverEnd", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" } ], "required": false, "type": { - "name": "number" + "name": "((e: HoverEvent) => void)" } }, - "aria-valuenow": { + "onHoverChange": { "defaultValue": null, - "description": "Defines the current value for a range widget.\n@see aria-valuetext.", - "name": "aria-valuenow", + "description": "Handler that is called when the hover state changes.", + "name": "onHoverChange", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" } ], "required": false, "type": { - "name": "number" + "name": "((isHovering: boolean) => void)" } }, - "aria-valuetext": { + "ref": { "defaultValue": null, - "description": "Defines the human readable text alternative of aria-valuenow for a range widget.", - "name": "aria-valuetext", + "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", + "name": "ref", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "RefAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "RefAttributes" } ], "required": false, "type": { - "name": "string" + "name": "LegacyRef" } }, - "dangerouslySetInnerHTML": { + "key": { "defaultValue": null, "description": "", - "name": "dangerouslySetInnerHTML", + "name": "key", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "Attributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "Attributes" } ], "required": false, "type": { - "name": "{ __html: string | TrustedHTML; }" + "name": "Key | null" } - }, - "onCopy": { + } + }, + "Split.tsx": { + "slot": { "defaultValue": null, "description": "", - "name": "onCopy", + "name": "slot", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "string" } }, - "onCopyCapture": { + "title": { "defaultValue": null, "description": "", - "name": "onCopyCapture", + "name": "title", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "string" } }, - "onCut": { + "key": { "defaultValue": null, "description": "", - "name": "onCut", + "name": "key", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "Attributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "Attributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "Key | null" } }, - "onCutCapture": { + "defaultChecked": { "defaultValue": null, "description": "", - "name": "onCutCapture", + "name": "defaultChecked", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "boolean" } }, - "onPaste": { + "defaultValue": { "defaultValue": null, "description": "", - "name": "onPaste", + "name": "defaultValue", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "string | number | readonly string[]" } }, - "onPasteCapture": { + "suppressContentEditableWarning": { "defaultValue": null, "description": "", - "name": "onPasteCapture", + "name": "suppressContentEditableWarning", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "boolean" } }, - "onCompositionEnd": { + "suppressHydrationWarning": { "defaultValue": null, "description": "", - "name": "onCompositionEnd", + "name": "suppressHydrationWarning", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "boolean" } }, - "onCompositionEndCapture": { + "accessKey": { "defaultValue": null, "description": "", - "name": "onCompositionEndCapture", + "name": "accessKey", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "string" } }, - "onCompositionStart": { + "autoFocus": { "defaultValue": null, "description": "", - "name": "onCompositionStart", + "name": "autoFocus", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "boolean" } }, - "onCompositionStartCapture": { + "contentEditable": { "defaultValue": null, "description": "", - "name": "onCompositionStartCapture", + "name": "contentEditable", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "Booleanish | \"inherit\" | \"plaintext-only\"" } }, - "onCompositionUpdate": { + "contextMenu": { "defaultValue": null, "description": "", - "name": "onCompositionUpdate", + "name": "contextMenu", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "string" } }, - "onCompositionUpdateCapture": { + "dir": { "defaultValue": null, "description": "", - "name": "onCompositionUpdateCapture", + "name": "dir", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "string" } }, - "onFocus": { + "draggable": { "defaultValue": null, "description": "", - "name": "onFocus", + "name": "draggable", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "Booleanish" } }, - "onFocusCapture": { + "hidden": { "defaultValue": null, "description": "", - "name": "onFocusCapture", + "name": "hidden", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "boolean" } }, - "onBlur": { + "id": { "defaultValue": null, "description": "", - "name": "onBlur", + "name": "id", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "string" } }, - "onBlurCapture": { + "lang": { "defaultValue": null, "description": "", - "name": "onBlurCapture", + "name": "lang", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "string" } }, - "onChange": { + "nonce": { "defaultValue": null, "description": "", - "name": "onChange", + "name": "nonce", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string" } }, - "onChangeCapture": { + "spellCheck": { "defaultValue": null, "description": "", - "name": "onChangeCapture", + "name": "spellCheck", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "Booleanish" } }, - "onBeforeInput": { + "tabIndex": { "defaultValue": null, "description": "", - "name": "onBeforeInput", + "name": "tabIndex", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "number" } }, - "onBeforeInputCapture": { + "translate": { "defaultValue": null, "description": "", - "name": "onBeforeInputCapture", + "name": "translate", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "\"yes\" | \"no\"" } }, - "onInput": { + "radioGroup": { "defaultValue": null, "description": "", - "name": "onInput", + "name": "radioGroup", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string" } }, - "onInputCapture": { + "role": { "defaultValue": null, "description": "", - "name": "onInputCapture", + "name": "role", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "AriaRole" } }, - "onReset": { + "about": { "defaultValue": null, "description": "", - "name": "onReset", + "name": "about", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string" } }, - "onResetCapture": { + "content": { "defaultValue": null, "description": "", - "name": "onResetCapture", + "name": "content", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string" } }, - "onSubmit": { + "datatype": { "defaultValue": null, "description": "", - "name": "onSubmit", + "name": "datatype", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string" } }, - "onSubmitCapture": { + "inlist": { "defaultValue": null, "description": "", - "name": "onSubmitCapture", + "name": "inlist", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "any" } }, - "onInvalid": { + "prefix": { "defaultValue": null, "description": "", - "name": "onInvalid", + "name": "prefix", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string" } }, - "onInvalidCapture": { + "property": { "defaultValue": null, "description": "", - "name": "onInvalidCapture", + "name": "property", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string" } }, - "onLoad": { + "rel": { "defaultValue": null, "description": "", - "name": "onLoad", + "name": "rel", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onLoadCapture": { + "resource": { "defaultValue": null, "description": "", - "name": "onLoadCapture", + "name": "resource", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onError": { + "rev": { "defaultValue": null, "description": "", - "name": "onError", + "name": "rev", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onErrorCapture": { + "typeof": { "defaultValue": null, "description": "", - "name": "onErrorCapture", + "name": "typeof", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onKeyDown": { + "vocab": { "defaultValue": null, "description": "", - "name": "onKeyDown", + "name": "vocab", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "string" } }, - "onKeyDownCapture": { + "autoCapitalize": { "defaultValue": null, "description": "", - "name": "onKeyDownCapture", + "name": "autoCapitalize", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "string" } }, - "onKeyPress": { + "autoCorrect": { "defaultValue": null, - "description": "@deprecated", - "name": "onKeyPress", + "description": "", + "name": "autoCorrect", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "string" } }, - "onKeyPressCapture": { + "autoSave": { "defaultValue": null, - "description": "@deprecated", - "name": "onKeyPressCapture", + "description": "", + "name": "autoSave", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "string" } }, - "onKeyUp": { + "color": { "defaultValue": null, "description": "", - "name": "onKeyUp", + "name": "color", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "string" } }, - "onKeyUpCapture": { + "itemProp": { "defaultValue": null, "description": "", - "name": "onKeyUpCapture", + "name": "itemProp", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "string" } }, - "onAbort": { + "itemScope": { "defaultValue": null, "description": "", - "name": "onAbort", + "name": "itemScope", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "boolean" } }, - "onAbortCapture": { + "itemType": { "defaultValue": null, "description": "", - "name": "onAbortCapture", + "name": "itemType", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onCanPlay": { + "itemID": { "defaultValue": null, "description": "", - "name": "onCanPlay", + "name": "itemID", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onCanPlayCapture": { + "itemRef": { "defaultValue": null, "description": "", - "name": "onCanPlayCapture", + "name": "itemRef", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onCanPlayThrough": { + "results": { "defaultValue": null, "description": "", - "name": "onCanPlayThrough", + "name": "results", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "number" } }, - "onCanPlayThroughCapture": { + "security": { "defaultValue": null, "description": "", - "name": "onCanPlayThroughCapture", + "name": "security", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onDurationChange": { + "unselectable": { "defaultValue": null, "description": "", - "name": "onDurationChange", + "name": "unselectable", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "\"on\" | \"off\"" } }, - "onDurationChangeCapture": { + "inputMode": { "defaultValue": null, - "description": "", - "name": "onDurationChangeCapture", + "description": "Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}", + "name": "inputMode", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" } }, - "onEmptied": { + "is": { "defaultValue": null, - "description": "", - "name": "onEmptied", + "description": "Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}", + "name": "is", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onEmptiedCapture": { + "aria-activedescendant": { "defaultValue": null, - "description": "", - "name": "onEmptiedCapture", + "description": "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.", + "name": "aria-activedescendant", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onEncrypted": { + "aria-atomic": { "defaultValue": null, - "description": "", - "name": "onEncrypted", + "description": "Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.", + "name": "aria-atomic", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "Booleanish" } }, - "onEncryptedCapture": { + "aria-autocomplete": { "defaultValue": null, - "description": "", - "name": "onEncryptedCapture", + "description": "Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.", + "name": "aria-autocomplete", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "\"list\" | \"none\" | \"inline\" | \"both\"" } }, - "onEnded": { + "aria-braillelabel": { "defaultValue": null, - "description": "", - "name": "onEnded", + "description": "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.", + "name": "aria-braillelabel", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onEndedCapture": { + "aria-brailleroledescription": { "defaultValue": null, - "description": "", - "name": "onEndedCapture", + "description": "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.", + "name": "aria-brailleroledescription", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onLoadedData": { + "aria-busy": { "defaultValue": null, "description": "", - "name": "onLoadedData", + "name": "aria-busy", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "Booleanish" } }, - "onLoadedDataCapture": { + "aria-checked": { "defaultValue": null, - "description": "", - "name": "onLoadedDataCapture", + "description": "Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.", + "name": "aria-checked", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "boolean | \"true\" | \"false\" | \"mixed\"" } }, - "onLoadedMetadata": { + "aria-colcount": { "defaultValue": null, - "description": "", - "name": "onLoadedMetadata", + "description": "Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.", + "name": "aria-colcount", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "number" } }, - "onLoadedMetadataCapture": { + "aria-colindex": { "defaultValue": null, - "description": "", - "name": "onLoadedMetadataCapture", + "description": "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.", + "name": "aria-colindex", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "number" } }, - "onLoadStart": { + "aria-colindextext": { "defaultValue": null, - "description": "", - "name": "onLoadStart", + "description": "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.", + "name": "aria-colindextext", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onLoadStartCapture": { + "aria-colspan": { "defaultValue": null, - "description": "", - "name": "onLoadStartCapture", + "description": "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.", + "name": "aria-colspan", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "number" } }, - "onPause": { + "aria-controls": { "defaultValue": null, - "description": "", - "name": "onPause", + "description": "Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.", + "name": "aria-controls", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onPauseCapture": { + "aria-current": { "defaultValue": null, - "description": "", - "name": "onPauseCapture", + "description": "Indicates the element that represents the current item within a container or set of related elements.", + "name": "aria-current", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\"" } }, - "onPlay": { + "aria-describedby": { "defaultValue": null, - "description": "", - "name": "onPlay", + "description": "Identifies the element (or elements) that describes the object.\n@see aria-labelledby", + "name": "aria-describedby", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onPlayCapture": { + "aria-description": { "defaultValue": null, - "description": "", - "name": "onPlayCapture", + "description": "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.", + "name": "aria-description", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onPlaying": { + "aria-details": { "defaultValue": null, - "description": "", - "name": "onPlaying", + "description": "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.", + "name": "aria-details", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onPlayingCapture": { + "aria-disabled": { "defaultValue": null, - "description": "", - "name": "onPlayingCapture", + "description": "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.", + "name": "aria-disabled", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "Booleanish" } }, - "onProgress": { + "aria-dropeffect": { "defaultValue": null, - "description": "", - "name": "onProgress", + "description": "Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1", + "name": "aria-dropeffect", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "\"link\" | \"none\" | \"copy\" | \"execute\" | \"move\" | \"popup\"" } }, - "onProgressCapture": { + "aria-errormessage": { "defaultValue": null, - "description": "", - "name": "onProgressCapture", + "description": "Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.", + "name": "aria-errormessage", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onRateChange": { + "aria-expanded": { "defaultValue": null, - "description": "", - "name": "onRateChange", + "description": "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.", + "name": "aria-expanded", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "Booleanish" } }, - "onRateChangeCapture": { + "aria-flowto": { "defaultValue": null, - "description": "", - "name": "onRateChangeCapture", + "description": "Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.", + "name": "aria-flowto", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onResize": { + "aria-grabbed": { "defaultValue": null, - "description": "", - "name": "onResize", + "description": "Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1", + "name": "aria-grabbed", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "Booleanish" } }, - "onResizeCapture": { + "aria-haspopup": { "defaultValue": null, - "description": "", - "name": "onResizeCapture", + "description": "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.", + "name": "aria-haspopup", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "boolean | \"dialog\" | \"menu\" | \"true\" | \"false\" | \"grid\" | \"listbox\" | \"tree\"" } }, - "onSeeked": { + "aria-hidden": { "defaultValue": null, - "description": "", - "name": "onSeeked", + "description": "Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.", + "name": "aria-hidden", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "Booleanish" } }, - "onSeekedCapture": { + "aria-invalid": { "defaultValue": null, - "description": "", - "name": "onSeekedCapture", + "description": "Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.", + "name": "aria-invalid", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\"" } }, - "onSeeking": { + "aria-keyshortcuts": { "defaultValue": null, - "description": "", - "name": "onSeeking", + "description": "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.", + "name": "aria-keyshortcuts", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onSeekingCapture": { + "aria-label": { "defaultValue": null, - "description": "", - "name": "onSeekingCapture", + "description": "Defines a string value that labels the current element.\n@see aria-labelledby.", + "name": "aria-label", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onStalled": { + "aria-labelledby": { "defaultValue": null, - "description": "", - "name": "onStalled", + "description": "Identifies the element (or elements) that labels the current element.\n@see aria-describedby.", + "name": "aria-labelledby", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onStalledCapture": { + "aria-level": { "defaultValue": null, - "description": "", - "name": "onStalledCapture", + "description": "Defines the hierarchical level of an element within a structure.", + "name": "aria-level", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "number" } }, - "onSuspend": { + "aria-live": { "defaultValue": null, - "description": "", - "name": "onSuspend", + "description": "Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.", + "name": "aria-live", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "\"off\" | \"assertive\" | \"polite\"" } }, - "onSuspendCapture": { + "aria-modal": { "defaultValue": null, - "description": "", - "name": "onSuspendCapture", + "description": "Indicates whether an element is modal when displayed.", + "name": "aria-modal", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "Booleanish" } }, - "onTimeUpdate": { + "aria-multiline": { "defaultValue": null, - "description": "", - "name": "onTimeUpdate", + "description": "Indicates whether a text box accepts multiple lines of input or only a single line.", + "name": "aria-multiline", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "Booleanish" } }, - "onTimeUpdateCapture": { + "aria-multiselectable": { "defaultValue": null, - "description": "", - "name": "onTimeUpdateCapture", + "description": "Indicates that the user may select more than one item from the current selectable descendants.", + "name": "aria-multiselectable", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "Booleanish" } }, - "onVolumeChange": { + "aria-orientation": { "defaultValue": null, - "description": "", - "name": "onVolumeChange", + "description": "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.", + "name": "aria-orientation", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "\"horizontal\" | \"vertical\"" } }, - "onVolumeChangeCapture": { + "aria-owns": { "defaultValue": null, - "description": "", - "name": "onVolumeChangeCapture", + "description": "Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.", + "name": "aria-owns", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onWaiting": { + "aria-placeholder": { "defaultValue": null, - "description": "", - "name": "onWaiting", + "description": "Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.", + "name": "aria-placeholder", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onWaitingCapture": { + "aria-posinset": { "defaultValue": null, - "description": "", - "name": "onWaitingCapture", + "description": "Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.", + "name": "aria-posinset", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "number" } }, - "onAuxClick": { + "aria-pressed": { "defaultValue": null, - "description": "", - "name": "onAuxClick", + "description": "Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.", + "name": "aria-pressed", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "boolean | \"true\" | \"false\" | \"mixed\"" } }, - "onAuxClickCapture": { + "aria-readonly": { "defaultValue": null, - "description": "", - "name": "onAuxClickCapture", + "description": "Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.", + "name": "aria-readonly", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "Booleanish" } }, - "onClick": { + "aria-relevant": { "defaultValue": null, - "description": "", - "name": "onClick", + "description": "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.", + "name": "aria-relevant", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "\"text\" | \"additions\" | \"additions removals\" | \"additions text\" | \"all\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\"" } }, - "onClickCapture": { + "aria-required": { "defaultValue": null, - "description": "", - "name": "onClickCapture", + "description": "Indicates that user input is required on the element before a form may be submitted.", + "name": "aria-required", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "Booleanish" } }, - "onContextMenu": { + "aria-roledescription": { "defaultValue": null, - "description": "", - "name": "onContextMenu", + "description": "Defines a human-readable, author-localized description for the role of an element.", + "name": "aria-roledescription", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string" } }, - "onContextMenuCapture": { + "aria-rowcount": { "defaultValue": null, - "description": "", - "name": "onContextMenuCapture", + "description": "Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.", + "name": "aria-rowcount", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "number" } }, - "onDoubleClick": { + "aria-rowindex": { "defaultValue": null, - "description": "", - "name": "onDoubleClick", + "description": "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.", + "name": "aria-rowindex", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "number" } }, - "onDoubleClickCapture": { + "aria-rowindextext": { "defaultValue": null, - "description": "", - "name": "onDoubleClickCapture", + "description": "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.", + "name": "aria-rowindextext", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string" } }, - "onDrag": { + "aria-rowspan": { "defaultValue": null, - "description": "", - "name": "onDrag", + "description": "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.", + "name": "aria-rowspan", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "number" } }, - "onDragCapture": { + "aria-selected": { "defaultValue": null, - "description": "", - "name": "onDragCapture", + "description": "Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.", + "name": "aria-selected", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "Booleanish" } }, - "onDragEnd": { + "aria-setsize": { "defaultValue": null, - "description": "", - "name": "onDragEnd", + "description": "Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.", + "name": "aria-setsize", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "number" } }, - "onDragEndCapture": { + "aria-sort": { "defaultValue": null, - "description": "", - "name": "onDragEndCapture", + "description": "Indicates if items in a table or grid are sorted in ascending or descending order.", + "name": "aria-sort", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "\"none\" | \"ascending\" | \"descending\" | \"other\"" } }, - "onDragEnter": { + "aria-valuemax": { "defaultValue": null, - "description": "", - "name": "onDragEnter", + "description": "Defines the maximum allowed value for a range widget.", + "name": "aria-valuemax", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "number" } }, - "onDragEnterCapture": { + "aria-valuemin": { "defaultValue": null, - "description": "", - "name": "onDragEnterCapture", + "description": "Defines the minimum allowed value for a range widget.", + "name": "aria-valuemin", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "number" } }, - "onDragExit": { + "aria-valuenow": { "defaultValue": null, - "description": "", - "name": "onDragExit", + "description": "Defines the current value for a range widget.\n@see aria-valuetext.", + "name": "aria-valuenow", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "number" } }, - "onDragExitCapture": { + "aria-valuetext": { "defaultValue": null, - "description": "", - "name": "onDragExitCapture", + "description": "Defines the human readable text alternative of aria-valuenow for a range widget.", + "name": "aria-valuetext", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string" } }, - "onDragLeave": { + "dangerouslySetInnerHTML": { "defaultValue": null, "description": "", - "name": "onDragLeave", + "name": "dangerouslySetInnerHTML", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142168,13 +142236,13 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "{ __html: string | TrustedHTML; }" } }, - "onDragLeaveCapture": { + "onCopy": { "defaultValue": null, "description": "", - "name": "onDragLeaveCapture", + "name": "onCopy", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142187,13 +142255,13 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "ClipboardEventHandler" } }, - "onDragOver": { + "onCopyCapture": { "defaultValue": null, "description": "", - "name": "onDragOver", + "name": "onCopyCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142206,13 +142274,13 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "ClipboardEventHandler" } }, - "onDragOverCapture": { + "onCut": { "defaultValue": null, "description": "", - "name": "onDragOverCapture", + "name": "onCut", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142225,13 +142293,13 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "ClipboardEventHandler" } }, - "onDragStart": { + "onCutCapture": { "defaultValue": null, "description": "", - "name": "onDragStart", + "name": "onCutCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142244,13 +142312,13 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "ClipboardEventHandler" } }, - "onDragStartCapture": { + "onPaste": { "defaultValue": null, "description": "", - "name": "onDragStartCapture", + "name": "onPaste", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142263,13 +142331,13 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "ClipboardEventHandler" } }, - "onDrop": { + "onPasteCapture": { "defaultValue": null, "description": "", - "name": "onDrop", + "name": "onPasteCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142282,13 +142350,13 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "ClipboardEventHandler" } }, - "onDropCapture": { + "onCompositionEnd": { "defaultValue": null, "description": "", - "name": "onDropCapture", + "name": "onCompositionEnd", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142301,13 +142369,13 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "CompositionEventHandler" } }, - "onMouseDown": { + "onCompositionEndCapture": { "defaultValue": null, "description": "", - "name": "onMouseDown", + "name": "onCompositionEndCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142320,13 +142388,13 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "CompositionEventHandler" } }, - "onMouseDownCapture": { + "onCompositionStart": { "defaultValue": null, "description": "", - "name": "onMouseDownCapture", + "name": "onCompositionStart", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142339,13 +142407,13 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "CompositionEventHandler" } }, - "onMouseEnter": { + "onCompositionStartCapture": { "defaultValue": null, "description": "", - "name": "onMouseEnter", + "name": "onCompositionStartCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142358,13 +142426,13 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "CompositionEventHandler" } }, - "onMouseLeave": { + "onCompositionUpdate": { "defaultValue": null, "description": "", - "name": "onMouseLeave", + "name": "onCompositionUpdate", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142377,13 +142445,13 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "CompositionEventHandler" } }, - "onMouseMove": { + "onCompositionUpdateCapture": { "defaultValue": null, "description": "", - "name": "onMouseMove", + "name": "onCompositionUpdateCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142396,13 +142464,13 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "CompositionEventHandler" } }, - "onMouseMoveCapture": { + "onFocus": { "defaultValue": null, "description": "", - "name": "onMouseMoveCapture", + "name": "onFocus", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142415,13 +142483,13 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "FocusEventHandler" } }, - "onMouseOut": { + "onFocusCapture": { "defaultValue": null, "description": "", - "name": "onMouseOut", + "name": "onFocusCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142434,13 +142502,13 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "FocusEventHandler" } }, - "onMouseOutCapture": { + "onBlur": { "defaultValue": null, "description": "", - "name": "onMouseOutCapture", + "name": "onBlur", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142453,13 +142521,13 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "FocusEventHandler" } }, - "onMouseOver": { + "onBlurCapture": { "defaultValue": null, "description": "", - "name": "onMouseOver", + "name": "onBlurCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142472,13 +142540,13 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "FocusEventHandler" } }, - "onMouseOverCapture": { + "onChange": { "defaultValue": null, "description": "", - "name": "onMouseOverCapture", + "name": "onChange", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142491,13 +142559,13 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "FormEventHandler" } }, - "onMouseUp": { + "onChangeCapture": { "defaultValue": null, "description": "", - "name": "onMouseUp", + "name": "onChangeCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142510,13 +142578,13 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "FormEventHandler" } }, - "onMouseUpCapture": { + "onBeforeInput": { "defaultValue": null, "description": "", - "name": "onMouseUpCapture", + "name": "onBeforeInput", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142529,13 +142597,13 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "FormEventHandler" } }, - "onSelect": { + "onBeforeInputCapture": { "defaultValue": null, "description": "", - "name": "onSelect", + "name": "onBeforeInputCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142548,13 +142616,13 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "FormEventHandler" } }, - "onSelectCapture": { + "onInput": { "defaultValue": null, "description": "", - "name": "onSelectCapture", + "name": "onInput", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142567,13 +142635,13 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "FormEventHandler" } }, - "onTouchCancel": { + "onInputCapture": { "defaultValue": null, "description": "", - "name": "onTouchCancel", + "name": "onInputCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142586,13 +142654,13 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "FormEventHandler" } }, - "onTouchCancelCapture": { + "onReset": { "defaultValue": null, "description": "", - "name": "onTouchCancelCapture", + "name": "onReset", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142605,13 +142673,13 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "FormEventHandler" } }, - "onTouchEnd": { + "onResetCapture": { "defaultValue": null, "description": "", - "name": "onTouchEnd", + "name": "onResetCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142624,13 +142692,13 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "FormEventHandler" } }, - "onTouchEndCapture": { + "onSubmit": { "defaultValue": null, "description": "", - "name": "onTouchEndCapture", + "name": "onSubmit", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142643,13 +142711,13 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "FormEventHandler" } }, - "onTouchMove": { + "onSubmitCapture": { "defaultValue": null, "description": "", - "name": "onTouchMove", + "name": "onSubmitCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142662,13 +142730,13 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "FormEventHandler" } }, - "onTouchMoveCapture": { + "onInvalid": { "defaultValue": null, "description": "", - "name": "onTouchMoveCapture", + "name": "onInvalid", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142681,13 +142749,13 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "FormEventHandler" } }, - "onTouchStart": { + "onInvalidCapture": { "defaultValue": null, "description": "", - "name": "onTouchStart", + "name": "onInvalidCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142700,13 +142768,13 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "FormEventHandler" } }, - "onTouchStartCapture": { + "onLoad": { "defaultValue": null, "description": "", - "name": "onTouchStartCapture", + "name": "onLoad", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142719,13 +142787,13 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "ReactEventHandler" } }, - "onPointerDown": { + "onLoadCapture": { "defaultValue": null, "description": "", - "name": "onPointerDown", + "name": "onLoadCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142738,13 +142806,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "ReactEventHandler" } }, - "onPointerDownCapture": { + "onError": { "defaultValue": null, "description": "", - "name": "onPointerDownCapture", + "name": "onError", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142757,13 +142825,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "ReactEventHandler" } }, - "onPointerMove": { + "onErrorCapture": { "defaultValue": null, "description": "", - "name": "onPointerMove", + "name": "onErrorCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142776,13 +142844,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "ReactEventHandler" } }, - "onPointerMoveCapture": { + "onKeyDown": { "defaultValue": null, "description": "", - "name": "onPointerMoveCapture", + "name": "onKeyDown", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142795,13 +142863,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "KeyboardEventHandler" } }, - "onPointerUp": { + "onKeyDownCapture": { "defaultValue": null, "description": "", - "name": "onPointerUp", + "name": "onKeyDownCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142814,13 +142882,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "KeyboardEventHandler" } }, - "onPointerUpCapture": { + "onKeyPress": { "defaultValue": null, - "description": "", - "name": "onPointerUpCapture", + "description": "@deprecated", + "name": "onKeyPress", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142833,13 +142901,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "KeyboardEventHandler" } }, - "onPointerCancel": { + "onKeyPressCapture": { "defaultValue": null, - "description": "", - "name": "onPointerCancel", + "description": "@deprecated", + "name": "onKeyPressCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142852,13 +142920,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "KeyboardEventHandler" } }, - "onPointerCancelCapture": { + "onKeyUp": { "defaultValue": null, "description": "", - "name": "onPointerCancelCapture", + "name": "onKeyUp", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142871,13 +142939,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "KeyboardEventHandler" } }, - "onPointerEnter": { + "onKeyUpCapture": { "defaultValue": null, "description": "", - "name": "onPointerEnter", + "name": "onKeyUpCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142890,13 +142958,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "KeyboardEventHandler" } }, - "onPointerLeave": { + "onAbort": { "defaultValue": null, "description": "", - "name": "onPointerLeave", + "name": "onAbort", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142909,13 +142977,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "ReactEventHandler" } }, - "onPointerOver": { + "onAbortCapture": { "defaultValue": null, "description": "", - "name": "onPointerOver", + "name": "onAbortCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142928,13 +142996,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "ReactEventHandler" } }, - "onPointerOverCapture": { + "onCanPlay": { "defaultValue": null, "description": "", - "name": "onPointerOverCapture", + "name": "onCanPlay", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142947,13 +143015,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "ReactEventHandler" } }, - "onPointerOut": { + "onCanPlayCapture": { "defaultValue": null, "description": "", - "name": "onPointerOut", + "name": "onCanPlayCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142966,13 +143034,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "ReactEventHandler" } }, - "onPointerOutCapture": { + "onCanPlayThrough": { "defaultValue": null, "description": "", - "name": "onPointerOutCapture", + "name": "onCanPlayThrough", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -142985,13 +143053,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "ReactEventHandler" } }, - "onGotPointerCapture": { + "onCanPlayThroughCapture": { "defaultValue": null, "description": "", - "name": "onGotPointerCapture", + "name": "onCanPlayThroughCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -143004,13 +143072,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "ReactEventHandler" } }, - "onGotPointerCaptureCapture": { + "onDurationChange": { "defaultValue": null, "description": "", - "name": "onGotPointerCaptureCapture", + "name": "onDurationChange", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -143023,13 +143091,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "ReactEventHandler" } }, - "onLostPointerCapture": { + "onDurationChangeCapture": { "defaultValue": null, "description": "", - "name": "onLostPointerCapture", + "name": "onDurationChangeCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -143042,13 +143110,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "ReactEventHandler" } }, - "onLostPointerCaptureCapture": { + "onEmptied": { "defaultValue": null, "description": "", - "name": "onLostPointerCaptureCapture", + "name": "onEmptied", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -143061,13 +143129,13 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "ReactEventHandler" } }, - "onScroll": { + "onEmptiedCapture": { "defaultValue": null, "description": "", - "name": "onScroll", + "name": "onEmptiedCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -143080,13 +143148,13 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "ReactEventHandler" } }, - "onScrollCapture": { + "onEncrypted": { "defaultValue": null, "description": "", - "name": "onScrollCapture", + "name": "onEncrypted", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -143099,13 +143167,13 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "ReactEventHandler" } }, - "onWheel": { + "onEncryptedCapture": { "defaultValue": null, "description": "", - "name": "onWheel", + "name": "onEncryptedCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -143118,13 +143186,13 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "ReactEventHandler" } }, - "onWheelCapture": { + "onEnded": { "defaultValue": null, "description": "", - "name": "onWheelCapture", + "name": "onEnded", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -143137,13 +143205,13 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "ReactEventHandler" } }, - "onAnimationStart": { + "onEndedCapture": { "defaultValue": null, "description": "", - "name": "onAnimationStart", + "name": "onEndedCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -143156,13 +143224,13 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "ReactEventHandler" } }, - "onAnimationStartCapture": { + "onLoadedData": { "defaultValue": null, "description": "", - "name": "onAnimationStartCapture", + "name": "onLoadedData", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -143175,13 +143243,13 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "ReactEventHandler" } }, - "onAnimationEnd": { + "onLoadedDataCapture": { "defaultValue": null, "description": "", - "name": "onAnimationEnd", + "name": "onLoadedDataCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -143194,13 +143262,13 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "ReactEventHandler" } }, - "onAnimationEndCapture": { + "onLoadedMetadata": { "defaultValue": null, "description": "", - "name": "onAnimationEndCapture", + "name": "onLoadedMetadata", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -143213,13 +143281,13 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "ReactEventHandler" } }, - "onAnimationIteration": { + "onLoadedMetadataCapture": { "defaultValue": null, "description": "", - "name": "onAnimationIteration", + "name": "onLoadedMetadataCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -143232,13 +143300,13 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "ReactEventHandler" } }, - "onAnimationIterationCapture": { + "onLoadStart": { "defaultValue": null, "description": "", - "name": "onAnimationIterationCapture", + "name": "onLoadStart", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -143251,13 +143319,13 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "ReactEventHandler" } }, - "onTransitionEnd": { + "onLoadStartCapture": { "defaultValue": null, "description": "", - "name": "onTransitionEnd", + "name": "onLoadStartCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -143270,13 +143338,13 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" + "name": "ReactEventHandler" } }, - "onTransitionEndCapture": { + "onPause": { "defaultValue": null, "description": "", - "name": "onTransitionEndCapture", + "name": "onPause", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", "name": "DOMAttributes" @@ -143289,1496 +143357,2027 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" + "name": "ReactEventHandler" } - } - }, - "SectionMessageContent.tsx": {}, - "SectionMessageTitle.tsx": {}, - "Select.tsx": { - "label": { + }, + "onPauseCapture": { "defaultValue": null, "description": "", - "name": "label", + "name": "onPauseCapture", "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "ReactEventHandler" } }, - "description": { + "onPlay": { "defaultValue": null, "description": "", - "name": "description", + "name": "onPlay", "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "ReactEventHandler" } }, - "errorMessage": { + "onPlayCapture": { "defaultValue": null, "description": "", - "name": "errorMessage", + "name": "onPlayCapture", "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string | ((validation: ValidationResult) => string)" + "name": "ReactEventHandler" } }, - "items": { + "onPlaying": { "defaultValue": null, "description": "", - "name": "items", + "name": "onPlaying", "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Iterable" + "name": "ReactEventHandler" } }, - "width": { + "onPlayingCapture": { "defaultValue": null, "description": "", - "name": "width", + "name": "onPlayingCapture", "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "0 | \"auto\" | \"full\" | \"fit\" | \"min\" | \"max\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." + "name": "ReactEventHandler" } }, - "required": { + "onProgress": { "defaultValue": null, "description": "", - "name": "required", + "name": "onProgress", "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "ReactEventHandler" } }, - "disabled": { + "onProgressCapture": { "defaultValue": null, "description": "", - "name": "disabled", + "name": "onProgressCapture", "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "ReactEventHandler" } }, - "open": { + "onRateChange": { "defaultValue": null, "description": "", - "name": "open", + "name": "onRateChange", "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "ReactEventHandler" } }, - "error": { + "onRateChangeCapture": { "defaultValue": null, "description": "", - "name": "error", + "name": "onRateChangeCapture", "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "ReactEventHandler" } }, - "onChange": { + "onResize": { "defaultValue": null, "description": "", - "name": "onChange", + "name": "onResize", "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "((key: Key) => void)" + "name": "ReactEventHandler" } }, - "validationBehavior": { - "defaultValue": { - "value": "'native'" - }, - "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.", - "name": "validationBehavior", + "onResizeCapture": { + "defaultValue": null, + "description": "", + "name": "onResizeCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RACValidation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RACValidation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "\"native\" | \"aria\"" + "name": "ReactEventHandler" } }, - "selectedKey": { + "onSeeked": { "defaultValue": null, - "description": "The currently selected key in the collection (controlled).", - "name": "selectedKey", + "description": "", + "name": "onSeeked", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", - "name": "SingleSelection" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", - "name": "SingleSelection" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Key | null" + "name": "ReactEventHandler" } }, - "defaultSelectedKey": { + "onSeekedCapture": { "defaultValue": null, - "description": "The initial selected key in the collection (uncontrolled).", - "name": "defaultSelectedKey", + "description": "", + "name": "onSeekedCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", - "name": "SingleSelection" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/selection.d.ts", - "name": "SingleSelection" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Key" + "name": "ReactEventHandler" } }, - "autoComplete": { + "onSeeking": { "defaultValue": null, - "description": "Describes the type of autocomplete functionality the input should provide if any. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautocomplete).", - "name": "autoComplete", + "description": "", + "name": "onSeeking", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", - "name": "AriaSelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", - "name": "AriaSelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "ReactEventHandler" } }, - "name": { + "onSeekingCapture": { "defaultValue": null, - "description": "The name of the input, used when submitting an HTML form.", - "name": "name", + "description": "", + "name": "onSeekingCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", - "name": "AriaSelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", - "name": "AriaSelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "ReactEventHandler" } }, - "defaultOpen": { + "onStalled": { "defaultValue": null, - "description": "Sets the default open state of the menu.", - "name": "defaultOpen", + "description": "", + "name": "onStalled", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "ReactEventHandler" } }, - "onOpenChange": { + "onStalledCapture": { "defaultValue": null, - "description": "Method that is called when the open state of the menu changes.", - "name": "onOpenChange", + "description": "", + "name": "onStalledCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", - "name": "SelectProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "((isOpen: boolean) => void)" + "name": "ReactEventHandler" } }, - "disabledKeys": { + "onSuspend": { "defaultValue": null, - "description": "The item keys that are disabled. These items cannot be selected, focused, or otherwise interacted with.", - "name": "disabledKeys", + "description": "", + "name": "onSuspend", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/collections.d.ts", - "name": "CollectionBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/collections.d.ts", - "name": "CollectionBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Iterable" + "name": "ReactEventHandler" } }, - "validate": { + "onSuspendCapture": { "defaultValue": null, - "description": "A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.", - "name": "validate", + "description": "", + "name": "onSuspendCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "Validation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "Validation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "((value: Key) => true | ValidationError | null)" + "name": "ReactEventHandler" } }, - "placeholder": { + "onTimeUpdate": { "defaultValue": null, - "description": "Temporary text that occupies the text input when it is empty.", - "name": "placeholder", + "description": "", + "name": "onTimeUpdate", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "TextInputBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "TextInputBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "ReactEventHandler" } }, - "autoFocus": { + "onTimeUpdateCapture": { "defaultValue": null, - "description": "Whether the element should receive focus on render.", - "name": "autoFocus", + "description": "", + "name": "onTimeUpdateCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusableProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusableProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "ReactEventHandler" } }, - "onFocus": { + "onVolumeChange": { "defaultValue": null, - "description": "Handler that is called when the element receives focus.", - "name": "onFocus", + "description": "", + "name": "onVolumeChange", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "((e: FocusEvent) => void)" + "name": "ReactEventHandler" } }, - "onBlur": { + "onVolumeChangeCapture": { "defaultValue": null, - "description": "Handler that is called when the element loses focus.", - "name": "onBlur", + "description": "", + "name": "onVolumeChangeCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "((e: FocusEvent) => void)" + "name": "ReactEventHandler" } }, - "onFocusChange": { + "onWaiting": { "defaultValue": null, - "description": "Handler that is called when the element's focus status changes.", - "name": "onFocusChange", + "description": "", + "name": "onWaiting", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "((isFocused: boolean) => void)" + "name": "ReactEventHandler" } }, - "onKeyDown": { + "onWaitingCapture": { "defaultValue": null, - "description": "Handler that is called when a key is pressed.", - "name": "onKeyDown", + "description": "", + "name": "onWaitingCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "((e: KeyboardEvent) => void)" + "name": "ReactEventHandler" } }, - "onKeyUp": { + "onAuxClick": { "defaultValue": null, - "description": "Handler that is called when a key is released.", - "name": "onKeyUp", + "description": "", + "name": "onAuxClick", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "((e: KeyboardEvent) => void)" + "name": "MouseEventHandler" } }, - "id": { + "onAuxClickCapture": { "defaultValue": null, - "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", - "name": "id", + "description": "", + "name": "onAuxClickCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "MouseEventHandler" } }, - "aria-label": { + "onClick": { "defaultValue": null, - "description": "Defines a string value that labels the current element.", - "name": "aria-label", + "description": "", + "name": "onClick", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "MouseEventHandler" } }, - "aria-labelledby": { + "onClickCapture": { "defaultValue": null, - "description": "Identifies the element (or elements) that labels the current element.", - "name": "aria-labelledby", + "description": "", + "name": "onClickCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "MouseEventHandler" } }, - "aria-describedby": { + "onContextMenu": { "defaultValue": null, - "description": "Identifies the element (or elements) that describes the object.", - "name": "aria-describedby", + "description": "", + "name": "onContextMenu", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "MouseEventHandler" } }, - "aria-details": { + "onContextMenuCapture": { "defaultValue": null, - "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", - "name": "aria-details", + "description": "", + "name": "onContextMenuCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "MouseEventHandler" } }, - "excludeFromTabOrder": { + "onDoubleClick": { "defaultValue": null, - "description": "Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.", - "name": "excludeFromTabOrder", + "description": "", + "name": "onDoubleClick", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "FocusableDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "FocusableDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "MouseEventHandler" } }, - "slot": { + "onDoubleClickCapture": { "defaultValue": null, - "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", - "name": "slot", + "description": "", + "name": "onDoubleClickCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string | null" + "name": "MouseEventHandler" } }, - "ref": { + "onDrag": { "defaultValue": null, - "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", - "name": "ref", + "description": "", + "name": "onDrag", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "LegacyRef" + "name": "DragEventHandler" } }, - "key": { + "onDragCapture": { "defaultValue": null, "description": "", - "name": "key", + "name": "onDragCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Key | null" + "name": "DragEventHandler" } - } - }, - "SelectListItem.tsx": { - "children": { + }, + "onDragEnd": { "defaultValue": null, - "description": "The children of the component. A function may be provided to alter the children based on component state.", - "name": "children", + "description": "", + "name": "onDragEnd", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RenderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RenderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "ReactNode | ((values: GridListItemRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" + "name": "DragEventHandler" } }, - "id": { + "onDragEndCapture": { "defaultValue": null, - "description": "The unique id of the item.", - "name": "id", + "description": "", + "name": "onDragEndCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "GridListItemProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "GridListItemProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Key" + "name": "DragEventHandler" } }, - "value": { + "onDragEnter": { "defaultValue": null, - "description": "The object value that this item represents. When using dynamic collections, this is set automatically.", - "name": "value", + "description": "", + "name": "onDragEnter", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "GridListItemProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "GridListItemProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "object" + "name": "DragEventHandler" } }, - "textValue": { + "onDragEnterCapture": { "defaultValue": null, - "description": "A string representation of the item's contents, used for features like typeahead.", - "name": "textValue", + "description": "", + "name": "onDragEnterCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "GridListItemProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "GridListItemProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "DragEventHandler" } }, - "isDisabled": { + "onDragExit": { "defaultValue": null, - "description": "Whether the item is disabled.", - "name": "isDisabled", + "description": "", + "name": "onDragExit", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "GridListItemProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "GridListItemProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "DragEventHandler" } }, - "onAction": { + "onDragExitCapture": { "defaultValue": null, - "description": "Handler that is called when a user performs an action on the item. The exact user event depends on\nthe collection's `selectionBehavior` prop and the interaction modality.", - "name": "onAction", + "description": "", + "name": "onDragExitCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "GridListItemProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "GridListItemProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "(() => void)" + "name": "DragEventHandler" } }, - "href": { + "onDragLeave": { "defaultValue": null, - "description": "A URL to link to. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#href).", - "name": "href", + "description": "", + "name": "onDragLeave", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "DragEventHandler" } }, - "hrefLang": { + "onDragLeaveCapture": { "defaultValue": null, - "description": "Hints at the human language of the linked URL. See[MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#hreflang).", - "name": "hrefLang", + "description": "", + "name": "onDragLeaveCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "DragEventHandler" } }, - "target": { + "onDragOver": { "defaultValue": null, - "description": "The target window for the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target).", - "name": "target", + "description": "", + "name": "onDragOver", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "HTMLAttributeAnchorTarget" + "name": "DragEventHandler" } }, - "rel": { + "onDragOverCapture": { "defaultValue": null, - "description": "The relationship between the linked resource and the current page. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).", - "name": "rel", + "description": "", + "name": "onDragOverCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "DragEventHandler" } }, - "download": { + "onDragStart": { "defaultValue": null, - "description": "Causes the browser to download the linked URL. A string may be provided to suggest a file name. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#download).", - "name": "download", + "description": "", + "name": "onDragStart", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string | boolean" + "name": "DragEventHandler" } }, - "ping": { + "onDragStartCapture": { "defaultValue": null, - "description": "A space-separated list of URLs to ping when the link is followed. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#ping).", - "name": "ping", + "description": "", + "name": "onDragStartCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "DragEventHandler" } }, - "referrerPolicy": { + "onDrop": { "defaultValue": null, - "description": "How much of the referrer to send when following the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#referrerpolicy).", - "name": "referrerPolicy", + "description": "", + "name": "onDrop", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "HTMLAttributeReferrerPolicy" + "name": "DragEventHandler" } }, - "routerOptions": { + "onDropCapture": { "defaultValue": null, - "description": "Options for the configured client side router.", - "name": "routerOptions", + "description": "", + "name": "onDropCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "LinkDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "undefined" + "name": "DragEventHandler" } }, - "onHoverStart": { + "onMouseDown": { "defaultValue": null, - "description": "Handler that is called when a hover interaction starts.", - "name": "onHoverStart", + "description": "", + "name": "onMouseDown", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "((e: HoverEvent) => void)" + "name": "MouseEventHandler" } }, - "onHoverEnd": { + "onMouseDownCapture": { "defaultValue": null, - "description": "Handler that is called when a hover interaction ends.", - "name": "onHoverEnd", + "description": "", + "name": "onMouseDownCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "((e: HoverEvent) => void)" + "name": "MouseEventHandler" } }, - "onHoverChange": { + "onMouseEnter": { "defaultValue": null, - "description": "Handler that is called when the hover state changes.", - "name": "onHoverChange", + "description": "", + "name": "onMouseEnter", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "((isHovering: boolean) => void)" + "name": "MouseEventHandler" } }, - "ref": { + "onMouseLeave": { "defaultValue": null, - "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", - "name": "ref", + "description": "", + "name": "onMouseLeave", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "LegacyRef" + "name": "MouseEventHandler" } }, - "key": { + "onMouseMove": { "defaultValue": null, "description": "", - "name": "key", + "name": "onMouseMove", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Key | null" + "name": "MouseEventHandler" } - } - }, - "Slider.tsx": { - "thumbLabels": { + }, + "onMouseMoveCapture": { "defaultValue": null, - "description": "Labels for the thumbs in the slider.", - "name": "thumbLabels", + "description": "", + "name": "onMouseMoveCapture", "parent": { - "fileName": "marigold/packages/components/src/Slider/Slider.tsx", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Slider/Slider.tsx", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string[]" + "name": "MouseEventHandler" } }, - "width": { - "defaultValue": { - "value": "full" - }, - "description": "Sets the width of the field. You can see allowed tokens here: https://tailwindcss.com/docs/width", - "name": "width", + "onMouseOut": { + "defaultValue": null, + "description": "", + "name": "onMouseOut", "parent": { - "fileName": "marigold/packages/components/src/Slider/Slider.tsx", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Slider/Slider.tsx", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "0 | \"auto\" | \"full\" | \"fit\" | \"min\" | \"max\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." + "name": "MouseEventHandler" } }, - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the input is disabled.", - "name": "disabled", + "onMouseOutCapture": { + "defaultValue": null, + "description": "", + "name": "onMouseOutCapture", "parent": { - "fileName": "marigold/packages/components/src/Slider/Slider.tsx", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Slider/Slider.tsx", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "MouseEventHandler" } }, - "orientation": { - "defaultValue": { - "value": "'horizontal'" - }, - "description": "The orientation of the Slider.", - "name": "orientation", + "onMouseOver": { + "defaultValue": null, + "description": "", + "name": "onMouseOver", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Orientation" + "name": "MouseEventHandler" } }, - "onChangeEnd": { + "onMouseOverCapture": { "defaultValue": null, - "description": "Fired when the slider stops moving, due to being let go.", - "name": "onChangeEnd", + "description": "", + "name": "onMouseOverCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "((value: number | number[]) => void)" + "name": "MouseEventHandler" } }, - "minValue": { - "defaultValue": { - "value": "0" - }, - "description": "The slider's minimum value.", - "name": "minValue", + "onMouseUp": { + "defaultValue": null, + "description": "", + "name": "onMouseUp", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "number" + "name": "MouseEventHandler" } }, - "maxValue": { - "defaultValue": { - "value": "100" - }, - "description": "The slider's maximum value.", - "name": "maxValue", + "onMouseUpCapture": { + "defaultValue": null, + "description": "", + "name": "onMouseUpCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "number" + "name": "MouseEventHandler" } }, - "step": { - "defaultValue": { - "value": "1" - }, - "description": "The slider's step value.", - "name": "step", + "onSelect": { + "defaultValue": null, + "description": "", + "name": "onSelect", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+slider@3.7.3_react@18.3.1/node_modules/@react-types/slider/src/index.d.ts", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "number" + "name": "ReactEventHandler" } }, - "value": { + "onSelectCapture": { "defaultValue": null, - "description": "The current value (controlled).", - "name": "value", + "description": "", + "name": "onSelectCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "ValueBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "ValueBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "number | number[]" + "name": "ReactEventHandler" } }, - "defaultValue": { + "onTouchCancel": { "defaultValue": null, - "description": "The default value (uncontrolled).", - "name": "defaultValue", + "description": "", + "name": "onTouchCancel", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "ValueBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "ValueBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "number | number[]" + "name": "TouchEventHandler" } }, - "onChange": { + "onTouchCancelCapture": { "defaultValue": null, - "description": "Handler that is called when the value changes.", - "name": "onChange", + "description": "", + "name": "onTouchCancelCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "ValueBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "ValueBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "((value: number | number[]) => void)" + "name": "TouchEventHandler" } }, - "id": { + "onTouchEnd": { "defaultValue": null, - "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", - "name": "id", + "description": "", + "name": "onTouchEnd", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "TouchEventHandler" } }, - "aria-label": { + "onTouchEndCapture": { "defaultValue": null, - "description": "Defines a string value that labels the current element.", - "name": "aria-label", + "description": "", + "name": "onTouchEndCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "TouchEventHandler" } }, - "aria-labelledby": { + "onTouchMove": { "defaultValue": null, - "description": "Identifies the element (or elements) that labels the current element.", - "name": "aria-labelledby", + "description": "", + "name": "onTouchMove", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "TouchEventHandler" } }, - "aria-describedby": { + "onTouchMoveCapture": { "defaultValue": null, - "description": "Identifies the element (or elements) that describes the object.", - "name": "aria-describedby", + "description": "", + "name": "onTouchMoveCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "TouchEventHandler" } }, - "aria-details": { + "onTouchStart": { "defaultValue": null, - "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", - "name": "aria-details", + "description": "", + "name": "onTouchStart", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "TouchEventHandler" } }, - "formatOptions": { + "onTouchStartCapture": { "defaultValue": null, - "description": "The display format of the value label.", - "name": "formatOptions", + "description": "", + "name": "onTouchStartCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SliderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "NumberFormatOptions" + "name": "TouchEventHandler" } }, - "children": { + "onPointerDown": { "defaultValue": null, - "description": "The children of the component. A function may be provided to alter the children based on component state.", - "name": "children", + "description": "", + "name": "onPointerDown", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RenderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RenderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "ReactNode | ((values: SliderRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" + "name": "PointerEventHandler" } }, - "className": { + "onPointerDownCapture": { "defaultValue": null, - "description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.", - "name": "className", + "description": "", + "name": "onPointerDownCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "StyleRenderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "StyleRenderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string | ((values: SliderRenderProps & { defaultClassName: string; }) => string)" + "name": "PointerEventHandler" } }, - "style": { + "onPointerMove": { "defaultValue": null, - "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.", - "name": "style", + "description": "", + "name": "onPointerMove", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "StyleRenderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "StyleRenderProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "CSSProperties | ((values: SliderRenderProps & { defaultStyle: CSSProperties; }) => CSSProperties)" + "name": "PointerEventHandler" } }, - "slot": { + "onPointerMoveCapture": { "defaultValue": null, - "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", - "name": "slot", + "description": "", + "name": "onPointerMoveCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string | null" + "name": "PointerEventHandler" } }, - "ref": { + "onPointerUp": { "defaultValue": null, - "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", - "name": "ref", + "description": "", + "name": "onPointerUp", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "LegacyRef" + "name": "PointerEventHandler" } }, - "key": { + "onPointerUpCapture": { "defaultValue": null, "description": "", - "name": "key", + "name": "onPointerUpCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Key | null" + "name": "PointerEventHandler" + } + }, + "onPointerCancel": { + "defaultValue": null, + "description": "", + "name": "onPointerCancel", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerCancelCapture": { + "defaultValue": null, + "description": "", + "name": "onPointerCancelCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerEnter": { + "defaultValue": null, + "description": "", + "name": "onPointerEnter", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerLeave": { + "defaultValue": null, + "description": "", + "name": "onPointerLeave", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerOver": { + "defaultValue": null, + "description": "", + "name": "onPointerOver", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerOverCapture": { + "defaultValue": null, + "description": "", + "name": "onPointerOverCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerOut": { + "defaultValue": null, + "description": "", + "name": "onPointerOut", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerOutCapture": { + "defaultValue": null, + "description": "", + "name": "onPointerOutCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onGotPointerCapture": { + "defaultValue": null, + "description": "", + "name": "onGotPointerCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onGotPointerCaptureCapture": { + "defaultValue": null, + "description": "", + "name": "onGotPointerCaptureCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onLostPointerCapture": { + "defaultValue": null, + "description": "", + "name": "onLostPointerCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onLostPointerCaptureCapture": { + "defaultValue": null, + "description": "", + "name": "onLostPointerCaptureCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onScroll": { + "defaultValue": null, + "description": "", + "name": "onScroll", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "UIEventHandler" + } + }, + "onScrollCapture": { + "defaultValue": null, + "description": "", + "name": "onScrollCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "UIEventHandler" + } + }, + "onWheel": { + "defaultValue": null, + "description": "", + "name": "onWheel", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "WheelEventHandler" + } + }, + "onWheelCapture": { + "defaultValue": null, + "description": "", + "name": "onWheelCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "WheelEventHandler" + } + }, + "onAnimationStart": { + "defaultValue": null, + "description": "", + "name": "onAnimationStart", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "AnimationEventHandler" + } + }, + "onAnimationStartCapture": { + "defaultValue": null, + "description": "", + "name": "onAnimationStartCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "AnimationEventHandler" + } + }, + "onAnimationEnd": { + "defaultValue": null, + "description": "", + "name": "onAnimationEnd", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "AnimationEventHandler" + } + }, + "onAnimationEndCapture": { + "defaultValue": null, + "description": "", + "name": "onAnimationEndCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "AnimationEventHandler" + } + }, + "onAnimationIteration": { + "defaultValue": null, + "description": "", + "name": "onAnimationIteration", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "AnimationEventHandler" + } + }, + "onAnimationIterationCapture": { + "defaultValue": null, + "description": "", + "name": "onAnimationIterationCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "AnimationEventHandler" + } + }, + "onTransitionEnd": { + "defaultValue": null, + "description": "", + "name": "onTransitionEnd", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "TransitionEventHandler" + } + }, + "onTransitionEndCapture": { + "defaultValue": null, + "description": "", + "name": "onTransitionEndCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "TransitionEventHandler" } } }, - "Split.tsx": { + "Stack.tsx": { + "stretch": { + "defaultValue": { + "value": false + }, + "description": "Stretch to fill space (vertical AND horizontal, useful if you want to change y alignment).", + "name": "stretch", + "parent": { + "fileName": "marigold/packages/components/src/Stack/Stack.tsx", + "name": "StackProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Stack/Stack.tsx", + "name": "StackProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "alignX": { + "defaultValue": { + "value": "none" + }, + "description": "Horizontal alignment for the children.", + "name": "alignX", + "parent": { + "fileName": "marigold/packages/components/src/Stack/Stack.tsx", + "name": "StackProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Stack/Stack.tsx", + "name": "StackProps" + } + ], + "required": false, + "type": { + "name": "\"none\" | \"left\" | \"center\" | \"right\"" + } + }, + "alignY": { + "defaultValue": { + "value": "none" + }, + "description": "Vertical alignment for the children.", + "name": "alignY", + "parent": { + "fileName": "marigold/packages/components/src/Stack/Stack.tsx", + "name": "StackProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Stack/Stack.tsx", + "name": "StackProps" + } + ], + "required": false, + "type": { + "name": "\"none\" | \"center\" | \"top\" | \"bottom\"" + } + }, + "orientation": { + "defaultValue": null, + "description": "", + "name": "orientation", + "declarations": [ + { + "fileName": "marigold/packages/system/src/style-props.tsx", + "name": "TypeLiteral" + } + ], + "required": false, + "type": { + "name": "{ vertical?: { alignY?: \"none\" | \"center\" | \"top\" | \"bottom\"; alignX?: \"none\" | \"left\" | \"center\" | \"right\"; } | undefined; horizontal?: { alignX?: \"none\" | \"left\" | \"center\" | \"right\" | undefined; alignY?: \"none\" | ... 3 more ... | undefined; } | undefined; } | undefined" + } + }, + "space": { + "defaultValue": { + "value": 0 + }, + "description": "The space between the children.", + "name": "space", + "declarations": [ + { + "fileName": "marigold/packages/system/src/style-props.tsx", + "name": "TypeLiteral" + } + ], + "required": false, + "type": { + "name": "0 | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96" + } + } + }, + "SectionMessage.tsx": { "slot": { "defaultValue": null, "description": "", @@ -149739,664 +150338,8 @@ } } }, - "Stack.tsx": { - "stretch": { - "defaultValue": { - "value": false - }, - "description": "Stretch to fill space (vertical AND horizontal, useful if you want to change y alignment).", - "name": "stretch", - "parent": { - "fileName": "marigold/packages/components/src/Stack/Stack.tsx", - "name": "StackProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Stack/Stack.tsx", - "name": "StackProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "alignX": { - "defaultValue": { - "value": "none" - }, - "description": "Horizontal alignment for the children.", - "name": "alignX", - "parent": { - "fileName": "marigold/packages/components/src/Stack/Stack.tsx", - "name": "StackProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Stack/Stack.tsx", - "name": "StackProps" - } - ], - "required": false, - "type": { - "name": "\"none\" | \"left\" | \"center\" | \"right\"" - } - }, - "alignY": { - "defaultValue": { - "value": "none" - }, - "description": "Vertical alignment for the children.", - "name": "alignY", - "parent": { - "fileName": "marigold/packages/components/src/Stack/Stack.tsx", - "name": "StackProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Stack/Stack.tsx", - "name": "StackProps" - } - ], - "required": false, - "type": { - "name": "\"none\" | \"center\" | \"top\" | \"bottom\"" - } - }, - "orientation": { - "defaultValue": null, - "description": "", - "name": "orientation", - "declarations": [ - { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" - } - ], - "required": false, - "type": { - "name": "{ vertical?: { alignY?: \"none\" | \"center\" | \"top\" | \"bottom\"; alignX?: \"none\" | \"left\" | \"center\" | \"right\"; } | undefined; horizontal?: { alignX?: \"none\" | \"left\" | \"center\" | \"right\" | undefined; alignY?: \"none\" | ... 3 more ... | undefined; } | undefined; } | undefined" - } - }, - "space": { - "defaultValue": { - "value": 0 - }, - "description": "The space between the children.", - "name": "space", - "declarations": [ - { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" - } - ], - "required": false, - "type": { - "name": "0 | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96" - } - } - }, - "Switch.tsx": { - "width": { - "defaultValue": { - "value": "full" - }, - "description": "Sets the width of the field. You can see allowed tokens here: https://tailwindcss.com/docs/width", - "name": "width", - "parent": { - "fileName": "marigold/packages/components/src/Switch/Switch.tsx", - "name": "SwitchProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Switch/Switch.tsx", - "name": "SwitchProps" - } - ], - "required": false, - "type": { - "name": "0 | \"auto\" | \"full\" | \"fit\" | \"min\" | \"max\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." - } - }, - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "Disables the switch.", - "name": "disabled", - "parent": { - "fileName": "marigold/packages/components/src/Switch/Switch.tsx", - "name": "SwitchProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Switch/Switch.tsx", - "name": "SwitchProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "readOnly": { - "defaultValue": { - "value": "false" - }, - "description": "Set the switch to read-only.", - "name": "readOnly", - "parent": { - "fileName": "marigold/packages/components/src/Switch/Switch.tsx", - "name": "SwitchProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Switch/Switch.tsx", - "name": "SwitchProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "selected": { - "defaultValue": { - "value": "false" - }, - "description": "With this prop you can set the switch selected.", - "name": "selected", - "parent": { - "fileName": "marigold/packages/components/src/Switch/Switch.tsx", - "name": "SwitchProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Switch/Switch.tsx", - "name": "SwitchProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "defaultSelected": { - "defaultValue": null, - "description": "Whether the Switch should be selected (uncontrolled).", - "name": "defaultSelected", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+switch@3.5.3_react@18.3.1/node_modules/@react-types/switch/src/index.d.ts", - "name": "SwitchBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+switch@3.5.3_react@18.3.1/node_modules/@react-types/switch/src/index.d.ts", - "name": "SwitchBase" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "onChange": { - "defaultValue": null, - "description": "Handler that is called when the Switch's selection state changes.", - "name": "onChange", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+switch@3.5.3_react@18.3.1/node_modules/@react-types/switch/src/index.d.ts", - "name": "SwitchBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+switch@3.5.3_react@18.3.1/node_modules/@react-types/switch/src/index.d.ts", - "name": "SwitchBase" - } - ], - "required": false, - "type": { - "name": "((isSelected: boolean) => void)" - } - }, - "value": { - "defaultValue": null, - "description": "The value of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefvalue).", - "name": "value", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+switch@3.5.3_react@18.3.1/node_modules/@react-types/switch/src/index.d.ts", - "name": "SwitchBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+switch@3.5.3_react@18.3.1/node_modules/@react-types/switch/src/index.d.ts", - "name": "SwitchBase" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "autoFocus": { - "defaultValue": null, - "description": "Whether the element should receive focus on render.", - "name": "autoFocus", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusableProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusableProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "onFocus": { - "defaultValue": null, - "description": "Handler that is called when the element receives focus.", - "name": "onFocus", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - } - ], - "required": false, - "type": { - "name": "((e: FocusEvent) => void)" - } - }, - "onBlur": { - "defaultValue": null, - "description": "Handler that is called when the element loses focus.", - "name": "onBlur", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - } - ], - "required": false, - "type": { - "name": "((e: FocusEvent) => void)" - } - }, - "onFocusChange": { - "defaultValue": null, - "description": "Handler that is called when the element's focus status changes.", - "name": "onFocusChange", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" - } - ], - "required": false, - "type": { - "name": "((isFocused: boolean) => void)" - } - }, - "onKeyDown": { - "defaultValue": null, - "description": "Handler that is called when a key is pressed.", - "name": "onKeyDown", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" - } - ], - "required": false, - "type": { - "name": "((e: KeyboardEvent) => void)" - } - }, - "onKeyUp": { - "defaultValue": null, - "description": "Handler that is called when a key is released.", - "name": "onKeyUp", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" - } - ], - "required": false, - "type": { - "name": "((e: KeyboardEvent) => void)" - } - }, - "aria-controls": { - "defaultValue": null, - "description": "Identifies the element (or elements) whose contents or presence are controlled by the current element.", - "name": "aria-controls", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+switch@3.5.3_react@18.3.1/node_modules/@react-types/switch/src/index.d.ts", - "name": "AriaSwitchBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+switch@3.5.3_react@18.3.1/node_modules/@react-types/switch/src/index.d.ts", - "name": "AriaSwitchBase" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "excludeFromTabOrder": { - "defaultValue": null, - "description": "Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.", - "name": "excludeFromTabOrder", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "FocusableDOMProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "FocusableDOMProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "id": { - "defaultValue": null, - "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", - "name": "id", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "name": { - "defaultValue": null, - "description": "The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).", - "name": "name", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "InputDOMProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "InputDOMProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-label": { - "defaultValue": null, - "description": "Defines a string value that labels the current element.", - "name": "aria-label", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-labelledby": { - "defaultValue": null, - "description": "Identifies the element (or elements) that labels the current element.", - "name": "aria-labelledby", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-describedby": { - "defaultValue": null, - "description": "Identifies the element (or elements) that describes the object.", - "name": "aria-describedby", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-details": { - "defaultValue": null, - "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", - "name": "aria-details", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "inputRef": { - "defaultValue": null, - "description": "A ref for the HTML input element.", - "name": "inputRef", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SwitchProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SwitchProps" - } - ], - "required": false, - "type": { - "name": "MutableRefObject" - } - }, - "onHoverStart": { - "defaultValue": null, - "description": "Handler that is called when a hover interaction starts.", - "name": "onHoverStart", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - } - ], - "required": false, - "type": { - "name": "((e: HoverEvent) => void)" - } - }, - "onHoverEnd": { - "defaultValue": null, - "description": "Handler that is called when a hover interaction ends.", - "name": "onHoverEnd", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - } - ], - "required": false, - "type": { - "name": "((e: HoverEvent) => void)" - } - }, - "onHoverChange": { - "defaultValue": null, - "description": "Handler that is called when the hover state changes.", - "name": "onHoverChange", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "HoverEvents" - } - ], - "required": false, - "type": { - "name": "((isHovering: boolean) => void)" - } - }, - "style": { - "defaultValue": null, - "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.", - "name": "style", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "StyleRenderProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "StyleRenderProps" - } - ], - "required": false, - "type": { - "name": "CSSProperties | ((values: SwitchRenderProps & { defaultStyle: CSSProperties; }) => CSSProperties)" - } - }, - "slot": { - "defaultValue": null, - "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", - "name": "slot", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" - } - ], - "required": false, - "type": { - "name": "string | null" - } - }, - "ref": { - "defaultValue": null, - "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", - "name": "ref", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" - } - ], - "required": false, - "type": { - "name": "LegacyRef" - } - }, - "key": { - "defaultValue": null, - "description": "", - "name": "key", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" - } - ], - "required": false, - "type": { - "name": "Key | null" - } - } - }, + "SectionMessageContent.tsx": {}, + "SectionMessageTitle.tsx": {}, "Table.tsx": { "stretch": { "defaultValue": { @@ -152320,6 +152263,567 @@ } } }, + "Switch.tsx": { + "width": { + "defaultValue": { + "value": "full" + }, + "description": "Sets the width of the field. You can see allowed tokens here: https://tailwindcss.com/docs/width", + "name": "width", + "parent": { + "fileName": "marigold/packages/components/src/Switch/Switch.tsx", + "name": "SwitchProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Switch/Switch.tsx", + "name": "SwitchProps" + } + ], + "required": false, + "type": { + "name": "0 | \"auto\" | \"full\" | \"fit\" | \"min\" | \"max\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." + } + }, + "disabled": { + "defaultValue": { + "value": "false" + }, + "description": "Disables the switch.", + "name": "disabled", + "parent": { + "fileName": "marigold/packages/components/src/Switch/Switch.tsx", + "name": "SwitchProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Switch/Switch.tsx", + "name": "SwitchProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "readOnly": { + "defaultValue": { + "value": "false" + }, + "description": "Set the switch to read-only.", + "name": "readOnly", + "parent": { + "fileName": "marigold/packages/components/src/Switch/Switch.tsx", + "name": "SwitchProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Switch/Switch.tsx", + "name": "SwitchProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "selected": { + "defaultValue": { + "value": "false" + }, + "description": "With this prop you can set the switch selected.", + "name": "selected", + "parent": { + "fileName": "marigold/packages/components/src/Switch/Switch.tsx", + "name": "SwitchProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Switch/Switch.tsx", + "name": "SwitchProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "defaultSelected": { + "defaultValue": null, + "description": "Whether the Switch should be selected (uncontrolled).", + "name": "defaultSelected", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+switch@3.5.3_react@18.3.1/node_modules/@react-types/switch/src/index.d.ts", + "name": "SwitchBase" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+switch@3.5.3_react@18.3.1/node_modules/@react-types/switch/src/index.d.ts", + "name": "SwitchBase" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "onChange": { + "defaultValue": null, + "description": "Handler that is called when the Switch's selection state changes.", + "name": "onChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+switch@3.5.3_react@18.3.1/node_modules/@react-types/switch/src/index.d.ts", + "name": "SwitchBase" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+switch@3.5.3_react@18.3.1/node_modules/@react-types/switch/src/index.d.ts", + "name": "SwitchBase" + } + ], + "required": false, + "type": { + "name": "((isSelected: boolean) => void)" + } + }, + "value": { + "defaultValue": null, + "description": "The value of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefvalue).", + "name": "value", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+switch@3.5.3_react@18.3.1/node_modules/@react-types/switch/src/index.d.ts", + "name": "SwitchBase" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+switch@3.5.3_react@18.3.1/node_modules/@react-types/switch/src/index.d.ts", + "name": "SwitchBase" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "autoFocus": { + "defaultValue": null, + "description": "Whether the element should receive focus on render.", + "name": "autoFocus", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusableProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusableProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "onFocus": { + "defaultValue": null, + "description": "Handler that is called when the element receives focus.", + "name": "onFocus", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + } + ], + "required": false, + "type": { + "name": "((e: FocusEvent) => void)" + } + }, + "onBlur": { + "defaultValue": null, + "description": "Handler that is called when the element loses focus.", + "name": "onBlur", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + } + ], + "required": false, + "type": { + "name": "((e: FocusEvent) => void)" + } + }, + "onFocusChange": { + "defaultValue": null, + "description": "Handler that is called when the element's focus status changes.", + "name": "onFocusChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + } + ], + "required": false, + "type": { + "name": "((isFocused: boolean) => void)" + } + }, + "onKeyDown": { + "defaultValue": null, + "description": "Handler that is called when a key is pressed.", + "name": "onKeyDown", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + } + ], + "required": false, + "type": { + "name": "((e: KeyboardEvent) => void)" + } + }, + "onKeyUp": { + "defaultValue": null, + "description": "Handler that is called when a key is released.", + "name": "onKeyUp", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + } + ], + "required": false, + "type": { + "name": "((e: KeyboardEvent) => void)" + } + }, + "aria-controls": { + "defaultValue": null, + "description": "Identifies the element (or elements) whose contents or presence are controlled by the current element.", + "name": "aria-controls", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+switch@3.5.3_react@18.3.1/node_modules/@react-types/switch/src/index.d.ts", + "name": "AriaSwitchBase" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+switch@3.5.3_react@18.3.1/node_modules/@react-types/switch/src/index.d.ts", + "name": "AriaSwitchBase" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "excludeFromTabOrder": { + "defaultValue": null, + "description": "Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.", + "name": "excludeFromTabOrder", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "FocusableDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "FocusableDOMProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "id": { + "defaultValue": null, + "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", + "name": "id", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "name": { + "defaultValue": null, + "description": "The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).", + "name": "name", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "InputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "InputDOMProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-label": { + "defaultValue": null, + "description": "Defines a string value that labels the current element.", + "name": "aria-label", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-labelledby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that labels the current element.", + "name": "aria-labelledby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-describedby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that describes the object.", + "name": "aria-describedby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-details": { + "defaultValue": null, + "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", + "name": "aria-details", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "inputRef": { + "defaultValue": null, + "description": "A ref for the HTML input element.", + "name": "inputRef", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SwitchProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SwitchProps" + } + ], + "required": false, + "type": { + "name": "MutableRefObject" + } + }, + "onHoverStart": { + "defaultValue": null, + "description": "Handler that is called when a hover interaction starts.", + "name": "onHoverStart", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" + } + ], + "required": false, + "type": { + "name": "((e: HoverEvent) => void)" + } + }, + "onHoverEnd": { + "defaultValue": null, + "description": "Handler that is called when a hover interaction ends.", + "name": "onHoverEnd", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" + } + ], + "required": false, + "type": { + "name": "((e: HoverEvent) => void)" + } + }, + "onHoverChange": { + "defaultValue": null, + "description": "Handler that is called when the hover state changes.", + "name": "onHoverChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "HoverEvents" + } + ], + "required": false, + "type": { + "name": "((isHovering: boolean) => void)" + } + }, + "style": { + "defaultValue": null, + "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.", + "name": "style", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "StyleRenderProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "StyleRenderProps" + } + ], + "required": false, + "type": { + "name": "CSSProperties | ((values: SwitchRenderProps & { defaultStyle: CSSProperties; }) => CSSProperties)" + } + }, + "slot": { + "defaultValue": null, + "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", + "name": "slot", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" + } + ], + "required": false, + "type": { + "name": "string | null" + } + }, + "ref": { + "defaultValue": null, + "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", + "name": "ref", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "RefAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "RefAttributes" + } + ], + "required": false, + "type": { + "name": "LegacyRef" + } + }, + "key": { + "defaultValue": null, + "description": "", + "name": "key", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" + } + ], + "required": false, + "type": { + "name": "Key | null" + } + } + }, "Tag.tsx": { "className": { "defaultValue": null, @@ -152746,210 +153250,192 @@ } } }, - "TextField.tsx": { - "width": { - "defaultValue": { - "value": "full" - }, - "description": "Sets the width of the field. You can see allowed tokens here: https://tailwindcss.com/docs/width", - "name": "width", + "Text.tsx": { + "children": { + "defaultValue": null, + "description": "The children of the component", + "name": "children", "parent": { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/packages/components/src/Text/Text.tsx", + "name": "TextProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/packages/components/src/Text/Text.tsx", + "name": "TextProps" } ], "required": false, "type": { - "name": "0 | \"min\" | \"max\" | \"auto\" | \"full\" | \"fit\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." + "name": "ReactNode" } }, - "disabled": { + "color": { "defaultValue": { - "value": "false" + "value": "currentColor" }, - "description": "If `true`, the input is disabled.", - "name": "disabled", + "description": "Set the text color.", + "name": "color", "parent": { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/packages/components/src/Text/Text.tsx", + "name": "TextProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/packages/components/src/Text/Text.tsx", + "name": "TextProps" } ], "required": false, "type": { - "name": "boolean" + "name": "string" } }, - "required": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the input is required.", - "name": "required", + "slot": { + "defaultValue": null, + "description": "", + "name": "slot", "parent": { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string" } }, - "error": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the field is considered invalid and if set the `errorMessage` is shown instead of the `description`.", - "name": "error", + "title": { + "defaultValue": null, + "description": "", + "name": "title", "parent": { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string" } }, - "readOnly": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the input is readOnly.", - "name": "readOnly", + "key": { + "defaultValue": null, + "description": "", + "name": "key", "parent": { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" } ], "required": false, "type": { - "name": "boolean" + "name": "Key | null" } }, - "min": { - "defaultValue": { - "value": "none" - }, - "description": "The minimum value for the input field.", - "name": "min", + "defaultChecked": { + "defaultValue": null, + "description": "", + "name": "defaultChecked", "parent": { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "string" + "name": "boolean" } }, - "max": { - "defaultValue": { - "value": "none" - }, - "description": "The maximum value for the input field.", - "name": "max", + "defaultValue": { + "defaultValue": null, + "description": "", + "name": "defaultValue", "parent": { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "string" + "name": "string | number | readonly string[]" } }, - "value": { - "defaultValue": { - "value": "none" - }, - "description": "The value of the input field.", - "name": "value", + "suppressContentEditableWarning": { + "defaultValue": null, + "description": "", + "name": "suppressContentEditableWarning", "parent": { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "string" + "name": "boolean" } }, - "defaultValue": { - "defaultValue": { - "value": "none" - }, - "description": "The default value of the input field.", - "name": "defaultValue", + "suppressHydrationWarning": { + "defaultValue": null, + "description": "", + "name": "suppressHydrationWarning", "parent": { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "string" + "name": "boolean" } }, - "placeholder": { - "defaultValue": { - "value": "none" - }, - "description": "Placeholder text for the input field.", - "name": "placeholder", + "accessKey": { + "defaultValue": null, + "description": "", + "name": "accessKey", "parent": { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextField/TextField.tsx", - "name": "TextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -152957,115 +153443,113 @@ "name": "string" } }, - "validationBehavior": { - "defaultValue": { - "value": "'native'" - }, - "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.", - "name": "validationBehavior", + "autoFocus": { + "defaultValue": null, + "description": "", + "name": "autoFocus", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RACValidation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RACValidation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "\"native\" | \"aria\"" + "name": "boolean" } }, - "aria-activedescendant": { + "contentEditable": { "defaultValue": null, - "description": "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.", - "name": "aria-activedescendant", + "description": "", + "name": "contentEditable", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", - "name": "AriaTextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", - "name": "AriaTextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "string" + "name": "Booleanish | \"inherit\" | \"plaintext-only\"" } }, - "aria-autocomplete": { + "contextMenu": { "defaultValue": null, - "description": "Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.", - "name": "aria-autocomplete", + "description": "", + "name": "contextMenu", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", - "name": "AriaTextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", - "name": "AriaTextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "\"none\" | \"inline\" | \"list\" | \"both\"" + "name": "string" } }, - "aria-haspopup": { + "dir": { "defaultValue": null, - "description": "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.", - "name": "aria-haspopup", + "description": "", + "name": "dir", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", - "name": "AriaTextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", - "name": "AriaTextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "boolean | \"false\" | \"true\" | \"menu\" | \"listbox\" | \"tree\" | \"grid\" | \"dialog\"" + "name": "string" } }, - "validate": { + "draggable": { "defaultValue": null, - "description": "A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.", - "name": "validate", + "description": "", + "name": "draggable", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "Validation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "Validation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((value: string) => true | ValidationError | null)" + "name": "Booleanish" } }, - "autoFocus": { + "hidden": { "defaultValue": null, - "description": "Whether the element should receive focus on render.", - "name": "autoFocus", + "description": "", + "name": "hidden", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusableProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusableProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -153073,132 +153557,132 @@ "name": "boolean" } }, - "onFocus": { + "id": { "defaultValue": null, - "description": "Handler that is called when the element receives focus.", - "name": "onFocus", + "description": "", + "name": "id", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((e: FocusEvent) => void)" + "name": "string" } }, - "onBlur": { + "lang": { "defaultValue": null, - "description": "Handler that is called when the element loses focus.", - "name": "onBlur", + "description": "", + "name": "lang", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((e: FocusEvent) => void)" + "name": "string" } }, - "onFocusChange": { + "nonce": { "defaultValue": null, - "description": "Handler that is called when the element's focus status changes.", - "name": "onFocusChange", + "description": "", + "name": "nonce", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((isFocused: boolean) => void)" + "name": "string" } }, - "onKeyDown": { + "spellCheck": { "defaultValue": null, - "description": "Handler that is called when a key is pressed.", - "name": "onKeyDown", + "description": "", + "name": "spellCheck", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((e: KeyboardEvent) => void)" + "name": "Booleanish" } }, - "onKeyUp": { + "tabIndex": { "defaultValue": null, - "description": "Handler that is called when a key is released.", - "name": "onKeyUp", + "description": "", + "name": "tabIndex", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((e: KeyboardEvent) => void)" + "name": "number" } }, - "onChange": { + "translate": { "defaultValue": null, - "description": "Handler that is called when the value changes.", - "name": "onChange", + "description": "", + "name": "translate", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "ValueBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "ValueBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "((value: string) => void)" + "name": "\"yes\" | \"no\"" } }, - "aria-label": { + "radioGroup": { "defaultValue": null, - "description": "Defines a string value that labels the current element.", - "name": "aria-label", + "description": "", + "name": "radioGroup", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -153206,37 +153690,37 @@ "name": "string" } }, - "aria-labelledby": { + "role": { "defaultValue": null, - "description": "Identifies the element (or elements) that labels the current element.", - "name": "aria-labelledby", + "description": "", + "name": "role", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "string" + "name": "AriaRole" } }, - "aria-describedby": { + "about": { "defaultValue": null, - "description": "Identifies the element (or elements) that describes the object.", - "name": "aria-describedby", + "description": "", + "name": "about", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -153244,18 +153728,18 @@ "name": "string" } }, - "aria-details": { + "content": { "defaultValue": null, - "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", - "name": "aria-details", + "description": "", + "name": "content", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -153263,37 +153747,284 @@ "name": "string" } }, - "excludeFromTabOrder": { + "datatype": { "defaultValue": null, - "description": "Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.", - "name": "excludeFromTabOrder", + "description": "", + "name": "datatype", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "FocusableDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "FocusableDOMProps" - } + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "inlist": { + "defaultValue": null, + "description": "", + "name": "inlist", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "any" + } + }, + "prefix": { + "defaultValue": null, + "description": "", + "name": "prefix", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "property": { + "defaultValue": null, + "description": "", + "name": "property", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "rel": { + "defaultValue": null, + "description": "", + "name": "rel", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "resource": { + "defaultValue": null, + "description": "", + "name": "resource", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "rev": { + "defaultValue": null, + "description": "", + "name": "rev", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "typeof": { + "defaultValue": null, + "description": "", + "name": "typeof", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "vocab": { + "defaultValue": null, + "description": "", + "name": "vocab", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "autoCapitalize": { + "defaultValue": null, + "description": "", + "name": "autoCapitalize", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "autoCorrect": { + "defaultValue": null, + "description": "", + "name": "autoCorrect", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "autoSave": { + "defaultValue": null, + "description": "", + "name": "autoSave", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "itemProp": { + "defaultValue": null, + "description": "", + "name": "itemProp", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "itemScope": { + "defaultValue": null, + "description": "", + "name": "itemScope", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" + } ], "required": false, "type": { "name": "boolean" } }, - "id": { + "itemType": { "defaultValue": null, - "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", - "name": "id", + "description": "", + "name": "itemType", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -153301,18 +154032,18 @@ "name": "string" } }, - "autoComplete": { + "itemID": { "defaultValue": null, - "description": "Describes the type of autocomplete functionality the input should provide if any. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautocomplete).", - "name": "autoComplete", + "description": "", + "name": "itemID", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -153320,37 +154051,37 @@ "name": "string" } }, - "maxLength": { + "itemRef": { "defaultValue": null, - "description": "The maximum number of characters supported by the input. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefmaxlength).", - "name": "maxLength", + "description": "", + "name": "itemRef", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "number" + "name": "string" } }, - "minLength": { + "results": { "defaultValue": null, - "description": "The minimum number of characters required by the input. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefminlength).", - "name": "minLength", + "description": "", + "name": "results", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -153358,18 +154089,18 @@ "name": "number" } }, - "pattern": { + "security": { "defaultValue": null, - "description": "Regex pattern that the value of the input must match to be valid. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefpattern).", - "name": "pattern", + "description": "", + "name": "security", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -153377,56 +154108,56 @@ "name": "string" } }, - "type": { + "unselectable": { "defaultValue": null, - "description": "The type of input to render. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdeftype).", - "name": "type", + "description": "", + "name": "unselectable", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "\"text\" | \"search\" | \"url\" | \"tel\" | \"email\" | \"password\" | (string & {})" + "name": "\"on\" | \"off\"" } }, "inputMode": { "defaultValue": null, - "description": "Hints at the type of data that might be entered by the user while editing the element or its contents. See [MDN](https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute).", + "description": "Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}", "name": "inputMode", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, "type": { - "name": "\"none\" | \"text\" | \"search\" | \"url\" | \"tel\" | \"email\" | \"numeric\" | \"decimal\"" + "name": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" } }, - "name": { + "is": { "defaultValue": null, - "description": "The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).", - "name": "name", + "description": "Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}", + "name": "is", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "InputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "InputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "HTMLAttributes" } ], "required": false, @@ -153434,1732 +154165,10984 @@ "name": "string" } }, - "onCopy": { + "aria-activedescendant": { "defaultValue": null, - "description": "Handler that is called when the user copies text. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/oncopy).", - "name": "onCopy", + "description": "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.", + "name": "aria-activedescendant", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "string" } }, - "onCut": { + "aria-atomic": { "defaultValue": null, - "description": "Handler that is called when the user cuts text. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/oncut).", - "name": "onCut", + "description": "Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.", + "name": "aria-atomic", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "Booleanish" } }, - "onPaste": { + "aria-autocomplete": { + "defaultValue": null, + "description": "Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.", + "name": "aria-autocomplete", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "\"none\" | \"list\" | \"inline\" | \"both\"" + } + }, + "aria-braillelabel": { + "defaultValue": null, + "description": "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.", + "name": "aria-braillelabel", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-brailleroledescription": { + "defaultValue": null, + "description": "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.", + "name": "aria-brailleroledescription", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-busy": { + "defaultValue": null, + "description": "", + "name": "aria-busy", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-checked": { + "defaultValue": null, + "description": "Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.", + "name": "aria-checked", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "boolean | \"true\" | \"false\" | \"mixed\"" + } + }, + "aria-colcount": { + "defaultValue": null, + "description": "Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.", + "name": "aria-colcount", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-colindex": { + "defaultValue": null, + "description": "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.", + "name": "aria-colindex", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-colindextext": { + "defaultValue": null, + "description": "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.", + "name": "aria-colindextext", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-colspan": { + "defaultValue": null, + "description": "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.", + "name": "aria-colspan", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-controls": { + "defaultValue": null, + "description": "Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.", + "name": "aria-controls", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-current": { + "defaultValue": null, + "description": "Indicates the element that represents the current item within a container or set of related elements.", + "name": "aria-current", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\"" + } + }, + "aria-describedby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that describes the object.\n@see aria-labelledby", + "name": "aria-describedby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-description": { + "defaultValue": null, + "description": "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.", + "name": "aria-description", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-details": { + "defaultValue": null, + "description": "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.", + "name": "aria-details", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-disabled": { + "defaultValue": null, + "description": "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.", + "name": "aria-disabled", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-dropeffect": { + "defaultValue": null, + "description": "Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1", + "name": "aria-dropeffect", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "\"link\" | \"none\" | \"move\" | \"copy\" | \"execute\" | \"popup\"" + } + }, + "aria-errormessage": { + "defaultValue": null, + "description": "Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.", + "name": "aria-errormessage", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-expanded": { + "defaultValue": null, + "description": "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.", + "name": "aria-expanded", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-flowto": { + "defaultValue": null, + "description": "Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.", + "name": "aria-flowto", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-grabbed": { + "defaultValue": null, + "description": "Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1", + "name": "aria-grabbed", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-haspopup": { + "defaultValue": null, + "description": "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.", + "name": "aria-haspopup", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "boolean | \"dialog\" | \"menu\" | \"true\" | \"false\" | \"grid\" | \"listbox\" | \"tree\"" + } + }, + "aria-hidden": { + "defaultValue": null, + "description": "Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.", + "name": "aria-hidden", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-invalid": { + "defaultValue": null, + "description": "Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.", + "name": "aria-invalid", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\"" + } + }, + "aria-keyshortcuts": { + "defaultValue": null, + "description": "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.", + "name": "aria-keyshortcuts", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-label": { + "defaultValue": null, + "description": "Defines a string value that labels the current element.\n@see aria-labelledby.", + "name": "aria-label", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-labelledby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that labels the current element.\n@see aria-describedby.", + "name": "aria-labelledby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-level": { + "defaultValue": null, + "description": "Defines the hierarchical level of an element within a structure.", + "name": "aria-level", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-live": { + "defaultValue": null, + "description": "Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.", + "name": "aria-live", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "\"off\" | \"assertive\" | \"polite\"" + } + }, + "aria-modal": { + "defaultValue": null, + "description": "Indicates whether an element is modal when displayed.", + "name": "aria-modal", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-multiline": { + "defaultValue": null, + "description": "Indicates whether a text box accepts multiple lines of input or only a single line.", + "name": "aria-multiline", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-multiselectable": { + "defaultValue": null, + "description": "Indicates that the user may select more than one item from the current selectable descendants.", + "name": "aria-multiselectable", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-orientation": { + "defaultValue": null, + "description": "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.", + "name": "aria-orientation", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "\"vertical\" | \"horizontal\"" + } + }, + "aria-owns": { + "defaultValue": null, + "description": "Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.", + "name": "aria-owns", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-placeholder": { + "defaultValue": null, + "description": "Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.", + "name": "aria-placeholder", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-posinset": { + "defaultValue": null, + "description": "Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.", + "name": "aria-posinset", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-pressed": { + "defaultValue": null, + "description": "Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.", + "name": "aria-pressed", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "boolean | \"true\" | \"false\" | \"mixed\"" + } + }, + "aria-readonly": { + "defaultValue": null, + "description": "Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.", + "name": "aria-readonly", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-relevant": { + "defaultValue": null, + "description": "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.", + "name": "aria-relevant", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "\"text\" | \"additions\" | \"additions removals\" | \"additions text\" | \"all\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\"" + } + }, + "aria-required": { + "defaultValue": null, + "description": "Indicates that user input is required on the element before a form may be submitted.", + "name": "aria-required", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-roledescription": { + "defaultValue": null, + "description": "Defines a human-readable, author-localized description for the role of an element.", + "name": "aria-roledescription", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-rowcount": { + "defaultValue": null, + "description": "Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.", + "name": "aria-rowcount", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-rowindex": { + "defaultValue": null, + "description": "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.", + "name": "aria-rowindex", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-rowindextext": { + "defaultValue": null, + "description": "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.", + "name": "aria-rowindextext", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-rowspan": { + "defaultValue": null, + "description": "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.", + "name": "aria-rowspan", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-selected": { + "defaultValue": null, + "description": "Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.", + "name": "aria-selected", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-setsize": { + "defaultValue": null, + "description": "Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.", + "name": "aria-setsize", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-sort": { + "defaultValue": null, + "description": "Indicates if items in a table or grid are sorted in ascending or descending order.", + "name": "aria-sort", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "\"none\" | \"ascending\" | \"descending\" | \"other\"" + } + }, + "aria-valuemax": { + "defaultValue": null, + "description": "Defines the maximum allowed value for a range widget.", + "name": "aria-valuemax", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-valuemin": { + "defaultValue": null, + "description": "Defines the minimum allowed value for a range widget.", + "name": "aria-valuemin", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-valuenow": { + "defaultValue": null, + "description": "Defines the current value for a range widget.\n@see aria-valuetext.", + "name": "aria-valuenow", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-valuetext": { + "defaultValue": null, + "description": "Defines the human readable text alternative of aria-valuenow for a range widget.", + "name": "aria-valuetext", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "dangerouslySetInnerHTML": { + "defaultValue": null, + "description": "", + "name": "dangerouslySetInnerHTML", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "{ __html: string | TrustedHTML; }" + } + }, + "onCopy": { + "defaultValue": null, + "description": "", + "name": "onCopy", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onCopyCapture": { + "defaultValue": null, + "description": "", + "name": "onCopyCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onCut": { + "defaultValue": null, + "description": "", + "name": "onCut", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onCutCapture": { + "defaultValue": null, + "description": "", + "name": "onCutCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onPaste": { + "defaultValue": null, + "description": "", + "name": "onPaste", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onPasteCapture": { + "defaultValue": null, + "description": "", + "name": "onPasteCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onCompositionEnd": { + "defaultValue": null, + "description": "", + "name": "onCompositionEnd", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onCompositionEndCapture": { + "defaultValue": null, + "description": "", + "name": "onCompositionEndCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onCompositionStart": { + "defaultValue": null, + "description": "", + "name": "onCompositionStart", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onCompositionStartCapture": { + "defaultValue": null, + "description": "", + "name": "onCompositionStartCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onCompositionUpdate": { + "defaultValue": null, + "description": "", + "name": "onCompositionUpdate", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onCompositionUpdateCapture": { + "defaultValue": null, + "description": "", + "name": "onCompositionUpdateCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onFocus": { + "defaultValue": null, + "description": "", + "name": "onFocus", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FocusEventHandler" + } + }, + "onFocusCapture": { + "defaultValue": null, + "description": "", + "name": "onFocusCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FocusEventHandler" + } + }, + "onBlur": { + "defaultValue": null, + "description": "", + "name": "onBlur", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FocusEventHandler" + } + }, + "onBlurCapture": { + "defaultValue": null, + "description": "", + "name": "onBlurCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FocusEventHandler" + } + }, + "onChange": { + "defaultValue": null, + "description": "", + "name": "onChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onChangeCapture": { + "defaultValue": null, + "description": "", + "name": "onChangeCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onBeforeInput": { + "defaultValue": null, + "description": "", + "name": "onBeforeInput", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onBeforeInputCapture": { + "defaultValue": null, + "description": "", + "name": "onBeforeInputCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onInput": { + "defaultValue": null, + "description": "", + "name": "onInput", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onInputCapture": { + "defaultValue": null, + "description": "", + "name": "onInputCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onReset": { + "defaultValue": null, + "description": "", + "name": "onReset", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onResetCapture": { + "defaultValue": null, + "description": "", + "name": "onResetCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onSubmit": { + "defaultValue": null, + "description": "", + "name": "onSubmit", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onSubmitCapture": { + "defaultValue": null, + "description": "", + "name": "onSubmitCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onInvalid": { + "defaultValue": null, + "description": "", + "name": "onInvalid", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onInvalidCapture": { + "defaultValue": null, + "description": "", + "name": "onInvalidCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onLoad": { + "defaultValue": null, + "description": "", + "name": "onLoad", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onLoadCapture": { + "defaultValue": null, + "description": "", + "name": "onLoadCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onError": { + "defaultValue": null, + "description": "", + "name": "onError", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onErrorCapture": { + "defaultValue": null, + "description": "", + "name": "onErrorCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onKeyDown": { + "defaultValue": null, + "description": "", + "name": "onKeyDown", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "KeyboardEventHandler" + } + }, + "onKeyDownCapture": { + "defaultValue": null, + "description": "", + "name": "onKeyDownCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "KeyboardEventHandler" + } + }, + "onKeyPress": { + "defaultValue": null, + "description": "@deprecated", + "name": "onKeyPress", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "KeyboardEventHandler" + } + }, + "onKeyPressCapture": { + "defaultValue": null, + "description": "@deprecated", + "name": "onKeyPressCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "KeyboardEventHandler" + } + }, + "onKeyUp": { + "defaultValue": null, + "description": "", + "name": "onKeyUp", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "KeyboardEventHandler" + } + }, + "onKeyUpCapture": { + "defaultValue": null, + "description": "", + "name": "onKeyUpCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "KeyboardEventHandler" + } + }, + "onAbort": { + "defaultValue": null, + "description": "", + "name": "onAbort", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onAbortCapture": { + "defaultValue": null, + "description": "", + "name": "onAbortCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onCanPlay": { + "defaultValue": null, + "description": "", + "name": "onCanPlay", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onCanPlayCapture": { + "defaultValue": null, + "description": "", + "name": "onCanPlayCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onCanPlayThrough": { + "defaultValue": null, + "description": "", + "name": "onCanPlayThrough", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onCanPlayThroughCapture": { + "defaultValue": null, + "description": "", + "name": "onCanPlayThroughCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onDurationChange": { + "defaultValue": null, + "description": "", + "name": "onDurationChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onDurationChangeCapture": { + "defaultValue": null, + "description": "", + "name": "onDurationChangeCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onEmptied": { + "defaultValue": null, + "description": "", + "name": "onEmptied", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onEmptiedCapture": { + "defaultValue": null, + "description": "", + "name": "onEmptiedCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onEncrypted": { + "defaultValue": null, + "description": "", + "name": "onEncrypted", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onEncryptedCapture": { + "defaultValue": null, + "description": "", + "name": "onEncryptedCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onEnded": { + "defaultValue": null, + "description": "", + "name": "onEnded", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onEndedCapture": { + "defaultValue": null, + "description": "", + "name": "onEndedCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onLoadedData": { + "defaultValue": null, + "description": "", + "name": "onLoadedData", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onLoadedDataCapture": { + "defaultValue": null, + "description": "", + "name": "onLoadedDataCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onLoadedMetadata": { + "defaultValue": null, + "description": "", + "name": "onLoadedMetadata", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onLoadedMetadataCapture": { + "defaultValue": null, + "description": "", + "name": "onLoadedMetadataCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onLoadStart": { + "defaultValue": null, + "description": "", + "name": "onLoadStart", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onLoadStartCapture": { + "defaultValue": null, + "description": "", + "name": "onLoadStartCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onPause": { + "defaultValue": null, + "description": "", + "name": "onPause", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onPauseCapture": { + "defaultValue": null, + "description": "", + "name": "onPauseCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onPlay": { + "defaultValue": null, + "description": "", + "name": "onPlay", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onPlayCapture": { + "defaultValue": null, + "description": "", + "name": "onPlayCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onPlaying": { + "defaultValue": null, + "description": "", + "name": "onPlaying", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onPlayingCapture": { + "defaultValue": null, + "description": "", + "name": "onPlayingCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onProgress": { + "defaultValue": null, + "description": "", + "name": "onProgress", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onProgressCapture": { + "defaultValue": null, + "description": "", + "name": "onProgressCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onRateChange": { + "defaultValue": null, + "description": "", + "name": "onRateChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onRateChangeCapture": { + "defaultValue": null, + "description": "", + "name": "onRateChangeCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onResize": { + "defaultValue": null, + "description": "", + "name": "onResize", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onResizeCapture": { + "defaultValue": null, + "description": "", + "name": "onResizeCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onSeeked": { + "defaultValue": null, + "description": "", + "name": "onSeeked", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onSeekedCapture": { + "defaultValue": null, + "description": "", + "name": "onSeekedCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onSeeking": { + "defaultValue": null, + "description": "", + "name": "onSeeking", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onSeekingCapture": { + "defaultValue": null, + "description": "", + "name": "onSeekingCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onStalled": { + "defaultValue": null, + "description": "", + "name": "onStalled", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onStalledCapture": { + "defaultValue": null, + "description": "", + "name": "onStalledCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onSuspend": { + "defaultValue": null, + "description": "", + "name": "onSuspend", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onSuspendCapture": { + "defaultValue": null, + "description": "", + "name": "onSuspendCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onTimeUpdate": { + "defaultValue": null, + "description": "", + "name": "onTimeUpdate", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onTimeUpdateCapture": { + "defaultValue": null, + "description": "", + "name": "onTimeUpdateCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onVolumeChange": { + "defaultValue": null, + "description": "", + "name": "onVolumeChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onVolumeChangeCapture": { + "defaultValue": null, + "description": "", + "name": "onVolumeChangeCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onWaiting": { + "defaultValue": null, + "description": "", + "name": "onWaiting", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onWaitingCapture": { + "defaultValue": null, + "description": "", + "name": "onWaitingCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onAuxClick": { + "defaultValue": null, + "description": "", + "name": "onAuxClick", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onAuxClickCapture": { + "defaultValue": null, + "description": "", + "name": "onAuxClickCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onClick": { + "defaultValue": null, + "description": "", + "name": "onClick", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onClickCapture": { + "defaultValue": null, + "description": "", + "name": "onClickCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onContextMenu": { + "defaultValue": null, + "description": "", + "name": "onContextMenu", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onContextMenuCapture": { + "defaultValue": null, + "description": "", + "name": "onContextMenuCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onDoubleClick": { + "defaultValue": null, + "description": "", + "name": "onDoubleClick", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onDoubleClickCapture": { + "defaultValue": null, + "description": "", + "name": "onDoubleClickCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onDrag": { + "defaultValue": null, + "description": "", + "name": "onDrag", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "DragEventHandler" + } + }, + "onDragCapture": { + "defaultValue": null, + "description": "", + "name": "onDragCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "DragEventHandler" + } + }, + "onDragEnd": { + "defaultValue": null, + "description": "", + "name": "onDragEnd", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "DragEventHandler" + } + }, + "onDragEndCapture": { + "defaultValue": null, + "description": "", + "name": "onDragEndCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "DragEventHandler" + } + }, + "onDragEnter": { + "defaultValue": null, + "description": "", + "name": "onDragEnter", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "DragEventHandler" + } + }, + "onDragEnterCapture": { + "defaultValue": null, + "description": "", + "name": "onDragEnterCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "DragEventHandler" + } + }, + "onDragExit": { + "defaultValue": null, + "description": "", + "name": "onDragExit", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "DragEventHandler" + } + }, + "onDragExitCapture": { + "defaultValue": null, + "description": "", + "name": "onDragExitCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "DragEventHandler" + } + }, + "onDragLeave": { + "defaultValue": null, + "description": "", + "name": "onDragLeave", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "DragEventHandler" + } + }, + "onDragLeaveCapture": { + "defaultValue": null, + "description": "", + "name": "onDragLeaveCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "DragEventHandler" + } + }, + "onDragOver": { + "defaultValue": null, + "description": "", + "name": "onDragOver", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "DragEventHandler" + } + }, + "onDragOverCapture": { + "defaultValue": null, + "description": "", + "name": "onDragOverCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "DragEventHandler" + } + }, + "onDragStart": { + "defaultValue": null, + "description": "", + "name": "onDragStart", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "DragEventHandler" + } + }, + "onDragStartCapture": { + "defaultValue": null, + "description": "", + "name": "onDragStartCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "DragEventHandler" + } + }, + "onDrop": { + "defaultValue": null, + "description": "", + "name": "onDrop", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "DragEventHandler" + } + }, + "onDropCapture": { + "defaultValue": null, + "description": "", + "name": "onDropCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "DragEventHandler" + } + }, + "onMouseDown": { + "defaultValue": null, + "description": "", + "name": "onMouseDown", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onMouseDownCapture": { + "defaultValue": null, + "description": "", + "name": "onMouseDownCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onMouseEnter": { + "defaultValue": null, + "description": "", + "name": "onMouseEnter", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onMouseLeave": { + "defaultValue": null, + "description": "", + "name": "onMouseLeave", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onMouseMove": { + "defaultValue": null, + "description": "", + "name": "onMouseMove", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onMouseMoveCapture": { + "defaultValue": null, + "description": "", + "name": "onMouseMoveCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onMouseOut": { + "defaultValue": null, + "description": "", + "name": "onMouseOut", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onMouseOutCapture": { + "defaultValue": null, + "description": "", + "name": "onMouseOutCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onMouseOver": { + "defaultValue": null, + "description": "", + "name": "onMouseOver", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onMouseOverCapture": { + "defaultValue": null, + "description": "", + "name": "onMouseOverCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onMouseUp": { + "defaultValue": null, + "description": "", + "name": "onMouseUp", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onMouseUpCapture": { + "defaultValue": null, + "description": "", + "name": "onMouseUpCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "MouseEventHandler" + } + }, + "onSelect": { + "defaultValue": null, + "description": "", + "name": "onSelect", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onSelectCapture": { + "defaultValue": null, + "description": "", + "name": "onSelectCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onTouchCancel": { + "defaultValue": null, + "description": "", + "name": "onTouchCancel", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "TouchEventHandler" + } + }, + "onTouchCancelCapture": { + "defaultValue": null, + "description": "", + "name": "onTouchCancelCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "TouchEventHandler" + } + }, + "onTouchEnd": { + "defaultValue": null, + "description": "", + "name": "onTouchEnd", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "TouchEventHandler" + } + }, + "onTouchEndCapture": { + "defaultValue": null, + "description": "", + "name": "onTouchEndCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "TouchEventHandler" + } + }, + "onTouchMove": { + "defaultValue": null, + "description": "", + "name": "onTouchMove", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "TouchEventHandler" + } + }, + "onTouchMoveCapture": { + "defaultValue": null, + "description": "", + "name": "onTouchMoveCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "TouchEventHandler" + } + }, + "onTouchStart": { + "defaultValue": null, + "description": "", + "name": "onTouchStart", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "TouchEventHandler" + } + }, + "onTouchStartCapture": { + "defaultValue": null, + "description": "", + "name": "onTouchStartCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "TouchEventHandler" + } + }, + "onPointerDown": { + "defaultValue": null, + "description": "", + "name": "onPointerDown", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerDownCapture": { + "defaultValue": null, + "description": "", + "name": "onPointerDownCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerMove": { + "defaultValue": null, + "description": "", + "name": "onPointerMove", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerMoveCapture": { + "defaultValue": null, + "description": "", + "name": "onPointerMoveCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerUp": { + "defaultValue": null, + "description": "", + "name": "onPointerUp", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerUpCapture": { + "defaultValue": null, + "description": "", + "name": "onPointerUpCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerCancel": { + "defaultValue": null, + "description": "", + "name": "onPointerCancel", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerCancelCapture": { + "defaultValue": null, + "description": "", + "name": "onPointerCancelCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerEnter": { + "defaultValue": null, + "description": "", + "name": "onPointerEnter", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerLeave": { + "defaultValue": null, + "description": "", + "name": "onPointerLeave", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerOver": { + "defaultValue": null, + "description": "", + "name": "onPointerOver", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerOverCapture": { + "defaultValue": null, + "description": "", + "name": "onPointerOverCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerOut": { + "defaultValue": null, + "description": "", + "name": "onPointerOut", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onPointerOutCapture": { + "defaultValue": null, + "description": "", + "name": "onPointerOutCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onGotPointerCapture": { + "defaultValue": null, + "description": "", + "name": "onGotPointerCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onGotPointerCaptureCapture": { + "defaultValue": null, + "description": "", + "name": "onGotPointerCaptureCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onLostPointerCapture": { + "defaultValue": null, + "description": "", + "name": "onLostPointerCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onLostPointerCaptureCapture": { + "defaultValue": null, + "description": "", + "name": "onLostPointerCaptureCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "PointerEventHandler" + } + }, + "onScroll": { + "defaultValue": null, + "description": "", + "name": "onScroll", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "UIEventHandler" + } + }, + "onScrollCapture": { + "defaultValue": null, + "description": "", + "name": "onScrollCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "UIEventHandler" + } + }, + "onWheel": { + "defaultValue": null, + "description": "", + "name": "onWheel", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "WheelEventHandler" + } + }, + "onWheelCapture": { + "defaultValue": null, + "description": "", + "name": "onWheelCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "WheelEventHandler" + } + }, + "onAnimationStart": { + "defaultValue": null, + "description": "", + "name": "onAnimationStart", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "AnimationEventHandler" + } + }, + "onAnimationStartCapture": { + "defaultValue": null, + "description": "", + "name": "onAnimationStartCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "AnimationEventHandler" + } + }, + "onAnimationEnd": { + "defaultValue": null, + "description": "", + "name": "onAnimationEnd", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "AnimationEventHandler" + } + }, + "onAnimationEndCapture": { + "defaultValue": null, + "description": "", + "name": "onAnimationEndCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "AnimationEventHandler" + } + }, + "onAnimationIteration": { + "defaultValue": null, + "description": "", + "name": "onAnimationIteration", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "AnimationEventHandler" + } + }, + "onAnimationIterationCapture": { + "defaultValue": null, + "description": "", + "name": "onAnimationIterationCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "AnimationEventHandler" + } + }, + "onTransitionEnd": { + "defaultValue": null, + "description": "", + "name": "onTransitionEnd", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "TransitionEventHandler" + } + }, + "onTransitionEndCapture": { + "defaultValue": null, + "description": "", + "name": "onTransitionEndCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "TransitionEventHandler" + } + }, + "align": { + "defaultValue": null, + "description": "Set the text alignment for the element.", + "name": "align", + "declarations": [ + { + "fileName": "marigold/packages/system/src/style-props.tsx", + "name": "TypeLiteral" + } + ], + "required": false, + "type": { + "name": "\"center\" | \"none\" | \"left\" | \"right\"" + } + }, + "fontSize": { + "defaultValue": null, + "description": "Set the font size for the text element.", + "name": "fontSize", + "declarations": [ + { + "fileName": "marigold/packages/system/src/style-props.tsx", + "name": "TypeLiteral" + } + ], + "required": false, + "type": { + "name": "\"base\" | \"xs\" | \"sm\" | \"lg\" | \"xl\" | \"2xl\" | \"3xl\" | \"4xl\" | \"5xl\" | \"6xl\" | \"7xl\" | \"8xl\" | \"9xl\"" + } + }, + "weight": { + "defaultValue": null, + "description": "Set the font weight for the text element.", + "name": "weight", + "declarations": [ + { + "fileName": "marigold/packages/system/src/style-props.tsx", + "name": "TypeLiteral" + } + ], + "required": false, + "type": { + "name": "\"thin\" | \"extralight\" | \"light\" | \"regular\" | \"medium\" | \"semibold\" | \"bold\" | \"extrabold\" | \"black\"" + } + }, + "fontStyle": { + "defaultValue": null, + "description": "Set the font style for the text element.", + "name": "fontStyle", + "declarations": [ + { + "fileName": "marigold/packages/system/src/style-props.tsx", + "name": "TypeLiteral" + } + ], + "required": false, + "type": { + "name": "\"italic\" | \"normal\"" + } + }, + "cursor": { + "defaultValue": null, + "description": "Set the cursor for the element.", + "name": "cursor", + "declarations": [ + { + "fileName": "marigold/packages/system/src/style-props.tsx", + "name": "TypeLiteral" + } + ], + "required": false, + "type": { + "name": "\"progress\" | \"text\" | \"none\" | \"auto\" | \"default\" | \"pointer\" | \"wait\" | \"move\" | \"help\" | \"notAllowed\" | \"cell\" | \"crosshair\" | \"vertical\" | \"alias\" | \"copy\" | \"noDrop\" | \"grap\" | ... 8 more ..." + } + } + }, + "TextArea.tsx": { + "width": { + "defaultValue": { + "value": "full" + }, + "description": "Sets the width of the field. You can see allowed tokens here: https://tailwindcss.com/docs/width", + "name": "width", + "parent": { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + } + ], + "required": false, + "type": { + "name": "0 | \"auto\" | \"full\" | \"fit\" | \"min\" | \"max\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." + } + }, + "disabled": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the textarea is disabled.", + "name": "disabled", + "parent": { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "required": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the textarea is required.", + "name": "required", + "parent": { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "error": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the field is considered invalid and if set the `errorMessage` is shown instead of the `description`.", + "name": "error", + "parent": { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "readOnly": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the textarea is read-only.", + "name": "readOnly", + "parent": { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "value": { + "defaultValue": { + "value": "none" + }, + "description": "The value of the textarea.", + "name": "value", + "parent": { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "defaultValue": { + "defaultValue": { + "value": "none" + }, + "description": "The default value of the textarea.", + "name": "defaultValue", + "parent": { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "placeholder": { + "defaultValue": { + "value": "none" + }, + "description": "Placeholder text for the textarea.", + "name": "placeholder", + "parent": { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "rows": { + "defaultValue": { + "value": "none" + }, + "description": "Sets the number of rows in the textarea.", + "name": "rows", + "parent": { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", + "name": "TextAreaProps" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "validationBehavior": { + "defaultValue": { + "value": "'native'" + }, + "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.", + "name": "validationBehavior", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RACValidation" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RACValidation" + } + ], + "required": false, + "type": { + "name": "\"native\" | \"aria\"" + } + }, + "aria-activedescendant": { + "defaultValue": null, + "description": "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.", + "name": "aria-activedescendant", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", + "name": "AriaTextFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", + "name": "AriaTextFieldProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-autocomplete": { + "defaultValue": null, + "description": "Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.", + "name": "aria-autocomplete", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", + "name": "AriaTextFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", + "name": "AriaTextFieldProps" + } + ], + "required": false, + "type": { + "name": "\"none\" | \"inline\" | \"list\" | \"both\"" + } + }, + "aria-haspopup": { + "defaultValue": null, + "description": "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.", + "name": "aria-haspopup", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", + "name": "AriaTextFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", + "name": "AriaTextFieldProps" + } + ], + "required": false, + "type": { + "name": "boolean | \"false\" | \"true\" | \"menu\" | \"listbox\" | \"tree\" | \"grid\" | \"dialog\"" + } + }, + "validate": { + "defaultValue": null, + "description": "A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.", + "name": "validate", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "Validation" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "Validation" + } + ], + "required": false, + "type": { + "name": "((value: string) => true | ValidationError | null)" + } + }, + "autoFocus": { + "defaultValue": null, + "description": "Whether the element should receive focus on render.", + "name": "autoFocus", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusableProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusableProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "onFocus": { + "defaultValue": null, + "description": "Handler that is called when the element receives focus.", + "name": "onFocus", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + } + ], + "required": false, + "type": { + "name": "((e: FocusEvent) => void)" + } + }, + "onBlur": { + "defaultValue": null, + "description": "Handler that is called when the element loses focus.", + "name": "onBlur", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + } + ], + "required": false, + "type": { + "name": "((e: FocusEvent) => void)" + } + }, + "onFocusChange": { + "defaultValue": null, + "description": "Handler that is called when the element's focus status changes.", + "name": "onFocusChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + } + ], + "required": false, + "type": { + "name": "((isFocused: boolean) => void)" + } + }, + "onKeyDown": { + "defaultValue": null, + "description": "Handler that is called when a key is pressed.", + "name": "onKeyDown", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + } + ], + "required": false, + "type": { + "name": "((e: KeyboardEvent) => void)" + } + }, + "onKeyUp": { + "defaultValue": null, + "description": "Handler that is called when a key is released.", + "name": "onKeyUp", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + } + ], + "required": false, + "type": { + "name": "((e: KeyboardEvent) => void)" + } + }, + "onChange": { + "defaultValue": null, + "description": "Handler that is called when the value changes.", + "name": "onChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "ValueBase" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "ValueBase" + } + ], + "required": false, + "type": { + "name": "((value: string) => void)" + } + }, + "aria-label": { + "defaultValue": null, + "description": "Defines a string value that labels the current element.", + "name": "aria-label", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-labelledby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that labels the current element.", + "name": "aria-labelledby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-describedby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that describes the object.", + "name": "aria-describedby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-details": { + "defaultValue": null, + "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", + "name": "aria-details", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "excludeFromTabOrder": { + "defaultValue": null, + "description": "Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.", + "name": "excludeFromTabOrder", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "FocusableDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "FocusableDOMProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "id": { + "defaultValue": null, + "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", + "name": "id", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "autoComplete": { + "defaultValue": null, + "description": "Describes the type of autocomplete functionality the input should provide if any. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautocomplete).", + "name": "autoComplete", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "maxLength": { + "defaultValue": null, + "description": "The maximum number of characters supported by the input. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefmaxlength).", + "name": "maxLength", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "minLength": { + "defaultValue": null, + "description": "The minimum number of characters required by the input. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefminlength).", + "name": "minLength", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "pattern": { + "defaultValue": null, + "description": "Regex pattern that the value of the input must match to be valid. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefpattern).", + "name": "pattern", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "type": { + "defaultValue": null, + "description": "The type of input to render. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdeftype).", + "name": "type", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + } + ], + "required": false, + "type": { + "name": "\"text\" | \"search\" | \"url\" | \"tel\" | \"email\" | \"password\" | (string & {})" + } + }, + "inputMode": { + "defaultValue": null, + "description": "Hints at the type of data that might be entered by the user while editing the element or its contents. See [MDN](https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute).", + "name": "inputMode", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + } + ], + "required": false, + "type": { + "name": "\"none\" | \"text\" | \"search\" | \"url\" | \"tel\" | \"email\" | \"numeric\" | \"decimal\"" + } + }, + "name": { + "defaultValue": null, + "description": "The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).", + "name": "name", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "InputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "InputDOMProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "onCopy": { + "defaultValue": null, + "description": "Handler that is called when the user copies text. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/oncopy).", + "name": "onCopy", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onCut": { + "defaultValue": null, + "description": "Handler that is called when the user cuts text. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/oncut).", + "name": "onCut", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onPaste": { + "defaultValue": null, + "description": "Handler that is called when the user pastes text. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/onpaste).", + "name": "onPaste", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onCompositionStart": { + "defaultValue": null, + "description": "Handler that is called when a text composition system starts a new text composition session. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionstart_event).", + "name": "onCompositionStart", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onCompositionEnd": { + "defaultValue": null, + "description": "Handler that is called when a text composition system completes or cancels the current text composition session. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionend_event).", + "name": "onCompositionEnd", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onCompositionUpdate": { + "defaultValue": null, + "description": "Handler that is called when a new character is received in the current text composition session. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionupdate_event).", + "name": "onCompositionUpdate", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onSelect": { + "defaultValue": null, + "description": "Handler that is called when text in the input is selected. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/select_event).", + "name": "onSelect", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onBeforeInput": { + "defaultValue": null, + "description": "Handler that is called when the input value is about to be modified. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/beforeinput_event).", + "name": "onBeforeInput", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onInput": { + "defaultValue": null, + "description": "Handler that is called when the input value is modified. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/input_event).", + "name": "onInput", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "aria-errormessage": { + "defaultValue": null, + "description": "Identifies the element that provides an error message for the object.", + "name": "aria-errormessage", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaValidationProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaValidationProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "slot": { + "defaultValue": null, + "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", + "name": "slot", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" + } + ], + "required": false, + "type": { + "name": "string | null" + } + }, + "label": { + "defaultValue": null, + "description": "", + "name": "label", + "parent": { + "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", + "name": "FieldBaseProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", + "name": "FieldBaseProps" + } + ], + "required": false, + "type": { + "name": "ReactNode" + } + }, + "description": { + "defaultValue": null, + "description": "A helpful text.", + "name": "description", + "parent": { + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" + } + ], + "required": false, + "type": { + "name": "ReactNode" + } + }, + "errorMessage": { + "defaultValue": null, + "description": "An error message.", + "name": "errorMessage", + "parent": { + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" + } + ], + "required": false, + "type": { + "name": "ReactNode | ((v: ValidationResult) => ReactNode)" + } + }, + "ref": { + "defaultValue": null, + "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", + "name": "ref", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "RefAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "RefAttributes" + } + ], + "required": false, + "type": { + "name": "LegacyRef" + } + }, + "key": { + "defaultValue": null, + "description": "", + "name": "key", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" + } + ], + "required": false, + "type": { + "name": "Key | null" + } + } + }, + "TextField.tsx": { + "width": { + "defaultValue": { + "value": "full" + }, + "description": "Sets the width of the field. You can see allowed tokens here: https://tailwindcss.com/docs/width", + "name": "width", + "parent": { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + } + ], + "required": false, + "type": { + "name": "0 | \"min\" | \"max\" | \"auto\" | \"full\" | \"fit\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." + } + }, + "disabled": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the input is disabled.", + "name": "disabled", + "parent": { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "required": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the input is required.", + "name": "required", + "parent": { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "error": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the field is considered invalid and if set the `errorMessage` is shown instead of the `description`.", + "name": "error", + "parent": { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "readOnly": { + "defaultValue": { + "value": "false" + }, + "description": "If `true`, the input is readOnly.", + "name": "readOnly", + "parent": { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "min": { + "defaultValue": { + "value": "none" + }, + "description": "The minimum value for the input field.", + "name": "min", + "parent": { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "max": { + "defaultValue": { + "value": "none" + }, + "description": "The maximum value for the input field.", + "name": "max", + "parent": { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "value": { + "defaultValue": { + "value": "none" + }, + "description": "The value of the input field.", + "name": "value", + "parent": { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "defaultValue": { + "defaultValue": { + "value": "none" + }, + "description": "The default value of the input field.", + "name": "defaultValue", + "parent": { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "placeholder": { + "defaultValue": { + "value": "none" + }, + "description": "Placeholder text for the input field.", + "name": "placeholder", + "parent": { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/TextField/TextField.tsx", + "name": "TextFieldProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "validationBehavior": { + "defaultValue": { + "value": "'native'" + }, + "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.", + "name": "validationBehavior", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RACValidation" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "RACValidation" + } + ], + "required": false, + "type": { + "name": "\"native\" | \"aria\"" + } + }, + "aria-activedescendant": { + "defaultValue": null, + "description": "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.", + "name": "aria-activedescendant", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", + "name": "AriaTextFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", + "name": "AriaTextFieldProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-autocomplete": { + "defaultValue": null, + "description": "Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.", + "name": "aria-autocomplete", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", + "name": "AriaTextFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", + "name": "AriaTextFieldProps" + } + ], + "required": false, + "type": { + "name": "\"none\" | \"inline\" | \"list\" | \"both\"" + } + }, + "aria-haspopup": { + "defaultValue": null, + "description": "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.", + "name": "aria-haspopup", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", + "name": "AriaTextFieldProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", + "name": "AriaTextFieldProps" + } + ], + "required": false, + "type": { + "name": "boolean | \"false\" | \"true\" | \"menu\" | \"listbox\" | \"tree\" | \"grid\" | \"dialog\"" + } + }, + "validate": { + "defaultValue": null, + "description": "A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.", + "name": "validate", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "Validation" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "Validation" + } + ], + "required": false, + "type": { + "name": "((value: string) => true | ValidationError | null)" + } + }, + "autoFocus": { + "defaultValue": null, + "description": "Whether the element should receive focus on render.", + "name": "autoFocus", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusableProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusableProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "onFocus": { + "defaultValue": null, + "description": "Handler that is called when the element receives focus.", + "name": "onFocus", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + } + ], + "required": false, + "type": { + "name": "((e: FocusEvent) => void)" + } + }, + "onBlur": { + "defaultValue": null, + "description": "Handler that is called when the element loses focus.", + "name": "onBlur", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + } + ], + "required": false, + "type": { + "name": "((e: FocusEvent) => void)" + } + }, + "onFocusChange": { + "defaultValue": null, + "description": "Handler that is called when the element's focus status changes.", + "name": "onFocusChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "FocusEvents" + } + ], + "required": false, + "type": { + "name": "((isFocused: boolean) => void)" + } + }, + "onKeyDown": { + "defaultValue": null, + "description": "Handler that is called when a key is pressed.", + "name": "onKeyDown", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + } + ], + "required": false, + "type": { + "name": "((e: KeyboardEvent) => void)" + } + }, + "onKeyUp": { + "defaultValue": null, + "description": "Handler that is called when a key is released.", + "name": "onKeyUp", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", + "name": "KeyboardEvents" + } + ], + "required": false, + "type": { + "name": "((e: KeyboardEvent) => void)" + } + }, + "onChange": { + "defaultValue": null, + "description": "Handler that is called when the value changes.", + "name": "onChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "ValueBase" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", + "name": "ValueBase" + } + ], + "required": false, + "type": { + "name": "((value: string) => void)" + } + }, + "aria-label": { + "defaultValue": null, + "description": "Defines a string value that labels the current element.", + "name": "aria-label", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-labelledby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that labels the current element.", + "name": "aria-labelledby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-describedby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that describes the object.", + "name": "aria-describedby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-details": { + "defaultValue": null, + "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", + "name": "aria-details", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "excludeFromTabOrder": { + "defaultValue": null, + "description": "Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.", + "name": "excludeFromTabOrder", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "FocusableDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "FocusableDOMProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "id": { + "defaultValue": null, + "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", + "name": "id", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "autoComplete": { + "defaultValue": null, + "description": "Describes the type of autocomplete functionality the input should provide if any. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautocomplete).", + "name": "autoComplete", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "maxLength": { + "defaultValue": null, + "description": "The maximum number of characters supported by the input. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefmaxlength).", + "name": "maxLength", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "minLength": { + "defaultValue": null, + "description": "The minimum number of characters required by the input. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefminlength).", + "name": "minLength", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "pattern": { + "defaultValue": null, + "description": "Regex pattern that the value of the input must match to be valid. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefpattern).", + "name": "pattern", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "type": { + "defaultValue": null, + "description": "The type of input to render. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdeftype).", + "name": "type", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + } + ], + "required": false, + "type": { + "name": "\"text\" | \"search\" | \"url\" | \"tel\" | \"email\" | \"password\" | (string & {})" + } + }, + "inputMode": { + "defaultValue": null, + "description": "Hints at the type of data that might be entered by the user while editing the element or its contents. See [MDN](https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute).", + "name": "inputMode", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMProps" + } + ], + "required": false, + "type": { + "name": "\"none\" | \"text\" | \"search\" | \"url\" | \"tel\" | \"email\" | \"numeric\" | \"decimal\"" + } + }, + "name": { + "defaultValue": null, + "description": "The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).", + "name": "name", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "InputDOMProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "InputDOMProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "onCopy": { + "defaultValue": null, + "description": "Handler that is called when the user copies text. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/oncopy).", + "name": "onCopy", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onCut": { + "defaultValue": null, + "description": "Handler that is called when the user cuts text. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/oncut).", + "name": "onCut", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onPaste": { + "defaultValue": null, + "description": "Handler that is called when the user pastes text. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/onpaste).", + "name": "onPaste", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onCompositionStart": { + "defaultValue": null, + "description": "Handler that is called when a text composition system starts a new text composition session. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionstart_event).", + "name": "onCompositionStart", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onCompositionEnd": { + "defaultValue": null, + "description": "Handler that is called when a text composition system completes or cancels the current text composition session. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionend_event).", + "name": "onCompositionEnd", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onCompositionUpdate": { + "defaultValue": null, + "description": "Handler that is called when a new character is received in the current text composition session. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionupdate_event).", + "name": "onCompositionUpdate", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onSelect": { + "defaultValue": null, + "description": "Handler that is called when text in the input is selected. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/select_event).", + "name": "onSelect", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onBeforeInput": { + "defaultValue": null, + "description": "Handler that is called when the input value is about to be modified. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/beforeinput_event).", + "name": "onBeforeInput", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onInput": { + "defaultValue": null, + "description": "Handler that is called when the input value is modified. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/input_event).", + "name": "onInput", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "TextInputDOMEvents" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "aria-errormessage": { + "defaultValue": null, + "description": "Identifies the element that provides an error message for the object.", + "name": "aria-errormessage", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaValidationProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaValidationProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "slot": { + "defaultValue": null, + "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", + "name": "slot", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "SlotProps" + } + ], + "required": false, + "type": { + "name": "string | null" + } + }, + "label": { + "defaultValue": null, + "description": "", + "name": "label", + "parent": { + "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", + "name": "FieldBaseProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", + "name": "FieldBaseProps" + } + ], + "required": false, + "type": { + "name": "ReactNode" + } + }, + "description": { + "defaultValue": null, + "description": "A helpful text.", + "name": "description", + "parent": { + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" + } + ], + "required": false, + "type": { + "name": "ReactNode" + } + }, + "errorMessage": { + "defaultValue": null, + "description": "An error message.", + "name": "errorMessage", + "parent": { + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", + "name": "HelpTextProps" + } + ], + "required": false, + "type": { + "name": "ReactNode | ((v: ValidationResult) => ReactNode)" + } + }, + "ref": { + "defaultValue": null, + "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", + "name": "ref", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "RefAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "RefAttributes" + } + ], + "required": false, + "type": { + "name": "LegacyRef" + } + }, + "key": { + "defaultValue": null, + "description": "", + "name": "key", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" + } + ], + "required": false, + "type": { + "name": "Key | null" + } + } + }, + "Tiles.tsx": { + "children": { + "defaultValue": null, + "description": "The children of the component.", + "name": "children", + "parent": { + "fileName": "marigold/packages/components/src/Tiles/Tiles.tsx", + "name": "TilesProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Tiles/Tiles.tsx", + "name": "TilesProps" + } + ], + "required": true, + "type": { + "name": "ReactNode" + } + }, + "tilesWidth": { + "defaultValue": { + "value": "250px" + }, + "description": "Set minimum width for all items inside.", + "name": "tilesWidth", + "parent": { + "fileName": "marigold/packages/components/src/Tiles/Tiles.tsx", + "name": "TilesProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Tiles/Tiles.tsx", + "name": "TilesProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "stretch": { + "defaultValue": { + "value": false + }, + "description": "Tiles will stretch to available width and will distribute their width equally. Note that this can make them wider than the specified tiles width, but not smaller than the given \"tilesWidth\". Basically, this is full responsive mode.", + "name": "stretch", + "parent": { + "fileName": "marigold/packages/components/src/Tiles/Tiles.tsx", + "name": "TilesProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Tiles/Tiles.tsx", + "name": "TilesProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "equalHeight": { + "defaultValue": { + "value": false + }, + "description": "If true, all items will have the size of the biggest item.", + "name": "equalHeight", + "parent": { + "fileName": "marigold/packages/components/src/Tiles/Tiles.tsx", + "name": "TilesProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Tiles/Tiles.tsx", + "name": "TilesProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "space": { + "defaultValue": { + "value": 0 + }, + "description": "The space between the children.", + "name": "space", + "declarations": [ + { + "fileName": "marigold/packages/system/src/style-props.tsx", + "name": "TypeLiteral" + } + ], + "required": false, + "type": { + "name": "0 | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96" + } + } + }, + "Tooltip.tsx": { + "children": { + "defaultValue": null, + "description": "The children of the component.", + "name": "children", + "parent": { + "fileName": "marigold/packages/components/src/Tooltip/Tooltip.tsx", + "name": "TooltipProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Tooltip/Tooltip.tsx", + "name": "TooltipProps" + } + ], + "required": false, + "type": { + "name": "ReactNode" + } + }, + "open": { + "defaultValue": null, + "description": "Whether the element is rendered.", + "name": "open", + "parent": { + "fileName": "marigold/packages/components/src/Tooltip/Tooltip.tsx", + "name": "TooltipProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Tooltip/Tooltip.tsx", + "name": "TooltipProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "arrowBoundaryOffset": { + "defaultValue": { + "value": "0" + }, + "description": "The minimum distance the arrow's edge should be from the edge of the overlay element.", + "name": "arrowBoundaryOffset", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-aria+overlays@3.22.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/overlays/dist/types.d.ts", + "name": "AriaPositionProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-aria+overlays@3.22.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/overlays/dist/types.d.ts", + "name": "AriaPositionProps" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "triggerRef": { + "defaultValue": null, + "description": "The ref for the element which the tooltip positions itself with respect to.\n\nWhen used within a TooltipTrigger this is set automatically. It is only required when used standalone.", + "name": "triggerRef", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "TooltipProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "TooltipProps" + } + ], + "required": false, + "type": { + "name": "RefObject" + } + }, + "isEntering": { + "defaultValue": null, + "description": "Whether the tooltip is currently performing an entry animation.", + "name": "isEntering", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "TooltipProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "TooltipProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "isExiting": { + "defaultValue": null, + "description": "Whether the tooltip is currently performing an exit animation.", + "name": "isExiting", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "TooltipProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "TooltipProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "UNSTABLE_portalContainer": { + "defaultValue": { + "value": "document.body" + }, + "description": "The container element in which the overlay portal will be placed. This may have unknown behavior depending on where it is portalled to.", + "name": "UNSTABLE_portalContainer", + "parent": { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "TooltipProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", + "name": "TooltipProps" + } + ], + "required": false, + "type": { + "name": "Element" + } + }, + "placement": { + "defaultValue": { + "value": "'bottom'" + }, + "description": "The placement of the element with respect to its anchor element.", + "name": "placement", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "PositionProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "PositionProps" + } + ], + "required": false, + "type": { + "name": "Placement" + } + }, + "containerPadding": { + "defaultValue": { + "value": "12" + }, + "description": "The placement padding that should be applied between the element and its\nsurrounding container.", + "name": "containerPadding", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "PositionProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "PositionProps" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "offset": { + "defaultValue": { + "value": "0" + }, + "description": "The additional offset applied along the main axis between the element and its\nanchor element.", + "name": "offset", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "PositionProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "PositionProps" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "crossOffset": { + "defaultValue": { + "value": "0" + }, + "description": "The additional offset applied along the cross axis between the element and its\nanchor element.", + "name": "crossOffset", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "PositionProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "PositionProps" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "shouldFlip": { + "defaultValue": { + "value": "true" + }, + "description": "Whether the element should flip its orientation (e.g. top to bottom or left to right) when\nthere is insufficient room for it to render completely.", + "name": "shouldFlip", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "PositionProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "PositionProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "defaultOpen": { + "defaultValue": null, + "description": "Whether the overlay is open by default (uncontrolled).", + "name": "defaultOpen", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "OverlayTriggerProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "OverlayTriggerProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "onOpenChange": { + "defaultValue": null, + "description": "Handler that is called when the overlay's open state changes.", + "name": "onOpenChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "OverlayTriggerProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "OverlayTriggerProps" + } + ], + "required": false, + "type": { + "name": "((isOpen: boolean) => void)" + } + }, + "aria-label": { + "defaultValue": null, + "description": "Defines a string value that labels the current element.", + "name": "aria-label", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-labelledby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that labels the current element.", + "name": "aria-labelledby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-describedby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that describes the object.", + "name": "aria-describedby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-details": { + "defaultValue": null, + "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", + "name": "aria-details", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "AriaLabelingProps" + } + ], + "required": false, + "type": { + "name": "string" + } + } + }, + "TooltipTrigger.tsx": { + "disabled": { + "defaultValue": null, + "description": "", + "name": "disabled", + "parent": { + "fileName": "marigold/packages/components/src/Tooltip/TooltipTrigger.tsx", + "name": "TooltipTriggerProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Tooltip/TooltipTrigger.tsx", + "name": "TooltipTriggerProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "open": { + "defaultValue": null, + "description": "", + "name": "open", + "parent": { + "fileName": "marigold/packages/components/src/Tooltip/TooltipTrigger.tsx", + "name": "TooltipTriggerProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/components/src/Tooltip/TooltipTrigger.tsx", + "name": "TooltipTriggerProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "delay": { + "defaultValue": { + "value": 1000 + }, + "description": "The delay time for the tooltip to show up. [See guidelines](https://spectrum.adobe.com/page/tooltip/#Immediate-or-delayed-appearance).", + "name": "delay", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+tooltip@3.4.9_react@18.3.1/node_modules/@react-types/tooltip/src/index.d.ts", + "name": "TooltipTriggerProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+tooltip@3.4.9_react@18.3.1/node_modules/@react-types/tooltip/src/index.d.ts", + "name": "TooltipTriggerProps" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "closeDelay": { + "defaultValue": { + "value": "500" + }, + "description": "The delay time for the tooltip to close. [See guidelines](https://spectrum.adobe.com/page/tooltip/#Warmup-and-cooldown).", + "name": "closeDelay", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+tooltip@3.4.9_react@18.3.1/node_modules/@react-types/tooltip/src/index.d.ts", + "name": "TooltipTriggerProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+tooltip@3.4.9_react@18.3.1/node_modules/@react-types/tooltip/src/index.d.ts", + "name": "TooltipTriggerProps" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "trigger": { + "defaultValue": null, + "description": "By default, opens for both focus and hover. Can be made to open only for focus.", + "name": "trigger", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+tooltip@3.4.9_react@18.3.1/node_modules/@react-types/tooltip/src/index.d.ts", + "name": "TooltipTriggerProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+tooltip@3.4.9_react@18.3.1/node_modules/@react-types/tooltip/src/index.d.ts", + "name": "TooltipTriggerProps" + } + ], + "required": false, + "type": { + "name": "\"focus\"" + } + }, + "defaultOpen": { + "defaultValue": null, + "description": "Whether the overlay is open by default (uncontrolled).", + "name": "defaultOpen", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "OverlayTriggerProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "OverlayTriggerProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "onOpenChange": { + "defaultValue": null, + "description": "Handler that is called when the overlay's open state changes.", + "name": "onOpenChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "OverlayTriggerProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", + "name": "OverlayTriggerProps" + } + ], + "required": false, + "type": { + "name": "((isOpen: boolean) => void)" + } + } + }, + "VisuallyHidden.tsx": { + "children": { + "defaultValue": null, + "description": "The content to visually hide.", + "name": "children", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-aria+visually-hidden@3.8.12_react@18.3.1/node_modules/@react-aria/visually-hidden/dist/types.d.ts", + "name": "VisuallyHiddenProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-aria+visually-hidden@3.8.12_react@18.3.1/node_modules/@react-aria/visually-hidden/dist/types.d.ts", + "name": "VisuallyHiddenProps" + } + ], + "required": false, + "type": { + "name": "ReactNode" + } + }, + "elementType": { + "defaultValue": { + "value": "'div'" + }, + "description": "The element type for the container.", + "name": "elementType", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-aria+visually-hidden@3.8.12_react@18.3.1/node_modules/@react-aria/visually-hidden/dist/types.d.ts", + "name": "VisuallyHiddenProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-aria+visually-hidden@3.8.12_react@18.3.1/node_modules/@react-aria/visually-hidden/dist/types.d.ts", + "name": "VisuallyHiddenProps" + } + ], + "required": false, + "type": { + "name": "string | JSXElementConstructor" + } + }, + "isFocusable": { + "defaultValue": null, + "description": "Whether the element should become visible on focus, for example skip links.", + "name": "isFocusable", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-aria+visually-hidden@3.8.12_react@18.3.1/node_modules/@react-aria/visually-hidden/dist/types.d.ts", + "name": "VisuallyHiddenProps" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-aria+visually-hidden@3.8.12_react@18.3.1/node_modules/@react-aria/visually-hidden/dist/types.d.ts", + "name": "VisuallyHiddenProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "id": { + "defaultValue": null, + "description": "", + "name": "id", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "role": { + "defaultValue": null, + "description": "", + "name": "role", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "AriaRole" + } + }, + "tabIndex": { + "defaultValue": null, + "description": "", + "name": "tabIndex", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "style": { + "defaultValue": null, + "description": "", + "name": "style", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "CSSProperties" + } + }, + "className": { + "defaultValue": null, + "description": "", + "name": "className", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-activedescendant": { + "defaultValue": null, + "description": "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.", + "name": "aria-activedescendant", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-atomic": { + "defaultValue": null, + "description": "Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.", + "name": "aria-atomic", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-autocomplete": { + "defaultValue": null, + "description": "Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.", + "name": "aria-autocomplete", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "\"list\" | \"none\" | \"inline\" | \"both\"" + } + }, + "aria-braillelabel": { + "defaultValue": null, + "description": "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.", + "name": "aria-braillelabel", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-brailleroledescription": { + "defaultValue": null, + "description": "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.", + "name": "aria-brailleroledescription", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-busy": { + "defaultValue": null, + "description": "", + "name": "aria-busy", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-checked": { + "defaultValue": null, + "description": "Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.", + "name": "aria-checked", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "boolean | \"true\" | \"false\" | \"mixed\"" + } + }, + "aria-colcount": { + "defaultValue": null, + "description": "Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.", + "name": "aria-colcount", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-colindex": { + "defaultValue": null, + "description": "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.", + "name": "aria-colindex", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-colindextext": { + "defaultValue": null, + "description": "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.", + "name": "aria-colindextext", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-colspan": { + "defaultValue": null, + "description": "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.", + "name": "aria-colspan", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-controls": { + "defaultValue": null, + "description": "Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.", + "name": "aria-controls", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-current": { + "defaultValue": null, + "description": "Indicates the element that represents the current item within a container or set of related elements.", + "name": "aria-current", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "boolean | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\" | \"time\"" + } + }, + "aria-describedby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that describes the object.\n@see aria-labelledby", + "name": "aria-describedby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-description": { + "defaultValue": null, + "description": "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.", + "name": "aria-description", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-details": { + "defaultValue": null, + "description": "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.", + "name": "aria-details", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-disabled": { + "defaultValue": null, + "description": "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.", + "name": "aria-disabled", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-dropeffect": { + "defaultValue": null, + "description": "Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1", + "name": "aria-dropeffect", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "\"link\" | \"none\" | \"copy\" | \"execute\" | \"move\" | \"popup\"" + } + }, + "aria-errormessage": { + "defaultValue": null, + "description": "Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.", + "name": "aria-errormessage", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-expanded": { + "defaultValue": null, + "description": "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.", + "name": "aria-expanded", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-flowto": { + "defaultValue": null, + "description": "Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.", + "name": "aria-flowto", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-grabbed": { + "defaultValue": null, + "description": "Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1", + "name": "aria-grabbed", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-haspopup": { + "defaultValue": null, + "description": "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.", + "name": "aria-haspopup", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "boolean | \"dialog\" | \"grid\" | \"listbox\" | \"menu\" | \"tree\" | \"true\" | \"false\"" + } + }, + "aria-hidden": { + "defaultValue": null, + "description": "Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.", + "name": "aria-hidden", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-invalid": { + "defaultValue": null, + "description": "Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.", + "name": "aria-invalid", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\"" + } + }, + "aria-keyshortcuts": { + "defaultValue": null, + "description": "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.", + "name": "aria-keyshortcuts", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-label": { + "defaultValue": null, + "description": "Defines a string value that labels the current element.\n@see aria-labelledby.", + "name": "aria-label", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-labelledby": { + "defaultValue": null, + "description": "Identifies the element (or elements) that labels the current element.\n@see aria-describedby.", + "name": "aria-labelledby", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-level": { + "defaultValue": null, + "description": "Defines the hierarchical level of an element within a structure.", + "name": "aria-level", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-live": { + "defaultValue": null, + "description": "Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.", + "name": "aria-live", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "\"off\" | \"assertive\" | \"polite\"" + } + }, + "aria-modal": { + "defaultValue": null, + "description": "Indicates whether an element is modal when displayed.", + "name": "aria-modal", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-multiline": { + "defaultValue": null, + "description": "Indicates whether a text box accepts multiple lines of input or only a single line.", + "name": "aria-multiline", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-multiselectable": { + "defaultValue": null, + "description": "Indicates that the user may select more than one item from the current selectable descendants.", + "name": "aria-multiselectable", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-orientation": { + "defaultValue": null, + "description": "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.", + "name": "aria-orientation", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "\"horizontal\" | \"vertical\"" + } + }, + "aria-owns": { + "defaultValue": null, + "description": "Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.", + "name": "aria-owns", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-placeholder": { + "defaultValue": null, + "description": "Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.", + "name": "aria-placeholder", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-posinset": { + "defaultValue": null, + "description": "Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.", + "name": "aria-posinset", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-pressed": { + "defaultValue": null, + "description": "Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.", + "name": "aria-pressed", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "boolean | \"true\" | \"false\" | \"mixed\"" + } + }, + "aria-readonly": { + "defaultValue": null, + "description": "Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.", + "name": "aria-readonly", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-relevant": { + "defaultValue": null, + "description": "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.", + "name": "aria-relevant", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "\"additions\" | \"additions removals\" | \"additions text\" | \"all\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text\" | \"text additions\" | \"text removals\"" + } + }, + "aria-required": { + "defaultValue": null, + "description": "Indicates that user input is required on the element before a form may be submitted.", + "name": "aria-required", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-roledescription": { + "defaultValue": null, + "description": "Defines a human-readable, author-localized description for the role of an element.", + "name": "aria-roledescription", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-rowcount": { + "defaultValue": null, + "description": "Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.", + "name": "aria-rowcount", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-rowindex": { + "defaultValue": null, + "description": "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.", + "name": "aria-rowindex", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-rowindextext": { + "defaultValue": null, + "description": "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.", + "name": "aria-rowindextext", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "aria-rowspan": { + "defaultValue": null, + "description": "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.", + "name": "aria-rowspan", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-selected": { + "defaultValue": null, + "description": "Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.", + "name": "aria-selected", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "Booleanish" + } + }, + "aria-setsize": { + "defaultValue": null, + "description": "Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.", + "name": "aria-setsize", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-sort": { + "defaultValue": null, + "description": "Indicates if items in a table or grid are sorted in ascending or descending order.", + "name": "aria-sort", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "\"none\" | \"ascending\" | \"descending\" | \"other\"" + } + }, + "aria-valuemax": { + "defaultValue": null, + "description": "Defines the maximum allowed value for a range widget.", + "name": "aria-valuemax", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-valuemin": { + "defaultValue": null, + "description": "Defines the minimum allowed value for a range widget.", + "name": "aria-valuemin", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-valuenow": { + "defaultValue": null, + "description": "Defines the current value for a range widget.\n@see aria-valuetext.", + "name": "aria-valuenow", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "aria-valuetext": { + "defaultValue": null, + "description": "Defines the human readable text alternative of aria-valuenow for a range widget.", + "name": "aria-valuetext", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "AriaAttributes" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "dangerouslySetInnerHTML": { + "defaultValue": null, + "description": "", + "name": "dangerouslySetInnerHTML", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "{ __html: string | TrustedHTML; }" + } + }, + "onCopy": { + "defaultValue": null, + "description": "", + "name": "onCopy", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onCopyCapture": { + "defaultValue": null, + "description": "", + "name": "onCopyCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onCut": { + "defaultValue": null, + "description": "", + "name": "onCut", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onCutCapture": { + "defaultValue": null, + "description": "", + "name": "onCutCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onPaste": { + "defaultValue": null, + "description": "", + "name": "onPaste", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onPasteCapture": { + "defaultValue": null, + "description": "", + "name": "onPasteCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ClipboardEventHandler" + } + }, + "onCompositionEnd": { + "defaultValue": null, + "description": "", + "name": "onCompositionEnd", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onCompositionEndCapture": { + "defaultValue": null, + "description": "", + "name": "onCompositionEndCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onCompositionStart": { + "defaultValue": null, + "description": "", + "name": "onCompositionStart", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onCompositionStartCapture": { + "defaultValue": null, + "description": "", + "name": "onCompositionStartCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onCompositionUpdate": { + "defaultValue": null, + "description": "", + "name": "onCompositionUpdate", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onCompositionUpdateCapture": { + "defaultValue": null, + "description": "", + "name": "onCompositionUpdateCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "CompositionEventHandler" + } + }, + "onFocus": { + "defaultValue": null, + "description": "", + "name": "onFocus", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FocusEventHandler" + } + }, + "onFocusCapture": { + "defaultValue": null, + "description": "", + "name": "onFocusCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FocusEventHandler" + } + }, + "onBlur": { + "defaultValue": null, + "description": "", + "name": "onBlur", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FocusEventHandler" + } + }, + "onBlurCapture": { + "defaultValue": null, + "description": "", + "name": "onBlurCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FocusEventHandler" + } + }, + "onChange": { + "defaultValue": null, + "description": "", + "name": "onChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onChangeCapture": { + "defaultValue": null, + "description": "", + "name": "onChangeCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onBeforeInput": { + "defaultValue": null, + "description": "", + "name": "onBeforeInput", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onBeforeInputCapture": { + "defaultValue": null, + "description": "", + "name": "onBeforeInputCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onInput": { + "defaultValue": null, + "description": "", + "name": "onInput", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onInputCapture": { + "defaultValue": null, + "description": "", + "name": "onInputCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onReset": { + "defaultValue": null, + "description": "", + "name": "onReset", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onResetCapture": { + "defaultValue": null, + "description": "", + "name": "onResetCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onSubmit": { + "defaultValue": null, + "description": "", + "name": "onSubmit", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onSubmitCapture": { + "defaultValue": null, + "description": "", + "name": "onSubmitCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onInvalid": { + "defaultValue": null, + "description": "", + "name": "onInvalid", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onInvalidCapture": { + "defaultValue": null, + "description": "", + "name": "onInvalidCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "FormEventHandler" + } + }, + "onLoad": { + "defaultValue": null, + "description": "", + "name": "onLoad", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onLoadCapture": { + "defaultValue": null, + "description": "", + "name": "onLoadCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onError": { + "defaultValue": null, + "description": "", + "name": "onError", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onErrorCapture": { + "defaultValue": null, + "description": "", + "name": "onErrorCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onKeyDown": { + "defaultValue": null, + "description": "", + "name": "onKeyDown", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "KeyboardEventHandler" + } + }, + "onKeyDownCapture": { + "defaultValue": null, + "description": "", + "name": "onKeyDownCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "KeyboardEventHandler" + } + }, + "onKeyPress": { + "defaultValue": null, + "description": "@deprecated", + "name": "onKeyPress", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "KeyboardEventHandler" + } + }, + "onKeyPressCapture": { + "defaultValue": null, + "description": "@deprecated", + "name": "onKeyPressCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "KeyboardEventHandler" + } + }, + "onKeyUp": { + "defaultValue": null, + "description": "", + "name": "onKeyUp", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "KeyboardEventHandler" + } + }, + "onKeyUpCapture": { + "defaultValue": null, + "description": "", + "name": "onKeyUpCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "KeyboardEventHandler" + } + }, + "onAbort": { + "defaultValue": null, + "description": "", + "name": "onAbort", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onAbortCapture": { + "defaultValue": null, + "description": "", + "name": "onAbortCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onCanPlay": { + "defaultValue": null, + "description": "", + "name": "onCanPlay", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onCanPlayCapture": { + "defaultValue": null, + "description": "", + "name": "onCanPlayCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onCanPlayThrough": { + "defaultValue": null, + "description": "", + "name": "onCanPlayThrough", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onCanPlayThroughCapture": { + "defaultValue": null, + "description": "", + "name": "onCanPlayThroughCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onDurationChange": { + "defaultValue": null, + "description": "", + "name": "onDurationChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onDurationChangeCapture": { + "defaultValue": null, + "description": "", + "name": "onDurationChangeCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onEmptied": { + "defaultValue": null, + "description": "", + "name": "onEmptied", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onEmptiedCapture": { + "defaultValue": null, + "description": "", + "name": "onEmptiedCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onEncrypted": { + "defaultValue": null, + "description": "", + "name": "onEncrypted", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onEncryptedCapture": { + "defaultValue": null, + "description": "", + "name": "onEncryptedCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onEnded": { + "defaultValue": null, + "description": "", + "name": "onEnded", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onEndedCapture": { + "defaultValue": null, + "description": "", + "name": "onEndedCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onLoadedData": { + "defaultValue": null, + "description": "", + "name": "onLoadedData", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onLoadedDataCapture": { + "defaultValue": null, + "description": "", + "name": "onLoadedDataCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onLoadedMetadata": { + "defaultValue": null, + "description": "", + "name": "onLoadedMetadata", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onLoadedMetadataCapture": { + "defaultValue": null, + "description": "", + "name": "onLoadedMetadataCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onLoadStart": { + "defaultValue": null, + "description": "", + "name": "onLoadStart", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onLoadStartCapture": { + "defaultValue": null, + "description": "", + "name": "onLoadStartCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onPause": { + "defaultValue": null, + "description": "", + "name": "onPause", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onPauseCapture": { + "defaultValue": null, + "description": "", + "name": "onPauseCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onPlay": { + "defaultValue": null, + "description": "", + "name": "onPlay", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onPlayCapture": { + "defaultValue": null, + "description": "", + "name": "onPlayCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onPlaying": { + "defaultValue": null, + "description": "", + "name": "onPlaying", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onPlayingCapture": { + "defaultValue": null, + "description": "", + "name": "onPlayingCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onProgress": { + "defaultValue": null, + "description": "", + "name": "onProgress", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onProgressCapture": { + "defaultValue": null, + "description": "", + "name": "onProgressCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onRateChange": { + "defaultValue": null, + "description": "", + "name": "onRateChange", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onRateChangeCapture": { + "defaultValue": null, + "description": "", + "name": "onRateChangeCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onResize": { + "defaultValue": null, + "description": "", + "name": "onResize", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onResizeCapture": { + "defaultValue": null, + "description": "", + "name": "onResizeCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onSeeked": { + "defaultValue": null, + "description": "", + "name": "onSeeked", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onSeekedCapture": { + "defaultValue": null, + "description": "", + "name": "onSeekedCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onSeeking": { + "defaultValue": null, + "description": "", + "name": "onSeeking", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onSeekingCapture": { + "defaultValue": null, + "description": "", + "name": "onSeekingCapture", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" + } + ], + "required": false, + "type": { + "name": "ReactEventHandler" + } + }, + "onStalled": { "defaultValue": null, - "description": "Handler that is called when the user pastes text. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/onpaste).", - "name": "onPaste", + "description": "", + "name": "onStalled", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ReactEventHandler" } }, - "onCompositionStart": { + "onStalledCapture": { "defaultValue": null, - "description": "Handler that is called when a text composition system starts a new text composition session. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionstart_event).", - "name": "onCompositionStart", + "description": "", + "name": "onStalledCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "ReactEventHandler" } }, - "onCompositionEnd": { + "onSuspend": { "defaultValue": null, - "description": "Handler that is called when a text composition system completes or cancels the current text composition session. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionend_event).", - "name": "onCompositionEnd", + "description": "", + "name": "onSuspend", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "ReactEventHandler" } }, - "onCompositionUpdate": { + "onSuspendCapture": { "defaultValue": null, - "description": "Handler that is called when a new character is received in the current text composition session. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionupdate_event).", - "name": "onCompositionUpdate", + "description": "", + "name": "onSuspendCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "ReactEventHandler" } }, - "onSelect": { + "onTimeUpdate": { "defaultValue": null, - "description": "Handler that is called when text in the input is selected. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/select_event).", - "name": "onSelect", + "description": "", + "name": "onTimeUpdate", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, - "onBeforeInput": { + "onTimeUpdateCapture": { "defaultValue": null, - "description": "Handler that is called when the input value is about to be modified. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/beforeinput_event).", - "name": "onBeforeInput", + "description": "", + "name": "onTimeUpdateCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "ReactEventHandler" } }, - "onInput": { + "onVolumeChange": { "defaultValue": null, - "description": "Handler that is called when the input value is modified. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/input_event).", - "name": "onInput", + "description": "", + "name": "onVolumeChange", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "ReactEventHandler" } }, - "aria-errormessage": { + "onVolumeChangeCapture": { "defaultValue": null, - "description": "Identifies the element that provides an error message for the object.", - "name": "aria-errormessage", + "description": "", + "name": "onVolumeChangeCapture", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaValidationProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaValidationProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "ReactEventHandler" } }, - "slot": { + "onWaiting": { "defaultValue": null, - "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", - "name": "slot", + "description": "", + "name": "onWaiting", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string | null" + "name": "ReactEventHandler" } }, - "label": { + "onWaitingCapture": { "defaultValue": null, "description": "", - "name": "label", + "name": "onWaitingCapture", "parent": { - "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", - "name": "FieldBaseProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", - "name": "FieldBaseProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "ReactNode" + "name": "ReactEventHandler" } }, - "description": { + "onAuxClick": { "defaultValue": null, - "description": "A helpful text.", - "name": "description", + "description": "", + "name": "onAuxClick", "parent": { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "ReactNode" + "name": "MouseEventHandler" } }, - "errorMessage": { + "onAuxClickCapture": { "defaultValue": null, - "description": "An error message.", - "name": "errorMessage", + "description": "", + "name": "onAuxClickCapture", "parent": { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "ReactNode | ((v: ValidationResult) => ReactNode)" + "name": "MouseEventHandler" } }, - "ref": { + "onClick": { "defaultValue": null, - "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", - "name": "ref", + "description": "", + "name": "onClick", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "LegacyRef" + "name": "MouseEventHandler" } }, - "key": { + "onClickCapture": { "defaultValue": null, "description": "", - "name": "key", + "name": "onClickCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Key | null" + "name": "MouseEventHandler" } - } - }, - "Text.tsx": { - "children": { + }, + "onContextMenu": { "defaultValue": null, - "description": "The children of the component", - "name": "children", + "description": "", + "name": "onContextMenu", "parent": { - "fileName": "marigold/packages/components/src/Text/Text.tsx", - "name": "TextProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Text/Text.tsx", - "name": "TextProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "ReactNode" + "name": "MouseEventHandler" } }, - "color": { - "defaultValue": { - "value": "currentColor" - }, - "description": "Set the text color.", - "name": "color", + "onContextMenuCapture": { + "defaultValue": null, + "description": "", + "name": "onContextMenuCapture", "parent": { - "fileName": "marigold/packages/components/src/Text/Text.tsx", - "name": "TextProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Text/Text.tsx", - "name": "TextProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "MouseEventHandler" } }, - "slot": { + "onDoubleClick": { "defaultValue": null, "description": "", - "name": "slot", + "name": "onDoubleClick", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "MouseEventHandler" } }, - "title": { + "onDoubleClickCapture": { "defaultValue": null, "description": "", - "name": "title", + "name": "onDoubleClickCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "MouseEventHandler" } }, - "key": { + "onDrag": { "defaultValue": null, "description": "", - "name": "key", + "name": "onDrag", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Key | null" + "name": "DragEventHandler" } }, - "defaultChecked": { + "onDragCapture": { "defaultValue": null, "description": "", - "name": "defaultChecked", + "name": "onDragCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "DragEventHandler" } }, - "defaultValue": { + "onDragEnd": { "defaultValue": null, "description": "", - "name": "defaultValue", + "name": "onDragEnd", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string | number | readonly string[]" + "name": "DragEventHandler" } }, - "suppressContentEditableWarning": { + "onDragEndCapture": { "defaultValue": null, "description": "", - "name": "suppressContentEditableWarning", + "name": "onDragEndCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "DragEventHandler" } }, - "suppressHydrationWarning": { + "onDragEnter": { "defaultValue": null, "description": "", - "name": "suppressHydrationWarning", + "name": "onDragEnter", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "DragEventHandler" } }, - "accessKey": { + "onDragEnterCapture": { "defaultValue": null, "description": "", - "name": "accessKey", + "name": "onDragEnterCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "DragEventHandler" } }, - "autoFocus": { + "onDragExit": { "defaultValue": null, "description": "", - "name": "autoFocus", + "name": "onDragExit", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "DragEventHandler" } }, - "contentEditable": { + "onDragExitCapture": { "defaultValue": null, "description": "", - "name": "contentEditable", + "name": "onDragExitCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Booleanish | \"inherit\" | \"plaintext-only\"" + "name": "DragEventHandler" } }, - "contextMenu": { + "onDragLeave": { "defaultValue": null, "description": "", - "name": "contextMenu", + "name": "onDragLeave", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "DragEventHandler" } }, - "dir": { + "onDragLeaveCapture": { "defaultValue": null, "description": "", - "name": "dir", + "name": "onDragLeaveCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "DragEventHandler" } }, - "draggable": { + "onDragOver": { "defaultValue": null, "description": "", - "name": "draggable", + "name": "onDragOver", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Booleanish" + "name": "DragEventHandler" } }, - "hidden": { + "onDragOverCapture": { "defaultValue": null, "description": "", - "name": "hidden", + "name": "onDragOverCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "DragEventHandler" } }, - "id": { + "onDragStart": { "defaultValue": null, "description": "", - "name": "id", + "name": "onDragStart", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "DragEventHandler" } }, - "lang": { + "onDragStartCapture": { "defaultValue": null, "description": "", - "name": "lang", + "name": "onDragStartCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "DragEventHandler" } }, - "nonce": { + "onDrop": { "defaultValue": null, "description": "", - "name": "nonce", + "name": "onDrop", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "DragEventHandler" } }, - "spellCheck": { + "onDropCapture": { "defaultValue": null, "description": "", - "name": "spellCheck", + "name": "onDropCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Booleanish" + "name": "DragEventHandler" } }, - "tabIndex": { + "onMouseDown": { "defaultValue": null, "description": "", - "name": "tabIndex", + "name": "onMouseDown", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "number" + "name": "MouseEventHandler" } }, - "translate": { + "onMouseDownCapture": { "defaultValue": null, "description": "", - "name": "translate", + "name": "onMouseDownCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "\"yes\" | \"no\"" + "name": "MouseEventHandler" } }, - "radioGroup": { + "onMouseEnter": { "defaultValue": null, "description": "", - "name": "radioGroup", + "name": "onMouseEnter", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "MouseEventHandler" } }, - "role": { + "onMouseLeave": { "defaultValue": null, "description": "", - "name": "role", + "name": "onMouseLeave", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "AriaRole" + "name": "MouseEventHandler" } }, - "about": { + "onMouseMove": { "defaultValue": null, "description": "", - "name": "about", + "name": "onMouseMove", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "MouseEventHandler" } }, - "content": { + "onMouseMoveCapture": { "defaultValue": null, "description": "", - "name": "content", + "name": "onMouseMoveCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "MouseEventHandler" } }, - "datatype": { + "onMouseOut": { "defaultValue": null, "description": "", - "name": "datatype", + "name": "onMouseOut", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "MouseEventHandler" } }, - "inlist": { + "onMouseOutCapture": { "defaultValue": null, "description": "", - "name": "inlist", + "name": "onMouseOutCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "any" + "name": "MouseEventHandler" } }, - "prefix": { + "onMouseOver": { "defaultValue": null, "description": "", - "name": "prefix", + "name": "onMouseOver", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "MouseEventHandler" } }, - "property": { + "onMouseOverCapture": { "defaultValue": null, "description": "", - "name": "property", + "name": "onMouseOverCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "MouseEventHandler" } }, - "rel": { + "onMouseUp": { "defaultValue": null, "description": "", - "name": "rel", + "name": "onMouseUp", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "MouseEventHandler" } }, - "resource": { + "onMouseUpCapture": { "defaultValue": null, "description": "", - "name": "resource", + "name": "onMouseUpCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "MouseEventHandler" } }, - "rev": { + "onSelect": { "defaultValue": null, "description": "", - "name": "rev", + "name": "onSelect", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "ReactEventHandler" } }, - "typeof": { + "onSelectCapture": { "defaultValue": null, "description": "", - "name": "typeof", + "name": "onSelectCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "ReactEventHandler" } }, - "vocab": { + "onTouchCancel": { "defaultValue": null, "description": "", - "name": "vocab", + "name": "onTouchCancel", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "TouchEventHandler" } }, - "autoCapitalize": { + "onTouchCancelCapture": { "defaultValue": null, "description": "", - "name": "autoCapitalize", + "name": "onTouchCancelCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "TouchEventHandler" } }, - "autoCorrect": { + "onTouchEnd": { "defaultValue": null, "description": "", - "name": "autoCorrect", + "name": "onTouchEnd", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "TouchEventHandler" } }, - "autoSave": { + "onTouchEndCapture": { "defaultValue": null, "description": "", - "name": "autoSave", + "name": "onTouchEndCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "TouchEventHandler" } }, - "itemProp": { + "onTouchMove": { "defaultValue": null, "description": "", - "name": "itemProp", + "name": "onTouchMove", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "TouchEventHandler" } }, - "itemScope": { + "onTouchMoveCapture": { "defaultValue": null, "description": "", - "name": "itemScope", + "name": "onTouchMoveCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "TouchEventHandler" } }, - "itemType": { + "onTouchStart": { "defaultValue": null, "description": "", - "name": "itemType", + "name": "onTouchStart", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "TouchEventHandler" } }, - "itemID": { + "onTouchStartCapture": { "defaultValue": null, "description": "", - "name": "itemID", + "name": "onTouchStartCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "TouchEventHandler" } }, - "itemRef": { + "onPointerDown": { "defaultValue": null, "description": "", - "name": "itemRef", + "name": "onPointerDown", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "PointerEventHandler" } }, - "results": { + "onPointerDownCapture": { "defaultValue": null, "description": "", - "name": "results", + "name": "onPointerDownCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "number" + "name": "PointerEventHandler" } }, - "security": { + "onPointerMove": { "defaultValue": null, "description": "", - "name": "security", + "name": "onPointerMove", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "PointerEventHandler" } }, - "unselectable": { + "onPointerMoveCapture": { "defaultValue": null, "description": "", - "name": "unselectable", + "name": "onPointerMoveCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "\"on\" | \"off\"" + "name": "PointerEventHandler" } }, - "inputMode": { + "onPointerUp": { "defaultValue": null, - "description": "Hints at the type of data that might be entered by the user while editing the element or its contents\n@see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}", - "name": "inputMode", + "description": "", + "name": "onPointerUp", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" + "name": "PointerEventHandler" } }, - "is": { + "onPointerUpCapture": { "defaultValue": null, - "description": "Specify that a standard HTML element should behave like a defined custom built-in element\n@see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}", - "name": "is", + "description": "", + "name": "onPointerUpCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "HTMLAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "PointerEventHandler" } }, - "aria-activedescendant": { + "onPointerCancel": { "defaultValue": null, - "description": "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.", - "name": "aria-activedescendant", + "description": "", + "name": "onPointerCancel", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "PointerEventHandler" } }, - "aria-atomic": { + "onPointerCancelCapture": { "defaultValue": null, - "description": "Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute.", - "name": "aria-atomic", + "description": "", + "name": "onPointerCancelCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Booleanish" + "name": "PointerEventHandler" } }, - "aria-autocomplete": { + "onPointerEnter": { "defaultValue": null, - "description": "Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.", - "name": "aria-autocomplete", + "description": "", + "name": "onPointerEnter", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "\"none\" | \"list\" | \"inline\" | \"both\"" + "name": "PointerEventHandler" } }, - "aria-braillelabel": { + "onPointerLeave": { "defaultValue": null, - "description": "Defines a string value that labels the current element, which is intended to be converted into Braille.\n@see aria-label.", - "name": "aria-braillelabel", + "description": "", + "name": "onPointerLeave", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "PointerEventHandler" } }, - "aria-brailleroledescription": { + "onPointerOver": { "defaultValue": null, - "description": "Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.\n@see aria-roledescription.", - "name": "aria-brailleroledescription", + "description": "", + "name": "onPointerOver", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "PointerEventHandler" } }, - "aria-busy": { + "onPointerOverCapture": { "defaultValue": null, "description": "", - "name": "aria-busy", + "name": "onPointerOverCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Booleanish" + "name": "PointerEventHandler" } }, - "aria-checked": { + "onPointerOut": { "defaultValue": null, - "description": "Indicates the current \"checked\" state of checkboxes, radio buttons, and other widgets.\n@see aria-pressed\n@see aria-selected.", - "name": "aria-checked", + "description": "", + "name": "onPointerOut", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean | \"true\" | \"false\" | \"mixed\"" + "name": "PointerEventHandler" } }, - "aria-colcount": { + "onPointerOutCapture": { "defaultValue": null, - "description": "Defines the total number of columns in a table, grid, or treegrid.\n@see aria-colindex.", - "name": "aria-colcount", + "description": "", + "name": "onPointerOutCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "number" + "name": "PointerEventHandler" } }, - "aria-colindex": { + "onGotPointerCapture": { "defaultValue": null, - "description": "Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.\n@see aria-colcount\n@see aria-colspan.", - "name": "aria-colindex", + "description": "", + "name": "onGotPointerCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "number" + "name": "PointerEventHandler" } }, - "aria-colindextext": { + "onGotPointerCaptureCapture": { "defaultValue": null, - "description": "Defines a human readable text alternative of aria-colindex.\n@see aria-rowindextext.", - "name": "aria-colindextext", + "description": "", + "name": "onGotPointerCaptureCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "PointerEventHandler" } }, - "aria-colspan": { + "onLostPointerCapture": { "defaultValue": null, - "description": "Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-colindex\n@see aria-rowspan.", - "name": "aria-colspan", + "description": "", + "name": "onLostPointerCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "number" + "name": "PointerEventHandler" } }, - "aria-controls": { + "onLostPointerCaptureCapture": { "defaultValue": null, - "description": "Identifies the element (or elements) whose contents or presence are controlled by the current element.\n@see aria-owns.", - "name": "aria-controls", + "description": "", + "name": "onLostPointerCaptureCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "PointerEventHandler" } }, - "aria-current": { + "onScroll": { "defaultValue": null, - "description": "Indicates the element that represents the current item within a container or set of related elements.", - "name": "aria-current", + "description": "", + "name": "onScroll", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\"" + "name": "UIEventHandler" } }, - "aria-describedby": { + "onScrollCapture": { "defaultValue": null, - "description": "Identifies the element (or elements) that describes the object.\n@see aria-labelledby", - "name": "aria-describedby", + "description": "", + "name": "onScrollCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "UIEventHandler" } }, - "aria-description": { + "onWheel": { "defaultValue": null, - "description": "Defines a string value that describes or annotates the current element.\n@see related aria-describedby.", - "name": "aria-description", + "description": "", + "name": "onWheel", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "WheelEventHandler" } }, - "aria-details": { + "onWheelCapture": { "defaultValue": null, - "description": "Identifies the element that provides a detailed, extended description for the object.\n@see aria-describedby.", - "name": "aria-details", + "description": "", + "name": "onWheelCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "WheelEventHandler" } }, - "aria-disabled": { + "onAnimationStart": { "defaultValue": null, - "description": "Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.\n@see aria-hidden\n@see aria-readonly.", - "name": "aria-disabled", + "description": "", + "name": "onAnimationStart", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Booleanish" + "name": "AnimationEventHandler" } }, - "aria-dropeffect": { + "onAnimationStartCapture": { "defaultValue": null, - "description": "Indicates what functions can be performed when a dragged object is released on the drop target.\n@deprecated in ARIA 1.1", - "name": "aria-dropeffect", + "description": "", + "name": "onAnimationStartCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "\"link\" | \"none\" | \"move\" | \"copy\" | \"execute\" | \"popup\"" + "name": "AnimationEventHandler" } }, - "aria-errormessage": { + "onAnimationEnd": { "defaultValue": null, - "description": "Identifies the element that provides an error message for the object.\n@see aria-invalid\n@see aria-describedby.", - "name": "aria-errormessage", + "description": "", + "name": "onAnimationEnd", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "AnimationEventHandler" } }, - "aria-expanded": { + "onAnimationEndCapture": { "defaultValue": null, - "description": "Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed.", - "name": "aria-expanded", + "description": "", + "name": "onAnimationEndCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Booleanish" + "name": "AnimationEventHandler" } }, - "aria-flowto": { + "onAnimationIteration": { "defaultValue": null, - "description": "Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,\nallows assistive technology to override the general default of reading in document source order.", - "name": "aria-flowto", + "description": "", + "name": "onAnimationIteration", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "string" + "name": "AnimationEventHandler" } }, - "aria-grabbed": { + "onAnimationIterationCapture": { "defaultValue": null, - "description": "Indicates an element's \"grabbed\" state in a drag-and-drop operation.\n@deprecated in ARIA 1.1", - "name": "aria-grabbed", + "description": "", + "name": "onAnimationIterationCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Booleanish" + "name": "AnimationEventHandler" } }, - "aria-haspopup": { + "onTransitionEnd": { "defaultValue": null, - "description": "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.", - "name": "aria-haspopup", + "description": "", + "name": "onTransitionEnd", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "boolean | \"dialog\" | \"menu\" | \"true\" | \"false\" | \"grid\" | \"listbox\" | \"tree\"" + "name": "TransitionEventHandler" } }, - "aria-hidden": { + "onTransitionEndCapture": { "defaultValue": null, - "description": "Indicates whether the element is exposed to an accessibility API.\n@see aria-disabled.", - "name": "aria-hidden", + "description": "", + "name": "onTransitionEndCapture", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "DOMAttributes" } ], "required": false, "type": { - "name": "Booleanish" + "name": "TransitionEventHandler" } - }, - "aria-invalid": { + } + }, + "XLoader.tsx": { + "className": { "defaultValue": null, - "description": "Indicates the entered value does not conform to the format expected by the application.\n@see aria-errormessage.", - "name": "aria-invalid", + "description": "To add a className on svg and icons.", + "name": "className", "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/packages/system/src/components/SVG/SVG.tsx", + "name": "SVGProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "fileName": "marigold/packages/system/src/components/SVG/SVG.tsx", + "name": "SVGProps" } ], "required": false, "type": { - "name": "boolean | \"true\" | \"false\" | \"grammar\" | \"spelling\"" + "name": "string" } }, - "aria-keyshortcuts": { + "string": { "defaultValue": null, - "description": "Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element.", - "name": "aria-keyshortcuts", + "description": "", + "name": "string", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "string | number" } }, - "aria-label": { + "clipPath": { "defaultValue": null, - "description": "Defines a string value that labels the current element.\n@see aria-labelledby.", - "name": "aria-label", + "description": "", + "name": "clipPath", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, @@ -155167,18 +165150,18 @@ "name": "string" } }, - "aria-labelledby": { + "filter": { "defaultValue": null, - "description": "Identifies the element (or elements) that labels the current element.\n@see aria-describedby.", - "name": "aria-labelledby", + "description": "", + "name": "filter", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, @@ -155186,132 +165169,132 @@ "name": "string" } }, - "aria-level": { + "mask": { "defaultValue": null, - "description": "Defines the hierarchical level of an element within a structure.", - "name": "aria-level", + "description": "", + "name": "mask", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "number" + "name": "string" } }, - "aria-live": { + "path": { "defaultValue": null, - "description": "Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region.", - "name": "aria-live", + "description": "", + "name": "path", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "\"off\" | \"assertive\" | \"polite\"" + "name": "string" } }, - "aria-modal": { + "suppressHydrationWarning": { "defaultValue": null, - "description": "Indicates whether an element is modal when displayed.", - "name": "aria-modal", + "description": "", + "name": "suppressHydrationWarning", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "Booleanish" + "name": "boolean" } }, - "aria-multiline": { + "color": { "defaultValue": null, - "description": "Indicates whether a text box accepts multiple lines of input or only a single line.", - "name": "aria-multiline", + "description": "", + "name": "color", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "Booleanish" + "name": "string" } }, - "aria-multiselectable": { + "height": { "defaultValue": null, - "description": "Indicates that the user may select more than one item from the current selectable descendants.", - "name": "aria-multiselectable", + "description": "", + "name": "height", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "Booleanish" + "name": "string | number" } }, - "aria-orientation": { + "id": { "defaultValue": null, - "description": "Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous.", - "name": "aria-orientation", + "description": "", + "name": "id", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "\"vertical\" | \"horizontal\"" + "name": "string" } }, - "aria-owns": { + "lang": { "defaultValue": null, - "description": "Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship\nbetween DOM elements where the DOM hierarchy cannot be used to represent the relationship.\n@see aria-controls.", - "name": "aria-owns", + "description": "", + "name": "lang", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, @@ -155319,132 +165302,132 @@ "name": "string" } }, - "aria-placeholder": { + "max": { "defaultValue": null, - "description": "Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.\nA hint could be a sample value or a brief description of the expected format.", - "name": "aria-placeholder", + "description": "", + "name": "max", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "string | number" } }, - "aria-posinset": { + "media": { "defaultValue": null, - "description": "Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-setsize.", - "name": "aria-posinset", + "description": "", + "name": "media", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "number" + "name": "string" } }, - "aria-pressed": { + "method": { "defaultValue": null, - "description": "Indicates the current \"pressed\" state of toggle buttons.\n@see aria-checked\n@see aria-selected.", - "name": "aria-pressed", + "description": "", + "name": "method", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "boolean | \"true\" | \"false\" | \"mixed\"" + "name": "string" } }, - "aria-readonly": { + "min": { "defaultValue": null, - "description": "Indicates that the element is not editable, but is otherwise operable.\n@see aria-disabled.", - "name": "aria-readonly", + "description": "", + "name": "min", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "Booleanish" + "name": "string | number" } }, - "aria-relevant": { + "name": { "defaultValue": null, - "description": "Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.\n@see aria-atomic.", - "name": "aria-relevant", + "description": "", + "name": "name", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "\"text\" | \"additions\" | \"additions removals\" | \"additions text\" | \"all\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\"" + "name": "string" } }, - "aria-required": { + "target": { "defaultValue": null, - "description": "Indicates that user input is required on the element before a form may be submitted.", - "name": "aria-required", + "description": "", + "name": "target", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "Booleanish" + "name": "string" } }, - "aria-roledescription": { + "type": { "defaultValue": null, - "description": "Defines a human-readable, author-localized description for the role of an element.", - "name": "aria-roledescription", + "description": "", + "name": "type", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, @@ -155452,3571 +165435,3571 @@ "name": "string" } }, - "aria-rowcount": { + "width": { "defaultValue": null, - "description": "Defines the total number of rows in a table, grid, or treegrid.\n@see aria-rowindex.", - "name": "aria-rowcount", + "description": "", + "name": "width", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "number" + "name": "string | number" } }, - "aria-rowindex": { + "role": { "defaultValue": null, - "description": "Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.\n@see aria-rowcount\n@see aria-rowspan.", - "name": "aria-rowindex", + "description": "", + "name": "role", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "number" + "name": "AriaRole" } }, - "aria-rowindextext": { + "tabIndex": { "defaultValue": null, - "description": "Defines a human readable text alternative of aria-rowindex.\n@see aria-colindextext.", - "name": "aria-rowindextext", + "description": "", + "name": "tabIndex", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "number" } }, - "aria-rowspan": { + "crossOrigin": { "defaultValue": null, - "description": "Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.\n@see aria-rowindex\n@see aria-colspan.", - "name": "aria-rowspan", + "description": "", + "name": "crossOrigin", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "number" + "name": "CrossOrigin" } }, - "aria-selected": { + "accentHeight": { "defaultValue": null, - "description": "Indicates the current \"selected\" state of various widgets.\n@see aria-checked\n@see aria-pressed.", - "name": "aria-selected", + "description": "", + "name": "accentHeight", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "Booleanish" + "name": "string | number" } }, - "aria-setsize": { + "accumulate": { "defaultValue": null, - "description": "Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.\n@see aria-posinset.", - "name": "aria-setsize", + "description": "", + "name": "accumulate", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "number" + "name": "\"none\" | \"sum\"" } }, - "aria-sort": { + "additive": { "defaultValue": null, - "description": "Indicates if items in a table or grid are sorted in ascending or descending order.", - "name": "aria-sort", + "description": "", + "name": "additive", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "\"none\" | \"ascending\" | \"descending\" | \"other\"" + "name": "\"sum\" | \"replace\"" } }, - "aria-valuemax": { + "alignmentBaseline": { "defaultValue": null, - "description": "Defines the maximum allowed value for a range widget.", - "name": "aria-valuemax", + "description": "", + "name": "alignmentBaseline", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "number" + "name": "\"alphabetic\" | \"hanging\" | \"ideographic\" | \"mathematical\" | \"auto\" | \"baseline\" | \"before-edge\" | \"text-before-edge\" | \"middle\" | \"central\" | \"after-edge\" | \"text-after-edge\" | \"inherit\"" } }, - "aria-valuemin": { + "allowReorder": { "defaultValue": null, - "description": "Defines the minimum allowed value for a range widget.", - "name": "aria-valuemin", + "description": "", + "name": "allowReorder", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "number" + "name": "\"no\" | \"yes\"" } }, - "aria-valuenow": { + "alphabetic": { "defaultValue": null, - "description": "Defines the current value for a range widget.\n@see aria-valuetext.", - "name": "aria-valuenow", + "description": "", + "name": "alphabetic", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "number" + "name": "string | number" } }, - "aria-valuetext": { + "amplitude": { "defaultValue": null, - "description": "Defines the human readable text alternative of aria-valuenow for a range widget.", - "name": "aria-valuetext", + "description": "", + "name": "amplitude", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "AriaAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "string | number" } }, - "dangerouslySetInnerHTML": { + "arabicForm": { "defaultValue": null, "description": "", - "name": "dangerouslySetInnerHTML", + "name": "arabicForm", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "{ __html: string | TrustedHTML; }" + "name": "\"initial\" | \"medial\" | \"terminal\" | \"isolated\"" } }, - "onCopy": { + "ascent": { "defaultValue": null, "description": "", - "name": "onCopy", + "name": "ascent", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "string | number" } }, - "onCopyCapture": { + "attributeName": { "defaultValue": null, "description": "", - "name": "onCopyCapture", + "name": "attributeName", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "string" } }, - "onCut": { + "attributeType": { "defaultValue": null, "description": "", - "name": "onCut", + "name": "attributeType", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "string" } }, - "onCutCapture": { + "autoReverse": { "defaultValue": null, "description": "", - "name": "onCutCapture", + "name": "autoReverse", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "Booleanish" } }, - "onPaste": { + "azimuth": { "defaultValue": null, "description": "", - "name": "onPaste", + "name": "azimuth", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "string | number" } }, - "onPasteCapture": { + "baseFrequency": { "defaultValue": null, "description": "", - "name": "onPasteCapture", + "name": "baseFrequency", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "string | number" } }, - "onCompositionEnd": { + "baselineShift": { "defaultValue": null, "description": "", - "name": "onCompositionEnd", + "name": "baselineShift", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "string | number" } }, - "onCompositionEndCapture": { + "baseProfile": { "defaultValue": null, "description": "", - "name": "onCompositionEndCapture", + "name": "baseProfile", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "string | number" } }, - "onCompositionStart": { + "bbox": { "defaultValue": null, "description": "", - "name": "onCompositionStart", + "name": "bbox", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "string | number" } }, - "onCompositionStartCapture": { + "begin": { "defaultValue": null, "description": "", - "name": "onCompositionStartCapture", + "name": "begin", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "string | number" } }, - "onCompositionUpdate": { + "bias": { "defaultValue": null, "description": "", - "name": "onCompositionUpdate", + "name": "bias", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "string | number" } }, - "onCompositionUpdateCapture": { + "by": { "defaultValue": null, "description": "", - "name": "onCompositionUpdateCapture", + "name": "by", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "string | number" } }, - "onFocus": { + "calcMode": { "defaultValue": null, "description": "", - "name": "onFocus", + "name": "calcMode", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "string | number" } }, - "onFocusCapture": { + "capHeight": { "defaultValue": null, "description": "", - "name": "onFocusCapture", + "name": "capHeight", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "string | number" } }, - "onBlur": { + "clip": { "defaultValue": null, "description": "", - "name": "onBlur", + "name": "clip", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "string | number" } }, - "onBlurCapture": { + "clipPathUnits": { "defaultValue": null, "description": "", - "name": "onBlurCapture", + "name": "clipPathUnits", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "string | number" } }, - "onChange": { + "clipRule": { "defaultValue": null, "description": "", - "name": "onChange", + "name": "clipRule", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string | number" } }, - "onChangeCapture": { + "colorInterpolation": { "defaultValue": null, "description": "", - "name": "onChangeCapture", + "name": "colorInterpolation", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string | number" } }, - "onBeforeInput": { + "colorInterpolationFilters": { "defaultValue": null, "description": "", - "name": "onBeforeInput", + "name": "colorInterpolationFilters", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "\"auto\" | \"inherit\" | \"sRGB\" | \"linearRGB\"" } }, - "onBeforeInputCapture": { + "colorProfile": { "defaultValue": null, "description": "", - "name": "onBeforeInputCapture", + "name": "colorProfile", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string | number" } }, - "onInput": { + "colorRendering": { "defaultValue": null, "description": "", - "name": "onInput", + "name": "colorRendering", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string | number" } }, - "onInputCapture": { + "contentScriptType": { "defaultValue": null, "description": "", - "name": "onInputCapture", + "name": "contentScriptType", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string | number" } }, - "onReset": { + "contentStyleType": { "defaultValue": null, "description": "", - "name": "onReset", + "name": "contentStyleType", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string | number" } }, - "onResetCapture": { + "cursor": { "defaultValue": null, "description": "", - "name": "onResetCapture", + "name": "cursor", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string | number" } }, - "onSubmit": { + "cx": { "defaultValue": null, "description": "", - "name": "onSubmit", + "name": "cx", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string | number" } }, - "onSubmitCapture": { + "cy": { "defaultValue": null, "description": "", - "name": "onSubmitCapture", + "name": "cy", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string | number" } }, - "onInvalid": { + "d": { "defaultValue": null, "description": "", - "name": "onInvalid", + "name": "d", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string" } }, - "onInvalidCapture": { + "decelerate": { "defaultValue": null, "description": "", - "name": "onInvalidCapture", + "name": "decelerate", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string | number" } }, - "onLoad": { + "descent": { "defaultValue": null, "description": "", - "name": "onLoad", + "name": "descent", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onLoadCapture": { + "diffuseConstant": { "defaultValue": null, "description": "", - "name": "onLoadCapture", + "name": "diffuseConstant", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onError": { + "direction": { "defaultValue": null, "description": "", - "name": "onError", + "name": "direction", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onErrorCapture": { + "display": { "defaultValue": null, "description": "", - "name": "onErrorCapture", + "name": "display", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onKeyDown": { + "divisor": { "defaultValue": null, "description": "", - "name": "onKeyDown", + "name": "divisor", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "string | number" } }, - "onKeyDownCapture": { + "dominantBaseline": { "defaultValue": null, "description": "", - "name": "onKeyDownCapture", + "name": "dominantBaseline", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "string | number" } }, - "onKeyPress": { + "dur": { "defaultValue": null, - "description": "@deprecated", - "name": "onKeyPress", + "description": "", + "name": "dur", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "string | number" } }, - "onKeyPressCapture": { + "dx": { "defaultValue": null, - "description": "@deprecated", - "name": "onKeyPressCapture", + "description": "", + "name": "dx", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "string | number" } }, - "onKeyUp": { + "dy": { "defaultValue": null, "description": "", - "name": "onKeyUp", + "name": "dy", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "string | number" } }, - "onKeyUpCapture": { + "edgeMode": { "defaultValue": null, "description": "", - "name": "onKeyUpCapture", + "name": "edgeMode", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "string | number" } }, - "onAbort": { + "elevation": { "defaultValue": null, "description": "", - "name": "onAbort", + "name": "elevation", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onAbortCapture": { + "enableBackground": { "defaultValue": null, "description": "", - "name": "onAbortCapture", + "name": "enableBackground", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onCanPlay": { + "end": { "defaultValue": null, "description": "", - "name": "onCanPlay", + "name": "end", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onCanPlayCapture": { + "exponent": { "defaultValue": null, "description": "", - "name": "onCanPlayCapture", + "name": "exponent", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onCanPlayThrough": { + "externalResourcesRequired": { "defaultValue": null, "description": "", - "name": "onCanPlayThrough", + "name": "externalResourcesRequired", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "Booleanish" } }, - "onCanPlayThroughCapture": { + "fillOpacity": { "defaultValue": null, "description": "", - "name": "onCanPlayThroughCapture", + "name": "fillOpacity", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onDurationChange": { + "fillRule": { "defaultValue": null, "description": "", - "name": "onDurationChange", + "name": "fillRule", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "\"inherit\" | \"nonzero\" | \"evenodd\"" } }, - "onDurationChangeCapture": { + "filterRes": { "defaultValue": null, "description": "", - "name": "onDurationChangeCapture", + "name": "filterRes", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onEmptied": { + "filterUnits": { "defaultValue": null, "description": "", - "name": "onEmptied", + "name": "filterUnits", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onEmptiedCapture": { + "floodColor": { "defaultValue": null, "description": "", - "name": "onEmptiedCapture", + "name": "floodColor", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onEncrypted": { + "floodOpacity": { "defaultValue": null, "description": "", - "name": "onEncrypted", + "name": "floodOpacity", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onEncryptedCapture": { + "focusable": { "defaultValue": null, "description": "", - "name": "onEncryptedCapture", + "name": "focusable", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "\"auto\" | Booleanish" } }, - "onEnded": { + "fontFamily": { "defaultValue": null, "description": "", - "name": "onEnded", + "name": "fontFamily", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onEndedCapture": { + "fontSize": { "defaultValue": null, "description": "", - "name": "onEndedCapture", + "name": "fontSize", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onLoadedData": { + "fontSizeAdjust": { "defaultValue": null, "description": "", - "name": "onLoadedData", + "name": "fontSizeAdjust", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onLoadedDataCapture": { + "fontStretch": { "defaultValue": null, "description": "", - "name": "onLoadedDataCapture", + "name": "fontStretch", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onLoadedMetadata": { + "fontStyle": { "defaultValue": null, "description": "", - "name": "onLoadedMetadata", + "name": "fontStyle", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onLoadedMetadataCapture": { + "fontVariant": { "defaultValue": null, "description": "", - "name": "onLoadedMetadataCapture", + "name": "fontVariant", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onLoadStart": { + "fontWeight": { "defaultValue": null, "description": "", - "name": "onLoadStart", + "name": "fontWeight", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onLoadStartCapture": { + "format": { "defaultValue": null, "description": "", - "name": "onLoadStartCapture", + "name": "format", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onPause": { + "fr": { "defaultValue": null, "description": "", - "name": "onPause", + "name": "fr", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onPauseCapture": { + "from": { "defaultValue": null, "description": "", - "name": "onPauseCapture", + "name": "from", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onPlay": { + "fx": { "defaultValue": null, "description": "", - "name": "onPlay", + "name": "fx", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onPlayCapture": { + "fy": { "defaultValue": null, "description": "", - "name": "onPlayCapture", + "name": "fy", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onPlaying": { + "g1": { "defaultValue": null, "description": "", - "name": "onPlaying", + "name": "g1", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onPlayingCapture": { + "g2": { "defaultValue": null, "description": "", - "name": "onPlayingCapture", + "name": "g2", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onProgress": { + "glyphName": { "defaultValue": null, "description": "", - "name": "onProgress", + "name": "glyphName", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onProgressCapture": { + "glyphOrientationHorizontal": { "defaultValue": null, "description": "", - "name": "onProgressCapture", + "name": "glyphOrientationHorizontal", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onRateChange": { + "glyphOrientationVertical": { "defaultValue": null, "description": "", - "name": "onRateChange", + "name": "glyphOrientationVertical", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onRateChangeCapture": { + "glyphRef": { "defaultValue": null, "description": "", - "name": "onRateChangeCapture", + "name": "glyphRef", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onResize": { + "gradientTransform": { "defaultValue": null, "description": "", - "name": "onResize", + "name": "gradientTransform", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onResizeCapture": { + "gradientUnits": { "defaultValue": null, "description": "", - "name": "onResizeCapture", + "name": "gradientUnits", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onSeeked": { + "hanging": { "defaultValue": null, "description": "", - "name": "onSeeked", + "name": "hanging", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onSeekedCapture": { + "horizAdvX": { "defaultValue": null, "description": "", - "name": "onSeekedCapture", + "name": "horizAdvX", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onSeeking": { + "horizOriginX": { "defaultValue": null, "description": "", - "name": "onSeeking", + "name": "horizOriginX", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onSeekingCapture": { + "href": { "defaultValue": null, "description": "", - "name": "onSeekingCapture", + "name": "href", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onStalled": { + "ideographic": { "defaultValue": null, "description": "", - "name": "onStalled", + "name": "ideographic", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onStalledCapture": { + "imageRendering": { "defaultValue": null, "description": "", - "name": "onStalledCapture", + "name": "imageRendering", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onSuspend": { + "in2": { "defaultValue": null, "description": "", - "name": "onSuspend", + "name": "in2", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onSuspendCapture": { + "in": { "defaultValue": null, "description": "", - "name": "onSuspendCapture", + "name": "in", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onTimeUpdate": { + "intercept": { "defaultValue": null, "description": "", - "name": "onTimeUpdate", + "name": "intercept", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onTimeUpdateCapture": { + "k1": { "defaultValue": null, "description": "", - "name": "onTimeUpdateCapture", + "name": "k1", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onVolumeChange": { + "k2": { "defaultValue": null, "description": "", - "name": "onVolumeChange", + "name": "k2", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onVolumeChangeCapture": { + "k3": { "defaultValue": null, "description": "", - "name": "onVolumeChangeCapture", + "name": "k3", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onWaiting": { + "k4": { "defaultValue": null, "description": "", - "name": "onWaiting", + "name": "k4", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onWaitingCapture": { + "k": { "defaultValue": null, "description": "", - "name": "onWaitingCapture", + "name": "k", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onAuxClick": { + "kernelMatrix": { "defaultValue": null, "description": "", - "name": "onAuxClick", + "name": "kernelMatrix", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onAuxClickCapture": { + "kernelUnitLength": { "defaultValue": null, "description": "", - "name": "onAuxClickCapture", + "name": "kernelUnitLength", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onClick": { + "kerning": { "defaultValue": null, "description": "", - "name": "onClick", + "name": "kerning", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onClickCapture": { + "keyPoints": { "defaultValue": null, "description": "", - "name": "onClickCapture", + "name": "keyPoints", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onContextMenu": { + "keySplines": { "defaultValue": null, "description": "", - "name": "onContextMenu", + "name": "keySplines", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onContextMenuCapture": { + "keyTimes": { "defaultValue": null, "description": "", - "name": "onContextMenuCapture", + "name": "keyTimes", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onDoubleClick": { + "lengthAdjust": { "defaultValue": null, "description": "", - "name": "onDoubleClick", + "name": "lengthAdjust", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onDoubleClickCapture": { + "letterSpacing": { "defaultValue": null, "description": "", - "name": "onDoubleClickCapture", + "name": "letterSpacing", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onDrag": { + "lightingColor": { "defaultValue": null, "description": "", - "name": "onDrag", + "name": "lightingColor", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string | number" } }, - "onDragCapture": { + "limitingConeAngle": { "defaultValue": null, "description": "", - "name": "onDragCapture", + "name": "limitingConeAngle", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string | number" } }, - "onDragEnd": { + "local": { "defaultValue": null, "description": "", - "name": "onDragEnd", + "name": "local", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string | number" } }, - "onDragEndCapture": { + "markerEnd": { "defaultValue": null, "description": "", - "name": "onDragEndCapture", + "name": "markerEnd", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string" } }, - "onDragEnter": { + "markerHeight": { "defaultValue": null, "description": "", - "name": "onDragEnter", + "name": "markerHeight", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string | number" } }, - "onDragEnterCapture": { + "markerMid": { "defaultValue": null, "description": "", - "name": "onDragEnterCapture", + "name": "markerMid", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string" } }, - "onDragExit": { + "markerStart": { "defaultValue": null, "description": "", - "name": "onDragExit", + "name": "markerStart", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string" } }, - "onDragExitCapture": { + "markerUnits": { "defaultValue": null, "description": "", - "name": "onDragExitCapture", + "name": "markerUnits", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string | number" } }, - "onDragLeave": { + "markerWidth": { "defaultValue": null, "description": "", - "name": "onDragLeave", + "name": "markerWidth", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string | number" } }, - "onDragLeaveCapture": { + "maskContentUnits": { "defaultValue": null, "description": "", - "name": "onDragLeaveCapture", + "name": "maskContentUnits", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string | number" } }, - "onDragOver": { + "maskUnits": { "defaultValue": null, "description": "", - "name": "onDragOver", + "name": "maskUnits", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string | number" } }, - "onDragOverCapture": { + "mathematical": { "defaultValue": null, "description": "", - "name": "onDragOverCapture", + "name": "mathematical", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string | number" } }, - "onDragStart": { + "mode": { "defaultValue": null, "description": "", - "name": "onDragStart", + "name": "mode", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string | number" } }, - "onDragStartCapture": { + "numOctaves": { "defaultValue": null, "description": "", - "name": "onDragStartCapture", + "name": "numOctaves", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string | number" } }, - "onDrop": { + "offset": { "defaultValue": null, "description": "", - "name": "onDrop", + "name": "offset", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string | number" } }, - "onDropCapture": { + "opacity": { "defaultValue": null, "description": "", - "name": "onDropCapture", + "name": "opacity", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "DragEventHandler" + "name": "string | number" } }, - "onMouseDown": { + "operator": { "defaultValue": null, "description": "", - "name": "onMouseDown", + "name": "operator", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onMouseDownCapture": { + "order": { "defaultValue": null, "description": "", - "name": "onMouseDownCapture", + "name": "order", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onMouseEnter": { + "orient": { "defaultValue": null, "description": "", - "name": "onMouseEnter", + "name": "orient", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onMouseLeave": { + "orientation": { "defaultValue": null, "description": "", - "name": "onMouseLeave", + "name": "orientation", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onMouseMove": { + "origin": { "defaultValue": null, "description": "", - "name": "onMouseMove", + "name": "origin", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onMouseMoveCapture": { + "overflow": { "defaultValue": null, "description": "", - "name": "onMouseMoveCapture", + "name": "overflow", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onMouseOut": { + "overlinePosition": { "defaultValue": null, "description": "", - "name": "onMouseOut", + "name": "overlinePosition", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onMouseOutCapture": { + "overlineThickness": { "defaultValue": null, "description": "", - "name": "onMouseOutCapture", + "name": "overlineThickness", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onMouseOver": { + "paintOrder": { "defaultValue": null, "description": "", - "name": "onMouseOver", + "name": "paintOrder", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onMouseOverCapture": { + "panose1": { "defaultValue": null, "description": "", - "name": "onMouseOverCapture", + "name": "panose1", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onMouseUp": { + "pathLength": { "defaultValue": null, "description": "", - "name": "onMouseUp", + "name": "pathLength", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string | number" } }, - "onMouseUpCapture": { + "patternContentUnits": { "defaultValue": null, "description": "", - "name": "onMouseUpCapture", + "name": "patternContentUnits", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "string" } }, - "onSelect": { + "patternTransform": { "defaultValue": null, "description": "", - "name": "onSelect", + "name": "patternTransform", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string | number" } }, - "onSelectCapture": { + "patternUnits": { "defaultValue": null, "description": "", - "name": "onSelectCapture", + "name": "patternUnits", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onTouchCancel": { + "pointerEvents": { "defaultValue": null, "description": "", - "name": "onTouchCancel", + "name": "pointerEvents", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "string | number" } }, - "onTouchCancelCapture": { + "points": { "defaultValue": null, "description": "", - "name": "onTouchCancelCapture", + "name": "points", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "string" } }, - "onTouchEnd": { + "pointsAtX": { "defaultValue": null, "description": "", - "name": "onTouchEnd", + "name": "pointsAtX", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "string | number" } }, - "onTouchEndCapture": { + "pointsAtY": { "defaultValue": null, "description": "", - "name": "onTouchEndCapture", + "name": "pointsAtY", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "string | number" } }, - "onTouchMove": { + "pointsAtZ": { "defaultValue": null, "description": "", - "name": "onTouchMove", + "name": "pointsAtZ", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "string | number" } }, - "onTouchMoveCapture": { + "preserveAlpha": { "defaultValue": null, "description": "", - "name": "onTouchMoveCapture", + "name": "preserveAlpha", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "Booleanish" } }, - "onTouchStart": { + "preserveAspectRatio": { "defaultValue": null, "description": "", - "name": "onTouchStart", + "name": "preserveAspectRatio", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "string" } }, - "onTouchStartCapture": { + "primitiveUnits": { "defaultValue": null, "description": "", - "name": "onTouchStartCapture", + "name": "primitiveUnits", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "string | number" } }, - "onPointerDown": { + "r": { "defaultValue": null, "description": "", - "name": "onPointerDown", + "name": "r", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onPointerDownCapture": { + "radius": { "defaultValue": null, "description": "", - "name": "onPointerDownCapture", + "name": "radius", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onPointerMove": { + "refX": { "defaultValue": null, "description": "", - "name": "onPointerMove", + "name": "refX", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onPointerMoveCapture": { + "refY": { "defaultValue": null, "description": "", - "name": "onPointerMoveCapture", + "name": "refY", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onPointerUp": { + "renderingIntent": { "defaultValue": null, "description": "", - "name": "onPointerUp", + "name": "renderingIntent", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onPointerUpCapture": { + "repeatCount": { "defaultValue": null, "description": "", - "name": "onPointerUpCapture", + "name": "repeatCount", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onPointerCancel": { + "repeatDur": { "defaultValue": null, "description": "", - "name": "onPointerCancel", + "name": "repeatDur", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onPointerCancelCapture": { + "requiredExtensions": { "defaultValue": null, "description": "", - "name": "onPointerCancelCapture", + "name": "requiredExtensions", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onPointerEnter": { + "requiredFeatures": { "defaultValue": null, "description": "", - "name": "onPointerEnter", + "name": "requiredFeatures", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onPointerLeave": { + "restart": { "defaultValue": null, "description": "", - "name": "onPointerLeave", + "name": "restart", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onPointerOver": { + "result": { "defaultValue": null, "description": "", - "name": "onPointerOver", + "name": "result", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string" } }, - "onPointerOverCapture": { + "rotate": { "defaultValue": null, "description": "", - "name": "onPointerOverCapture", + "name": "rotate", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onPointerOut": { + "rx": { "defaultValue": null, "description": "", - "name": "onPointerOut", + "name": "rx", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onPointerOutCapture": { + "ry": { "defaultValue": null, "description": "", - "name": "onPointerOutCapture", + "name": "ry", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onGotPointerCapture": { + "scale": { "defaultValue": null, "description": "", - "name": "onGotPointerCapture", + "name": "scale", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onGotPointerCaptureCapture": { + "seed": { "defaultValue": null, "description": "", - "name": "onGotPointerCaptureCapture", + "name": "seed", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onLostPointerCapture": { + "shapeRendering": { "defaultValue": null, "description": "", - "name": "onLostPointerCapture", + "name": "shapeRendering", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onLostPointerCaptureCapture": { + "slope": { "defaultValue": null, "description": "", - "name": "onLostPointerCaptureCapture", + "name": "slope", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "string | number" } }, - "onScroll": { + "spacing": { "defaultValue": null, "description": "", - "name": "onScroll", + "name": "spacing", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "UIEventHandler" + "name": "string | number" } }, - "onScrollCapture": { + "specularConstant": { "defaultValue": null, "description": "", - "name": "onScrollCapture", + "name": "specularConstant", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "UIEventHandler" + "name": "string | number" } }, - "onWheel": { + "specularExponent": { "defaultValue": null, "description": "", - "name": "onWheel", + "name": "specularExponent", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "string | number" } }, - "onWheelCapture": { + "speed": { "defaultValue": null, "description": "", - "name": "onWheelCapture", + "name": "speed", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "string | number" } }, - "onAnimationStart": { + "spreadMethod": { "defaultValue": null, "description": "", - "name": "onAnimationStart", + "name": "spreadMethod", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "string" } }, - "onAnimationStartCapture": { + "startOffset": { "defaultValue": null, "description": "", - "name": "onAnimationStartCapture", + "name": "startOffset", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "string | number" } }, - "onAnimationEnd": { + "stdDeviation": { "defaultValue": null, "description": "", - "name": "onAnimationEnd", + "name": "stdDeviation", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "string | number" } }, - "onAnimationEndCapture": { + "stemh": { "defaultValue": null, "description": "", - "name": "onAnimationEndCapture", + "name": "stemh", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "string | number" } }, - "onAnimationIteration": { + "stemv": { "defaultValue": null, "description": "", - "name": "onAnimationIteration", + "name": "stemv", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "string | number" } }, - "onAnimationIterationCapture": { + "stitchTiles": { "defaultValue": null, "description": "", - "name": "onAnimationIterationCapture", + "name": "stitchTiles", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "string | number" } }, - "onTransitionEnd": { + "stopColor": { "defaultValue": null, "description": "", - "name": "onTransitionEnd", + "name": "stopColor", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "TransitionEventHandler" + "name": "string" } }, - "onTransitionEndCapture": { + "stopOpacity": { "defaultValue": null, "description": "", - "name": "onTransitionEndCapture", + "name": "stopOpacity", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "DOMAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "TransitionEventHandler" + "name": "string | number" } }, - "align": { + "strikethroughPosition": { "defaultValue": null, - "description": "Set the text alignment for the element.", - "name": "align", + "description": "", + "name": "strikethroughPosition", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" + }, "declarations": [ { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "\"center\" | \"none\" | \"left\" | \"right\"" + "name": "string | number" } }, - "fontSize": { + "strikethroughThickness": { "defaultValue": null, - "description": "Set the font size for the text element.", - "name": "fontSize", + "description": "", + "name": "strikethroughThickness", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" + }, "declarations": [ { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "\"base\" | \"xs\" | \"sm\" | \"lg\" | \"xl\" | \"2xl\" | \"3xl\" | \"4xl\" | \"5xl\" | \"6xl\" | \"7xl\" | \"8xl\" | \"9xl\"" + "name": "string | number" } }, - "weight": { + "stroke": { "defaultValue": null, - "description": "Set the font weight for the text element.", - "name": "weight", + "description": "", + "name": "stroke", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" + }, "declarations": [ { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "\"thin\" | \"extralight\" | \"light\" | \"regular\" | \"medium\" | \"semibold\" | \"bold\" | \"extrabold\" | \"black\"" + "name": "string" } }, - "fontStyle": { + "strokeDasharray": { "defaultValue": null, - "description": "Set the font style for the text element.", - "name": "fontStyle", + "description": "", + "name": "strokeDasharray", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" + }, "declarations": [ { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "\"italic\" | \"normal\"" + "name": "string | number" } }, - "cursor": { + "strokeDashoffset": { "defaultValue": null, - "description": "Set the cursor for the element.", - "name": "cursor", + "description": "", + "name": "strokeDashoffset", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" + }, "declarations": [ { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "\"progress\" | \"text\" | \"none\" | \"auto\" | \"default\" | \"pointer\" | \"wait\" | \"move\" | \"help\" | \"notAllowed\" | \"cell\" | \"crosshair\" | \"vertical\" | \"alias\" | \"copy\" | \"noDrop\" | \"grap\" | ... 8 more ..." + "name": "string | number" } - } - }, - "Tiles.tsx": { - "children": { + }, + "strokeLinecap": { "defaultValue": null, - "description": "The children of the component.", - "name": "children", + "description": "", + "name": "strokeLinecap", "parent": { - "fileName": "marigold/packages/components/src/Tiles/Tiles.tsx", - "name": "TilesProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Tiles/Tiles.tsx", - "name": "TilesProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], - "required": true, + "required": false, "type": { - "name": "ReactNode" + "name": "\"inherit\" | \"butt\" | \"round\" | \"square\"" } }, - "tilesWidth": { - "defaultValue": { - "value": "250px" - }, - "description": "Set minimum width for all items inside.", - "name": "tilesWidth", + "strokeLinejoin": { + "defaultValue": null, + "description": "", + "name": "strokeLinejoin", "parent": { - "fileName": "marigold/packages/components/src/Tiles/Tiles.tsx", - "name": "TilesProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Tiles/Tiles.tsx", - "name": "TilesProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "\"inherit\" | \"round\" | \"miter\" | \"bevel\"" } }, - "stretch": { - "defaultValue": { - "value": false - }, - "description": "Tiles will stretch to available width and will distribute their width equally. Note that this can make them wider than the specified tiles width, but not smaller than the given \"tilesWidth\". Basically, this is full responsive mode.", - "name": "stretch", + "strokeMiterlimit": { + "defaultValue": null, + "description": "", + "name": "strokeMiterlimit", "parent": { - "fileName": "marigold/packages/components/src/Tiles/Tiles.tsx", - "name": "TilesProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Tiles/Tiles.tsx", - "name": "TilesProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string | number" } }, - "equalHeight": { - "defaultValue": { - "value": false - }, - "description": "If true, all items will have the size of the biggest item.", - "name": "equalHeight", + "strokeOpacity": { + "defaultValue": null, + "description": "", + "name": "strokeOpacity", "parent": { - "fileName": "marigold/packages/components/src/Tiles/Tiles.tsx", - "name": "TilesProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Tiles/Tiles.tsx", - "name": "TilesProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string | number" } }, - "space": { - "defaultValue": { - "value": 0 + "strokeWidth": { + "defaultValue": null, + "description": "", + "name": "strokeWidth", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, - "description": "The space between the children.", - "name": "space", "declarations": [ { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "0 | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | 32 | 36 | 40 | 44 | 48 | 52 | 56 | 60 | 64 | 72 | 80 | 96" + "name": "string | number" } - } - }, - "TextArea.tsx": { - "width": { - "defaultValue": { - "value": "full" - }, - "description": "Sets the width of the field. You can see allowed tokens here: https://tailwindcss.com/docs/width", - "name": "width", + }, + "surfaceScale": { + "defaultValue": null, + "description": "", + "name": "surfaceScale", "parent": { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "0 | \"auto\" | \"full\" | \"fit\" | \"min\" | \"max\" | \"screen\" | \"svh\" | \"lvh\" | \"dvh\" | \"px\" | \"0.5\" | 1 | \"1.5\" | 2 | \"2.5\" | 3 | \"3.5\" | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 16 | 20 | 24 | 28 | ... 37 more ..." + "name": "string | number" } }, - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the textarea is disabled.", - "name": "disabled", + "systemLanguage": { + "defaultValue": null, + "description": "", + "name": "systemLanguage", "parent": { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string | number" } }, - "required": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the textarea is required.", - "name": "required", + "tableValues": { + "defaultValue": null, + "description": "", + "name": "tableValues", "parent": { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string | number" } }, - "error": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the field is considered invalid and if set the `errorMessage` is shown instead of the `description`.", - "name": "error", + "targetX": { + "defaultValue": null, + "description": "", + "name": "targetX", "parent": { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string | number" } }, - "readOnly": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the textarea is read-only.", - "name": "readOnly", + "targetY": { + "defaultValue": null, + "description": "", + "name": "targetY", "parent": { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string | number" } }, - "value": { - "defaultValue": { - "value": "none" - }, - "description": "The value of the textarea.", - "name": "value", + "textAnchor": { + "defaultValue": null, + "description": "", + "name": "textAnchor", "parent": { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, @@ -159024,102 +169007,94 @@ "name": "string" } }, - "defaultValue": { - "defaultValue": { - "value": "none" - }, - "description": "The default value of the textarea.", - "name": "defaultValue", + "textDecoration": { + "defaultValue": null, + "description": "", + "name": "textDecoration", "parent": { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "string | number" } }, - "placeholder": { - "defaultValue": { - "value": "none" - }, - "description": "Placeholder text for the textarea.", - "name": "placeholder", + "textLength": { + "defaultValue": null, + "description": "", + "name": "textLength", "parent": { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "string | number" } }, - "rows": { - "defaultValue": { - "value": "none" - }, - "description": "Sets the number of rows in the textarea.", - "name": "rows", + "textRendering": { + "defaultValue": null, + "description": "", + "name": "textRendering", "parent": { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/TextArea/TextArea.tsx", - "name": "TextAreaProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "number" + "name": "string | number" } }, - "validationBehavior": { - "defaultValue": { - "value": "'native'" - }, - "description": "Whether to use native HTML form validation to prevent form submission\nwhen the value is missing or invalid, or mark the field as required\nor invalid via ARIA.", - "name": "validationBehavior", + "to": { + "defaultValue": null, + "description": "", + "name": "to", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RACValidation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "RACValidation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "\"native\" | \"aria\"" + "name": "string | number" } }, - "aria-activedescendant": { + "transform": { "defaultValue": null, - "description": "Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application.", - "name": "aria-activedescendant", + "description": "", + "name": "transform", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", - "name": "AriaTextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", - "name": "AriaTextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, @@ -159127,227 +169102,227 @@ "name": "string" } }, - "aria-autocomplete": { + "u1": { "defaultValue": null, - "description": "Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be\npresented if they are made.", - "name": "aria-autocomplete", + "description": "", + "name": "u1", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", - "name": "AriaTextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", - "name": "AriaTextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "\"none\" | \"inline\" | \"list\" | \"both\"" + "name": "string | number" } }, - "aria-haspopup": { + "u2": { "defaultValue": null, - "description": "Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element.", - "name": "aria-haspopup", + "description": "", + "name": "u2", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", - "name": "AriaTextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+textfield@3.9.3_react@18.3.1/node_modules/@react-types/textfield/src/index.d.ts", - "name": "AriaTextFieldProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "boolean | \"false\" | \"true\" | \"menu\" | \"listbox\" | \"tree\" | \"grid\" | \"dialog\"" + "name": "string | number" } }, - "validate": { + "underlinePosition": { "defaultValue": null, - "description": "A function that returns an error message if a given value is invalid.\nValidation errors are displayed to the user when the form is submitted\nif `validationBehavior=\"native\"`. For realtime validation, use the `isInvalid`\nprop instead.", - "name": "validate", + "description": "", + "name": "underlinePosition", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "Validation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "Validation" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "((value: string) => true | ValidationError | null)" + "name": "string | number" } }, - "autoFocus": { + "underlineThickness": { "defaultValue": null, - "description": "Whether the element should receive focus on render.", - "name": "autoFocus", + "description": "", + "name": "underlineThickness", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusableProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusableProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string | number" } }, - "onFocus": { + "unicode": { "defaultValue": null, - "description": "Handler that is called when the element receives focus.", - "name": "onFocus", + "description": "", + "name": "unicode", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "((e: FocusEvent) => void)" + "name": "string | number" } }, - "onBlur": { + "unicodeBidi": { "defaultValue": null, - "description": "Handler that is called when the element loses focus.", - "name": "onBlur", + "description": "", + "name": "unicodeBidi", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "((e: FocusEvent) => void)" + "name": "string | number" } }, - "onFocusChange": { + "unicodeRange": { "defaultValue": null, - "description": "Handler that is called when the element's focus status changes.", - "name": "onFocusChange", + "description": "", + "name": "unicodeRange", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "FocusEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "((isFocused: boolean) => void)" + "name": "string | number" } }, - "onKeyDown": { + "unitsPerEm": { "defaultValue": null, - "description": "Handler that is called when a key is pressed.", - "name": "onKeyDown", + "description": "", + "name": "unitsPerEm", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "((e: KeyboardEvent) => void)" + "name": "string | number" } }, - "onKeyUp": { + "vAlphabetic": { "defaultValue": null, - "description": "Handler that is called when a key is released.", - "name": "onKeyUp", + "description": "", + "name": "vAlphabetic", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/events.d.ts", - "name": "KeyboardEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "((e: KeyboardEvent) => void)" + "name": "string | number" } }, - "onChange": { + "values": { "defaultValue": null, - "description": "Handler that is called when the value changes.", - "name": "onChange", + "description": "", + "name": "values", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "ValueBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/inputs.d.ts", - "name": "ValueBase" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "((value: string) => void)" + "name": "string" } }, - "aria-label": { + "vectorEffect": { "defaultValue": null, - "description": "Defines a string value that labels the current element.", - "name": "aria-label", + "description": "", + "name": "vectorEffect", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "string | number" } }, - "aria-labelledby": { + "version": { "defaultValue": null, - "description": "Identifies the element (or elements) that labels the current element.", - "name": "aria-labelledby", + "description": "", + "name": "version", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, @@ -159355,398 +169330,398 @@ "name": "string" } }, - "aria-describedby": { + "vertAdvY": { "defaultValue": null, - "description": "Identifies the element (or elements) that describes the object.", - "name": "aria-describedby", + "description": "", + "name": "vertAdvY", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "string | number" } }, - "aria-details": { + "vertOriginX": { "defaultValue": null, - "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", - "name": "aria-details", + "description": "", + "name": "vertOriginX", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "string | number" } }, - "excludeFromTabOrder": { + "vertOriginY": { "defaultValue": null, - "description": "Whether to exclude the element from the sequential tab order. If true,\nthe element will not be focusable via the keyboard by tabbing. This should\nbe avoided except in rare scenarios where an alternative means of accessing\nthe element or its functionality via the keyboard is available.", - "name": "excludeFromTabOrder", + "description": "", + "name": "vertOriginY", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "FocusableDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "FocusableDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string | number" } }, - "id": { + "vHanging": { "defaultValue": null, - "description": "The element's unique identifier. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/id).", - "name": "id", + "description": "", + "name": "vHanging", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "string | number" } }, - "autoComplete": { + "vIdeographic": { "defaultValue": null, - "description": "Describes the type of autocomplete functionality the input should provide if any. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefautocomplete).", - "name": "autoComplete", + "description": "", + "name": "vIdeographic", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "string | number" } }, - "maxLength": { + "viewBox": { "defaultValue": null, - "description": "The maximum number of characters supported by the input. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefmaxlength).", - "name": "maxLength", + "description": "", + "name": "viewBox", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "number" + "name": "string" } }, - "minLength": { + "viewTarget": { "defaultValue": null, - "description": "The minimum number of characters required by the input. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefminlength).", - "name": "minLength", + "description": "", + "name": "viewTarget", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "number" + "name": "string | number" } }, - "pattern": { + "visibility": { "defaultValue": null, - "description": "Regex pattern that the value of the input must match to be valid. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefpattern).", - "name": "pattern", + "description": "", + "name": "visibility", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "string | number" } }, - "type": { + "vMathematical": { "defaultValue": null, - "description": "The type of input to render. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdeftype).", - "name": "type", + "description": "", + "name": "vMathematical", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "\"text\" | \"search\" | \"url\" | \"tel\" | \"email\" | \"password\" | (string & {})" + "name": "string | number" } }, - "inputMode": { + "widths": { "defaultValue": null, - "description": "Hints at the type of data that might be entered by the user while editing the element or its contents. See [MDN](https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute).", - "name": "inputMode", + "description": "", + "name": "widths", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "\"none\" | \"text\" | \"search\" | \"url\" | \"tel\" | \"email\" | \"numeric\" | \"decimal\"" + "name": "string | number" } }, - "name": { + "wordSpacing": { "defaultValue": null, - "description": "The name of the input element, used when submitting an HTML form. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#htmlattrdefname).", - "name": "name", + "description": "", + "name": "wordSpacing", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "InputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "InputDOMProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "string | number" } }, - "onCopy": { + "writingMode": { "defaultValue": null, - "description": "Handler that is called when the user copies text. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/oncopy).", - "name": "onCopy", + "description": "", + "name": "writingMode", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "string | number" } }, - "onCut": { + "x1": { "defaultValue": null, - "description": "Handler that is called when the user cuts text. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/oncut).", - "name": "onCut", + "description": "", + "name": "x1", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "string | number" } }, - "onPaste": { + "x2": { "defaultValue": null, - "description": "Handler that is called when the user pastes text. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/onpaste).", - "name": "onPaste", + "description": "", + "name": "x2", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "string | number" } }, - "onCompositionStart": { + "x": { "defaultValue": null, - "description": "Handler that is called when a text composition system starts a new text composition session. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionstart_event).", - "name": "onCompositionStart", + "description": "", + "name": "x", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "string | number" } }, - "onCompositionEnd": { + "xChannelSelector": { "defaultValue": null, - "description": "Handler that is called when a text composition system completes or cancels the current text composition session. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionend_event).", - "name": "onCompositionEnd", + "description": "", + "name": "xChannelSelector", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "string" } }, - "onCompositionUpdate": { + "xHeight": { "defaultValue": null, - "description": "Handler that is called when a new character is received in the current text composition session. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/compositionupdate_event).", - "name": "onCompositionUpdate", + "description": "", + "name": "xHeight", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "string | number" } }, - "onSelect": { + "xlinkActuate": { "defaultValue": null, - "description": "Handler that is called when text in the input is selected. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Element/select_event).", - "name": "onSelect", + "description": "", + "name": "xlinkActuate", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "string" } }, - "onBeforeInput": { + "xlinkArcrole": { "defaultValue": null, - "description": "Handler that is called when the input value is about to be modified. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/beforeinput_event).", - "name": "onBeforeInput", + "description": "", + "name": "xlinkArcrole", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string" } }, - "onInput": { + "xlinkHref": { "defaultValue": null, - "description": "Handler that is called when the input value is modified. See [MDN](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/input_event).", - "name": "onInput", + "description": "", + "name": "xlinkHref", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "TextInputDOMEvents" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "FormEventHandler" + "name": "string" } }, - "aria-errormessage": { + "xlinkRole": { "defaultValue": null, - "description": "Identifies the element that provides an error message for the object.", - "name": "aria-errormessage", + "description": "", + "name": "xlinkRole", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaValidationProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaValidationProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, @@ -159754,269 +169729,265 @@ "name": "string" } }, - "slot": { + "xlinkShow": { "defaultValue": null, - "description": "A slot name for the component. Slots allow the component to receive props from a parent component.\nAn explicit `null` value indicates that the local props completely override all props received from a parent.", - "name": "slot", + "description": "", + "name": "xlinkShow", "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "SlotProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string | null" + "name": "string" } }, - "label": { + "xlinkTitle": { "defaultValue": null, "description": "", - "name": "label", + "name": "xlinkTitle", "parent": { - "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", - "name": "FieldBaseProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/FieldBase/FieldBase.tsx", - "name": "FieldBaseProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactNode" + "name": "string" } }, - "description": { + "xlinkType": { "defaultValue": null, - "description": "A helpful text.", - "name": "description", + "description": "", + "name": "xlinkType", "parent": { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactNode" + "name": "string" } }, - "errorMessage": { + "xmlBase": { "defaultValue": null, - "description": "An error message.", - "name": "errorMessage", + "description": "", + "name": "xmlBase", "parent": { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/packages/components/src/HelpText/HelpText.tsx", - "name": "HelpTextProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactNode | ((v: ValidationResult) => ReactNode)" + "name": "string" } }, - "ref": { + "xmlLang": { "defaultValue": null, - "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", - "name": "ref", + "description": "", + "name": "xmlLang", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "RefAttributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "LegacyRef" + "name": "string" } }, - "key": { + "xmlns": { "defaultValue": null, "description": "", - "name": "key", + "name": "xmlns", "parent": { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "name": "SVGAttributes" }, "declarations": [ { "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "Attributes" + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "Key | null" + "name": "string" } - } - }, - "VisuallyHidden.tsx": { - "children": { + }, + "xmlnsXlink": { "defaultValue": null, - "description": "The content to visually hide.", - "name": "children", + "description": "", + "name": "xmlnsXlink", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-aria+visually-hidden@3.8.12_react@18.3.1/node_modules/@react-aria/visually-hidden/dist/types.d.ts", - "name": "VisuallyHiddenProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-aria+visually-hidden@3.8.12_react@18.3.1/node_modules/@react-aria/visually-hidden/dist/types.d.ts", - "name": "VisuallyHiddenProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "ReactNode" + "name": "string" } }, - "elementType": { - "defaultValue": { - "value": "'div'" - }, - "description": "The element type for the container.", - "name": "elementType", + "xmlSpace": { + "defaultValue": null, + "description": "", + "name": "xmlSpace", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-aria+visually-hidden@3.8.12_react@18.3.1/node_modules/@react-aria/visually-hidden/dist/types.d.ts", - "name": "VisuallyHiddenProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-aria+visually-hidden@3.8.12_react@18.3.1/node_modules/@react-aria/visually-hidden/dist/types.d.ts", - "name": "VisuallyHiddenProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string | JSXElementConstructor" + "name": "string" } }, - "isFocusable": { + "y1": { "defaultValue": null, - "description": "Whether the element should become visible on focus, for example skip links.", - "name": "isFocusable", + "description": "", + "name": "y1", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-aria+visually-hidden@3.8.12_react@18.3.1/node_modules/@react-aria/visually-hidden/dist/types.d.ts", - "name": "VisuallyHiddenProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-aria+visually-hidden@3.8.12_react@18.3.1/node_modules/@react-aria/visually-hidden/dist/types.d.ts", - "name": "VisuallyHiddenProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "boolean" + "name": "string | number" } }, - "id": { + "y2": { "defaultValue": null, "description": "", - "name": "id", + "name": "y2", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMAttributes" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMAttributes" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "string" + "name": "string | number" } }, - "role": { + "y": { "defaultValue": null, "description": "", - "name": "role", + "name": "y", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMAttributes" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMAttributes" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "AriaRole" + "name": "string | number" } }, - "tabIndex": { + "yChannelSelector": { "defaultValue": null, "description": "", - "name": "tabIndex", + "name": "yChannelSelector", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMAttributes" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMAttributes" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "number" + "name": "string" } }, - "style": { + "z": { "defaultValue": null, "description": "", - "name": "style", + "name": "z", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMAttributes" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMAttributes" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, "type": { - "name": "CSSProperties" + "name": "string | number" } }, - "className": { + "zoomAndPan": { "defaultValue": null, "description": "", - "name": "className", + "name": "zoomAndPan", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMAttributes" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "DOMAttributes" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "SVGAttributes" } ], "required": false, @@ -160268,7 +170239,7 @@ ], "required": false, "type": { - "name": "boolean | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\" | \"time\"" + "name": "boolean | \"time\" | \"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\"" } }, "aria-describedby": { @@ -160458,7 +170429,7 @@ ], "required": false, "type": { - "name": "boolean | \"dialog\" | \"grid\" | \"listbox\" | \"menu\" | \"tree\" | \"true\" | \"false\"" + "name": "boolean | \"dialog\" | \"menu\" | \"grid\" | \"listbox\" | \"tree\" | \"true\" | \"false\"" } }, "aria-hidden": { @@ -160781,7 +170752,7 @@ ], "required": false, "type": { - "name": "\"additions\" | \"additions removals\" | \"additions text\" | \"all\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text\" | \"text additions\" | \"text removals\"" + "name": "\"text\" | \"additions\" | \"additions removals\" | \"additions text\" | \"all\" | \"removals\" | \"removals additions\" | \"removals text\" | \"text additions\" | \"text removals\"" } }, "aria-required": { @@ -161066,7 +171037,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCopyCapture": { @@ -161085,7 +171056,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCut": { @@ -161104,7 +171075,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCutCapture": { @@ -161123,7 +171094,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onPaste": { @@ -161142,7 +171113,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onPasteCapture": { @@ -161161,7 +171132,7 @@ ], "required": false, "type": { - "name": "ClipboardEventHandler" + "name": "ClipboardEventHandler" } }, "onCompositionEnd": { @@ -161180,7 +171151,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionEndCapture": { @@ -161199,7 +171170,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionStart": { @@ -161218,7 +171189,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionStartCapture": { @@ -161237,7 +171208,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionUpdate": { @@ -161256,7 +171227,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onCompositionUpdateCapture": { @@ -161275,7 +171246,7 @@ ], "required": false, "type": { - "name": "CompositionEventHandler" + "name": "CompositionEventHandler" } }, "onFocus": { @@ -161294,7 +171265,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onFocusCapture": { @@ -161313,7 +171284,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onBlur": { @@ -161332,7 +171303,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onBlurCapture": { @@ -161351,7 +171322,7 @@ ], "required": false, "type": { - "name": "FocusEventHandler" + "name": "FocusEventHandler" } }, "onChange": { @@ -161370,7 +171341,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onChangeCapture": { @@ -161389,7 +171360,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onBeforeInput": { @@ -161408,7 +171379,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onBeforeInputCapture": { @@ -161427,7 +171398,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInput": { @@ -161446,7 +171417,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInputCapture": { @@ -161465,7 +171436,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onReset": { @@ -161484,7 +171455,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onResetCapture": { @@ -161503,7 +171474,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onSubmit": { @@ -161522,7 +171493,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onSubmitCapture": { @@ -161541,7 +171512,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInvalid": { @@ -161560,7 +171531,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onInvalidCapture": { @@ -161579,7 +171550,7 @@ ], "required": false, "type": { - "name": "FormEventHandler" + "name": "FormEventHandler" } }, "onLoad": { @@ -161598,7 +171569,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadCapture": { @@ -161617,7 +171588,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onError": { @@ -161636,7 +171607,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onErrorCapture": { @@ -161655,7 +171626,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onKeyDown": { @@ -161674,7 +171645,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyDownCapture": { @@ -161693,7 +171664,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyPress": { @@ -161712,7 +171683,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyPressCapture": { @@ -161731,7 +171702,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyUp": { @@ -161750,7 +171721,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onKeyUpCapture": { @@ -161769,7 +171740,7 @@ ], "required": false, "type": { - "name": "KeyboardEventHandler" + "name": "KeyboardEventHandler" } }, "onAbort": { @@ -161788,7 +171759,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onAbortCapture": { @@ -161807,7 +171778,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlay": { @@ -161826,7 +171797,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayCapture": { @@ -161845,7 +171816,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayThrough": { @@ -161864,7 +171835,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onCanPlayThroughCapture": { @@ -161883,7 +171854,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onDurationChange": { @@ -161902,7 +171873,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onDurationChangeCapture": { @@ -161921,7 +171892,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEmptied": { @@ -161940,7 +171911,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEmptiedCapture": { @@ -161959,7 +171930,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEncrypted": { @@ -161978,7 +171949,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEncryptedCapture": { @@ -161997,7 +171968,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEnded": { @@ -162016,7 +171987,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onEndedCapture": { @@ -162035,7 +172006,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedData": { @@ -162054,7 +172025,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedDataCapture": { @@ -162073,7 +172044,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedMetadata": { @@ -162092,7 +172063,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadedMetadataCapture": { @@ -162111,7 +172082,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadStart": { @@ -162130,7 +172101,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onLoadStartCapture": { @@ -162149,7 +172120,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPause": { @@ -162168,7 +172139,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPauseCapture": { @@ -162187,7 +172158,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlay": { @@ -162206,7 +172177,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlayCapture": { @@ -162225,7 +172196,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlaying": { @@ -162244,7 +172215,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onPlayingCapture": { @@ -162263,7 +172234,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onProgress": { @@ -162282,7 +172253,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onProgressCapture": { @@ -162301,7 +172272,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onRateChange": { @@ -162320,7 +172291,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onRateChangeCapture": { @@ -162339,7 +172310,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onResize": { @@ -162358,7 +172329,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onResizeCapture": { @@ -162377,7 +172348,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeeked": { @@ -162396,7 +172367,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeekedCapture": { @@ -162415,7 +172386,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeeking": { @@ -162434,7 +172405,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSeekingCapture": { @@ -162453,7 +172424,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onStalled": { @@ -162472,7 +172443,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onStalledCapture": { @@ -162491,7 +172462,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSuspend": { @@ -162510,7 +172481,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSuspendCapture": { @@ -162529,7 +172500,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTimeUpdate": { @@ -162548,7 +172519,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTimeUpdateCapture": { @@ -162567,7 +172538,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onVolumeChange": { @@ -162586,7 +172557,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onVolumeChangeCapture": { @@ -162605,7 +172576,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onWaiting": { @@ -162624,7 +172595,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onWaitingCapture": { @@ -162643,7 +172614,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onAuxClick": { @@ -162662,7 +172633,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onAuxClickCapture": { @@ -162681,7 +172652,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onClick": { @@ -162700,7 +172671,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onClickCapture": { @@ -162719,7 +172690,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onContextMenu": { @@ -162738,7 +172709,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onContextMenuCapture": { @@ -162757,7 +172728,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDoubleClick": { @@ -162776,7 +172747,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDoubleClickCapture": { @@ -162795,7 +172766,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onDrag": { @@ -162814,7 +172785,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragCapture": { @@ -162833,7 +172804,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnd": { @@ -162852,7 +172823,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEndCapture": { @@ -162871,7 +172842,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnter": { @@ -162890,7 +172861,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragEnterCapture": { @@ -162909,7 +172880,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragExit": { @@ -162928,7 +172899,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragExitCapture": { @@ -162947,7 +172918,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragLeave": { @@ -162966,7 +172937,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragLeaveCapture": { @@ -162985,7 +172956,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragOver": { @@ -163004,7 +172975,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragOverCapture": { @@ -163023,7 +172994,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragStart": { @@ -163042,7 +173013,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDragStartCapture": { @@ -163061,7 +173032,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDrop": { @@ -163080,7 +173051,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onDropCapture": { @@ -163099,7 +173070,7 @@ ], "required": false, "type": { - "name": "DragEventHandler" + "name": "DragEventHandler" } }, "onMouseDown": { @@ -163118,7 +173089,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseDownCapture": { @@ -163137,7 +173108,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseEnter": { @@ -163156,7 +173127,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseLeave": { @@ -163175,7 +173146,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseMove": { @@ -163194,7 +173165,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseMoveCapture": { @@ -163213,7 +173184,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOut": { @@ -163232,7 +173203,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOutCapture": { @@ -163251,7 +173222,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOver": { @@ -163270,7 +173241,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseOverCapture": { @@ -163289,7 +173260,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseUp": { @@ -163308,7 +173279,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onMouseUpCapture": { @@ -163327,7 +173298,7 @@ ], "required": false, "type": { - "name": "MouseEventHandler" + "name": "MouseEventHandler" } }, "onSelect": { @@ -163346,7 +173317,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onSelectCapture": { @@ -163365,7 +173336,7 @@ ], "required": false, "type": { - "name": "ReactEventHandler" + "name": "ReactEventHandler" } }, "onTouchCancel": { @@ -163384,7 +173355,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchCancelCapture": { @@ -163403,7 +173374,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchEnd": { @@ -163422,7 +173393,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchEndCapture": { @@ -163441,7 +173412,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchMove": { @@ -163460,7 +173431,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchMoveCapture": { @@ -163479,7 +173450,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchStart": { @@ -163498,7 +173469,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onTouchStartCapture": { @@ -163517,7 +173488,7 @@ ], "required": false, "type": { - "name": "TouchEventHandler" + "name": "TouchEventHandler" } }, "onPointerDown": { @@ -163536,7 +173507,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerDownCapture": { @@ -163555,7 +173526,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerMove": { @@ -163574,7 +173545,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerMoveCapture": { @@ -163593,7 +173564,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerUp": { @@ -163612,7 +173583,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerUpCapture": { @@ -163631,7 +173602,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerCancel": { @@ -163650,7 +173621,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerCancelCapture": { @@ -163669,7 +173640,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerEnter": { @@ -163688,7 +173659,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerLeave": { @@ -163707,7 +173678,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOver": { @@ -163726,7 +173697,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOverCapture": { @@ -163745,7 +173716,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOut": { @@ -163764,7 +173735,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onPointerOutCapture": { @@ -163783,7 +173754,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onGotPointerCapture": { @@ -163802,7 +173773,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onGotPointerCaptureCapture": { @@ -163821,7 +173792,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onLostPointerCapture": { @@ -163840,7 +173811,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onLostPointerCaptureCapture": { @@ -163859,7 +173830,7 @@ ], "required": false, "type": { - "name": "PointerEventHandler" + "name": "PointerEventHandler" } }, "onScroll": { @@ -163878,7 +173849,7 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "UIEventHandler" } }, "onScrollCapture": { @@ -163897,7 +173868,7 @@ ], "required": false, "type": { - "name": "UIEventHandler" + "name": "UIEventHandler" } }, "onWheel": { @@ -163916,7 +173887,7 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "WheelEventHandler" } }, "onWheelCapture": { @@ -163935,7 +173906,7 @@ ], "required": false, "type": { - "name": "WheelEventHandler" + "name": "WheelEventHandler" } }, "onAnimationStart": { @@ -163954,7 +173925,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationStartCapture": { @@ -163973,7 +173944,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationEnd": { @@ -163992,7 +173963,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationEndCapture": { @@ -164011,7 +173982,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationIteration": { @@ -164030,7 +174001,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onAnimationIterationCapture": { @@ -164049,7 +174020,7 @@ ], "required": false, "type": { - "name": "AnimationEventHandler" + "name": "AnimationEventHandler" } }, "onTransitionEnd": { @@ -164068,7 +174039,7 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" + "name": "TransitionEventHandler" } }, "onTransitionEndCapture": { @@ -164087,511 +174058,155 @@ ], "required": false, "type": { - "name": "TransitionEventHandler" - } - } - }, - "Tooltip.tsx": { - "children": { - "defaultValue": null, - "description": "The children of the component.", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Tooltip/Tooltip.tsx", - "name": "TooltipProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Tooltip/Tooltip.tsx", - "name": "TooltipProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "open": { - "defaultValue": null, - "description": "Whether the element is rendered.", - "name": "open", - "parent": { - "fileName": "marigold/packages/components/src/Tooltip/Tooltip.tsx", - "name": "TooltipProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Tooltip/Tooltip.tsx", - "name": "TooltipProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "arrowBoundaryOffset": { - "defaultValue": { - "value": "0" - }, - "description": "The minimum distance the arrow's edge should be from the edge of the overlay element.", - "name": "arrowBoundaryOffset", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-aria+overlays@3.22.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/overlays/dist/types.d.ts", - "name": "AriaPositionProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-aria+overlays@3.22.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/overlays/dist/types.d.ts", - "name": "AriaPositionProps" - } - ], - "required": false, - "type": { - "name": "number" - } - }, - "triggerRef": { - "defaultValue": null, - "description": "The ref for the element which the tooltip positions itself with respect to.\n\nWhen used within a TooltipTrigger this is set automatically. It is only required when used standalone.", - "name": "triggerRef", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "TooltipProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "TooltipProps" - } - ], - "required": false, - "type": { - "name": "RefObject" - } - }, - "isEntering": { - "defaultValue": null, - "description": "Whether the tooltip is currently performing an entry animation.", - "name": "isEntering", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "TooltipProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "TooltipProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "isExiting": { - "defaultValue": null, - "description": "Whether the tooltip is currently performing an exit animation.", - "name": "isExiting", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "TooltipProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "TooltipProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "UNSTABLE_portalContainer": { - "defaultValue": { - "value": "document.body" - }, - "description": "The container element in which the overlay portal will be placed. This may have unknown behavior depending on where it is portalled to.", - "name": "UNSTABLE_portalContainer", - "parent": { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "TooltipProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/react-aria-components@1.2.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/react-aria-components/dist/types.d.ts", - "name": "TooltipProps" - } - ], - "required": false, - "type": { - "name": "Element" - } - }, - "placement": { - "defaultValue": { - "value": "'bottom'" - }, - "description": "The placement of the element with respect to its anchor element.", - "name": "placement", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "PositionProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "PositionProps" - } - ], - "required": false, - "type": { - "name": "Placement" - } - }, - "containerPadding": { - "defaultValue": { - "value": "12" - }, - "description": "The placement padding that should be applied between the element and its\nsurrounding container.", - "name": "containerPadding", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "PositionProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "PositionProps" - } - ], - "required": false, - "type": { - "name": "number" - } - }, - "offset": { - "defaultValue": { - "value": "0" - }, - "description": "The additional offset applied along the main axis between the element and its\nanchor element.", - "name": "offset", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "PositionProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "PositionProps" - } - ], - "required": false, - "type": { - "name": "number" - } - }, - "crossOffset": { - "defaultValue": { - "value": "0" - }, - "description": "The additional offset applied along the cross axis between the element and its\nanchor element.", - "name": "crossOffset", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "PositionProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "PositionProps" - } - ], - "required": false, - "type": { - "name": "number" - } - }, - "shouldFlip": { - "defaultValue": { - "value": "true" - }, - "description": "Whether the element should flip its orientation (e.g. top to bottom or left to right) when\nthere is insufficient room for it to render completely.", - "name": "shouldFlip", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "PositionProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "PositionProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "defaultOpen": { - "defaultValue": null, - "description": "Whether the overlay is open by default (uncontrolled).", - "name": "defaultOpen", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "OverlayTriggerProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "OverlayTriggerProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "onOpenChange": { - "defaultValue": null, - "description": "Handler that is called when the overlay's open state changes.", - "name": "onOpenChange", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "OverlayTriggerProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "OverlayTriggerProps" - } - ], - "required": false, - "type": { - "name": "((isOpen: boolean) => void)" - } - }, - "aria-label": { - "defaultValue": null, - "description": "Defines a string value that labels the current element.", - "name": "aria-label", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - } - ], - "required": false, - "type": { - "name": "string" + "name": "TransitionEventHandler" } }, - "aria-labelledby": { + "key": { "defaultValue": null, - "description": "Identifies the element (or elements) that labels the current element.", - "name": "aria-labelledby", + "description": "", + "name": "key", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-describedby": { - "defaultValue": null, - "description": "Identifies the element (or elements) that describes the object.", - "name": "aria-describedby", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" - }, - "declarations": [ + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" + }, { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "Attributes" } ], "required": false, "type": { - "name": "string" + "name": "Key | null" } }, - "aria-details": { + "ref": { "defaultValue": null, - "description": "Identifies the element (or elements) that provide a detailed, extended description for the object.", - "name": "aria-details", + "description": "Allows getting a ref to the component instance.\nOnce the component unmounts, React will set `ref.current` to `null`\n(or call the ref with `null` if you passed a callback ref).\n@see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}", + "name": "ref", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "RefAttributes" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+shared@3.23.1_react@18.3.1/node_modules/@react-types/shared/src/dom.d.ts", - "name": "AriaLabelingProps" + "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", + "name": "RefAttributes" } ], "required": false, "type": { - "name": "string" + "name": "LegacyRef" } } }, - "TooltipTrigger.tsx": { - "disabled": { + "useClassNames.tsx": { + "component": { "defaultValue": null, "description": "", - "name": "disabled", + "name": "component", "parent": { - "fileName": "marigold/packages/components/src/Tooltip/TooltipTrigger.tsx", - "name": "TooltipTriggerProps" + "fileName": "marigold/packages/system/src/hooks/useClassNames.tsx", + "name": "UseClassNamesProps" }, "declarations": [ { - "fileName": "marigold/packages/components/src/Tooltip/TooltipTrigger.tsx", - "name": "TooltipTriggerProps" + "fileName": "marigold/packages/system/src/hooks/useClassNames.tsx", + "name": "UseClassNamesProps" } ], - "required": false, + "required": true, "type": { - "name": "boolean" + "name": "\"Accordion\" | \"Badge\" | \"Body\" | \"Button\" | \"Card\" | \"DateField\" | \"Dialog\" | \"Divider\" | \"Field\" | \"Footer\" | \"Header\" | \"Headline\" | \"Popover\" | \"HelpText\" | \"Image\" | \"Checkbox\" | ... 21 more ... | \"ComboBox\"" } }, - "open": { + "className": { "defaultValue": null, "description": "", - "name": "open", - "parent": { - "fileName": "marigold/packages/components/src/Tooltip/TooltipTrigger.tsx", - "name": "TooltipTriggerProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Tooltip/TooltipTrigger.tsx", - "name": "TooltipTriggerProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "delay": { - "defaultValue": { - "value": 1000 - }, - "description": "The delay time for the tooltip to show up. [See guidelines](https://spectrum.adobe.com/page/tooltip/#Immediate-or-delayed-appearance).", - "name": "delay", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+tooltip@3.4.9_react@18.3.1/node_modules/@react-types/tooltip/src/index.d.ts", - "name": "TooltipTriggerProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+tooltip@3.4.9_react@18.3.1/node_modules/@react-types/tooltip/src/index.d.ts", - "name": "TooltipTriggerProps" - } - ], - "required": false, - "type": { - "name": "number" - } - }, - "closeDelay": { - "defaultValue": { - "value": "500" - }, - "description": "The delay time for the tooltip to close. [See guidelines](https://spectrum.adobe.com/page/tooltip/#Warmup-and-cooldown).", - "name": "closeDelay", + "name": "className", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+tooltip@3.4.9_react@18.3.1/node_modules/@react-types/tooltip/src/index.d.ts", - "name": "TooltipTriggerProps" + "fileName": "marigold/packages/system/src/hooks/useClassNames.tsx", + "name": "UseClassNamesProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+tooltip@3.4.9_react@18.3.1/node_modules/@react-types/tooltip/src/index.d.ts", - "name": "TooltipTriggerProps" + "fileName": "marigold/packages/system/src/hooks/useClassNames.tsx", + "name": "UseClassNamesProps" } ], "required": false, "type": { - "name": "number" + "name": "string | { [slot in keyof ThemeComponent]?: string; }" } - }, - "trigger": { + } + }, + "useTheme.tsx": { + "theme": { "defaultValue": null, - "description": "By default, opens for both focus and hover. Can be made to open only for focus.", - "name": "trigger", + "description": "The theme that should be used within the provider context.", + "name": "theme", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+tooltip@3.4.9_react@18.3.1/node_modules/@react-types/tooltip/src/index.d.ts", - "name": "TooltipTriggerProps" + "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", + "name": "ThemeProviderProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+tooltip@3.4.9_react@18.3.1/node_modules/@react-types/tooltip/src/index.d.ts", - "name": "TooltipTriggerProps" + "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", + "name": "ThemeProviderProps" } ], - "required": false, + "required": true, "type": { - "name": "\"focus\"" + "name": "Theme" } }, - "defaultOpen": { + "children": { "defaultValue": null, - "description": "Whether the overlay is open by default (uncontrolled).", - "name": "defaultOpen", + "description": "The children of the component.", + "name": "children", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "OverlayTriggerProps" + "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", + "name": "ThemeProviderProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "OverlayTriggerProps" + "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", + "name": "ThemeProviderProps" } ], - "required": false, + "required": true, "type": { - "name": "boolean" + "name": "ReactNode" } }, - "onOpenChange": { + "className": { "defaultValue": null, - "description": "Handler that is called when the overlay's open state changes.", - "name": "onOpenChange", + "description": "Additional class names to apply to the root element of the provider.", + "name": "className", "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "OverlayTriggerProps" + "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", + "name": "ThemeProviderProps" }, "declarations": [ { - "fileName": "marigold/node_modules/.pnpm/@react-types+overlays@3.8.7_react@18.3.1/node_modules/@react-types/overlays/src/index.d.ts", - "name": "OverlayTriggerProps" + "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", + "name": "ThemeProviderProps" } ], "required": false, "type": { - "name": "((isOpen: boolean) => void)" + "name": "string" } } }, - "XLoader.tsx": { + "SVG.tsx": { "className": { "defaultValue": null, - "description": "", + "description": "To add a className on svg and icons.", "name": "className", "parent": { "fileName": "marigold/packages/system/src/components/SVG/SVG.tsx", @@ -173596,7 +183211,884 @@ ], "required": false, "type": { - "name": "LegacyRef" + "name": "LegacyRef" + } + } + }, + "DateFormat.tsx": { + "value": { + "defaultValue": null, + "description": "", + "name": "value", + "parent": { + "fileName": "marigold/packages/system/src/components/Formatters/DateFormat.tsx", + "name": "DateFormatProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/system/src/components/Formatters/DateFormat.tsx", + "name": "DateFormatProps" + } + ], + "required": true, + "type": { + "name": "Date" + } + }, + "tabular": { + "defaultValue": null, + "description": "", + "name": "tabular", + "parent": { + "fileName": "marigold/packages/system/src/components/Formatters/DateFormat.tsx", + "name": "DateFormatProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/system/src/components/Formatters/DateFormat.tsx", + "name": "DateFormatProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "calendar": { + "defaultValue": null, + "description": "", + "name": "calendar", + "parent": { + "fileName": "marigold/node_modules/.pnpm/@react-aria+i18n@3.11.1_react@18.3.1/node_modules/@react-aria/i18n/dist/types.d.ts", + "name": "DateFormatterOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/@react-aria+i18n@3.11.1_react@18.3.1/node_modules/@react-aria/i18n/dist/types.d.ts", + "name": "DateFormatterOptions" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "localeMatcher": { + "defaultValue": null, + "description": "", + "name": "localeMatcher", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"best fit\" | \"lookup\"" + } + }, + "weekday": { + "defaultValue": null, + "description": "", + "name": "weekday", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"long\" | \"short\" | \"narrow\"" + } + }, + "era": { + "defaultValue": null, + "description": "", + "name": "era", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"long\" | \"short\" | \"narrow\"" + } + }, + "year": { + "defaultValue": null, + "description": "", + "name": "year", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"numeric\" | \"2-digit\"" + } + }, + "month": { + "defaultValue": null, + "description": "", + "name": "month", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"long\" | \"short\" | \"narrow\" | \"numeric\" | \"2-digit\"" + } + }, + "day": { + "defaultValue": null, + "description": "", + "name": "day", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"numeric\" | \"2-digit\"" + } + }, + "hour": { + "defaultValue": null, + "description": "", + "name": "hour", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"numeric\" | \"2-digit\"" + } + }, + "minute": { + "defaultValue": null, + "description": "", + "name": "minute", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"numeric\" | \"2-digit\"" + } + }, + "second": { + "defaultValue": null, + "description": "", + "name": "second", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"numeric\" | \"2-digit\"" + } + }, + "timeZoneName": { + "defaultValue": null, + "description": "", + "name": "timeZoneName", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"long\" | \"short\" | \"shortOffset\" | \"longOffset\" | \"shortGeneric\" | \"longGeneric\"" + } + }, + "formatMatcher": { + "defaultValue": null, + "description": "", + "name": "formatMatcher", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + }, + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2021.intl.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"best fit\" | \"basic\"" + } + }, + "hour12": { + "defaultValue": null, + "description": "", + "name": "hour12", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "timeZone": { + "defaultValue": null, + "description": "", + "name": "timeZone", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "dayPeriod": { + "defaultValue": null, + "description": "", + "name": "dayPeriod", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "DateTimeFormatOptions" + }, + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2021.intl.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"long\" | \"short\" | \"narrow\"" + } + }, + "numberingSystem": { + "defaultValue": null, + "description": "", + "name": "numberingSystem", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "dateStyle": { + "defaultValue": null, + "description": "", + "name": "dateStyle", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "DateTimeFormatOptions" + }, + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2021.intl.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"long\" | \"short\" | \"full\" | \"medium\"" + } + }, + "timeStyle": { + "defaultValue": null, + "description": "", + "name": "timeStyle", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "DateTimeFormatOptions" + }, + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2021.intl.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"long\" | \"short\" | \"full\" | \"medium\"" + } + }, + "hourCycle": { + "defaultValue": null, + "description": "", + "name": "hourCycle", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"h11\" | \"h12\" | \"h23\" | \"h24\"" + } + }, + "fractionalSecondDigits": { + "defaultValue": null, + "description": "", + "name": "fractionalSecondDigits", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2021.intl.d.ts", + "name": "DateTimeFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2021.intl.d.ts", + "name": "DateTimeFormatOptions" + } + ], + "required": false, + "type": { + "name": "1 | 2 | 3" + } + } + }, + "NumericFormat.tsx": { + "value": { + "defaultValue": null, + "description": "", + "name": "value", + "parent": { + "fileName": "marigold/packages/system/src/components/Formatters/NumericFormat.tsx", + "name": "NumericFormatProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/system/src/components/Formatters/NumericFormat.tsx", + "name": "NumericFormatProps" + } + ], + "required": true, + "type": { + "name": "number | bigint" + } + }, + "numberingSystem": { + "defaultValue": null, + "description": "", + "name": "numberingSystem", + "parent": { + "fileName": "marigold/packages/system/src/components/Formatters/NumericFormat.tsx", + "name": "NumericFormatProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/system/src/components/Formatters/NumericFormat.tsx", + "name": "NumericFormatProps" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "tabular": { + "defaultValue": { + "value": true + }, + "description": "", + "name": "tabular", + "parent": { + "fileName": "marigold/packages/system/src/components/Formatters/NumericFormat.tsx", + "name": "NumericFormatProps" + }, + "declarations": [ + { + "fileName": "marigold/packages/system/src/components/Formatters/NumericFormat.tsx", + "name": "NumericFormatProps" + } + ], + "required": false, + "type": { + "name": "boolean" + } + }, + "localeMatcher": { + "defaultValue": null, + "description": "", + "name": "localeMatcher", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"lookup\" | \"best fit\"" + } + }, + "style": { + "defaultValue": null, + "description": "", + "name": "style", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "keyof NumberFormatOptionsStyleRegistry" + } + }, + "currency": { + "defaultValue": null, + "description": "", + "name": "currency", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "currencyDisplay": { + "defaultValue": null, + "description": "", + "name": "currencyDisplay", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "keyof NumberFormatOptionsCurrencyDisplayRegistry" + } + }, + "useGrouping": { + "defaultValue": null, + "description": "", + "name": "useGrouping", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "boolean | keyof NumberFormatOptionsUseGroupingRegistry | \"true\" | \"false\"" + } + }, + "minimumIntegerDigits": { + "defaultValue": null, + "description": "", + "name": "minimumIntegerDigits", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "minimumFractionDigits": { + "defaultValue": null, + "description": "", + "name": "minimumFractionDigits", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "maximumFractionDigits": { + "defaultValue": null, + "description": "", + "name": "maximumFractionDigits", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "minimumSignificantDigits": { + "defaultValue": null, + "description": "", + "name": "minimumSignificantDigits", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "maximumSignificantDigits": { + "defaultValue": null, + "description": "", + "name": "maximumSignificantDigits", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es5.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "number" + } + }, + "compactDisplay": { + "defaultValue": null, + "description": "", + "name": "compactDisplay", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"short\" | \"long\"" + } + }, + "notation": { + "defaultValue": null, + "description": "", + "name": "notation", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"standard\" | \"scientific\" | \"engineering\" | \"compact\"" + } + }, + "signDisplay": { + "defaultValue": null, + "description": "", + "name": "signDisplay", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "keyof NumberFormatOptionsSignDisplayRegistry" + } + }, + "unit": { + "defaultValue": null, + "description": "", + "name": "unit", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "string" + } + }, + "unitDisplay": { + "defaultValue": null, + "description": "", + "name": "unitDisplay", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"short\" | \"long\" | \"narrow\"" + } + }, + "currencySign": { + "defaultValue": null, + "description": "", + "name": "currencySign", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2020.intl.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"standard\" | \"accounting\"" + } + }, + "roundingPriority": { + "defaultValue": null, + "description": "", + "name": "roundingPriority", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2023.intl.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2023.intl.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"auto\" | \"morePrecision\" | \"lessPrecision\"" + } + }, + "roundingIncrement": { + "defaultValue": null, + "description": "", + "name": "roundingIncrement", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2023.intl.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2023.intl.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "1 | 2 | 5 | 10 | 20 | 25 | 50 | 100 | 200 | 250 | 500 | 1000 | 2000 | 2500 | 5000" + } + }, + "roundingMode": { + "defaultValue": null, + "description": "", + "name": "roundingMode", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2023.intl.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2023.intl.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"ceil\" | \"floor\" | \"expand\" | \"trunc\" | \"halfCeil\" | \"halfFloor\" | \"halfExpand\" | \"halfTrunc\" | \"halfEven\"" + } + }, + "trailingZeroDisplay": { + "defaultValue": null, + "description": "", + "name": "trailingZeroDisplay", + "parent": { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2023.intl.d.ts", + "name": "NumberFormatOptions" + }, + "declarations": [ + { + "fileName": "marigold/node_modules/.pnpm/typescript@5.5.2/node_modules/typescript/lib/lib.es2023.intl.d.ts", + "name": "NumberFormatOptions" + } + ], + "required": false, + "type": { + "name": "\"auto\" | \"stripIfInteger\"" } } } diff --git a/docs/content/components/application/routerprovider/routerprovider.mdx b/docs/content/components/application/routerprovider/routerprovider.mdx index 13250d9494..ca7fee4d1b 100644 --- a/docs/content/components/application/routerprovider/routerprovider.mdx +++ b/docs/content/components/application/routerprovider/routerprovider.mdx @@ -14,23 +14,7 @@ import { RouterProvider } from '@marigold/components'; ## Props - void', - default: 'none', - description: 'Set the recived paths where you want to navigate.', - }, - -]} -/> + ## Examples diff --git a/docs/content/components/collection/selectlist/selectlist.mdx b/docs/content/components/collection/selectlist/selectlist.mdx index fb2d1a4ee5..7af7215d80 100644 --- a/docs/content/components/collection/selectlist/selectlist.mdx +++ b/docs/content/components/collection/selectlist/selectlist.mdx @@ -17,150 +17,11 @@ import { SelectList } from '@marigold/components'; ### SelectList -) => void', - description: 'Handler that is called when a user scrolls.', - default: 'none', - }, - { - property: 'renderEmptyState', - type: '(props: SelectListRenderProps) => React.ReactNode', - description: - 'Provides content to display when there are no items in the list.', - default: 'none', - }, - -]} -/> + ### SelectList.Item - | undefined', - description: 'Item objects in the collection.', - default: 'none', - }, - { - property: 'selectedKeys', - type: '"all" | Iterable | undefined', - description: - 'The currently selected keys in the collection (controlled).', - default: 'none', - }, - { - property: 'selectionMode', - type: '"multiple" | "none" | "single" | undefined', - description: 'The type of selection that is allowed in the collection.', - default: 'none', - }, - { - property: 'selectionBehavior', - type: '"replace" | "toggle" | undefined', - description: 'How multiple selection should behave in the collection.', - default: 'none', - }, - { - property: 'slot', - type: 'string | null | undefined', - description: - 'A slot name for the component. Slots allow the component to receive props from a parent component. An explicit null value indicates that the local props completely override all props received from a parent.', - default: 'none', - }, - { - property: 'ref', - type: 'Ref | undefined', - description: `Allows getting a ref to the component instance. Once the component unmounts, React will set ref.current to null (or call the ref with null if you passed a callback ref).`, - default: 'full', - }, - { - property: 'onAction', - type: '(key: Key) => void', - description: - "Handler that is called when a user performs an action on an item. The exact user event depends on the collection's selectionBehavior prop and the interaction modality.", - default: 'none', - }, - { - property: 'onSelectionChange', - type: '(key: Key) => any', - description: 'Handler that is called when the selection changes.', - default: 'none', - }, - { - property: 'onScroll', - type: '(e: React.UIEvent) => void', - description: 'Handler that is called when a user scrolls.', - default: 'none', - }, - { - property: 'renderEmptyState', - type: '(props: SelectListRenderProps) => React.ReactNode', - description: - 'Provides content to display when there are no items in the list.', - default: 'none', - }, - ]} -/> + ## Examples diff --git a/docs/content/components/content/badge/badge.mdx b/docs/content/components/content/badge/badge.mdx index f8c8075bd9..74a538a109 100644 --- a/docs/content/components/content/badge/badge.mdx +++ b/docs/content/components/content/badge/badge.mdx @@ -17,7 +17,7 @@ import { Badge } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/content/icon/icon.mdx b/docs/content/components/content/icon/icon.mdx index 7f22f468f9..62927b38bf 100644 --- a/docs/content/components/content/icon/icon.mdx +++ b/docs/content/components/content/icon/icon.mdx @@ -37,22 +37,7 @@ Alternatively you can go to [Marigold Icons](/concepts/icons/) and click on an I ## Props - + ## Examples diff --git a/docs/content/components/content/svg/svg.mdx b/docs/content/components/content/svg/svg.mdx index 4cedbb1357..e623b92774 100644 --- a/docs/content/components/content/svg/svg.mdx +++ b/docs/content/components/content/svg/svg.mdx @@ -15,28 +15,7 @@ import { SVG } from '@marigold/system'; ## Props - + ## Examples diff --git a/docs/content/components/form/fieldgroup/field-group.mdx b/docs/content/components/form/fieldgroup/field-group.mdx index 6476286a36..57e5c01c21 100644 --- a/docs/content/components/form/fieldgroup/field-group.mdx +++ b/docs/content/components/form/fieldgroup/field-group.mdx @@ -24,17 +24,7 @@ import { FieldGroup } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/form/form/form.mdx b/docs/content/components/form/form/form.mdx index f2c031e29d..0ec571cc71 100644 --- a/docs/content/components/form/form/form.mdx +++ b/docs/content/components/form/form/form.mdx @@ -19,55 +19,7 @@ import { Form } from '@marigold/components'; ## Props -', - description: - 'Validation errors for the form, typically returned by a server. This should be set to an object mapping from input names to errors.', - default: '-', - }, - { - property: 'action', - type: `string | FormHTMLAttributes['action']`, - description: - 'Endpoint where to send the form-data when the form is submitted.', - default: '-', - }, - { - property: 'method', - type: `'get' | 'post' | 'dialog'`, - description: 'The HTTP method to submit the form with.', - default: '-', - }, - { - property: 'onSubmit', - type: `(event: FormEvent) => void`, - description: 'Triggered when a user submits the form.', - default: '-', - }, - { - property: 'onReset', - type: `(event: FormEvent) => void`, - description: 'Triggered when a user resets the form.', - default: '-', - }, - { - property: 'onInvalid', - type: `(event: FormEvent) => void`, - description: - 'Triggered for each invalid field when a user submits the form.', - default: '-', - }, - { - property: '...', - type: '', - description: 'Yes you can use all regular attributes of `form`!', - default: '', - }, - ]} -/> + ## Examples diff --git a/docs/content/components/form/select/select.mdx b/docs/content/components/form/select/select.mdx index c54dfd51c3..806c602a0e 100644 --- a/docs/content/components/form/select/select.mdx +++ b/docs/content/components/form/select/select.mdx @@ -21,80 +21,15 @@ import { Select } from '@marigold/components'; ### Select -', - description: 'Sets selected keys disabled.', - default: 'none', - }, - { - property: 'selectedKey', - type: 'Key', - description: 'The selected key of the select.', - default: 'none', - }, - { - property: 'defaultSelectedKey', - type: 'Iterable', - description: 'Set a default selected key.', - default: 'none', - }, - { - property: 'required', - type: 'boolean', - description: 'Set the select required.', - default: 'false', - }, - { - property: 'error', - type: 'boolean', - description: 'Allow to set an error to the select.', - default: 'false', - }, - { - property: 'errorMessage', - type: 'string', - description: 'Set the error message for the select.', - default: '', - }, - { - property: 'width', - type: 'string | number', - description: `Sets the width of the field. You can see allowed tokens here: https://tailwindcss.com/docs/width `, - default: 'full', - }, - { - property: 'onChange', - type: '(key: Key) => any', - description: 'Handler that is called when the selection changes.', - default: 'none', - }, - ]} -/> + + +### Select.Section + + ### Select.Option - + ## Examples diff --git a/docs/content/components/formatters/dateformat/dateFormat.mdx b/docs/content/components/formatters/dateformat/dateFormat.mdx index 9e5b10550b..58c768d0f0 100644 --- a/docs/content/components/formatters/dateformat/dateFormat.mdx +++ b/docs/content/components/formatters/dateformat/dateFormat.mdx @@ -25,88 +25,7 @@ import { DateFormat } from '@marigold/system'; ## Props - + ## Examples diff --git a/docs/content/components/formatters/numericformat/numericFormat.mdx b/docs/content/components/formatters/numericformat/numericFormat.mdx index f6d6301870..2d10a57065 100644 --- a/docs/content/components/formatters/numericformat/numericFormat.mdx +++ b/docs/content/components/formatters/numericformat/numericFormat.mdx @@ -26,76 +26,7 @@ import { NumericFormat } from '@marigold/system'; ## Props - + ## Examples diff --git a/docs/content/components/layout/grid/grid.mdx b/docs/content/components/layout/grid/grid.mdx index e1dbc0e220..fe36039d14 100644 --- a/docs/content/components/layout/grid/grid.mdx +++ b/docs/content/components/layout/grid/grid.mdx @@ -18,35 +18,7 @@ import { Grid } from '@marigold/components'; ### Grid - + ### Grid.Area diff --git a/docs/content/components/layout/scrollable/scrollable.mdx b/docs/content/components/layout/scrollable/scrollable.mdx index 89ec4f8e91..0281fa2a47 100644 --- a/docs/content/components/layout/scrollable/scrollable.mdx +++ b/docs/content/components/layout/scrollable/scrollable.mdx @@ -15,23 +15,7 @@ import { Scrollable } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/package.json b/docs/package.json index d54306de4c..5de7b6f87e 100644 --- a/docs/package.json +++ b/docs/package.json @@ -4,7 +4,7 @@ "private": true, "scripts": { "dev": "pnpm registry && next dev", - "build": "pnpm registry && next build", + "build": "pnpm registry && pnpm build-component-props && next build", "start": "next start", "registry": "zx ./scripts/build-registry.mjs", "build-component-props": "zx ./scripts/build-component-props.mjs" diff --git a/docs/scripts/build-component-props.mjs b/docs/scripts/build-component-props.mjs index 16b1989b59..24d0bd8dca 100644 --- a/docs/scripts/build-component-props.mjs +++ b/docs/scripts/build-component-props.mjs @@ -13,6 +13,7 @@ const parser = reactDocgenTypescript.withCustomConfig('./tsconfig.json', { 'SelectComponent', 'ComboBoxComponent', 'RadioComponent', + 'SelectListComponent', ], }); @@ -20,6 +21,7 @@ const parser = reactDocgenTypescript.withCustomConfig('./tsconfig.json', { const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); +const systemDir = path.resolve(__dirname, '../../packages/system/src'); const componentsDir = path.resolve(__dirname, '../../packages/components/src'); const outputFilePath = path.resolve( __dirname, @@ -32,11 +34,15 @@ const generatePropsTables = async () => { // Getting all component files using globby const componentFiles = await globby([ `${componentsDir}/**/*.tsx`, + `${systemDir}/**/*.tsx`, // excluded files `!${componentsDir}/**/*.stories.tsx`, `!${componentsDir}/**/*.test.tsx`, `!${componentsDir}/**/*.ts`, + `!${systemDir}/**/*.stories.tsx`, + `!${systemDir}/**/*.test.tsx`, + `!${systemDir}/**/*.ts`, ]); // Reduce to gather all docs diff --git a/packages/components/src/FieldBase/FieldGroup.tsx b/packages/components/src/FieldBase/FieldGroup.tsx index edb8688965..4bc756bede 100644 --- a/packages/components/src/FieldBase/FieldGroup.tsx +++ b/packages/components/src/FieldBase/FieldGroup.tsx @@ -8,6 +8,9 @@ export const FieldGroupContext = createContext({}); export const useFieldGroupContext = () => useContext(FieldGroupContext); export interface FieldGroupProps { + /** + * Sets the width of all Fields labels used inside the `FieldGroup` + */ labelWidth?: string; children: ReactNode; } diff --git a/packages/components/src/Select/Select.tsx b/packages/components/src/Select/Select.tsx index ef25de062c..a253deb611 100644 --- a/packages/components/src/Select/Select.tsx +++ b/packages/components/src/Select/Select.tsx @@ -28,18 +28,65 @@ type RemoveProps = export interface SelectProps extends Omit, RemoveProps> { + /** + * Set a label for the select. + */ label?: string; + /** + * Set a description for the select. + */ description?: string; + /** + * Set a error message for the select. + */ errorMessage?: string | ((validation: ValidationResult) => string); + /** + * Items of the select. + */ items?: Iterable; + /** + * Children of the select. + */ children: React.ReactNode | ((item: T) => React.ReactNode); + /** + * sets the variant of the select. + */ variant?: string; + /** + * Sets the size of the select. + */ size?: string; + /** + * Sets the width of the field. You can see allowed tokens here: https://tailwindcss.com/docs/width + */ width?: WidthProp['width']; + /** + * If the select should be required. + * + * @default false + */ required?: boolean; + /** + * If the select should be disabled. + * + * @default false + */ disabled?: boolean; + /** + * If the select list should be open. + * + * @default false + */ open?: boolean; + /** + * If the select should throw an error. + * + * @default false + */ error?: boolean; + /** + * Handler that is called when the selection changes. + */ onChange?: RAC.SelectProps['onSelectionChange']; } @@ -47,7 +94,13 @@ export interface SelectComponent extends ForwardRefExoticComponent< SelectProps & RefAttributes > { + /** + * Options of the Select. + */ Option: typeof ListBox.Item; + /** + * Section of the Select. + */ Section: typeof ListBox.Section; } diff --git a/packages/components/src/SelectList/SelectList.tsx b/packages/components/src/SelectList/SelectList.tsx index d9d9070bf5..01f684932a 100644 --- a/packages/components/src/SelectList/SelectList.tsx +++ b/packages/components/src/SelectList/SelectList.tsx @@ -18,6 +18,9 @@ type RemoveProps = 'style' | 'className' | 'onSelectionChange'; export interface SelectListProps extends Omit, RemoveProps> { + /** + * Handler that is called when the selection change. + */ onChange?: | RAC.GridListProps['onSelectionChange'] | Dispatch>; @@ -27,6 +30,9 @@ interface SelectListComponent extends ForwardRefExoticComponent< SelectListProps & RefAttributes > { + /** + * Items of the SelectList. + */ Item: typeof SelectListItem; } diff --git a/packages/system/src/components/Formatters/DateFormat.tsx b/packages/system/src/components/Formatters/DateFormat.tsx index 8a9cfb03da..e0b80e7cb4 100644 --- a/packages/system/src/components/Formatters/DateFormat.tsx +++ b/packages/system/src/components/Formatters/DateFormat.tsx @@ -3,7 +3,14 @@ import React from 'react'; import { DateFormatterOptions, useDateFormatter } from '@react-aria/i18n'; interface DateFormatProps extends DateFormatterOptions { + /** + * Value to be formatted. + */ value: Date; + /** + * Specifies that the digits should take the full width. + * @default true + */ tabular?: boolean; } diff --git a/packages/system/src/components/Formatters/NumericFormat.tsx b/packages/system/src/components/Formatters/NumericFormat.tsx index 2bb39ee7f0..5c29c0eb1b 100644 --- a/packages/system/src/components/Formatters/NumericFormat.tsx +++ b/packages/system/src/components/Formatters/NumericFormat.tsx @@ -3,8 +3,18 @@ import React from 'react'; import { useNumberFormatter } from '@react-aria/i18n'; interface NumericFormatProps extends Intl.NumberFormatOptions { + /** + * Value to be formatted. + */ value: number | bigint; + /** + * The numberingSystem accessor property of Intl.Locale instances returns the numeral system for this locale. + */ numberingSystem?: string; + /** + * Specifies that the digits should take the full width. + * @default true + */ tabular?: boolean; } diff --git a/packages/system/src/components/SVG/SVG.tsx b/packages/system/src/components/SVG/SVG.tsx index 236432cb5e..92281e12bd 100644 --- a/packages/system/src/components/SVG/SVG.tsx +++ b/packages/system/src/components/SVG/SVG.tsx @@ -6,7 +6,13 @@ import { useTheme } from '../../hooks'; import { cn, createVar, getColor } from '../../utils'; export interface SVGProps extends Omit, 'fill' | 'style'> { + /** + * The size of an svg. + */ size?: number | string | number[] | string[]; + /** + * To add a className on svg and icons. + */ className?: string; }