From 77716257dc29717eda2ba22691be3a14064bc9a6 Mon Sep 17 00:00:00 2001 From: Sebastian Sebald Date: Thu, 11 Jul 2024 11:49:04 +0200 Subject: [PATCH] docs: unify prop generation (#3996) * docs: improve props generation a bit * optimize * adjust api of props table --- docs/.component-props/index.json | 184095 --------------- .../application/provider/provider.mdx | 4 +- .../routerprovider/routerprovider.mdx | 2 +- .../collection/accordion/accordion.mdx | 4 +- .../collection/selectlist/selectlist.mdx | 4 +- .../components/collection/table/table.mdx | 10 +- .../content/components/collection/tag/tag.mdx | 10 +- .../components/content/badge/badge.mdx | 2 +- docs/content/components/content/card/card.mdx | 2 +- .../components/content/headline/headline.mdx | 2 +- docs/content/components/content/icon/icon.mdx | 2 +- .../components/content/image/image.mdx | 2 +- docs/content/components/content/link/link.mdx | 2 +- docs/content/components/content/list/list.mdx | 2 +- .../section-message/section-message.mdx | 2 +- docs/content/components/content/svg/svg.mdx | 2 +- docs/content/components/content/text/text.mdx | 2 +- .../visually-hidden/visually-hidden.mdx | 2 +- .../components/content/xloader/xloader.mdx | 2 +- .../form/autocomplete/autocomplete.mdx | 4 +- .../content/components/form/button/button.mdx | 2 +- .../components/form/calendar/calendar.mdx | 2 +- .../components/form/checkbox/checkbox.mdx | 4 +- .../components/form/combobox/combobox.mdx | 4 +- .../components/form/datefield/datefield.mdx | 2 +- .../components/form/datepicker/datepicker.mdx | 2 +- .../form/fieldgroup/field-group.mdx | 2 +- docs/content/components/form/form/form.mdx | 2 +- .../form/number-field/number-field.mdx | 2 +- docs/content/components/form/radio/radio.mdx | 4 +- .../form/search-field/search-field.mdx | 2 +- .../content/components/form/select/select.mdx | 6 +- .../content/components/form/slider/slider.mdx | 2 +- .../content/components/form/switch/switch.mdx | 2 +- .../components/form/text-area/text-area.mdx | 2 +- .../components/form/textfield/textfield.mdx | 2 +- .../formatters/dateformat/dateFormat.mdx | 2 +- .../numericformat/numericFormat.mdx | 2 +- .../content/components/layout/aside/aside.mdx | 2 +- .../components/layout/aspect/aspect.mdx | 2 +- .../components/layout/breakout/breakout.mdx | 2 +- .../components/layout/center/center.mdx | 2 +- .../components/layout/columns/columns.mdx | 2 +- .../components/layout/container/container.mdx | 2 +- docs/content/components/layout/grid/grid.mdx | 2 +- .../components/layout/inline/inline.mdx | 2 +- .../content/components/layout/inset/inset.mdx | 2 +- .../layout/scrollable/scrollable.mdx | 2 +- .../content/components/layout/stack/stack.mdx | 2 +- .../content/components/layout/tiles/tiles.mdx | 2 +- .../components/navigation/tabs/tabs.mdx | 8 +- .../components/overlay/dialog/dialog.mdx | 4 +- docs/content/components/overlay/menu/menu.mdx | 6 +- .../components/overlay/tooltip/tooltip.mdx | 4 +- docs/scripts/build-component-props.mjs | 80 +- docs/scripts/build-registry.mjs | 4 +- docs/tsconfig.json | 2 +- docs/ui/ComponentDemo.tsx | 2 +- docs/ui/PropsTable.tsx | 12 +- packages/components/src/Table/TableHeader.tsx | 6 + 60 files changed, 132 insertions(+), 184223 deletions(-) delete mode 100644 docs/.component-props/index.json diff --git a/docs/.component-props/index.json b/docs/.component-props/index.json deleted file mode 100644 index b28edfcf80..0000000000 --- a/docs/.component-props/index.json +++ /dev/null @@ -1,184095 +0,0 @@ -{ - "test.utils.tsx": { - "theme": { - "defaultValue": null, - "description": "The theme that should be used within the provider context.", - "name": "theme", - "parent": { - "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", - "name": "ThemeProviderProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", - "name": "ThemeProviderProps" - } - ], - "required": true, - "type": { - "name": "Theme" - } - }, - "className": { - "defaultValue": null, - "description": "Additional class names to apply to the root element of the provider.", - "name": "className", - "parent": { - "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", - "name": "ThemeProviderProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", - "name": "ThemeProviderProps" - } - ], - "required": false, - "type": { - "name": "string" - } - } - }, - "Accordion.tsx": { - "children": { - "defaultValue": null, - "description": "The children of the component", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Accordion/Accordion.tsx", - "name": "AccordionProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Accordion/Accordion.tsx", - "name": "AccordionProps" - } - ], - "required": true, - "type": { - "name": "ItemElement | ItemElement[]" - } - }, - "selectionMode": { - "defaultValue": { - "value": "single" - }, - "description": "Sets the mode of items open at the same time.", - "name": "selectionMode", - "parent": { - "fileName": "marigold/packages/components/src/Accordion/Accordion.tsx", - "name": "AccordionProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Accordion/Accordion.tsx", - "name": "AccordionProps" - } - ], - "required": false, - "type": { - "name": "SelectionMode" - } - }, - "items": { - "defaultValue": null, - "description": "Item objects in the collection.", - "name": "items", - "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" - } - }, - "defaultExpandedKeys": { - "defaultValue": null, - "description": "The initial expanded keys in the collection (uncontrolled).", - "name": "defaultExpandedKeys", - "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": "Expandable" - }, - "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": "Expandable" - } - ], - "required": false, - "type": { - "name": "Iterable" - } - }, - "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" - } - } - }, - "AccordionItem.tsx": { - "item": { - "defaultValue": null, - "description": "Represents a single node in the tree structure, including its key, value, and any child nodes.", - "name": "item", - "parent": { - "fileName": "marigold/packages/components/src/Accordion/AccordionItem.tsx", - "name": "AccordionItemProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Accordion/AccordionItem.tsx", - "name": "AccordionItemProps" - } - ], - "required": true, - "type": { - "name": "Node" - } - }, - "state": { - "defaultValue": null, - "description": "Manages the state of the tree structure, including selection and expansion of nodes.", - "name": "state", - "parent": { - "fileName": "marigold/packages/components/src/Accordion/AccordionItem.tsx", - "name": "AccordionItemProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Accordion/AccordionItem.tsx", - "name": "AccordionItemProps" - } - ], - "required": true, - "type": { - "name": "TreeState" - } - }, - "title": { - "defaultValue": null, - "description": "Sets title of the accordion item which will be displayed to the button.", - "name": "title", - "parent": { - "fileName": "marigold/packages/components/src/Accordion/AccordionItem.tsx", - "name": "AccordionItemProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Accordion/AccordionItem.tsx", - "name": "AccordionItemProps" - } - ], - "required": true, - "type": { - "name": "ReactNode" - } - } - }, - "Aside.tsx": { - "children": { - "defaultValue": null, - "description": "The children of the component.", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Aside/Aside.tsx", - "name": "AsideProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Aside/Aside.tsx", - "name": "AsideProps" - } - ], - "required": true, - "type": { - "name": "[ReactElement>, ReactElement>]" - } - }, - "side": { - "defaultValue": { - "value": "left" - }, - "description": "The side of the aside content.", - "name": "side", - "parent": { - "fileName": "marigold/packages/components/src/Aside/Aside.tsx", - "name": "AsideProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Aside/Aside.tsx", - "name": "AsideProps" - } - ], - "required": false, - "type": { - "name": "\"left\" | \"right\"" - } - }, - "sideWidth": { - "defaultValue": null, - "description": "The side width of the aside content.", - "name": "sideWidth", - "parent": { - "fileName": "marigold/packages/components/src/Aside/Aside.tsx", - "name": "AsideProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Aside/Aside.tsx", - "name": "AsideProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "wrap": { - "defaultValue": { - "value": "50%" - }, - "description": "At which percent the content should wrap.", - "name": "wrap", - "parent": { - "fileName": "marigold/packages/components/src/Aside/Aside.tsx", - "name": "AsideProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Aside/Aside.tsx", - "name": "AsideProps" - } - ], - "required": false, - "type": { - "name": "NonZeroPercentage" - } - }, - "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 | 2 | \"0.5\" | 1 | \"1.5\" | \"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" - } - } - }, - "Aspect.tsx": { - "children": { - "defaultValue": null, - "description": "The children of the component.", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Aspect/Aspect.tsx", - "name": "AspectProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Aspect/Aspect.tsx", - "name": "AspectProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "maxWidth": { - "defaultValue": { - "value": "100%" - }, - "description": "The maximum width of the image.", - "name": "maxWidth", - "parent": { - "fileName": "marigold/packages/components/src/Aspect/Aspect.tsx", - "name": "AspectProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Aspect/Aspect.tsx", - "name": "AspectProps" - } - ], - "required": false, - "type": { - "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" - } - }, - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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 | \"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\" | \"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\" | \"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": "\"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": "\"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" - } - }, - "ratio": { - "defaultValue": { - "value": "square" - }, - "description": "", - "name": "ratio", - "declarations": [ - { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" - } - ], - "required": false, - "type": { - "name": "\"square\" | \"landscape\" | \"portrait\" | \"widescreen\" | \"ultrawide\" | \"golden\"" - } - } - }, - "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, - "description": "Children of the component", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Badge/Badge.tsx", - "name": "BadgeProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Badge/Badge.tsx", - "name": "BadgeProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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 | \"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\" | \"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\" | \"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": "\"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": "\"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" - } - } - }, - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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": "\"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\" | \"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\" | \"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": "\"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": "\"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" - } - }, - "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" - } - } - }, - "Body.tsx": { - "children": { - "defaultValue": null, - "description": "Children of the component", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Body/Body.tsx", - "name": "BodyProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Body/Body.tsx", - "name": "BodyProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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 | \"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\" | \"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\" | \"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": "\"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": "\"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" - } - } - }, - "Button.tsx": { - "fullWidth": { - "defaultValue": { - "value": "false" - }, - "description": "Stretches the button width with full available space.", - "name": "fullWidth", - "parent": { - "fileName": "marigold/packages/components/src/Button/Button.tsx", - "name": "ButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Button/Button.tsx", - "name": "ButtonProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "className": { - "defaultValue": null, - "description": "Class of the component.", - "name": "className", - "parent": { - "fileName": "marigold/packages/components/src/Button/Button.tsx", - "name": "ButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Button/Button.tsx", - "name": "ButtonProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "children": { - "defaultValue": null, - "description": "Children of the component", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Button/Button.tsx", - "name": "ButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Button/Button.tsx", - "name": "ButtonProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "Disables the button.", - "name": "disabled", - "parent": { - "fileName": "marigold/packages/components/src/Button/Button.tsx", - "name": "ButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Button/Button.tsx", - "name": "ButtonProps" - } - ], - "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)" - } - }, - "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/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - } - ], - "required": false, - "type": { - "name": "boolean | \"true\" | \"false\"" - } - }, - "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+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - } - ], - "required": false, - "type": { - "name": "boolean | \"true\" | \"false\" | \"menu\" | \"listbox\" | \"tree\" | \"grid\" | \"dialog\"" - } - }, - "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+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-pressed": { - "defaultValue": null, - "description": "Indicates the current \"pressed\" state of toggle buttons.", - "name": "aria-pressed", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - } - ], - "required": false, - "type": { - "name": "boolean | \"true\" | \"false\" | \"mixed\"" - } - }, - "type": { - "defaultValue": { - "value": "'button'" - }, - "description": "The behavior of the button when used in an HTML form.", - "name": "type", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - } - ], - "required": false, - "type": { - "name": "\"button\" | \"submit\" | \"reset\"" - } - }, - "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" - } - }, - "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" - } - }, - "form": { - "defaultValue": null, - "description": "The `
` element to associate the button with.\nThe value of this attribute must be the id of a `` in the same document.", - "name": "form", - "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": "ButtonProps" - }, - "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": "ButtonProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "formAction": { - "defaultValue": null, - "description": "The URL that processes the information submitted by the button.\nOverrides the action attribute of the button's form owner.", - "name": "formAction", - "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": "ButtonProps" - }, - "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": "ButtonProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "formEncType": { - "defaultValue": null, - "description": "Indicates how to encode the form data that is submitted.", - "name": "formEncType", - "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": "ButtonProps" - }, - "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": "ButtonProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "formMethod": { - "defaultValue": null, - "description": "Indicates the HTTP method used to submit the form.", - "name": "formMethod", - "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": "ButtonProps" - }, - "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": "ButtonProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "formNoValidate": { - "defaultValue": null, - "description": "Indicates that the form is not to be validated when it is submitted.", - "name": "formNoValidate", - "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": "ButtonProps" - }, - "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": "ButtonProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "formTarget": { - "defaultValue": null, - "description": "Overrides the target attribute of the button's form owner.", - "name": "formTarget", - "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": "ButtonProps" - }, - "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": "ButtonProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "name": { - "defaultValue": null, - "description": "Submitted as a pair with the button's value as part of the form data.", - "name": "name", - "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": "ButtonProps" - }, - "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": "ButtonProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "value": { - "defaultValue": null, - "description": "The value associated with the button's name when it's submitted with the form data.", - "name": "value", - "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": "ButtonProps" - }, - "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": "ButtonProps" - } - ], - "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)" - } - }, - "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" - } - }, - "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: ButtonRenderProps & { defaultStyle: CSSProperties; }) => CSSProperties)" - } - }, - "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" - } - } - }, - "Calendar.tsx": { - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "Disables the Calendar.", - "name": "disabled", - "parent": { - "fileName": "marigold/packages/components/src/Calendar/Calendar.tsx", - "name": "CalendarProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Calendar/Calendar.tsx", - "name": "CalendarProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "readOnly": { - "defaultValue": { - "value": "false" - }, - "description": "Whether the calendar value is immutable.", - "name": "readOnly", - "parent": { - "fileName": "marigold/packages/components/src/Calendar/Calendar.tsx", - "name": "CalendarProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Calendar/Calendar.tsx", - "name": "CalendarProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "width": { - "defaultValue": null, - "description": "", - "name": "width", - "parent": { - "fileName": "marigold/packages/components/src/Calendar/Calendar.tsx", - "name": "CalendarProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Calendar/Calendar.tsx", - "name": "CalendarProps" - } - ], - "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 ..." - } - }, - "minValue": { - "defaultValue": null, - "description": "The minimum allowed date that a user may select.", - "name": "minValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+calendar@3.4.6_react@18.3.1/node_modules/@react-types/calendar/src/index.d.ts", - "name": "CalendarPropsBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+calendar@3.4.6_react@18.3.1/node_modules/@react-types/calendar/src/index.d.ts", - "name": "CalendarPropsBase" - } - ], - "required": false, - "type": { - "name": "DateValue" - } - }, - "maxValue": { - "defaultValue": null, - "description": "The maximum allowed date that a user may select.", - "name": "maxValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+calendar@3.4.6_react@18.3.1/node_modules/@react-types/calendar/src/index.d.ts", - "name": "CalendarPropsBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+calendar@3.4.6_react@18.3.1/node_modules/@react-types/calendar/src/index.d.ts", - "name": "CalendarPropsBase" - } - ], - "required": false, - "type": { - "name": "DateValue" - } - }, - "isDateUnavailable": { - "defaultValue": null, - "description": "Callback that is called for each date of the calendar. If it returns true, then the date is unavailable.", - "name": "isDateUnavailable", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+calendar@3.4.6_react@18.3.1/node_modules/@react-types/calendar/src/index.d.ts", - "name": "CalendarPropsBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+calendar@3.4.6_react@18.3.1/node_modules/@react-types/calendar/src/index.d.ts", - "name": "CalendarPropsBase" - } - ], - "required": false, - "type": { - "name": "((date: DateValue) => boolean)" - } - }, - "autoFocus": { - "defaultValue": { - "value": "false" - }, - "description": "Whether to automatically focus the calendar when it mounts.", - "name": "autoFocus", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+calendar@3.4.6_react@18.3.1/node_modules/@react-types/calendar/src/index.d.ts", - "name": "CalendarPropsBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+calendar@3.4.6_react@18.3.1/node_modules/@react-types/calendar/src/index.d.ts", - "name": "CalendarPropsBase" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "focusedValue": { - "defaultValue": null, - "description": "Controls the currently focused date within the calendar.", - "name": "focusedValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+calendar@3.4.6_react@18.3.1/node_modules/@react-types/calendar/src/index.d.ts", - "name": "CalendarPropsBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+calendar@3.4.6_react@18.3.1/node_modules/@react-types/calendar/src/index.d.ts", - "name": "CalendarPropsBase" - } - ], - "required": false, - "type": { - "name": "DateValue" - } - }, - "defaultFocusedValue": { - "defaultValue": null, - "description": "The date that is focused when the calendar first mounts (uncountrolled).", - "name": "defaultFocusedValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+calendar@3.4.6_react@18.3.1/node_modules/@react-types/calendar/src/index.d.ts", - "name": "CalendarPropsBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+calendar@3.4.6_react@18.3.1/node_modules/@react-types/calendar/src/index.d.ts", - "name": "CalendarPropsBase" - } - ], - "required": false, - "type": { - "name": "DateValue" - } - }, - "onFocusChange": { - "defaultValue": null, - "description": "Handler that is called when the focused date changes.", - "name": "onFocusChange", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+calendar@3.4.6_react@18.3.1/node_modules/@react-types/calendar/src/index.d.ts", - "name": "CalendarPropsBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+calendar@3.4.6_react@18.3.1/node_modules/@react-types/calendar/src/index.d.ts", - "name": "CalendarPropsBase" - } - ], - "required": false, - "type": { - "name": "((date: CalendarDate) => void)" - } - }, - "pageBehavior": { - "defaultValue": { - "value": "visible" - }, - "description": "Controls the behavior of paging. Pagination either works by advancing the visible page by visibleDuration (default) or one unit of visibleDuration.", - "name": "pageBehavior", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+calendar@3.4.6_react@18.3.1/node_modules/@react-types/calendar/src/index.d.ts", - "name": "CalendarPropsBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+calendar@3.4.6_react@18.3.1/node_modules/@react-types/calendar/src/index.d.ts", - "name": "CalendarPropsBase" - } - ], - "required": false, - "type": { - "name": "PageBehavior" - } - }, - "value": { - "defaultValue": null, - "description": "The current value (controlled).", - "name": "value", - "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": "DateValue | null" - } - }, - "defaultValue": { - "defaultValue": null, - "description": "The default value (uncontrolled).", - "name": "defaultValue", - "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": "DateValue | null" - } - }, - "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: DateValue) => void)" - } - }, - "visibleDuration": { - "defaultValue": { - "value": "{months: 1}" - }, - "description": "The amount of days that will be displayed at once. This affects how pagination works.", - "name": "visibleDuration", - "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": "CalendarProps" - }, - "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": "CalendarProps" - } - ], - "required": false, - "type": { - "name": "DateDuration" - } - }, - "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: CalendarRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" - } - }, - "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" - } - } - }, - "CalendarGridHeader.tsx": { - "children": { - "defaultValue": null, - "description": "Either a function to render calendar cells for each date in the month,\nor children containing a ``` and ``\nwhen additional customization is needed.", - "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": "CalendarGridProps" - }, - "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": "CalendarGridProps" - } - ], - "required": false, - "type": { - "name": "ReactElement> | ReactElement>[] | ((date: CalendarDate) => ReactElement<...>)" - } - }, - "offset": { - "defaultValue": null, - "description": "An offset from the beginning of the visible date range that this\nCalendarGrid should display. Useful when displaying more than one\nmonth at a time.", - "name": "offset", - "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": "CalendarGridProps" - }, - "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": "CalendarGridProps" - } - ], - "required": false, - "type": { - "name": "DateDuration" - } - }, - "weekdayStyle": { - "defaultValue": { - "value": "\"narrow\"" - }, - "description": "The style of weekday names to display in the calendar grid header,\ne.g. single letter, abbreviation, or full day name.", - "name": "weekdayStyle", - "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": "CalendarGridProps" - }, - "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": "CalendarGridProps" - } - ], - "required": false, - "type": { - "name": "\"narrow\" | \"short\" | \"long\"" - } - }, - "className": { - "defaultValue": null, - "description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element.", - "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": "StyleProps" - }, - "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": "StyleProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "style": { - "defaultValue": null, - "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element.", - "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": "StyleProps" - }, - "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": "StyleProps" - } - ], - "required": false, - "type": { - "name": "CSSProperties" - } - } - }, - "CalendarListBox.tsx": { - "type": { - "defaultValue": null, - "description": "", - "name": "type", - "parent": { - "fileName": "marigold/packages/components/src/Calendar/CalendarListBox.tsx", - "name": "CalendarButtonListBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Calendar/CalendarListBox.tsx", - "name": "CalendarButtonListBoxProps" - } - ], - "required": true, - "type": { - "name": "string" - } - }, - "isDisabled": { - "defaultValue": null, - "description": "", - "name": "isDisabled", - "parent": { - "fileName": "marigold/packages/components/src/Calendar/CalendarListBox.tsx", - "name": "CalendarButtonListBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Calendar/CalendarListBox.tsx", - "name": "CalendarButtonListBoxProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "setSelectedDropdown": { - "defaultValue": null, - "description": "", - "name": "setSelectedDropdown", - "parent": { - "fileName": "marigold/packages/components/src/Calendar/CalendarListBox.tsx", - "name": "CalendarButtonListBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Calendar/CalendarListBox.tsx", - "name": "CalendarButtonListBoxProps" - } - ], - "required": true, - "type": { - "name": "Dispatch>" - } - } - }, - "MonthListBox.tsx": { - "setSelectedDropdown": { - "defaultValue": null, - "description": "", - "name": "setSelectedDropdown", - "parent": { - "fileName": "marigold/packages/components/src/Calendar/MonthListBox.tsx", - "name": "MonthDropdownProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Calendar/MonthListBox.tsx", - "name": "MonthDropdownProps" - } - ], - "required": true, - "type": { - "name": "Dispatch>" - } - } - }, - "YearListBox.tsx": { - "setSelectedDropdown": { - "defaultValue": null, - "description": "", - "name": "setSelectedDropdown", - "parent": { - "fileName": "marigold/packages/components/src/Calendar/YearListBox.tsx", - "name": "YearDropdownProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Calendar/YearListBox.tsx", - "name": "YearDropdownProps" - } - ], - "required": true, - "type": { - "name": "Dispatch>" - } - } - }, - "Card.tsx": { - "p": { - "defaultValue": null, - "description": "Padding of the component.", - "name": "p", - "parent": { - "fileName": "marigold/packages/components/src/Card/Card.tsx", - "name": "CardProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Card/Card.tsx", - "name": "CardProps" - } - ], - "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" - } - }, - "px": { - "defaultValue": null, - "description": "Padding horizontal (left and right) of the component.", - "name": "px", - "parent": { - "fileName": "marigold/packages/components/src/Card/Card.tsx", - "name": "CardProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Card/Card.tsx", - "name": "CardProps" - } - ], - "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" - } - }, - "py": { - "defaultValue": null, - "description": "Padding vertical (top and bottom) of the component.", - "name": "py", - "parent": { - "fileName": "marigold/packages/components/src/Card/Card.tsx", - "name": "CardProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Card/Card.tsx", - "name": "CardProps" - } - ], - "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" - } - }, - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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 | \"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\" | \"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\" | \"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": "\"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": "\"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" - } - }, - "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" - } - }, - "spaceX": { - "defaultValue": null, - "description": "Set the horizontal padding space for the element.", - "name": "spaceX", - "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" - } - }, - "spaceY": { - "defaultValue": null, - "description": "Set the vertical padding space for the element.", - "name": "spaceY", - "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" - } - }, - "pr": { - "defaultValue": null, - "description": "Set the right padding for the element.", - "name": "pr", - "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" - } - }, - "pl": { - "defaultValue": null, - "description": "Set the left padding for the element.", - "name": "pl", - "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" - } - }, - "pb": { - "defaultValue": null, - "description": "Set the bottom padding for the element.", - "name": "pb", - "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" - } - }, - "pt": { - "defaultValue": null, - "description": "Set the top padding for the element.", - "name": "pt", - "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" - } - } - }, - "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": "false" - }, - "description": "Use when it represents both selected and not selected values.", - "name": "indeterminate", - "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" - } - }, - "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, - "type": { - "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" - } - }, - "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" - } - }, - "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": "", - "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" - }, - { - "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" - } - }, - "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": "\"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" - }, - "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" - } - }, - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"off\" | \"on\"" - } - }, - "inputMode": { - "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", - "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": "\"search\" | \"text\" | \"email\" | \"tel\" | \"none\" | \"url\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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 | \"time\" | \"step\" | \"true\" | \"false\" | \"page\" | \"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\" | \"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\" | \"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": "\"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": "\"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" - } - }, - "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" - } - }, - "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" - } - }, - "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" - } - }, - "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" - } - }, - "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" - } - }, - "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" - }, - "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" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "onChange": { - "defaultValue": null, - "description": "Handler that is called when the element's selection state changes.", - "name": "onChange", - "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" - }, - "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" - } - ], - "required": false, - "type": { - "name": "((isSelected: boolean) => void)" - } - }, - "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)" - } - }, - "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)" - } - }, - "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" - } - } - }, - "CheckboxGroup.tsx": { - "children": { - "defaultValue": null, - "description": "The children of the component", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "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/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" - } - ], - "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": "Sets all checkboxes to disabled", - "name": "disabled", - "parent": { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "required": { - "defaultValue": { - "value": "false" - }, - "description": "Sets the checkbox as required.", - "name": "required", - "parent": { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" - } - ], - "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/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "readOnly": { - "defaultValue": { - "value": "false" - }, - "description": "Sets the checkbox on read only.", - "name": "readOnly", - "parent": { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "orientation": { - "defaultValue": { - "value": "vertical" - }, - "description": "Wheather the component is displayed vertically or horizontally.", - "name": "orientation", - "parent": { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Checkbox/CheckboxGroup.tsx", - "name": "CheckboxGroupProps" - } - ], - "required": false, - "type": { - "name": "Orientation" - } - }, - "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\"" - } - }, - "value": { - "defaultValue": null, - "description": "The current value (controlled).", - "name": "value", - "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": "string[]" - } - }, - "defaultValue": { - "defaultValue": null, - "description": "The default value (uncontrolled).", - "name": "defaultValue", - "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": "string[]" - } - }, - "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)" - } - }, - "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" - } - }, - "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)" - } - }, - "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" - } - }, - "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" - } - }, - "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" - } - }, - "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)" - } - }, - "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)" - } - } - }, - "Center.tsx": { - "maxWidth": { - "defaultValue": { - "value": "100%" - }, - "description": "The maximum width of the container.", - "name": "maxWidth", - "parent": { - "fileName": "marigold/packages/components/src/Center/Center.tsx", - "name": "CenterProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Center/Center.tsx", - "name": "CenterProps" - } - ], - "required": false, - "type": { - "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" - } - }, - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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 | \"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\" | \"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\" | \"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": "\"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": "\"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" - } - }, - "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" - } - } - }, - "ChevronDown.tsx": { - "className": { - "defaultValue": null, - "description": "To add a className on svg and icons.", - "name": "className", - "parent": { - "fileName": "marigold/packages/components/src/Chevron/ChevronDown.tsx", - "name": "SVGProps" - }, - "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" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "autoReverse": { - "defaultValue": null, - "description": "", - "name": "autoReverse", - "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": "Booleanish" - } - }, - "azimuth": { - "defaultValue": null, - "description": "", - "name": "azimuth", - "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" - } - }, - "baseFrequency": { - "defaultValue": null, - "description": "", - "name": "baseFrequency", - "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" - } - }, - "baselineShift": { - "defaultValue": null, - "description": "", - "name": "baselineShift", - "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" - } - }, - "baseProfile": { - "defaultValue": null, - "description": "", - "name": "baseProfile", - "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" - } - }, - "bbox": { - "defaultValue": null, - "description": "", - "name": "bbox", - "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" - } - }, - "begin": { - "defaultValue": null, - "description": "", - "name": "begin", - "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" - } - }, - "bias": { - "defaultValue": null, - "description": "", - "name": "bias", - "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" - } - }, - "by": { - "defaultValue": null, - "description": "", - "name": "by", - "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" - } - }, - "calcMode": { - "defaultValue": null, - "description": "", - "name": "calcMode", - "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" - } - }, - "capHeight": { - "defaultValue": null, - "description": "", - "name": "capHeight", - "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" - } - }, - "clip": { - "defaultValue": null, - "description": "", - "name": "clip", - "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" - } - }, - "clipPathUnits": { - "defaultValue": null, - "description": "", - "name": "clipPathUnits", - "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" - } - }, - "clipRule": { - "defaultValue": null, - "description": "", - "name": "clipRule", - "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" - } - }, - "colorInterpolation": { - "defaultValue": null, - "description": "", - "name": "colorInterpolation", - "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" - } - }, - "colorInterpolationFilters": { - "defaultValue": null, - "description": "", - "name": "colorInterpolationFilters", - "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": "\"auto\" | \"inherit\" | \"sRGB\" | \"linearRGB\"" - } - }, - "colorProfile": { - "defaultValue": null, - "description": "", - "name": "colorProfile", - "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" - } - }, - "colorRendering": { - "defaultValue": null, - "description": "", - "name": "colorRendering", - "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" - } - }, - "contentScriptType": { - "defaultValue": null, - "description": "", - "name": "contentScriptType", - "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" - } - }, - "contentStyleType": { - "defaultValue": null, - "description": "", - "name": "contentStyleType", - "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" - } - }, - "cursor": { - "defaultValue": null, - "description": "", - "name": "cursor", - "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" - } - }, - "cx": { - "defaultValue": null, - "description": "", - "name": "cx", - "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" - } - }, - "cy": { - "defaultValue": null, - "description": "", - "name": "cy", - "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" - } - }, - "d": { - "defaultValue": null, - "description": "", - "name": "d", - "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" - } - }, - "decelerate": { - "defaultValue": null, - "description": "", - "name": "decelerate", - "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" - } - }, - "descent": { - "defaultValue": null, - "description": "", - "name": "descent", - "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" - } - }, - "diffuseConstant": { - "defaultValue": null, - "description": "", - "name": "diffuseConstant", - "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" - } - }, - "direction": { - "defaultValue": null, - "description": "", - "name": "direction", - "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" - } - }, - "display": { - "defaultValue": null, - "description": "", - "name": "display", - "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" - } - }, - "divisor": { - "defaultValue": null, - "description": "", - "name": "divisor", - "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" - } - }, - "dominantBaseline": { - "defaultValue": null, - "description": "", - "name": "dominantBaseline", - "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" - } - }, - "dur": { - "defaultValue": null, - "description": "", - "name": "dur", - "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" - } - }, - "dx": { - "defaultValue": null, - "description": "", - "name": "dx", - "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" - } - }, - "dy": { - "defaultValue": null, - "description": "", - "name": "dy", - "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" - } - }, - "edgeMode": { - "defaultValue": null, - "description": "", - "name": "edgeMode", - "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" - } - }, - "elevation": { - "defaultValue": null, - "description": "", - "name": "elevation", - "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" - } - }, - "enableBackground": { - "defaultValue": null, - "description": "", - "name": "enableBackground", - "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" - } - }, - "end": { - "defaultValue": null, - "description": "", - "name": "end", - "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" - } - }, - "exponent": { - "defaultValue": null, - "description": "", - "name": "exponent", - "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" - } - }, - "externalResourcesRequired": { - "defaultValue": null, - "description": "", - "name": "externalResourcesRequired", - "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": "Booleanish" - } - }, - "fillOpacity": { - "defaultValue": null, - "description": "", - "name": "fillOpacity", - "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" - } - }, - "fillRule": { - "defaultValue": null, - "description": "", - "name": "fillRule", - "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": "\"inherit\" | \"nonzero\" | \"evenodd\"" - } - }, - "filterRes": { - "defaultValue": null, - "description": "", - "name": "filterRes", - "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" - } - }, - "filterUnits": { - "defaultValue": null, - "description": "", - "name": "filterUnits", - "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" - } - }, - "floodColor": { - "defaultValue": null, - "description": "", - "name": "floodColor", - "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" - } - }, - "floodOpacity": { - "defaultValue": null, - "description": "", - "name": "floodOpacity", - "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" - } - }, - "focusable": { - "defaultValue": null, - "description": "", - "name": "focusable", - "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": "\"auto\" | Booleanish" - } - }, - "fontFamily": { - "defaultValue": null, - "description": "", - "name": "fontFamily", - "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" - } - }, - "fontSize": { - "defaultValue": null, - "description": "", - "name": "fontSize", - "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" - } - }, - "fontSizeAdjust": { - "defaultValue": null, - "description": "", - "name": "fontSizeAdjust", - "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" - } - }, - "fontStretch": { - "defaultValue": null, - "description": "", - "name": "fontStretch", - "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" - } - }, - "fontStyle": { - "defaultValue": null, - "description": "", - "name": "fontStyle", - "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" - } - }, - "fontVariant": { - "defaultValue": null, - "description": "", - "name": "fontVariant", - "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" - } - }, - "fontWeight": { - "defaultValue": null, - "description": "", - "name": "fontWeight", - "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" - } - }, - "format": { - "defaultValue": null, - "description": "", - "name": "format", - "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" - } - }, - "fr": { - "defaultValue": null, - "description": "", - "name": "fr", - "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" - } - }, - "from": { - "defaultValue": null, - "description": "", - "name": "from", - "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" - } - }, - "fx": { - "defaultValue": null, - "description": "", - "name": "fx", - "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" - } - }, - "fy": { - "defaultValue": null, - "description": "", - "name": "fy", - "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" - } - }, - "g1": { - "defaultValue": null, - "description": "", - "name": "g1", - "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" - } - }, - "g2": { - "defaultValue": null, - "description": "", - "name": "g2", - "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" - } - }, - "glyphName": { - "defaultValue": null, - "description": "", - "name": "glyphName", - "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" - } - }, - "glyphOrientationHorizontal": { - "defaultValue": null, - "description": "", - "name": "glyphOrientationHorizontal", - "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" - } - }, - "glyphOrientationVertical": { - "defaultValue": null, - "description": "", - "name": "glyphOrientationVertical", - "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" - } - }, - "glyphRef": { - "defaultValue": null, - "description": "", - "name": "glyphRef", - "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" - } - }, - "gradientTransform": { - "defaultValue": null, - "description": "", - "name": "gradientTransform", - "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" - } - }, - "gradientUnits": { - "defaultValue": null, - "description": "", - "name": "gradientUnits", - "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" - } - }, - "hanging": { - "defaultValue": null, - "description": "", - "name": "hanging", - "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" - } - }, - "horizAdvX": { - "defaultValue": null, - "description": "", - "name": "horizAdvX", - "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" - } - }, - "horizOriginX": { - "defaultValue": null, - "description": "", - "name": "horizOriginX", - "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" - } - }, - "href": { - "defaultValue": null, - "description": "", - "name": "href", - "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" - } - }, - "ideographic": { - "defaultValue": null, - "description": "", - "name": "ideographic", - "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" - } - }, - "imageRendering": { - "defaultValue": null, - "description": "", - "name": "imageRendering", - "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" - } - }, - "in2": { - "defaultValue": null, - "description": "", - "name": "in2", - "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" - } - }, - "in": { - "defaultValue": null, - "description": "", - "name": "in", - "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" - } - }, - "intercept": { - "defaultValue": null, - "description": "", - "name": "intercept", - "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" - } - }, - "k1": { - "defaultValue": null, - "description": "", - "name": "k1", - "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" - } - }, - "k2": { - "defaultValue": null, - "description": "", - "name": "k2", - "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" - } - }, - "k3": { - "defaultValue": null, - "description": "", - "name": "k3", - "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" - } - }, - "k4": { - "defaultValue": null, - "description": "", - "name": "k4", - "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" - } - }, - "k": { - "defaultValue": null, - "description": "", - "name": "k", - "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" - } - }, - "kernelMatrix": { - "defaultValue": null, - "description": "", - "name": "kernelMatrix", - "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" - } - }, - "kernelUnitLength": { - "defaultValue": null, - "description": "", - "name": "kernelUnitLength", - "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" - } - }, - "kerning": { - "defaultValue": null, - "description": "", - "name": "kerning", - "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" - } - }, - "keyPoints": { - "defaultValue": null, - "description": "", - "name": "keyPoints", - "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" - } - }, - "keySplines": { - "defaultValue": null, - "description": "", - "name": "keySplines", - "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" - } - }, - "keyTimes": { - "defaultValue": null, - "description": "", - "name": "keyTimes", - "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" - } - }, - "lengthAdjust": { - "defaultValue": null, - "description": "", - "name": "lengthAdjust", - "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" - } - }, - "letterSpacing": { - "defaultValue": null, - "description": "", - "name": "letterSpacing", - "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" - } - }, - "lightingColor": { - "defaultValue": null, - "description": "", - "name": "lightingColor", - "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" - } - }, - "limitingConeAngle": { - "defaultValue": null, - "description": "", - "name": "limitingConeAngle", - "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" - } - }, - "local": { - "defaultValue": null, - "description": "", - "name": "local", - "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" - } - }, - "markerEnd": { - "defaultValue": null, - "description": "", - "name": "markerEnd", - "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" - } - }, - "markerHeight": { - "defaultValue": null, - "description": "", - "name": "markerHeight", - "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" - } - }, - "markerMid": { - "defaultValue": null, - "description": "", - "name": "markerMid", - "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" - } - }, - "markerStart": { - "defaultValue": null, - "description": "", - "name": "markerStart", - "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" - } - }, - "markerUnits": { - "defaultValue": null, - "description": "", - "name": "markerUnits", - "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" - } - }, - "markerWidth": { - "defaultValue": null, - "description": "", - "name": "markerWidth", - "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" - } - }, - "maskContentUnits": { - "defaultValue": null, - "description": "", - "name": "maskContentUnits", - "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" - } - }, - "maskUnits": { - "defaultValue": null, - "description": "", - "name": "maskUnits", - "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" - } - }, - "mathematical": { - "defaultValue": null, - "description": "", - "name": "mathematical", - "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" - } - }, - "mode": { - "defaultValue": null, - "description": "", - "name": "mode", - "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" - } - }, - "numOctaves": { - "defaultValue": null, - "description": "", - "name": "numOctaves", - "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" - } - }, - "offset": { - "defaultValue": null, - "description": "", - "name": "offset", - "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" - } - }, - "opacity": { - "defaultValue": null, - "description": "", - "name": "opacity", - "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" - } - }, - "operator": { - "defaultValue": null, - "description": "", - "name": "operator", - "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" - } - }, - "order": { - "defaultValue": null, - "description": "", - "name": "order", - "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" - } - }, - "orient": { - "defaultValue": null, - "description": "", - "name": "orient", - "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" - } - }, - "orientation": { - "defaultValue": null, - "description": "", - "name": "orientation", - "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" - } - }, - "origin": { - "defaultValue": null, - "description": "", - "name": "origin", - "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" - } - }, - "overflow": { - "defaultValue": null, - "description": "", - "name": "overflow", - "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" - } - }, - "overlinePosition": { - "defaultValue": null, - "description": "", - "name": "overlinePosition", - "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" - } - }, - "overlineThickness": { - "defaultValue": null, - "description": "", - "name": "overlineThickness", - "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" - } - }, - "paintOrder": { - "defaultValue": null, - "description": "", - "name": "paintOrder", - "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" - } - }, - "panose1": { - "defaultValue": null, - "description": "", - "name": "panose1", - "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" - } - }, - "pathLength": { - "defaultValue": null, - "description": "", - "name": "pathLength", - "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" - } - }, - "patternContentUnits": { - "defaultValue": null, - "description": "", - "name": "patternContentUnits", - "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" - } - }, - "patternTransform": { - "defaultValue": null, - "description": "", - "name": "patternTransform", - "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" - } - }, - "patternUnits": { - "defaultValue": null, - "description": "", - "name": "patternUnits", - "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" - } - }, - "pointerEvents": { - "defaultValue": null, - "description": "", - "name": "pointerEvents", - "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" - } - }, - "points": { - "defaultValue": null, - "description": "", - "name": "points", - "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" - } - }, - "pointsAtX": { - "defaultValue": null, - "description": "", - "name": "pointsAtX", - "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" - } - }, - "pointsAtY": { - "defaultValue": null, - "description": "", - "name": "pointsAtY", - "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" - } - }, - "pointsAtZ": { - "defaultValue": null, - "description": "", - "name": "pointsAtZ", - "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" - } - }, - "preserveAlpha": { - "defaultValue": null, - "description": "", - "name": "preserveAlpha", - "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": "Booleanish" - } - }, - "preserveAspectRatio": { - "defaultValue": null, - "description": "", - "name": "preserveAspectRatio", - "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" - } - }, - "primitiveUnits": { - "defaultValue": null, - "description": "", - "name": "primitiveUnits", - "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" - } - }, - "r": { - "defaultValue": null, - "description": "", - "name": "r", - "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" - } - }, - "radius": { - "defaultValue": null, - "description": "", - "name": "radius", - "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" - } - }, - "refX": { - "defaultValue": null, - "description": "", - "name": "refX", - "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" - } - }, - "refY": { - "defaultValue": null, - "description": "", - "name": "refY", - "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" - } - }, - "renderingIntent": { - "defaultValue": null, - "description": "", - "name": "renderingIntent", - "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" - } - }, - "repeatCount": { - "defaultValue": null, - "description": "", - "name": "repeatCount", - "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" - } - }, - "repeatDur": { - "defaultValue": null, - "description": "", - "name": "repeatDur", - "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" - } - }, - "requiredExtensions": { - "defaultValue": null, - "description": "", - "name": "requiredExtensions", - "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" - } - }, - "requiredFeatures": { - "defaultValue": null, - "description": "", - "name": "requiredFeatures", - "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" - } - }, - "restart": { - "defaultValue": null, - "description": "", - "name": "restart", - "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" - } - }, - "result": { - "defaultValue": null, - "description": "", - "name": "result", - "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" - } - }, - "rotate": { - "defaultValue": null, - "description": "", - "name": "rotate", - "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" - } - }, - "rx": { - "defaultValue": null, - "description": "", - "name": "rx", - "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" - } - }, - "ry": { - "defaultValue": null, - "description": "", - "name": "ry", - "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" - } - }, - "scale": { - "defaultValue": null, - "description": "", - "name": "scale", - "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" - } - }, - "seed": { - "defaultValue": null, - "description": "", - "name": "seed", - "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" - } - }, - "shapeRendering": { - "defaultValue": null, - "description": "", - "name": "shapeRendering", - "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" - } - }, - "slope": { - "defaultValue": null, - "description": "", - "name": "slope", - "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" - } - }, - "spacing": { - "defaultValue": null, - "description": "", - "name": "spacing", - "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" - } - }, - "specularConstant": { - "defaultValue": null, - "description": "", - "name": "specularConstant", - "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" - } - }, - "specularExponent": { - "defaultValue": null, - "description": "", - "name": "specularExponent", - "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" - } - }, - "speed": { - "defaultValue": null, - "description": "", - "name": "speed", - "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" - } - }, - "spreadMethod": { - "defaultValue": null, - "description": "", - "name": "spreadMethod", - "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" - } - }, - "startOffset": { - "defaultValue": null, - "description": "", - "name": "startOffset", - "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" - } - }, - "stdDeviation": { - "defaultValue": null, - "description": "", - "name": "stdDeviation", - "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" - } - }, - "stemh": { - "defaultValue": null, - "description": "", - "name": "stemh", - "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" - } - }, - "stemv": { - "defaultValue": null, - "description": "", - "name": "stemv", - "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" - } - }, - "stitchTiles": { - "defaultValue": null, - "description": "", - "name": "stitchTiles", - "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" - } - }, - "stopColor": { - "defaultValue": null, - "description": "", - "name": "stopColor", - "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" - } - }, - "stopOpacity": { - "defaultValue": null, - "description": "", - "name": "stopOpacity", - "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" - } - }, - "strikethroughPosition": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strikethroughThickness": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "stroke": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "strokeDasharray": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strokeDashoffset": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strokeLinecap": { - "defaultValue": null, - "description": "", - "name": "strokeLinecap", - "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": "\"inherit\" | \"butt\" | \"round\" | \"square\"" - } - }, - "strokeLinejoin": { - "defaultValue": null, - "description": "", - "name": "strokeLinejoin", - "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": "\"inherit\" | \"round\" | \"miter\" | \"bevel\"" - } - }, - "strokeMiterlimit": { - "defaultValue": null, - "description": "", - "name": "strokeMiterlimit", - "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" - } - }, - "strokeOpacity": { - "defaultValue": null, - "description": "", - "name": "strokeOpacity", - "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" - } - }, - "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" - }, - "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" - } - }, - "surfaceScale": { - "defaultValue": null, - "description": "", - "name": "surfaceScale", - "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" - } - }, - "systemLanguage": { - "defaultValue": null, - "description": "", - "name": "systemLanguage", - "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" - } - }, - "tableValues": { - "defaultValue": null, - "description": "", - "name": "tableValues", - "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" - } - }, - "targetX": { - "defaultValue": null, - "description": "", - "name": "targetX", - "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" - } - }, - "targetY": { - "defaultValue": null, - "description": "", - "name": "targetY", - "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" - } - }, - "textAnchor": { - "defaultValue": null, - "description": "", - "name": "textAnchor", - "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" - } - }, - "textDecoration": { - "defaultValue": null, - "description": "", - "name": "textDecoration", - "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" - } - }, - "textLength": { - "defaultValue": null, - "description": "", - "name": "textLength", - "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" - } - }, - "textRendering": { - "defaultValue": null, - "description": "", - "name": "textRendering", - "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" - } - }, - "to": { - "defaultValue": null, - "description": "", - "name": "to", - "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" - } - }, - "transform": { - "defaultValue": null, - "description": "", - "name": "transform", - "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" - } - }, - "u1": { - "defaultValue": null, - "description": "", - "name": "u1", - "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" - } - }, - "u2": { - "defaultValue": null, - "description": "", - "name": "u2", - "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" - } - }, - "underlinePosition": { - "defaultValue": null, - "description": "", - "name": "underlinePosition", - "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" - } - }, - "underlineThickness": { - "defaultValue": null, - "description": "", - "name": "underlineThickness", - "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" - } - }, - "unicode": { - "defaultValue": null, - "description": "", - "name": "unicode", - "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" - } - }, - "unicodeBidi": { - "defaultValue": null, - "description": "", - "name": "unicodeBidi", - "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" - } - }, - "unicodeRange": { - "defaultValue": null, - "description": "", - "name": "unicodeRange", - "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" - } - }, - "unitsPerEm": { - "defaultValue": null, - "description": "", - "name": "unitsPerEm", - "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" - } - }, - "vAlphabetic": { - "defaultValue": null, - "description": "", - "name": "vAlphabetic", - "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" - } - }, - "values": { - "defaultValue": null, - "description": "", - "name": "values", - "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" - } - }, - "vectorEffect": { - "defaultValue": null, - "description": "", - "name": "vectorEffect", - "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" - } - }, - "version": { - "defaultValue": null, - "description": "", - "name": "version", - "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" - } - }, - "vertAdvY": { - "defaultValue": null, - "description": "", - "name": "vertAdvY", - "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" - } - }, - "vertOriginX": { - "defaultValue": null, - "description": "", - "name": "vertOriginX", - "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" - } - }, - "vertOriginY": { - "defaultValue": null, - "description": "", - "name": "vertOriginY", - "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" - } - }, - "vHanging": { - "defaultValue": null, - "description": "", - "name": "vHanging", - "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" - } - }, - "vIdeographic": { - "defaultValue": null, - "description": "", - "name": "vIdeographic", - "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" - } - }, - "viewBox": { - "defaultValue": null, - "description": "", - "name": "viewBox", - "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" - } - }, - "viewTarget": { - "defaultValue": null, - "description": "", - "name": "viewTarget", - "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" - } - }, - "visibility": { - "defaultValue": null, - "description": "", - "name": "visibility", - "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" - } - }, - "vMathematical": { - "defaultValue": null, - "description": "", - "name": "vMathematical", - "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" - } - }, - "widths": { - "defaultValue": null, - "description": "", - "name": "widths", - "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" - } - }, - "wordSpacing": { - "defaultValue": null, - "description": "", - "name": "wordSpacing", - "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" - } - }, - "writingMode": { - "defaultValue": null, - "description": "", - "name": "writingMode", - "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" - } - }, - "x1": { - "defaultValue": null, - "description": "", - "name": "x1", - "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" - } - }, - "x2": { - "defaultValue": null, - "description": "", - "name": "x2", - "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" - } - }, - "x": { - "defaultValue": null, - "description": "", - "name": "x", - "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" - } - }, - "xChannelSelector": { - "defaultValue": null, - "description": "", - "name": "xChannelSelector", - "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" - } - }, - "xHeight": { - "defaultValue": null, - "description": "", - "name": "xHeight", - "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" - } - }, - "xlinkActuate": { - "defaultValue": null, - "description": "", - "name": "xlinkActuate", - "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" - } - }, - "xlinkArcrole": { - "defaultValue": null, - "description": "", - "name": "xlinkArcrole", - "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" - } - }, - "xlinkHref": { - "defaultValue": null, - "description": "", - "name": "xlinkHref", - "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" - } - }, - "xlinkRole": { - "defaultValue": null, - "description": "", - "name": "xlinkRole", - "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" - } - }, - "xlinkShow": { - "defaultValue": null, - "description": "", - "name": "xlinkShow", - "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" - } - }, - "xlinkTitle": { - "defaultValue": null, - "description": "", - "name": "xlinkTitle", - "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" - } - }, - "xlinkType": { - "defaultValue": null, - "description": "", - "name": "xlinkType", - "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" - } - }, - "xmlBase": { - "defaultValue": null, - "description": "", - "name": "xmlBase", - "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" - } - }, - "xmlLang": { - "defaultValue": null, - "description": "", - "name": "xmlLang", - "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" - } - }, - "xmlns": { - "defaultValue": null, - "description": "", - "name": "xmlns", - "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" - } - }, - "xmlnsXlink": { - "defaultValue": null, - "description": "", - "name": "xmlnsXlink", - "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" - } - }, - "xmlSpace": { - "defaultValue": null, - "description": "", - "name": "xmlSpace", - "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" - } - }, - "y1": { - "defaultValue": null, - "description": "", - "name": "y1", - "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" - } - }, - "y2": { - "defaultValue": null, - "description": "", - "name": "y2", - "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" - } - }, - "y": { - "defaultValue": null, - "description": "", - "name": "y", - "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" - } - }, - "yChannelSelector": { - "defaultValue": null, - "description": "", - "name": "yChannelSelector", - "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" - } - }, - "z": { - "defaultValue": null, - "description": "", - "name": "z", - "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" - } - }, - "zoomAndPan": { - "defaultValue": null, - "description": "", - "name": "zoomAndPan", - "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" - } - }, - "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 | \"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\" | \"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\" | \"menu\" | \"grid\" | \"listbox\" | \"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": "\"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" - } - }, - "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" - }, - { - "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" - } - }, - "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" - } - } - }, - "ChevronLeft.tsx": { - "className": { - "defaultValue": null, - "description": "To add a className on svg and icons.", - "name": "className", - "parent": { - "fileName": "marigold/packages/components/src/Chevron/ChevronLeft.tsx", - "name": "SVGProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Chevron/ChevronLeft.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" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "autoReverse": { - "defaultValue": null, - "description": "", - "name": "autoReverse", - "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": "Booleanish" - } - }, - "azimuth": { - "defaultValue": null, - "description": "", - "name": "azimuth", - "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" - } - }, - "baseFrequency": { - "defaultValue": null, - "description": "", - "name": "baseFrequency", - "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" - } - }, - "baselineShift": { - "defaultValue": null, - "description": "", - "name": "baselineShift", - "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" - } - }, - "baseProfile": { - "defaultValue": null, - "description": "", - "name": "baseProfile", - "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" - } - }, - "bbox": { - "defaultValue": null, - "description": "", - "name": "bbox", - "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" - } - }, - "begin": { - "defaultValue": null, - "description": "", - "name": "begin", - "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" - } - }, - "bias": { - "defaultValue": null, - "description": "", - "name": "bias", - "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" - } - }, - "by": { - "defaultValue": null, - "description": "", - "name": "by", - "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" - } - }, - "calcMode": { - "defaultValue": null, - "description": "", - "name": "calcMode", - "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" - } - }, - "capHeight": { - "defaultValue": null, - "description": "", - "name": "capHeight", - "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" - } - }, - "clip": { - "defaultValue": null, - "description": "", - "name": "clip", - "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" - } - }, - "clipPathUnits": { - "defaultValue": null, - "description": "", - "name": "clipPathUnits", - "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" - } - }, - "clipRule": { - "defaultValue": null, - "description": "", - "name": "clipRule", - "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" - } - }, - "colorInterpolation": { - "defaultValue": null, - "description": "", - "name": "colorInterpolation", - "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" - } - }, - "colorInterpolationFilters": { - "defaultValue": null, - "description": "", - "name": "colorInterpolationFilters", - "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": "\"auto\" | \"inherit\" | \"sRGB\" | \"linearRGB\"" - } - }, - "colorProfile": { - "defaultValue": null, - "description": "", - "name": "colorProfile", - "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" - } - }, - "colorRendering": { - "defaultValue": null, - "description": "", - "name": "colorRendering", - "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" - } - }, - "contentScriptType": { - "defaultValue": null, - "description": "", - "name": "contentScriptType", - "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" - } - }, - "contentStyleType": { - "defaultValue": null, - "description": "", - "name": "contentStyleType", - "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" - } - }, - "cursor": { - "defaultValue": null, - "description": "", - "name": "cursor", - "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" - } - }, - "cx": { - "defaultValue": null, - "description": "", - "name": "cx", - "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" - } - }, - "cy": { - "defaultValue": null, - "description": "", - "name": "cy", - "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" - } - }, - "d": { - "defaultValue": null, - "description": "", - "name": "d", - "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" - } - }, - "decelerate": { - "defaultValue": null, - "description": "", - "name": "decelerate", - "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" - } - }, - "descent": { - "defaultValue": null, - "description": "", - "name": "descent", - "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" - } - }, - "diffuseConstant": { - "defaultValue": null, - "description": "", - "name": "diffuseConstant", - "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" - } - }, - "direction": { - "defaultValue": null, - "description": "", - "name": "direction", - "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" - } - }, - "display": { - "defaultValue": null, - "description": "", - "name": "display", - "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" - } - }, - "divisor": { - "defaultValue": null, - "description": "", - "name": "divisor", - "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" - } - }, - "dominantBaseline": { - "defaultValue": null, - "description": "", - "name": "dominantBaseline", - "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" - } - }, - "dur": { - "defaultValue": null, - "description": "", - "name": "dur", - "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" - } - }, - "dx": { - "defaultValue": null, - "description": "", - "name": "dx", - "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" - } - }, - "dy": { - "defaultValue": null, - "description": "", - "name": "dy", - "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" - } - }, - "edgeMode": { - "defaultValue": null, - "description": "", - "name": "edgeMode", - "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" - } - }, - "elevation": { - "defaultValue": null, - "description": "", - "name": "elevation", - "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" - } - }, - "enableBackground": { - "defaultValue": null, - "description": "", - "name": "enableBackground", - "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" - } - }, - "end": { - "defaultValue": null, - "description": "", - "name": "end", - "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" - } - }, - "exponent": { - "defaultValue": null, - "description": "", - "name": "exponent", - "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" - } - }, - "externalResourcesRequired": { - "defaultValue": null, - "description": "", - "name": "externalResourcesRequired", - "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": "Booleanish" - } - }, - "fillOpacity": { - "defaultValue": null, - "description": "", - "name": "fillOpacity", - "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" - } - }, - "fillRule": { - "defaultValue": null, - "description": "", - "name": "fillRule", - "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": "\"inherit\" | \"nonzero\" | \"evenodd\"" - } - }, - "filterRes": { - "defaultValue": null, - "description": "", - "name": "filterRes", - "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" - } - }, - "filterUnits": { - "defaultValue": null, - "description": "", - "name": "filterUnits", - "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" - } - }, - "floodColor": { - "defaultValue": null, - "description": "", - "name": "floodColor", - "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" - } - }, - "floodOpacity": { - "defaultValue": null, - "description": "", - "name": "floodOpacity", - "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" - } - }, - "focusable": { - "defaultValue": null, - "description": "", - "name": "focusable", - "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": "\"auto\" | Booleanish" - } - }, - "fontFamily": { - "defaultValue": null, - "description": "", - "name": "fontFamily", - "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" - } - }, - "fontSize": { - "defaultValue": null, - "description": "", - "name": "fontSize", - "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" - } - }, - "fontSizeAdjust": { - "defaultValue": null, - "description": "", - "name": "fontSizeAdjust", - "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" - } - }, - "fontStretch": { - "defaultValue": null, - "description": "", - "name": "fontStretch", - "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" - } - }, - "fontStyle": { - "defaultValue": null, - "description": "", - "name": "fontStyle", - "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" - } - }, - "fontVariant": { - "defaultValue": null, - "description": "", - "name": "fontVariant", - "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" - } - }, - "fontWeight": { - "defaultValue": null, - "description": "", - "name": "fontWeight", - "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" - } - }, - "format": { - "defaultValue": null, - "description": "", - "name": "format", - "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" - } - }, - "fr": { - "defaultValue": null, - "description": "", - "name": "fr", - "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" - } - }, - "from": { - "defaultValue": null, - "description": "", - "name": "from", - "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" - } - }, - "fx": { - "defaultValue": null, - "description": "", - "name": "fx", - "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" - } - }, - "fy": { - "defaultValue": null, - "description": "", - "name": "fy", - "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" - } - }, - "g1": { - "defaultValue": null, - "description": "", - "name": "g1", - "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" - } - }, - "g2": { - "defaultValue": null, - "description": "", - "name": "g2", - "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" - } - }, - "glyphName": { - "defaultValue": null, - "description": "", - "name": "glyphName", - "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" - } - }, - "glyphOrientationHorizontal": { - "defaultValue": null, - "description": "", - "name": "glyphOrientationHorizontal", - "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" - } - }, - "glyphOrientationVertical": { - "defaultValue": null, - "description": "", - "name": "glyphOrientationVertical", - "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" - } - }, - "glyphRef": { - "defaultValue": null, - "description": "", - "name": "glyphRef", - "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" - } - }, - "gradientTransform": { - "defaultValue": null, - "description": "", - "name": "gradientTransform", - "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" - } - }, - "gradientUnits": { - "defaultValue": null, - "description": "", - "name": "gradientUnits", - "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" - } - }, - "hanging": { - "defaultValue": null, - "description": "", - "name": "hanging", - "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" - } - }, - "horizAdvX": { - "defaultValue": null, - "description": "", - "name": "horizAdvX", - "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" - } - }, - "horizOriginX": { - "defaultValue": null, - "description": "", - "name": "horizOriginX", - "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" - } - }, - "href": { - "defaultValue": null, - "description": "", - "name": "href", - "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" - } - }, - "ideographic": { - "defaultValue": null, - "description": "", - "name": "ideographic", - "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" - } - }, - "imageRendering": { - "defaultValue": null, - "description": "", - "name": "imageRendering", - "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" - } - }, - "in2": { - "defaultValue": null, - "description": "", - "name": "in2", - "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" - } - }, - "in": { - "defaultValue": null, - "description": "", - "name": "in", - "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" - } - }, - "intercept": { - "defaultValue": null, - "description": "", - "name": "intercept", - "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" - } - }, - "k1": { - "defaultValue": null, - "description": "", - "name": "k1", - "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" - } - }, - "k2": { - "defaultValue": null, - "description": "", - "name": "k2", - "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" - } - }, - "k3": { - "defaultValue": null, - "description": "", - "name": "k3", - "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" - } - }, - "k4": { - "defaultValue": null, - "description": "", - "name": "k4", - "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" - } - }, - "k": { - "defaultValue": null, - "description": "", - "name": "k", - "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" - } - }, - "kernelMatrix": { - "defaultValue": null, - "description": "", - "name": "kernelMatrix", - "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" - } - }, - "kernelUnitLength": { - "defaultValue": null, - "description": "", - "name": "kernelUnitLength", - "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" - } - }, - "kerning": { - "defaultValue": null, - "description": "", - "name": "kerning", - "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" - } - }, - "keyPoints": { - "defaultValue": null, - "description": "", - "name": "keyPoints", - "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" - } - }, - "keySplines": { - "defaultValue": null, - "description": "", - "name": "keySplines", - "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" - } - }, - "keyTimes": { - "defaultValue": null, - "description": "", - "name": "keyTimes", - "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" - } - }, - "lengthAdjust": { - "defaultValue": null, - "description": "", - "name": "lengthAdjust", - "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" - } - }, - "letterSpacing": { - "defaultValue": null, - "description": "", - "name": "letterSpacing", - "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" - } - }, - "lightingColor": { - "defaultValue": null, - "description": "", - "name": "lightingColor", - "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" - } - }, - "limitingConeAngle": { - "defaultValue": null, - "description": "", - "name": "limitingConeAngle", - "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" - } - }, - "local": { - "defaultValue": null, - "description": "", - "name": "local", - "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" - } - }, - "markerEnd": { - "defaultValue": null, - "description": "", - "name": "markerEnd", - "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" - } - }, - "markerHeight": { - "defaultValue": null, - "description": "", - "name": "markerHeight", - "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" - } - }, - "markerMid": { - "defaultValue": null, - "description": "", - "name": "markerMid", - "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" - } - }, - "markerStart": { - "defaultValue": null, - "description": "", - "name": "markerStart", - "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" - } - }, - "markerUnits": { - "defaultValue": null, - "description": "", - "name": "markerUnits", - "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" - } - }, - "markerWidth": { - "defaultValue": null, - "description": "", - "name": "markerWidth", - "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" - } - }, - "maskContentUnits": { - "defaultValue": null, - "description": "", - "name": "maskContentUnits", - "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" - } - }, - "maskUnits": { - "defaultValue": null, - "description": "", - "name": "maskUnits", - "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" - } - }, - "mathematical": { - "defaultValue": null, - "description": "", - "name": "mathematical", - "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" - } - }, - "mode": { - "defaultValue": null, - "description": "", - "name": "mode", - "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" - } - }, - "numOctaves": { - "defaultValue": null, - "description": "", - "name": "numOctaves", - "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" - } - }, - "offset": { - "defaultValue": null, - "description": "", - "name": "offset", - "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" - } - }, - "opacity": { - "defaultValue": null, - "description": "", - "name": "opacity", - "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" - } - }, - "operator": { - "defaultValue": null, - "description": "", - "name": "operator", - "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" - } - }, - "order": { - "defaultValue": null, - "description": "", - "name": "order", - "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" - } - }, - "orient": { - "defaultValue": null, - "description": "", - "name": "orient", - "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" - } - }, - "orientation": { - "defaultValue": null, - "description": "", - "name": "orientation", - "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" - } - }, - "origin": { - "defaultValue": null, - "description": "", - "name": "origin", - "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" - } - }, - "overflow": { - "defaultValue": null, - "description": "", - "name": "overflow", - "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" - } - }, - "overlinePosition": { - "defaultValue": null, - "description": "", - "name": "overlinePosition", - "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" - } - }, - "overlineThickness": { - "defaultValue": null, - "description": "", - "name": "overlineThickness", - "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" - } - }, - "paintOrder": { - "defaultValue": null, - "description": "", - "name": "paintOrder", - "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" - } - }, - "panose1": { - "defaultValue": null, - "description": "", - "name": "panose1", - "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" - } - }, - "pathLength": { - "defaultValue": null, - "description": "", - "name": "pathLength", - "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" - } - }, - "patternContentUnits": { - "defaultValue": null, - "description": "", - "name": "patternContentUnits", - "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" - } - }, - "patternTransform": { - "defaultValue": null, - "description": "", - "name": "patternTransform", - "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" - } - }, - "patternUnits": { - "defaultValue": null, - "description": "", - "name": "patternUnits", - "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" - } - }, - "pointerEvents": { - "defaultValue": null, - "description": "", - "name": "pointerEvents", - "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" - } - }, - "points": { - "defaultValue": null, - "description": "", - "name": "points", - "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" - } - }, - "pointsAtX": { - "defaultValue": null, - "description": "", - "name": "pointsAtX", - "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" - } - }, - "pointsAtY": { - "defaultValue": null, - "description": "", - "name": "pointsAtY", - "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" - } - }, - "pointsAtZ": { - "defaultValue": null, - "description": "", - "name": "pointsAtZ", - "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" - } - }, - "preserveAlpha": { - "defaultValue": null, - "description": "", - "name": "preserveAlpha", - "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": "Booleanish" - } - }, - "preserveAspectRatio": { - "defaultValue": null, - "description": "", - "name": "preserveAspectRatio", - "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" - } - }, - "primitiveUnits": { - "defaultValue": null, - "description": "", - "name": "primitiveUnits", - "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" - } - }, - "r": { - "defaultValue": null, - "description": "", - "name": "r", - "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" - } - }, - "radius": { - "defaultValue": null, - "description": "", - "name": "radius", - "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" - } - }, - "refX": { - "defaultValue": null, - "description": "", - "name": "refX", - "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" - } - }, - "refY": { - "defaultValue": null, - "description": "", - "name": "refY", - "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" - } - }, - "renderingIntent": { - "defaultValue": null, - "description": "", - "name": "renderingIntent", - "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" - } - }, - "repeatCount": { - "defaultValue": null, - "description": "", - "name": "repeatCount", - "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" - } - }, - "repeatDur": { - "defaultValue": null, - "description": "", - "name": "repeatDur", - "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" - } - }, - "requiredExtensions": { - "defaultValue": null, - "description": "", - "name": "requiredExtensions", - "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" - } - }, - "requiredFeatures": { - "defaultValue": null, - "description": "", - "name": "requiredFeatures", - "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" - } - }, - "restart": { - "defaultValue": null, - "description": "", - "name": "restart", - "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" - } - }, - "result": { - "defaultValue": null, - "description": "", - "name": "result", - "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" - } - }, - "rotate": { - "defaultValue": null, - "description": "", - "name": "rotate", - "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" - } - }, - "rx": { - "defaultValue": null, - "description": "", - "name": "rx", - "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" - } - }, - "ry": { - "defaultValue": null, - "description": "", - "name": "ry", - "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" - } - }, - "scale": { - "defaultValue": null, - "description": "", - "name": "scale", - "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" - } - }, - "seed": { - "defaultValue": null, - "description": "", - "name": "seed", - "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" - } - }, - "shapeRendering": { - "defaultValue": null, - "description": "", - "name": "shapeRendering", - "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" - } - }, - "slope": { - "defaultValue": null, - "description": "", - "name": "slope", - "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" - } - }, - "spacing": { - "defaultValue": null, - "description": "", - "name": "spacing", - "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" - } - }, - "specularConstant": { - "defaultValue": null, - "description": "", - "name": "specularConstant", - "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" - } - }, - "specularExponent": { - "defaultValue": null, - "description": "", - "name": "specularExponent", - "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" - } - }, - "speed": { - "defaultValue": null, - "description": "", - "name": "speed", - "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" - } - }, - "spreadMethod": { - "defaultValue": null, - "description": "", - "name": "spreadMethod", - "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" - } - }, - "startOffset": { - "defaultValue": null, - "description": "", - "name": "startOffset", - "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" - } - }, - "stdDeviation": { - "defaultValue": null, - "description": "", - "name": "stdDeviation", - "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" - } - }, - "stemh": { - "defaultValue": null, - "description": "", - "name": "stemh", - "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" - } - }, - "stemv": { - "defaultValue": null, - "description": "", - "name": "stemv", - "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" - } - }, - "stitchTiles": { - "defaultValue": null, - "description": "", - "name": "stitchTiles", - "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" - } - }, - "stopColor": { - "defaultValue": null, - "description": "", - "name": "stopColor", - "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" - } - }, - "stopOpacity": { - "defaultValue": null, - "description": "", - "name": "stopOpacity", - "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" - } - }, - "strikethroughPosition": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strikethroughThickness": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "stroke": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "strokeDasharray": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strokeDashoffset": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strokeLinecap": { - "defaultValue": null, - "description": "", - "name": "strokeLinecap", - "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": "\"inherit\" | \"butt\" | \"round\" | \"square\"" - } - }, - "strokeLinejoin": { - "defaultValue": null, - "description": "", - "name": "strokeLinejoin", - "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": "\"inherit\" | \"round\" | \"miter\" | \"bevel\"" - } - }, - "strokeMiterlimit": { - "defaultValue": null, - "description": "", - "name": "strokeMiterlimit", - "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" - } - }, - "strokeOpacity": { - "defaultValue": null, - "description": "", - "name": "strokeOpacity", - "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" - } - }, - "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" - }, - "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" - } - }, - "surfaceScale": { - "defaultValue": null, - "description": "", - "name": "surfaceScale", - "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" - } - }, - "systemLanguage": { - "defaultValue": null, - "description": "", - "name": "systemLanguage", - "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" - } - }, - "tableValues": { - "defaultValue": null, - "description": "", - "name": "tableValues", - "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" - } - }, - "targetX": { - "defaultValue": null, - "description": "", - "name": "targetX", - "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" - } - }, - "targetY": { - "defaultValue": null, - "description": "", - "name": "targetY", - "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" - } - }, - "textAnchor": { - "defaultValue": null, - "description": "", - "name": "textAnchor", - "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" - } - }, - "textDecoration": { - "defaultValue": null, - "description": "", - "name": "textDecoration", - "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" - } - }, - "textLength": { - "defaultValue": null, - "description": "", - "name": "textLength", - "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" - } - }, - "textRendering": { - "defaultValue": null, - "description": "", - "name": "textRendering", - "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" - } - }, - "to": { - "defaultValue": null, - "description": "", - "name": "to", - "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" - } - }, - "transform": { - "defaultValue": null, - "description": "", - "name": "transform", - "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" - } - }, - "u1": { - "defaultValue": null, - "description": "", - "name": "u1", - "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" - } - }, - "u2": { - "defaultValue": null, - "description": "", - "name": "u2", - "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" - } - }, - "underlinePosition": { - "defaultValue": null, - "description": "", - "name": "underlinePosition", - "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" - } - }, - "underlineThickness": { - "defaultValue": null, - "description": "", - "name": "underlineThickness", - "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" - } - }, - "unicode": { - "defaultValue": null, - "description": "", - "name": "unicode", - "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" - } - }, - "unicodeBidi": { - "defaultValue": null, - "description": "", - "name": "unicodeBidi", - "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" - } - }, - "unicodeRange": { - "defaultValue": null, - "description": "", - "name": "unicodeRange", - "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" - } - }, - "unitsPerEm": { - "defaultValue": null, - "description": "", - "name": "unitsPerEm", - "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" - } - }, - "vAlphabetic": { - "defaultValue": null, - "description": "", - "name": "vAlphabetic", - "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" - } - }, - "values": { - "defaultValue": null, - "description": "", - "name": "values", - "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" - } - }, - "vectorEffect": { - "defaultValue": null, - "description": "", - "name": "vectorEffect", - "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" - } - }, - "version": { - "defaultValue": null, - "description": "", - "name": "version", - "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" - } - }, - "vertAdvY": { - "defaultValue": null, - "description": "", - "name": "vertAdvY", - "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" - } - }, - "vertOriginX": { - "defaultValue": null, - "description": "", - "name": "vertOriginX", - "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" - } - }, - "vertOriginY": { - "defaultValue": null, - "description": "", - "name": "vertOriginY", - "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" - } - }, - "vHanging": { - "defaultValue": null, - "description": "", - "name": "vHanging", - "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" - } - }, - "vIdeographic": { - "defaultValue": null, - "description": "", - "name": "vIdeographic", - "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" - } - }, - "viewBox": { - "defaultValue": null, - "description": "", - "name": "viewBox", - "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" - } - }, - "viewTarget": { - "defaultValue": null, - "description": "", - "name": "viewTarget", - "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" - } - }, - "visibility": { - "defaultValue": null, - "description": "", - "name": "visibility", - "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" - } - }, - "vMathematical": { - "defaultValue": null, - "description": "", - "name": "vMathematical", - "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" - } - }, - "widths": { - "defaultValue": null, - "description": "", - "name": "widths", - "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" - } - }, - "wordSpacing": { - "defaultValue": null, - "description": "", - "name": "wordSpacing", - "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" - } - }, - "writingMode": { - "defaultValue": null, - "description": "", - "name": "writingMode", - "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" - } - }, - "x1": { - "defaultValue": null, - "description": "", - "name": "x1", - "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" - } - }, - "x2": { - "defaultValue": null, - "description": "", - "name": "x2", - "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" - } - }, - "x": { - "defaultValue": null, - "description": "", - "name": "x", - "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" - } - }, - "xChannelSelector": { - "defaultValue": null, - "description": "", - "name": "xChannelSelector", - "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" - } - }, - "xHeight": { - "defaultValue": null, - "description": "", - "name": "xHeight", - "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" - } - }, - "xlinkActuate": { - "defaultValue": null, - "description": "", - "name": "xlinkActuate", - "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" - } - }, - "xlinkArcrole": { - "defaultValue": null, - "description": "", - "name": "xlinkArcrole", - "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" - } - }, - "xlinkHref": { - "defaultValue": null, - "description": "", - "name": "xlinkHref", - "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" - } - }, - "xlinkRole": { - "defaultValue": null, - "description": "", - "name": "xlinkRole", - "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" - } - }, - "xlinkShow": { - "defaultValue": null, - "description": "", - "name": "xlinkShow", - "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" - } - }, - "xlinkTitle": { - "defaultValue": null, - "description": "", - "name": "xlinkTitle", - "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" - } - }, - "xlinkType": { - "defaultValue": null, - "description": "", - "name": "xlinkType", - "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" - } - }, - "xmlBase": { - "defaultValue": null, - "description": "", - "name": "xmlBase", - "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" - } - }, - "xmlLang": { - "defaultValue": null, - "description": "", - "name": "xmlLang", - "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" - } - }, - "xmlns": { - "defaultValue": null, - "description": "", - "name": "xmlns", - "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" - } - }, - "xmlnsXlink": { - "defaultValue": null, - "description": "", - "name": "xmlnsXlink", - "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" - } - }, - "xmlSpace": { - "defaultValue": null, - "description": "", - "name": "xmlSpace", - "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" - } - }, - "y1": { - "defaultValue": null, - "description": "", - "name": "y1", - "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" - } - }, - "y2": { - "defaultValue": null, - "description": "", - "name": "y2", - "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" - } - }, - "y": { - "defaultValue": null, - "description": "", - "name": "y", - "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" - } - }, - "yChannelSelector": { - "defaultValue": null, - "description": "", - "name": "yChannelSelector", - "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" - } - }, - "z": { - "defaultValue": null, - "description": "", - "name": "z", - "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" - } - }, - "zoomAndPan": { - "defaultValue": null, - "description": "", - "name": "zoomAndPan", - "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" - } - }, - "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 | \"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\" | \"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\" | \"menu\" | \"grid\" | \"listbox\" | \"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": "\"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" - } - }, - "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" - }, - { - "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" - } - }, - "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" - } - } - }, - "ChevronRight.tsx": { - "className": { - "defaultValue": null, - "description": "To add a className on svg and icons.", - "name": "className", - "parent": { - "fileName": "marigold/packages/components/src/Chevron/ChevronRight.tsx", - "name": "SVGProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Chevron/ChevronRight.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" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "autoReverse": { - "defaultValue": null, - "description": "", - "name": "autoReverse", - "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": "Booleanish" - } - }, - "azimuth": { - "defaultValue": null, - "description": "", - "name": "azimuth", - "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" - } - }, - "baseFrequency": { - "defaultValue": null, - "description": "", - "name": "baseFrequency", - "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" - } - }, - "baselineShift": { - "defaultValue": null, - "description": "", - "name": "baselineShift", - "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" - } - }, - "baseProfile": { - "defaultValue": null, - "description": "", - "name": "baseProfile", - "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" - } - }, - "bbox": { - "defaultValue": null, - "description": "", - "name": "bbox", - "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" - } - }, - "begin": { - "defaultValue": null, - "description": "", - "name": "begin", - "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" - } - }, - "bias": { - "defaultValue": null, - "description": "", - "name": "bias", - "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" - } - }, - "by": { - "defaultValue": null, - "description": "", - "name": "by", - "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" - } - }, - "calcMode": { - "defaultValue": null, - "description": "", - "name": "calcMode", - "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" - } - }, - "capHeight": { - "defaultValue": null, - "description": "", - "name": "capHeight", - "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" - } - }, - "clip": { - "defaultValue": null, - "description": "", - "name": "clip", - "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" - } - }, - "clipPathUnits": { - "defaultValue": null, - "description": "", - "name": "clipPathUnits", - "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" - } - }, - "clipRule": { - "defaultValue": null, - "description": "", - "name": "clipRule", - "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" - } - }, - "colorInterpolation": { - "defaultValue": null, - "description": "", - "name": "colorInterpolation", - "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" - } - }, - "colorInterpolationFilters": { - "defaultValue": null, - "description": "", - "name": "colorInterpolationFilters", - "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": "\"auto\" | \"inherit\" | \"sRGB\" | \"linearRGB\"" - } - }, - "colorProfile": { - "defaultValue": null, - "description": "", - "name": "colorProfile", - "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" - } - }, - "colorRendering": { - "defaultValue": null, - "description": "", - "name": "colorRendering", - "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" - } - }, - "contentScriptType": { - "defaultValue": null, - "description": "", - "name": "contentScriptType", - "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" - } - }, - "contentStyleType": { - "defaultValue": null, - "description": "", - "name": "contentStyleType", - "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" - } - }, - "cursor": { - "defaultValue": null, - "description": "", - "name": "cursor", - "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" - } - }, - "cx": { - "defaultValue": null, - "description": "", - "name": "cx", - "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" - } - }, - "cy": { - "defaultValue": null, - "description": "", - "name": "cy", - "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" - } - }, - "d": { - "defaultValue": null, - "description": "", - "name": "d", - "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" - } - }, - "decelerate": { - "defaultValue": null, - "description": "", - "name": "decelerate", - "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" - } - }, - "descent": { - "defaultValue": null, - "description": "", - "name": "descent", - "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" - } - }, - "diffuseConstant": { - "defaultValue": null, - "description": "", - "name": "diffuseConstant", - "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" - } - }, - "direction": { - "defaultValue": null, - "description": "", - "name": "direction", - "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" - } - }, - "display": { - "defaultValue": null, - "description": "", - "name": "display", - "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" - } - }, - "divisor": { - "defaultValue": null, - "description": "", - "name": "divisor", - "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" - } - }, - "dominantBaseline": { - "defaultValue": null, - "description": "", - "name": "dominantBaseline", - "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" - } - }, - "dur": { - "defaultValue": null, - "description": "", - "name": "dur", - "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" - } - }, - "dx": { - "defaultValue": null, - "description": "", - "name": "dx", - "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" - } - }, - "dy": { - "defaultValue": null, - "description": "", - "name": "dy", - "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" - } - }, - "edgeMode": { - "defaultValue": null, - "description": "", - "name": "edgeMode", - "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" - } - }, - "elevation": { - "defaultValue": null, - "description": "", - "name": "elevation", - "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" - } - }, - "enableBackground": { - "defaultValue": null, - "description": "", - "name": "enableBackground", - "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" - } - }, - "end": { - "defaultValue": null, - "description": "", - "name": "end", - "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" - } - }, - "exponent": { - "defaultValue": null, - "description": "", - "name": "exponent", - "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" - } - }, - "externalResourcesRequired": { - "defaultValue": null, - "description": "", - "name": "externalResourcesRequired", - "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": "Booleanish" - } - }, - "fillOpacity": { - "defaultValue": null, - "description": "", - "name": "fillOpacity", - "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" - } - }, - "fillRule": { - "defaultValue": null, - "description": "", - "name": "fillRule", - "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": "\"inherit\" | \"nonzero\" | \"evenodd\"" - } - }, - "filterRes": { - "defaultValue": null, - "description": "", - "name": "filterRes", - "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" - } - }, - "filterUnits": { - "defaultValue": null, - "description": "", - "name": "filterUnits", - "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" - } - }, - "floodColor": { - "defaultValue": null, - "description": "", - "name": "floodColor", - "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" - } - }, - "floodOpacity": { - "defaultValue": null, - "description": "", - "name": "floodOpacity", - "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" - } - }, - "focusable": { - "defaultValue": null, - "description": "", - "name": "focusable", - "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": "\"auto\" | Booleanish" - } - }, - "fontFamily": { - "defaultValue": null, - "description": "", - "name": "fontFamily", - "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" - } - }, - "fontSize": { - "defaultValue": null, - "description": "", - "name": "fontSize", - "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" - } - }, - "fontSizeAdjust": { - "defaultValue": null, - "description": "", - "name": "fontSizeAdjust", - "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" - } - }, - "fontStretch": { - "defaultValue": null, - "description": "", - "name": "fontStretch", - "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" - } - }, - "fontStyle": { - "defaultValue": null, - "description": "", - "name": "fontStyle", - "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" - } - }, - "fontVariant": { - "defaultValue": null, - "description": "", - "name": "fontVariant", - "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" - } - }, - "fontWeight": { - "defaultValue": null, - "description": "", - "name": "fontWeight", - "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" - } - }, - "format": { - "defaultValue": null, - "description": "", - "name": "format", - "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" - } - }, - "fr": { - "defaultValue": null, - "description": "", - "name": "fr", - "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" - } - }, - "from": { - "defaultValue": null, - "description": "", - "name": "from", - "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" - } - }, - "fx": { - "defaultValue": null, - "description": "", - "name": "fx", - "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" - } - }, - "fy": { - "defaultValue": null, - "description": "", - "name": "fy", - "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" - } - }, - "g1": { - "defaultValue": null, - "description": "", - "name": "g1", - "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" - } - }, - "g2": { - "defaultValue": null, - "description": "", - "name": "g2", - "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" - } - }, - "glyphName": { - "defaultValue": null, - "description": "", - "name": "glyphName", - "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" - } - }, - "glyphOrientationHorizontal": { - "defaultValue": null, - "description": "", - "name": "glyphOrientationHorizontal", - "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" - } - }, - "glyphOrientationVertical": { - "defaultValue": null, - "description": "", - "name": "glyphOrientationVertical", - "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" - } - }, - "glyphRef": { - "defaultValue": null, - "description": "", - "name": "glyphRef", - "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" - } - }, - "gradientTransform": { - "defaultValue": null, - "description": "", - "name": "gradientTransform", - "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" - } - }, - "gradientUnits": { - "defaultValue": null, - "description": "", - "name": "gradientUnits", - "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" - } - }, - "hanging": { - "defaultValue": null, - "description": "", - "name": "hanging", - "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" - } - }, - "horizAdvX": { - "defaultValue": null, - "description": "", - "name": "horizAdvX", - "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" - } - }, - "horizOriginX": { - "defaultValue": null, - "description": "", - "name": "horizOriginX", - "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" - } - }, - "href": { - "defaultValue": null, - "description": "", - "name": "href", - "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" - } - }, - "ideographic": { - "defaultValue": null, - "description": "", - "name": "ideographic", - "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" - } - }, - "imageRendering": { - "defaultValue": null, - "description": "", - "name": "imageRendering", - "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" - } - }, - "in2": { - "defaultValue": null, - "description": "", - "name": "in2", - "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" - } - }, - "in": { - "defaultValue": null, - "description": "", - "name": "in", - "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" - } - }, - "intercept": { - "defaultValue": null, - "description": "", - "name": "intercept", - "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" - } - }, - "k1": { - "defaultValue": null, - "description": "", - "name": "k1", - "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" - } - }, - "k2": { - "defaultValue": null, - "description": "", - "name": "k2", - "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" - } - }, - "k3": { - "defaultValue": null, - "description": "", - "name": "k3", - "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" - } - }, - "k4": { - "defaultValue": null, - "description": "", - "name": "k4", - "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" - } - }, - "k": { - "defaultValue": null, - "description": "", - "name": "k", - "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" - } - }, - "kernelMatrix": { - "defaultValue": null, - "description": "", - "name": "kernelMatrix", - "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" - } - }, - "kernelUnitLength": { - "defaultValue": null, - "description": "", - "name": "kernelUnitLength", - "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" - } - }, - "kerning": { - "defaultValue": null, - "description": "", - "name": "kerning", - "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" - } - }, - "keyPoints": { - "defaultValue": null, - "description": "", - "name": "keyPoints", - "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" - } - }, - "keySplines": { - "defaultValue": null, - "description": "", - "name": "keySplines", - "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" - } - }, - "keyTimes": { - "defaultValue": null, - "description": "", - "name": "keyTimes", - "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" - } - }, - "lengthAdjust": { - "defaultValue": null, - "description": "", - "name": "lengthAdjust", - "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" - } - }, - "letterSpacing": { - "defaultValue": null, - "description": "", - "name": "letterSpacing", - "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" - } - }, - "lightingColor": { - "defaultValue": null, - "description": "", - "name": "lightingColor", - "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" - } - }, - "limitingConeAngle": { - "defaultValue": null, - "description": "", - "name": "limitingConeAngle", - "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" - } - }, - "local": { - "defaultValue": null, - "description": "", - "name": "local", - "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" - } - }, - "markerEnd": { - "defaultValue": null, - "description": "", - "name": "markerEnd", - "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" - } - }, - "markerHeight": { - "defaultValue": null, - "description": "", - "name": "markerHeight", - "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" - } - }, - "markerMid": { - "defaultValue": null, - "description": "", - "name": "markerMid", - "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" - } - }, - "markerStart": { - "defaultValue": null, - "description": "", - "name": "markerStart", - "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" - } - }, - "markerUnits": { - "defaultValue": null, - "description": "", - "name": "markerUnits", - "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" - } - }, - "markerWidth": { - "defaultValue": null, - "description": "", - "name": "markerWidth", - "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" - } - }, - "maskContentUnits": { - "defaultValue": null, - "description": "", - "name": "maskContentUnits", - "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" - } - }, - "maskUnits": { - "defaultValue": null, - "description": "", - "name": "maskUnits", - "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" - } - }, - "mathematical": { - "defaultValue": null, - "description": "", - "name": "mathematical", - "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" - } - }, - "mode": { - "defaultValue": null, - "description": "", - "name": "mode", - "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" - } - }, - "numOctaves": { - "defaultValue": null, - "description": "", - "name": "numOctaves", - "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" - } - }, - "offset": { - "defaultValue": null, - "description": "", - "name": "offset", - "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" - } - }, - "opacity": { - "defaultValue": null, - "description": "", - "name": "opacity", - "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" - } - }, - "operator": { - "defaultValue": null, - "description": "", - "name": "operator", - "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" - } - }, - "order": { - "defaultValue": null, - "description": "", - "name": "order", - "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" - } - }, - "orient": { - "defaultValue": null, - "description": "", - "name": "orient", - "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" - } - }, - "orientation": { - "defaultValue": null, - "description": "", - "name": "orientation", - "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" - } - }, - "origin": { - "defaultValue": null, - "description": "", - "name": "origin", - "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" - } - }, - "overflow": { - "defaultValue": null, - "description": "", - "name": "overflow", - "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" - } - }, - "overlinePosition": { - "defaultValue": null, - "description": "", - "name": "overlinePosition", - "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" - } - }, - "overlineThickness": { - "defaultValue": null, - "description": "", - "name": "overlineThickness", - "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" - } - }, - "paintOrder": { - "defaultValue": null, - "description": "", - "name": "paintOrder", - "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" - } - }, - "panose1": { - "defaultValue": null, - "description": "", - "name": "panose1", - "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" - } - }, - "pathLength": { - "defaultValue": null, - "description": "", - "name": "pathLength", - "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" - } - }, - "patternContentUnits": { - "defaultValue": null, - "description": "", - "name": "patternContentUnits", - "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" - } - }, - "patternTransform": { - "defaultValue": null, - "description": "", - "name": "patternTransform", - "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" - } - }, - "patternUnits": { - "defaultValue": null, - "description": "", - "name": "patternUnits", - "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" - } - }, - "pointerEvents": { - "defaultValue": null, - "description": "", - "name": "pointerEvents", - "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" - } - }, - "points": { - "defaultValue": null, - "description": "", - "name": "points", - "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" - } - }, - "pointsAtX": { - "defaultValue": null, - "description": "", - "name": "pointsAtX", - "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" - } - }, - "pointsAtY": { - "defaultValue": null, - "description": "", - "name": "pointsAtY", - "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" - } - }, - "pointsAtZ": { - "defaultValue": null, - "description": "", - "name": "pointsAtZ", - "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" - } - }, - "preserveAlpha": { - "defaultValue": null, - "description": "", - "name": "preserveAlpha", - "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": "Booleanish" - } - }, - "preserveAspectRatio": { - "defaultValue": null, - "description": "", - "name": "preserveAspectRatio", - "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" - } - }, - "primitiveUnits": { - "defaultValue": null, - "description": "", - "name": "primitiveUnits", - "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" - } - }, - "r": { - "defaultValue": null, - "description": "", - "name": "r", - "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" - } - }, - "radius": { - "defaultValue": null, - "description": "", - "name": "radius", - "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" - } - }, - "refX": { - "defaultValue": null, - "description": "", - "name": "refX", - "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" - } - }, - "refY": { - "defaultValue": null, - "description": "", - "name": "refY", - "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" - } - }, - "renderingIntent": { - "defaultValue": null, - "description": "", - "name": "renderingIntent", - "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" - } - }, - "repeatCount": { - "defaultValue": null, - "description": "", - "name": "repeatCount", - "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" - } - }, - "repeatDur": { - "defaultValue": null, - "description": "", - "name": "repeatDur", - "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" - } - }, - "requiredExtensions": { - "defaultValue": null, - "description": "", - "name": "requiredExtensions", - "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" - } - }, - "requiredFeatures": { - "defaultValue": null, - "description": "", - "name": "requiredFeatures", - "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" - } - }, - "restart": { - "defaultValue": null, - "description": "", - "name": "restart", - "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" - } - }, - "result": { - "defaultValue": null, - "description": "", - "name": "result", - "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" - } - }, - "rotate": { - "defaultValue": null, - "description": "", - "name": "rotate", - "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" - } - }, - "rx": { - "defaultValue": null, - "description": "", - "name": "rx", - "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" - } - }, - "ry": { - "defaultValue": null, - "description": "", - "name": "ry", - "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" - } - }, - "scale": { - "defaultValue": null, - "description": "", - "name": "scale", - "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" - } - }, - "seed": { - "defaultValue": null, - "description": "", - "name": "seed", - "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" - } - }, - "shapeRendering": { - "defaultValue": null, - "description": "", - "name": "shapeRendering", - "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" - } - }, - "slope": { - "defaultValue": null, - "description": "", - "name": "slope", - "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" - } - }, - "spacing": { - "defaultValue": null, - "description": "", - "name": "spacing", - "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" - } - }, - "specularConstant": { - "defaultValue": null, - "description": "", - "name": "specularConstant", - "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" - } - }, - "specularExponent": { - "defaultValue": null, - "description": "", - "name": "specularExponent", - "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" - } - }, - "speed": { - "defaultValue": null, - "description": "", - "name": "speed", - "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" - } - }, - "spreadMethod": { - "defaultValue": null, - "description": "", - "name": "spreadMethod", - "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" - } - }, - "startOffset": { - "defaultValue": null, - "description": "", - "name": "startOffset", - "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" - } - }, - "stdDeviation": { - "defaultValue": null, - "description": "", - "name": "stdDeviation", - "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" - } - }, - "stemh": { - "defaultValue": null, - "description": "", - "name": "stemh", - "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" - } - }, - "stemv": { - "defaultValue": null, - "description": "", - "name": "stemv", - "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" - } - }, - "stitchTiles": { - "defaultValue": null, - "description": "", - "name": "stitchTiles", - "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" - } - }, - "stopColor": { - "defaultValue": null, - "description": "", - "name": "stopColor", - "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" - } - }, - "stopOpacity": { - "defaultValue": null, - "description": "", - "name": "stopOpacity", - "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" - } - }, - "strikethroughPosition": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strikethroughThickness": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "stroke": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "strokeDasharray": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strokeDashoffset": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strokeLinecap": { - "defaultValue": null, - "description": "", - "name": "strokeLinecap", - "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": "\"inherit\" | \"butt\" | \"round\" | \"square\"" - } - }, - "strokeLinejoin": { - "defaultValue": null, - "description": "", - "name": "strokeLinejoin", - "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": "\"inherit\" | \"round\" | \"miter\" | \"bevel\"" - } - }, - "strokeMiterlimit": { - "defaultValue": null, - "description": "", - "name": "strokeMiterlimit", - "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" - } - }, - "strokeOpacity": { - "defaultValue": null, - "description": "", - "name": "strokeOpacity", - "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" - } - }, - "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" - }, - "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" - } - }, - "surfaceScale": { - "defaultValue": null, - "description": "", - "name": "surfaceScale", - "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" - } - }, - "systemLanguage": { - "defaultValue": null, - "description": "", - "name": "systemLanguage", - "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" - } - }, - "tableValues": { - "defaultValue": null, - "description": "", - "name": "tableValues", - "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" - } - }, - "targetX": { - "defaultValue": null, - "description": "", - "name": "targetX", - "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" - } - }, - "targetY": { - "defaultValue": null, - "description": "", - "name": "targetY", - "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" - } - }, - "textAnchor": { - "defaultValue": null, - "description": "", - "name": "textAnchor", - "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" - } - }, - "textDecoration": { - "defaultValue": null, - "description": "", - "name": "textDecoration", - "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" - } - }, - "textLength": { - "defaultValue": null, - "description": "", - "name": "textLength", - "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" - } - }, - "textRendering": { - "defaultValue": null, - "description": "", - "name": "textRendering", - "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" - } - }, - "to": { - "defaultValue": null, - "description": "", - "name": "to", - "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" - } - }, - "transform": { - "defaultValue": null, - "description": "", - "name": "transform", - "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" - } - }, - "u1": { - "defaultValue": null, - "description": "", - "name": "u1", - "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" - } - }, - "u2": { - "defaultValue": null, - "description": "", - "name": "u2", - "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" - } - }, - "underlinePosition": { - "defaultValue": null, - "description": "", - "name": "underlinePosition", - "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" - } - }, - "underlineThickness": { - "defaultValue": null, - "description": "", - "name": "underlineThickness", - "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" - } - }, - "unicode": { - "defaultValue": null, - "description": "", - "name": "unicode", - "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" - } - }, - "unicodeBidi": { - "defaultValue": null, - "description": "", - "name": "unicodeBidi", - "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" - } - }, - "unicodeRange": { - "defaultValue": null, - "description": "", - "name": "unicodeRange", - "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" - } - }, - "unitsPerEm": { - "defaultValue": null, - "description": "", - "name": "unitsPerEm", - "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" - } - }, - "vAlphabetic": { - "defaultValue": null, - "description": "", - "name": "vAlphabetic", - "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" - } - }, - "values": { - "defaultValue": null, - "description": "", - "name": "values", - "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" - } - }, - "vectorEffect": { - "defaultValue": null, - "description": "", - "name": "vectorEffect", - "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" - } - }, - "version": { - "defaultValue": null, - "description": "", - "name": "version", - "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" - } - }, - "vertAdvY": { - "defaultValue": null, - "description": "", - "name": "vertAdvY", - "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" - } - }, - "vertOriginX": { - "defaultValue": null, - "description": "", - "name": "vertOriginX", - "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" - } - }, - "vertOriginY": { - "defaultValue": null, - "description": "", - "name": "vertOriginY", - "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" - } - }, - "vHanging": { - "defaultValue": null, - "description": "", - "name": "vHanging", - "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" - } - }, - "vIdeographic": { - "defaultValue": null, - "description": "", - "name": "vIdeographic", - "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" - } - }, - "viewBox": { - "defaultValue": null, - "description": "", - "name": "viewBox", - "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" - } - }, - "viewTarget": { - "defaultValue": null, - "description": "", - "name": "viewTarget", - "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" - } - }, - "visibility": { - "defaultValue": null, - "description": "", - "name": "visibility", - "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" - } - }, - "vMathematical": { - "defaultValue": null, - "description": "", - "name": "vMathematical", - "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" - } - }, - "widths": { - "defaultValue": null, - "description": "", - "name": "widths", - "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" - } - }, - "wordSpacing": { - "defaultValue": null, - "description": "", - "name": "wordSpacing", - "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" - } - }, - "writingMode": { - "defaultValue": null, - "description": "", - "name": "writingMode", - "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" - } - }, - "x1": { - "defaultValue": null, - "description": "", - "name": "x1", - "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" - } - }, - "x2": { - "defaultValue": null, - "description": "", - "name": "x2", - "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" - } - }, - "x": { - "defaultValue": null, - "description": "", - "name": "x", - "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" - } - }, - "xChannelSelector": { - "defaultValue": null, - "description": "", - "name": "xChannelSelector", - "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" - } - }, - "xHeight": { - "defaultValue": null, - "description": "", - "name": "xHeight", - "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" - } - }, - "xlinkActuate": { - "defaultValue": null, - "description": "", - "name": "xlinkActuate", - "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" - } - }, - "xlinkArcrole": { - "defaultValue": null, - "description": "", - "name": "xlinkArcrole", - "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" - } - }, - "xlinkHref": { - "defaultValue": null, - "description": "", - "name": "xlinkHref", - "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" - } - }, - "xlinkRole": { - "defaultValue": null, - "description": "", - "name": "xlinkRole", - "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" - } - }, - "xlinkShow": { - "defaultValue": null, - "description": "", - "name": "xlinkShow", - "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" - } - }, - "xlinkTitle": { - "defaultValue": null, - "description": "", - "name": "xlinkTitle", - "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" - } - }, - "xlinkType": { - "defaultValue": null, - "description": "", - "name": "xlinkType", - "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" - } - }, - "xmlBase": { - "defaultValue": null, - "description": "", - "name": "xmlBase", - "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" - } - }, - "xmlLang": { - "defaultValue": null, - "description": "", - "name": "xmlLang", - "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" - } - }, - "xmlns": { - "defaultValue": null, - "description": "", - "name": "xmlns", - "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" - } - }, - "xmlnsXlink": { - "defaultValue": null, - "description": "", - "name": "xmlnsXlink", - "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" - } - }, - "xmlSpace": { - "defaultValue": null, - "description": "", - "name": "xmlSpace", - "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" - } - }, - "y1": { - "defaultValue": null, - "description": "", - "name": "y1", - "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" - } - }, - "y2": { - "defaultValue": null, - "description": "", - "name": "y2", - "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" - } - }, - "y": { - "defaultValue": null, - "description": "", - "name": "y", - "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" - } - }, - "yChannelSelector": { - "defaultValue": null, - "description": "", - "name": "yChannelSelector", - "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" - } - }, - "z": { - "defaultValue": null, - "description": "", - "name": "z", - "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" - } - }, - "zoomAndPan": { - "defaultValue": null, - "description": "", - "name": "zoomAndPan", - "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" - } - }, - "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 | \"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\" | \"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\" | \"menu\" | \"grid\" | \"listbox\" | \"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": "\"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" - } - }, - "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" - }, - { - "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" - } - }, - "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" - } - } - }, - "ChevronUp.tsx": { - "className": { - "defaultValue": null, - "description": "To add a className on svg and icons.", - "name": "className", - "parent": { - "fileName": "marigold/packages/components/src/Chevron/ChevronUp.tsx", - "name": "SVGProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Chevron/ChevronUp.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" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "autoReverse": { - "defaultValue": null, - "description": "", - "name": "autoReverse", - "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": "Booleanish" - } - }, - "azimuth": { - "defaultValue": null, - "description": "", - "name": "azimuth", - "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" - } - }, - "baseFrequency": { - "defaultValue": null, - "description": "", - "name": "baseFrequency", - "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" - } - }, - "baselineShift": { - "defaultValue": null, - "description": "", - "name": "baselineShift", - "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" - } - }, - "baseProfile": { - "defaultValue": null, - "description": "", - "name": "baseProfile", - "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" - } - }, - "bbox": { - "defaultValue": null, - "description": "", - "name": "bbox", - "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" - } - }, - "begin": { - "defaultValue": null, - "description": "", - "name": "begin", - "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" - } - }, - "bias": { - "defaultValue": null, - "description": "", - "name": "bias", - "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" - } - }, - "by": { - "defaultValue": null, - "description": "", - "name": "by", - "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" - } - }, - "calcMode": { - "defaultValue": null, - "description": "", - "name": "calcMode", - "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" - } - }, - "capHeight": { - "defaultValue": null, - "description": "", - "name": "capHeight", - "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" - } - }, - "clip": { - "defaultValue": null, - "description": "", - "name": "clip", - "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" - } - }, - "clipPathUnits": { - "defaultValue": null, - "description": "", - "name": "clipPathUnits", - "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" - } - }, - "clipRule": { - "defaultValue": null, - "description": "", - "name": "clipRule", - "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" - } - }, - "colorInterpolation": { - "defaultValue": null, - "description": "", - "name": "colorInterpolation", - "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" - } - }, - "colorInterpolationFilters": { - "defaultValue": null, - "description": "", - "name": "colorInterpolationFilters", - "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": "\"auto\" | \"inherit\" | \"sRGB\" | \"linearRGB\"" - } - }, - "colorProfile": { - "defaultValue": null, - "description": "", - "name": "colorProfile", - "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" - } - }, - "colorRendering": { - "defaultValue": null, - "description": "", - "name": "colorRendering", - "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" - } - }, - "contentScriptType": { - "defaultValue": null, - "description": "", - "name": "contentScriptType", - "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" - } - }, - "contentStyleType": { - "defaultValue": null, - "description": "", - "name": "contentStyleType", - "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" - } - }, - "cursor": { - "defaultValue": null, - "description": "", - "name": "cursor", - "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" - } - }, - "cx": { - "defaultValue": null, - "description": "", - "name": "cx", - "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" - } - }, - "cy": { - "defaultValue": null, - "description": "", - "name": "cy", - "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" - } - }, - "d": { - "defaultValue": null, - "description": "", - "name": "d", - "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" - } - }, - "decelerate": { - "defaultValue": null, - "description": "", - "name": "decelerate", - "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" - } - }, - "descent": { - "defaultValue": null, - "description": "", - "name": "descent", - "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" - } - }, - "diffuseConstant": { - "defaultValue": null, - "description": "", - "name": "diffuseConstant", - "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" - } - }, - "direction": { - "defaultValue": null, - "description": "", - "name": "direction", - "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" - } - }, - "display": { - "defaultValue": null, - "description": "", - "name": "display", - "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" - } - }, - "divisor": { - "defaultValue": null, - "description": "", - "name": "divisor", - "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" - } - }, - "dominantBaseline": { - "defaultValue": null, - "description": "", - "name": "dominantBaseline", - "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" - } - }, - "dur": { - "defaultValue": null, - "description": "", - "name": "dur", - "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" - } - }, - "dx": { - "defaultValue": null, - "description": "", - "name": "dx", - "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" - } - }, - "dy": { - "defaultValue": null, - "description": "", - "name": "dy", - "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" - } - }, - "edgeMode": { - "defaultValue": null, - "description": "", - "name": "edgeMode", - "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" - } - }, - "elevation": { - "defaultValue": null, - "description": "", - "name": "elevation", - "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" - } - }, - "enableBackground": { - "defaultValue": null, - "description": "", - "name": "enableBackground", - "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" - } - }, - "end": { - "defaultValue": null, - "description": "", - "name": "end", - "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" - } - }, - "exponent": { - "defaultValue": null, - "description": "", - "name": "exponent", - "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" - } - }, - "externalResourcesRequired": { - "defaultValue": null, - "description": "", - "name": "externalResourcesRequired", - "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": "Booleanish" - } - }, - "fillOpacity": { - "defaultValue": null, - "description": "", - "name": "fillOpacity", - "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" - } - }, - "fillRule": { - "defaultValue": null, - "description": "", - "name": "fillRule", - "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": "\"inherit\" | \"nonzero\" | \"evenodd\"" - } - }, - "filterRes": { - "defaultValue": null, - "description": "", - "name": "filterRes", - "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" - } - }, - "filterUnits": { - "defaultValue": null, - "description": "", - "name": "filterUnits", - "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" - } - }, - "floodColor": { - "defaultValue": null, - "description": "", - "name": "floodColor", - "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" - } - }, - "floodOpacity": { - "defaultValue": null, - "description": "", - "name": "floodOpacity", - "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" - } - }, - "focusable": { - "defaultValue": null, - "description": "", - "name": "focusable", - "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": "\"auto\" | Booleanish" - } - }, - "fontFamily": { - "defaultValue": null, - "description": "", - "name": "fontFamily", - "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" - } - }, - "fontSize": { - "defaultValue": null, - "description": "", - "name": "fontSize", - "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" - } - }, - "fontSizeAdjust": { - "defaultValue": null, - "description": "", - "name": "fontSizeAdjust", - "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" - } - }, - "fontStretch": { - "defaultValue": null, - "description": "", - "name": "fontStretch", - "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" - } - }, - "fontStyle": { - "defaultValue": null, - "description": "", - "name": "fontStyle", - "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" - } - }, - "fontVariant": { - "defaultValue": null, - "description": "", - "name": "fontVariant", - "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" - } - }, - "fontWeight": { - "defaultValue": null, - "description": "", - "name": "fontWeight", - "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" - } - }, - "format": { - "defaultValue": null, - "description": "", - "name": "format", - "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" - } - }, - "fr": { - "defaultValue": null, - "description": "", - "name": "fr", - "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" - } - }, - "from": { - "defaultValue": null, - "description": "", - "name": "from", - "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" - } - }, - "fx": { - "defaultValue": null, - "description": "", - "name": "fx", - "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" - } - }, - "fy": { - "defaultValue": null, - "description": "", - "name": "fy", - "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" - } - }, - "g1": { - "defaultValue": null, - "description": "", - "name": "g1", - "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" - } - }, - "g2": { - "defaultValue": null, - "description": "", - "name": "g2", - "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" - } - }, - "glyphName": { - "defaultValue": null, - "description": "", - "name": "glyphName", - "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" - } - }, - "glyphOrientationHorizontal": { - "defaultValue": null, - "description": "", - "name": "glyphOrientationHorizontal", - "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" - } - }, - "glyphOrientationVertical": { - "defaultValue": null, - "description": "", - "name": "glyphOrientationVertical", - "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" - } - }, - "glyphRef": { - "defaultValue": null, - "description": "", - "name": "glyphRef", - "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" - } - }, - "gradientTransform": { - "defaultValue": null, - "description": "", - "name": "gradientTransform", - "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" - } - }, - "gradientUnits": { - "defaultValue": null, - "description": "", - "name": "gradientUnits", - "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" - } - }, - "hanging": { - "defaultValue": null, - "description": "", - "name": "hanging", - "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" - } - }, - "horizAdvX": { - "defaultValue": null, - "description": "", - "name": "horizAdvX", - "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" - } - }, - "horizOriginX": { - "defaultValue": null, - "description": "", - "name": "horizOriginX", - "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" - } - }, - "href": { - "defaultValue": null, - "description": "", - "name": "href", - "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" - } - }, - "ideographic": { - "defaultValue": null, - "description": "", - "name": "ideographic", - "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" - } - }, - "imageRendering": { - "defaultValue": null, - "description": "", - "name": "imageRendering", - "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" - } - }, - "in2": { - "defaultValue": null, - "description": "", - "name": "in2", - "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" - } - }, - "in": { - "defaultValue": null, - "description": "", - "name": "in", - "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" - } - }, - "intercept": { - "defaultValue": null, - "description": "", - "name": "intercept", - "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" - } - }, - "k1": { - "defaultValue": null, - "description": "", - "name": "k1", - "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" - } - }, - "k2": { - "defaultValue": null, - "description": "", - "name": "k2", - "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" - } - }, - "k3": { - "defaultValue": null, - "description": "", - "name": "k3", - "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" - } - }, - "k4": { - "defaultValue": null, - "description": "", - "name": "k4", - "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" - } - }, - "k": { - "defaultValue": null, - "description": "", - "name": "k", - "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" - } - }, - "kernelMatrix": { - "defaultValue": null, - "description": "", - "name": "kernelMatrix", - "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" - } - }, - "kernelUnitLength": { - "defaultValue": null, - "description": "", - "name": "kernelUnitLength", - "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" - } - }, - "kerning": { - "defaultValue": null, - "description": "", - "name": "kerning", - "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" - } - }, - "keyPoints": { - "defaultValue": null, - "description": "", - "name": "keyPoints", - "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" - } - }, - "keySplines": { - "defaultValue": null, - "description": "", - "name": "keySplines", - "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" - } - }, - "keyTimes": { - "defaultValue": null, - "description": "", - "name": "keyTimes", - "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" - } - }, - "lengthAdjust": { - "defaultValue": null, - "description": "", - "name": "lengthAdjust", - "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" - } - }, - "letterSpacing": { - "defaultValue": null, - "description": "", - "name": "letterSpacing", - "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" - } - }, - "lightingColor": { - "defaultValue": null, - "description": "", - "name": "lightingColor", - "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" - } - }, - "limitingConeAngle": { - "defaultValue": null, - "description": "", - "name": "limitingConeAngle", - "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" - } - }, - "local": { - "defaultValue": null, - "description": "", - "name": "local", - "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" - } - }, - "markerEnd": { - "defaultValue": null, - "description": "", - "name": "markerEnd", - "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" - } - }, - "markerHeight": { - "defaultValue": null, - "description": "", - "name": "markerHeight", - "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" - } - }, - "markerMid": { - "defaultValue": null, - "description": "", - "name": "markerMid", - "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" - } - }, - "markerStart": { - "defaultValue": null, - "description": "", - "name": "markerStart", - "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" - } - }, - "markerUnits": { - "defaultValue": null, - "description": "", - "name": "markerUnits", - "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" - } - }, - "markerWidth": { - "defaultValue": null, - "description": "", - "name": "markerWidth", - "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" - } - }, - "maskContentUnits": { - "defaultValue": null, - "description": "", - "name": "maskContentUnits", - "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" - } - }, - "maskUnits": { - "defaultValue": null, - "description": "", - "name": "maskUnits", - "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" - } - }, - "mathematical": { - "defaultValue": null, - "description": "", - "name": "mathematical", - "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" - } - }, - "mode": { - "defaultValue": null, - "description": "", - "name": "mode", - "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" - } - }, - "numOctaves": { - "defaultValue": null, - "description": "", - "name": "numOctaves", - "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" - } - }, - "offset": { - "defaultValue": null, - "description": "", - "name": "offset", - "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" - } - }, - "opacity": { - "defaultValue": null, - "description": "", - "name": "opacity", - "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" - } - }, - "operator": { - "defaultValue": null, - "description": "", - "name": "operator", - "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" - } - }, - "order": { - "defaultValue": null, - "description": "", - "name": "order", - "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" - } - }, - "orient": { - "defaultValue": null, - "description": "", - "name": "orient", - "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" - } - }, - "orientation": { - "defaultValue": null, - "description": "", - "name": "orientation", - "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" - } - }, - "origin": { - "defaultValue": null, - "description": "", - "name": "origin", - "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" - } - }, - "overflow": { - "defaultValue": null, - "description": "", - "name": "overflow", - "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" - } - }, - "overlinePosition": { - "defaultValue": null, - "description": "", - "name": "overlinePosition", - "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" - } - }, - "overlineThickness": { - "defaultValue": null, - "description": "", - "name": "overlineThickness", - "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" - } - }, - "paintOrder": { - "defaultValue": null, - "description": "", - "name": "paintOrder", - "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" - } - }, - "panose1": { - "defaultValue": null, - "description": "", - "name": "panose1", - "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" - } - }, - "pathLength": { - "defaultValue": null, - "description": "", - "name": "pathLength", - "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" - } - }, - "patternContentUnits": { - "defaultValue": null, - "description": "", - "name": "patternContentUnits", - "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" - } - }, - "patternTransform": { - "defaultValue": null, - "description": "", - "name": "patternTransform", - "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" - } - }, - "patternUnits": { - "defaultValue": null, - "description": "", - "name": "patternUnits", - "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" - } - }, - "pointerEvents": { - "defaultValue": null, - "description": "", - "name": "pointerEvents", - "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" - } - }, - "points": { - "defaultValue": null, - "description": "", - "name": "points", - "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" - } - }, - "pointsAtX": { - "defaultValue": null, - "description": "", - "name": "pointsAtX", - "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" - } - }, - "pointsAtY": { - "defaultValue": null, - "description": "", - "name": "pointsAtY", - "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" - } - }, - "pointsAtZ": { - "defaultValue": null, - "description": "", - "name": "pointsAtZ", - "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" - } - }, - "preserveAlpha": { - "defaultValue": null, - "description": "", - "name": "preserveAlpha", - "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": "Booleanish" - } - }, - "preserveAspectRatio": { - "defaultValue": null, - "description": "", - "name": "preserveAspectRatio", - "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" - } - }, - "primitiveUnits": { - "defaultValue": null, - "description": "", - "name": "primitiveUnits", - "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" - } - }, - "r": { - "defaultValue": null, - "description": "", - "name": "r", - "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" - } - }, - "radius": { - "defaultValue": null, - "description": "", - "name": "radius", - "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" - } - }, - "refX": { - "defaultValue": null, - "description": "", - "name": "refX", - "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" - } - }, - "refY": { - "defaultValue": null, - "description": "", - "name": "refY", - "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" - } - }, - "renderingIntent": { - "defaultValue": null, - "description": "", - "name": "renderingIntent", - "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" - } - }, - "repeatCount": { - "defaultValue": null, - "description": "", - "name": "repeatCount", - "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" - } - }, - "repeatDur": { - "defaultValue": null, - "description": "", - "name": "repeatDur", - "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" - } - }, - "requiredExtensions": { - "defaultValue": null, - "description": "", - "name": "requiredExtensions", - "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" - } - }, - "requiredFeatures": { - "defaultValue": null, - "description": "", - "name": "requiredFeatures", - "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" - } - }, - "restart": { - "defaultValue": null, - "description": "", - "name": "restart", - "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" - } - }, - "result": { - "defaultValue": null, - "description": "", - "name": "result", - "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" - } - }, - "rotate": { - "defaultValue": null, - "description": "", - "name": "rotate", - "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" - } - }, - "rx": { - "defaultValue": null, - "description": "", - "name": "rx", - "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" - } - }, - "ry": { - "defaultValue": null, - "description": "", - "name": "ry", - "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" - } - }, - "scale": { - "defaultValue": null, - "description": "", - "name": "scale", - "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" - } - }, - "seed": { - "defaultValue": null, - "description": "", - "name": "seed", - "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" - } - }, - "shapeRendering": { - "defaultValue": null, - "description": "", - "name": "shapeRendering", - "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" - } - }, - "slope": { - "defaultValue": null, - "description": "", - "name": "slope", - "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" - } - }, - "spacing": { - "defaultValue": null, - "description": "", - "name": "spacing", - "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" - } - }, - "specularConstant": { - "defaultValue": null, - "description": "", - "name": "specularConstant", - "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" - } - }, - "specularExponent": { - "defaultValue": null, - "description": "", - "name": "specularExponent", - "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" - } - }, - "speed": { - "defaultValue": null, - "description": "", - "name": "speed", - "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" - } - }, - "spreadMethod": { - "defaultValue": null, - "description": "", - "name": "spreadMethod", - "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" - } - }, - "startOffset": { - "defaultValue": null, - "description": "", - "name": "startOffset", - "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" - } - }, - "stdDeviation": { - "defaultValue": null, - "description": "", - "name": "stdDeviation", - "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" - } - }, - "stemh": { - "defaultValue": null, - "description": "", - "name": "stemh", - "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" - } - }, - "stemv": { - "defaultValue": null, - "description": "", - "name": "stemv", - "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" - } - }, - "stitchTiles": { - "defaultValue": null, - "description": "", - "name": "stitchTiles", - "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" - } - }, - "stopColor": { - "defaultValue": null, - "description": "", - "name": "stopColor", - "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" - } - }, - "stopOpacity": { - "defaultValue": null, - "description": "", - "name": "stopOpacity", - "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" - } - }, - "strikethroughPosition": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strikethroughThickness": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "stroke": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "strokeDasharray": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strokeDashoffset": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strokeLinecap": { - "defaultValue": null, - "description": "", - "name": "strokeLinecap", - "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": "\"inherit\" | \"butt\" | \"round\" | \"square\"" - } - }, - "strokeLinejoin": { - "defaultValue": null, - "description": "", - "name": "strokeLinejoin", - "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": "\"inherit\" | \"round\" | \"miter\" | \"bevel\"" - } - }, - "strokeMiterlimit": { - "defaultValue": null, - "description": "", - "name": "strokeMiterlimit", - "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" - } - }, - "strokeOpacity": { - "defaultValue": null, - "description": "", - "name": "strokeOpacity", - "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" - } - }, - "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" - }, - "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" - } - }, - "surfaceScale": { - "defaultValue": null, - "description": "", - "name": "surfaceScale", - "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" - } - }, - "systemLanguage": { - "defaultValue": null, - "description": "", - "name": "systemLanguage", - "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" - } - }, - "tableValues": { - "defaultValue": null, - "description": "", - "name": "tableValues", - "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" - } - }, - "targetX": { - "defaultValue": null, - "description": "", - "name": "targetX", - "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" - } - }, - "targetY": { - "defaultValue": null, - "description": "", - "name": "targetY", - "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" - } - }, - "textAnchor": { - "defaultValue": null, - "description": "", - "name": "textAnchor", - "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" - } - }, - "textDecoration": { - "defaultValue": null, - "description": "", - "name": "textDecoration", - "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" - } - }, - "textLength": { - "defaultValue": null, - "description": "", - "name": "textLength", - "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" - } - }, - "textRendering": { - "defaultValue": null, - "description": "", - "name": "textRendering", - "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" - } - }, - "to": { - "defaultValue": null, - "description": "", - "name": "to", - "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" - } - }, - "transform": { - "defaultValue": null, - "description": "", - "name": "transform", - "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" - } - }, - "u1": { - "defaultValue": null, - "description": "", - "name": "u1", - "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" - } - }, - "u2": { - "defaultValue": null, - "description": "", - "name": "u2", - "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" - } - }, - "underlinePosition": { - "defaultValue": null, - "description": "", - "name": "underlinePosition", - "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" - } - }, - "underlineThickness": { - "defaultValue": null, - "description": "", - "name": "underlineThickness", - "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" - } - }, - "unicode": { - "defaultValue": null, - "description": "", - "name": "unicode", - "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" - } - }, - "unicodeBidi": { - "defaultValue": null, - "description": "", - "name": "unicodeBidi", - "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" - } - }, - "unicodeRange": { - "defaultValue": null, - "description": "", - "name": "unicodeRange", - "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" - } - }, - "unitsPerEm": { - "defaultValue": null, - "description": "", - "name": "unitsPerEm", - "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" - } - }, - "vAlphabetic": { - "defaultValue": null, - "description": "", - "name": "vAlphabetic", - "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" - } - }, - "values": { - "defaultValue": null, - "description": "", - "name": "values", - "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" - } - }, - "vectorEffect": { - "defaultValue": null, - "description": "", - "name": "vectorEffect", - "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" - } - }, - "version": { - "defaultValue": null, - "description": "", - "name": "version", - "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" - } - }, - "vertAdvY": { - "defaultValue": null, - "description": "", - "name": "vertAdvY", - "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" - } - }, - "vertOriginX": { - "defaultValue": null, - "description": "", - "name": "vertOriginX", - "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" - } - }, - "vertOriginY": { - "defaultValue": null, - "description": "", - "name": "vertOriginY", - "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" - } - }, - "vHanging": { - "defaultValue": null, - "description": "", - "name": "vHanging", - "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" - } - }, - "vIdeographic": { - "defaultValue": null, - "description": "", - "name": "vIdeographic", - "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" - } - }, - "viewBox": { - "defaultValue": null, - "description": "", - "name": "viewBox", - "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" - } - }, - "viewTarget": { - "defaultValue": null, - "description": "", - "name": "viewTarget", - "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" - } - }, - "visibility": { - "defaultValue": null, - "description": "", - "name": "visibility", - "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" - } - }, - "vMathematical": { - "defaultValue": null, - "description": "", - "name": "vMathematical", - "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" - } - }, - "widths": { - "defaultValue": null, - "description": "", - "name": "widths", - "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" - } - }, - "wordSpacing": { - "defaultValue": null, - "description": "", - "name": "wordSpacing", - "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" - } - }, - "writingMode": { - "defaultValue": null, - "description": "", - "name": "writingMode", - "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" - } - }, - "x1": { - "defaultValue": null, - "description": "", - "name": "x1", - "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" - } - }, - "x2": { - "defaultValue": null, - "description": "", - "name": "x2", - "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" - } - }, - "x": { - "defaultValue": null, - "description": "", - "name": "x", - "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" - } - }, - "xChannelSelector": { - "defaultValue": null, - "description": "", - "name": "xChannelSelector", - "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" - } - }, - "xHeight": { - "defaultValue": null, - "description": "", - "name": "xHeight", - "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" - } - }, - "xlinkActuate": { - "defaultValue": null, - "description": "", - "name": "xlinkActuate", - "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" - } - }, - "xlinkArcrole": { - "defaultValue": null, - "description": "", - "name": "xlinkArcrole", - "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" - } - }, - "xlinkHref": { - "defaultValue": null, - "description": "", - "name": "xlinkHref", - "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" - } - }, - "xlinkRole": { - "defaultValue": null, - "description": "", - "name": "xlinkRole", - "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" - } - }, - "xlinkShow": { - "defaultValue": null, - "description": "", - "name": "xlinkShow", - "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" - } - }, - "xlinkTitle": { - "defaultValue": null, - "description": "", - "name": "xlinkTitle", - "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" - } - }, - "xlinkType": { - "defaultValue": null, - "description": "", - "name": "xlinkType", - "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" - } - }, - "xmlBase": { - "defaultValue": null, - "description": "", - "name": "xmlBase", - "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" - } - }, - "xmlLang": { - "defaultValue": null, - "description": "", - "name": "xmlLang", - "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" - } - }, - "xmlns": { - "defaultValue": null, - "description": "", - "name": "xmlns", - "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" - } - }, - "xmlnsXlink": { - "defaultValue": null, - "description": "", - "name": "xmlnsXlink", - "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" - } - }, - "xmlSpace": { - "defaultValue": null, - "description": "", - "name": "xmlSpace", - "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" - } - }, - "y1": { - "defaultValue": null, - "description": "", - "name": "y1", - "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" - } - }, - "y2": { - "defaultValue": null, - "description": "", - "name": "y2", - "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" - } - }, - "y": { - "defaultValue": null, - "description": "", - "name": "y", - "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" - } - }, - "yChannelSelector": { - "defaultValue": null, - "description": "", - "name": "yChannelSelector", - "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" - } - }, - "z": { - "defaultValue": null, - "description": "", - "name": "z", - "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" - } - }, - "zoomAndPan": { - "defaultValue": null, - "description": "", - "name": "zoomAndPan", - "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" - } - }, - "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 | \"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\" | \"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\" | \"menu\" | \"grid\" | \"listbox\" | \"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": "\"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" - } - }, - "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" - }, - { - "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" - } - }, - "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" - } - } - }, - "ComboBox.tsx": { - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the input is disabled.", - "name": "disabled", - "parent": { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "required": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the input is required.", - "name": "required", - "parent": { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "readOnly": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the input is readOnly.", - "name": "readOnly", - "parent": { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - } - ], - "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/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "defaultValue": { - "defaultValue": null, - "description": "The value of the input (uncontrolled).", - "name": "defaultValue", - "parent": { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "value": { - "defaultValue": null, - "description": "The value of the input (controlled).", - "name": "value", - "parent": { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "onChange": { - "defaultValue": null, - "description": "Called when the input value changes.", - "name": "onChange", - "parent": { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "((value: string) => void)" - } - }, - "children": { - "defaultValue": null, - "description": "ReactNode or function to render the list of items.", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - } - ], - "required": false, - "type": { - "name": "ReactNode | ((item: any) => ReactNode)" - } - }, - "placeholder": { - "defaultValue": null, - "description": "Set the placeholder for the select.", - "name": "placeholder", - "parent": { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/ComboBox/ComboBox.tsx", - "name": "ComboBoxProps" - } - ], - "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\"" - } - }, - "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)" - } - }, - "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" - } - }, - "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" - } - }, - "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" - } - } - }, - "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": { - "value": "content" - }, - "description": "The content type of the container.", - "name": "contentType", - "parent": { - "fileName": "marigold/packages/components/src/Container/Container.tsx", - "name": "ContainerProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Container/Container.tsx", - "name": "ContainerProps" - } - ], - "required": false, - "type": { - "name": "\"header\" | \"content\"" - } - }, - "align": { - "defaultValue": { - "value": "left" - }, - "description": "Set alignment the content inside the container.", - "name": "align", - "parent": { - "fileName": "marigold/packages/components/src/Container/Container.tsx", - "name": "ContainerProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Container/Container.tsx", - "name": "ContainerProps" - } - ], - "required": false, - "type": { - "name": "\"center\" | \"left\" | \"right\"" - } - }, - "alignItems": { - "defaultValue": { - "value": "none" - }, - "description": "Set alignment of the items inside the container.", - "name": "alignItems", - "parent": { - "fileName": "marigold/packages/components/src/Container/Container.tsx", - "name": "ContainerProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Container/Container.tsx", - "name": "ContainerProps" - } - ], - "required": false, - "type": { - "name": "\"center\" | \"left\" | \"right\" | \"none\"" - } - }, - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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": "\"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\" | \"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\" | \"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": "\"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": "\"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" - } - } - }, - "DateField.tsx": { - "action": { - "defaultValue": null, - "description": "", - "name": "action", - "parent": { - "fileName": "marigold/packages/components/src/DateField/DateField.tsx", - "name": "DateFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/DateField/DateField.tsx", - "name": "DateFieldProps" - } - ], - "required": false, - "type": { - "name": "ReactElement>" - } - }, - "required": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the date field is required.", - "name": "required", - "parent": { - "fileName": "marigold/packages/components/src/DateField/DateField.tsx", - "name": "DateFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/DateField/DateField.tsx", - "name": "DateFieldProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the date field is disabled.", - "name": "disabled", - "parent": { - "fileName": "marigold/packages/components/src/DateField/DateField.tsx", - "name": "DateFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/DateField/DateField.tsx", - "name": "DateFieldProps" - } - ], - "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/DateField/DateField.tsx", - "name": "DateFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/DateField/DateField.tsx", - "name": "DateFieldProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "readOnly": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the date field is readOnly.", - "name": "readOnly", - "parent": { - "fileName": "marigold/packages/components/src/DateField/DateField.tsx", - "name": "DateFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/DateField/DateField.tsx", - "name": "DateFieldProps" - } - ], - "required": false, - "type": { - "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", - "parent": { - "fileName": "marigold/packages/components/src/DateField/DateField.tsx", - "name": "DateFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/DateField/DateField.tsx", - "name": "DateFieldProps" - } - ], - "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 ..." - } - }, - "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\"" - } - }, - "minValue": { - "defaultValue": null, - "description": "The minimum allowed date that a user may select.", - "name": "minValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - } - ], - "required": false, - "type": { - "name": "DateValue" - } - }, - "maxValue": { - "defaultValue": null, - "description": "The maximum allowed date that a user may select.", - "name": "maxValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - } - ], - "required": false, - "type": { - "name": "DateValue" - } - }, - "isDateUnavailable": { - "defaultValue": null, - "description": "Callback that is called for each date of the calendar. If it returns true, then the date is unavailable.", - "name": "isDateUnavailable", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - } - ], - "required": false, - "type": { - "name": "((date: DateValue) => boolean)" - } - }, - "placeholderValue": { - "defaultValue": null, - "description": "A placeholder date that influences the format of the placeholder shown when no value is selected. Defaults to today's date at midnight.", - "name": "placeholderValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - } - ], - "required": false, - "type": { - "name": "DateValue" - } - }, - "hourCycle": { - "defaultValue": null, - "description": "Whether to display the time in 12 or 24 hour format. By default, this is determined by the user's locale.", - "name": "hourCycle", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - } - ], - "required": false, - "type": { - "name": "12 | 24" - } - }, - "granularity": { - "defaultValue": null, - "description": "Determines the smallest unit that is displayed in the date picker. By default, this is `\"day\"` for dates, and `\"minute\"` for times.", - "name": "granularity", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - } - ], - "required": false, - "type": { - "name": "Granularity" - } - }, - "hideTimeZone": { - "defaultValue": { - "value": "false" - }, - "description": "Whether to hide the time zone abbreviation.", - "name": "hideTimeZone", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "shouldForceLeadingZeros": { - "defaultValue": null, - "description": "Whether to always show leading zeros in the month, day, and hour fields.\nBy default, this is determined by the user's locale.", - "name": "shouldForceLeadingZeros", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - } - ], - "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: DateValue) => 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)" - } - }, - "isOpen": { - "defaultValue": null, - "description": "Whether the overlay is open by default (controlled).", - "name": "isOpen", - "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" - } - }, - "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)" - } - }, - "value": { - "defaultValue": null, - "description": "The current value (controlled).", - "name": "value", - "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": "DateValue | null" - } - }, - "defaultValue": { - "defaultValue": null, - "description": "The default value (uncontrolled).", - "name": "defaultValue", - "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": "DateValue | null" - } - }, - "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: DateValue) => 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" - } - }, - "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" - } - }, - "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" - } - } - }, - "DateInput.tsx": { - "action": { - "defaultValue": null, - "description": "", - "name": "action", - "parent": { - "fileName": "marigold/packages/components/src/DateField/DateInput.tsx", - "name": "DateInputProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/DateField/DateInput.tsx", - "name": "DateInputProps" - } - ], - "required": false, - "type": { - "name": "ReactElement>" - } - }, - "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" - } - } - }, - "DateSegment.tsx": { - "segment": { - "defaultValue": null, - "description": "", - "name": "segment", - "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": "DateSegmentProps" - }, - "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": "DateSegmentProps" - } - ], - "required": true, - "type": { - "name": "DateSegment" - } - }, - "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: DateSegmentRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" - } - }, - "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: DateSegmentRenderProps & { 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: DateSegmentRenderProps & { defaultStyle: CSSProperties; }) => CSSProperties)" - } - }, - "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)" - } - } - }, - "DatePicker.tsx": { - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the date picker is disabled.", - "name": "disabled", - "parent": { - "fileName": "marigold/packages/components/src/DatePicker/DatePicker.tsx", - "name": "DatePickerProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/DatePicker/DatePicker.tsx", - "name": "DatePickerProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "required": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the date picker is required.", - "name": "required", - "parent": { - "fileName": "marigold/packages/components/src/DatePicker/DatePicker.tsx", - "name": "DatePickerProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/DatePicker/DatePicker.tsx", - "name": "DatePickerProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "readOnly": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the date picker is readOnly.", - "name": "readOnly", - "parent": { - "fileName": "marigold/packages/components/src/DatePicker/DatePicker.tsx", - "name": "DatePickerProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/DatePicker/DatePicker.tsx", - "name": "DatePickerProps" - } - ], - "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/DatePicker/DatePicker.tsx", - "name": "DatePickerProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/DatePicker/DatePicker.tsx", - "name": "DatePickerProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "open": { - "defaultValue": { - "value": "false" - }, - "description": "Whether the calendar is open by default (controlled).", - "name": "open", - "parent": { - "fileName": "marigold/packages/components/src/DatePicker/DatePicker.tsx", - "name": "DatePickerProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/DatePicker/DatePicker.tsx", - "name": "DatePickerProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "width": { - "defaultValue": null, - "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/DatePicker/DatePicker.tsx", - "name": "DatePickerProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/DatePicker/DatePicker.tsx", - "name": "DatePickerProps" - } - ], - "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 ..." - } - }, - "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\"" - } - }, - "pageBehavior": { - "defaultValue": { - "value": "visible" - }, - "description": "Controls the behavior of paging. Pagination either works by advancing the visible page by visibleDuration (default) or one unit of visibleDuration.", - "name": "pageBehavior", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DatePickerBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DatePickerBase" - } - ], - "required": false, - "type": { - "name": "PageBehavior" - } - }, - "minValue": { - "defaultValue": null, - "description": "The minimum allowed date that a user may select.", - "name": "minValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - } - ], - "required": false, - "type": { - "name": "DateValue" - } - }, - "maxValue": { - "defaultValue": null, - "description": "The maximum allowed date that a user may select.", - "name": "maxValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - } - ], - "required": false, - "type": { - "name": "DateValue" - } - }, - "isDateUnavailable": { - "defaultValue": null, - "description": "Callback that is called for each date of the calendar. If it returns true, then the date is unavailable.", - "name": "isDateUnavailable", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - } - ], - "required": false, - "type": { - "name": "((date: DateValue) => boolean)" - } - }, - "placeholderValue": { - "defaultValue": null, - "description": "A placeholder date that influences the format of the placeholder shown when no value is selected. Defaults to today's date at midnight.", - "name": "placeholderValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - } - ], - "required": false, - "type": { - "name": "DateValue" - } - }, - "hourCycle": { - "defaultValue": null, - "description": "Whether to display the time in 12 or 24 hour format. By default, this is determined by the user's locale.", - "name": "hourCycle", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - } - ], - "required": false, - "type": { - "name": "12 | 24" - } - }, - "granularity": { - "defaultValue": { - "value": "day" - }, - "description": "Determines the smallest unit that is displayed in the date picker. By default, this is `\"day\"` for dates, and `\"minute\"` for times.", - "name": "granularity", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - } - ], - "required": false, - "type": { - "name": "Granularity" - } - }, - "hideTimeZone": { - "defaultValue": { - "value": "false" - }, - "description": "Whether to hide the time zone abbreviation.", - "name": "hideTimeZone", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "shouldForceLeadingZeros": { - "defaultValue": null, - "description": "Whether to always show leading zeros in the month, day, and hour fields.\nBy default, this is determined by the user's locale.", - "name": "shouldForceLeadingZeros", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+datepicker@3.7.4_react@18.3.1/node_modules/@react-types/datepicker/src/index.d.ts", - "name": "DateFieldBase" - } - ], - "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: DateValue) => 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)" - } - }, - "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)" - } - }, - "value": { - "defaultValue": null, - "description": "The current value (controlled).", - "name": "value", - "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": "DateValue | null" - } - }, - "defaultValue": { - "defaultValue": null, - "description": "The default value (uncontrolled).", - "name": "defaultValue", - "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": "DateValue | null" - } - }, - "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: DateValue) => 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" - } - }, - "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" - } - }, - "shouldCloseOnSelect": { - "defaultValue": { - "value": "true" - }, - "description": "Determines whether the date picker popover should close automatically when a date is selected.", - "name": "shouldCloseOnSelect", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-stately+datepicker@3.9.4_react@18.3.1/node_modules/@react-stately/datepicker/dist/types.d.ts", - "name": "DatePickerStateOptions" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-stately+datepicker@3.9.4_react@18.3.1/node_modules/@react-stately/datepicker/dist/types.d.ts", - "name": "DatePickerStateOptions" - } - ], - "required": false, - "type": { - "name": "boolean | (() => boolean)" - } - }, - "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: DatePickerRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" - } - }, - "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)" - } - } - }, - "Dialog.tsx": { - "closeButton": { - "defaultValue": null, - "description": "Show the close button.", - "name": "closeButton", - "parent": { - "fileName": "marigold/packages/components/src/Dialog/Dialog.tsx", - "name": "DialogProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Dialog/Dialog.tsx", - "name": "DialogProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "isNonModal": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the dialog will be non-modal, meaning it will not block interaction with the background content.", - "name": "isNonModal", - "parent": { - "fileName": "marigold/packages/components/src/Dialog/Dialog.tsx", - "name": "DialogProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Dialog/Dialog.tsx", - "name": "DialogProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "children": { - "defaultValue": null, - "description": "Children of the dialog. A function may be provided to access a function to close the dialog.", - "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": "DialogProps" - }, - "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": "DialogProps" - } - ], - "required": false, - "type": { - "name": "ReactNode | ((opts: DialogRenderProps) => ReactNode)" - } - }, - "role": { - "defaultValue": { - "value": "'dialog'" - }, - "description": "The accessibility role for the dialog.", - "name": "role", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+dialog@3.5.10_react@18.3.1/node_modules/@react-types/dialog/src/index.d.ts", - "name": "AriaDialogProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+dialog@3.5.10_react@18.3.1/node_modules/@react-types/dialog/src/index.d.ts", - "name": "AriaDialogProps" - } - ], - "required": false, - "type": { - "name": "\"dialog\" | \"alertdialog\"" - } - }, - "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" - } - }, - "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" - } - }, - "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" - } - } - }, - "DialogTrigger.tsx": { - "open": { - "defaultValue": { - "value": "false" - }, - "description": "Wheather compnent is rendered.", - "name": "open", - "parent": { - "fileName": "marigold/packages/components/src/Dialog/DialogTrigger.tsx", - "name": "DialogTriggerProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Dialog/DialogTrigger.tsx", - "name": "DialogTriggerProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "dismissable": { - "defaultValue": { - "value": "false" - }, - "description": "Whether to close the overlay when the user interacts outside it.", - "name": "dismissable", - "parent": { - "fileName": "marigold/packages/components/src/Dialog/DialogTrigger.tsx", - "name": "DialogTriggerProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Dialog/DialogTrigger.tsx", - "name": "DialogTriggerProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "keyboardDismissable": { - "defaultValue": null, - "description": "Whether pressing the escape key to close the overlay should be disabled.", - "name": "keyboardDismissable", - "parent": { - "fileName": "marigold/packages/components/src/Dialog/DialogTrigger.tsx", - "name": "DialogTriggerProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Dialog/DialogTrigger.tsx", - "name": "DialogTriggerProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "isNonModal": { - "defaultValue": null, - "description": "If `true`, the dialog will be non-modal, meaning it will not block interaction with the background content.", - "name": "isNonModal", - "parent": { - "fileName": "marigold/packages/components/src/Dialog/DialogTrigger.tsx", - "name": "DialogTriggerProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Dialog/DialogTrigger.tsx", - "name": "DialogTriggerProps" - } - ], - "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)" - } - } - }, - "Divider.tsx": { - "orientation": { - "defaultValue": { - "value": "'horizontal'" - }, - "description": "The orientation of the separator.", - "name": "orientation", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-aria+separator@3.3.13_react@18.3.1/node_modules/@react-aria/separator/dist/types.d.ts", - "name": "SeparatorProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-aria+separator@3.3.13_react@18.3.1/node_modules/@react-aria/separator/dist/types.d.ts", - "name": "SeparatorProps" - } - ], - "required": false, - "type": { - "name": "Orientation" - } - }, - "elementType": { - "defaultValue": null, - "description": "The HTML element type that will be used to render the separator.", - "name": "elementType", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-aria+separator@3.3.13_react@18.3.1/node_modules/@react-aria/separator/dist/types.d.ts", - "name": "SeparatorProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-aria+separator@3.3.13_react@18.3.1/node_modules/@react-aria/separator/dist/types.d.ts", - "name": "SeparatorProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "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" - } - }, - "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" - } - }, - "className": { - "defaultValue": null, - "description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element.", - "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": "StyleProps" - }, - "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": "StyleProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "style": { - "defaultValue": null, - "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element.", - "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": "StyleProps" - }, - "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": "StyleProps" - } - ], - "required": false, - "type": { - "name": "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" - } - } - }, - "FieldBase.tsx": { - "as": { - "defaultValue": null, - "description": "", - "name": "as", - "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": "ElementType" - } - }, - "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" - } - }, - "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.", - "name": "width", - "declarations": [ - { - "fileName": "marigold/packages/system/src/style-props.tsx", - "name": "TypeLiteral" - } - ], - "required": false, - "type": { - "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": { - "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" - } - } - }, - "FieldGroup.tsx": { - "labelWidth": { - "defaultValue": null, - "description": "Sets the width of all Fields labels used inside the `FieldGroup`", - "name": "labelWidth", - "parent": { - "fileName": "marigold/packages/components/src/FieldBase/FieldGroup.tsx", - "name": "FieldGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/FieldBase/FieldGroup.tsx", - "name": "FieldGroupProps" - } - ], - "required": false, - "type": { - "name": "string" - } - } - }, - "Footer.tsx": { - "children": { - "defaultValue": null, - "description": "The children of the component.", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Footer/Footer.tsx", - "name": "FooterProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Footer/Footer.tsx", - "name": "FooterProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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 | \"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\" | \"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\" | \"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": "\"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": "\"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" - } - } - }, - "Form.tsx": { - "validationBehavior": { - "defaultValue": { - "value": "'native'" - }, - "description": "Whether to use native HTML form validation to prevent form submission\nwhen a field value is missing or invalid, or mark fields 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": "FormProps" - }, - "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": "FormProps" - } - ], - "required": false, - "type": { - "name": "\"aria\" | \"native\"" - } - }, - "validationErrors": { - "defaultValue": null, - "description": "Validation errors for the form, typically returned by a server.\nThis should be set to an object mapping from input names to errors.", - "name": "validationErrors", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - } - ], - "required": false, - "type": { - "name": "ValidationErrors" - } - }, - "action": { - "defaultValue": null, - "description": "Where to send the form-data when the form is submitted.\nSee [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form#action).", - "name": "action", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "encType": { - "defaultValue": null, - "description": "The enctype attribute specifies how the form-data should be encoded when submitting it to the server.\nSee [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form#enctype).", - "name": "encType", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - } - ], - "required": false, - "type": { - "name": "\"application/x-www-form-urlencoded\" | \"multipart/form-data\" | \"text/plain\"" - } - }, - "method": { - "defaultValue": null, - "description": "The HTTP method to submit the form with.\nSee [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form#method).", - "name": "method", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - } - ], - "required": false, - "type": { - "name": "\"get\" | \"post\" | \"dialog\"" - } - }, - "target": { - "defaultValue": null, - "description": "The target attribute specifies a name or a keyword that indicates where to display the response that is received after submitting the form.\nSee [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form#target).", - "name": "target", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - } - ], - "required": false, - "type": { - "name": "\"_blank\" | \"_self\" | \"_parent\" | \"_top\"" - } - }, - "onSubmit": { - "defaultValue": null, - "description": "Triggered when a user submits the form.", - "name": "onSubmit", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - } - ], - "required": false, - "type": { - "name": "((event: FormEvent) => void)" - } - }, - "onReset": { - "defaultValue": null, - "description": "Triggered when a user resets the form.", - "name": "onReset", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - } - ], - "required": false, - "type": { - "name": "((event: FormEvent) => void)" - } - }, - "onInvalid": { - "defaultValue": null, - "description": "Triggered for each invalid field when a user submits the form.", - "name": "onInvalid", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - } - ], - "required": false, - "type": { - "name": "((event: FormEvent) => void)" - } - }, - "autoComplete": { - "defaultValue": null, - "description": "Indicates whether input elements can by default have their values automatically completed by the browser.\nSee [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form#autocomplete).", - "name": "autoComplete", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - } - ], - "required": false, - "type": { - "name": "\"off\" | \"on\"" - } - }, - "autoCapitalize": { - "defaultValue": null, - "description": "Controls whether inputted text is automatically capitalized and, if so, in what manner. \nSee [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/autocapitalize).", - "name": "autoCapitalize", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - } - ], - "required": false, - "type": { - "name": "\"off\" | \"on\" | \"none\" | \"sentences\" | \"words\" | \"characters\"" - } - }, - "role": { - "defaultValue": null, - "description": "An ARIA role override to apply to the form element.", - "name": "role", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+form@3.7.4_react@18.3.1/node_modules/@react-types/form/src/index.d.ts", - "name": "FormProps" - } - ], - "required": false, - "type": { - "name": "\"search\" | \"presentation\"" - } - }, - "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" - } - }, - "children": { - "defaultValue": null, - "description": "The children of the component.", - "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": "DOMProps" - }, - "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": "DOMProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "className": { - "defaultValue": null, - "description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element.", - "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": "StyleProps" - }, - "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": "StyleProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "style": { - "defaultValue": null, - "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element.", - "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": "StyleProps" - }, - "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": "StyleProps" - } - ], - "required": false, - "type": { - "name": "CSSProperties" - } - }, - "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" - } - }, - "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" - } - } - }, - "Grid.tsx": { - "areas": { - "defaultValue": null, - "description": "", - "name": "areas", - "parent": { - "fileName": "marigold/packages/components/src/Grid/Grid.tsx", - "name": "GridProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Grid/Grid.tsx", - "name": "GridProps" - } - ], - "required": true, - "type": { - "name": "string[]" - } - }, - "columns": { - "defaultValue": null, - "description": "", - "name": "columns", - "parent": { - "fileName": "marigold/packages/components/src/Grid/Grid.tsx", - "name": "GridProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Grid/Grid.tsx", - "name": "GridProps" - } - ], - "required": true, - "type": { - "name": "TemplateValue[]" - } - }, - "rows": { - "defaultValue": null, - "description": "", - "name": "rows", - "parent": { - "fileName": "marigold/packages/components/src/Grid/Grid.tsx", - "name": "GridProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Grid/Grid.tsx", - "name": "GridProps" - } - ], - "required": true, - "type": { - "name": "TemplateValue[]" - } - }, - "children": { - "defaultValue": null, - "description": "Children of the layout.", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Grid/Grid.tsx", - "name": "GridProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Grid/Grid.tsx", - "name": "GridProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "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" - } - }, - "height": { - "defaultValue": { - "value": "auto" - }, - "description": "Set the height of the element.", - "name": "height", - "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 ..." - } - } - }, - "GridArea.tsx": { - "name": { - "defaultValue": null, - "description": "", - "name": "name", - "parent": { - "fileName": "marigold/packages/components/src/Grid/GridArea.tsx", - "name": "GridAreaProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Grid/GridArea.tsx", - "name": "GridAreaProps" - } - ], - "required": true, - "type": { - "name": "string" - } - } - }, - "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, - "description": "The children of the component.", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Header/Header.tsx", - "name": "HeaderProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Header/Header.tsx", - "name": "HeaderProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "level": { - "defaultValue": null, - "description": "", - "name": "level", - "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": "HeadingProps" - }, - "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": "HeadingProps" - } - ], - "required": false, - "type": { - "name": "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" - }, - "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" - } - }, - "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" - } - }, - "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" - } - }, - "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": "", - "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" - } - }, - "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": "", - "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" - } - }, - "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": "", - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"none\" | \"search\" | \"text\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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 | \"true\" | \"false\" | \"dialog\" | \"grid\" | \"listbox\" | \"menu\" | \"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": "\"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": "\"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" - } - } - }, - "Image.tsx": { - "children": { - "defaultValue": null, - "description": "The children of the component.", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Image/Image.tsx", - "name": "ImageProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Image/Image.tsx", - "name": "ImageProps" - } - ], - "required": false, - "type": { - "name": "undefined" - } - }, - "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/Image/Image.tsx", - "name": "ImageProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Image/Image.tsx", - "name": "ImageProps" - } - ], - "required": true, - "type": { - "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" - } - }, - "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" - } - }, - "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": "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" - }, - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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": "\"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\" | \"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\" | \"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": "\"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": "\"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" - } - }, - "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\"" - } - }, - "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\"" - } - } - }, - "Input.tsx": { - "icon": { - "defaultValue": null, - "description": "", - "name": "icon", - "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>" - } - }, - "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>" - } - }, - "className": { - "defaultValue": null, - "description": "", - "name": "className", - "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": "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": "", - "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": "\"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, - "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" - }, - "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" - } - }, - "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" - } - }, - "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" - } - }, - "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" - }, - "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", - "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": "", - "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" - } - }, - "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": "", - "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" - } - }, - "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": "", - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"off\" | \"on\"" - } - }, - "inputMode": { - "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", - "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": "\"email\" | \"search\" | \"tel\" | \"text\" | \"url\" | \"none\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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 | \"step\" | \"date\" | \"time\" | \"true\" | \"false\" | \"page\" | \"location\"" - } - }, - "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 | \"true\" | \"false\" | \"dialog\" | \"grid\" | \"listbox\" | \"menu\" | \"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": "\"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": "\"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" - } - }, - "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" - } - }, - "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)" - } - }, - "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" - } - } - }, - "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" - }, - "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" - } - }, - "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" - } - }, - "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" - } - }, - "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" - }, - "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", - "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": "", - "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" - } - }, - "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": "", - "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" - } - }, - "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": "", - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"off\" | \"on\"" - } - }, - "inputMode": { - "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", - "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": "\"email\" | \"tel\" | \"search\" | \"text\" | \"url\" | \"none\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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 | \"step\" | \"date\" | \"time\" | \"true\" | \"false\" | \"page\" | \"location\"" - } - }, - "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 | \"true\" | \"false\" | \"dialog\" | \"grid\" | \"listbox\" | \"menu\" | \"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": "\"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": "\"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" - } - }, - "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" - } - }, - "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" - } - }, - "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" - } - } - }, - "Inline.tsx": { - "alignX": { - "defaultValue": { - "value": "orientation?.horizontal?.alignX" - }, - "description": "Horizontal alignment of the items inside the breakout element.", - "name": "alignX", - "parent": { - "fileName": "marigold/packages/components/src/Inline/Inline.tsx", - "name": "InlineProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Inline/Inline.tsx", - "name": "InlineProps" - } - ], - "required": false, - "type": { - "name": "\"none\" | \"left\" | \"center\" | \"right\"" - } - }, - "alignY": { - "defaultValue": { - "value": "orientation?.horizontal?.alignY" - }, - "description": "Vertical alignment of the items inside the breakout element.", - "name": "alignY", - "parent": { - "fileName": "marigold/packages/components/src/Inline/Inline.tsx", - "name": "InlineProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Inline/Inline.tsx", - "name": "InlineProps" - } - ], - "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" - } - } - }, - "Headline.tsx": { - "color": { - "defaultValue": null, - "description": "Set the color of the headline.", - "name": "color", - "parent": { - "fileName": "marigold/packages/components/src/Headline/Headline.tsx", - "name": "HeadlineProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Headline/Headline.tsx", - "name": "HeadlineProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "level": { - "defaultValue": { - "value": 1 - }, - "description": "Set a different level from theme, values are from 1 - 6.", - "name": "level", - "parent": { - "fileName": "marigold/packages/components/src/Headline/Headline.tsx", - "name": "HeadlineProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Headline/Headline.tsx", - "name": "HeadlineProps" - } - ], - "required": false, - "type": { - "name": "number | \"1\" | \"2\" | \"3\" | \"4\" | \"5\" | \"6\"" - } - }, - "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" - } - }, - "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": "", - "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" - } - }, - "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": "", - "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" - } - }, - "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": "", - "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" - } - }, - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"none\" | \"search\" | \"text\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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": "\"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 | \"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": "\"none\" | \"link\" | \"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 | \"true\" | \"false\" | \"dialog\" | \"grid\" | \"listbox\" | \"menu\" | \"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": "\"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": "\"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": { - "value": "left" - }, - "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": "\"none\" | \"left\" | \"center\" | \"right\"" - } - } - }, - "Inset.tsx": { - "children": { - "defaultValue": null, - "description": "The children of the component", - "name": "children", - "declarations": [ - { - "fileName": "marigold/packages/components/src/Inset/Inset.tsx", - "name": "TypeLiteral" - }, - { - "fileName": "marigold/packages/components/src/Inset/Inset.tsx", - "name": "TypeLiteral" - } - ], - "required": true, - "type": { - "name": "ReactNode" - } - }, - "space": { - "defaultValue": null, - "description": "The space between the children", - "name": "space", - "declarations": [ - { - "fileName": "marigold/packages/components/src/Inset/Inset.tsx", - "name": "TypeLiteral" - }, - { - "fileName": "marigold/packages/components/src/Inset/Inset.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" - } - }, - "spaceX": { - "defaultValue": null, - "description": "Horizontal alignment for the children", - "name": "spaceX", - "declarations": [ - { - "fileName": "marigold/packages/components/src/Inset/Inset.tsx", - "name": "TypeLiteral" - }, - { - "fileName": "marigold/packages/components/src/Inset/Inset.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" - } - }, - "spaceY": { - "defaultValue": null, - "description": "Vertical alignment for the children", - "name": "spaceY", - "declarations": [ - { - "fileName": "marigold/packages/components/src/Inset/Inset.tsx", - "name": "TypeLiteral" - }, - { - "fileName": "marigold/packages/components/src/Inset/Inset.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" - } - } - }, - "Label.tsx": { - "elementType": { - "defaultValue": null, - "description": "", - "name": "elementType", - "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": "LabelProps" - }, - "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": "LabelProps" - } - ], - "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": "LabelHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "LabelHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "htmlFor": { - "defaultValue": null, - "description": "", - "name": "htmlFor", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "LabelHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "LabelHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "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" - } - }, - "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": "", - "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" - } - }, - "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": "", - "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" - } - }, - "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": "", - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"none\" | \"search\" | \"text\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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 | \"true\" | \"false\" | \"dialog\" | \"grid\" | \"listbox\" | \"menu\" | \"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": "\"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": "\"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" - } - } - }, - "List.tsx": { - "as": { - "defaultValue": { - "value": "ul" - }, - "description": "Displaying a unordered or ordered list for showing Information.", - "name": "as", - "parent": { - "fileName": "marigold/packages/components/src/List/List.tsx", - "name": "ListProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/List/List.tsx", - "name": "ListProps" - } - ], - "required": false, - "type": { - "name": "\"ul\" | \"ol\"" - } - }, - "children": { - "defaultValue": null, - "description": "The children of the component.", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/List/List.tsx", - "name": "ListProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/List/List.tsx", - "name": "ListProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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 | \"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\" | \"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\" | \"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": "\"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": "\"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" - } - } - }, - "ListItem.tsx": { - "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" - } - }, - "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": "LiHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "LiHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "string | number | readonly string[]" - } - }, - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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 | \"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\" | \"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\" | \"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": "\"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": "\"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" - } - } - }, - "ListBoxOption.tsx": { - "id": { - "defaultValue": null, - "description": "The unique id of the item.", - "name": "id", - "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": "ListBoxItemProps" - }, - "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": "ListBoxItemProps" - } - ], - "required": false, - "type": { - "name": "Key" - } - }, - "value": { - "defaultValue": null, - "description": "The object value that this item represents. When using dynamic collections, this is set automatically.", - "name": "value", - "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": "ListBoxItemProps" - }, - "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": "ListBoxItemProps" - } - ], - "required": false, - "type": { - "name": "object" - } - }, - "textValue": { - "defaultValue": null, - "description": "A string representation of the item's contents, used for features like typeahead.", - "name": "textValue", - "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": "ListBoxItemProps" - }, - "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": "ListBoxItemProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-label": { - "defaultValue": null, - "description": "An accessibility label for this item.", - "name": "aria-label", - "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": "ListBoxItemProps" - }, - "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": "ListBoxItemProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "isDisabled": { - "defaultValue": null, - "description": "Whether the item is disabled.", - "name": "isDisabled", - "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": "ListBoxItemProps" - }, - "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": "ListBoxItemProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "onAction": { - "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", - "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": "ListBoxItemProps" - }, - "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": "ListBoxItemProps" - } - ], - "required": false, - "type": { - "name": "(() => 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: ListBoxItemRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" - } - }, - "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" - } - }, - "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)" - } - } - }, - "ListBoxSection.tsx": { - "children": { - "defaultValue": null, - "description": "Static child items or a function to render children.", - "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": "SectionProps" - }, - "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": "SectionProps" - } - ], - "required": false, - "type": { - "name": "ReactNode | ((item: object) => ReactElement>)" - } - }, - "aria-label": { - "defaultValue": null, - "description": "An accessibility label for the section.", - "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/collections.d.ts", - "name": "SectionProps" - }, - "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": "SectionProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "items": { - "defaultValue": null, - "description": "Item objects in the section.", - "name": "items", - "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": "SectionProps" - }, - "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": "SectionProps" - } - ], - "required": false, - "type": { - "name": "Iterable" - } - }, - "id": { - "defaultValue": null, - "description": "The unique id of the section.", - "name": "id", - "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": "SectionProps" - }, - "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": "SectionProps" - } - ], - "required": false, - "type": { - "name": "Key" - } - }, - "value": { - "defaultValue": null, - "description": "The object value that this section represents. When using dynamic collections, this is set automatically.", - "name": "value", - "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": "SectionProps" - }, - "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": "SectionProps" - } - ], - "required": false, - "type": { - "name": "object" - } - }, - "dependencies": { - "defaultValue": null, - "description": "Values that should invalidate the item cache when using dynamic collections.", - "name": "dependencies", - "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": "SectionProps" - }, - "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": "SectionProps" - } - ], - "required": false, - "type": { - "name": "any[]" - } - } - }, - "ActionMenu.tsx": { - "disabled": { - "defaultValue": null, - "description": "", - "name": "disabled", - "parent": { - "fileName": "marigold/packages/components/src/Menu/ActionMenu.tsx", - "name": "ActionMenuProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Menu/ActionMenu.tsx", - "name": "ActionMenuProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "autoFocus": { - "defaultValue": null, - "description": "Where the focus should be set.", - "name": "autoFocus", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+menu@3.9.9_react@18.3.1/node_modules/@react-types/menu/src/index.d.ts", - "name": "MenuProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+menu@3.9.9_react@18.3.1/node_modules/@react-types/menu/src/index.d.ts", - "name": "MenuProps" - } - ], - "required": false, - "type": { - "name": "boolean | FocusStrategy" - } - }, - "shouldFocusWrap": { - "defaultValue": null, - "description": "Whether keyboard navigation is circular.", - "name": "shouldFocusWrap", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+menu@3.9.9_react@18.3.1/node_modules/@react-types/menu/src/index.d.ts", - "name": "MenuProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+menu@3.9.9_react@18.3.1/node_modules/@react-types/menu/src/index.d.ts", - "name": "MenuProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "onAction": { - "defaultValue": null, - "description": "Handler that is called when an item is selected.", - "name": "onAction", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+menu@3.9.9_react@18.3.1/node_modules/@react-types/menu/src/index.d.ts", - "name": "MenuProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+menu@3.9.9_react@18.3.1/node_modules/@react-types/menu/src/index.d.ts", - "name": "MenuProps" - } - ], - "required": false, - "type": { - "name": "((key: Key) => void)" - } - }, - "onClose": { - "defaultValue": null, - "description": "Handler that is called when the menu should close after selecting an item.", - "name": "onClose", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+menu@3.9.9_react@18.3.1/node_modules/@react-types/menu/src/index.d.ts", - "name": "MenuProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+menu@3.9.9_react@18.3.1/node_modules/@react-types/menu/src/index.d.ts", - "name": "MenuProps" - } - ], - "required": false, - "type": { - "name": "(() => void)" - } - }, - "items": { - "defaultValue": null, - "description": "Item objects in the collection.", - "name": "items", - "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" - } - }, - "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" - } - }, - "selectionMode": { - "defaultValue": null, - "description": "The type of selection that is allowed in the collection.", - "name": "selectionMode", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "SelectionMode" - } - }, - "disallowEmptySelection": { - "defaultValue": null, - "description": "Whether the collection allows empty selection.", - "name": "disallowEmptySelection", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "selectedKeys": { - "defaultValue": null, - "description": "The currently selected keys in the collection (controlled).", - "name": "selectedKeys", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "Iterable | \"all\"" - } - }, - "defaultSelectedKeys": { - "defaultValue": null, - "description": "The initial selected keys in the collection (uncontrolled).", - "name": "defaultSelectedKeys", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "Iterable | \"all\"" - } - }, - "onSelectionChange": { - "defaultValue": null, - "description": "Handler that is called when the selection changes.", - "name": "onSelectionChange", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "((keys: Selection) => 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" - } - }, - "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" - } - }, - "children": { - "defaultValue": null, - "description": "The contents of the collection.", - "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": "CollectionProps" - }, - "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": "CollectionProps" - } - ], - "required": false, - "type": { - "name": "ReactNode | ((item: object) => ReactNode)" - } - }, - "dependencies": { - "defaultValue": null, - "description": "Values that should invalidate the item cache when using dynamic collections.", - "name": "dependencies", - "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": "CollectionProps" - }, - "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": "CollectionProps" - } - ], - "required": false, - "type": { - "name": "any[]" - } - }, - "className": { - "defaultValue": null, - "description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element.", - "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": "StyleProps" - }, - "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": "StyleProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "style": { - "defaultValue": null, - "description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element.", - "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": "StyleProps" - }, - "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": "StyleProps" - } - ], - "required": false, - "type": { - "name": "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" - } - }, - "onScroll": { - "defaultValue": null, - "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/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/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": "((e: UIEvent) => void)" - } - } - }, - "Menu.tsx": { - "open": { - "defaultValue": { - "value": "false" - }, - "description": "Whether the menu is open.", - "name": "open", - "parent": { - "fileName": "marigold/packages/components/src/Menu/Menu.tsx", - "name": "MenuProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Menu/Menu.tsx", - "name": "MenuProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "placement": { - "defaultValue": { - "value": "'bottom'" - }, - "description": "Placement of the popover.", - "name": "placement", - "parent": { - "fileName": "marigold/packages/components/src/Menu/Menu.tsx", - "name": "MenuProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Menu/Menu.tsx", - "name": "MenuProps" - } - ], - "required": false, - "type": { - "name": "Placement" - } - }, - "label": { - "defaultValue": null, - "description": "The label for the menu trigger button.", - "name": "label", - "parent": { - "fileName": "marigold/packages/components/src/Menu/Menu.tsx", - "name": "MenuProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Menu/Menu.tsx", - "name": "MenuProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "onAction": { - "defaultValue": null, - "description": "Handler that is called when an action is performed on an item.", - "name": "onAction", - "parent": { - "fileName": "marigold/packages/components/src/Menu/Menu.tsx", - "name": "MenuProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Menu/Menu.tsx", - "name": "MenuProps" - } - ], - "required": false, - "type": { - "name": "((key: Key) => void)" - } - }, - "children": { - "defaultValue": null, - "description": "The contents of the menu.", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Menu/Menu.tsx", - "name": "MenuProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Menu/Menu.tsx", - "name": "MenuProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "disabled": { - "defaultValue": null, - "description": "Whether the menu trigger is disabled.", - "name": "disabled", - "parent": { - "fileName": "marigold/packages/components/src/Menu/Menu.tsx", - "name": "MenuProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Menu/Menu.tsx", - "name": "MenuProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "trigger": { - "defaultValue": { - "value": "'press'" - }, - "description": "How the menu is triggered.", - "name": "trigger", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+menu@3.9.9_react@18.3.1/node_modules/@react-types/menu/src/index.d.ts", - "name": "MenuTriggerProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+menu@3.9.9_react@18.3.1/node_modules/@react-types/menu/src/index.d.ts", - "name": "MenuTriggerProps" - } - ], - "required": false, - "type": { - "name": "MenuTriggerType" - } - }, - "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)" - } - }, - "autoFocus": { - "defaultValue": null, - "description": "Where the focus should be set.", - "name": "autoFocus", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+menu@3.9.9_react@18.3.1/node_modules/@react-types/menu/src/index.d.ts", - "name": "MenuProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+menu@3.9.9_react@18.3.1/node_modules/@react-types/menu/src/index.d.ts", - "name": "MenuProps" - } - ], - "required": false, - "type": { - "name": "boolean | FocusStrategy" - } - }, - "shouldFocusWrap": { - "defaultValue": null, - "description": "Whether keyboard navigation is circular.", - "name": "shouldFocusWrap", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+menu@3.9.9_react@18.3.1/node_modules/@react-types/menu/src/index.d.ts", - "name": "MenuProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+menu@3.9.9_react@18.3.1/node_modules/@react-types/menu/src/index.d.ts", - "name": "MenuProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "onClose": { - "defaultValue": null, - "description": "Handler that is called when the menu should close after selecting an item.", - "name": "onClose", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+menu@3.9.9_react@18.3.1/node_modules/@react-types/menu/src/index.d.ts", - "name": "MenuProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+menu@3.9.9_react@18.3.1/node_modules/@react-types/menu/src/index.d.ts", - "name": "MenuProps" - } - ], - "required": false, - "type": { - "name": "(() => void)" - } - }, - "items": { - "defaultValue": null, - "description": "Item objects in the collection.", - "name": "items", - "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" - } - }, - "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" - } - }, - "selectionMode": { - "defaultValue": null, - "description": "The type of selection that is allowed in the collection.", - "name": "selectionMode", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "SelectionMode" - } - }, - "disallowEmptySelection": { - "defaultValue": null, - "description": "Whether the collection allows empty selection.", - "name": "disallowEmptySelection", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "selectedKeys": { - "defaultValue": null, - "description": "The currently selected keys in the collection (controlled).", - "name": "selectedKeys", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "Iterable | \"all\"" - } - }, - "defaultSelectedKeys": { - "defaultValue": null, - "description": "The initial selected keys in the collection (uncontrolled).", - "name": "defaultSelectedKeys", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "Iterable | \"all\"" - } - }, - "onSelectionChange": { - "defaultValue": null, - "description": "Handler that is called when the selection changes.", - "name": "onSelectionChange", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "((keys: Selection) => 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" - } - }, - "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" - } - }, - "dependencies": { - "defaultValue": null, - "description": "Values that should invalidate the item cache when using dynamic collections.", - "name": "dependencies", - "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": "CollectionProps" - }, - "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": "CollectionProps" - } - ], - "required": false, - "type": { - "name": "any[]" - } - }, - "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" - } - }, - "onScroll": { - "defaultValue": null, - "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/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/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": "((e: UIEvent) => void)" - } - } - }, - "MenuItem.tsx": { - "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: MenuItemRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" - } - }, - "id": { - "defaultValue": null, - "description": "The unique id of the item.", - "name": "id", - "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": "MenuItemProps" - }, - "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": "MenuItemProps" - } - ], - "required": false, - "type": { - "name": "Key" - } - }, - "value": { - "defaultValue": null, - "description": "The object value that this item represents. When using dynamic collections, this is set automatically.", - "name": "value", - "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": "MenuItemProps" - }, - "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": "MenuItemProps" - } - ], - "required": false, - "type": { - "name": "object" - } - }, - "textValue": { - "defaultValue": null, - "description": "A string representation of the item's contents, used for features like typeahead.", - "name": "textValue", - "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": "MenuItemProps" - }, - "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": "MenuItemProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-label": { - "defaultValue": null, - "description": "An accessibility label for this item.", - "name": "aria-label", - "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": "MenuItemProps" - }, - "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": "MenuItemProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "isDisabled": { - "defaultValue": null, - "description": "Whether the item is disabled.", - "name": "isDisabled", - "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": "MenuItemProps" - }, - "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": "MenuItemProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "onAction": { - "defaultValue": null, - "description": "Handler that is called when the item is selected.", - "name": "onAction", - "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": "MenuItemProps" - }, - "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": "MenuItemProps" - } - ], - "required": false, - "type": { - "name": "(() => 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" - } - }, - "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)" - } - } - }, - "MenuSection.tsx": { - "title": { - "defaultValue": null, - "description": "", - "name": "title", - "parent": { - "fileName": "marigold/packages/components/src/Menu/MenuSection.tsx", - "name": "MenuSectionProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Menu/MenuSection.tsx", - "name": "MenuSectionProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-label": { - "defaultValue": null, - "description": "An accessibility label for the section.", - "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/collections.d.ts", - "name": "SectionProps" - }, - "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": "SectionProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "items": { - "defaultValue": null, - "description": "Item objects in the section.", - "name": "items", - "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": "SectionProps" - }, - "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": "SectionProps" - } - ], - "required": false, - "type": { - "name": "Iterable" - } - }, - "id": { - "defaultValue": null, - "description": "The unique id of the section.", - "name": "id", - "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": "SectionProps" - }, - "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": "SectionProps" - } - ], - "required": false, - "type": { - "name": "Key" - } - }, - "value": { - "defaultValue": null, - "description": "The object value that this section represents. When using dynamic collections, this is set automatically.", - "name": "value", - "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": "SectionProps" - }, - "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": "SectionProps" - } - ], - "required": false, - "type": { - "name": "object" - } - }, - "dependencies": { - "defaultValue": null, - "description": "Values that should invalidate the item cache when using dynamic collections.", - "name": "dependencies", - "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": "SectionProps" - }, - "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": "SectionProps" - } - ], - "required": false, - "type": { - "name": "any[]" - } - } - }, - "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" - } - } - }, - "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", - "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)" - } - }, - "value": { - "defaultValue": null, - "description": "The current value (controlled).", - "name": "value", - "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": "number" - } - }, - "defaultValue": { - "defaultValue": null, - "description": "The default value (uncontrolled).", - "name": "defaultValue", - "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": "number" - } - }, - "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: number) => void)" - } - }, - "minValue": { - "defaultValue": null, - "description": "The smallest value allowed for the input.", - "name": "minValue", - "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": "RangeInputBase" - }, - "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": "RangeInputBase" - } - ], - "required": false, - "type": { - "name": "number" - } - }, - "maxValue": { - "defaultValue": null, - "description": "The largest value allowed for the input.", - "name": "maxValue", - "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": "RangeInputBase" - }, - "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": "RangeInputBase" - } - ], - "required": false, - "type": { - "name": "number" - } - }, - "step": { - "defaultValue": null, - "description": "The amount that the input value changes with each increment or decrement \"tick\".", - "name": "step", - "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": "RangeInputBase" - }, - "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": "RangeInputBase" - } - ], - "required": false, - "type": { - "name": "number" - } - }, - "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" - } - }, - "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" - } - }, - "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" - } - }, - "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" - } - }, - "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" - } - } - }, - "StepButton.tsx": { - "direction": { - "defaultValue": null, - "description": "", - "name": "direction", - "parent": { - "fileName": "marigold/packages/components/src/NumberField/StepButton.tsx", - "name": "StepButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/NumberField/StepButton.tsx", - "name": "StepButtonProps" - } - ], - "required": true, - "type": { - "name": "\"up\" | \"down\"" - } - }, - "className": { - "defaultValue": null, - "description": "", - "name": "className", - "parent": { - "fileName": "marigold/packages/components/src/NumberField/StepButton.tsx", - "name": "StepButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/NumberField/StepButton.tsx", - "name": "StepButtonProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "slot": { - "defaultValue": null, - "description": "", - "name": "slot", - "parent": { - "fileName": "marigold/packages/components/src/NumberField/StepButton.tsx", - "name": "StepButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/NumberField/StepButton.tsx", - "name": "StepButtonProps" - } - ], - "required": true, - "type": { - "name": "\"decrement\" | \"increment\"" - } - }, - "isDisabled": { - "defaultValue": null, - "description": "Whether the button is disabled.", - "name": "isDisabled", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "ButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "ButtonProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "children": { - "defaultValue": null, - "description": "The content to display in the button.", - "name": "children", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "ButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "ButtonProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "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 if elementType=\"a\".", - "name": "href", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "LinkButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "LinkButtonProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "target": { - "defaultValue": null, - "description": "The target window for the link.", - "name": "target", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "LinkButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "LinkButtonProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "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+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "LinkButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "LinkButtonProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "elementType": { - "defaultValue": { - "value": "'button'" - }, - "description": "The HTML element or React element used to render the button, e.g. 'div', 'a', or `RouterLink`.", - "name": "elementType", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaButtonElementTypeProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaButtonElementTypeProps" - } - ], - "required": false, - "type": { - "name": "\"button\" | JSXElementConstructor" - } - }, - "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/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - } - ], - "required": false, - "type": { - "name": "boolean | \"true\" | \"false\"" - } - }, - "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+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - } - ], - "required": false, - "type": { - "name": "boolean | \"true\" | \"false\" | \"menu\" | \"listbox\" | \"tree\" | \"grid\" | \"dialog\"" - } - }, - "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+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "aria-pressed": { - "defaultValue": null, - "description": "Indicates the current \"pressed\" state of toggle buttons.", - "name": "aria-pressed", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - } - ], - "required": false, - "type": { - "name": "boolean | \"true\" | \"false\" | \"mixed\"" - } - }, - "type": { - "defaultValue": { - "value": "'button'" - }, - "description": "The behavior of the button when used in an HTML form.", - "name": "type", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+button@3.9.4_react@18.3.1/node_modules/@react-types/button/src/index.d.ts", - "name": "AriaBaseButtonProps" - } - ], - "required": false, - "type": { - "name": "\"button\" | \"submit\" | \"reset\"" - } - }, - "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" - } - }, - "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" - } - } - }, - "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" - } - } - }, - "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" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Overlay/Popover.tsx", - "name": "PopoverProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "open": { - "defaultValue": null, - "description": "", - "name": "open", - "parent": { - "fileName": "marigold/packages/components/src/Overlay/Popover.tsx", - "name": "PopoverProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Overlay/Popover.tsx", - "name": "PopoverProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "container": { - "defaultValue": null, - "description": "", - "name": "container", - "parent": { - "fileName": "marigold/packages/components/src/Overlay/Popover.tsx", - "name": "PopoverProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Overlay/Popover.tsx", - "name": "PopoverProps" - } - ], - "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": "8" - }, - "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-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": "PopoverProps" - }, - "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": "PopoverProps" - } - ], - "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" - } - }, - "triggerRef": { - "defaultValue": null, - "description": "The ref for the element which the popover positions itself with respect to.\n\nWhen used within a trigger component such as DialogTrigger, MenuTrigger, Select, etc.,\nthis 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": "PopoverProps" - }, - "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": "PopoverProps" - } - ], - "required": false, - "type": { - "name": "RefObject" - } - }, - "boundaryElement": { - "defaultValue": { - "value": "document.body" - }, - "description": "Element that that serves as the positioning boundary.", - "name": "boundaryElement", - "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": "Element" - } - }, - "scrollRef": { - "defaultValue": { - "value": "overlayRef" - }, - "description": "A ref for the scrollable region within the overlay.", - "name": "scrollRef", - "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": "RefObject" - } - }, - "shouldUpdatePosition": { - "defaultValue": { - "value": "true" - }, - "description": "Whether the overlay should update its position automatically.", - "name": "shouldUpdatePosition", - "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": "boolean" - } - }, - "maxHeight": { - "defaultValue": null, - "description": "The maxHeight specified for the overlay element.\nBy default, it will take all space up to the current viewport height.", - "name": "maxHeight", - "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" - } - }, - "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" - } - }, - "isNonModal": { - "defaultValue": null, - "description": "Whether the popover is non-modal, i.e. elements outside the popover may be\ninteracted with by assistive technologies.\n\nMost popovers should not use this option as it may negatively impact the screen\nreader experience. Only use with components such as combobox, which are designed\nto handle this situation carefully.", - "name": "isNonModal", - "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": "AriaPopoverProps" - }, - "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": "AriaPopoverProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "shouldCloseOnInteractOutside": { - "defaultValue": null, - "description": "When user interacts with the argument element outside of the popover ref,\nreturn true if onClose should be called. This gives you a chance to filter\nout interaction with elements that should not dismiss the popover.\nBy default, onClose will always be called on interaction outside the popover 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": "AriaPopoverProps" - }, - "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": "AriaPopoverProps" - } - ], - "required": false, - "type": { - "name": "((element: Element) => boolean)" - } - }, - "trigger": { - "defaultValue": null, - "description": "The name of the component that triggered the popover. This is reflected on the element\nas the `data-trigger` attribute, and can be used to provide specific\nstyles for the popover depending on which element triggered it.", - "name": "trigger", - "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": "PopoverProps" - }, - "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": "PopoverProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "isEntering": { - "defaultValue": null, - "description": "Whether the popover 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": "PopoverProps" - }, - "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": "PopoverProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "isExiting": { - "defaultValue": null, - "description": "Whether the popover 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": "PopoverProps" - }, - "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": "PopoverProps" - } - ], - "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": "PopoverProps" - }, - "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": "PopoverProps" - } - ], - "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: PopoverRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" - } - }, - "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" - } - } - }, - "Underlay.tsx": { - "open": { - "defaultValue": null, - "description": "", - "name": "open", - "parent": { - "fileName": "marigold/packages/components/src/Overlay/Underlay.tsx", - "name": "UnderlayProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Overlay/Underlay.tsx", - "name": "UnderlayProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "dismissable": { - "defaultValue": null, - "description": "", - "name": "dismissable", - "parent": { - "fileName": "marigold/packages/components/src/Overlay/Underlay.tsx", - "name": "UnderlayProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Overlay/Underlay.tsx", - "name": "UnderlayProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "keyboardDismissable": { - "defaultValue": null, - "description": "", - "name": "keyboardDismissable", - "parent": { - "fileName": "marigold/packages/components/src/Overlay/Underlay.tsx", - "name": "UnderlayProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Overlay/Underlay.tsx", - "name": "UnderlayProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "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)" - } - }, - "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" - } - } - }, - "MarigoldProvider.tsx": { - "theme": { - "defaultValue": null, - "description": "The theme that should be used within the provider context.", - "name": "theme", - "parent": { - "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", - "name": "ThemeProviderProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", - "name": "ThemeProviderProps" - } - ], - "required": true, - "type": { - "name": "Theme" - } - }, - "children": { - "defaultValue": null, - "description": "The children of the component.", - "name": "children", - "parent": { - "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", - "name": "ThemeProviderProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", - "name": "ThemeProviderProps" - } - ], - "required": true, - "type": { - "name": "ReactNode" - } - }, - "className": { - "defaultValue": null, - "description": "Additional class names to apply to the root element of the provider.", - "name": "className", - "parent": { - "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", - "name": "ThemeProviderProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", - "name": "ThemeProviderProps" - } - ], - "required": false, - "type": { - "name": "string" - } - } - }, - "OverlayContainerProvider.tsx": { - "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": "ProviderProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "ProviderProps" - } - ], - "required": true, - "type": { - "name": "string | undefined" - } - } - }, - "Radio.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/Radio/Radio.tsx", - "name": "RadioProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Radio/Radio.tsx", - "name": "RadioProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "Set the radio disabled.", - "name": "disabled", - "parent": { - "fileName": "marigold/packages/components/src/Radio/Radio.tsx", - "name": "RadioProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Radio/Radio.tsx", - "name": "RadioProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "value": { - "defaultValue": null, - "description": "The value of the radio button, used when submitting an HTML form.\nSee [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/radio#Value).", - "name": "value", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+radio@3.8.1_react@18.3.1/node_modules/@react-types/radio/src/index.d.ts", - "name": "RadioProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+radio@3.8.1_react@18.3.1/node_modules/@react-types/radio/src/index.d.ts", - "name": "RadioProps" - } - ], - "required": true, - "type": { - "name": "string" - } - }, - "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)" - } - }, - "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" - } - }, - "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" - } - }, - "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" - } - }, - "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" - } - }, - "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)" - } - }, - "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": "RadioProps" - }, - "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": "RadioProps" - } - ], - "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)" - } - }, - "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" - } - } - }, - "RadioGroup.tsx": { - "label": { - "defaultValue": { - "value": "none" - }, - "description": "Set the label of the radio group.", - "name": "label", - "parent": { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "description": { - "defaultValue": { - "value": "none" - }, - "description": "Set the radio group help text.", - "name": "description", - "parent": { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "errorMessage": { - "defaultValue": { - "value": "none" - }, - "description": "Set the radio group error message if an error occurs.", - "name": "errorMessage", - "parent": { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "children": { - "defaultValue": null, - "description": "The children elements of the radio group.", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - } - ], - "required": true, - "type": { - "name": "ReactNode[]" - } - }, - "width": { - "defaultValue": { - "value": "100%" - }, - "description": "Control the width of the field.", - "name": "width", - "parent": { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - } - ], - "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 ..." - } - }, - "error": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the radio group is considered invalid and if set the `errorMessage` is shown.", - "name": "error", - "parent": { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "required": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the radio group is required.", - "name": "required", - "parent": { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the radio group is disabled.", - "name": "disabled", - "parent": { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "readOnly": { - "defaultValue": { - "value": "false" - }, - "description": "Set the radio group as read-only.", - "name": "readOnly", - "parent": { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "value": { - "defaultValue": null, - "description": "The selected value of the radio group.", - "name": "value", - "parent": { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "orientation": { - "defaultValue": { - "value": "vertical" - }, - "description": "Set the radio group direction.", - "name": "orientation", - "parent": { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Radio/RadioGroup.tsx", - "name": "RadioGroupProps" - } - ], - "required": false, - "type": { - "name": "\"horizontal\" | \"vertical\"" - } - }, - "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\"" - } - }, - "defaultValue": { - "defaultValue": null, - "description": "The default value (uncontrolled).", - "name": "defaultValue", - "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": "string | null" - } - }, - "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)" - } - }, - "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" - } - }, - "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" - } - }, - "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 | null) => true | ValidationError | null)" - } - }, - "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)" - } - }, - "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" - } - }, - "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" - } - }, - "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" - } - } - }, - "RouterProvider.tsx": { - "navigate": { - "defaultValue": null, - "description": "", - "name": "navigate", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-aria+utils@3.24.1_react@18.3.1/node_modules/@react-aria/utils/dist/types.d.ts", - "name": "RouterProviderProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-aria+utils@3.24.1_react@18.3.1/node_modules/@react-aria/utils/dist/types.d.ts", - "name": "RouterProviderProps" - } - ], - "required": true, - "type": { - "name": "(path: string, routerOptions: undefined) => void" - } - }, - "useHref": { - "defaultValue": null, - "description": "", - "name": "useHref", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-aria+utils@3.24.1_react@18.3.1/node_modules/@react-aria/utils/dist/types.d.ts", - "name": "RouterProviderProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-aria+utils@3.24.1_react@18.3.1/node_modules/@react-aria/utils/dist/types.d.ts", - "name": "RouterProviderProps" - } - ], - "required": false, - "type": { - "name": "((href: string) => string)" - } - } - }, - "Scrollable.tsx": { - "height": { - "defaultValue": null, - "description": "", - "name": "height", - "parent": { - "fileName": "marigold/packages/components/src/Scrollable/Scrollable.tsx", - "name": "ScrollableProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Scrollable/Scrollable.tsx", - "name": "ScrollableProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "width": { - "defaultValue": { - "value": "full" - }, - "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 ..." - } - } - }, - "SearchField.tsx": { - "icon": { - "defaultValue": null, - "description": "Icon element to display in the search field.", - "name": "icon", - "parent": { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - } - ], - "required": false, - "type": { - "name": "ReactElement>" - } - }, - "action": { - "defaultValue": null, - "description": "Action element to display in the search field.", - "name": "action", - "parent": { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - } - ], - "required": false, - "type": { - "name": "ReactElement>" - } - }, - "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/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - } - ], - "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 ..." - } - }, - "error": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the input is considered invalid and if set the `errorMessage` is shown instead of the `description`.", - "name": "error", - "parent": { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the input is disabled.", - "name": "disabled", - "parent": { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "required": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the input is required.", - "name": "required", - "parent": { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "readOnly": { - "defaultValue": { - "value": "false" - }, - "description": "If `true`, the input is readOnly.", - "name": "readOnly", - "parent": { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "value": { - "defaultValue": { - "value": "none" - }, - "description": "The current value of the input field.", - "name": "value", - "parent": { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - } - ], - "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/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "placeholder": { - "defaultValue": { - "value": "none" - }, - "description": "Placeholder text for the input field.", - "name": "placeholder", - "parent": { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/SearchField/SearchField.tsx", - "name": "SearchFieldProps" - } - ], - "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\"" - } - }, - "onSubmit": { - "defaultValue": null, - "description": "Handler that is called when the SearchField is submitted.", - "name": "onSubmit", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+searchfield@3.5.5_react@18.3.1/node_modules/@react-types/searchfield/src/index.d.ts", - "name": "SearchFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+searchfield@3.5.5_react@18.3.1/node_modules/@react-types/searchfield/src/index.d.ts", - "name": "SearchFieldProps" - } - ], - "required": false, - "type": { - "name": "((value: string) => void)" - } - }, - "onClear": { - "defaultValue": null, - "description": "Handler that is called when the clear button is pressed.", - "name": "onClear", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+searchfield@3.5.5_react@18.3.1/node_modules/@react-types/searchfield/src/index.d.ts", - "name": "SearchFieldProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+searchfield@3.5.5_react@18.3.1/node_modules/@react-types/searchfield/src/index.d.ts", - "name": "SearchFieldProps" - } - ], - "required": false, - "type": { - "name": "(() => void)" - } - }, - "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-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\"" - } - }, - "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" - } - } - }, - "Select.tsx": { - "label": { - "defaultValue": null, - "description": "Set a label for the select.", - "name": "label", - "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "description": { - "defaultValue": null, - "description": "Set a description for the select.", - "name": "description", - "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "errorMessage": { - "defaultValue": null, - "description": "Set a error message for the select.", - "name": "errorMessage", - "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - } - ], - "required": false, - "type": { - "name": "string | ((validation: ValidationResult) => string)" - } - }, - "items": { - "defaultValue": null, - "description": "Items of the select.", - "name": "items", - "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - } - ], - "required": false, - "type": { - "name": "Iterable" - } - }, - "children": { - "defaultValue": null, - "description": "Children of the select.", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - } - ], - "required": true, - "type": { - "name": "ReactNode | ((item: object) => ReactNode)" - } - }, - "width": { - "defaultValue": null, - "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/Select/Select.tsx", - "name": "SelectProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - } - ], - "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 ..." - } - }, - "required": { - "defaultValue": { - "value": "false" - }, - "description": "If the select should be required.", - "name": "required", - "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "If the select should be disabled.", - "name": "disabled", - "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "open": { - "defaultValue": { - "value": "false" - }, - "description": "If the select list should be open.", - "name": "open", - "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "error": { - "defaultValue": { - "value": "false" - }, - "description": "If the select should throw an error.", - "name": "error", - "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "onChange": { - "defaultValue": null, - "description": "Handler that is called when the selection changes.", - "name": "onChange", - "parent": { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Select/Select.tsx", - "name": "SelectProps" - } - ], - "required": false, - "type": { - "name": "((key: Key) => 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", - "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\"" - } - }, - "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" - } - }, - "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+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/@react-types+select@3.9.4_react@18.3.1/node_modules/@react-types/select/src/index.d.ts", - "name": "AriaSelectProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "name": { - "defaultValue": null, - "description": "The name of the input, used when submitting an HTML form.", - "name": "name", - "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" - }, - "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" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "defaultOpen": { - "defaultValue": null, - "description": "Sets the default open state of the menu.", - "name": "defaultOpen", - "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" - }, - "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" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "onOpenChange": { - "defaultValue": null, - "description": "Method that is called when the open state of the menu changes.", - "name": "onOpenChange", - "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" - }, - "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" - } - ], - "required": false, - "type": { - "name": "((isOpen: boolean) => void)" - } - }, - "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" - } - }, - "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: Key) => true | ValidationError | null)" - } - }, - "placeholder": { - "defaultValue": null, - "description": "Temporary text that occupies the text input when it is empty.", - "name": "placeholder", - "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" - }, - "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" - } - ], - "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)" - } - }, - "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" - } - }, - "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" - } - }, - "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" - } - } - }, - "Slider.tsx": { - "thumbLabels": { - "defaultValue": null, - "description": "Labels for the thumbs in the slider.", - "name": "thumbLabels", - "parent": { - "fileName": "marigold/packages/components/src/Slider/Slider.tsx", - "name": "SliderProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Slider/Slider.tsx", - "name": "SliderProps" - } - ], - "required": false, - "type": { - "name": "string[]" - } - }, - "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/Slider/Slider.tsx", - "name": "SliderProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Slider/Slider.tsx", - "name": "SliderProps" - } - ], - "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/Slider/Slider.tsx", - "name": "SliderProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Slider/Slider.tsx", - "name": "SliderProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "orientation": { - "defaultValue": { - "value": "'horizontal'" - }, - "description": "The orientation of the Slider.", - "name": "orientation", - "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" - }, - "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" - } - ], - "required": false, - "type": { - "name": "Orientation" - } - }, - "onChangeEnd": { - "defaultValue": null, - "description": "Fired when the slider stops moving, due to being let go.", - "name": "onChangeEnd", - "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" - }, - "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" - } - ], - "required": false, - "type": { - "name": "((value: number | number[]) => void)" - } - }, - "minValue": { - "defaultValue": { - "value": "0" - }, - "description": "The slider's minimum value.", - "name": "minValue", - "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" - }, - "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" - } - ], - "required": false, - "type": { - "name": "number" - } - }, - "maxValue": { - "defaultValue": { - "value": "100" - }, - "description": "The slider's maximum value.", - "name": "maxValue", - "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" - }, - "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" - } - ], - "required": false, - "type": { - "name": "number" - } - }, - "step": { - "defaultValue": { - "value": "1" - }, - "description": "The slider's step value.", - "name": "step", - "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" - }, - "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" - } - ], - "required": false, - "type": { - "name": "number" - } - }, - "value": { - "defaultValue": null, - "description": "The current value (controlled).", - "name": "value", - "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": "number | number[]" - } - }, - "defaultValue": { - "defaultValue": null, - "description": "The default value (uncontrolled).", - "name": "defaultValue", - "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": "number | number[]" - } - }, - "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: number | number[]) => 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" - } - }, - "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" - } - }, - "formatOptions": { - "defaultValue": null, - "description": "The display format of the value label.", - "name": "formatOptions", - "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" - }, - "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" - } - ], - "required": false, - "type": { - "name": "NumberFormatOptions" - } - }, - "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: SliderRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" - } - }, - "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: SliderRenderProps & { 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: SliderRenderProps & { 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" - } - } - }, - "SelectList.tsx": { - "onChange": { - "defaultValue": null, - "description": "Handler that is called when the selection change.", - "name": "onChange", - "parent": { - "fileName": "marigold/packages/components/src/SelectList/SelectList.tsx", - "name": "SelectListProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/SelectList/SelectList.tsx", - "name": "SelectListProps" - } - ], - "required": false, - "type": { - "name": "((keys: Selection) => void) | Dispatch" - } - }, - "children": { - "defaultValue": null, - "description": "The contents of the collection.", - "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": "CollectionProps" - }, - "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": "CollectionProps" - } - ], - "required": false, - "type": { - "name": "ReactNode | ((item: object) => ReactNode)" - } - }, - "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" - } - }, - "onAction": { - "defaultValue": null, - "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/@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/@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": "((key: Key) => void)" - } - }, - "disabledBehavior": { - "defaultValue": null, - "description": "Whether `disabledKeys` applies to all interactions, or only selection.", - "name": "disabledBehavior", - "parent": { - "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/@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": "DisabledBehavior" - } - }, - "items": { - "defaultValue": null, - "description": "Item objects in the collection.", - "name": "items", - "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" - } - }, - "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" - } - }, - "selectionMode": { - "defaultValue": null, - "description": "The type of selection that is allowed in the collection.", - "name": "selectionMode", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "SelectionMode" - } - }, - "disallowEmptySelection": { - "defaultValue": null, - "description": "Whether the collection allows empty selection.", - "name": "disallowEmptySelection", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "selectedKeys": { - "defaultValue": null, - "description": "The currently selected keys in the collection (controlled).", - "name": "selectedKeys", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "\"all\" | Iterable" - } - }, - "defaultSelectedKeys": { - "defaultValue": null, - "description": "The initial selected keys in the collection (uncontrolled).", - "name": "defaultSelectedKeys", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "\"all\" | Iterable" - } - }, - "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" - } - }, - "selectionBehavior": { - "defaultValue": null, - "description": "How multiple selection should behave in the collection.", - "name": "selectionBehavior", - "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": "GridListProps" - }, - "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": "GridListProps" - } - ], - "required": false, - "type": { - "name": "SelectionBehavior" - } - }, - "dragAndDropHooks": { - "defaultValue": null, - "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/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/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": "DragAndDropHooks" - } - }, - "renderEmptyState": { - "defaultValue": null, - "description": "Provides content to display when there are no items in the list.", - "name": "renderEmptyState", - "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": "GridListProps" - }, - "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": "GridListProps" - } - ], - "required": false, - "type": { - "name": "((props: GridListRenderProps) => ReactNode)" - } - }, - "dependencies": { - "defaultValue": null, - "description": "Values that should invalidate the item cache when using dynamic collections.", - "name": "dependencies", - "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": "CollectionProps" - }, - "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": "CollectionProps" - } - ], - "required": false, - "type": { - "name": "any[]" - } - }, - "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" - } - }, - "onScroll": { - "defaultValue": null, - "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/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/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": "((e: UIEvent) => void)" - } - }, - "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" - } - } - }, - "SelectListItem.tsx": { - "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: GridListItemRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" - } - }, - "id": { - "defaultValue": null, - "description": "The unique id of the item.", - "name": "id", - "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" - }, - "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" - } - ], - "required": false, - "type": { - "name": "Key" - } - }, - "value": { - "defaultValue": null, - "description": "The object value that this item represents. When using dynamic collections, this is set automatically.", - "name": "value", - "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" - }, - "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" - } - ], - "required": false, - "type": { - "name": "object" - } - }, - "textValue": { - "defaultValue": null, - "description": "A string representation of the item's contents, used for features like typeahead.", - "name": "textValue", - "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" - }, - "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" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "isDisabled": { - "defaultValue": null, - "description": "Whether the item is disabled.", - "name": "isDisabled", - "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" - }, - "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" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "onAction": { - "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", - "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" - }, - "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" - } - ], - "required": false, - "type": { - "name": "(() => 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" - } - }, - "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)" - } - }, - "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" - } - } - }, - "Split.tsx": { - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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 | \"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\" | \"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\" | \"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": "\"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": "\"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" - } - } - }, - "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": "", - "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": { - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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 | \"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\" | \"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\" | \"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": "\"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": "\"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" - } - } - }, - "SectionMessageContent.tsx": {}, - "SectionMessageTitle.tsx": {}, - "Table.tsx": { - "stretch": { - "defaultValue": { - "value": false - }, - "description": "Stretch table to fill the container.", - "name": "stretch", - "parent": { - "fileName": "marigold/packages/components/src/Table/Table.tsx", - "name": "TableProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Table/Table.tsx", - "name": "TableProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "stickyHeader": { - "defaultValue": { - "value": "true" - }, - "description": "Make the column sticky to the top of the table.", - "name": "stickyHeader", - "parent": { - "fileName": "marigold/packages/components/src/Table/Table.tsx", - "name": "TableProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Table/Table.tsx", - "name": "TableProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "disableKeyboardNavigation": { - "defaultValue": { - "value": false - }, - "description": "Disable keyboard navigation. Use if you have input fields in your table. Be aware that this is bad for accessibility.", - "name": "disableKeyboardNavigation", - "parent": { - "fileName": "marigold/packages/components/src/Table/Table.tsx", - "name": "TableProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Table/Table.tsx", - "name": "TableProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "focusMode": { - "defaultValue": { - "value": "'row'" - }, - "description": "Whether initial grid focus should be placed on the grid row or grid cell.", - "name": "focusMode", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-aria+grid@3.9.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/grid/dist/types.d.ts", - "name": "GridProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-aria+grid@3.9.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/grid/dist/types.d.ts", - "name": "GridProps" - } - ], - "required": false, - "type": { - "name": "\"row\" | \"cell\"" - } - }, - "onRowAction": { - "defaultValue": null, - "description": "Handler that is called when a user performs an action on the row.", - "name": "onRowAction", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-aria+grid@3.9.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/grid/dist/types.d.ts", - "name": "GridProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-aria+grid@3.9.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/grid/dist/types.d.ts", - "name": "GridProps" - } - ], - "required": false, - "type": { - "name": "((key: Key) => void)" - } - }, - "onCellAction": { - "defaultValue": null, - "description": "Handler that is called when a user performs an action on the cell.", - "name": "onCellAction", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-aria+grid@3.9.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/grid/dist/types.d.ts", - "name": "GridProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-aria+grid@3.9.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/grid/dist/types.d.ts", - "name": "GridProps" - } - ], - "required": false, - "type": { - "name": "((key: Key) => void)" - } - }, - "children": { - "defaultValue": null, - "description": "The elements that make up the table. Includes the TableHeader, TableBody, Columns, and Rows.", - "name": "children", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-stately+table@3.11.8_react@18.3.1/node_modules/@react-stately/table/dist/types.d.ts", - "name": "TableStateProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-stately+table@3.11.8_react@18.3.1/node_modules/@react-stately/table/dist/types.d.ts", - "name": "TableStateProps" - } - ], - "required": false, - "type": { - "name": "[ReactElement, string | JSXElementConstructor>, ReactElement, string | JSXElementConstructor<...>>]" - } - }, - "disabledKeys": { - "defaultValue": null, - "description": "A list of row keys to disable.", - "name": "disabledKeys", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-stately+table@3.11.8_react@18.3.1/node_modules/@react-stately/table/dist/types.d.ts", - "name": "TableStateProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-stately+table@3.11.8_react@18.3.1/node_modules/@react-stately/table/dist/types.d.ts", - "name": "TableStateProps" - } - ], - "required": false, - "type": { - "name": "Iterable" - } - }, - "collection": { - "defaultValue": null, - "description": "A pre-constructed collection to use instead of building one from items and children.", - "name": "collection", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-stately+table@3.11.8_react@18.3.1/node_modules/@react-stately/table/dist/types.d.ts", - "name": "TableStateProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-stately+table@3.11.8_react@18.3.1/node_modules/@react-stately/table/dist/types.d.ts", - "name": "TableStateProps" - } - ], - "required": false, - "type": { - "name": "TableCollection" - } - }, - "showDragButtons": { - "defaultValue": null, - "description": "Whether the row drag button should be displayed.\n@private", - "name": "showDragButtons", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-stately+table@3.11.8_react@18.3.1/node_modules/@react-stately/table/dist/types.d.ts", - "name": "TableStateProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-stately+table@3.11.8_react@18.3.1/node_modules/@react-stately/table/dist/types.d.ts", - "name": "TableStateProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "selectionBehavior": { - "defaultValue": null, - "description": "How multiple selection should behave in the collection.", - "name": "selectionBehavior", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-stately+selection@3.15.1_react@18.3.1/node_modules/@react-stately/selection/dist/types.d.ts", - "name": "MultipleSelectionStateProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-stately+selection@3.15.1_react@18.3.1/node_modules/@react-stately/selection/dist/types.d.ts", - "name": "MultipleSelectionStateProps" - } - ], - "required": false, - "type": { - "name": "SelectionBehavior" - } - }, - "allowDuplicateSelectionEvents": { - "defaultValue": null, - "description": "Whether onSelectionChange should fire even if the new set of keys is the same as the last.", - "name": "allowDuplicateSelectionEvents", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-stately+selection@3.15.1_react@18.3.1/node_modules/@react-stately/selection/dist/types.d.ts", - "name": "MultipleSelectionStateProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-stately+selection@3.15.1_react@18.3.1/node_modules/@react-stately/selection/dist/types.d.ts", - "name": "MultipleSelectionStateProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "disabledBehavior": { - "defaultValue": null, - "description": "Whether `disabledKeys` applies to all interactions, or only selection.", - "name": "disabledBehavior", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-stately+selection@3.15.1_react@18.3.1/node_modules/@react-stately/selection/dist/types.d.ts", - "name": "MultipleSelectionStateProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-stately+selection@3.15.1_react@18.3.1/node_modules/@react-stately/selection/dist/types.d.ts", - "name": "MultipleSelectionStateProps" - } - ], - "required": false, - "type": { - "name": "DisabledBehavior" - } - }, - "selectionMode": { - "defaultValue": { - "value": "none" - }, - "description": "The type of selection that is allowed in the collection.", - "name": "selectionMode", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "SelectionMode" - } - }, - "disallowEmptySelection": { - "defaultValue": null, - "description": "Whether the collection allows empty selection.", - "name": "disallowEmptySelection", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "selectedKeys": { - "defaultValue": null, - "description": "The currently selected keys in the collection (controlled).", - "name": "selectedKeys", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "Iterable | \"all\"" - } - }, - "defaultSelectedKeys": { - "defaultValue": null, - "description": "The initial selected keys in the collection (uncontrolled).", - "name": "defaultSelectedKeys", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "Iterable | \"all\"" - } - }, - "onSelectionChange": { - "defaultValue": null, - "description": "Handler that is called when the selection changes.", - "name": "onSelectionChange", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "((keys: Selection) => void)" - } - }, - "sortDescriptor": { - "defaultValue": null, - "description": "The current sorted column and direction.", - "name": "sortDescriptor", - "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": "Sortable" - }, - "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": "Sortable" - } - ], - "required": false, - "type": { - "name": "SortDescriptor" - } - }, - "onSortChange": { - "defaultValue": null, - "description": "Handler that is called when the sorted column or direction changes.", - "name": "onSortChange", - "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": "Sortable" - }, - "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": "Sortable" - } - ], - "required": false, - "type": { - "name": "((descriptor: SortDescriptor) => any)" - } - } - }, - "TableBody.tsx": { - "children": { - "defaultValue": null, - "description": "The chilren of the component.", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Table/TableBody.tsx", - "name": "TableBodyProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Table/TableBody.tsx", - "name": "TableBodyProps" - } - ], - "required": true, - "type": { - "name": "ReactNode" - } - }, - "onLoadMore": { - "defaultValue": null, - "description": "Handler that is called when more items should be loaded, e.g. while scrolling near the bottom.", - "name": "onLoadMore", - "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": "AsyncLoadable" - }, - "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": "AsyncLoadable" - } - ], - "required": false, - "type": { - "name": "(() => any)" - } - }, - "items": { - "defaultValue": null, - "description": "A list of row objects in the table body used when dynamically rendering rows.", - "name": "items", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "TableBodyProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "TableBodyProps" - } - ], - "required": false, - "type": { - "name": "Iterable" - } - }, - "loadingState": { - "defaultValue": null, - "description": "The current loading state of the table.", - "name": "loadingState", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "TableBodyProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "TableBodyProps" - } - ], - "required": false, - "type": { - "name": "LoadingState" - } - } - }, - "TableCell.tsx": { - "align": { - "defaultValue": { - "value": "left" - }, - "description": "", - "name": "align", - "parent": { - "fileName": "marigold/packages/components/src/Table/TableCell.tsx", - "name": "TableCellProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Table/TableCell.tsx", - "name": "TableCellProps" - } - ], - "required": false, - "type": { - "name": "\"left\" | \"center\" | \"right\" | \"justify\"" - } - }, - "cell": { - "defaultValue": null, - "description": "", - "name": "cell", - "parent": { - "fileName": "marigold/packages/components/src/Table/TableCell.tsx", - "name": "TableCellProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Table/TableCell.tsx", - "name": "TableCellProps" - } - ], - "required": true, - "type": { - "name": "GridNode" - } - } - }, - "TableCheckboxCell.tsx": { - "cell": { - "defaultValue": null, - "description": "", - "name": "cell", - "parent": { - "fileName": "marigold/packages/components/src/Table/TableCheckboxCell.tsx", - "name": "TableCheckboxCellProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Table/TableCheckboxCell.tsx", - "name": "TableCheckboxCellProps" - } - ], - "required": true, - "type": { - "name": "GridNode" - } - } - }, - "TableColumnHeader.tsx": { - "column": { - "defaultValue": null, - "description": "", - "name": "column", - "parent": { - "fileName": "marigold/packages/components/src/Table/TableColumnHeader.tsx", - "name": "TableColumnHeaderProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Table/TableColumnHeader.tsx", - "name": "TableColumnHeaderProps" - } - ], - "required": true, - "type": { - "name": "GridNode" - } - }, - "width": { - "defaultValue": { - "value": "auto" - }, - "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 ..." - } - }, - "title": { - "defaultValue": null, - "description": "Rendered contents of the column if `children` contains child columns.", - "name": "title", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "childColumns": { - "defaultValue": null, - "description": "A list of child columns used when dynamically rendering nested child columns.", - "name": "childColumns", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - } - ], - "required": false, - "type": { - "name": "any[]" - } - }, - "minWidth": { - "defaultValue": null, - "description": "The minimum width of the column.", - "name": "minWidth", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - } - ], - "required": false, - "type": { - "name": "ColumnStaticSize | null" - } - }, - "maxWidth": { - "defaultValue": null, - "description": "The maximum width of the column.", - "name": "maxWidth", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - } - ], - "required": false, - "type": { - "name": "ColumnStaticSize | null" - } - }, - "defaultWidth": { - "defaultValue": null, - "description": "The default width of the column.", - "name": "defaultWidth", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - } - ], - "required": false, - "type": { - "name": "ColumnSize | null" - } - }, - "allowsResizing": { - "defaultValue": null, - "description": "Whether the column allows resizing.", - "name": "allowsResizing", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "allowsSorting": { - "defaultValue": null, - "description": "Whether the column allows sorting.", - "name": "allowsSorting", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "isRowHeader": { - "defaultValue": null, - "description": "Whether a column is a [row header](https://www.w3.org/TR/wai-aria-1.1/#rowheader) and should be announced by assistive technology during row navigation.", - "name": "isRowHeader", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "textValue": { - "defaultValue": null, - "description": "A string representation of the column's contents, used for accessibility announcements.", - "name": "textValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "ColumnProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "align": { - "defaultValue": { - "value": "left" - }, - "description": "Control the alignment of Column.", - "name": "align", - "parent": { - "fileName": "marigold/packages/components/src/Table/Table.tsx", - "name": "ColumnProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Table/Table.tsx", - "name": "ColumnProps" - } - ], - "required": false, - "type": { - "name": "\"left\" | \"center\" | \"right\" | \"justify\"" - } - } - }, - "TableHeader.tsx": { - "stickyHeader": { - "defaultValue": null, - "description": "", - "name": "stickyHeader", - "parent": { - "fileName": "marigold/packages/components/src/Table/TableHeader.tsx", - "name": "TableHeaderProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Table/TableHeader.tsx", - "name": "TableHeaderProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - } - }, - "TableHeaderRow.tsx": { - "item": { - "defaultValue": null, - "description": "", - "name": "item", - "parent": { - "fileName": "marigold/packages/components/src/Table/TableHeaderRow.tsx", - "name": "TableHeaderRowProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Table/TableHeaderRow.tsx", - "name": "TableHeaderRowProps" - } - ], - "required": true, - "type": { - "name": "GridNode" - } - } - }, - "TableRow.tsx": { - "row": { - "defaultValue": null, - "description": "", - "name": "row", - "parent": { - "fileName": "marigold/packages/components/src/Table/TableRow.tsx", - "name": "TableRowProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Table/TableRow.tsx", - "name": "TableRowProps" - } - ], - "required": true, - "type": { - "name": "GridNode" - } - }, - "UNSTABLE_childItems": { - "defaultValue": null, - "description": "A list of child item objects used when dynamically rendering row children. Requires the feature flag to be\nenabled along with UNSTABLE_allowsExpandableRows, see https://react-spectrum.adobe.com/react-spectrum/TableView.html#expandable-rows.\n@version alpha\n@private", - "name": "UNSTABLE_childItems", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "RowProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "RowProps" - } - ], - "required": false, - "type": { - "name": "Iterable" - } - }, - "children": { - "defaultValue": null, - "description": "Rendered contents of the row or row child items.", - "name": "children", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "RowProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "RowProps" - } - ], - "required": true, - "type": { - "name": "CellElement | CellElement[] | CellRenderer" - } - }, - "textValue": { - "defaultValue": null, - "description": "A string representation of the row's contents, used for features like typeahead.", - "name": "textValue", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "RowProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+table@3.9.5_react@18.3.1/node_modules/@react-types/table/src/index.d.ts", - "name": "RowProps" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "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" - } - } - }, - "TableSelectAllCell.tsx": { - "column": { - "defaultValue": null, - "description": "", - "name": "column", - "parent": { - "fileName": "marigold/packages/components/src/Table/TableSelectAllCell.tsx", - "name": "TableSelectAllCell" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Table/TableSelectAllCell.tsx", - "name": "TableSelectAllCell" - } - ], - "required": true, - "type": { - "name": "GridNode" - } - }, - "width": { - "defaultValue": { - "value": "auto" - }, - "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 ..." - } - }, - "align": { - "defaultValue": { - "value": "left" - }, - "description": "", - "name": "align", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "TdHTMLAttributes" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "TdHTMLAttributes" - } - ], - "required": false, - "type": { - "name": "\"left\" | \"center\" | \"right\" | \"justify\" | \"char\"" - } - } - }, - "Tab.tsx": { - "id": { - "defaultValue": null, - "description": "The unique id of the tab.", - "name": "id", - "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": "TabProps" - }, - "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": "TabProps" - } - ], - "required": false, - "type": { - "name": "Key" - } - }, - "isDisabled": { - "defaultValue": null, - "description": "Whether the tab is disabled.", - "name": "isDisabled", - "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": "TabProps" - }, - "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": "TabProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "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: TabRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" - } - }, - "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" - } - }, - "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" - } - } - }, - "TabList.tsx": { - "children": { - "defaultValue": null, - "description": "The contents of the collection.", - "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": "CollectionProps" - }, - "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": "CollectionProps" - } - ], - "required": false, - "type": { - "name": "ReactNode | ((item: Object) => ReactNode)" - } - }, - "items": { - "defaultValue": null, - "description": "Item objects in the collection.", - "name": "items", - "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" - } - }, - "dependencies": { - "defaultValue": null, - "description": "Values that should invalidate the item cache when using dynamic collections.", - "name": "dependencies", - "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": "CollectionProps" - }, - "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": "CollectionProps" - } - ], - "required": false, - "type": { - "name": "any[]" - } - }, - "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" - } - }, - "space": { - "defaultValue": { - "value": 2 - }, - "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" - } - } - }, - "TabPanel.tsx": { - "shouldForceMount": { - "defaultValue": { - "value": "false" - }, - "description": "Whether to mount the tab panel in the DOM even when it is not currently selected.\nInactive tab panels are inert and cannot be interacted with. They must be styled appropriately so this is clear to the user visually.", - "name": "shouldForceMount", - "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": "TabPanelProps" - }, - "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": "TabPanelProps" - } - ], - "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" - } - }, - "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" - } - }, - "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: TabPanelRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" - } - } - }, - "Tabs.tsx": { - "disabled": { - "defaultValue": { - "value": "false" - }, - "description": "Set All TabPanel disabled", - "name": "disabled", - "parent": { - "fileName": "marigold/packages/components/src/Tabs/Tabs.tsx", - "name": "TabsProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Tabs/Tabs.tsx", - "name": "TabsProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "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: TabsRenderProps & { defaultChildren: ReactNode; }) => ReactNode)" - } - }, - "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" - } - }, - "onSelectionChange": { - "defaultValue": null, - "description": "Handler that is called when the selection changes.", - "name": "onSelectionChange", - "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: Key) => void)" - } - }, - "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" - } - }, - "keyboardActivation": { - "defaultValue": { - "value": "'automatic'" - }, - "description": "Whether tabs are activated automatically on focus or manually.", - "name": "keyboardActivation", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-types+tabs@3.3.7_react@18.3.1/node_modules/@react-types/tabs/src/index.d.ts", - "name": "AriaTabListBase" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-types+tabs@3.3.7_react@18.3.1/node_modules/@react-types/tabs/src/index.d.ts", - "name": "AriaTabListBase" - } - ], - "required": false, - "type": { - "name": "\"automatic\" | \"manual\"" - } - }, - "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" - } - }, - "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" - } - }, - "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" - } - } - }, - "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, - "description": "", - "name": "className", - "parent": { - "fileName": "marigold/packages/components/src/TagGroup/Tag.tsx", - "name": "CloseButtonProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/TagGroup/Tag.tsx", - "name": "CloseButtonProps" - } - ], - "required": true, - "type": { - "name": "string" - } - } - }, - "TagGroup.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/TagGroup/TagGroup.tsx", - "name": "TagGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/TagGroup/TagGroup.tsx", - "name": "TagGroupProps" - } - ], - "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 ..." - } - }, - "allowsRemoving": { - "defaultValue": { - "value": "false" - }, - "description": "Displays a remove button on each tag.", - "name": "allowsRemoving", - "parent": { - "fileName": "marigold/packages/components/src/TagGroup/TagGroup.tsx", - "name": "TagGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/TagGroup/TagGroup.tsx", - "name": "TagGroupProps" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "selectionBehavior": { - "defaultValue": null, - "description": "How multiple selection should behave in the collection.", - "name": "selectionBehavior", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-aria+tag@3.4.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/tag/dist/types.d.ts", - "name": "AriaTagGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-aria+tag@3.4.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/tag/dist/types.d.ts", - "name": "AriaTagGroupProps" - } - ], - "required": false, - "type": { - "name": "SelectionBehavior" - } - }, - "onRemove": { - "defaultValue": null, - "description": "Handler that is called when a user deletes a tag.", - "name": "onRemove", - "parent": { - "fileName": "marigold/node_modules/.pnpm/@react-aria+tag@3.4.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/tag/dist/types.d.ts", - "name": "AriaTagGroupProps" - }, - "declarations": [ - { - "fileName": "marigold/node_modules/.pnpm/@react-aria+tag@3.4.1_react-dom@18.3.1_react@18.3.1__react@18.3.1/node_modules/@react-aria/tag/dist/types.d.ts", - "name": "AriaTagGroupProps" - } - ], - "required": false, - "type": { - "name": "((keys: Set) => void)" - } - }, - "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" - } - }, - "selectionMode": { - "defaultValue": null, - "description": "The type of selection that is allowed in the collection.", - "name": "selectionMode", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "SelectionMode" - } - }, - "disallowEmptySelection": { - "defaultValue": null, - "description": "Whether the collection allows empty selection.", - "name": "disallowEmptySelection", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "boolean" - } - }, - "selectedKeys": { - "defaultValue": null, - "description": "The currently selected keys in the collection (controlled).", - "name": "selectedKeys", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "Iterable | \"all\"" - } - }, - "defaultSelectedKeys": { - "defaultValue": null, - "description": "The initial selected keys in the collection (uncontrolled).", - "name": "defaultSelectedKeys", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "Iterable | \"all\"" - } - }, - "onSelectionChange": { - "defaultValue": null, - "description": "Handler that is called when the selection changes.", - "name": "onSelectionChange", - "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": "MultipleSelection" - }, - "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": "MultipleSelection" - } - ], - "required": false, - "type": { - "name": "((keys: Selection) => 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" - } - }, - "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" - } - }, - "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" - } - }, - "children": { - "defaultValue": null, - "description": "The contents of the collection.", - "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": "CollectionProps" - }, - "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": "CollectionProps" - } - ], - "required": false, - "type": { - "name": "ReactNode | ((item: object) => ReactNode)" - } - }, - "items": { - "defaultValue": null, - "description": "Item objects in the collection.", - "name": "items", - "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" - } - }, - "renderEmptyState": { - "defaultValue": null, - "description": "Provides content to display when there are no items in the tag list.", - "name": "renderEmptyState", - "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": "TagListProps" - }, - "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": "TagListProps" - } - ], - "required": false, - "type": { - "name": "((props: TagListRenderProps) => ReactNode)" - } - }, - "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" - } - } - }, - "Text.tsx": { - "children": { - "defaultValue": null, - "description": "The children of the component", - "name": "children", - "parent": { - "fileName": "marigold/packages/components/src/Text/Text.tsx", - "name": "TextProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Text/Text.tsx", - "name": "TextProps" - } - ], - "required": false, - "type": { - "name": "ReactNode" - } - }, - "color": { - "defaultValue": { - "value": "currentColor" - }, - "description": "Set the text color.", - "name": "color", - "parent": { - "fileName": "marigold/packages/components/src/Text/Text.tsx", - "name": "TextProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/components/src/Text/Text.tsx", - "name": "TextProps" - } - ], - "required": false, - "type": { - "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" - } - }, - "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" - } - }, - "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" - } - }, - "itemType": { - "defaultValue": null, - "description": "", - "name": "itemType", - "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" - } - }, - "itemID": { - "defaultValue": null, - "description": "", - "name": "itemID", - "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" - } - }, - "itemRef": { - "defaultValue": null, - "description": "", - "name": "itemRef", - "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" - } - }, - "results": { - "defaultValue": null, - "description": "", - "name": "results", - "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" - } - }, - "security": { - "defaultValue": null, - "description": "", - "name": "security", - "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" - } - }, - "unselectable": { - "defaultValue": null, - "description": "", - "name": "unselectable", - "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": "\"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\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": "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": "\"search\" | \"text\" | \"none\" | \"tel\" | \"url\" | \"email\" | \"numeric\" | \"decimal\"" - } - }, - "is": { - "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", - "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" - } - }, - "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": "\"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": "", - "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" - } - } - }, - "XLoader.tsx": { - "className": { - "defaultValue": null, - "description": "To add a className on svg and icons.", - "name": "className", - "parent": { - "fileName": "marigold/packages/system/src/components/SVG/SVG.tsx", - "name": "SVGProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/system/src/components/SVG/SVG.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" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "autoReverse": { - "defaultValue": null, - "description": "", - "name": "autoReverse", - "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": "Booleanish" - } - }, - "azimuth": { - "defaultValue": null, - "description": "", - "name": "azimuth", - "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" - } - }, - "baseFrequency": { - "defaultValue": null, - "description": "", - "name": "baseFrequency", - "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" - } - }, - "baselineShift": { - "defaultValue": null, - "description": "", - "name": "baselineShift", - "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" - } - }, - "baseProfile": { - "defaultValue": null, - "description": "", - "name": "baseProfile", - "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" - } - }, - "bbox": { - "defaultValue": null, - "description": "", - "name": "bbox", - "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" - } - }, - "begin": { - "defaultValue": null, - "description": "", - "name": "begin", - "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" - } - }, - "bias": { - "defaultValue": null, - "description": "", - "name": "bias", - "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" - } - }, - "by": { - "defaultValue": null, - "description": "", - "name": "by", - "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" - } - }, - "calcMode": { - "defaultValue": null, - "description": "", - "name": "calcMode", - "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" - } - }, - "capHeight": { - "defaultValue": null, - "description": "", - "name": "capHeight", - "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" - } - }, - "clip": { - "defaultValue": null, - "description": "", - "name": "clip", - "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" - } - }, - "clipPathUnits": { - "defaultValue": null, - "description": "", - "name": "clipPathUnits", - "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" - } - }, - "clipRule": { - "defaultValue": null, - "description": "", - "name": "clipRule", - "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" - } - }, - "colorInterpolation": { - "defaultValue": null, - "description": "", - "name": "colorInterpolation", - "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" - } - }, - "colorInterpolationFilters": { - "defaultValue": null, - "description": "", - "name": "colorInterpolationFilters", - "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": "\"auto\" | \"inherit\" | \"sRGB\" | \"linearRGB\"" - } - }, - "colorProfile": { - "defaultValue": null, - "description": "", - "name": "colorProfile", - "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" - } - }, - "colorRendering": { - "defaultValue": null, - "description": "", - "name": "colorRendering", - "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" - } - }, - "contentScriptType": { - "defaultValue": null, - "description": "", - "name": "contentScriptType", - "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" - } - }, - "contentStyleType": { - "defaultValue": null, - "description": "", - "name": "contentStyleType", - "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" - } - }, - "cursor": { - "defaultValue": null, - "description": "", - "name": "cursor", - "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" - } - }, - "cx": { - "defaultValue": null, - "description": "", - "name": "cx", - "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" - } - }, - "cy": { - "defaultValue": null, - "description": "", - "name": "cy", - "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" - } - }, - "d": { - "defaultValue": null, - "description": "", - "name": "d", - "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" - } - }, - "decelerate": { - "defaultValue": null, - "description": "", - "name": "decelerate", - "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" - } - }, - "descent": { - "defaultValue": null, - "description": "", - "name": "descent", - "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" - } - }, - "diffuseConstant": { - "defaultValue": null, - "description": "", - "name": "diffuseConstant", - "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" - } - }, - "direction": { - "defaultValue": null, - "description": "", - "name": "direction", - "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" - } - }, - "display": { - "defaultValue": null, - "description": "", - "name": "display", - "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" - } - }, - "divisor": { - "defaultValue": null, - "description": "", - "name": "divisor", - "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" - } - }, - "dominantBaseline": { - "defaultValue": null, - "description": "", - "name": "dominantBaseline", - "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" - } - }, - "dur": { - "defaultValue": null, - "description": "", - "name": "dur", - "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" - } - }, - "dx": { - "defaultValue": null, - "description": "", - "name": "dx", - "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" - } - }, - "dy": { - "defaultValue": null, - "description": "", - "name": "dy", - "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" - } - }, - "edgeMode": { - "defaultValue": null, - "description": "", - "name": "edgeMode", - "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" - } - }, - "elevation": { - "defaultValue": null, - "description": "", - "name": "elevation", - "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" - } - }, - "enableBackground": { - "defaultValue": null, - "description": "", - "name": "enableBackground", - "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" - } - }, - "end": { - "defaultValue": null, - "description": "", - "name": "end", - "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" - } - }, - "exponent": { - "defaultValue": null, - "description": "", - "name": "exponent", - "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" - } - }, - "externalResourcesRequired": { - "defaultValue": null, - "description": "", - "name": "externalResourcesRequired", - "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": "Booleanish" - } - }, - "fillOpacity": { - "defaultValue": null, - "description": "", - "name": "fillOpacity", - "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" - } - }, - "fillRule": { - "defaultValue": null, - "description": "", - "name": "fillRule", - "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": "\"inherit\" | \"nonzero\" | \"evenodd\"" - } - }, - "filterRes": { - "defaultValue": null, - "description": "", - "name": "filterRes", - "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" - } - }, - "filterUnits": { - "defaultValue": null, - "description": "", - "name": "filterUnits", - "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" - } - }, - "floodColor": { - "defaultValue": null, - "description": "", - "name": "floodColor", - "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" - } - }, - "floodOpacity": { - "defaultValue": null, - "description": "", - "name": "floodOpacity", - "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" - } - }, - "focusable": { - "defaultValue": null, - "description": "", - "name": "focusable", - "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": "\"auto\" | Booleanish" - } - }, - "fontFamily": { - "defaultValue": null, - "description": "", - "name": "fontFamily", - "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" - } - }, - "fontSize": { - "defaultValue": null, - "description": "", - "name": "fontSize", - "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" - } - }, - "fontSizeAdjust": { - "defaultValue": null, - "description": "", - "name": "fontSizeAdjust", - "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" - } - }, - "fontStretch": { - "defaultValue": null, - "description": "", - "name": "fontStretch", - "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" - } - }, - "fontStyle": { - "defaultValue": null, - "description": "", - "name": "fontStyle", - "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" - } - }, - "fontVariant": { - "defaultValue": null, - "description": "", - "name": "fontVariant", - "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" - } - }, - "fontWeight": { - "defaultValue": null, - "description": "", - "name": "fontWeight", - "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" - } - }, - "format": { - "defaultValue": null, - "description": "", - "name": "format", - "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" - } - }, - "fr": { - "defaultValue": null, - "description": "", - "name": "fr", - "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" - } - }, - "from": { - "defaultValue": null, - "description": "", - "name": "from", - "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" - } - }, - "fx": { - "defaultValue": null, - "description": "", - "name": "fx", - "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" - } - }, - "fy": { - "defaultValue": null, - "description": "", - "name": "fy", - "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" - } - }, - "g1": { - "defaultValue": null, - "description": "", - "name": "g1", - "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" - } - }, - "g2": { - "defaultValue": null, - "description": "", - "name": "g2", - "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" - } - }, - "glyphName": { - "defaultValue": null, - "description": "", - "name": "glyphName", - "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" - } - }, - "glyphOrientationHorizontal": { - "defaultValue": null, - "description": "", - "name": "glyphOrientationHorizontal", - "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" - } - }, - "glyphOrientationVertical": { - "defaultValue": null, - "description": "", - "name": "glyphOrientationVertical", - "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" - } - }, - "glyphRef": { - "defaultValue": null, - "description": "", - "name": "glyphRef", - "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" - } - }, - "gradientTransform": { - "defaultValue": null, - "description": "", - "name": "gradientTransform", - "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" - } - }, - "gradientUnits": { - "defaultValue": null, - "description": "", - "name": "gradientUnits", - "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" - } - }, - "hanging": { - "defaultValue": null, - "description": "", - "name": "hanging", - "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" - } - }, - "horizAdvX": { - "defaultValue": null, - "description": "", - "name": "horizAdvX", - "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" - } - }, - "horizOriginX": { - "defaultValue": null, - "description": "", - "name": "horizOriginX", - "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" - } - }, - "href": { - "defaultValue": null, - "description": "", - "name": "href", - "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" - } - }, - "ideographic": { - "defaultValue": null, - "description": "", - "name": "ideographic", - "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" - } - }, - "imageRendering": { - "defaultValue": null, - "description": "", - "name": "imageRendering", - "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" - } - }, - "in2": { - "defaultValue": null, - "description": "", - "name": "in2", - "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" - } - }, - "in": { - "defaultValue": null, - "description": "", - "name": "in", - "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" - } - }, - "intercept": { - "defaultValue": null, - "description": "", - "name": "intercept", - "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" - } - }, - "k1": { - "defaultValue": null, - "description": "", - "name": "k1", - "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" - } - }, - "k2": { - "defaultValue": null, - "description": "", - "name": "k2", - "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" - } - }, - "k3": { - "defaultValue": null, - "description": "", - "name": "k3", - "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" - } - }, - "k4": { - "defaultValue": null, - "description": "", - "name": "k4", - "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" - } - }, - "k": { - "defaultValue": null, - "description": "", - "name": "k", - "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" - } - }, - "kernelMatrix": { - "defaultValue": null, - "description": "", - "name": "kernelMatrix", - "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" - } - }, - "kernelUnitLength": { - "defaultValue": null, - "description": "", - "name": "kernelUnitLength", - "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" - } - }, - "kerning": { - "defaultValue": null, - "description": "", - "name": "kerning", - "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" - } - }, - "keyPoints": { - "defaultValue": null, - "description": "", - "name": "keyPoints", - "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" - } - }, - "keySplines": { - "defaultValue": null, - "description": "", - "name": "keySplines", - "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" - } - }, - "keyTimes": { - "defaultValue": null, - "description": "", - "name": "keyTimes", - "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" - } - }, - "lengthAdjust": { - "defaultValue": null, - "description": "", - "name": "lengthAdjust", - "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" - } - }, - "letterSpacing": { - "defaultValue": null, - "description": "", - "name": "letterSpacing", - "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" - } - }, - "lightingColor": { - "defaultValue": null, - "description": "", - "name": "lightingColor", - "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" - } - }, - "limitingConeAngle": { - "defaultValue": null, - "description": "", - "name": "limitingConeAngle", - "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" - } - }, - "local": { - "defaultValue": null, - "description": "", - "name": "local", - "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" - } - }, - "markerEnd": { - "defaultValue": null, - "description": "", - "name": "markerEnd", - "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" - } - }, - "markerHeight": { - "defaultValue": null, - "description": "", - "name": "markerHeight", - "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" - } - }, - "markerMid": { - "defaultValue": null, - "description": "", - "name": "markerMid", - "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" - } - }, - "markerStart": { - "defaultValue": null, - "description": "", - "name": "markerStart", - "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" - } - }, - "markerUnits": { - "defaultValue": null, - "description": "", - "name": "markerUnits", - "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" - } - }, - "markerWidth": { - "defaultValue": null, - "description": "", - "name": "markerWidth", - "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" - } - }, - "maskContentUnits": { - "defaultValue": null, - "description": "", - "name": "maskContentUnits", - "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" - } - }, - "maskUnits": { - "defaultValue": null, - "description": "", - "name": "maskUnits", - "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" - } - }, - "mathematical": { - "defaultValue": null, - "description": "", - "name": "mathematical", - "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" - } - }, - "mode": { - "defaultValue": null, - "description": "", - "name": "mode", - "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" - } - }, - "numOctaves": { - "defaultValue": null, - "description": "", - "name": "numOctaves", - "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" - } - }, - "offset": { - "defaultValue": null, - "description": "", - "name": "offset", - "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" - } - }, - "opacity": { - "defaultValue": null, - "description": "", - "name": "opacity", - "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" - } - }, - "operator": { - "defaultValue": null, - "description": "", - "name": "operator", - "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" - } - }, - "order": { - "defaultValue": null, - "description": "", - "name": "order", - "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" - } - }, - "orient": { - "defaultValue": null, - "description": "", - "name": "orient", - "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" - } - }, - "orientation": { - "defaultValue": null, - "description": "", - "name": "orientation", - "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" - } - }, - "origin": { - "defaultValue": null, - "description": "", - "name": "origin", - "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" - } - }, - "overflow": { - "defaultValue": null, - "description": "", - "name": "overflow", - "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" - } - }, - "overlinePosition": { - "defaultValue": null, - "description": "", - "name": "overlinePosition", - "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" - } - }, - "overlineThickness": { - "defaultValue": null, - "description": "", - "name": "overlineThickness", - "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" - } - }, - "paintOrder": { - "defaultValue": null, - "description": "", - "name": "paintOrder", - "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" - } - }, - "panose1": { - "defaultValue": null, - "description": "", - "name": "panose1", - "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" - } - }, - "pathLength": { - "defaultValue": null, - "description": "", - "name": "pathLength", - "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" - } - }, - "patternContentUnits": { - "defaultValue": null, - "description": "", - "name": "patternContentUnits", - "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" - } - }, - "patternTransform": { - "defaultValue": null, - "description": "", - "name": "patternTransform", - "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" - } - }, - "patternUnits": { - "defaultValue": null, - "description": "", - "name": "patternUnits", - "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" - } - }, - "pointerEvents": { - "defaultValue": null, - "description": "", - "name": "pointerEvents", - "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" - } - }, - "points": { - "defaultValue": null, - "description": "", - "name": "points", - "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" - } - }, - "pointsAtX": { - "defaultValue": null, - "description": "", - "name": "pointsAtX", - "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" - } - }, - "pointsAtY": { - "defaultValue": null, - "description": "", - "name": "pointsAtY", - "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" - } - }, - "pointsAtZ": { - "defaultValue": null, - "description": "", - "name": "pointsAtZ", - "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" - } - }, - "preserveAlpha": { - "defaultValue": null, - "description": "", - "name": "preserveAlpha", - "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": "Booleanish" - } - }, - "preserveAspectRatio": { - "defaultValue": null, - "description": "", - "name": "preserveAspectRatio", - "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" - } - }, - "primitiveUnits": { - "defaultValue": null, - "description": "", - "name": "primitiveUnits", - "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" - } - }, - "r": { - "defaultValue": null, - "description": "", - "name": "r", - "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" - } - }, - "radius": { - "defaultValue": null, - "description": "", - "name": "radius", - "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" - } - }, - "refX": { - "defaultValue": null, - "description": "", - "name": "refX", - "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" - } - }, - "refY": { - "defaultValue": null, - "description": "", - "name": "refY", - "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" - } - }, - "renderingIntent": { - "defaultValue": null, - "description": "", - "name": "renderingIntent", - "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" - } - }, - "repeatCount": { - "defaultValue": null, - "description": "", - "name": "repeatCount", - "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" - } - }, - "repeatDur": { - "defaultValue": null, - "description": "", - "name": "repeatDur", - "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" - } - }, - "requiredExtensions": { - "defaultValue": null, - "description": "", - "name": "requiredExtensions", - "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" - } - }, - "requiredFeatures": { - "defaultValue": null, - "description": "", - "name": "requiredFeatures", - "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" - } - }, - "restart": { - "defaultValue": null, - "description": "", - "name": "restart", - "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" - } - }, - "result": { - "defaultValue": null, - "description": "", - "name": "result", - "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" - } - }, - "rotate": { - "defaultValue": null, - "description": "", - "name": "rotate", - "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" - } - }, - "rx": { - "defaultValue": null, - "description": "", - "name": "rx", - "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" - } - }, - "ry": { - "defaultValue": null, - "description": "", - "name": "ry", - "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" - } - }, - "scale": { - "defaultValue": null, - "description": "", - "name": "scale", - "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" - } - }, - "seed": { - "defaultValue": null, - "description": "", - "name": "seed", - "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" - } - }, - "shapeRendering": { - "defaultValue": null, - "description": "", - "name": "shapeRendering", - "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" - } - }, - "slope": { - "defaultValue": null, - "description": "", - "name": "slope", - "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" - } - }, - "spacing": { - "defaultValue": null, - "description": "", - "name": "spacing", - "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" - } - }, - "specularConstant": { - "defaultValue": null, - "description": "", - "name": "specularConstant", - "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" - } - }, - "specularExponent": { - "defaultValue": null, - "description": "", - "name": "specularExponent", - "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" - } - }, - "speed": { - "defaultValue": null, - "description": "", - "name": "speed", - "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" - } - }, - "spreadMethod": { - "defaultValue": null, - "description": "", - "name": "spreadMethod", - "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" - } - }, - "startOffset": { - "defaultValue": null, - "description": "", - "name": "startOffset", - "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" - } - }, - "stdDeviation": { - "defaultValue": null, - "description": "", - "name": "stdDeviation", - "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" - } - }, - "stemh": { - "defaultValue": null, - "description": "", - "name": "stemh", - "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" - } - }, - "stemv": { - "defaultValue": null, - "description": "", - "name": "stemv", - "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" - } - }, - "stitchTiles": { - "defaultValue": null, - "description": "", - "name": "stitchTiles", - "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" - } - }, - "stopColor": { - "defaultValue": null, - "description": "", - "name": "stopColor", - "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" - } - }, - "stopOpacity": { - "defaultValue": null, - "description": "", - "name": "stopOpacity", - "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" - } - }, - "strikethroughPosition": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strikethroughThickness": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "stroke": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "strokeDasharray": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strokeDashoffset": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strokeLinecap": { - "defaultValue": null, - "description": "", - "name": "strokeLinecap", - "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": "\"inherit\" | \"butt\" | \"round\" | \"square\"" - } - }, - "strokeLinejoin": { - "defaultValue": null, - "description": "", - "name": "strokeLinejoin", - "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": "\"inherit\" | \"round\" | \"miter\" | \"bevel\"" - } - }, - "strokeMiterlimit": { - "defaultValue": null, - "description": "", - "name": "strokeMiterlimit", - "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" - } - }, - "strokeOpacity": { - "defaultValue": null, - "description": "", - "name": "strokeOpacity", - "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" - } - }, - "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" - }, - "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" - } - }, - "surfaceScale": { - "defaultValue": null, - "description": "", - "name": "surfaceScale", - "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" - } - }, - "systemLanguage": { - "defaultValue": null, - "description": "", - "name": "systemLanguage", - "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" - } - }, - "tableValues": { - "defaultValue": null, - "description": "", - "name": "tableValues", - "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" - } - }, - "targetX": { - "defaultValue": null, - "description": "", - "name": "targetX", - "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" - } - }, - "targetY": { - "defaultValue": null, - "description": "", - "name": "targetY", - "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" - } - }, - "textAnchor": { - "defaultValue": null, - "description": "", - "name": "textAnchor", - "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" - } - }, - "textDecoration": { - "defaultValue": null, - "description": "", - "name": "textDecoration", - "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" - } - }, - "textLength": { - "defaultValue": null, - "description": "", - "name": "textLength", - "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" - } - }, - "textRendering": { - "defaultValue": null, - "description": "", - "name": "textRendering", - "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" - } - }, - "to": { - "defaultValue": null, - "description": "", - "name": "to", - "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" - } - }, - "transform": { - "defaultValue": null, - "description": "", - "name": "transform", - "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" - } - }, - "u1": { - "defaultValue": null, - "description": "", - "name": "u1", - "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" - } - }, - "u2": { - "defaultValue": null, - "description": "", - "name": "u2", - "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" - } - }, - "underlinePosition": { - "defaultValue": null, - "description": "", - "name": "underlinePosition", - "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" - } - }, - "underlineThickness": { - "defaultValue": null, - "description": "", - "name": "underlineThickness", - "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" - } - }, - "unicode": { - "defaultValue": null, - "description": "", - "name": "unicode", - "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" - } - }, - "unicodeBidi": { - "defaultValue": null, - "description": "", - "name": "unicodeBidi", - "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" - } - }, - "unicodeRange": { - "defaultValue": null, - "description": "", - "name": "unicodeRange", - "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" - } - }, - "unitsPerEm": { - "defaultValue": null, - "description": "", - "name": "unitsPerEm", - "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" - } - }, - "vAlphabetic": { - "defaultValue": null, - "description": "", - "name": "vAlphabetic", - "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" - } - }, - "values": { - "defaultValue": null, - "description": "", - "name": "values", - "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" - } - }, - "vectorEffect": { - "defaultValue": null, - "description": "", - "name": "vectorEffect", - "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" - } - }, - "version": { - "defaultValue": null, - "description": "", - "name": "version", - "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" - } - }, - "vertAdvY": { - "defaultValue": null, - "description": "", - "name": "vertAdvY", - "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" - } - }, - "vertOriginX": { - "defaultValue": null, - "description": "", - "name": "vertOriginX", - "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" - } - }, - "vertOriginY": { - "defaultValue": null, - "description": "", - "name": "vertOriginY", - "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" - } - }, - "vHanging": { - "defaultValue": null, - "description": "", - "name": "vHanging", - "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" - } - }, - "vIdeographic": { - "defaultValue": null, - "description": "", - "name": "vIdeographic", - "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" - } - }, - "viewBox": { - "defaultValue": null, - "description": "", - "name": "viewBox", - "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" - } - }, - "viewTarget": { - "defaultValue": null, - "description": "", - "name": "viewTarget", - "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" - } - }, - "visibility": { - "defaultValue": null, - "description": "", - "name": "visibility", - "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" - } - }, - "vMathematical": { - "defaultValue": null, - "description": "", - "name": "vMathematical", - "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" - } - }, - "widths": { - "defaultValue": null, - "description": "", - "name": "widths", - "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" - } - }, - "wordSpacing": { - "defaultValue": null, - "description": "", - "name": "wordSpacing", - "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" - } - }, - "writingMode": { - "defaultValue": null, - "description": "", - "name": "writingMode", - "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" - } - }, - "x1": { - "defaultValue": null, - "description": "", - "name": "x1", - "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" - } - }, - "x2": { - "defaultValue": null, - "description": "", - "name": "x2", - "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" - } - }, - "x": { - "defaultValue": null, - "description": "", - "name": "x", - "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" - } - }, - "xChannelSelector": { - "defaultValue": null, - "description": "", - "name": "xChannelSelector", - "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" - } - }, - "xHeight": { - "defaultValue": null, - "description": "", - "name": "xHeight", - "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" - } - }, - "xlinkActuate": { - "defaultValue": null, - "description": "", - "name": "xlinkActuate", - "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" - } - }, - "xlinkArcrole": { - "defaultValue": null, - "description": "", - "name": "xlinkArcrole", - "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" - } - }, - "xlinkHref": { - "defaultValue": null, - "description": "", - "name": "xlinkHref", - "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" - } - }, - "xlinkRole": { - "defaultValue": null, - "description": "", - "name": "xlinkRole", - "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" - } - }, - "xlinkShow": { - "defaultValue": null, - "description": "", - "name": "xlinkShow", - "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" - } - }, - "xlinkTitle": { - "defaultValue": null, - "description": "", - "name": "xlinkTitle", - "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" - } - }, - "xlinkType": { - "defaultValue": null, - "description": "", - "name": "xlinkType", - "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" - } - }, - "xmlBase": { - "defaultValue": null, - "description": "", - "name": "xmlBase", - "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" - } - }, - "xmlLang": { - "defaultValue": null, - "description": "", - "name": "xmlLang", - "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" - } - }, - "xmlns": { - "defaultValue": null, - "description": "", - "name": "xmlns", - "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" - } - }, - "xmlnsXlink": { - "defaultValue": null, - "description": "", - "name": "xmlnsXlink", - "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" - } - }, - "xmlSpace": { - "defaultValue": null, - "description": "", - "name": "xmlSpace", - "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" - } - }, - "y1": { - "defaultValue": null, - "description": "", - "name": "y1", - "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" - } - }, - "y2": { - "defaultValue": null, - "description": "", - "name": "y2", - "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" - } - }, - "y": { - "defaultValue": null, - "description": "", - "name": "y", - "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" - } - }, - "yChannelSelector": { - "defaultValue": null, - "description": "", - "name": "yChannelSelector", - "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" - } - }, - "z": { - "defaultValue": null, - "description": "", - "name": "z", - "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" - } - }, - "zoomAndPan": { - "defaultValue": null, - "description": "", - "name": "zoomAndPan", - "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" - } - }, - "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 | \"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\" | \"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\" | \"menu\" | \"grid\" | \"listbox\" | \"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": "\"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" - } - }, - "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" - }, - { - "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" - } - }, - "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" - } - } - }, - "useClassNames.tsx": { - "component": { - "defaultValue": null, - "description": "", - "name": "component", - "parent": { - "fileName": "marigold/packages/system/src/hooks/useClassNames.tsx", - "name": "UseClassNamesProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/system/src/hooks/useClassNames.tsx", - "name": "UseClassNamesProps" - } - ], - "required": true, - "type": { - "name": "\"Accordion\" | \"Badge\" | \"Body\" | \"Button\" | \"Card\" | \"DateField\" | \"Dialog\" | \"Divider\" | \"Field\" | \"Footer\" | \"Header\" | \"Headline\" | \"Popover\" | \"HelpText\" | \"Image\" | \"Checkbox\" | ... 21 more ... | \"ComboBox\"" - } - }, - "className": { - "defaultValue": null, - "description": "", - "name": "className", - "parent": { - "fileName": "marigold/packages/system/src/hooks/useClassNames.tsx", - "name": "UseClassNamesProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/system/src/hooks/useClassNames.tsx", - "name": "UseClassNamesProps" - } - ], - "required": false, - "type": { - "name": "string | { [slot in keyof ThemeComponent]?: string; }" - } - } - }, - "useTheme.tsx": { - "theme": { - "defaultValue": null, - "description": "The theme that should be used within the provider context.", - "name": "theme", - "parent": { - "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", - "name": "ThemeProviderProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", - "name": "ThemeProviderProps" - } - ], - "required": true, - "type": { - "name": "Theme" - } - }, - "children": { - "defaultValue": null, - "description": "The children of the component.", - "name": "children", - "parent": { - "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", - "name": "ThemeProviderProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", - "name": "ThemeProviderProps" - } - ], - "required": true, - "type": { - "name": "ReactNode" - } - }, - "className": { - "defaultValue": null, - "description": "Additional class names to apply to the root element of the provider.", - "name": "className", - "parent": { - "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", - "name": "ThemeProviderProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/system/src/hooks/useTheme.tsx", - "name": "ThemeProviderProps" - } - ], - "required": false, - "type": { - "name": "string" - } - } - }, - "SVG.tsx": { - "className": { - "defaultValue": null, - "description": "To add a className on svg and icons.", - "name": "className", - "parent": { - "fileName": "marigold/packages/system/src/components/SVG/SVG.tsx", - "name": "SVGProps" - }, - "declarations": [ - { - "fileName": "marigold/packages/system/src/components/SVG/SVG.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" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "autoReverse": { - "defaultValue": null, - "description": "", - "name": "autoReverse", - "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": "Booleanish" - } - }, - "azimuth": { - "defaultValue": null, - "description": "", - "name": "azimuth", - "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" - } - }, - "baseFrequency": { - "defaultValue": null, - "description": "", - "name": "baseFrequency", - "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" - } - }, - "baselineShift": { - "defaultValue": null, - "description": "", - "name": "baselineShift", - "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" - } - }, - "baseProfile": { - "defaultValue": null, - "description": "", - "name": "baseProfile", - "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" - } - }, - "bbox": { - "defaultValue": null, - "description": "", - "name": "bbox", - "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" - } - }, - "begin": { - "defaultValue": null, - "description": "", - "name": "begin", - "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" - } - }, - "bias": { - "defaultValue": null, - "description": "", - "name": "bias", - "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" - } - }, - "by": { - "defaultValue": null, - "description": "", - "name": "by", - "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" - } - }, - "calcMode": { - "defaultValue": null, - "description": "", - "name": "calcMode", - "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" - } - }, - "capHeight": { - "defaultValue": null, - "description": "", - "name": "capHeight", - "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" - } - }, - "clip": { - "defaultValue": null, - "description": "", - "name": "clip", - "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" - } - }, - "clipPathUnits": { - "defaultValue": null, - "description": "", - "name": "clipPathUnits", - "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" - } - }, - "clipRule": { - "defaultValue": null, - "description": "", - "name": "clipRule", - "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" - } - }, - "colorInterpolation": { - "defaultValue": null, - "description": "", - "name": "colorInterpolation", - "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" - } - }, - "colorInterpolationFilters": { - "defaultValue": null, - "description": "", - "name": "colorInterpolationFilters", - "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": "\"auto\" | \"inherit\" | \"sRGB\" | \"linearRGB\"" - } - }, - "colorProfile": { - "defaultValue": null, - "description": "", - "name": "colorProfile", - "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" - } - }, - "colorRendering": { - "defaultValue": null, - "description": "", - "name": "colorRendering", - "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" - } - }, - "contentScriptType": { - "defaultValue": null, - "description": "", - "name": "contentScriptType", - "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" - } - }, - "contentStyleType": { - "defaultValue": null, - "description": "", - "name": "contentStyleType", - "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" - } - }, - "cursor": { - "defaultValue": null, - "description": "", - "name": "cursor", - "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" - } - }, - "cx": { - "defaultValue": null, - "description": "", - "name": "cx", - "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" - } - }, - "cy": { - "defaultValue": null, - "description": "", - "name": "cy", - "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" - } - }, - "d": { - "defaultValue": null, - "description": "", - "name": "d", - "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" - } - }, - "decelerate": { - "defaultValue": null, - "description": "", - "name": "decelerate", - "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" - } - }, - "descent": { - "defaultValue": null, - "description": "", - "name": "descent", - "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" - } - }, - "diffuseConstant": { - "defaultValue": null, - "description": "", - "name": "diffuseConstant", - "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" - } - }, - "direction": { - "defaultValue": null, - "description": "", - "name": "direction", - "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" - } - }, - "display": { - "defaultValue": null, - "description": "", - "name": "display", - "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" - } - }, - "divisor": { - "defaultValue": null, - "description": "", - "name": "divisor", - "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" - } - }, - "dominantBaseline": { - "defaultValue": null, - "description": "", - "name": "dominantBaseline", - "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" - } - }, - "dur": { - "defaultValue": null, - "description": "", - "name": "dur", - "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" - } - }, - "dx": { - "defaultValue": null, - "description": "", - "name": "dx", - "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" - } - }, - "dy": { - "defaultValue": null, - "description": "", - "name": "dy", - "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" - } - }, - "edgeMode": { - "defaultValue": null, - "description": "", - "name": "edgeMode", - "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" - } - }, - "elevation": { - "defaultValue": null, - "description": "", - "name": "elevation", - "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" - } - }, - "enableBackground": { - "defaultValue": null, - "description": "", - "name": "enableBackground", - "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" - } - }, - "end": { - "defaultValue": null, - "description": "", - "name": "end", - "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" - } - }, - "exponent": { - "defaultValue": null, - "description": "", - "name": "exponent", - "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" - } - }, - "externalResourcesRequired": { - "defaultValue": null, - "description": "", - "name": "externalResourcesRequired", - "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": "Booleanish" - } - }, - "fillOpacity": { - "defaultValue": null, - "description": "", - "name": "fillOpacity", - "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" - } - }, - "fillRule": { - "defaultValue": null, - "description": "", - "name": "fillRule", - "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": "\"inherit\" | \"nonzero\" | \"evenodd\"" - } - }, - "filterRes": { - "defaultValue": null, - "description": "", - "name": "filterRes", - "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" - } - }, - "filterUnits": { - "defaultValue": null, - "description": "", - "name": "filterUnits", - "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" - } - }, - "floodColor": { - "defaultValue": null, - "description": "", - "name": "floodColor", - "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" - } - }, - "floodOpacity": { - "defaultValue": null, - "description": "", - "name": "floodOpacity", - "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" - } - }, - "focusable": { - "defaultValue": null, - "description": "", - "name": "focusable", - "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": "\"auto\" | Booleanish" - } - }, - "fontFamily": { - "defaultValue": null, - "description": "", - "name": "fontFamily", - "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" - } - }, - "fontSize": { - "defaultValue": null, - "description": "", - "name": "fontSize", - "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" - } - }, - "fontSizeAdjust": { - "defaultValue": null, - "description": "", - "name": "fontSizeAdjust", - "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" - } - }, - "fontStretch": { - "defaultValue": null, - "description": "", - "name": "fontStretch", - "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" - } - }, - "fontStyle": { - "defaultValue": null, - "description": "", - "name": "fontStyle", - "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" - } - }, - "fontVariant": { - "defaultValue": null, - "description": "", - "name": "fontVariant", - "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" - } - }, - "fontWeight": { - "defaultValue": null, - "description": "", - "name": "fontWeight", - "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" - } - }, - "format": { - "defaultValue": null, - "description": "", - "name": "format", - "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" - } - }, - "fr": { - "defaultValue": null, - "description": "", - "name": "fr", - "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" - } - }, - "from": { - "defaultValue": null, - "description": "", - "name": "from", - "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" - } - }, - "fx": { - "defaultValue": null, - "description": "", - "name": "fx", - "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" - } - }, - "fy": { - "defaultValue": null, - "description": "", - "name": "fy", - "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" - } - }, - "g1": { - "defaultValue": null, - "description": "", - "name": "g1", - "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" - } - }, - "g2": { - "defaultValue": null, - "description": "", - "name": "g2", - "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" - } - }, - "glyphName": { - "defaultValue": null, - "description": "", - "name": "glyphName", - "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" - } - }, - "glyphOrientationHorizontal": { - "defaultValue": null, - "description": "", - "name": "glyphOrientationHorizontal", - "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" - } - }, - "glyphOrientationVertical": { - "defaultValue": null, - "description": "", - "name": "glyphOrientationVertical", - "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" - } - }, - "glyphRef": { - "defaultValue": null, - "description": "", - "name": "glyphRef", - "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" - } - }, - "gradientTransform": { - "defaultValue": null, - "description": "", - "name": "gradientTransform", - "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" - } - }, - "gradientUnits": { - "defaultValue": null, - "description": "", - "name": "gradientUnits", - "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" - } - }, - "hanging": { - "defaultValue": null, - "description": "", - "name": "hanging", - "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" - } - }, - "horizAdvX": { - "defaultValue": null, - "description": "", - "name": "horizAdvX", - "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" - } - }, - "horizOriginX": { - "defaultValue": null, - "description": "", - "name": "horizOriginX", - "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" - } - }, - "href": { - "defaultValue": null, - "description": "", - "name": "href", - "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" - } - }, - "ideographic": { - "defaultValue": null, - "description": "", - "name": "ideographic", - "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" - } - }, - "imageRendering": { - "defaultValue": null, - "description": "", - "name": "imageRendering", - "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" - } - }, - "in2": { - "defaultValue": null, - "description": "", - "name": "in2", - "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" - } - }, - "in": { - "defaultValue": null, - "description": "", - "name": "in", - "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" - } - }, - "intercept": { - "defaultValue": null, - "description": "", - "name": "intercept", - "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" - } - }, - "k1": { - "defaultValue": null, - "description": "", - "name": "k1", - "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" - } - }, - "k2": { - "defaultValue": null, - "description": "", - "name": "k2", - "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" - } - }, - "k3": { - "defaultValue": null, - "description": "", - "name": "k3", - "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" - } - }, - "k4": { - "defaultValue": null, - "description": "", - "name": "k4", - "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" - } - }, - "k": { - "defaultValue": null, - "description": "", - "name": "k", - "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" - } - }, - "kernelMatrix": { - "defaultValue": null, - "description": "", - "name": "kernelMatrix", - "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" - } - }, - "kernelUnitLength": { - "defaultValue": null, - "description": "", - "name": "kernelUnitLength", - "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" - } - }, - "kerning": { - "defaultValue": null, - "description": "", - "name": "kerning", - "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" - } - }, - "keyPoints": { - "defaultValue": null, - "description": "", - "name": "keyPoints", - "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" - } - }, - "keySplines": { - "defaultValue": null, - "description": "", - "name": "keySplines", - "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" - } - }, - "keyTimes": { - "defaultValue": null, - "description": "", - "name": "keyTimes", - "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" - } - }, - "lengthAdjust": { - "defaultValue": null, - "description": "", - "name": "lengthAdjust", - "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" - } - }, - "letterSpacing": { - "defaultValue": null, - "description": "", - "name": "letterSpacing", - "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" - } - }, - "lightingColor": { - "defaultValue": null, - "description": "", - "name": "lightingColor", - "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" - } - }, - "limitingConeAngle": { - "defaultValue": null, - "description": "", - "name": "limitingConeAngle", - "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" - } - }, - "local": { - "defaultValue": null, - "description": "", - "name": "local", - "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" - } - }, - "markerEnd": { - "defaultValue": null, - "description": "", - "name": "markerEnd", - "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" - } - }, - "markerHeight": { - "defaultValue": null, - "description": "", - "name": "markerHeight", - "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" - } - }, - "markerMid": { - "defaultValue": null, - "description": "", - "name": "markerMid", - "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" - } - }, - "markerStart": { - "defaultValue": null, - "description": "", - "name": "markerStart", - "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" - } - }, - "markerUnits": { - "defaultValue": null, - "description": "", - "name": "markerUnits", - "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" - } - }, - "markerWidth": { - "defaultValue": null, - "description": "", - "name": "markerWidth", - "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" - } - }, - "maskContentUnits": { - "defaultValue": null, - "description": "", - "name": "maskContentUnits", - "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" - } - }, - "maskUnits": { - "defaultValue": null, - "description": "", - "name": "maskUnits", - "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" - } - }, - "mathematical": { - "defaultValue": null, - "description": "", - "name": "mathematical", - "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" - } - }, - "mode": { - "defaultValue": null, - "description": "", - "name": "mode", - "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" - } - }, - "numOctaves": { - "defaultValue": null, - "description": "", - "name": "numOctaves", - "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" - } - }, - "offset": { - "defaultValue": null, - "description": "", - "name": "offset", - "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" - } - }, - "opacity": { - "defaultValue": null, - "description": "", - "name": "opacity", - "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" - } - }, - "operator": { - "defaultValue": null, - "description": "", - "name": "operator", - "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" - } - }, - "order": { - "defaultValue": null, - "description": "", - "name": "order", - "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" - } - }, - "orient": { - "defaultValue": null, - "description": "", - "name": "orient", - "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" - } - }, - "orientation": { - "defaultValue": null, - "description": "", - "name": "orientation", - "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" - } - }, - "origin": { - "defaultValue": null, - "description": "", - "name": "origin", - "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" - } - }, - "overflow": { - "defaultValue": null, - "description": "", - "name": "overflow", - "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" - } - }, - "overlinePosition": { - "defaultValue": null, - "description": "", - "name": "overlinePosition", - "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" - } - }, - "overlineThickness": { - "defaultValue": null, - "description": "", - "name": "overlineThickness", - "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" - } - }, - "paintOrder": { - "defaultValue": null, - "description": "", - "name": "paintOrder", - "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" - } - }, - "panose1": { - "defaultValue": null, - "description": "", - "name": "panose1", - "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" - } - }, - "pathLength": { - "defaultValue": null, - "description": "", - "name": "pathLength", - "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" - } - }, - "patternContentUnits": { - "defaultValue": null, - "description": "", - "name": "patternContentUnits", - "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" - } - }, - "patternTransform": { - "defaultValue": null, - "description": "", - "name": "patternTransform", - "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" - } - }, - "patternUnits": { - "defaultValue": null, - "description": "", - "name": "patternUnits", - "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" - } - }, - "pointerEvents": { - "defaultValue": null, - "description": "", - "name": "pointerEvents", - "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" - } - }, - "points": { - "defaultValue": null, - "description": "", - "name": "points", - "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" - } - }, - "pointsAtX": { - "defaultValue": null, - "description": "", - "name": "pointsAtX", - "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" - } - }, - "pointsAtY": { - "defaultValue": null, - "description": "", - "name": "pointsAtY", - "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" - } - }, - "pointsAtZ": { - "defaultValue": null, - "description": "", - "name": "pointsAtZ", - "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" - } - }, - "preserveAlpha": { - "defaultValue": null, - "description": "", - "name": "preserveAlpha", - "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": "Booleanish" - } - }, - "preserveAspectRatio": { - "defaultValue": null, - "description": "", - "name": "preserveAspectRatio", - "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" - } - }, - "primitiveUnits": { - "defaultValue": null, - "description": "", - "name": "primitiveUnits", - "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" - } - }, - "r": { - "defaultValue": null, - "description": "", - "name": "r", - "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" - } - }, - "radius": { - "defaultValue": null, - "description": "", - "name": "radius", - "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" - } - }, - "refX": { - "defaultValue": null, - "description": "", - "name": "refX", - "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" - } - }, - "refY": { - "defaultValue": null, - "description": "", - "name": "refY", - "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" - } - }, - "renderingIntent": { - "defaultValue": null, - "description": "", - "name": "renderingIntent", - "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" - } - }, - "repeatCount": { - "defaultValue": null, - "description": "", - "name": "repeatCount", - "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" - } - }, - "repeatDur": { - "defaultValue": null, - "description": "", - "name": "repeatDur", - "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" - } - }, - "requiredExtensions": { - "defaultValue": null, - "description": "", - "name": "requiredExtensions", - "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" - } - }, - "requiredFeatures": { - "defaultValue": null, - "description": "", - "name": "requiredFeatures", - "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" - } - }, - "restart": { - "defaultValue": null, - "description": "", - "name": "restart", - "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" - } - }, - "result": { - "defaultValue": null, - "description": "", - "name": "result", - "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" - } - }, - "rotate": { - "defaultValue": null, - "description": "", - "name": "rotate", - "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" - } - }, - "rx": { - "defaultValue": null, - "description": "", - "name": "rx", - "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" - } - }, - "ry": { - "defaultValue": null, - "description": "", - "name": "ry", - "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" - } - }, - "scale": { - "defaultValue": null, - "description": "", - "name": "scale", - "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" - } - }, - "seed": { - "defaultValue": null, - "description": "", - "name": "seed", - "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" - } - }, - "shapeRendering": { - "defaultValue": null, - "description": "", - "name": "shapeRendering", - "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" - } - }, - "slope": { - "defaultValue": null, - "description": "", - "name": "slope", - "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" - } - }, - "spacing": { - "defaultValue": null, - "description": "", - "name": "spacing", - "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" - } - }, - "specularConstant": { - "defaultValue": null, - "description": "", - "name": "specularConstant", - "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" - } - }, - "specularExponent": { - "defaultValue": null, - "description": "", - "name": "specularExponent", - "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" - } - }, - "speed": { - "defaultValue": null, - "description": "", - "name": "speed", - "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" - } - }, - "spreadMethod": { - "defaultValue": null, - "description": "", - "name": "spreadMethod", - "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" - } - }, - "startOffset": { - "defaultValue": null, - "description": "", - "name": "startOffset", - "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" - } - }, - "stdDeviation": { - "defaultValue": null, - "description": "", - "name": "stdDeviation", - "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" - } - }, - "stemh": { - "defaultValue": null, - "description": "", - "name": "stemh", - "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" - } - }, - "stemv": { - "defaultValue": null, - "description": "", - "name": "stemv", - "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" - } - }, - "stitchTiles": { - "defaultValue": null, - "description": "", - "name": "stitchTiles", - "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" - } - }, - "stopColor": { - "defaultValue": null, - "description": "", - "name": "stopColor", - "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" - } - }, - "stopOpacity": { - "defaultValue": null, - "description": "", - "name": "stopOpacity", - "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" - } - }, - "strikethroughPosition": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strikethroughThickness": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "stroke": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string" - } - }, - "strokeDasharray": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strokeDashoffset": { - "defaultValue": null, - "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/node_modules/.pnpm/@types+react@18.3.3/node_modules/@types/react/index.d.ts", - "name": "SVGAttributes" - } - ], - "required": false, - "type": { - "name": "string | number" - } - }, - "strokeLinecap": { - "defaultValue": null, - "description": "", - "name": "strokeLinecap", - "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": "\"inherit\" | \"butt\" | \"round\" | \"square\"" - } - }, - "strokeLinejoin": { - "defaultValue": null, - "description": "", - "name": "strokeLinejoin", - "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": "\"inherit\" | \"round\" | \"miter\" | \"bevel\"" - } - }, - "strokeMiterlimit": { - "defaultValue": null, - "description": "", - "name": "strokeMiterlimit", - "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" - } - }, - "strokeOpacity": { - "defaultValue": null, - "description": "", - "name": "strokeOpacity", - "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" - } - }, - "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" - }, - "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" - } - }, - "surfaceScale": { - "defaultValue": null, - "description": "", - "name": "surfaceScale", - "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" - } - }, - "systemLanguage": { - "defaultValue": null, - "description": "", - "name": "systemLanguage", - "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" - } - }, - "tableValues": { - "defaultValue": null, - "description": "", - "name": "tableValues", - "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" - } - }, - "targetX": { - "defaultValue": null, - "description": "", - "name": "targetX", - "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" - } - }, - "targetY": { - "defaultValue": null, - "description": "", - "name": "targetY", - "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" - } - }, - "textAnchor": { - "defaultValue": null, - "description": "", - "name": "textAnchor", - "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" - } - }, - "textDecoration": { - "defaultValue": null, - "description": "", - "name": "textDecoration", - "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" - } - }, - "textLength": { - "defaultValue": null, - "description": "", - "name": "textLength", - "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" - } - }, - "textRendering": { - "defaultValue": null, - "description": "", - "name": "textRendering", - "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" - } - }, - "to": { - "defaultValue": null, - "description": "", - "name": "to", - "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" - } - }, - "transform": { - "defaultValue": null, - "description": "", - "name": "transform", - "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" - } - }, - "u1": { - "defaultValue": null, - "description": "", - "name": "u1", - "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" - } - }, - "u2": { - "defaultValue": null, - "description": "", - "name": "u2", - "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" - } - }, - "underlinePosition": { - "defaultValue": null, - "description": "", - "name": "underlinePosition", - "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" - } - }, - "underlineThickness": { - "defaultValue": null, - "description": "", - "name": "underlineThickness", - "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" - } - }, - "unicode": { - "defaultValue": null, - "description": "", - "name": "unicode", - "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" - } - }, - "unicodeBidi": { - "defaultValue": null, - "description": "", - "name": "unicodeBidi", - "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" - } - }, - "unicodeRange": { - "defaultValue": null, - "description": "", - "name": "unicodeRange", - "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" - } - }, - "unitsPerEm": { - "defaultValue": null, - "description": "", - "name": "unitsPerEm", - "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" - } - }, - "vAlphabetic": { - "defaultValue": null, - "description": "", - "name": "vAlphabetic", - "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" - } - }, - "values": { - "defaultValue": null, - "description": "", - "name": "values", - "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" - } - }, - "vectorEffect": { - "defaultValue": null, - "description": "", - "name": "vectorEffect", - "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" - } - }, - "version": { - "defaultValue": null, - "description": "", - "name": "version", - "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" - } - }, - "vertAdvY": { - "defaultValue": null, - "description": "", - "name": "vertAdvY", - "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" - } - }, - "vertOriginX": { - "defaultValue": null, - "description": "", - "name": "vertOriginX", - "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" - } - }, - "vertOriginY": { - "defaultValue": null, - "description": "", - "name": "vertOriginY", - "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" - } - }, - "vHanging": { - "defaultValue": null, - "description": "", - "name": "vHanging", - "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" - } - }, - "vIdeographic": { - "defaultValue": null, - "description": "", - "name": "vIdeographic", - "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" - } - }, - "viewBox": { - "defaultValue": null, - "description": "", - "name": "viewBox", - "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" - } - }, - "viewTarget": { - "defaultValue": null, - "description": "", - "name": "viewTarget", - "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" - } - }, - "visibility": { - "defaultValue": null, - "description": "", - "name": "visibility", - "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" - } - }, - "vMathematical": { - "defaultValue": null, - "description": "", - "name": "vMathematical", - "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" - } - }, - "widths": { - "defaultValue": null, - "description": "", - "name": "widths", - "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" - } - }, - "wordSpacing": { - "defaultValue": null, - "description": "", - "name": "wordSpacing", - "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" - } - }, - "writingMode": { - "defaultValue": null, - "description": "", - "name": "writingMode", - "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" - } - }, - "x1": { - "defaultValue": null, - "description": "", - "name": "x1", - "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" - } - }, - "x2": { - "defaultValue": null, - "description": "", - "name": "x2", - "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" - } - }, - "x": { - "defaultValue": null, - "description": "", - "name": "x", - "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" - } - }, - "xChannelSelector": { - "defaultValue": null, - "description": "", - "name": "xChannelSelector", - "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" - } - }, - "xHeight": { - "defaultValue": null, - "description": "", - "name": "xHeight", - "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" - } - }, - "xlinkActuate": { - "defaultValue": null, - "description": "", - "name": "xlinkActuate", - "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" - } - }, - "xlinkArcrole": { - "defaultValue": null, - "description": "", - "name": "xlinkArcrole", - "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" - } - }, - "xlinkHref": { - "defaultValue": null, - "description": "", - "name": "xlinkHref", - "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" - } - }, - "xlinkRole": { - "defaultValue": null, - "description": "", - "name": "xlinkRole", - "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" - } - }, - "xlinkShow": { - "defaultValue": null, - "description": "", - "name": "xlinkShow", - "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" - } - }, - "xlinkTitle": { - "defaultValue": null, - "description": "", - "name": "xlinkTitle", - "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" - } - }, - "xlinkType": { - "defaultValue": null, - "description": "", - "name": "xlinkType", - "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" - } - }, - "xmlBase": { - "defaultValue": null, - "description": "", - "name": "xmlBase", - "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" - } - }, - "xmlLang": { - "defaultValue": null, - "description": "", - "name": "xmlLang", - "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" - } - }, - "xmlns": { - "defaultValue": null, - "description": "", - "name": "xmlns", - "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" - } - }, - "xmlnsXlink": { - "defaultValue": null, - "description": "", - "name": "xmlnsXlink", - "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" - } - }, - "xmlSpace": { - "defaultValue": null, - "description": "", - "name": "xmlSpace", - "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" - } - }, - "y1": { - "defaultValue": null, - "description": "", - "name": "y1", - "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" - } - }, - "y2": { - "defaultValue": null, - "description": "", - "name": "y2", - "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" - } - }, - "y": { - "defaultValue": null, - "description": "", - "name": "y", - "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" - } - }, - "yChannelSelector": { - "defaultValue": null, - "description": "", - "name": "yChannelSelector", - "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" - } - }, - "z": { - "defaultValue": null, - "description": "", - "name": "z", - "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" - } - }, - "zoomAndPan": { - "defaultValue": null, - "description": "", - "name": "zoomAndPan", - "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" - } - }, - "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 | \"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\" | \"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\" | \"menu\" | \"grid\" | \"listbox\" | \"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": "\"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" - } - }, - "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" - }, - { - "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" - } - }, - "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" - } - } - }, - "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/provider/provider.mdx b/docs/content/components/application/provider/provider.mdx index a71b5bc0b2..c9b4729668 100644 --- a/docs/content/components/application/provider/provider.mdx +++ b/docs/content/components/application/provider/provider.mdx @@ -1,5 +1,5 @@ --- -title: Provider +title: MarigoldProvider caption: Provider which applies the theme. --- @@ -25,7 +25,7 @@ import { MarigoldProvider } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/application/routerprovider/routerprovider.mdx b/docs/content/components/application/routerprovider/routerprovider.mdx index ca7fee4d1b..069a724a4c 100644 --- a/docs/content/components/application/routerprovider/routerprovider.mdx +++ b/docs/content/components/application/routerprovider/routerprovider.mdx @@ -14,7 +14,7 @@ import { RouterProvider } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/collection/accordion/accordion.mdx b/docs/content/components/collection/accordion/accordion.mdx index fb1b1bd9d7..89211676f1 100644 --- a/docs/content/components/collection/accordion/accordion.mdx +++ b/docs/content/components/collection/accordion/accordion.mdx @@ -22,11 +22,11 @@ import { Accordion } from '@marigold/components'; ### Accordion - + ### Accordion.Item - + ## Examples diff --git a/docs/content/components/collection/selectlist/selectlist.mdx b/docs/content/components/collection/selectlist/selectlist.mdx index 7af7215d80..164715d31f 100644 --- a/docs/content/components/collection/selectlist/selectlist.mdx +++ b/docs/content/components/collection/selectlist/selectlist.mdx @@ -17,11 +17,11 @@ import { SelectList } from '@marigold/components'; ### SelectList - + ### SelectList.Item - + ## Examples diff --git a/docs/content/components/collection/table/table.mdx b/docs/content/components/collection/table/table.mdx index e9df5eab5d..f194b5563a 100644 --- a/docs/content/components/collection/table/table.mdx +++ b/docs/content/components/collection/table/table.mdx @@ -23,7 +23,7 @@ import { Table } from '@marigold/components'; ### Table - + ### Table.Header @@ -31,19 +31,19 @@ import { Table } from '@marigold/components'; ### Table.Column - + ### Table.Body - + ### Table.Row - + ### Table.Cell - + ## Examples diff --git a/docs/content/components/collection/tag/tag.mdx b/docs/content/components/collection/tag/tag.mdx index af084e81fb..f66b65a478 100644 --- a/docs/content/components/collection/tag/tag.mdx +++ b/docs/content/components/collection/tag/tag.mdx @@ -19,9 +19,15 @@ import { Tag } from '@marigold/components'; -### Group props +## Props - +### Tag + + + +### Tag.Group + + ## Examples diff --git a/docs/content/components/content/badge/badge.mdx b/docs/content/components/content/badge/badge.mdx index 74a538a109..d65a02aacd 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/card/card.mdx b/docs/content/components/content/card/card.mdx index 41a1225bea..bbc167e54b 100644 --- a/docs/content/components/content/card/card.mdx +++ b/docs/content/components/content/card/card.mdx @@ -21,7 +21,7 @@ import { Card } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/content/headline/headline.mdx b/docs/content/components/content/headline/headline.mdx index 99383ac406..88a43eb288 100644 --- a/docs/content/components/content/headline/headline.mdx +++ b/docs/content/components/content/headline/headline.mdx @@ -23,7 +23,7 @@ import { Headline } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/content/icon/icon.mdx b/docs/content/components/content/icon/icon.mdx index 62927b38bf..15de001328 100644 --- a/docs/content/components/content/icon/icon.mdx +++ b/docs/content/components/content/icon/icon.mdx @@ -37,7 +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/image/image.mdx b/docs/content/components/content/image/image.mdx index c711170a1a..d0a64b3582 100644 --- a/docs/content/components/content/image/image.mdx +++ b/docs/content/components/content/image/image.mdx @@ -24,7 +24,7 @@ import { Image } from '@marigold/components'; ## Props - + ## Usage diff --git a/docs/content/components/content/link/link.mdx b/docs/content/components/content/link/link.mdx index 8538e34e0b..b49f5e56e1 100644 --- a/docs/content/components/content/link/link.mdx +++ b/docs/content/components/content/link/link.mdx @@ -18,7 +18,7 @@ import { Link } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/content/list/list.mdx b/docs/content/components/content/list/list.mdx index 0653543cfa..fe44a6c77e 100644 --- a/docs/content/components/content/list/list.mdx +++ b/docs/content/components/content/list/list.mdx @@ -22,7 +22,7 @@ import { List } from '@marigold/components'; ## Props - + ## Usage diff --git a/docs/content/components/content/section-message/section-message.mdx b/docs/content/components/content/section-message/section-message.mdx index f789664b13..75c745e324 100644 --- a/docs/content/components/content/section-message/section-message.mdx +++ b/docs/content/components/content/section-message/section-message.mdx @@ -24,7 +24,7 @@ import { SectionMessage } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/content/svg/svg.mdx b/docs/content/components/content/svg/svg.mdx index e623b92774..24eec3c5da 100644 --- a/docs/content/components/content/svg/svg.mdx +++ b/docs/content/components/content/svg/svg.mdx @@ -15,7 +15,7 @@ import { SVG } from '@marigold/system'; ## Props - + ## Examples diff --git a/docs/content/components/content/text/text.mdx b/docs/content/components/content/text/text.mdx index a05191f023..1d045a202a 100644 --- a/docs/content/components/content/text/text.mdx +++ b/docs/content/components/content/text/text.mdx @@ -19,7 +19,7 @@ import { Text } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/content/visually-hidden/visually-hidden.mdx b/docs/content/components/content/visually-hidden/visually-hidden.mdx index 310f6ede0f..bd09a6a846 100644 --- a/docs/content/components/content/visually-hidden/visually-hidden.mdx +++ b/docs/content/components/content/visually-hidden/visually-hidden.mdx @@ -15,7 +15,7 @@ import { VisuallyHidden } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/content/xloader/xloader.mdx b/docs/content/components/content/xloader/xloader.mdx index b10dc7c191..ba7e4fc114 100644 --- a/docs/content/components/content/xloader/xloader.mdx +++ b/docs/content/components/content/xloader/xloader.mdx @@ -20,7 +20,7 @@ import { XLoader } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/form/autocomplete/autocomplete.mdx b/docs/content/components/form/autocomplete/autocomplete.mdx index 1894cd28f9..f22869575c 100644 --- a/docs/content/components/form/autocomplete/autocomplete.mdx +++ b/docs/content/components/form/autocomplete/autocomplete.mdx @@ -21,11 +21,11 @@ import { Autocomplete } from '@marigold/components'; ### Autocomplete - + ### Autocomplete.Item - + ## Examples diff --git a/docs/content/components/form/button/button.mdx b/docs/content/components/form/button/button.mdx index a21b4d4502..ae80a8c208 100644 --- a/docs/content/components/form/button/button.mdx +++ b/docs/content/components/form/button/button.mdx @@ -20,7 +20,7 @@ import { Button } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/form/calendar/calendar.mdx b/docs/content/components/form/calendar/calendar.mdx index b564d1194d..0c66d60903 100644 --- a/docs/content/components/form/calendar/calendar.mdx +++ b/docs/content/components/form/calendar/calendar.mdx @@ -19,7 +19,7 @@ import { Calendar } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/form/checkbox/checkbox.mdx b/docs/content/components/form/checkbox/checkbox.mdx index 94d5d75adf..83c849c304 100644 --- a/docs/content/components/form/checkbox/checkbox.mdx +++ b/docs/content/components/form/checkbox/checkbox.mdx @@ -23,11 +23,11 @@ import { Checkbox, CheckboxGroup } from '@marigold/components'; ### Checkbox - + ### Checkbox.Group - + ## Examples diff --git a/docs/content/components/form/combobox/combobox.mdx b/docs/content/components/form/combobox/combobox.mdx index d4e2b39d9a..19e9166081 100644 --- a/docs/content/components/form/combobox/combobox.mdx +++ b/docs/content/components/form/combobox/combobox.mdx @@ -21,11 +21,11 @@ import { ComboBox } from '@marigold/components'; ### ComboBox - + ### ComboBox.Item - + ## Examples diff --git a/docs/content/components/form/datefield/datefield.mdx b/docs/content/components/form/datefield/datefield.mdx index 3be5112696..a0e44af84f 100644 --- a/docs/content/components/form/datefield/datefield.mdx +++ b/docs/content/components/form/datefield/datefield.mdx @@ -19,7 +19,7 @@ import { DateField } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/form/datepicker/datepicker.mdx b/docs/content/components/form/datepicker/datepicker.mdx index 450f967bc0..6f4900f3cf 100644 --- a/docs/content/components/form/datepicker/datepicker.mdx +++ b/docs/content/components/form/datepicker/datepicker.mdx @@ -19,7 +19,7 @@ import { DatePicker } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/form/fieldgroup/field-group.mdx b/docs/content/components/form/fieldgroup/field-group.mdx index 57e5c01c21..c92ac8fdd0 100644 --- a/docs/content/components/form/fieldgroup/field-group.mdx +++ b/docs/content/components/form/fieldgroup/field-group.mdx @@ -24,7 +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 0ec571cc71..b2a5f328ba 100644 --- a/docs/content/components/form/form/form.mdx +++ b/docs/content/components/form/form/form.mdx @@ -19,7 +19,7 @@ import { Form } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/form/number-field/number-field.mdx b/docs/content/components/form/number-field/number-field.mdx index c11d129858..eb176443f4 100644 --- a/docs/content/components/form/number-field/number-field.mdx +++ b/docs/content/components/form/number-field/number-field.mdx @@ -21,7 +21,7 @@ import { NumberField } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/form/radio/radio.mdx b/docs/content/components/form/radio/radio.mdx index 4d5786ff3c..ddda2f54d8 100644 --- a/docs/content/components/form/radio/radio.mdx +++ b/docs/content/components/form/radio/radio.mdx @@ -21,11 +21,11 @@ import { Radio } from '@marigold/components'; ### Radio - + ### Radio.Group - + ## Examples diff --git a/docs/content/components/form/search-field/search-field.mdx b/docs/content/components/form/search-field/search-field.mdx index 4e838686d4..74b63147e0 100644 --- a/docs/content/components/form/search-field/search-field.mdx +++ b/docs/content/components/form/search-field/search-field.mdx @@ -19,7 +19,7 @@ import { SearchField } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/form/select/select.mdx b/docs/content/components/form/select/select.mdx index 806c602a0e..973214b050 100644 --- a/docs/content/components/form/select/select.mdx +++ b/docs/content/components/form/select/select.mdx @@ -21,15 +21,15 @@ import { Select } from '@marigold/components'; ### Select - + ### Select.Section - + ### Select.Option - + ## Examples diff --git a/docs/content/components/form/slider/slider.mdx b/docs/content/components/form/slider/slider.mdx index 3d96b1182d..4583ff3689 100644 --- a/docs/content/components/form/slider/slider.mdx +++ b/docs/content/components/form/slider/slider.mdx @@ -19,7 +19,7 @@ import { Slider } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/form/switch/switch.mdx b/docs/content/components/form/switch/switch.mdx index dc4a4f508b..deec93f33c 100644 --- a/docs/content/components/form/switch/switch.mdx +++ b/docs/content/components/form/switch/switch.mdx @@ -22,7 +22,7 @@ import { Switch } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/form/text-area/text-area.mdx b/docs/content/components/form/text-area/text-area.mdx index 46d905b4b6..53e5f858dd 100644 --- a/docs/content/components/form/text-area/text-area.mdx +++ b/docs/content/components/form/text-area/text-area.mdx @@ -21,7 +21,7 @@ import { TextArea } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/form/textfield/textfield.mdx b/docs/content/components/form/textfield/textfield.mdx index 7816c44659..d5f1736893 100644 --- a/docs/content/components/form/textfield/textfield.mdx +++ b/docs/content/components/form/textfield/textfield.mdx @@ -21,7 +21,7 @@ import { TextField } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/formatters/dateformat/dateFormat.mdx b/docs/content/components/formatters/dateformat/dateFormat.mdx index 58c768d0f0..0adcf46f18 100644 --- a/docs/content/components/formatters/dateformat/dateFormat.mdx +++ b/docs/content/components/formatters/dateformat/dateFormat.mdx @@ -25,7 +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 2d10a57065..2f783357d7 100644 --- a/docs/content/components/formatters/numericformat/numericFormat.mdx +++ b/docs/content/components/formatters/numericformat/numericFormat.mdx @@ -26,7 +26,7 @@ import { NumericFormat } from '@marigold/system'; ## Props - + ## Examples diff --git a/docs/content/components/layout/aside/aside.mdx b/docs/content/components/layout/aside/aside.mdx index 55c54642d0..a9ded04934 100644 --- a/docs/content/components/layout/aside/aside.mdx +++ b/docs/content/components/layout/aside/aside.mdx @@ -17,7 +17,7 @@ import { Aside } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/layout/aspect/aspect.mdx b/docs/content/components/layout/aspect/aspect.mdx index 39f58f952c..78ea829499 100644 --- a/docs/content/components/layout/aspect/aspect.mdx +++ b/docs/content/components/layout/aspect/aspect.mdx @@ -13,7 +13,7 @@ import { Aspect } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/layout/breakout/breakout.mdx b/docs/content/components/layout/breakout/breakout.mdx index 231688c292..63d7ab55af 100644 --- a/docs/content/components/layout/breakout/breakout.mdx +++ b/docs/content/components/layout/breakout/breakout.mdx @@ -17,7 +17,7 @@ import { Breakout } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/layout/center/center.mdx b/docs/content/components/layout/center/center.mdx index cb3d9ee6be..8a29db3906 100644 --- a/docs/content/components/layout/center/center.mdx +++ b/docs/content/components/layout/center/center.mdx @@ -16,7 +16,7 @@ import { Center } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/layout/columns/columns.mdx b/docs/content/components/layout/columns/columns.mdx index 0cc3de4a34..a09b4ff2da 100644 --- a/docs/content/components/layout/columns/columns.mdx +++ b/docs/content/components/layout/columns/columns.mdx @@ -14,7 +14,7 @@ import { Columns } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/layout/container/container.mdx b/docs/content/components/layout/container/container.mdx index 8f7c856444..babfba41a2 100644 --- a/docs/content/components/layout/container/container.mdx +++ b/docs/content/components/layout/container/container.mdx @@ -19,7 +19,7 @@ import { Container } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/layout/grid/grid.mdx b/docs/content/components/layout/grid/grid.mdx index fe36039d14..9afb744589 100644 --- a/docs/content/components/layout/grid/grid.mdx +++ b/docs/content/components/layout/grid/grid.mdx @@ -18,7 +18,7 @@ import { Grid } from '@marigold/components'; ### Grid - + ### Grid.Area diff --git a/docs/content/components/layout/inline/inline.mdx b/docs/content/components/layout/inline/inline.mdx index aa4fe87ac8..45c0133da3 100644 --- a/docs/content/components/layout/inline/inline.mdx +++ b/docs/content/components/layout/inline/inline.mdx @@ -13,7 +13,7 @@ import { Inline } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/layout/inset/inset.mdx b/docs/content/components/layout/inset/inset.mdx index 86d2da5bb3..8799601f4a 100644 --- a/docs/content/components/layout/inset/inset.mdx +++ b/docs/content/components/layout/inset/inset.mdx @@ -15,7 +15,7 @@ import { Inset } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/layout/scrollable/scrollable.mdx b/docs/content/components/layout/scrollable/scrollable.mdx index 0281fa2a47..1001323fc8 100644 --- a/docs/content/components/layout/scrollable/scrollable.mdx +++ b/docs/content/components/layout/scrollable/scrollable.mdx @@ -15,7 +15,7 @@ import { Scrollable } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/layout/stack/stack.mdx b/docs/content/components/layout/stack/stack.mdx index fbae39f84a..7e78bccf86 100644 --- a/docs/content/components/layout/stack/stack.mdx +++ b/docs/content/components/layout/stack/stack.mdx @@ -17,7 +17,7 @@ import { Stack } from '@marigold/components'; ## Props - + ## Examples diff --git a/docs/content/components/layout/tiles/tiles.mdx b/docs/content/components/layout/tiles/tiles.mdx index 7d6c670cb6..f3084b2eb7 100644 --- a/docs/content/components/layout/tiles/tiles.mdx +++ b/docs/content/components/layout/tiles/tiles.mdx @@ -19,7 +19,7 @@ import { Tiles } from '@marigold/components'; ### Props - + ## Examples diff --git a/docs/content/components/navigation/tabs/tabs.mdx b/docs/content/components/navigation/tabs/tabs.mdx index 0130aede4a..95c5dc5e7b 100644 --- a/docs/content/components/navigation/tabs/tabs.mdx +++ b/docs/content/components/navigation/tabs/tabs.mdx @@ -23,19 +23,19 @@ import { Tabs } from '@marigold/components'; ### Tabs - + ### Tabs.List - + ### Tabs.Item - + ### Tabs.TabPanel - + ## Examples diff --git a/docs/content/components/overlay/dialog/dialog.mdx b/docs/content/components/overlay/dialog/dialog.mdx index 7e2fe4fcee..5fa5c56aa6 100644 --- a/docs/content/components/overlay/dialog/dialog.mdx +++ b/docs/content/components/overlay/dialog/dialog.mdx @@ -25,11 +25,11 @@ import { Dialog } from '@marigold/components'; ### Dialog - + ### Dialog.Trigger - + ## Examples diff --git a/docs/content/components/overlay/menu/menu.mdx b/docs/content/components/overlay/menu/menu.mdx index 5a0ddb3cae..472a3e33ff 100644 --- a/docs/content/components/overlay/menu/menu.mdx +++ b/docs/content/components/overlay/menu/menu.mdx @@ -25,15 +25,15 @@ import { Menu } from '@marigold/components'; ### Menu - + ### Menu.Item - + ### Menu.Section - + ## Examples diff --git a/docs/content/components/overlay/tooltip/tooltip.mdx b/docs/content/components/overlay/tooltip/tooltip.mdx index e096b62f07..f575dc744e 100644 --- a/docs/content/components/overlay/tooltip/tooltip.mdx +++ b/docs/content/components/overlay/tooltip/tooltip.mdx @@ -21,11 +21,11 @@ import { Tooltip } from '@marigold/components'; ### Tooltip - + ### Tooltip.Trigger - + ## Examples diff --git a/docs/scripts/build-component-props.mjs b/docs/scripts/build-component-props.mjs index 24d0bd8dca..b6cee6800d 100644 --- a/docs/scripts/build-component-props.mjs +++ b/docs/scripts/build-component-props.mjs @@ -1,13 +1,18 @@ -import reactDocgenTypescript from 'react-docgen-typescript'; +// @ts-check +import docgen from 'react-docgen-typescript'; import { fileURLToPath } from 'url'; import { fs, globby, path } from 'zx'; console.log('📑 Generating props table...'); -const parser = reactDocgenTypescript.withCustomConfig('./tsconfig.json', { +const parser = docgen.withCustomConfig('./tsconfig.json', { shouldRemoveUndefinedFromOptional: true, shouldExtractLiteralValuesFromEnum: false, shouldExtractValuesFromUnion: false, + skipChildrenPropWithoutDoc: false, + propFilter: { + skipPropsWithName: ['variant', 'size', 'key'], + }, customComponentTypes: [ 'AutocompleteComponent', 'SelectComponent', @@ -23,53 +28,42 @@ 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, - '../.component-props/index.json' -); +const outputFilePath = path.resolve(__dirname, '../.registry/props.json'); -fs.ensureDirSync(path.dirname(outputFilePath)); +// Getting all component files using globby +const files = await globby([ + `${componentsDir}/**/*.tsx`, + `${systemDir}/**/*.tsx`, -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`, +]); - // excluded files - `!${componentsDir}/**/*.stories.tsx`, - `!${componentsDir}/**/*.test.tsx`, - `!${componentsDir}/**/*.ts`, - `!${systemDir}/**/*.stories.tsx`, - `!${systemDir}/**/*.test.tsx`, - `!${systemDir}/**/*.ts`, - ]); +const output = {}; - // Reduce to gather all docs - const allDocs = componentFiles.reduce((acc, filePath) => { - const docs = parser.parse(filePath); - const props = docs[0]?.props; +files.forEach(file => { + const docs = parser.parse(file); - if (docs.length > 0) { - const fileName = filePath.split('/').at(-1); + if (docs.length === 0) { + return; + } - // Filter out 'variant' and 'className' properties; - const excludedProps = ['variant', 'size']; - const filteredProps = Object.keys(props) - .filter(key => !excludedProps.includes(key)) - .reduce((obj, key) => { - obj[key] = props[key]; - return obj; - }, {}); + const { name } = path.parse(file); + const props = docs[0].props; - acc[fileName] = filteredProps; - } + output[name] = {}; - return acc; - }, {}); - - fs.writeJsonSync(outputFilePath, allDocs, { spaces: 2 }); - console.log(`✅ Successfully generated props table!`); -}; + for (const key in props) { + // Remove properties we do not need. + const { parent, declarations, ...val } = props[key]; + output[name][key] = val; + } +}); -generatePropsTables(); +await fs.writeJson(outputFilePath, output); +console.log(`✅ Successfully generated props table!`); diff --git a/docs/scripts/build-registry.mjs b/docs/scripts/build-registry.mjs index db90001f08..15b0eb3c56 100644 --- a/docs/scripts/build-registry.mjs +++ b/docs/scripts/build-registry.mjs @@ -30,5 +30,5 @@ for (const item of demoPath) { index += ` } as const;`; -fs.outputFileSync(path.join(process.cwd(), '.registry/index.tsx'), index); -console.log(`✅ Successfully built ${demoPath.length} registry items!`); +fs.outputFileSync(path.join(process.cwd(), '.registry/demos.tsx'), index); +console.log(`✅ Successfully built ${demoPath.length} registry items!\n`); diff --git a/docs/tsconfig.json b/docs/tsconfig.json index 71901d956c..15474e541a 100644 --- a/docs/tsconfig.json +++ b/docs/tsconfig.json @@ -31,7 +31,7 @@ "@/*": ["./*"], "@marigold/*/styles.css": ["../themes/*/dist/styles.css"], "@marigold/*": ["../packages/*/src", "../themes/*/src"], - "@/registry": ["./.registry"], + "@/registry/*": ["./.registry/*"], "contentlayer/generated": ["./.contentlayer/generated"] }, "strict": false diff --git a/docs/ui/ComponentDemo.tsx b/docs/ui/ComponentDemo.tsx index e5432fca0a..ac217c962d 100644 --- a/docs/ui/ComponentDemo.tsx +++ b/docs/ui/ComponentDemo.tsx @@ -1,4 +1,4 @@ -import { registry } from '@/registry'; +import { registry } from '@/registry/demos'; import { Card, FieldGroup, diff --git a/docs/ui/PropsTable.tsx b/docs/ui/PropsTable.tsx index 500d975809..5817a6645d 100644 --- a/docs/ui/PropsTable.tsx +++ b/docs/ui/PropsTable.tsx @@ -1,12 +1,10 @@ -'use client'; - +import componentProps from '@/registry/props.json'; import { Card, Inline, Table, Text } from '@/ui'; -import tableProps from '../.component-props/index.json'; import { BlankCanvas } from './icons'; export interface PropsTableProps { - componentFile?: string; + component?: string; } interface Prop { @@ -20,11 +18,11 @@ interface Prop { description: string; } -export const PropsTable = ({ componentFile }: PropsTableProps) => { +export const PropsTable = ({ component }: PropsTableProps) => { //make the props iterable const props = - componentFile && - (Object.entries((tableProps as any)[componentFile]).map( + component && + (Object.entries((componentProps as any)[component]).map( element => element[1] ) as Prop[]); return ( diff --git a/packages/components/src/Table/TableHeader.tsx b/packages/components/src/Table/TableHeader.tsx index 8c5669d5e4..554979b84a 100644 --- a/packages/components/src/Table/TableHeader.tsx +++ b/packages/components/src/Table/TableHeader.tsx @@ -3,7 +3,13 @@ import { ReactNode } from 'react'; import { useTableRowGroup } from '@react-aria/table'; export interface TableHeaderProps { + /** + * Children of the component. + */ children: ReactNode; + /** + * Makes the header stick to the viewport. + */ stickyHeader?: boolean; }