@alma-oss/spirit-web-react 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +240 -0
- package/bundles/web-react.umd.js +35315 -0
- package/bundles/web-react.umd.js.map +1 -0
- package/bundles/web-react.umd.min.js +16 -0
- package/bundles/web-react.umd.min.js.map +1 -0
- package/common/common.cjs +47 -0
- package/common/common.cjs.map +1 -0
- package/common/constants/constants.cjs +16 -0
- package/common/constants/constants.cjs.map +1 -0
- package/common/constants/environments.d.ts +8 -0
- package/common/constants/environments.js +9 -0
- package/common/constants/environments.js.map +1 -0
- package/common/constants/index.d.ts +1 -0
- package/common/constants/index.js +2 -0
- package/common/constants/index.js.map +1 -0
- package/common/constants/package.json +8 -0
- package/common/index.d.ts +2 -0
- package/common/index.js +3 -0
- package/common/index.js.map +1 -0
- package/common/package.json +8 -0
- package/common/utilities/index.d.ts +2 -0
- package/common/utilities/index.js +3 -0
- package/common/utilities/index.js.map +1 -0
- package/common/utilities/info.d.ts +2 -0
- package/common/utilities/info.js +14 -0
- package/common/utilities/info.js.map +1 -0
- package/common/utilities/package.json +8 -0
- package/common/utilities/utilities.cjs +39 -0
- package/common/utilities/utilities.cjs.map +1 -0
- package/common/utilities/warning.d.ts +2 -0
- package/common/utilities/warning.js +19 -0
- package/common/utilities/warning.js.map +1 -0
- package/components/Accordion/Accordion.cjs +900 -0
- package/components/Accordion/Accordion.cjs.map +1 -0
- package/components/Accordion/Accordion.d.ts +7 -0
- package/components/Accordion/Accordion.js +32 -0
- package/components/Accordion/Accordion.js.map +1 -0
- package/components/Accordion/AccordionContent.d.ts +7 -0
- package/components/Accordion/AccordionContent.js +33 -0
- package/components/Accordion/AccordionContent.js.map +1 -0
- package/components/Accordion/AccordionContext.d.ts +7 -0
- package/components/Accordion/AccordionContext.js +13 -0
- package/components/Accordion/AccordionContext.js.map +1 -0
- package/components/Accordion/AccordionHeader.d.ts +7 -0
- package/components/Accordion/AccordionHeader.js +44 -0
- package/components/Accordion/AccordionHeader.js.map +1 -0
- package/components/Accordion/AccordionItem.d.ts +7 -0
- package/components/Accordion/AccordionItem.js +29 -0
- package/components/Accordion/AccordionItem.js.map +1 -0
- package/components/Accordion/AccordionItemContext.d.ts +7 -0
- package/components/Accordion/AccordionItemContext.js +12 -0
- package/components/Accordion/AccordionItemContext.js.map +1 -0
- package/components/Accordion/UncontrolledAccordion.d.ts +7 -0
- package/components/Accordion/UncontrolledAccordion.js +23 -0
- package/components/Accordion/UncontrolledAccordion.js.map +1 -0
- package/components/Accordion/index.d.ts +11 -0
- package/components/Accordion/index.js +12 -0
- package/components/Accordion/index.js.map +1 -0
- package/components/Accordion/package.json +8 -0
- package/components/Accordion/useAccordion.d.ts +2 -0
- package/components/Accordion/useAccordion.js +31 -0
- package/components/Accordion/useAccordion.js.map +1 -0
- package/components/Accordion/useAccordionAriaProps.d.ts +23 -0
- package/components/Accordion/useAccordionAriaProps.js +24 -0
- package/components/Accordion/useAccordionAriaProps.js.map +1 -0
- package/components/Accordion/useAccordionStyleProps.d.ts +13 -0
- package/components/Accordion/useAccordionStyleProps.js +24 -0
- package/components/Accordion/useAccordionStyleProps.js.map +1 -0
- package/components/Accordion/useOpenItem.d.ts +3 -0
- package/components/Accordion/useOpenItem.js +14 -0
- package/components/Accordion/useOpenItem.js.map +1 -0
- package/components/ActionGroup/ActionGroup.cjs +541 -0
- package/components/ActionGroup/ActionGroup.cjs.map +1 -0
- package/components/ActionGroup/ActionGroup.d.ts +7 -0
- package/components/ActionGroup/ActionGroup.js +33 -0
- package/components/ActionGroup/ActionGroup.js.map +1 -0
- package/components/ActionGroup/index.d.ts +1 -0
- package/components/ActionGroup/index.js +2 -0
- package/components/ActionGroup/index.js.map +1 -0
- package/components/ActionGroup/package.json +8 -0
- package/components/Alert/Alert.cjs +490 -0
- package/components/Alert/Alert.cjs.map +1 -0
- package/components/Alert/Alert.d.ts +7 -0
- package/components/Alert/Alert.js +36 -0
- package/components/Alert/Alert.js.map +1 -0
- package/components/Alert/index.d.ts +2 -0
- package/components/Alert/index.js +3 -0
- package/components/Alert/index.js.map +1 -0
- package/components/Alert/package.json +8 -0
- package/components/Alert/useAlertIcon.d.ts +3 -0
- package/components/Alert/useAlertIcon.js +12 -0
- package/components/Alert/useAlertIcon.js.map +1 -0
- package/components/Alert/useAlertStyleProps.d.ts +7 -0
- package/components/Alert/useAlertStyleProps.js +28 -0
- package/components/Alert/useAlertStyleProps.js.map +1 -0
- package/components/Avatar/Avatar.cjs +376 -0
- package/components/Avatar/Avatar.cjs.map +1 -0
- package/components/Avatar/Avatar.d.ts +4 -0
- package/components/Avatar/Avatar.js +33 -0
- package/components/Avatar/Avatar.js.map +1 -0
- package/components/Avatar/constants.d.ts +11 -0
- package/components/Avatar/constants.js +19 -0
- package/components/Avatar/constants.js.map +1 -0
- package/components/Avatar/index.d.ts +2 -0
- package/components/Avatar/index.js +3 -0
- package/components/Avatar/index.js.map +1 -0
- package/components/Avatar/package.json +8 -0
- package/components/Avatar/useAvatarStyleProps.d.ts +7 -0
- package/components/Avatar/useAvatarStyleProps.js +28 -0
- package/components/Avatar/useAvatarStyleProps.js.map +1 -0
- package/components/Box/Box.cjs +402 -0
- package/components/Box/Box.cjs.map +1 -0
- package/components/Box/Box.d.ts +7 -0
- package/components/Box/Box.js +32 -0
- package/components/Box/Box.js.map +1 -0
- package/components/Box/index.d.ts +2 -0
- package/components/Box/index.js +3 -0
- package/components/Box/index.js.map +1 -0
- package/components/Box/package.json +8 -0
- package/components/Box/useBoxStyleProps.d.ts +7 -0
- package/components/Box/useBoxStyleProps.js +38 -0
- package/components/Box/useBoxStyleProps.js.map +1 -0
- package/components/Breadcrumbs/Breadcrumbs.cjs +575 -0
- package/components/Breadcrumbs/Breadcrumbs.cjs.map +1 -0
- package/components/Breadcrumbs/Breadcrumbs.d.ts +7 -0
- package/components/Breadcrumbs/Breadcrumbs.js +37 -0
- package/components/Breadcrumbs/Breadcrumbs.js.map +1 -0
- package/components/Breadcrumbs/BreadcrumbsItem.d.ts +7 -0
- package/components/Breadcrumbs/BreadcrumbsItem.js +37 -0
- package/components/Breadcrumbs/BreadcrumbsItem.js.map +1 -0
- package/components/Breadcrumbs/index.d.ts +3 -0
- package/components/Breadcrumbs/index.js +4 -0
- package/components/Breadcrumbs/index.js.map +1 -0
- package/components/Breadcrumbs/package.json +8 -0
- package/components/Breadcrumbs/useBreadcrumbsStyleProps.d.ts +9 -0
- package/components/Breadcrumbs/useBreadcrumbsStyleProps.js +32 -0
- package/components/Breadcrumbs/useBreadcrumbsStyleProps.js.map +1 -0
- package/components/Button/Button.cjs +696 -0
- package/components/Button/Button.cjs.map +1 -0
- package/components/Button/Button.d.ts +3 -0
- package/components/Button/Button.js +45 -0
- package/components/Button/Button.js.map +1 -0
- package/components/Button/index.d.ts +6 -0
- package/components/Button/index.js +7 -0
- package/components/Button/index.js.map +1 -0
- package/components/Button/package.json +8 -0
- package/components/Button/useButtonProps.d.ts +6 -0
- package/components/Button/useButtonProps.js +13 -0
- package/components/Button/useButtonProps.js.map +1 -0
- package/components/Button/useButtonStyleProps.d.ts +7 -0
- package/components/Button/useButtonStyleProps.js +46 -0
- package/components/Button/useButtonStyleProps.js.map +1 -0
- package/components/ButtonLink/ButtonLink.d.ts +3 -0
- package/components/ButtonLink/ButtonLink.js +42 -0
- package/components/ButtonLink/ButtonLink.js.map +1 -0
- package/components/ButtonLink/index.d.ts +3 -0
- package/components/ButtonLink/index.js +4 -0
- package/components/ButtonLink/index.js.map +1 -0
- package/components/ButtonLink/useButtonLinkProps.d.ts +6 -0
- package/components/ButtonLink/useButtonLinkProps.js +16 -0
- package/components/ButtonLink/useButtonLinkProps.js.map +1 -0
- package/components/ButtonLink/useButtonLinkStyleProps.d.ts +7 -0
- package/components/ButtonLink/useButtonLinkStyleProps.js +46 -0
- package/components/ButtonLink/useButtonLinkStyleProps.js.map +1 -0
- package/components/Card/Card.cjs +681 -0
- package/components/Card/Card.cjs.map +1 -0
- package/components/Card/Card.d.ts +7 -0
- package/components/Card/Card.js +33 -0
- package/components/Card/Card.js.map +1 -0
- package/components/Card/CardArtwork.d.ts +7 -0
- package/components/Card/CardArtwork.js +30 -0
- package/components/Card/CardArtwork.js.map +1 -0
- package/components/Card/CardBody.d.ts +7 -0
- package/components/Card/CardBody.js +29 -0
- package/components/Card/CardBody.js.map +1 -0
- package/components/Card/CardEyebrow.d.ts +7 -0
- package/components/Card/CardEyebrow.js +25 -0
- package/components/Card/CardEyebrow.js.map +1 -0
- package/components/Card/CardFooter.d.ts +7 -0
- package/components/Card/CardFooter.js +30 -0
- package/components/Card/CardFooter.js.map +1 -0
- package/components/Card/CardLink.d.ts +5 -0
- package/components/Card/CardLink.js +31 -0
- package/components/Card/CardLink.js.map +1 -0
- package/components/Card/CardLogo.d.ts +7 -0
- package/components/Card/CardLogo.js +25 -0
- package/components/Card/CardLogo.js.map +1 -0
- package/components/Card/CardMedia.d.ts +7 -0
- package/components/Card/CardMedia.js +45 -0
- package/components/Card/CardMedia.js.map +1 -0
- package/components/Card/CardTitle.d.ts +7 -0
- package/components/Card/CardTitle.js +31 -0
- package/components/Card/CardTitle.js.map +1 -0
- package/components/Card/index.d.ts +10 -0
- package/components/Card/index.js +11 -0
- package/components/Card/index.js.map +1 -0
- package/components/Card/package.json +8 -0
- package/components/Card/useCardMediaStyleProps.d.ts +7 -0
- package/components/Card/useCardMediaStyleProps.js +15 -0
- package/components/Card/useCardMediaStyleProps.js.map +1 -0
- package/components/Card/useCardStyleProps.d.ts +27 -0
- package/components/Card/useCardStyleProps.js +58 -0
- package/components/Card/useCardStyleProps.js.map +1 -0
- package/components/Checkbox/Checkbox.cjs +639 -0
- package/components/Checkbox/Checkbox.cjs.map +1 -0
- package/components/Checkbox/Checkbox.d.ts +4 -0
- package/components/Checkbox/Checkbox.js +39 -0
- package/components/Checkbox/Checkbox.js.map +1 -0
- package/components/Checkbox/index.d.ts +2 -0
- package/components/Checkbox/index.js +3 -0
- package/components/Checkbox/index.js.map +1 -0
- package/components/Checkbox/package.json +8 -0
- package/components/Checkbox/useCheckboxStyleProps.d.ts +13 -0
- package/components/Checkbox/useCheckboxStyleProps.js +49 -0
- package/components/Checkbox/useCheckboxStyleProps.js.map +1 -0
- package/components/Collapse/Collapse.cjs +601 -0
- package/components/Collapse/Collapse.cjs.map +1 -0
- package/components/Collapse/Collapse.d.ts +7 -0
- package/components/Collapse/Collapse.js +60 -0
- package/components/Collapse/Collapse.js.map +1 -0
- package/components/Collapse/UncontrolledCollapse.d.ts +7 -0
- package/components/Collapse/UncontrolledCollapse.js +38 -0
- package/components/Collapse/UncontrolledCollapse.js.map +1 -0
- package/components/Collapse/index.d.ts +5 -0
- package/components/Collapse/index.js +6 -0
- package/components/Collapse/index.js.map +1 -0
- package/components/Collapse/package.json +8 -0
- package/components/Collapse/useCollapse.d.ts +7 -0
- package/components/Collapse/useCollapse.js +15 -0
- package/components/Collapse/useCollapse.js.map +1 -0
- package/components/Collapse/useCollapseAriaProps.d.ts +18 -0
- package/components/Collapse/useCollapseAriaProps.js +37 -0
- package/components/Collapse/useCollapseAriaProps.js.map +1 -0
- package/components/Collapse/useCollapseStyleProps.d.ts +11 -0
- package/components/Collapse/useCollapseStyleProps.js +19 -0
- package/components/Collapse/useCollapseStyleProps.js.map +1 -0
- package/components/Collapse/useResizeHeight.d.ts +2 -0
- package/components/Collapse/useResizeHeight.js +13 -0
- package/components/Collapse/useResizeHeight.js.map +1 -0
- package/components/Container/Container.cjs +341 -0
- package/components/Container/Container.cjs.map +1 -0
- package/components/Container/Container.d.ts +6 -0
- package/components/Container/Container.js +33 -0
- package/components/Container/Container.js.map +1 -0
- package/components/Container/index.d.ts +2 -0
- package/components/Container/index.js +3 -0
- package/components/Container/index.js.map +1 -0
- package/components/Container/package.json +8 -0
- package/components/Container/useContainerStyleProps.d.ts +6 -0
- package/components/Container/useContainerStyleProps.js +28 -0
- package/components/Container/useContainerStyleProps.js.map +1 -0
- package/components/ControlButton/ControlButton.d.ts +3 -0
- package/components/ControlButton/ControlButton.js +39 -0
- package/components/ControlButton/ControlButton.js.map +1 -0
- package/components/ControlButton/index.d.ts +3 -0
- package/components/ControlButton/index.js +4 -0
- package/components/ControlButton/index.js.map +1 -0
- package/components/ControlButton/useControlButtonProps.d.ts +6 -0
- package/components/ControlButton/useControlButtonProps.js +13 -0
- package/components/ControlButton/useControlButtonProps.js.map +1 -0
- package/components/ControlButton/useControlButtonStyleProps.d.ts +7 -0
- package/components/ControlButton/useControlButtonStyleProps.js +36 -0
- package/components/ControlButton/useControlButtonStyleProps.js.map +1 -0
- package/components/Dialog/Dialog.cjs +275 -0
- package/components/Dialog/Dialog.cjs.map +1 -0
- package/components/Dialog/Dialog.d.ts +4 -0
- package/components/Dialog/Dialog.js +41 -0
- package/components/Dialog/Dialog.js.map +1 -0
- package/components/Dialog/index.d.ts +2 -0
- package/components/Dialog/index.js +3 -0
- package/components/Dialog/index.js.map +1 -0
- package/components/Dialog/package.json +8 -0
- package/components/Dialog/useDialog.d.ts +6 -0
- package/components/Dialog/useDialog.js +54 -0
- package/components/Dialog/useDialog.js.map +1 -0
- package/components/Divider/Divider.cjs +302 -0
- package/components/Divider/Divider.cjs.map +1 -0
- package/components/Divider/Divider.d.ts +6 -0
- package/components/Divider/Divider.js +13 -0
- package/components/Divider/Divider.js.map +1 -0
- package/components/Divider/index.d.ts +2 -0
- package/components/Divider/index.js +3 -0
- package/components/Divider/index.js.map +1 -0
- package/components/Divider/package.json +8 -0
- package/components/Divider/useDividerStyleProps.d.ts +6 -0
- package/components/Divider/useDividerStyleProps.js +9 -0
- package/components/Divider/useDividerStyleProps.js.map +1 -0
- package/components/Drawer/Drawer.cjs +1048 -0
- package/components/Drawer/Drawer.cjs.map +1 -0
- package/components/Drawer/Drawer.d.ts +7 -0
- package/components/Drawer/Drawer.js +35 -0
- package/components/Drawer/Drawer.js.map +1 -0
- package/components/Drawer/DrawerCloseButton.d.ts +7 -0
- package/components/Drawer/DrawerCloseButton.js +42 -0
- package/components/Drawer/DrawerCloseButton.js.map +1 -0
- package/components/Drawer/DrawerContext.d.ts +10 -0
- package/components/Drawer/DrawerContext.js +14 -0
- package/components/Drawer/DrawerContext.js.map +1 -0
- package/components/Drawer/DrawerPanel.d.ts +4 -0
- package/components/Drawer/DrawerPanel.js +28 -0
- package/components/Drawer/DrawerPanel.js.map +1 -0
- package/components/Drawer/constants.d.ts +2 -0
- package/components/Drawer/constants.js +4 -0
- package/components/Drawer/constants.js.map +1 -0
- package/components/Drawer/index.d.ts +5 -0
- package/components/Drawer/index.js +6 -0
- package/components/Drawer/index.js.map +1 -0
- package/components/Drawer/package.json +8 -0
- package/components/Drawer/useDrawerStyleProps.d.ts +14 -0
- package/components/Drawer/useDrawerStyleProps.js +27 -0
- package/components/Drawer/useDrawerStyleProps.js.map +1 -0
- package/components/Dropdown/Dropdown.cjs +611 -0
- package/components/Dropdown/Dropdown.cjs.map +1 -0
- package/components/Dropdown/Dropdown.d.ts +7 -0
- package/components/Dropdown/Dropdown.js +42 -0
- package/components/Dropdown/Dropdown.js.map +1 -0
- package/components/Dropdown/DropdownContext.d.ts +19 -0
- package/components/Dropdown/DropdownContext.js +20 -0
- package/components/Dropdown/DropdownContext.js.map +1 -0
- package/components/Dropdown/DropdownPopover.d.ts +9 -0
- package/components/Dropdown/DropdownPopover.js +29 -0
- package/components/Dropdown/DropdownPopover.js.map +1 -0
- package/components/Dropdown/DropdownTrigger.d.ts +7 -0
- package/components/Dropdown/DropdownTrigger.js +34 -0
- package/components/Dropdown/DropdownTrigger.js.map +1 -0
- package/components/Dropdown/UncontrolledDropdown.d.ts +7 -0
- package/components/Dropdown/UncontrolledDropdown.js +31 -0
- package/components/Dropdown/UncontrolledDropdown.js.map +1 -0
- package/components/Dropdown/index.d.ts +8 -0
- package/components/Dropdown/index.js +9 -0
- package/components/Dropdown/index.js.map +1 -0
- package/components/Dropdown/package.json +8 -0
- package/components/Dropdown/useDropdown.d.ts +13 -0
- package/components/Dropdown/useDropdown.js +29 -0
- package/components/Dropdown/useDropdown.js.map +1 -0
- package/components/Dropdown/useDropdownAriaProps.d.ts +31 -0
- package/components/Dropdown/useDropdownAriaProps.js +29 -0
- package/components/Dropdown/useDropdownAriaProps.js.map +1 -0
- package/components/Dropdown/useDropdownStyleProps.d.ts +10 -0
- package/components/Dropdown/useDropdownStyleProps.js +36 -0
- package/components/Dropdown/useDropdownStyleProps.js.map +1 -0
- package/components/EmptyState/EmptyState.cjs +472 -0
- package/components/EmptyState/EmptyState.cjs.map +1 -0
- package/components/EmptyState/EmptyState.d.ts +7 -0
- package/components/EmptyState/EmptyState.js +26 -0
- package/components/EmptyState/EmptyState.js.map +1 -0
- package/components/EmptyState/EmptyStateSection.d.ts +7 -0
- package/components/EmptyState/EmptyStateSection.js +26 -0
- package/components/EmptyState/EmptyStateSection.js.map +1 -0
- package/components/EmptyState/index.d.ts +3 -0
- package/components/EmptyState/index.js +4 -0
- package/components/EmptyState/index.js.map +1 -0
- package/components/EmptyState/package.json +8 -0
- package/components/EmptyState/useEmptyStateStyleProps.d.ts +9 -0
- package/components/EmptyState/useEmptyStateStyleProps.js +13 -0
- package/components/EmptyState/useEmptyStateStyleProps.js.map +1 -0
- package/components/Field/Field.cjs +545 -0
- package/components/Field/Field.cjs.map +1 -0
- package/components/Field/HelperText.d.ts +7 -0
- package/components/Field/HelperText.js +39 -0
- package/components/Field/HelperText.js.map +1 -0
- package/components/Field/Label.d.ts +7 -0
- package/components/Field/Label.js +24 -0
- package/components/Field/Label.js.map +1 -0
- package/components/Field/ValidationText.d.ts +7 -0
- package/components/Field/ValidationText.js +46 -0
- package/components/Field/ValidationText.js.map +1 -0
- package/components/Field/constants.d.ts +1 -0
- package/components/Field/constants.js +2 -0
- package/components/Field/constants.js.map +1 -0
- package/components/Field/index.d.ts +5 -0
- package/components/Field/index.js +6 -0
- package/components/Field/index.js.map +1 -0
- package/components/Field/package.json +8 -0
- package/components/Field/types.d.ts +15 -0
- package/components/Field/types.js +2 -0
- package/components/Field/types.js.map +1 -0
- package/components/Field/useAriaIds.d.ts +8 -0
- package/components/Field/useAriaIds.js +20 -0
- package/components/Field/useAriaIds.js.map +1 -0
- package/components/Field/useValidationIcon.d.ts +2 -0
- package/components/Field/useValidationIcon.js +10 -0
- package/components/Field/useValidationIcon.js.map +1 -0
- package/components/Field/useValidationTextRole.d.ts +5 -0
- package/components/Field/useValidationTextRole.js +17 -0
- package/components/Field/useValidationTextRole.js.map +1 -0
- package/components/FieldGroup/FieldGroup.cjs +648 -0
- package/components/FieldGroup/FieldGroup.cjs.map +1 -0
- package/components/FieldGroup/FieldGroup.d.ts +7 -0
- package/components/FieldGroup/FieldGroup.js +39 -0
- package/components/FieldGroup/FieldGroup.js.map +1 -0
- package/components/FieldGroup/index.d.ts +1 -0
- package/components/FieldGroup/index.js +2 -0
- package/components/FieldGroup/index.js.map +1 -0
- package/components/FieldGroup/package.json +8 -0
- package/components/FieldGroup/useFieldGroupStyleProps.d.ts +14 -0
- package/components/FieldGroup/useFieldGroupStyleProps.js +27 -0
- package/components/FieldGroup/useFieldGroupStyleProps.js.map +1 -0
- package/components/FileUploader/AttachmentActionButton.d.ts +7 -0
- package/components/FileUploader/AttachmentActionButton.js +29 -0
- package/components/FileUploader/AttachmentActionButton.js.map +1 -0
- package/components/FileUploader/AttachmentDismissButton.d.ts +7 -0
- package/components/FileUploader/AttachmentDismissButton.js +29 -0
- package/components/FileUploader/AttachmentDismissButton.js.map +1 -0
- package/components/FileUploader/AttachmentImagePreview.d.ts +7 -0
- package/components/FileUploader/AttachmentImagePreview.js +19 -0
- package/components/FileUploader/AttachmentImagePreview.js.map +1 -0
- package/components/FileUploader/FileUploader.cjs +1312 -0
- package/components/FileUploader/FileUploader.cjs.map +1 -0
- package/components/FileUploader/FileUploader.d.ts +7 -0
- package/components/FileUploader/FileUploader.js +37 -0
- package/components/FileUploader/FileUploader.js.map +1 -0
- package/components/FileUploader/FileUploaderAttachment.d.ts +7 -0
- package/components/FileUploader/FileUploaderAttachment.js +51 -0
- package/components/FileUploader/FileUploaderAttachment.js.map +1 -0
- package/components/FileUploader/FileUploaderContext.d.ts +9 -0
- package/components/FileUploader/FileUploaderContext.js +23 -0
- package/components/FileUploader/FileUploaderContext.js.map +1 -0
- package/components/FileUploader/FileUploaderInput.d.ts +7 -0
- package/components/FileUploader/FileUploaderInput.js +69 -0
- package/components/FileUploader/FileUploaderInput.js.map +1 -0
- package/components/FileUploader/FileUploaderList.d.ts +7 -0
- package/components/FileUploader/FileUploaderList.js +42 -0
- package/components/FileUploader/FileUploaderList.js.map +1 -0
- package/components/FileUploader/UncontrolledFileUploader.d.ts +7 -0
- package/components/FileUploader/UncontrolledFileUploader.js +32 -0
- package/components/FileUploader/UncontrolledFileUploader.js.map +1 -0
- package/components/FileUploader/constants.d.ts +17 -0
- package/components/FileUploader/constants.js +18 -0
- package/components/FileUploader/constants.js.map +1 -0
- package/components/FileUploader/index.d.ts +13 -0
- package/components/FileUploader/index.js +14 -0
- package/components/FileUploader/index.js.map +1 -0
- package/components/FileUploader/package.json +8 -0
- package/components/FileUploader/useFileQueue.d.ts +4 -0
- package/components/FileUploader/useFileQueue.js +51 -0
- package/components/FileUploader/useFileQueue.js.map +1 -0
- package/components/FileUploader/useFileUploaderAttachment.d.ts +10 -0
- package/components/FileUploader/useFileUploaderAttachment.js +18 -0
- package/components/FileUploader/useFileUploaderAttachment.js.map +1 -0
- package/components/FileUploader/useFileUploaderInput.d.ts +17 -0
- package/components/FileUploader/useFileUploaderInput.js +161 -0
- package/components/FileUploader/useFileUploaderInput.js.map +1 -0
- package/components/FileUploader/useFileUploaderStyleProps.d.ts +55 -0
- package/components/FileUploader/useFileUploaderStyleProps.js +92 -0
- package/components/FileUploader/useFileUploaderStyleProps.js.map +1 -0
- package/components/FileUploader/utils.d.ts +6 -0
- package/components/FileUploader/utils.js +61 -0
- package/components/FileUploader/utils.js.map +1 -0
- package/components/Flex/Flex.cjs +514 -0
- package/components/Flex/Flex.cjs.map +1 -0
- package/components/Flex/Flex.d.ts +7 -0
- package/components/Flex/Flex.js +35 -0
- package/components/Flex/Flex.js.map +1 -0
- package/components/Flex/index.d.ts +2 -0
- package/components/Flex/index.js +3 -0
- package/components/Flex/index.js.map +1 -0
- package/components/Flex/package.json +8 -0
- package/components/Flex/useFlexStyleProps.d.ts +12 -0
- package/components/Flex/useFlexStyleProps.js +38 -0
- package/components/Flex/useFlexStyleProps.js.map +1 -0
- package/components/Footer/Footer.cjs +337 -0
- package/components/Footer/Footer.cjs.map +1 -0
- package/components/Footer/Footer.d.ts +7 -0
- package/components/Footer/Footer.js +37 -0
- package/components/Footer/Footer.js.map +1 -0
- package/components/Footer/constants.d.ts +2 -0
- package/components/Footer/constants.js +3 -0
- package/components/Footer/constants.js.map +1 -0
- package/components/Footer/index.d.ts +1 -0
- package/components/Footer/index.js +2 -0
- package/components/Footer/index.js.map +1 -0
- package/components/Footer/package.json +8 -0
- package/components/Footer/useFooterStyleProps.d.ts +5 -0
- package/components/Footer/useFooterStyleProps.js +14 -0
- package/components/Footer/useFooterStyleProps.js.map +1 -0
- package/components/Grid/Grid.cjs +499 -0
- package/components/Grid/Grid.cjs.map +1 -0
- package/components/Grid/Grid.d.ts +7 -0
- package/components/Grid/Grid.js +33 -0
- package/components/Grid/Grid.js.map +1 -0
- package/components/Grid/GridItem.d.ts +7 -0
- package/components/Grid/GridItem.js +26 -0
- package/components/Grid/GridItem.js.map +1 -0
- package/components/Grid/index.d.ts +3 -0
- package/components/Grid/index.js +4 -0
- package/components/Grid/index.js.map +1 -0
- package/components/Grid/package.json +8 -0
- package/components/Grid/useGridItemStyleProps.d.ts +12 -0
- package/components/Grid/useGridItemStyleProps.js +36 -0
- package/components/Grid/useGridItemStyleProps.js.map +1 -0
- package/components/Grid/useGridStyleProps.d.ts +12 -0
- package/components/Grid/useGridStyleProps.js +42 -0
- package/components/Grid/useGridStyleProps.js.map +1 -0
- package/components/Header/Header.cjs +1261 -0
- package/components/Header/Header.cjs.map +1 -0
- package/components/Header/Header.d.ts +7 -0
- package/components/Header/Header.js +33 -0
- package/components/Header/Header.js.map +1 -0
- package/components/Header/HeaderButton.d.ts +7 -0
- package/components/Header/HeaderButton.js +13 -0
- package/components/Header/HeaderButton.js.map +1 -0
- package/components/Header/HeaderDesktopActions.d.ts +7 -0
- package/components/Header/HeaderDesktopActions.js +29 -0
- package/components/Header/HeaderDesktopActions.js.map +1 -0
- package/components/Header/HeaderDialog.d.ts +7 -0
- package/components/Header/HeaderDialog.js +32 -0
- package/components/Header/HeaderDialog.js.map +1 -0
- package/components/Header/HeaderDialogActions.d.ts +7 -0
- package/components/Header/HeaderDialogActions.js +26 -0
- package/components/Header/HeaderDialogActions.js.map +1 -0
- package/components/Header/HeaderDialogButton.d.ts +7 -0
- package/components/Header/HeaderDialogButton.js +13 -0
- package/components/Header/HeaderDialogButton.js.map +1 -0
- package/components/Header/HeaderDialogCloseButton.d.ts +7 -0
- package/components/Header/HeaderDialogCloseButton.js +37 -0
- package/components/Header/HeaderDialogCloseButton.js.map +1 -0
- package/components/Header/HeaderDialogContext.d.ts +12 -0
- package/components/Header/HeaderDialogContext.js +14 -0
- package/components/Header/HeaderDialogContext.js.map +1 -0
- package/components/Header/HeaderDialogLink.d.ts +4 -0
- package/components/Header/HeaderDialogLink.js +31 -0
- package/components/Header/HeaderDialogLink.js.map +1 -0
- package/components/Header/HeaderDialogNav.d.ts +7 -0
- package/components/Header/HeaderDialogNav.js +13 -0
- package/components/Header/HeaderDialogNav.js.map +1 -0
- package/components/Header/HeaderDialogNavItem.d.ts +7 -0
- package/components/Header/HeaderDialogNavItem.js +13 -0
- package/components/Header/HeaderDialogNavItem.js.map +1 -0
- package/components/Header/HeaderDialogText.d.ts +7 -0
- package/components/Header/HeaderDialogText.js +13 -0
- package/components/Header/HeaderDialogText.js.map +1 -0
- package/components/Header/HeaderLink.d.ts +4 -0
- package/components/Header/HeaderLink.js +31 -0
- package/components/Header/HeaderLink.js.map +1 -0
- package/components/Header/HeaderMobileActions.d.ts +7 -0
- package/components/Header/HeaderMobileActions.js +33 -0
- package/components/Header/HeaderMobileActions.js.map +1 -0
- package/components/Header/HeaderNav.d.ts +7 -0
- package/components/Header/HeaderNav.js +13 -0
- package/components/Header/HeaderNav.js.map +1 -0
- package/components/Header/HeaderNavItem.d.ts +7 -0
- package/components/Header/HeaderNavItem.js +13 -0
- package/components/Header/HeaderNavItem.js.map +1 -0
- package/components/Header/constants.d.ts +4 -0
- package/components/Header/constants.js +5 -0
- package/components/Header/constants.js.map +1 -0
- package/components/Header/index.d.ts +18 -0
- package/components/Header/index.js +19 -0
- package/components/Header/index.js.map +1 -0
- package/components/Header/package.json +8 -0
- package/components/Header/useHeaderStyleProps.d.ts +32 -0
- package/components/Header/useHeaderStyleProps.js +57 -0
- package/components/Header/useHeaderStyleProps.js.map +1 -0
- package/components/Heading/Heading.cjs +386 -0
- package/components/Heading/Heading.cjs.map +1 -0
- package/components/Heading/Heading.d.ts +7 -0
- package/components/Heading/Heading.js +37 -0
- package/components/Heading/Heading.js.map +1 -0
- package/components/Heading/index.d.ts +2 -0
- package/components/Heading/index.js +3 -0
- package/components/Heading/index.js.map +1 -0
- package/components/Heading/package.json +8 -0
- package/components/Heading/useHeadingStyleProps.d.ts +7 -0
- package/components/Heading/useHeadingStyleProps.js +26 -0
- package/components/Heading/useHeadingStyleProps.js.map +1 -0
- package/components/Icon/Icon.cjs +418 -0
- package/components/Icon/Icon.cjs.map +1 -0
- package/components/Icon/Icon.d.ts +4 -0
- package/components/Icon/Icon.js +43 -0
- package/components/Icon/Icon.js.map +1 -0
- package/components/Icon/constants.d.ts +1 -0
- package/components/Icon/constants.js +2 -0
- package/components/Icon/constants.js.map +1 -0
- package/components/Icon/index.d.ts +2 -0
- package/components/Icon/index.js +3 -0
- package/components/Icon/index.js.map +1 -0
- package/components/Icon/package.json +8 -0
- package/components/Icon/useIconBoxSize.d.ts +2 -0
- package/components/Icon/useIconBoxSize.js +3 -0
- package/components/Icon/useIconBoxSize.js.map +1 -0
- package/components/Icon/useIconStyleProps.d.ts +1324 -0
- package/components/Icon/useIconStyleProps.js +43 -0
- package/components/Icon/useIconStyleProps.js.map +1 -0
- package/components/Icon/utils.d.ts +4 -0
- package/components/Icon/utils.js +6 -0
- package/components/Icon/utils.js.map +1 -0
- package/components/IconBox/IconBox.cjs +632 -0
- package/components/IconBox/IconBox.cjs.map +1 -0
- package/components/IconBox/IconBox.d.ts +7 -0
- package/components/IconBox/IconBox.js +42 -0
- package/components/IconBox/IconBox.js.map +1 -0
- package/components/IconBox/constants.d.ts +32 -0
- package/components/IconBox/constants.js +19 -0
- package/components/IconBox/constants.js.map +1 -0
- package/components/IconBox/index.d.ts +3 -0
- package/components/IconBox/index.js +4 -0
- package/components/IconBox/index.js.map +1 -0
- package/components/IconBox/package.json +8 -0
- package/components/IconBox/useIconBoxColors.d.ts +9 -0
- package/components/IconBox/useIconBoxColors.js +22 -0
- package/components/IconBox/useIconBoxColors.js.map +1 -0
- package/components/IconBox/useIconBoxStyleProps.d.ts +13 -0
- package/components/IconBox/useIconBoxStyleProps.js +46 -0
- package/components/IconBox/useIconBoxStyleProps.js.map +1 -0
- package/components/Item/Item.cjs +545 -0
- package/components/Item/Item.cjs.map +1 -0
- package/components/Item/Item.d.ts +7 -0
- package/components/Item/Item.js +35 -0
- package/components/Item/Item.js.map +1 -0
- package/components/Item/index.d.ts +2 -0
- package/components/Item/index.js +3 -0
- package/components/Item/index.js.map +1 -0
- package/components/Item/package.json +8 -0
- package/components/Item/useItemStyleProps.d.ts +15 -0
- package/components/Item/useItemStyleProps.js +42 -0
- package/components/Item/useItemStyleProps.js.map +1 -0
- package/components/Link/Link.cjs +386 -0
- package/components/Link/Link.cjs.map +1 -0
- package/components/Link/Link.d.ts +4 -0
- package/components/Link/Link.js +34 -0
- package/components/Link/Link.js.map +1 -0
- package/components/Link/index.d.ts +2 -0
- package/components/Link/index.js +3 -0
- package/components/Link/index.js.map +1 -0
- package/components/Link/package.json +8 -0
- package/components/Link/useLinkStyleProps.d.ts +7 -0
- package/components/Link/useLinkStyleProps.js +34 -0
- package/components/Link/useLinkStyleProps.js.map +1 -0
- package/components/Matrix/Matrix.cjs +429 -0
- package/components/Matrix/Matrix.cjs.map +1 -0
- package/components/Matrix/Matrix.d.ts +7 -0
- package/components/Matrix/Matrix.js +37 -0
- package/components/Matrix/Matrix.js.map +1 -0
- package/components/Matrix/constant.d.ts +5 -0
- package/components/Matrix/constant.js +6 -0
- package/components/Matrix/constant.js.map +1 -0
- package/components/Matrix/index.d.ts +3 -0
- package/components/Matrix/index.js +4 -0
- package/components/Matrix/index.js.map +1 -0
- package/components/Matrix/package.json +8 -0
- package/components/Matrix/useMatrixStyleProps.d.ts +9 -0
- package/components/Matrix/useMatrixStyleProps.js +41 -0
- package/components/Matrix/useMatrixStyleProps.js.map +1 -0
- package/components/Modal/Modal.cjs +1167 -0
- package/components/Modal/Modal.cjs.map +1 -0
- package/components/Modal/Modal.d.ts +7 -0
- package/components/Modal/Modal.js +35 -0
- package/components/Modal/Modal.js.map +1 -0
- package/components/Modal/ModalBody.d.ts +7 -0
- package/components/Modal/ModalBody.js +25 -0
- package/components/Modal/ModalBody.js.map +1 -0
- package/components/Modal/ModalCloseButton.d.ts +7 -0
- package/components/Modal/ModalCloseButton.js +25 -0
- package/components/Modal/ModalCloseButton.js.map +1 -0
- package/components/Modal/ModalContext.d.ts +10 -0
- package/components/Modal/ModalContext.js +14 -0
- package/components/Modal/ModalContext.js.map +1 -0
- package/components/Modal/ModalDialog.d.ts +3 -0
- package/components/Modal/ModalDialog.js +33 -0
- package/components/Modal/ModalDialog.js.map +1 -0
- package/components/Modal/ModalFooter.d.ts +7 -0
- package/components/Modal/ModalFooter.js +28 -0
- package/components/Modal/ModalFooter.js.map +1 -0
- package/components/Modal/ModalHeader.d.ts +7 -0
- package/components/Modal/ModalHeader.js +34 -0
- package/components/Modal/ModalHeader.js.map +1 -0
- package/components/Modal/index.d.ts +8 -0
- package/components/Modal/index.js +9 -0
- package/components/Modal/index.js.map +1 -0
- package/components/Modal/package.json +8 -0
- package/components/Modal/useModalDialogStyleProps.d.ts +833 -0
- package/components/Modal/useModalDialogStyleProps.js +35 -0
- package/components/Modal/useModalDialogStyleProps.js.map +1 -0
- package/components/Modal/useModalStyleProps.d.ts +24 -0
- package/components/Modal/useModalStyleProps.js +49 -0
- package/components/Modal/useModalStyleProps.js.map +1 -0
- package/components/Navigation/Navigation.cjs +577 -0
- package/components/Navigation/Navigation.cjs.map +1 -0
- package/components/Navigation/Navigation.d.ts +7 -0
- package/components/Navigation/Navigation.js +31 -0
- package/components/Navigation/Navigation.js.map +1 -0
- package/components/Navigation/NavigationAction.d.ts +4 -0
- package/components/Navigation/NavigationAction.js +36 -0
- package/components/Navigation/NavigationAction.js.map +1 -0
- package/components/Navigation/NavigationAvatar.d.ts +4 -0
- package/components/Navigation/NavigationAvatar.js +36 -0
- package/components/Navigation/NavigationAvatar.js.map +1 -0
- package/components/Navigation/NavigationItem.d.ts +7 -0
- package/components/Navigation/NavigationItem.js +30 -0
- package/components/Navigation/NavigationItem.js.map +1 -0
- package/components/Navigation/index.d.ts +6 -0
- package/components/Navigation/index.js +7 -0
- package/components/Navigation/index.js.map +1 -0
- package/components/Navigation/package.json +8 -0
- package/components/Navigation/useNavigationActionProps.d.ts +6 -0
- package/components/Navigation/useNavigationActionProps.js +12 -0
- package/components/Navigation/useNavigationActionProps.js.map +1 -0
- package/components/Navigation/useNavigationStyleProps.d.ts +19 -0
- package/components/Navigation/useNavigationStyleProps.js +45 -0
- package/components/Navigation/useNavigationStyleProps.js.map +1 -0
- package/components/NoSsr/NoSsr.cjs +15 -0
- package/components/NoSsr/NoSsr.cjs.map +1 -0
- package/components/NoSsr/NoSsr.d.ts +8 -0
- package/components/NoSsr/NoSsr.js +12 -0
- package/components/NoSsr/NoSsr.js.map +1 -0
- package/components/NoSsr/index.d.ts +1 -0
- package/components/NoSsr/index.js +2 -0
- package/components/NoSsr/index.js.map +1 -0
- package/components/NoSsr/package.json +8 -0
- package/components/Pagination/Pagination.cjs +949 -0
- package/components/Pagination/Pagination.cjs.map +1 -0
- package/components/Pagination/Pagination.d.ts +7 -0
- package/components/Pagination/Pagination.js +27 -0
- package/components/Pagination/Pagination.js.map +1 -0
- package/components/Pagination/PaginationButtonLink.d.ts +4 -0
- package/components/Pagination/PaginationButtonLink.js +30 -0
- package/components/Pagination/PaginationButtonLink.js.map +1 -0
- package/components/Pagination/PaginationItem.d.ts +7 -0
- package/components/Pagination/PaginationItem.js +25 -0
- package/components/Pagination/PaginationItem.js.map +1 -0
- package/components/Pagination/PaginationLink.d.ts +4 -0
- package/components/Pagination/PaginationLink.js +30 -0
- package/components/Pagination/PaginationLink.js.map +1 -0
- package/components/Pagination/PaginationLinkNext.d.ts +4 -0
- package/components/Pagination/PaginationLinkNext.js +23 -0
- package/components/Pagination/PaginationLinkNext.js.map +1 -0
- package/components/Pagination/PaginationLinkPrevious.d.ts +4 -0
- package/components/Pagination/PaginationLinkPrevious.js +23 -0
- package/components/Pagination/PaginationLinkPrevious.js.map +1 -0
- package/components/Pagination/UncontrolledPagination.d.ts +6 -0
- package/components/Pagination/UncontrolledPagination.js +45 -0
- package/components/Pagination/UncontrolledPagination.js.map +1 -0
- package/components/Pagination/constants.d.ts +2 -0
- package/components/Pagination/constants.js +3 -0
- package/components/Pagination/constants.js.map +1 -0
- package/components/Pagination/index.d.ts +9 -0
- package/components/Pagination/index.js +10 -0
- package/components/Pagination/index.js.map +1 -0
- package/components/Pagination/package.json +8 -0
- package/components/Pagination/usePagination.d.ts +7 -0
- package/components/Pagination/usePagination.js +35 -0
- package/components/Pagination/usePagination.js.map +1 -0
- package/components/Pagination/usePaginationStyleProps.d.ts +11 -0
- package/components/Pagination/usePaginationStyleProps.js +16 -0
- package/components/Pagination/usePaginationStyleProps.js.map +1 -0
- package/components/PartnerLogo/PartnerLogo.cjs +362 -0
- package/components/PartnerLogo/PartnerLogo.cjs.map +1 -0
- package/components/PartnerLogo/PartnerLogo.d.ts +7 -0
- package/components/PartnerLogo/PartnerLogo.js +32 -0
- package/components/PartnerLogo/PartnerLogo.js.map +1 -0
- package/components/PartnerLogo/index.d.ts +3 -0
- package/components/PartnerLogo/index.js +4 -0
- package/components/PartnerLogo/index.js.map +1 -0
- package/components/PartnerLogo/package.json +8 -0
- package/components/PartnerLogo/usePartnerLogoStyleProps.d.ts +6 -0
- package/components/PartnerLogo/usePartnerLogoStyleProps.js +30 -0
- package/components/PartnerLogo/usePartnerLogoStyleProps.js.map +1 -0
- package/components/Pill/Pill.cjs +375 -0
- package/components/Pill/Pill.cjs.map +1 -0
- package/components/Pill/Pill.d.ts +7 -0
- package/components/Pill/Pill.js +32 -0
- package/components/Pill/Pill.js.map +1 -0
- package/components/Pill/constants.d.ts +4 -0
- package/components/Pill/constants.js +5 -0
- package/components/Pill/constants.js.map +1 -0
- package/components/Pill/index.d.ts +3 -0
- package/components/Pill/index.js +4 -0
- package/components/Pill/index.js.map +1 -0
- package/components/Pill/package.json +8 -0
- package/components/Pill/usePillStyleProps.d.ts +7 -0
- package/components/Pill/usePillStyleProps.js +24 -0
- package/components/Pill/usePillStyleProps.js.map +1 -0
- package/components/PricingPlan/PricingPlan.cjs +1783 -0
- package/components/PricingPlan/PricingPlan.cjs.map +1 -0
- package/components/PricingPlan/PricingPlan.d.ts +7 -0
- package/components/PricingPlan/PricingPlan.js +39 -0
- package/components/PricingPlan/PricingPlan.js.map +1 -0
- package/components/PricingPlan/PricingPlanBody.d.ts +7 -0
- package/components/PricingPlan/PricingPlanBody.js +43 -0
- package/components/PricingPlan/PricingPlanBody.js.map +1 -0
- package/components/PricingPlan/PricingPlanFeatureTitle.d.ts +10 -0
- package/components/PricingPlan/PricingPlanFeatureTitle.js +48 -0
- package/components/PricingPlan/PricingPlanFeatureTitle.js.map +1 -0
- package/components/PricingPlan/PricingPlanFooter.d.ts +7 -0
- package/components/PricingPlan/PricingPlanFooter.js +26 -0
- package/components/PricingPlan/PricingPlanFooter.js.map +1 -0
- package/components/PricingPlan/PricingPlanHeader.d.ts +7 -0
- package/components/PricingPlan/PricingPlanHeader.js +47 -0
- package/components/PricingPlan/PricingPlanHeader.js.map +1 -0
- package/components/PricingPlan/constants.d.ts +1 -0
- package/components/PricingPlan/constants.js +2 -0
- package/components/PricingPlan/constants.js.map +1 -0
- package/components/PricingPlan/index.d.ts +5 -0
- package/components/PricingPlan/index.js +6 -0
- package/components/PricingPlan/index.js.map +1 -0
- package/components/PricingPlan/package.json +8 -0
- package/components/PricingPlan/usePricingPlanStyleProps.d.ts +35 -0
- package/components/PricingPlan/usePricingPlanStyleProps.js +73 -0
- package/components/PricingPlan/usePricingPlanStyleProps.js.map +1 -0
- package/components/ProductLogo/ProductLogo.cjs +305 -0
- package/components/ProductLogo/ProductLogo.cjs.map +1 -0
- package/components/ProductLogo/ProductLogo.d.ts +7 -0
- package/components/ProductLogo/ProductLogo.js +24 -0
- package/components/ProductLogo/ProductLogo.js.map +1 -0
- package/components/ProductLogo/index.d.ts +2 -0
- package/components/ProductLogo/index.js +3 -0
- package/components/ProductLogo/index.js.map +1 -0
- package/components/ProductLogo/package.json +8 -0
- package/components/Radio/Radio.cjs +574 -0
- package/components/Radio/Radio.cjs.map +1 -0
- package/components/Radio/Radio.d.ts +4 -0
- package/components/Radio/Radio.js +33 -0
- package/components/Radio/Radio.js.map +1 -0
- package/components/Radio/index.d.ts +2 -0
- package/components/Radio/index.js +3 -0
- package/components/Radio/index.js.map +1 -0
- package/components/Radio/package.json +8 -0
- package/components/Radio/useRadioStyleProps.d.ts +12 -0
- package/components/Radio/useRadioStyleProps.js +45 -0
- package/components/Radio/useRadioStyleProps.js.map +1 -0
- package/components/ScrollView/ScrollView.cjs +808 -0
- package/components/ScrollView/ScrollView.cjs.map +1 -0
- package/components/ScrollView/ScrollView.d.ts +7 -0
- package/components/ScrollView/ScrollView.js +45 -0
- package/components/ScrollView/ScrollView.js.map +1 -0
- package/components/ScrollView/ScrollViewArrows.d.ts +7 -0
- package/components/ScrollView/ScrollViewArrows.js +42 -0
- package/components/ScrollView/ScrollViewArrows.js.map +1 -0
- package/components/ScrollView/constants.d.ts +8 -0
- package/components/ScrollView/constants.js +10 -0
- package/components/ScrollView/constants.js.map +1 -0
- package/components/ScrollView/index.d.ts +6 -0
- package/components/ScrollView/index.js +7 -0
- package/components/ScrollView/index.js.map +1 -0
- package/components/ScrollView/package.json +8 -0
- package/components/ScrollView/useScrollPosition.d.ts +16 -0
- package/components/ScrollView/useScrollPosition.js +52 -0
- package/components/ScrollView/useScrollPosition.js.map +1 -0
- package/components/ScrollView/useScrollViewArrows.d.ts +9 -0
- package/components/ScrollView/useScrollViewArrows.js +33 -0
- package/components/ScrollView/useScrollViewArrows.js.map +1 -0
- package/components/ScrollView/useScrollViewStyleProps.d.ts +18 -0
- package/components/ScrollView/useScrollViewStyleProps.js +34 -0
- package/components/ScrollView/useScrollViewStyleProps.js.map +1 -0
- package/components/Section/Section.cjs +442 -0
- package/components/Section/Section.cjs.map +1 -0
- package/components/Section/Section.d.ts +7 -0
- package/components/Section/Section.js +42 -0
- package/components/Section/Section.js.map +1 -0
- package/components/Section/index.d.ts +3 -0
- package/components/Section/index.js +4 -0
- package/components/Section/index.js.map +1 -0
- package/components/Section/package.json +8 -0
- package/components/Section/useSectionSizeProps.d.ts +6 -0
- package/components/Section/useSectionSizeProps.js +16 -0
- package/components/Section/useSectionSizeProps.js.map +1 -0
- package/components/Section/useSectionStyleProps.d.ts +6 -0
- package/components/Section/useSectionStyleProps.js +14 -0
- package/components/Section/useSectionStyleProps.js.map +1 -0
- package/components/SegmentedControl/SegmentedControl.cjs +509 -0
- package/components/SegmentedControl/SegmentedControl.cjs.map +1 -0
- package/components/SegmentedControl/SegmentedControl.d.ts +7 -0
- package/components/SegmentedControl/SegmentedControl.js +44 -0
- package/components/SegmentedControl/SegmentedControl.js.map +1 -0
- package/components/SegmentedControl/SegmentedControlContext.d.ts +12 -0
- package/components/SegmentedControl/SegmentedControlContext.js +15 -0
- package/components/SegmentedControl/SegmentedControlContext.js.map +1 -0
- package/components/SegmentedControl/SegmentedControlItem.d.ts +4 -0
- package/components/SegmentedControl/SegmentedControlItem.js +48 -0
- package/components/SegmentedControl/SegmentedControlItem.js.map +1 -0
- package/components/SegmentedControl/UncontrolledSegmentedControl.d.ts +7 -0
- package/components/SegmentedControl/UncontrolledSegmentedControl.js +49 -0
- package/components/SegmentedControl/UncontrolledSegmentedControl.js.map +1 -0
- package/components/SegmentedControl/index.d.ts +4 -0
- package/components/SegmentedControl/index.js +5 -0
- package/components/SegmentedControl/index.js.map +1 -0
- package/components/SegmentedControl/package.json +8 -0
- package/components/SegmentedControl/useSegmentedControl.d.ts +9 -0
- package/components/SegmentedControl/useSegmentedControl.js +25 -0
- package/components/SegmentedControl/useSegmentedControl.js.map +1 -0
- package/components/SegmentedControl/useSegmentedControlStyleProps.d.ts +12 -0
- package/components/SegmentedControl/useSegmentedControlStyleProps.js +35 -0
- package/components/SegmentedControl/useSegmentedControlStyleProps.js.map +1 -0
- package/components/Select/Select.cjs +636 -0
- package/components/Select/Select.cjs.map +1 -0
- package/components/Select/Select.d.ts +4 -0
- package/components/Select/Select.js +51 -0
- package/components/Select/Select.js.map +1 -0
- package/components/Select/index.d.ts +2 -0
- package/components/Select/index.js +3 -0
- package/components/Select/index.js.map +1 -0
- package/components/Select/package.json +8 -0
- package/components/Select/useSelectStyleProps.d.ts +19 -0
- package/components/Select/useSelectStyleProps.js +37 -0
- package/components/Select/useSelectStyleProps.js.map +1 -0
- package/components/Skeleton/Skeleton.cjs +507 -0
- package/components/Skeleton/Skeleton.cjs.map +1 -0
- package/components/Skeleton/SkeletonHeading.d.ts +7 -0
- package/components/Skeleton/SkeletonHeading.js +41 -0
- package/components/Skeleton/SkeletonHeading.js.map +1 -0
- package/components/Skeleton/SkeletonItem.d.ts +6 -0
- package/components/Skeleton/SkeletonItem.js +11 -0
- package/components/Skeleton/SkeletonItem.js.map +1 -0
- package/components/Skeleton/SkeletonShape.d.ts +7 -0
- package/components/Skeleton/SkeletonShape.js +37 -0
- package/components/Skeleton/SkeletonShape.js.map +1 -0
- package/components/Skeleton/SkeletonText.d.ts +7 -0
- package/components/Skeleton/SkeletonText.js +41 -0
- package/components/Skeleton/SkeletonText.js.map +1 -0
- package/components/Skeleton/constants.d.ts +1 -0
- package/components/Skeleton/constants.js +2 -0
- package/components/Skeleton/constants.js.map +1 -0
- package/components/Skeleton/index.d.ts +5 -0
- package/components/Skeleton/index.js +6 -0
- package/components/Skeleton/index.js.map +1 -0
- package/components/Skeleton/package.json +8 -0
- package/components/Skeleton/useSkeletonShapeStyleProps.d.ts +850 -0
- package/components/Skeleton/useSkeletonShapeStyleProps.js +49 -0
- package/components/Skeleton/useSkeletonShapeStyleProps.js.map +1 -0
- package/components/Skeleton/useSkeletonStyleProps.d.ts +12 -0
- package/components/Skeleton/useSkeletonStyleProps.js +34 -0
- package/components/Skeleton/useSkeletonStyleProps.js.map +1 -0
- package/components/SkipLink/SkipLink.cjs +364 -0
- package/components/SkipLink/SkipLink.cjs.map +1 -0
- package/components/SkipLink/SkipLink.d.ts +4 -0
- package/components/SkipLink/SkipLink.js +31 -0
- package/components/SkipLink/SkipLink.js.map +1 -0
- package/components/SkipLink/index.d.ts +2 -0
- package/components/SkipLink/index.js +3 -0
- package/components/SkipLink/index.js.map +1 -0
- package/components/SkipLink/package.json +8 -0
- package/components/SkipLink/useSkipLinkStyleProps.d.ts +6 -0
- package/components/SkipLink/useSkipLinkStyleProps.js +21 -0
- package/components/SkipLink/useSkipLinkStyleProps.js.map +1 -0
- package/components/Slider/Slider.cjs +648 -0
- package/components/Slider/Slider.cjs.map +1 -0
- package/components/Slider/Slider.d.ts +4 -0
- package/components/Slider/Slider.js +49 -0
- package/components/Slider/Slider.js.map +1 -0
- package/components/Slider/UncontrolledSlider.d.ts +7 -0
- package/components/Slider/UncontrolledSlider.js +14 -0
- package/components/Slider/UncontrolledSlider.js.map +1 -0
- package/components/Slider/constants.d.ts +7 -0
- package/components/Slider/constants.js +8 -0
- package/components/Slider/constants.js.map +1 -0
- package/components/Slider/index.d.ts +2 -0
- package/components/Slider/index.js +3 -0
- package/components/Slider/index.js.map +1 -0
- package/components/Slider/package.json +8 -0
- package/components/Slider/useSlider.d.ts +6 -0
- package/components/Slider/useSlider.js +13 -0
- package/components/Slider/useSlider.js.map +1 -0
- package/components/Slider/useSliderStyleProps.d.ts +14 -0
- package/components/Slider/useSliderStyleProps.js +43 -0
- package/components/Slider/useSliderStyleProps.js.map +1 -0
- package/components/Spinner/Spinner.cjs +448 -0
- package/components/Spinner/Spinner.cjs.map +1 -0
- package/components/Spinner/Spinner.d.ts +6 -0
- package/components/Spinner/Spinner.js +14 -0
- package/components/Spinner/Spinner.js.map +1 -0
- package/components/Spinner/index.d.ts +2 -0
- package/components/Spinner/index.js +3 -0
- package/components/Spinner/index.js.map +1 -0
- package/components/Spinner/package.json +8 -0
- package/components/Spinner/useSpinnerStyleProps.d.ts +6 -0
- package/components/Spinner/useSpinnerStyleProps.js +25 -0
- package/components/Spinner/useSpinnerStyleProps.js.map +1 -0
- package/components/SplitButton/SplitButton.cjs +1040 -0
- package/components/SplitButton/SplitButton.cjs.map +1 -0
- package/components/SplitButton/SplitButton.d.ts +4 -0
- package/components/SplitButton/SplitButton.js +32 -0
- package/components/SplitButton/SplitButton.js.map +1 -0
- package/components/SplitButton/UncontrolledSplitButton.d.ts +4 -0
- package/components/SplitButton/UncontrolledSplitButton.js +38 -0
- package/components/SplitButton/UncontrolledSplitButton.js.map +1 -0
- package/components/SplitButton/index.d.ts +3 -0
- package/components/SplitButton/index.js +4 -0
- package/components/SplitButton/index.js.map +1 -0
- package/components/SplitButton/package.json +8 -0
- package/components/SplitButton/useSplitButtonStyleProps.d.ts +4 -0
- package/components/SplitButton/useSplitButtonStyleProps.js +8 -0
- package/components/SplitButton/useSplitButtonStyleProps.js.map +1 -0
- package/components/Stack/Stack.cjs +433 -0
- package/components/Stack/Stack.cjs.map +1 -0
- package/components/Stack/Stack.d.ts +7 -0
- package/components/Stack/Stack.js +39 -0
- package/components/Stack/Stack.js.map +1 -0
- package/components/Stack/StackItem.d.ts +7 -0
- package/components/Stack/StackItem.js +30 -0
- package/components/Stack/StackItem.js.map +1 -0
- package/components/Stack/index.d.ts +2 -0
- package/components/Stack/index.js +3 -0
- package/components/Stack/index.js.map +1 -0
- package/components/Stack/package.json +8 -0
- package/components/Stack/useStackStyleProps.d.ts +14 -0
- package/components/Stack/useStackStyleProps.js +38 -0
- package/components/Stack/useStackStyleProps.js.map +1 -0
- package/components/Tabs/TabContent.d.ts +6 -0
- package/components/Tabs/TabContent.js +22 -0
- package/components/Tabs/TabContent.js.map +1 -0
- package/components/Tabs/TabContext.d.ts +8 -0
- package/components/Tabs/TabContext.js +14 -0
- package/components/Tabs/TabContext.js.map +1 -0
- package/components/Tabs/TabItem.d.ts +6 -0
- package/components/Tabs/TabItem.js +37 -0
- package/components/Tabs/TabItem.js.map +1 -0
- package/components/Tabs/TabLink.d.ts +4 -0
- package/components/Tabs/TabLink.js +33 -0
- package/components/Tabs/TabLink.js.map +1 -0
- package/components/Tabs/TabList.d.ts +7 -0
- package/components/Tabs/TabList.js +28 -0
- package/components/Tabs/TabList.js.map +1 -0
- package/components/Tabs/TabPane.d.ts +6 -0
- package/components/Tabs/TabPane.js +27 -0
- package/components/Tabs/TabPane.js.map +1 -0
- package/components/Tabs/Tabs.cjs +530 -0
- package/components/Tabs/Tabs.cjs.map +1 -0
- package/components/Tabs/Tabs.d.ts +6 -0
- package/components/Tabs/Tabs.js +7 -0
- package/components/Tabs/Tabs.js.map +1 -0
- package/components/Tabs/UncontrolledTabs.d.ts +6 -0
- package/components/Tabs/UncontrolledTabs.js +11 -0
- package/components/Tabs/UncontrolledTabs.js.map +1 -0
- package/components/Tabs/index.d.ts +11 -0
- package/components/Tabs/index.js +12 -0
- package/components/Tabs/index.js.map +1 -0
- package/components/Tabs/package.json +8 -0
- package/components/Tabs/useTabs.d.ts +5 -0
- package/components/Tabs/useTabs.js +10 -0
- package/components/Tabs/useTabs.js.map +1 -0
- package/components/Tabs/useTabsStyleProps.d.ts +15 -0
- package/components/Tabs/useTabsStyleProps.js +39 -0
- package/components/Tabs/useTabsStyleProps.js.map +1 -0
- package/components/Tag/Tag.cjs +383 -0
- package/components/Tag/Tag.cjs.map +1 -0
- package/components/Tag/Tag.d.ts +4 -0
- package/components/Tag/Tag.js +36 -0
- package/components/Tag/Tag.js.map +1 -0
- package/components/Tag/constants.d.ts +3 -0
- package/components/Tag/constants.js +4 -0
- package/components/Tag/constants.js.map +1 -0
- package/components/Tag/index.d.ts +3 -0
- package/components/Tag/index.js +4 -0
- package/components/Tag/index.js.map +1 -0
- package/components/Tag/package.json +8 -0
- package/components/Tag/useTagStyleProps.d.ts +7 -0
- package/components/Tag/useTagStyleProps.js +30 -0
- package/components/Tag/useTagStyleProps.js.map +1 -0
- package/components/Text/Text.cjs +385 -0
- package/components/Text/Text.cjs.map +1 -0
- package/components/Text/Text.d.ts +7 -0
- package/components/Text/Text.js +38 -0
- package/components/Text/Text.js.map +1 -0
- package/components/Text/index.d.ts +2 -0
- package/components/Text/index.js +3 -0
- package/components/Text/index.js.map +1 -0
- package/components/Text/package.json +8 -0
- package/components/Text/useTextStyleProps.d.ts +7 -0
- package/components/Text/useTextStyleProps.js +26 -0
- package/components/Text/useTextStyleProps.js.map +1 -0
- package/components/TextArea/TextArea.cjs +810 -0
- package/components/TextArea/TextArea.cjs.map +1 -0
- package/components/TextArea/TextArea.d.ts +4 -0
- package/components/TextArea/TextArea.js +30 -0
- package/components/TextArea/TextArea.js.map +1 -0
- package/components/TextArea/index.d.ts +1 -0
- package/components/TextArea/index.js +2 -0
- package/components/TextArea/index.js.map +1 -0
- package/components/TextArea/package.json +8 -0
- package/components/TextArea/useAdjustHeight.d.ts +13 -0
- package/components/TextArea/useAdjustHeight.js +37 -0
- package/components/TextArea/useAdjustHeight.js.map +1 -0
- package/components/TextField/TextField.cjs +754 -0
- package/components/TextField/TextField.cjs.map +1 -0
- package/components/TextField/TextField.d.ts +4 -0
- package/components/TextField/TextField.js +8 -0
- package/components/TextField/TextField.js.map +1 -0
- package/components/TextField/index.d.ts +1 -0
- package/components/TextField/index.js +2 -0
- package/components/TextField/index.js.map +1 -0
- package/components/TextField/package.json +8 -0
- package/components/TextFieldBase/TextFieldBase.cjs +750 -0
- package/components/TextFieldBase/TextFieldBase.cjs.map +1 -0
- package/components/TextFieldBase/TextFieldBase.d.ts +7 -0
- package/components/TextFieldBase/TextFieldBase.js +44 -0
- package/components/TextFieldBase/TextFieldBase.js.map +1 -0
- package/components/TextFieldBase/TextFieldBaseInput.d.ts +4 -0
- package/components/TextFieldBase/TextFieldBaseInput.js +27 -0
- package/components/TextFieldBase/TextFieldBaseInput.js.map +1 -0
- package/components/TextFieldBase/TextFieldBasePasswordToggle.d.ts +6 -0
- package/components/TextFieldBase/TextFieldBasePasswordToggle.js +17 -0
- package/components/TextFieldBase/TextFieldBasePasswordToggle.js.map +1 -0
- package/components/TextFieldBase/index.d.ts +1 -0
- package/components/TextFieldBase/index.js +2 -0
- package/components/TextFieldBase/index.js.map +1 -0
- package/components/TextFieldBase/package.json +8 -0
- package/components/TextFieldBase/usePasswordToggle.d.ts +4 -0
- package/components/TextFieldBase/usePasswordToggle.js +11 -0
- package/components/TextFieldBase/usePasswordToggle.js.map +1 -0
- package/components/TextFieldBase/useTextFieldBaseInputStyleProps.d.ts +8 -0
- package/components/TextFieldBase/useTextFieldBaseInputStyleProps.js +25 -0
- package/components/TextFieldBase/useTextFieldBaseInputStyleProps.js.map +1 -0
- package/components/TextFieldBase/useTextFieldBasePasswordToggleStyleProps.d.ts +8 -0
- package/components/TextFieldBase/useTextFieldBasePasswordToggleStyleProps.js +15 -0
- package/components/TextFieldBase/useTextFieldBasePasswordToggleStyleProps.js.map +1 -0
- package/components/TextFieldBase/useTextFieldBaseStyleProps.d.ts +15 -0
- package/components/TextFieldBase/useTextFieldBaseStyleProps.js +55 -0
- package/components/TextFieldBase/useTextFieldBaseStyleProps.js.map +1 -0
- package/components/TextFieldBase/withPasswordToggle.d.ts +10 -0
- package/components/TextFieldBase/withPasswordToggle.js +29 -0
- package/components/TextFieldBase/withPasswordToggle.js.map +1 -0
- package/components/Timeline/Timeline.cjs +514 -0
- package/components/Timeline/Timeline.cjs.map +1 -0
- package/components/Timeline/Timeline.d.ts +7 -0
- package/components/Timeline/Timeline.js +32 -0
- package/components/Timeline/Timeline.js.map +1 -0
- package/components/Timeline/TimelineContent.d.ts +7 -0
- package/components/Timeline/TimelineContent.js +25 -0
- package/components/Timeline/TimelineContent.js.map +1 -0
- package/components/Timeline/TimelineHeading.d.ts +7 -0
- package/components/Timeline/TimelineHeading.js +25 -0
- package/components/Timeline/TimelineHeading.js.map +1 -0
- package/components/Timeline/TimelineMarker.d.ts +7 -0
- package/components/Timeline/TimelineMarker.js +35 -0
- package/components/Timeline/TimelineMarker.js.map +1 -0
- package/components/Timeline/TimelineStep.d.ts +7 -0
- package/components/Timeline/TimelineStep.js +30 -0
- package/components/Timeline/TimelineStep.js.map +1 -0
- package/components/Timeline/constants.d.ts +6 -0
- package/components/Timeline/constants.js +8 -0
- package/components/Timeline/constants.js.map +1 -0
- package/components/Timeline/index.d.ts +6 -0
- package/components/Timeline/index.js +7 -0
- package/components/Timeline/index.js.map +1 -0
- package/components/Timeline/package.json +8 -0
- package/components/Timeline/useTimelineStyleProps.d.ts +20 -0
- package/components/Timeline/useTimelineStyleProps.js +49 -0
- package/components/Timeline/useTimelineStyleProps.js.map +1 -0
- package/components/Toast/Toast.cjs +736 -0
- package/components/Toast/Toast.cjs.map +1 -0
- package/components/Toast/Toast.d.ts +7 -0
- package/components/Toast/Toast.js +33 -0
- package/components/Toast/Toast.js.map +1 -0
- package/components/Toast/ToastBar.d.ts +7 -0
- package/components/Toast/ToastBar.js +38 -0
- package/components/Toast/ToastBar.js.map +1 -0
- package/components/Toast/ToastBarLink.d.ts +4 -0
- package/components/Toast/ToastBarLink.js +31 -0
- package/components/Toast/ToastBarLink.js.map +1 -0
- package/components/Toast/ToastBarMessage.d.ts +7 -0
- package/components/Toast/ToastBarMessage.js +23 -0
- package/components/Toast/ToastBarMessage.js.map +1 -0
- package/components/Toast/ToastCloseButton.d.ts +7 -0
- package/components/Toast/ToastCloseButton.js +32 -0
- package/components/Toast/ToastCloseButton.js.map +1 -0
- package/components/Toast/ToastContext.d.ts +43 -0
- package/components/Toast/ToastContext.js +102 -0
- package/components/Toast/ToastContext.js.map +1 -0
- package/components/Toast/UncontrolledToast.d.ts +7 -0
- package/components/Toast/UncontrolledToast.js +31 -0
- package/components/Toast/UncontrolledToast.js.map +1 -0
- package/components/Toast/constants.d.ts +9 -0
- package/components/Toast/constants.js +15 -0
- package/components/Toast/constants.js.map +1 -0
- package/components/Toast/index.d.ts +7 -0
- package/components/Toast/index.js +8 -0
- package/components/Toast/index.js.map +1 -0
- package/components/Toast/package.json +8 -0
- package/components/Toast/useToast.d.ts +1 -0
- package/components/Toast/useToast.js +11 -0
- package/components/Toast/useToast.js.map +1 -0
- package/components/Toast/useToastBarStyleProps.d.ts +31 -0
- package/components/Toast/useToastBarStyleProps.js +40 -0
- package/components/Toast/useToastBarStyleProps.js.map +1 -0
- package/components/Toast/useToastIcon.d.ts +2 -0
- package/components/Toast/useToastIcon.js +13 -0
- package/components/Toast/useToastIcon.js.map +1 -0
- package/components/Toast/useToastStyleProps.d.ts +9 -0
- package/components/Toast/useToastStyleProps.js +37 -0
- package/components/Toast/useToastStyleProps.js.map +1 -0
- package/components/Toggle/Toggle.cjs +647 -0
- package/components/Toggle/Toggle.cjs.map +1 -0
- package/components/Toggle/Toggle.d.ts +4 -0
- package/components/Toggle/Toggle.js +44 -0
- package/components/Toggle/Toggle.js.map +1 -0
- package/components/Toggle/index.d.ts +2 -0
- package/components/Toggle/index.js +3 -0
- package/components/Toggle/index.js.map +1 -0
- package/components/Toggle/package.json +8 -0
- package/components/Toggle/useToggleStyleProps.d.ts +13 -0
- package/components/Toggle/useToggleStyleProps.js +52 -0
- package/components/Toggle/useToggleStyleProps.js.map +1 -0
- package/components/Tooltip/Tooltip.cjs +867 -0
- package/components/Tooltip/Tooltip.cjs.map +1 -0
- package/components/Tooltip/Tooltip.d.ts +7 -0
- package/components/Tooltip/Tooltip.js +90 -0
- package/components/Tooltip/Tooltip.js.map +1 -0
- package/components/Tooltip/TooltipCloseButton.d.ts +7 -0
- package/components/Tooltip/TooltipCloseButton.js +29 -0
- package/components/Tooltip/TooltipCloseButton.js.map +1 -0
- package/components/Tooltip/TooltipContext.d.ts +29 -0
- package/components/Tooltip/TooltipContext.js +34 -0
- package/components/Tooltip/TooltipContext.js.map +1 -0
- package/components/Tooltip/TooltipPopover.d.ts +7 -0
- package/components/Tooltip/TooltipPopover.js +63 -0
- package/components/Tooltip/TooltipPopover.js.map +1 -0
- package/components/Tooltip/TooltipTrigger.d.ts +7 -0
- package/components/Tooltip/TooltipTrigger.js +31 -0
- package/components/Tooltip/TooltipTrigger.js.map +1 -0
- package/components/Tooltip/UncontrolledTooltip.d.ts +7 -0
- package/components/Tooltip/UncontrolledTooltip.js +23 -0
- package/components/Tooltip/UncontrolledTooltip.js.map +1 -0
- package/components/Tooltip/index.d.ts +7 -0
- package/components/Tooltip/index.js +8 -0
- package/components/Tooltip/index.js.map +1 -0
- package/components/Tooltip/package.json +8 -0
- package/components/Tooltip/useFloating.d.ts +58 -0
- package/components/Tooltip/useFloating.js +123 -0
- package/components/Tooltip/useFloating.js.map +1 -0
- package/components/Tooltip/useTooltip.d.ts +5 -0
- package/components/Tooltip/useTooltip.js +10 -0
- package/components/Tooltip/useTooltip.js.map +1 -0
- package/components/Tooltip/useTooltipStyleProps.d.ts +16 -0
- package/components/Tooltip/useTooltipStyleProps.js +39 -0
- package/components/Tooltip/useTooltipStyleProps.js.map +1 -0
- package/components/Truncate/Truncate.cjs +421 -0
- package/components/Truncate/Truncate.cjs.map +1 -0
- package/components/Truncate/Truncate.d.ts +7 -0
- package/components/Truncate/Truncate.js +36 -0
- package/components/Truncate/Truncate.js.map +1 -0
- package/components/Truncate/index.d.ts +3 -0
- package/components/Truncate/index.js +4 -0
- package/components/Truncate/index.js.map +1 -0
- package/components/Truncate/package.json +8 -0
- package/components/Truncate/useTruncateStyleProps.d.ts +14 -0
- package/components/Truncate/useTruncateStyleProps.js +30 -0
- package/components/Truncate/useTruncateStyleProps.js.map +1 -0
- package/components/Truncate/useTruncatedText.d.ts +6 -0
- package/components/Truncate/useTruncatedText.js +36 -0
- package/components/Truncate/useTruncatedText.js.map +1 -0
- package/components/UNSTABLE_Header/UNSTABLE_Header.cjs +400 -0
- package/components/UNSTABLE_Header/UNSTABLE_Header.cjs.map +1 -0
- package/components/UNSTABLE_Header/UNSTABLE_Header.d.ts +7 -0
- package/components/UNSTABLE_Header/UNSTABLE_Header.js +25 -0
- package/components/UNSTABLE_Header/UNSTABLE_Header.js.map +1 -0
- package/components/UNSTABLE_Header/UNSTABLE_HeaderLogo.d.ts +4 -0
- package/components/UNSTABLE_Header/UNSTABLE_HeaderLogo.js +31 -0
- package/components/UNSTABLE_Header/UNSTABLE_HeaderLogo.js.map +1 -0
- package/components/UNSTABLE_Header/index.d.ts +3 -0
- package/components/UNSTABLE_Header/index.js +4 -0
- package/components/UNSTABLE_Header/index.js.map +1 -0
- package/components/UNSTABLE_Header/package.json +8 -0
- package/components/UNSTABLE_Header/useUnstableHeaderStyleProps.d.ts +9 -0
- package/components/UNSTABLE_Header/useUnstableHeaderStyleProps.js +30 -0
- package/components/UNSTABLE_Header/useUnstableHeaderStyleProps.js.map +1 -0
- package/components/VisuallyHidden/VisuallyHidden.cjs +361 -0
- package/components/VisuallyHidden/VisuallyHidden.cjs.map +1 -0
- package/components/VisuallyHidden/VisuallyHidden.d.ts +7 -0
- package/components/VisuallyHidden/VisuallyHidden.js +26 -0
- package/components/VisuallyHidden/VisuallyHidden.js.map +1 -0
- package/components/VisuallyHidden/index.d.ts +1 -0
- package/components/VisuallyHidden/index.js +2 -0
- package/components/VisuallyHidden/index.js.map +1 -0
- package/components/VisuallyHidden/package.json +8 -0
- package/components/VisuallyHidden/useVisuallyHiddenProps.d.ts +7 -0
- package/components/VisuallyHidden/useVisuallyHiddenProps.js +21 -0
- package/components/VisuallyHidden/useVisuallyHiddenProps.js.map +1 -0
- package/components/components.cjs +8434 -0
- package/components/components.cjs.map +1 -0
- package/components/index.d.ts +62 -0
- package/components/index.js +63 -0
- package/components/index.js.map +1 -0
- package/components/package.json +8 -0
- package/constants/classes.d.ts +1 -0
- package/constants/classes.js +2 -0
- package/constants/classes.js.map +1 -0
- package/constants/colors.d.ts +4 -0
- package/constants/colors.js +5 -0
- package/constants/colors.js.map +1 -0
- package/constants/constants.cjs +244 -0
- package/constants/constants.cjs.map +1 -0
- package/constants/dictionaries.d.ts +139 -0
- package/constants/dictionaries.js +117 -0
- package/constants/dictionaries.js.map +1 -0
- package/constants/direction.d.ts +15 -0
- package/constants/direction.js +12 -0
- package/constants/direction.js.map +1 -0
- package/constants/index.d.ts +8 -0
- package/constants/index.js +9 -0
- package/constants/index.js.map +1 -0
- package/constants/media.d.ts +4 -0
- package/constants/media.js +5 -0
- package/constants/media.js.map +1 -0
- package/constants/package.json +8 -0
- package/constants/position.d.ts +6 -0
- package/constants/position.js +7 -0
- package/constants/position.js.map +1 -0
- package/constants/style.d.ts +40 -0
- package/constants/style.js +41 -0
- package/constants/style.js.map +1 -0
- package/constants/text.d.ts +10 -0
- package/constants/text.js +11 -0
- package/constants/text.js.map +1 -0
- package/context/ClassNamePrefixContext.d.ts +7 -0
- package/context/ClassNamePrefixContext.js +9 -0
- package/context/ClassNamePrefixContext.js.map +1 -0
- package/context/IconsContext.d.ts +7 -0
- package/context/IconsContext.js +9 -0
- package/context/IconsContext.js.map +1 -0
- package/context/PropsContext.d.ts +7 -0
- package/context/PropsContext.js +12 -0
- package/context/PropsContext.js.map +1 -0
- package/context/context.cjs +30 -0
- package/context/context.cjs.map +1 -0
- package/context/index.d.ts +3 -0
- package/context/index.js +4 -0
- package/context/index.js.map +1 -0
- package/context/package.json +8 -0
- package/hooks/__mocks__/useIcon.d.ts +1 -0
- package/hooks/__mocks__/useIcon.js +2 -0
- package/hooks/__mocks__/useIcon.js.map +1 -0
- package/hooks/hooks.cjs +684 -0
- package/hooks/hooks.cjs.map +1 -0
- package/hooks/index.d.ts +20 -0
- package/hooks/index.js +21 -0
- package/hooks/index.js.map +1 -0
- package/hooks/package.json +8 -0
- package/hooks/styleProps.d.ts +7 -0
- package/hooks/styleProps.js +46 -0
- package/hooks/styleProps.js.map +1 -0
- package/hooks/useAlignmentClass.d.ts +3 -0
- package/hooks/useAlignmentClass.js +7 -0
- package/hooks/useAlignmentClass.js.map +1 -0
- package/hooks/useAriaDescribedBy.d.ts +5 -0
- package/hooks/useAriaDescribedBy.js +4 -0
- package/hooks/useAriaDescribedBy.js.map +1 -0
- package/hooks/useCancelEvent.d.ts +2 -0
- package/hooks/useCancelEvent.js +39 -0
- package/hooks/useCancelEvent.js.map +1 -0
- package/hooks/useClassNamePrefix.d.ts +1 -0
- package/hooks/useClassNamePrefix.js +16 -0
- package/hooks/useClassNamePrefix.js.map +1 -0
- package/hooks/useClick.d.ts +2 -0
- package/hooks/useClick.js +12 -0
- package/hooks/useClick.js.map +1 -0
- package/hooks/useClickOutside.d.ts +6 -0
- package/hooks/useClickOutside.js +34 -0
- package/hooks/useClickOutside.js.map +1 -0
- package/hooks/useDeprecationMessage.d.ts +19 -0
- package/hooks/useDeprecationMessage.js +43 -0
- package/hooks/useDeprecationMessage.js.map +1 -0
- package/hooks/useDimensionStyle.d.ts +5 -0
- package/hooks/useDimensionStyle.js +16 -0
- package/hooks/useDimensionStyle.js.map +1 -0
- package/hooks/useDirectionClass.d.ts +2 -0
- package/hooks/useDirectionClass.js +5 -0
- package/hooks/useDirectionClass.js.map +1 -0
- package/hooks/useDragAndDrop.d.ts +7 -0
- package/hooks/useDragAndDrop.js +38 -0
- package/hooks/useDragAndDrop.js.map +1 -0
- package/hooks/useIcon.d.ts +1 -0
- package/hooks/useIcon.js +13 -0
- package/hooks/useIcon.js.map +1 -0
- package/hooks/useIconName.d.ts +1 -0
- package/hooks/useIconName.js +4 -0
- package/hooks/useIconName.js.map +1 -0
- package/hooks/useIsMounted.d.ts +1 -0
- package/hooks/useIsMounted.js +13 -0
- package/hooks/useIsMounted.js.map +1 -0
- package/hooks/useIsomorphicLayoutEffect.d.ts +2 -0
- package/hooks/useIsomorphicLayoutEffect.js +5 -0
- package/hooks/useIsomorphicLayoutEffect.js.map +1 -0
- package/hooks/useLastActiveFocus.d.ts +1 -0
- package/hooks/useLastActiveFocus.js +14 -0
- package/hooks/useLastActiveFocus.js.map +1 -0
- package/hooks/useResizeObserver.d.ts +12 -0
- package/hooks/useResizeObserver.js +66 -0
- package/hooks/useResizeObserver.js.map +1 -0
- package/hooks/useScrollControl.d.ts +2 -0
- package/hooks/useScrollControl.js +28 -0
- package/hooks/useScrollControl.js.map +1 -0
- package/hooks/useSpacingStyle.d.ts +3 -0
- package/hooks/useSpacingStyle.js +19 -0
- package/hooks/useSpacingStyle.js.map +1 -0
- package/hooks/useStyleUtilities.d.ts +10 -0
- package/hooks/useStyleUtilities.js +85 -0
- package/hooks/useStyleUtilities.js.map +1 -0
- package/hooks/useToggle.d.ts +1 -0
- package/hooks/useToggle.js +8 -0
- package/hooks/useToggle.js.map +1 -0
- package/hooks/useWrapClass.d.ts +3 -0
- package/hooks/useWrapClass.js +14 -0
- package/hooks/useWrapClass.js.map +1 -0
- package/index.cjs +8659 -0
- package/index.cjs.map +1 -0
- package/index.d.ts +6 -0
- package/index.js +7 -0
- package/index.js.map +1 -0
- package/package.json +143 -0
- package/spirit-web-react.cjs +8654 -0
- package/spirit-web-react.cjs.map +1 -0
- package/spirit-web-react.min.cjs +1 -0
- package/types/accordion.d.ts +25 -0
- package/types/accordion.js +2 -0
- package/types/accordion.js.map +1 -0
- package/types/actionGroup.d.ts +4 -0
- package/types/actionGroup.js +2 -0
- package/types/actionGroup.js.map +1 -0
- package/types/alert.d.ts +12 -0
- package/types/alert.js +2 -0
- package/types/alert.js.map +1 -0
- package/types/avatar.d.ts +12 -0
- package/types/avatar.js +2 -0
- package/types/avatar.js.map +1 -0
- package/types/box.d.ts +22 -0
- package/types/box.js +2 -0
- package/types/box.js.map +1 -0
- package/types/breadcrumbs.d.ts +25 -0
- package/types/breadcrumbs.js +2 -0
- package/types/breadcrumbs.js.map +1 -0
- package/types/button.d.ts +21 -0
- package/types/button.js +2 -0
- package/types/button.js.map +1 -0
- package/types/card.d.ts +67 -0
- package/types/card.js +3 -0
- package/types/card.js.map +1 -0
- package/types/checkbox.d.ts +11 -0
- package/types/checkbox.js +2 -0
- package/types/checkbox.js.map +1 -0
- package/types/collapse.d.ts +29 -0
- package/types/collapse.js +2 -0
- package/types/collapse.js.map +1 -0
- package/types/container.d.ts +11 -0
- package/types/container.js +2 -0
- package/types/container.js.map +1 -0
- package/types/controlButton.d.ts +14 -0
- package/types/controlButton.js +2 -0
- package/types/controlButton.js.map +1 -0
- package/types/divider.d.ts +3 -0
- package/types/divider.js +2 -0
- package/types/divider.js.map +1 -0
- package/types/drawer.d.ts +29 -0
- package/types/drawer.js +2 -0
- package/types/drawer.js.map +1 -0
- package/types/dropdown.d.ts +48 -0
- package/types/dropdown.js +6 -0
- package/types/dropdown.js.map +1 -0
- package/types/emptyState.d.ts +4 -0
- package/types/emptyState.js +2 -0
- package/types/emptyState.js.map +1 -0
- package/types/fieldGroup.d.ts +13 -0
- package/types/fieldGroup.js +2 -0
- package/types/fieldGroup.js.map +1 -0
- package/types/fileUploader.d.ts +118 -0
- package/types/fileUploader.js +2 -0
- package/types/fileUploader.js.map +1 -0
- package/types/flex.d.ts +31 -0
- package/types/flex.js +2 -0
- package/types/flex.js.map +1 -0
- package/types/footer.d.ts +9 -0
- package/types/footer.js +2 -0
- package/types/footer.js.map +1 -0
- package/types/grid.d.ts +48 -0
- package/types/grid.js +2 -0
- package/types/grid.js.map +1 -0
- package/types/header.d.ts +60 -0
- package/types/header.js +2 -0
- package/types/header.js.map +1 -0
- package/types/heading.d.ts +14 -0
- package/types/heading.js +2 -0
- package/types/heading.js.map +1 -0
- package/types/icon.d.ts +13 -0
- package/types/icon.js +2 -0
- package/types/icon.js.map +1 -0
- package/types/iconBox.d.ts +18 -0
- package/types/iconBox.js +2 -0
- package/types/iconBox.js.map +1 -0
- package/types/index.d.ts +60 -0
- package/types/index.js +61 -0
- package/types/index.js.map +1 -0
- package/types/item.d.ts +16 -0
- package/types/item.js +2 -0
- package/types/item.js.map +1 -0
- package/types/label.d.ts +12 -0
- package/types/label.js +2 -0
- package/types/label.js.map +1 -0
- package/types/link.d.ts +20 -0
- package/types/link.js +6 -0
- package/types/link.js.map +1 -0
- package/types/matrix.d.ts +17 -0
- package/types/matrix.js +2 -0
- package/types/matrix.js.map +1 -0
- package/types/modal.d.ts +44 -0
- package/types/modal.js +2 -0
- package/types/modal.js.map +1 -0
- package/types/navigation.d.ts +36 -0
- package/types/navigation.js +2 -0
- package/types/navigation.js.map +1 -0
- package/types/package.json +8 -0
- package/types/pagination.d.ts +44 -0
- package/types/pagination.js +2 -0
- package/types/pagination.js.map +1 -0
- package/types/partnerLogo.d.ts +7 -0
- package/types/partnerLogo.js +2 -0
- package/types/partnerLogo.js.map +1 -0
- package/types/pill.d.ts +13 -0
- package/types/pill.js +2 -0
- package/types/pill.js.map +1 -0
- package/types/pricingPlan.d.ts +32 -0
- package/types/pricingPlan.js +2 -0
- package/types/pricingPlan.js.map +1 -0
- package/types/productLogo.d.ts +3 -0
- package/types/productLogo.js +2 -0
- package/types/productLogo.js.map +1 -0
- package/types/radio.d.ts +10 -0
- package/types/radio.js +2 -0
- package/types/radio.js.map +1 -0
- package/types/scrollView.d.ts +30 -0
- package/types/scrollView.js +2 -0
- package/types/scrollView.js.map +1 -0
- package/types/section.d.ts +17 -0
- package/types/section.js +2 -0
- package/types/section.js.map +1 -0
- package/types/segmentedControl.d.ts +25 -0
- package/types/segmentedControl.js +2 -0
- package/types/segmentedControl.js.map +1 -0
- package/types/select.d.ts +15 -0
- package/types/select.js +2 -0
- package/types/select.js.map +1 -0
- package/types/shared/adornments.d.ts +3 -0
- package/types/shared/adornments.js +2 -0
- package/types/shared/adornments.js.map +1 -0
- package/types/shared/buttons.d.ts +1 -0
- package/types/shared/buttons.js +2 -0
- package/types/shared/buttons.js.map +1 -0
- package/types/shared/colors.d.ts +23 -0
- package/types/shared/colors.js +2 -0
- package/types/shared/colors.js.map +1 -0
- package/types/shared/columns.d.ts +1 -0
- package/types/shared/columns.js +2 -0
- package/types/shared/columns.js.map +1 -0
- package/types/shared/dialogs.d.ts +7 -0
- package/types/shared/dialogs.js +2 -0
- package/types/shared/dialogs.js.map +1 -0
- package/types/shared/dictionaries.d.ts +57 -0
- package/types/shared/dictionaries.js +2 -0
- package/types/shared/dictionaries.js.map +1 -0
- package/types/shared/directions.d.ts +5 -0
- package/types/shared/directions.js +2 -0
- package/types/shared/directions.js.map +1 -0
- package/types/shared/dragAndDrop.d.ts +7 -0
- package/types/shared/dragAndDrop.js +2 -0
- package/types/shared/dragAndDrop.js.map +1 -0
- package/types/shared/element.d.ts +35 -0
- package/types/shared/element.js +2 -0
- package/types/shared/element.js.map +1 -0
- package/types/shared/events.d.ts +8 -0
- package/types/shared/events.js +2 -0
- package/types/shared/events.js.map +1 -0
- package/types/shared/index.d.ts +33 -0
- package/types/shared/index.js +26 -0
- package/types/shared/index.js.map +1 -0
- package/types/shared/inputs.d.ts +31 -0
- package/types/shared/inputs.js +2 -0
- package/types/shared/inputs.js.map +1 -0
- package/types/shared/item.d.ts +3 -0
- package/types/shared/item.js +2 -0
- package/types/shared/item.js.map +1 -0
- package/types/shared/package.json +8 -0
- package/types/shared/positions.d.ts +3 -0
- package/types/shared/positions.js +2 -0
- package/types/shared/positions.js.map +1 -0
- package/types/shared/radii.d.ts +2 -0
- package/types/shared/radii.js +2 -0
- package/types/shared/radii.js.map +1 -0
- package/types/shared/refs.d.ts +5 -0
- package/types/shared/refs.js +2 -0
- package/types/shared/refs.js.map +1 -0
- package/types/shared/responsive.d.ts +4 -0
- package/types/shared/responsive.js +2 -0
- package/types/shared/responsive.js.map +1 -0
- package/types/shared/rest.d.ts +5 -0
- package/types/shared/rest.js +2 -0
- package/types/shared/rest.js.map +1 -0
- package/types/shared/shared.cjs +15 -0
- package/types/shared/shared.cjs.map +1 -0
- package/types/shared/sizes.d.ts +3 -0
- package/types/shared/sizes.js +2 -0
- package/types/shared/sizes.js.map +1 -0
- package/types/shared/style.d.ts +35 -0
- package/types/shared/style.js +2 -0
- package/types/shared/style.js.map +1 -0
- package/types/shared/text.d.ts +5 -0
- package/types/shared/text.js +2 -0
- package/types/shared/text.js.map +1 -0
- package/types/shared/tokens.d.ts +8 -0
- package/types/shared/tokens.js +2 -0
- package/types/shared/tokens.js.map +1 -0
- package/types/skeleton.d.ts +18 -0
- package/types/skeleton.js +2 -0
- package/types/skeleton.js.map +1 -0
- package/types/skipLink.d.ts +11 -0
- package/types/skipLink.js +2 -0
- package/types/skipLink.js.map +1 -0
- package/types/slider.d.ts +19 -0
- package/types/slider.js +2 -0
- package/types/slider.js.map +1 -0
- package/types/spinner.d.ts +7 -0
- package/types/spinner.js +2 -0
- package/types/spinner.js.map +1 -0
- package/types/splitButton.d.ts +26 -0
- package/types/splitButton.js +2 -0
- package/types/splitButton.js.map +1 -0
- package/types/stack.d.ts +18 -0
- package/types/stack.js +2 -0
- package/types/stack.js.map +1 -0
- package/types/tabs.d.ts +39 -0
- package/types/tabs.js +2 -0
- package/types/tabs.js.map +1 -0
- package/types/tag.d.ts +15 -0
- package/types/tag.js +2 -0
- package/types/tag.js.map +1 -0
- package/types/text.d.ts +14 -0
- package/types/text.js +2 -0
- package/types/text.js.map +1 -0
- package/types/textArea.d.ts +12 -0
- package/types/textArea.js +2 -0
- package/types/textArea.js.map +1 -0
- package/types/textField.d.ts +12 -0
- package/types/textField.js +2 -0
- package/types/textField.js.map +1 -0
- package/types/textFieldBase.d.ts +26 -0
- package/types/textFieldBase.js +2 -0
- package/types/textFieldBase.js.map +1 -0
- package/types/timeline.d.ts +29 -0
- package/types/timeline.js +2 -0
- package/types/timeline.js.map +1 -0
- package/types/toast.d.ts +50 -0
- package/types/toast.js +2 -0
- package/types/toast.js.map +1 -0
- package/types/toggle.d.ts +16 -0
- package/types/toggle.js +2 -0
- package/types/toggle.js.map +1 -0
- package/types/tooltip.d.ts +50 -0
- package/types/tooltip.js +9 -0
- package/types/tooltip.js.map +1 -0
- package/types/truncate.d.ts +13 -0
- package/types/truncate.js +6 -0
- package/types/truncate.js.map +1 -0
- package/types/types.cjs +99 -0
- package/types/types.cjs.map +1 -0
- package/types/unstableHeader.d.ts +14 -0
- package/types/unstableHeader.js +2 -0
- package/types/unstableHeader.js.map +1 -0
- package/types/visuallyHidden.d.ts +9 -0
- package/types/visuallyHidden.js +2 -0
- package/types/visuallyHidden.js.map +1 -0
- package/utils/assert.d.ts +6 -0
- package/utils/assert.js +33 -0
- package/utils/assert.js.map +1 -0
- package/utils/classname.d.ts +4 -0
- package/utils/classname.js +5 -0
- package/utils/classname.js.map +1 -0
- package/utils/colorObjectGenerators.d.ts +13 -0
- package/utils/colorObjectGenerators.js +32 -0
- package/utils/colorObjectGenerators.js.map +1 -0
- package/utils/compose.d.ts +1 -0
- package/utils/compose.js +2 -0
- package/utils/compose.js.map +1 -0
- package/utils/debounce.d.ts +1 -0
- package/utils/debounce.js +17 -0
- package/utils/debounce.js.map +1 -0
- package/utils/delayedCallback.d.ts +1 -0
- package/utils/delayedCallback.js +7 -0
- package/utils/delayedCallback.js.map +1 -0
- package/utils/htmlReactParser.d.ts +2 -0
- package/utils/htmlReactParser.js +14 -0
- package/utils/htmlReactParser.js.map +1 -0
- package/utils/index.d.ts +13 -0
- package/utils/index.js +14 -0
- package/utils/index.js.map +1 -0
- package/utils/mergeStyleProps.d.ts +18 -0
- package/utils/mergeStyleProps.js +35 -0
- package/utils/mergeStyleProps.js.map +1 -0
- package/utils/package.json +8 -0
- package/utils/responsive.d.ts +3 -0
- package/utils/responsive.js +23 -0
- package/utils/responsive.js.map +1 -0
- package/utils/ssr.d.ts +1 -0
- package/utils/ssr.js +2 -0
- package/utils/ssr.js.map +1 -0
- package/utils/string.d.ts +4 -0
- package/utils/string.js +22 -0
- package/utils/string.js.map +1 -0
- package/utils/stylePropsClassesGenerator.d.ts +9 -0
- package/utils/stylePropsClassesGenerator.js +23 -0
- package/utils/stylePropsClassesGenerator.js.map +1 -0
- package/utils/toPascalCase.d.ts +1 -0
- package/utils/toPascalCase.js +10 -0
- package/utils/toPascalCase.js.map +1 -0
- package/utils/utils.cjs +266 -0
- package/utils/utils.cjs.map +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TextArea.cjs","sources":["../../constants/dictionaries.js","../../constants/direction.js","../../constants/style.js","../../common/constants/environments.js","../../common/utilities/warning.js","../../context/ClassNamePrefixContext.js","../../types/card.js","../../types/shared/style.js","../../types/shared/tokens.js","../../types/shared/index.js","../../utils/assert.js","../../utils/classname.js","../../utils/htmlReactParser.js","../../utils/mergeStyleProps.js","../../utils/string.js","../../hooks/useStyleUtilities.js","../../hooks/styleProps.js","../../hooks/useAriaDescribedBy.js","../../hooks/useClassNamePrefix.js","../../context/IconsContext.js","../../hooks/useIcon.js","../../hooks/useIconName.js","../Field/HelperText.js","../Field/Label.js","../Field/useAriaIds.js","../Icon/constants.js","../Icon/useIconBoxSize.js","../Icon/useIconStyleProps.js","../Icon/Icon.js","../Field/useValidationIcon.js","../Field/ValidationText.js","../Field/constants.js","../Field/useValidationTextRole.js","../TextFieldBase/useTextFieldBaseInputStyleProps.js","../TextFieldBase/TextFieldBaseInput.js","../TextFieldBase/useTextFieldBaseStyleProps.js","../TextFieldBase/useTextFieldBasePasswordToggleStyleProps.js","../TextFieldBase/TextFieldBasePasswordToggle.js","../TextFieldBase/usePasswordToggle.js","../TextFieldBase/withPasswordToggle.js","../TextFieldBase/TextFieldBase.js","useAdjustHeight.js","TextArea.js"],"sourcesContent":["var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { componentColors, containers, emotionColors, textColors } from '@alma-oss/spirit-design-tokens';\nfunction createUppercaseKeyDictionary(obj) {\n return Object.fromEntries(Object.keys(obj).map((key) => [key.toUpperCase(), key]));\n}\nexport const AlignmentX = {\n LEFT: 'left',\n CENTER: 'center',\n RIGHT: 'right',\n};\nexport const AlignmentXExtended = Object.assign({ SPACE_BETWEEN: 'space-between', STRETCH: 'stretch' }, AlignmentX);\nexport const AlignmentY = {\n TOP: 'top',\n CENTER: 'center',\n BOTTOM: 'bottom',\n};\nexport const AlignmentYExtended = Object.assign({ BASELINE: 'baseline', STRETCH: 'stretch' }, AlignmentY);\nexport const TextAlignments = {\n LEFT: 'left',\n CENTER: 'center',\n RIGHT: 'right',\n};\nexport const BorderColors = {\n BASIC: 'basic',\n};\nexport const BorderRadii = {\n 0: '0',\n 100: '100',\n 200: '200',\n 300: '300',\n 400: '400',\n 500: '500',\n FULL: 'full',\n};\nexport const BorderStyles = {\n SOLID: 'solid',\n DOTTED: 'dotted',\n DASHED: 'dashed',\n};\nexport const BorderWidths = {\n 0: '0',\n 100: '100',\n 200: '200',\n};\nexport const BackgroundColors = {\n PRIMARY: 'primary',\n SECONDARY: 'secondary',\n TERTIARY: 'tertiary',\n};\nexport const ComponentButtonColors = createUppercaseKeyDictionary(componentColors.button);\nexport const EmotionColors = createUppercaseKeyDictionary(emotionColors);\nexport const LinkColors = {\n PRIMARY: 'primary',\n SECONDARY: 'secondary',\n TERTIARY: 'tertiary',\n};\nexport const TextColors = createUppercaseKeyDictionary(textColors);\nexport const Intensity = {\n BASIC: 'basic',\n SUBTLE: 'subtle',\n};\nexport const Emphasis = {\n REGULAR: 'regular',\n SEMIBOLD: 'semibold',\n BOLD: 'bold',\n ITALIC: 'italic',\n};\nexport const BackgroundGradients = {\n PRIMARY: 'primary',\n SECONDARY: 'secondary',\n};\nexport const Placements = {\n TOP: 'top',\n TOP_START: 'top-start',\n TOP_END: 'top-end',\n BOTTOM: 'bottom',\n BOTTOM_START: 'bottom-start',\n BOTTOM_END: 'bottom-end',\n LEFT: 'left',\n LEFT_START: 'left-start',\n LEFT_END: 'left-end',\n RIGHT: 'right',\n RIGHT_START: 'right-start',\n RIGHT_END: 'right-end',\n};\nexport const Sizes = {\n SMALL: 'small',\n MEDIUM: 'medium',\n LARGE: 'large',\n};\nexport const SizesExtended = Object.assign(Object.assign({ XSMALL: 'xsmall' }, Sizes), { XLARGE: 'xlarge' });\nconst _a = createUppercaseKeyDictionary(containers), { MAXWIDTH, PADDING } = _a, ContainerTokenSizes = __rest(_a, [\"MAXWIDTH\", \"PADDING\"]);\nexport { ContainerTokenSizes };\nexport const ValidationStates = {\n SUCCESS: 'success',\n WARNING: 'warning',\n DANGER: 'danger',\n};\nexport const FillVariants = {\n FILL: 'fill',\n OUTLINE: 'outline',\n};\nexport const ShapeVariants = {\n BOX: 'box',\n PILL: 'pill',\n};\n//# sourceMappingURL=dictionaries.js.map","export const Direction = {\n HORIZONTAL: 'horizontal',\n VERTICAL: 'vertical',\n};\nexport const DirectionExtended = Object.assign(Object.assign({}, Direction), { HORIZONTAL_REVERSED: 'horizontal-reversed' });\nexport var DirectionAxis;\n(function (DirectionAxis) {\n DirectionAxis[\"X\"] = \"x\";\n DirectionAxis[\"Y\"] = \"y\";\n})(DirectionAxis || (DirectionAxis = {}));\nexport const isDirectionHorizontal = (direction) => direction === Direction.HORIZONTAL;\n//# sourceMappingURL=direction.js.map","export const BackgroundStyleProps = {\n backgroundGradient: 'bg-gradient',\n};\nexport const BorderRadiusStyleProps = {\n borderRadius: 'rounded',\n};\nexport const SpacingStyleProp = {\n margin: 'm',\n marginTop: 'mt',\n marginRight: 'mr',\n marginBottom: 'mb',\n marginLeft: 'ml',\n marginX: 'mx',\n marginY: 'my',\n};\nexport const PaddingStyleProps = {\n padding: 'p',\n paddingBottom: 'pb',\n paddingLeft: 'pl',\n paddingRight: 'pr',\n paddingTop: 'pt',\n paddingX: 'px',\n paddingY: 'py',\n};\nexport const TextStyleProps = {\n isTextBalanced: 'text-wrap-pretty',\n textAlignment: 'text',\n textHyphens: 'text-hyphens',\n textWordBreak: 'text-word-break',\n};\nexport const HeadingStyleProps = {\n isTextBalanced: 'text-wrap-balance',\n};\nexport const DisplayStyleProps = {\n hideOn: 'd',\n hideFrom: 'd',\n};\nexport const ThemeStyleProps = {\n theme: '',\n};\n//# sourceMappingURL=style.js.map","export const ENVIRONMENTS = {\n DEVELOPMENT: 'development',\n TESTING: 'testing',\n PRODUCTION: 'production',\n};\nexport const isDevelopment = () => process.env.NODE_ENV === ENVIRONMENTS.DEVELOPMENT;\nexport const isTesting = () => process.env.NODE_ENV === ENVIRONMENTS.TESTING;\nexport const isProduction = () => process.env.NODE_ENV === ENVIRONMENTS.PRODUCTION;\n//# sourceMappingURL=environments.js.map","import { isProduction } from \"../constants/environments.js\";\nconst warning = (condition, message) => {\n if (!isProduction()) {\n if (condition) {\n return;\n }\n const text = `Warning: ${message}`;\n if (typeof console !== 'undefined') {\n console.warn(text);\n }\n try {\n throw Error(text);\n }\n catch (x) {\n }\n }\n};\nexport default warning;\n//# sourceMappingURL=warning.js.map","'use client';\nimport { createContext } from 'react';\nconst defaultContext = undefined;\nconst ClassNamePrefixContext = createContext(defaultContext);\nconst ClassNamePrefixProvider = ClassNamePrefixContext.Provider;\nconst ClassNamePrefixConsumer = ClassNamePrefixContext.Consumer;\nexport default ClassNamePrefixContext;\nexport { ClassNamePrefixConsumer, ClassNamePrefixProvider };\n//# sourceMappingURL=ClassNamePrefixContext.js.map","import { Sizes } from \"../constants/index.js\";\nexport const CardSizes = Object.assign(Object.assign({}, Sizes), { AUTO: 'auto' });\n//# sourceMappingURL=card.js.map","export const STYLE_SPACING_AUTO = 'auto';\n//# sourceMappingURL=style.js.map","export const BREAKPOINT_MOBILE = 'mobile';\n//# sourceMappingURL=tokens.js.map","export * from \"./adornments.js\";\nexport * from \"./buttons.js\";\nexport * from \"./colors.js\";\nexport * from \"./columns.js\";\nexport * from \"./dialogs.js\";\nexport * from \"./dictionaries.js\";\nexport * from \"./directions.js\";\nexport * from \"./dragAndDrop.js\";\nexport * from \"./element.js\";\nexport * from \"./events.js\";\nexport * from \"./inputs.js\";\nexport * from \"./item.js\";\nexport * from \"./positions.js\";\nexport * from \"./radii.js\";\nexport * from \"./refs.js\";\nexport * from \"./responsive.js\";\nexport * from \"./rest.js\";\nexport * from \"./sizes.js\";\nexport * from \"./style.js\";\nexport * from \"./tokens.js\";\nexport var SpiritBreakpoints;\n(function (SpiritBreakpoints) {\n SpiritBreakpoints[\"TABLET\"] = \"tablet\";\n SpiritBreakpoints[\"DESKTOP\"] = \"desktop\";\n})(SpiritBreakpoints || (SpiritBreakpoints = {}));\n//# sourceMappingURL=index.js.map","export const isNullish = (value) => value == null;\nexport const isEmptyString = (value) => typeof value === 'string' && value.trim() === '';\nexport const isEmptyArray = (value) => Array.isArray(value) && value.length === 0;\nexport const isEmptyObject = (value) => typeof value === 'object' && value !== null && Object.keys(value).length === 0;\nexport const isEnumerable = (value) => {\n if (typeof value === 'object' && value !== null) {\n for (const key in value) {\n if (Object.hasOwnProperty.call(value, key)) {\n return true;\n }\n }\n }\n return false;\n};\nexport const isEmpty = (value) => {\n if (isNullish(value)) {\n return true;\n }\n if (isEmptyString(value)) {\n return true;\n }\n if (isEmptyArray(value)) {\n return true;\n }\n if (isEmptyObject(value)) {\n return true;\n }\n if (isEnumerable(value)) {\n return false;\n }\n return false;\n};\n//# sourceMappingURL=assert.js.map","export const applyClassNamePrefix = (prefix) => (className) => prefix != null && prefix !== '' ? `${prefix}-${className}` : className;\nexport const applyColor = (color) => (className) => `${className}--${color}`;\nexport const applySize = (size) => (className) => `${className}--${size}`;\nexport const applyTheme = (theme) => (className) => `${className}--${theme}`;\n//# sourceMappingURL=classname.js.map","import htmlDomParser from 'html-dom-parser';\nimport domToReactLib from 'html-react-parser/lib/dom-to-react';\nexport const htmlReactParser = (html) => {\n if (typeof html !== 'string') {\n throw new TypeError('First argument must be a string');\n }\n if (!html) {\n return [];\n }\n const htmlToDOM = typeof htmlDomParser.default === 'function' ? htmlDomParser.default : htmlDomParser;\n const domToReact = typeof domToReactLib.default === 'function' ? domToReactLib.default : domToReactLib;\n return domToReact(htmlToDOM(html));\n};\n//# sourceMappingURL=htmlReactParser.js.map","export function mergeStyleProps(ElementTag, styleProps) {\n const isSpiritComponent = typeof ElementTag !== 'string' && !!(ElementTag === null || ElementTag === void 0 ? void 0 : ElementTag.spiritComponent);\n const isNonNullableObject = (styleProp) => typeof styleProp === 'object' && styleProp !== null;\n const extractClassNames = (styleProp) => {\n if (typeof styleProp === 'string') {\n return [styleProp];\n }\n if (isNonNullableObject(styleProp)) {\n return [styleProp.className, styleProp.UNSAFE_className].filter(Boolean);\n }\n return [];\n };\n const extractCssVariables = (styleProp) => isNonNullableObject(styleProp)\n ? Object.entries(styleProp)\n .filter(([key]) => key.startsWith('--'))\n .reduce((extractedCssVariable, [key, value]) => (Object.assign(Object.assign({}, extractedCssVariable), { [key]: value })), {})\n : {};\n const extractCssStylesAndVariables = (cssProperties, styleProp) => {\n if (!isNonNullableObject(styleProp)) {\n return cssProperties;\n }\n const typedStyleProp = styleProp;\n const styles = typedStyleProp.style || typedStyleProp.UNSAFE_style || {};\n const cssVariables = extractCssVariables(styleProp);\n return Object.assign(Object.assign(Object.assign({}, cssProperties), styles), cssVariables);\n };\n const mergedClasses = Object.values(styleProps).flatMap(extractClassNames).filter(Boolean).join(' ');\n const mergedStyles = Object.values(styleProps)\n .filter(isNonNullableObject)\n .reduce(extractCssStylesAndVariables, {});\n return isSpiritComponent\n ? { UNSAFE_className: mergedClasses, UNSAFE_style: mergedStyles }\n : { className: mergedClasses, style: mergedStyles };\n}\n//# sourceMappingURL=mergeStyleProps.js.map","export const camelCaseToKebabCase = (input) => input.replace(/([a-z0-9])([A-Z])/g, '$1-$2').toLowerCase();\nexport const kebabCaseToCamelCase = (input) => input.replace(/-([a-z])/g, (g) => g[1].toUpperCase());\nexport const kebabCaseToCamelCaseValues = (input) => {\n if (typeof input === 'object' && input !== null) {\n const result = {};\n for (const [key, value] of Object.entries(input)) {\n result[key] = typeof value === 'string' ? kebabCaseToCamelCase(value) : value;\n }\n return result;\n }\n return input;\n};\nexport const stringOrObjectKebabCaseToCamelCase = (input) => {\n if (typeof input === 'string') {\n return kebabCaseToCamelCase(input);\n }\n if (typeof input === 'object' && input !== null) {\n return kebabCaseToCamelCaseValues(input);\n }\n return input;\n};\n//# sourceMappingURL=string.js.map","import { SpacingStyleProp as DefaultSpacingStyleProp, DisplayStyleProps, ThemeStyleProps } from \"../constants/index.js\";\nimport { BREAKPOINT_MOBILE, STYLE_SPACING_AUTO, } from \"../types/index.js\";\nimport { applyClassNamePrefix, camelCaseToKebabCase, isEmpty } from \"../utils/index.js\";\nconst CLASS_SEPARATOR = '-';\nconst normalizeSpacingValue = (value) => value === STYLE_SPACING_AUTO ? STYLE_SPACING_AUTO : value.replace(/[^0-9]/g, '');\nconst isSpaceToken = (value) => typeof value === 'string' && value.startsWith('space-');\nconst getUtilityValue = (value) => (isSpaceToken(value) ? normalizeSpacingValue(value) : value);\nconst isKeyIncluded = (object, key) => Object.keys(object).includes(key);\nconst processBreakpointProperties = (utilityName, propValue, prefix) => Object.keys(propValue).reduce((accumulatedBreakpointUtilities, breakpoint) => {\n const breakpointValue = propValue[breakpoint];\n if (typeof breakpointValue === 'string') {\n const utilityValue = getUtilityValue(breakpointValue);\n const infix = breakpoint === BREAKPOINT_MOBILE ? '' : `${CLASS_SEPARATOR}${breakpoint}`;\n accumulatedBreakpointUtilities.push(applyClassNamePrefix(prefix)(`${utilityName}${infix}${CLASS_SEPARATOR}${utilityValue}`));\n }\n return accumulatedBreakpointUtilities;\n}, []);\nconst processHideOnProperty = (utilityName, propValue, prefix) => {\n const breakpoints = Array.isArray(propValue) ? propValue : [propValue];\n return breakpoints.map((breakpoint) => applyClassNamePrefix(prefix)(`${utilityName}${CLASS_SEPARATOR}only${CLASS_SEPARATOR}${breakpoint}${CLASS_SEPARATOR}none`));\n};\nconst processHideFromProperty = (utilityName, propValue, prefix) => {\n const breakpoint = propValue;\n const infix = breakpoint === BREAKPOINT_MOBILE ? '' : `${CLASS_SEPARATOR}${breakpoint}`;\n return [applyClassNamePrefix(prefix)(`${utilityName}${infix}${CLASS_SEPARATOR}none`)];\n};\nconst processDisplayProperties = (utilityKey, utilityName, propValue, prefix) => {\n switch (utilityKey) {\n case 'hideOn':\n return processHideOnProperty(utilityName, propValue, prefix);\n case 'hideFrom':\n return processHideFromProperty(utilityName, propValue, prefix);\n default:\n return [];\n }\n};\nconst processProperties = (utilityKey, utilityName, propValue, prefix) => {\n if (utilityName === ThemeStyleProps.theme) {\n if (typeof propValue !== 'string') {\n return [];\n }\n const themeClassName = camelCaseToKebabCase(propValue);\n return [applyClassNamePrefix(prefix)(themeClassName)];\n }\n if (utilityKey in DisplayStyleProps) {\n return processDisplayProperties(utilityKey, utilityName, propValue, prefix);\n }\n if (typeof propValue === 'boolean') {\n return propValue ? [applyClassNamePrefix(prefix)(utilityName)] : [];\n }\n if (typeof propValue === 'string') {\n return [applyClassNamePrefix(prefix)(`${utilityName}-${getUtilityValue(propValue)}`)];\n }\n return processBreakpointProperties(utilityName, propValue, prefix);\n};\nconst isStylePropProcessable = (styleProps, stylePropKey, stylePropValue, options = { includesKey: true }) => {\n const isStylePropKeyIncluded = isKeyIncluded(styleProps, stylePropKey);\n const isProcessable = (options.includesKey ? isStylePropKeyIncluded : !isStylePropKeyIncluded) && !isEmpty(stylePropValue);\n return isProcessable;\n};\nexport const useStyleUtilities = (props, prefix = '', additionalProps = {}) => {\n const styleProps = Object.assign(Object.assign(Object.assign(Object.assign({}, DefaultSpacingStyleProp), DisplayStyleProps), ThemeStyleProps), additionalProps);\n const propEntries = Object.entries(props);\n const styleUtilities = propEntries.reduce((accumulatedUtilities, [key, propValue]) => {\n if (isStylePropProcessable(styleProps, key, propValue)) {\n const utilityName = styleProps[key];\n return [\n ...accumulatedUtilities,\n ...processProperties(key, utilityName, propValue, prefix),\n ];\n }\n return accumulatedUtilities;\n }, []);\n const updatedProps = propEntries.reduce((accumulatedProps, [key, propValue]) => {\n if (isStylePropProcessable(styleProps, key, propValue, { includesKey: false })) {\n return Object.assign(Object.assign({}, accumulatedProps), { [key]: propValue });\n }\n return accumulatedProps;\n }, {});\n return {\n styleUtilities,\n props: updatedProps,\n };\n};\n//# sourceMappingURL=useStyleUtilities.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport classNames from 'classnames';\nimport { useContext } from 'react';\nimport { warning } from \"../common/utilities/index.js\";\nimport { ThemeStyleProps } from \"../constants/index.js\";\nimport ClassNamePrefixContext from \"../context/ClassNamePrefixContext.js\";\nimport { useStyleUtilities } from \"./useStyleUtilities.js\";\nexport function useStyleProps(props, additionalUtilities) {\n const classNamePrefix = useContext(ClassNamePrefixContext);\n const { UNSAFE_className, UNSAFE_style } = props, otherProps = __rest(props, [\"UNSAFE_className\", \"UNSAFE_style\"]);\n const styleUtilitiesConfig = Object.assign({ theme: ThemeStyleProps.theme }, (additionalUtilities !== null && additionalUtilities !== void 0 ? additionalUtilities : {}));\n const { styleUtilities, props: modifiedProps } = useStyleUtilities(otherProps, classNamePrefix, styleUtilitiesConfig);\n const style = Object.assign({}, UNSAFE_style);\n if (modifiedProps.className) {\n warning(false, 'The className prop is unsafe and is unsupported in Spirit Web React. ' +\n 'Please use style props with Spirit Design Tokens, or UNSAFE_className if you absolutely must do something custom. ' +\n 'Note that this may break in future versions due to DOM structure changes.');\n delete modifiedProps.className;\n }\n if (modifiedProps.style) {\n warning(false, 'The style prop is unsafe and is unsupported in Spirit Web React. ' +\n 'Please use style props with Spirit Design Tokens, or UNSAFE_style if you absolutely must do something custom. ' +\n 'Note that this may break in future versions due to DOM structure changes.');\n delete modifiedProps.style;\n }\n const styleProps = {\n style: Object.keys(style).length > 0 ? style : undefined,\n className: classNames(UNSAFE_className, ...styleUtilities) || undefined,\n };\n return {\n styleProps,\n props: modifiedProps,\n };\n}\n//# sourceMappingURL=styleProps.js.map","'use client';\nimport { useMemo } from 'react';\nexport const useAriaDescribedBy = (ids) => useMemo(() => (ids.length ? { 'aria-describedby': ids.join(' ') } : {}), [ids]);\n//# sourceMappingURL=useAriaDescribedBy.js.map","'use client';\nimport { useContext } from 'react';\nimport ClassNamePrefixContext from \"../context/ClassNamePrefixContext.js\";\nimport { applyClassNamePrefix } from \"../utils/classname.js\";\nexport const useClassNamePrefix = (className) => {\n const classNamePrefix = useContext(ClassNamePrefixContext);\n let prefixedClassName = className;\n if (className && classNamePrefix) {\n prefixedClassName = applyClassNamePrefix(classNamePrefix)(className);\n }\n else if (classNamePrefix) {\n prefixedClassName = classNamePrefix;\n }\n return prefixedClassName;\n};\n//# sourceMappingURL=useClassNamePrefix.js.map","'use client';\nimport { createContext } from 'react';\nconst defaultContext = undefined;\nconst IconsContext = createContext(defaultContext);\nconst IconsProvider = IconsContext.Provider;\nconst IconsConsumer = IconsContext.Consumer;\nexport default IconsContext;\nexport { IconsConsumer, IconsProvider };\n//# sourceMappingURL=IconsContext.js.map","'use client';\nimport { useContext } from 'react';\nimport warning from \"../common/utilities/warning.js\";\nimport IconsContext from \"../context/IconsContext.js\";\nexport const useIcon = (name) => {\n const icons = useContext(IconsContext);\n if (icons != null && icons[name] != null) {\n return icons[name];\n }\n warning(false, `The ${name} icon is missing from your assets or icon map provided by the IconsProvider. Please make sure you have provided all icons needed by used components.`);\n return '';\n};\n//# sourceMappingURL=useIcon.js.map","export function useIconName(key, iconMap, defaultKey = 'default') {\n return key && iconMap[key] ? iconMap[key] : iconMap[defaultKey];\n}\n//# sourceMappingURL=useIconName.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { useEffect } from 'react';\nimport { useStyleProps } from \"../../hooks/index.js\";\nimport { mergeStyleProps } from \"../../utils/index.js\";\nconst defaultProps = {\n elementType: 'div',\n id: undefined,\n registerAria: undefined,\n};\nconst HelperText = (props) => {\n const propsWithDefaults = Object.assign(Object.assign({}, defaultProps), props);\n const { helperText, elementType: ElementTag = defaultProps.elementType, id, registerAria } = propsWithDefaults, restProps = __rest(propsWithDefaults, [\"helperText\", \"elementType\", \"id\", \"registerAria\"]);\n const { styleProps, props: transferProps } = useStyleProps(restProps);\n const mergedStyleProps = mergeStyleProps(ElementTag, { styleProps, transferProps });\n useEffect(() => {\n helperText && (registerAria === null || registerAria === void 0 ? void 0 : registerAria({ add: id }));\n return () => {\n registerAria === null || registerAria === void 0 ? void 0 : registerAria({ remove: id });\n };\n }, [helperText, id, registerAria]);\n if (helperText) {\n return (React.createElement(ElementTag, Object.assign({}, transferProps, mergedStyleProps, { id: id }), helperText));\n }\n return null;\n};\nHelperText.spiritComponent = 'HelperText';\nexport default HelperText;\n//# sourceMappingURL=HelperText.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React from 'react';\nimport { useStyleProps } from \"../../hooks/index.js\";\nimport { mergeStyleProps } from \"../../utils/index.js\";\nconst Label = (props) => {\n const { elementType: ElementTag = 'label', children, htmlFor, for: labelFor } = props, restProps = __rest(props, [\"elementType\", \"children\", \"htmlFor\", \"for\"]);\n const { styleProps, props: otherProps } = useStyleProps(restProps);\n const mergedStyleProps = mergeStyleProps(ElementTag, { styleProps, otherProps });\n return (React.createElement(ElementTag, Object.assign({}, otherProps, mergedStyleProps, { htmlFor: ElementTag === 'label' ? labelFor || htmlFor : undefined }), children));\n};\nLabel.spiritComponent = 'Label';\nexport default Label;\n//# sourceMappingURL=Label.js.map","'use client';\nimport { useCallback, useState } from 'react';\nconst useAriaIds = (otherAriaIds) => {\n const [ids, setIds] = useState(otherAriaIds ? otherAriaIds.split(' ') : []);\n const register = useCallback(({ add, remove }) => {\n setIds((prevIds) => {\n let newIds = [...prevIds];\n if (remove) {\n newIds = newIds.filter((item) => item !== remove);\n }\n if (add) {\n newIds = [...newIds, add];\n }\n return newIds;\n });\n }, []);\n return [ids, register];\n};\nexport default useAriaIds;\n//# sourceMappingURL=useAriaIds.js.map","export const DEFAULT_BOX_SIZE = 24;\n//# sourceMappingURL=constants.js.map","import { DEFAULT_BOX_SIZE } from \"./constants.js\";\nexport const useIconBoxSize = (boxSize) => { var _a; return typeof boxSize === 'object' ? ((_a = boxSize.mobile) !== null && _a !== void 0 ? _a : DEFAULT_BOX_SIZE) : (boxSize !== null && boxSize !== void 0 ? boxSize : DEFAULT_BOX_SIZE); };\n//# sourceMappingURL=useIconBoxSize.js.map","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { cssVariablePrefix } from '@alma-oss/spirit-design-tokens';\nimport classNames from 'classnames';\nimport { TextColors } from \"../../constants/index.js\";\nimport { useClassNamePrefix } from \"../../hooks/index.js\";\nconst setCustomDimension = (prefix, size) => {\n const style = {};\n if (typeof size === 'object') {\n Object.entries(size).forEach(([breakpoint, breakpointSize]) => {\n const breakpointSuffix = breakpoint === 'mobile' ? '' : `-${breakpoint}`;\n style[`${prefix}${breakpointSuffix}`] = `${breakpointSize === null || breakpointSize === void 0 ? void 0 : breakpointSize.toString()}px`;\n });\n }\n return style;\n};\nexport const useIconStyleProps = (props) => {\n const { boxSize, color, name } = props, otherProps = __rest(props, [\"boxSize\", \"color\", \"name\"]);\n const stylePrefix = `--${cssVariablePrefix}icon`;\n const isDualtoneIcon = String(name).includes('-dualtone');\n const dualtoneColorWithDefault = isDualtoneIcon && !color ? TextColors.PRIMARY : color;\n const iconClass = useClassNamePrefix('Icon');\n const iconDualtoneColorClass = `${iconClass}--${dualtoneColorWithDefault}`;\n const classProps = classNames(iconClass, {\n [iconDualtoneColorClass]: color || dualtoneColorWithDefault,\n });\n const customizedIconStyle = Object.assign({}, (boxSize ? setCustomDimension(`${stylePrefix}-size`, boxSize) : {}));\n return {\n classProps,\n iconStyleProps: customizedIconStyle,\n props: otherProps,\n };\n};\n//# sourceMappingURL=useIconStyleProps.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { forwardRef } from 'react';\nimport { useIcon, useStyleProps } from \"../../hooks/index.js\";\nimport { htmlReactParser, mergeStyleProps } from \"../../utils/index.js\";\nimport { DEFAULT_BOX_SIZE } from \"./constants.js\";\nimport { useIconBoxSize } from \"./useIconBoxSize.js\";\nimport { useIconStyleProps } from \"./useIconStyleProps.js\";\nconst defaultProps = {\n ariaHidden: true,\n boxSize: DEFAULT_BOX_SIZE,\n};\nconst _Icon = (props, ref) => {\n const propsWithDefaults = Object.assign(Object.assign({}, defaultProps), props);\n const { boxSize, name, title, ariaHidden } = propsWithDefaults, restProps = __rest(propsWithDefaults, [\"boxSize\", \"name\", \"title\", \"ariaHidden\"]);\n let icon = useIcon(name);\n const iconSize = useIconBoxSize(boxSize);\n const { classProps, iconStyleProps, props: modifiedProps } = useIconStyleProps(Object.assign({ boxSize, name }, restProps));\n const { styleProps, props: otherProps } = useStyleProps(modifiedProps);\n const mergedStyleProps = mergeStyleProps('svg', {\n classProps,\n iconStyleProps,\n styleProps,\n });\n if (title) {\n icon = `<title>${title}</title>${icon}`;\n }\n return (React.createElement(\"svg\", Object.assign({}, otherProps, mergedStyleProps, { viewBox: \"0 0 24 24\", fill: \"none\", width: iconSize, height: iconSize, \"aria-hidden\": ariaHidden, ref: ref }), htmlReactParser(icon)));\n};\nconst Icon = forwardRef(_Icon);\nIcon.spiritComponent = 'Icon';\nexport default Icon;\n//# sourceMappingURL=Icon.js.map","import { useIconName } from \"../../hooks/index.js\";\nexport function useValidationIcon({ hasValidationStateIcon }) {\n const iconNameValue = useIconName(hasValidationStateIcon, {\n success: 'check-plain',\n warning: 'warning',\n danger: 'danger',\n });\n return iconNameValue;\n}\n//# sourceMappingURL=useValidationIcon.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { useEffect } from 'react';\nimport { useStyleProps } from \"../../hooks/index.js\";\nimport { mergeStyleProps } from \"../../utils/index.js\";\nimport { Icon } from \"../Icon/index.js\";\nimport { useValidationIcon } from \"./useValidationIcon.js\";\nconst defaultProps = {\n elementType: 'div',\n id: undefined,\n registerAria: undefined,\n role: undefined,\n};\nconst ValidationText = (props) => {\n const propsWithDefaults = Object.assign(Object.assign({}, defaultProps), props);\n const { elementType: ElementTag = defaultProps.elementType, id, hasValidationStateIcon, registerAria, role, validationText } = propsWithDefaults, restProps = __rest(propsWithDefaults, [\"elementType\", \"id\", \"hasValidationStateIcon\", \"registerAria\", \"role\", \"validationText\"]);\n const validationIconName = useValidationIcon({ hasValidationStateIcon });\n const { styleProps, props: transferProps } = useStyleProps(restProps);\n const mergedStyleProps = mergeStyleProps(ElementTag, { styleProps, transferProps });\n useEffect(() => {\n validationText && (registerAria === null || registerAria === void 0 ? void 0 : registerAria({ add: id }));\n return () => {\n registerAria === null || registerAria === void 0 ? void 0 : registerAria({ remove: id });\n };\n }, [id, registerAria, validationText]);\n if (!validationText) {\n return null;\n }\n const nonArrayValidationText = hasValidationStateIcon ? React.createElement(\"div\", null, validationText) : validationText;\n return (React.createElement(ElementTag, Object.assign({}, transferProps, mergedStyleProps, { id: id, role: role }),\n hasValidationStateIcon && React.createElement(Icon, { name: validationIconName, boxSize: \"20\" }),\n Array.isArray(validationText) ? (React.createElement(\"ul\", null, validationText.map((item) => (React.createElement(\"li\", { key: `validationText_${item}` }, item))))) : (nonArrayValidationText)));\n};\nValidationText.spiritComponent = 'ValidationText';\nexport default ValidationText;\n//# sourceMappingURL=ValidationText.js.map","export const A11Y_ALERT_ROLE = 'alert';\n//# sourceMappingURL=constants.js.map","'use client';\nimport { useEffect, useRef, useState } from 'react';\nimport { A11Y_ALERT_ROLE } from \"./constants.js\";\nexport const useValidationTextRole = ({ validationState, validationText, }) => {\n const [role, setRole] = useState();\n const previousValidationText = useRef(validationText);\n const previousValidationState = useRef(validationState);\n useEffect(() => {\n if (previousValidationText.current !== validationText || previousValidationState.current !== validationState) {\n setRole(A11Y_ALERT_ROLE);\n }\n previousValidationText.current = validationText;\n previousValidationState.current = validationState;\n }, [validationText, validationState]);\n return role;\n};\n//# sourceMappingURL=useValidationTextRole.js.map","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { useClassNamePrefix } from \"../../hooks/index.js\";\nexport function useTextFieldBaseInputStyleProps(props) {\n const { isMultiline, id } = props, restProps = __rest(props, [\"isMultiline\", \"id\"]);\n const TextFieldBaseClass = useClassNamePrefix(isMultiline ? 'TextArea' : 'TextField');\n const TextFieldBaseInputClass = `${TextFieldBaseClass}__input`;\n return {\n classProps: {\n input: TextFieldBaseInputClass,\n },\n props: Object.assign(Object.assign({}, restProps), { isMultiline,\n id }),\n };\n}\n//# sourceMappingURL=useTextFieldBaseInputStyleProps.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { forwardRef } from 'react';\nimport { useStyleProps } from \"../../hooks/index.js\";\nimport { useTextFieldBaseInputStyleProps } from \"./useTextFieldBaseInputStyleProps.js\";\nconst _TextFieldBaseInput = (props, ref) => {\n const { classProps, props: modifiedProps } = useTextFieldBaseInputStyleProps(props);\n const { id, isDisabled, isMultiline, isRequired, inputWidth, type } = modifiedProps, restProps = __rest(modifiedProps, [\"id\", \"isDisabled\", \"isMultiline\", \"isRequired\", \"inputWidth\", \"type\"]);\n const { props: otherProps } = useStyleProps(restProps);\n const ElementType = isMultiline ? 'textarea' : 'input';\n const inputType = isMultiline ? undefined : type;\n return (React.createElement(ElementType, Object.assign({}, otherProps, { className: classProps.input, disabled: isDisabled, id: id, required: isRequired, size: inputWidth, type: inputType, ref: ref })));\n};\nconst TextFieldBaseInput = forwardRef(_TextFieldBaseInput);\nTextFieldBaseInput.spiritComponent = 'TextFieldBaseInput';\nexport default TextFieldBaseInput;\n//# sourceMappingURL=TextFieldBaseInput.js.map","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport classNames from 'classnames';\nimport { useClassNamePrefix } from \"../../hooks/index.js\";\nexport function useTextFieldBaseStyleProps(props) {\n const { isFluid, isMultiline, isLabelHidden, size, validationState } = props, restProps = __rest(props, [\"isFluid\", \"isMultiline\", \"isLabelHidden\", \"size\", \"validationState\"]);\n const { isDisabled, isRequired } = restProps;\n const TextFieldBaseClass = useClassNamePrefix(isMultiline ? 'TextArea' : 'TextField');\n const TextFieldBaseDisabledClass = `${TextFieldBaseClass}--disabled`;\n const TextFieldBaseFluidClass = `${TextFieldBaseClass}--fluid`;\n const TextFieldBaseSizeClass = `${TextFieldBaseClass}--${size}`;\n const TextFieldBaseValidationClass = `${TextFieldBaseClass}--${validationState}`;\n const TextFieldBaseInputClass = `${TextFieldBaseClass}__input`;\n const TextFieldBaseLabelClass = `${TextFieldBaseClass}__label`;\n const TextFieldBaseLabelRequiredClass = `${TextFieldBaseClass}__label--required`;\n const TextFieldBaseLabelHiddenClass = `${TextFieldBaseClass}__label--hidden`;\n const TextFieldBaseValidationTextClass = `${TextFieldBaseClass}__validationText`;\n const TextFieldBasePasswordToggleClass = `${TextFieldBaseClass}__passwordToggle`;\n const TextFieldBasePasswordToggleButtonClass = `${TextFieldBaseClass}__passwordToggle__button`;\n const TextFieldBasePasswordToggleIconClass = `${TextFieldBaseClass}__passwordToggle__icon`;\n const TextFieldBaseHelperTextClass = `${TextFieldBaseClass}__helperText`;\n const rootStyles = classNames(TextFieldBaseClass, {\n [TextFieldBaseDisabledClass]: isDisabled,\n [TextFieldBaseFluidClass]: isFluid,\n [TextFieldBaseValidationClass]: validationState,\n [TextFieldBaseSizeClass]: size,\n });\n const labelStyles = classNames(TextFieldBaseLabelClass, {\n [TextFieldBaseLabelRequiredClass]: isRequired,\n [TextFieldBaseLabelHiddenClass]: isLabelHidden,\n });\n return {\n classProps: {\n root: rootStyles,\n label: labelStyles,\n input: TextFieldBaseInputClass,\n helperText: TextFieldBaseHelperTextClass,\n validationText: TextFieldBaseValidationTextClass,\n passwordToggle: TextFieldBasePasswordToggleClass,\n passwordToggleButton: TextFieldBasePasswordToggleButtonClass,\n passwordToggleIcon: TextFieldBasePasswordToggleIconClass,\n },\n props: Object.assign(Object.assign({}, restProps), { isMultiline }),\n };\n}\n//# sourceMappingURL=useTextFieldBaseStyleProps.js.map","import { useClassNamePrefix } from \"../../hooks/index.js\";\nexport function useTextFieldBasePasswordToggleStyleProps() {\n const TextFieldBaseClass = useClassNamePrefix('TextField');\n const TextFieldBasePasswordToggleClass = `${TextFieldBaseClass}__passwordToggle`;\n const TextFieldBasePasswordToggleButtonClass = `${TextFieldBaseClass}__passwordToggle__button`;\n const TextFieldBasePasswordToggleIconClass = `${TextFieldBaseClass}__passwordToggle__icon`;\n return {\n classProps: {\n passwordToggle: TextFieldBasePasswordToggleClass,\n passwordToggleButton: TextFieldBasePasswordToggleButtonClass,\n passwordToggleIcon: TextFieldBasePasswordToggleIconClass,\n },\n };\n}\n//# sourceMappingURL=useTextFieldBasePasswordToggleStyleProps.js.map","'use client';\nimport React from 'react';\nimport { Sizes } from \"../../constants/index.js\";\nimport { Icon } from \"../Icon/index.js\";\nimport { useTextFieldBasePasswordToggleStyleProps } from \"./useTextFieldBasePasswordToggleStyleProps.js\";\nconst TextFieldBasePasswordToggle = (props) => {\n const { children, isPasswordShown, onToggleClick, isDisabled, size } = props;\n const { classProps } = useTextFieldBasePasswordToggleStyleProps();\n return (React.createElement(\"div\", { className: classProps.passwordToggle },\n children,\n React.createElement(\"button\", { className: classProps.passwordToggleButton, type: \"button\", role: \"switch\", \"aria-checked\": !!isPasswordShown, \"aria-label\": `${isPasswordShown ? 'Hide' : 'Show'} password`, onClick: () => onToggleClick(), disabled: isDisabled },\n React.createElement(\"span\", { className: classProps.passwordToggleIcon },\n React.createElement(Icon, { name: `visibility-${isPasswordShown ? 'off' : 'on'}`, boxSize: size === Sizes.SMALL ? 16 : 20 })))));\n};\nTextFieldBasePasswordToggle.spiritComponent = 'TextFieldBasePasswordToggle';\nexport default TextFieldBasePasswordToggle;\n//# sourceMappingURL=TextFieldBasePasswordToggle.js.map","'use client';\nimport { useState } from 'react';\nexport const usePasswordToggle = () => {\n const [isPasswordShown, setIsPasswordShown] = useState(false);\n const passwordToggle = () => setIsPasswordShown(!isPasswordShown);\n return {\n isPasswordShown,\n passwordToggle,\n };\n};\n//# sourceMappingURL=usePasswordToggle.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React from 'react';\nimport TextFieldBasePasswordToggle from \"./TextFieldBasePasswordToggle.js\";\nimport { usePasswordToggle } from \"./usePasswordToggle.js\";\nfunction withPasswordToggle(WrappedComponent) {\n const displayName = WrappedComponent.displayName || WrappedComponent.name || 'Component';\n const ComponentWithPasswordToggle = (props, ref) => {\n const { isPasswordShown, passwordToggle } = usePasswordToggle();\n const { hasPasswordToggle, isDisabled, size } = props, restProps = __rest(props, [\"hasPasswordToggle\", \"isDisabled\", \"size\"]);\n return hasPasswordToggle ? (React.createElement(TextFieldBasePasswordToggle, { isDisabled: isDisabled, isPasswordShown: isPasswordShown, onToggleClick: passwordToggle, size: size },\n React.createElement(WrappedComponent, Object.assign({}, restProps, { type: isPasswordShown ? 'text' : 'password', isDisabled: isDisabled, ref: ref })))) : (React.createElement(WrappedComponent, Object.assign({}, restProps, { isDisabled: isDisabled, ref: ref })));\n };\n ComponentWithPasswordToggle.displayName = `withPasswordToggle(${displayName})`;\n return ComponentWithPasswordToggle;\n}\nwithPasswordToggle.spiritComponent = 'withPasswordToggle';\nexport default withPasswordToggle;\n//# sourceMappingURL=withPasswordToggle.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport classNames from 'classnames';\nimport React, { forwardRef } from 'react';\nimport { Sizes } from \"../../constants/index.js\";\nimport { useAriaDescribedBy, useStyleProps } from \"../../hooks/index.js\";\nimport { HelperText, Label, ValidationText, useAriaIds } from \"../Field/index.js\";\nimport { useValidationTextRole } from \"../Field/useValidationTextRole.js\";\nimport TextFieldBaseInput from \"./TextFieldBaseInput.js\";\nimport { useTextFieldBaseStyleProps } from \"./useTextFieldBaseStyleProps.js\";\nimport withPasswordToggle from \"./withPasswordToggle.js\";\nconst TextFieldBaseInputWithPasswordToggle = forwardRef(withPasswordToggle(TextFieldBaseInput));\nconst _TextFieldBase = (props, ref) => {\n const { 'aria-describedby': ariaDescribedBy = '', hasValidationIcon, helperText, id, label, size = Sizes.MEDIUM, validationState, validationText } = props, restProps = __rest(props, ['aria-describedby', \"hasValidationIcon\", \"helperText\", \"id\", \"label\", \"size\", \"validationState\", \"validationText\"]);\n const { classProps, props: modifiedProps } = useTextFieldBaseStyleProps(Object.assign({ id,\n size,\n validationState }, restProps));\n const { styleProps, props: otherProps } = useStyleProps(modifiedProps);\n const [ids, register] = useAriaIds(ariaDescribedBy);\n const ariaDescribedByProp = useAriaDescribedBy(ids);\n const validationTextRole = useValidationTextRole({\n validationState,\n validationText,\n });\n return (React.createElement(\"div\", Object.assign({}, styleProps, { className: classNames(classProps.root, styleProps.className) }),\n React.createElement(Label, { htmlFor: id, UNSAFE_className: classProps.label }, label),\n React.createElement(TextFieldBaseInputWithPasswordToggle, Object.assign({}, otherProps, ariaDescribedByProp, { id: id, ref: ref, size: size })),\n React.createElement(HelperText, { UNSAFE_className: classProps.helperText, id: `${id}__helperText`, registerAria: register, helperText: helperText }),\n validationState && (React.createElement(ValidationText, Object.assign({ UNSAFE_className: classProps.validationText, elementType: \"span\" }, (hasValidationIcon && { hasValidationStateIcon: validationState }), { id: `${id}__validationText`, validationText: validationText, registerAria: register, role: validationTextRole })))));\n};\nconst TextFieldBase = forwardRef(_TextFieldBase);\nTextFieldBase.spiritComponent = 'TextFieldBase';\nexport default TextFieldBase;\n//# sourceMappingURL=TextFieldBase.js.map","'use client';\nimport { useEffect } from 'react';\nexport const useAdjustHeight = ({ elementReference, maxHeight, onInput, isAutoResizing, }) => {\n const adjustHeight = (element) => {\n const borderTopWidth = parseFloat(getComputedStyle(element).getPropertyValue('border-top-width')) || 0;\n const borderBottomWidth = parseFloat(getComputedStyle(element).getPropertyValue('border-bottom-width')) || 0;\n const totalBorderWidth = borderTopWidth + borderBottomWidth;\n element.style.height = 'auto';\n element.style.overflow = 'auto';\n const totalHeight = element.scrollHeight + totalBorderWidth;\n element.style.height = `${totalHeight < maxHeight ? totalHeight : maxHeight}px`;\n element.style.overflow = totalHeight < maxHeight ? 'hidden' : 'auto';\n };\n const adjustHeightOnAutoresize = () => {\n if (isAutoResizing) {\n const textArea = elementReference === null || elementReference === void 0 ? void 0 : elementReference.current;\n if (textArea) {\n adjustHeight(textArea);\n }\n }\n };\n const inputHandler = (event) => {\n adjustHeightOnAutoresize();\n if (onInput) {\n onInput(event);\n }\n };\n useEffect(() => {\n adjustHeightOnAutoresize();\n }, []);\n return {\n adjustHeight,\n adjustHeightOnAutoresize,\n onInput: inputHandler,\n };\n};\n//# sourceMappingURL=useAdjustHeight.js.map","'use client';\nvar __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { forwardRef, useRef } from 'react';\nimport { TextFieldBase } from \"../TextFieldBase/index.js\";\nimport { useAdjustHeight } from \"./useAdjustHeight.js\";\nconst _TextArea = (props, ref) => {\n const { onInput, isAutoResizing, autoResizingMaxHeight = 400 } = props, restProps = __rest(props, [\"onInput\", \"isAutoResizing\", \"autoResizingMaxHeight\"]);\n const elementReference = useRef(ref);\n const { adjustHeightOnAutoresize, onInput: onInputHandler } = useAdjustHeight({\n elementReference,\n onInput,\n isAutoResizing,\n maxHeight: autoResizingMaxHeight,\n });\n return (React.createElement(TextFieldBase, Object.assign({ isMultiline: true, ref: elementReference, onInput: onInputHandler, onFocus: adjustHeightOnAutoresize }, restProps)));\n};\nconst TextArea = forwardRef(_TextArea);\nTextArea.spiritComponent = 'TextArea';\nexport default TextArea;\n//# sourceMappingURL=TextArea.js.map"],"names":["__rest","this","componentColors","emotionColors","textColors","containers","defaultContext","createContext","DefaultSpacingStyleProp","useContext","useMemo","defaultProps","useEffect","useState","useCallback","cssVariablePrefix","forwardRef","useRef"],"mappings":"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"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
3
|
+
var t = {};
|
|
4
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
5
|
+
t[p] = s[p];
|
|
6
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
7
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
8
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
9
|
+
t[p[i]] = s[p[i]];
|
|
10
|
+
}
|
|
11
|
+
return t;
|
|
12
|
+
};
|
|
13
|
+
import React, { forwardRef, useRef } from 'react';
|
|
14
|
+
import { TextFieldBase } from "../TextFieldBase/index.js";
|
|
15
|
+
import { useAdjustHeight } from "./useAdjustHeight.js";
|
|
16
|
+
const _TextArea = (props, ref) => {
|
|
17
|
+
const { onInput, isAutoResizing, autoResizingMaxHeight = 400 } = props, restProps = __rest(props, ["onInput", "isAutoResizing", "autoResizingMaxHeight"]);
|
|
18
|
+
const elementReference = useRef(ref);
|
|
19
|
+
const { adjustHeightOnAutoresize, onInput: onInputHandler } = useAdjustHeight({
|
|
20
|
+
elementReference,
|
|
21
|
+
onInput,
|
|
22
|
+
isAutoResizing,
|
|
23
|
+
maxHeight: autoResizingMaxHeight,
|
|
24
|
+
});
|
|
25
|
+
return (React.createElement(TextFieldBase, Object.assign({ isMultiline: true, ref: elementReference, onInput: onInputHandler, onFocus: adjustHeightOnAutoresize }, restProps)));
|
|
26
|
+
};
|
|
27
|
+
const TextArea = forwardRef(_TextArea);
|
|
28
|
+
TextArea.spiritComponent = 'TextArea';
|
|
29
|
+
export default TextArea;
|
|
30
|
+
//# sourceMappingURL=TextArea.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TextArea.js","sourceRoot":"","sources":["../../../src/components/TextArea/TextArea.tsx"],"names":[],"mappings":"AAAA,YAAY,CAAC;;;;;;;;;;;;AAEb,OAAO,KAAK,EAAE,EAAqC,UAAU,EAAE,MAAM,EAAE,MAAM,OAAO,CAAC;AAErF,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAIpD,MAAM,SAAS,GAAG,CAAC,KAA0B,EAAE,GAAsC,EAAe,EAAE;IACpG,MAAM,EAAE,OAAO,EAAE,cAAc,EAAE,qBAAqB,GAAG,GAAG,KAAmB,KAAK,EAAnB,SAAS,UAAK,KAAK,EAA9E,sDAAsE,CAAQ,CAAC;IACrF,MAAM,gBAAgB,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;IACrC,MAAM,EAAE,wBAAwB,EAAE,OAAO,EAAE,cAAc,EAAE,GAAG,eAAe,CAAC;QAC5E,gBAAgB;QAChB,OAAO;QACP,cAAc;QACd,SAAS,EAAE,qBAAqB;KACjC,CAAC,CAAC;IAEH,OAAO,CACL,oBAAC,aAAa,kBACZ,WAAW,QACX,GAAG,EAAE,gBAAkD,EACvD,OAAO,EAAE,cAAc,EACvB,OAAO,EAAE,wBAAwB,IAC7B,SAAS,EACb,CACH,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,QAAQ,GAAG,UAAU,CAA2C,SAAS,CAAC,CAAC;AAEjF,QAAQ,CAAC,eAAe,GAAG,UAAU,CAAC;AAEtC,eAAe,QAAQ,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as TextArea } from './TextArea';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/TextArea/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,QAAQ,EAAE,MAAM,YAAY,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { type FormEventHandler, type ForwardedRef, type MutableRefObject } from 'react';
|
|
2
|
+
export interface UseAdjustHeightProps {
|
|
3
|
+
elementReference?: MutableRefObject<ForwardedRef<HTMLTextAreaElement>>;
|
|
4
|
+
maxHeight: number;
|
|
5
|
+
onInput?: FormEventHandler<HTMLTextAreaElement>;
|
|
6
|
+
isAutoResizing?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export interface UseAdjustHeightReturn {
|
|
9
|
+
adjustHeight: (element: HTMLTextAreaElement) => void;
|
|
10
|
+
adjustHeightOnAutoresize: () => void;
|
|
11
|
+
onInput: FormEventHandler<HTMLTextAreaElement>;
|
|
12
|
+
}
|
|
13
|
+
export declare const useAdjustHeight: ({ elementReference, maxHeight, onInput, isAutoResizing, }: UseAdjustHeightProps) => UseAdjustHeightReturn;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
import { useEffect } from 'react';
|
|
3
|
+
export const useAdjustHeight = ({ elementReference, maxHeight, onInput, isAutoResizing, }) => {
|
|
4
|
+
const adjustHeight = (element) => {
|
|
5
|
+
const borderTopWidth = parseFloat(getComputedStyle(element).getPropertyValue('border-top-width')) || 0;
|
|
6
|
+
const borderBottomWidth = parseFloat(getComputedStyle(element).getPropertyValue('border-bottom-width')) || 0;
|
|
7
|
+
const totalBorderWidth = borderTopWidth + borderBottomWidth;
|
|
8
|
+
element.style.height = 'auto';
|
|
9
|
+
element.style.overflow = 'auto';
|
|
10
|
+
const totalHeight = element.scrollHeight + totalBorderWidth;
|
|
11
|
+
element.style.height = `${totalHeight < maxHeight ? totalHeight : maxHeight}px`;
|
|
12
|
+
element.style.overflow = totalHeight < maxHeight ? 'hidden' : 'auto';
|
|
13
|
+
};
|
|
14
|
+
const adjustHeightOnAutoresize = () => {
|
|
15
|
+
if (isAutoResizing) {
|
|
16
|
+
const textArea = elementReference === null || elementReference === void 0 ? void 0 : elementReference.current;
|
|
17
|
+
if (textArea) {
|
|
18
|
+
adjustHeight(textArea);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
const inputHandler = (event) => {
|
|
23
|
+
adjustHeightOnAutoresize();
|
|
24
|
+
if (onInput) {
|
|
25
|
+
onInput(event);
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
useEffect(() => {
|
|
29
|
+
adjustHeightOnAutoresize();
|
|
30
|
+
}, []);
|
|
31
|
+
return {
|
|
32
|
+
adjustHeight,
|
|
33
|
+
adjustHeightOnAutoresize,
|
|
34
|
+
onInput: inputHandler,
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
//# sourceMappingURL=useAdjustHeight.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useAdjustHeight.js","sourceRoot":"","sources":["../../../src/components/TextArea/useAdjustHeight.ts"],"names":[],"mappings":"AAAA,YAAY,CAAC;AAEb,OAAO,EAAmF,SAAS,EAAE,MAAM,OAAO,CAAC;AAenH,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,EAC9B,gBAAgB,EAChB,SAAS,EACT,OAAO,EACP,cAAc,GACO,EAAyB,EAAE;IAChD,MAAM,YAAY,GAAG,CAAC,OAA4B,EAAE,EAAE;QACpD,MAAM,cAAc,GAAG,UAAU,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC,gBAAgB,CAAC,kBAAkB,CAAC,CAAC,IAAI,CAAC,CAAC;QACvG,MAAM,iBAAiB,GAAG,UAAU,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC,gBAAgB,CAAC,qBAAqB,CAAC,CAAC,IAAI,CAAC,CAAC;QAC7G,MAAM,gBAAgB,GAAG,cAAc,GAAG,iBAAiB,CAAC;QAE5D,OAAO,CAAC,KAAK,CAAC,MAAM,GAAG,MAAM,CAAC;QAC9B,OAAO,CAAC,KAAK,CAAC,QAAQ,GAAG,MAAM,CAAC;QAEhC,MAAM,WAAW,GAAG,OAAO,CAAC,YAAY,GAAG,gBAAgB,CAAC;QAE5D,OAAO,CAAC,KAAK,CAAC,MAAM,GAAG,GAAG,WAAW,GAAG,SAAS,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,IAAI,CAAC;QAChF,OAAO,CAAC,KAAK,CAAC,QAAQ,GAAG,WAAW,GAAG,SAAS,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC;IACvE,CAAC,CAAC;IAEF,MAAM,wBAAwB,GAAG,GAAG,EAAE;QACpC,IAAI,cAAc,EAAE,CAAC;YAEnB,MAAM,QAAQ,GAAG,gBAAgB,aAAhB,gBAAgB,uBAAhB,gBAAgB,CAAE,OAAyC,CAAC;YAE7E,IAAI,QAAQ,EAAE,CAAC;gBACb,YAAY,CAAC,QAAQ,CAAC,CAAC;YACzB,CAAC;QACH,CAAC;IACH,CAAC,CAAC;IAEF,MAAM,YAAY,GAAG,CAAC,KAAqC,EAAE,EAAE;QAC7D,wBAAwB,EAAE,CAAC;QAE3B,IAAI,OAAO,EAAE,CAAC;YACZ,OAAO,CAAC,KAAK,CAAC,CAAC;QACjB,CAAC;IACH,CAAC,CAAC;IAMF,SAAS,CAAC,GAAG,EAAE;QACb,wBAAwB,EAAE,CAAC;IAE7B,CAAC,EAAE,EAAE,CAAC,CAAC;IAEP,OAAO;QACL,YAAY;QACZ,wBAAwB;QACxB,OAAO,EAAE,YAAY;KACtB,CAAC;AACJ,CAAC,CAAC"}
|