@algolia/satellite 1.0.0-beta.18 → 1.0.0-beta.181
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 +153 -7
- package/cjs/AnnouncementBadge/AnnouncementBadge.d.ts +25 -0
- package/cjs/AnnouncementBadge/AnnouncementBadge.js +56 -0
- package/cjs/AnnouncementBadge/index.d.ts +1 -0
- package/cjs/AnnouncementBadge/index.js +16 -0
- package/cjs/AutoComplete/AutoComplete.d.ts +8 -0
- package/cjs/AutoComplete/AutoComplete.js +434 -0
- package/cjs/AutoComplete/AutoComplete.tailwind.d.ts +5 -0
- package/cjs/AutoComplete/AutoComplete.tailwind.js +96 -0
- package/cjs/AutoComplete/components/AutoCompleteContext.d.ts +10 -0
- package/cjs/AutoComplete/components/AutoCompleteContext.js +29 -0
- package/cjs/AutoComplete/components/AutoCompleteEmptyState.d.ts +12 -0
- package/cjs/AutoComplete/components/AutoCompleteEmptyState.js +34 -0
- package/cjs/AutoComplete/components/DefaultOptionItem.d.ts +6 -0
- package/cjs/AutoComplete/components/DefaultOptionItem.js +41 -0
- package/cjs/AutoComplete/index.d.ts +6 -0
- package/cjs/AutoComplete/index.js +75 -0
- package/cjs/AutoComplete/types.d.ts +95 -0
- package/cjs/AutoComplete/types.js +5 -0
- package/cjs/AutoComplete/utils.d.ts +8 -0
- package/cjs/AutoComplete/utils.js +81 -0
- package/cjs/Avatars/ApplicationAvatar.d.ts +16 -0
- package/cjs/Avatars/ApplicationAvatar.js +37 -0
- package/cjs/Avatars/UserAvatar.d.ts +23 -0
- package/cjs/Avatars/UserAvatar.js +58 -0
- package/cjs/Avatars/index.d.ts +2 -0
- package/cjs/Avatars/index.js +27 -0
- package/cjs/Avatars/types.d.ts +17 -0
- package/cjs/Avatars/types.js +5 -0
- package/cjs/Avatars/utils.d.ts +6 -0
- package/cjs/Avatars/utils.js +55 -0
- package/cjs/Badge/Badge.d.ts +24 -0
- package/cjs/Badge/Badge.js +68 -0
- package/cjs/Badge/index.d.ts +1 -0
- package/cjs/Badge/index.js +16 -0
- package/cjs/Banners/Alert/Alert.d.ts +33 -0
- package/cjs/Banners/Alert/Alert.js +93 -0
- package/cjs/Banners/Alert/index.d.ts +1 -0
- package/cjs/Banners/Alert/index.js +16 -0
- package/cjs/Banners/Promote/Promote.d.ts +28 -0
- package/cjs/Banners/Promote/Promote.js +79 -0
- package/cjs/Banners/Promote/index.d.ts +1 -0
- package/cjs/Banners/Promote/index.js +16 -0
- package/cjs/Banners/SystemNotification/SystemNotification.d.ts +12 -0
- package/cjs/Banners/SystemNotification/SystemNotification.js +33 -0
- package/cjs/Banners/SystemNotification/index.d.ts +1 -0
- package/cjs/Banners/SystemNotification/index.js +16 -0
- package/cjs/Banners/index.d.ts +3 -0
- package/cjs/Banners/index.js +38 -0
- package/cjs/Button/Button.d.ts +9 -0
- package/cjs/Button/Button.js +25 -0
- package/cjs/Button/Button.tailwind.d.ts +5 -0
- package/cjs/Button/Button.tailwind.js +154 -0
- package/cjs/Button/ButtonGroup.d.ts +17 -0
- package/cjs/Button/ButtonGroup.js +27 -0
- package/cjs/Button/IconButton.d.ts +9 -0
- package/cjs/Button/IconButton.js +25 -0
- package/cjs/Button/PolymorphicButton.d.ts +12 -0
- package/cjs/Button/PolymorphicButton.js +78 -0
- package/cjs/Button/PolymorphicIconButton.d.ts +29 -0
- package/cjs/Button/PolymorphicIconButton.js +86 -0
- package/cjs/Button/index.d.ts +4 -0
- package/cjs/Button/index.js +38 -0
- package/cjs/Button/styles.d.ts +5 -0
- package/cjs/Button/styles.js +37 -0
- package/cjs/Button/types.d.ts +33 -0
- package/cjs/Button/types.js +11 -0
- package/cjs/Card/Card.d.ts +36 -0
- package/cjs/Card/Card.js +47 -0
- package/cjs/Card/Card.tailwind.d.ts +5 -0
- package/cjs/Card/Card.tailwind.js +36 -0
- package/cjs/Card/components/CardHeader.d.ts +5 -0
- package/cjs/Card/components/CardHeader.js +26 -0
- package/cjs/Card/components/CardTitle.d.ts +7 -0
- package/cjs/Card/components/CardTitle.js +28 -0
- package/cjs/Card/index.d.ts +3 -0
- package/cjs/Card/index.js +38 -0
- package/cjs/Checkbox/Checkbox.d.ts +23 -0
- package/cjs/Checkbox/Checkbox.js +96 -0
- package/cjs/Checkbox/Checkbox.tailwind.d.ts +5 -0
- package/cjs/Checkbox/Checkbox.tailwind.js +70 -0
- package/cjs/Checkbox/index.d.ts +1 -0
- package/cjs/Checkbox/index.js +16 -0
- package/cjs/ClickAwayContainer/ClickAwayContainer.d.ts +28 -0
- package/cjs/ClickAwayContainer/ClickAwayContainer.js +82 -0
- package/cjs/ClickAwayContainer/index.d.ts +1 -0
- package/cjs/ClickAwayContainer/index.js +16 -0
- package/cjs/DatePicker/DatePicker/DatePicker.d.ts +39 -0
- package/cjs/DatePicker/DatePicker/DatePicker.js +168 -0
- package/cjs/DatePicker/DatePicker/datePickerReducer.d.ts +29 -0
- package/cjs/DatePicker/DatePicker/datePickerReducer.js +50 -0
- package/cjs/DatePicker/DatePicker/index.d.ts +2 -0
- package/cjs/DatePicker/DatePicker/index.js +27 -0
- package/cjs/DatePicker/DatePicker.tailwind.d.ts +5 -0
- package/cjs/DatePicker/DatePicker.tailwind.js +184 -0
- package/cjs/DatePicker/DateRangePicker/DateRangePicker.d.ts +40 -0
- package/cjs/DatePicker/DateRangePicker/DateRangePicker.js +261 -0
- package/cjs/DatePicker/DateRangePicker/DateRangePickerDisplay.d.ts +13 -0
- package/cjs/DatePicker/DateRangePicker/DateRangePickerDisplay.js +37 -0
- package/cjs/DatePicker/DateRangePicker/dateRangePickerReducer.d.ts +54 -0
- package/cjs/DatePicker/DateRangePicker/dateRangePickerReducer.js +99 -0
- package/cjs/DatePicker/DateRangePicker/dateRangePickerTimeRange.d.ts +16 -0
- package/cjs/DatePicker/DateRangePicker/dateRangePickerTimeRange.js +15 -0
- package/cjs/DatePicker/DateRangePicker/index.d.ts +3 -0
- package/cjs/DatePicker/DateRangePicker/index.js +38 -0
- package/cjs/DatePicker/components/Calendar.d.ts +17 -0
- package/cjs/DatePicker/components/Calendar.js +54 -0
- package/cjs/DatePicker/components/Display.d.ts +9 -0
- package/cjs/DatePicker/components/Display.js +22 -0
- package/cjs/DatePicker/components/Footer.d.ts +5 -0
- package/cjs/DatePicker/components/Footer.js +18 -0
- package/cjs/DatePicker/components/FooterActions.d.ts +11 -0
- package/cjs/DatePicker/components/FooterActions.js +31 -0
- package/cjs/DatePicker/components/Modal.d.ts +15 -0
- package/cjs/DatePicker/components/Modal.js +66 -0
- package/cjs/DatePicker/components/NavBar.d.ts +9 -0
- package/cjs/DatePicker/components/NavBar.js +122 -0
- package/cjs/DatePicker/components/SidePanel.d.ts +5 -0
- package/cjs/DatePicker/components/SidePanel.js +21 -0
- package/cjs/DatePicker/components/index.d.ts +7 -0
- package/cjs/DatePicker/components/index.js +75 -0
- package/cjs/DatePicker/index.d.ts +3 -0
- package/cjs/DatePicker/index.js +38 -0
- package/cjs/DatePicker/types.d.ts +26 -0
- package/cjs/DatePicker/types.js +5 -0
- package/cjs/DatePicker/utils.d.ts +3 -0
- package/cjs/DatePicker/utils.js +19 -0
- package/cjs/Dropdown/Dropdown.d.ts +40 -0
- package/cjs/Dropdown/Dropdown.js +124 -0
- package/cjs/Dropdown/DropdownButton.d.ts +13 -0
- package/cjs/Dropdown/DropdownButton.js +49 -0
- package/cjs/Dropdown/DropdownContext.d.ts +6 -0
- package/cjs/Dropdown/DropdownContext.js +15 -0
- package/cjs/Dropdown/components/DropdownButtonItem.d.ts +14 -0
- package/cjs/Dropdown/components/DropdownButtonItem.js +46 -0
- package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.d.ts +10 -0
- package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.js +59 -0
- package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.d.ts +8 -0
- package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.js +21 -0
- package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.d.ts +8 -0
- package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.js +17 -0
- package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.d.ts +10 -0
- package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.js +37 -0
- package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.d.ts +10 -0
- package/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.js +34 -0
- package/cjs/Dropdown/components/DropdownCollapsibleItem/index.d.ts +5 -0
- package/cjs/Dropdown/components/DropdownCollapsibleItem/index.js +63 -0
- package/cjs/Dropdown/components/DropdownDivider.d.ts +3 -0
- package/cjs/Dropdown/components/DropdownDivider.js +17 -0
- package/cjs/Dropdown/components/DropdownFooterItem.d.ts +9 -0
- package/cjs/Dropdown/components/DropdownFooterItem.js +29 -0
- package/cjs/Dropdown/components/DropdownLinkItem.d.ts +10 -0
- package/cjs/Dropdown/components/DropdownLinkItem.js +54 -0
- package/cjs/Dropdown/components/DropdownRadioItem.d.ts +8 -0
- package/cjs/Dropdown/components/DropdownRadioItem.js +46 -0
- package/cjs/Dropdown/components/DropdownTitle.d.ts +6 -0
- package/cjs/Dropdown/components/DropdownTitle.js +25 -0
- package/cjs/Dropdown/components/DropdownToggleItem.d.ts +11 -0
- package/cjs/Dropdown/components/DropdownToggleItem.js +49 -0
- package/cjs/Dropdown/index.d.ts +12 -0
- package/cjs/Dropdown/index.js +137 -0
- package/cjs/Dropdown/useDropdownItemProps.d.ts +20 -0
- package/cjs/Dropdown/useDropdownItemProps.js +37 -0
- package/cjs/Dropzone/Dropzone.d.ts +25 -0
- package/cjs/Dropzone/Dropzone.js +163 -0
- package/cjs/Dropzone/index.d.ts +1 -0
- package/cjs/Dropzone/index.js +16 -0
- package/cjs/EmptyState/EmptyState.d.ts +8 -0
- package/cjs/EmptyState/EmptyState.js +98 -0
- package/cjs/EmptyState/EmptyState.tailwind.d.ts +5 -0
- package/cjs/EmptyState/EmptyState.tailwind.js +15 -0
- package/cjs/EmptyState/index.d.ts +2 -0
- package/cjs/EmptyState/index.js +27 -0
- package/cjs/EmptyState/types.d.ts +50 -0
- package/cjs/EmptyState/types.js +5 -0
- package/cjs/Field/Field.d.ts +24 -0
- package/cjs/Field/Field.js +74 -0
- package/cjs/Field/FieldContext.d.ts +16 -0
- package/cjs/Field/FieldContext.js +14 -0
- package/cjs/Field/index.d.ts +4 -0
- package/{components/Tooltip → cjs/Field}/index.js +14 -15
- package/cjs/Field/useField.d.ts +2 -0
- package/cjs/Field/useField.js +11 -0
- package/cjs/FlexGrid/FlexGrid.d.ts +44 -0
- package/cjs/FlexGrid/FlexGrid.js +73 -0
- package/cjs/FlexGrid/FlexGrid.tailwind.d.ts +8 -0
- package/cjs/FlexGrid/FlexGrid.tailwind.js +71 -0
- package/cjs/FlexGrid/index.d.ts +1 -0
- package/cjs/FlexGrid/index.js +16 -0
- package/cjs/HelpUnderline/HelpUnderline.d.ts +15 -0
- package/cjs/HelpUnderline/HelpUnderline.js +39 -0
- package/cjs/HelpUnderline/HelpUnderline.tailwind.d.ts +5 -0
- package/cjs/HelpUnderline/HelpUnderline.tailwind.js +21 -0
- package/cjs/HelpUnderline/index.d.ts +1 -0
- package/cjs/HelpUnderline/index.js +16 -0
- package/cjs/Icons/AlgoliaRecommendIcon.d.ts +3 -0
- package/cjs/Icons/AlgoliaRecommendIcon.js +46 -0
- package/cjs/Icons/AlgoliaSearchIcon.d.ts +3 -0
- package/cjs/Icons/AlgoliaSearchIcon.js +49 -0
- package/cjs/Icons/BulbIcon.d.ts +3 -0
- package/cjs/Icons/BulbIcon.js +37 -0
- package/cjs/Icons/ContextIcon.d.ts +3 -0
- package/cjs/Icons/ContextIcon.js +51 -0
- package/cjs/Icons/CrawlerIcon.d.ts +3 -0
- package/cjs/Icons/CrawlerIcon.js +40 -0
- package/cjs/Icons/DragHandleIcon.d.ts +3 -0
- package/cjs/Icons/DragHandleIcon.js +58 -0
- package/cjs/Icons/NeuralSearchIcon.d.ts +3 -0
- package/cjs/Icons/NeuralSearchIcon.js +34 -0
- package/cjs/Icons/NoFiltersIcon.d.ts +3 -0
- package/cjs/Icons/NoFiltersIcon.js +59 -0
- package/cjs/Icons/PinIcon.d.ts +3 -0
- package/cjs/Icons/PinIcon.js +60 -0
- package/cjs/Icons/QueryBreakdownIcon.d.ts +3 -0
- package/cjs/Icons/QueryBreakdownIcon.js +39 -0
- package/cjs/Icons/RocketIcon.d.ts +3 -0
- package/cjs/Icons/RocketIcon.js +36 -0
- package/cjs/Icons/SettingsCategoryPagesIcon.d.ts +3 -0
- package/cjs/Icons/SettingsCategoryPagesIcon.js +36 -0
- package/cjs/Icons/SettingsConsequencesIcon.d.ts +3 -0
- package/cjs/Icons/SettingsConsequencesIcon.js +70 -0
- package/cjs/Icons/TestingIcon.d.ts +3 -0
- package/cjs/Icons/TestingIcon.js +36 -0
- package/cjs/Icons/UnpinIcon.d.ts +3 -0
- package/cjs/Icons/UnpinIcon.js +60 -0
- package/cjs/Icons/WorkspaceSwitcherIcon.d.ts +3 -0
- package/cjs/Icons/WorkspaceSwitcherIcon.js +34 -0
- package/cjs/Icons/index.d.ts +20 -0
- package/cjs/Icons/index.js +1846 -0
- package/cjs/Icons/utils.d.ts +1 -0
- package/cjs/Icons/utils.js +10 -0
- package/cjs/Input/Input.d.ts +27 -0
- package/cjs/Input/Input.js +212 -0
- package/cjs/Input/Input.tailwind.d.ts +5 -0
- package/cjs/Input/Input.tailwind.js +123 -0
- package/cjs/Input/index.d.ts +1 -0
- package/cjs/Input/index.js +16 -0
- package/cjs/Insert/Insert.d.ts +19 -0
- package/cjs/Insert/Insert.js +50 -0
- package/cjs/Insert/index.d.ts +1 -0
- package/cjs/Insert/index.js +16 -0
- package/cjs/InstantSearch/InstantSearch.tailwind.d.ts +5 -0
- package/cjs/InstantSearch/InstantSearch.tailwind.js +376 -0
- package/cjs/KeyboardKey/KeyboardKey.d.ts +12 -0
- package/cjs/KeyboardKey/KeyboardKey.js +41 -0
- package/cjs/KeyboardKey/KeyboardKey.tailwind.d.ts +5 -0
- package/cjs/KeyboardKey/KeyboardKey.tailwind.js +29 -0
- package/cjs/KeyboardKey/index.d.ts +1 -0
- package/cjs/KeyboardKey/index.js +16 -0
- package/cjs/Link/BaseLink.d.ts +7 -0
- package/cjs/Link/BaseLink.js +28 -0
- package/cjs/Link/ButtonLink.d.ts +13 -0
- package/cjs/Link/ButtonLink.js +41 -0
- package/cjs/Link/IconButtonLink.d.ts +13 -0
- package/cjs/Link/IconButtonLink.js +35 -0
- package/cjs/Link/Link.d.ts +17 -0
- package/cjs/Link/Link.js +56 -0
- package/cjs/Link/index.d.ts +4 -0
- package/cjs/Link/index.js +49 -0
- package/cjs/Medallion/Medallion.d.ts +16 -0
- package/cjs/Medallion/Medallion.js +44 -0
- package/cjs/Medallion/Medallion.tailwind.d.ts +5 -0
- package/cjs/Medallion/Medallion.tailwind.js +31 -0
- package/cjs/Medallion/index.d.ts +2 -0
- package/cjs/Medallion/index.js +27 -0
- package/cjs/Medallion/types.d.ts +2 -0
- package/cjs/Medallion/types.js +5 -0
- package/cjs/MenuButton/MenuButton.d.ts +26 -0
- package/cjs/MenuButton/MenuButton.js +47 -0
- package/cjs/MenuButton/components/Content.d.ts +4 -0
- package/cjs/MenuButton/components/Content.js +39 -0
- package/cjs/MenuButton/components/CustomTrigger.d.ts +4 -0
- package/cjs/MenuButton/components/CustomTrigger.js +23 -0
- package/cjs/MenuButton/components/DefaultTrigger.d.ts +4 -0
- package/cjs/MenuButton/components/DefaultTrigger.js +34 -0
- package/cjs/MenuButton/components/Divider.d.ts +2 -0
- package/cjs/MenuButton/components/Divider.js +20 -0
- package/cjs/MenuButton/components/Label.d.ts +3 -0
- package/cjs/MenuButton/components/Label.js +31 -0
- package/cjs/MenuButton/components/collapsible/CollapsibleItem.d.ts +8 -0
- package/cjs/MenuButton/components/collapsible/CollapsibleItem.js +63 -0
- package/cjs/MenuButton/components/collapsible/CollapsibleItemsGroup.d.ts +6 -0
- package/cjs/MenuButton/components/collapsible/CollapsibleItemsGroup.js +20 -0
- package/cjs/MenuButton/components/collapsible/CollapsibleItemsGroupContext.d.ts +7 -0
- package/cjs/MenuButton/components/collapsible/CollapsibleItemsGroupContext.js +15 -0
- package/cjs/MenuButton/components/collapsible/CollapsibleItemsMultipleGroup.d.ts +8 -0
- package/cjs/MenuButton/components/collapsible/CollapsibleItemsMultipleGroup.js +36 -0
- package/cjs/MenuButton/components/collapsible/CollapsibleItemsSingleGroup.d.ts +8 -0
- package/cjs/MenuButton/components/collapsible/CollapsibleItemsSingleGroup.js +33 -0
- package/cjs/MenuButton/components/collapsible/index.d.ts +5 -0
- package/cjs/MenuButton/components/collapsible/index.js +60 -0
- package/cjs/MenuButton/components/items/Item.d.ts +14 -0
- package/cjs/MenuButton/components/items/Item.js +42 -0
- package/cjs/MenuButton/components/items/LinkItem.d.ts +16 -0
- package/cjs/MenuButton/components/items/LinkItem.js +72 -0
- package/cjs/MenuButton/components/items/RadioItem.d.ts +5 -0
- package/cjs/MenuButton/components/items/RadioItem.js +49 -0
- package/cjs/MenuButton/components/items/ToggleItem.d.ts +8 -0
- package/cjs/MenuButton/components/items/ToggleItem.js +71 -0
- package/cjs/MenuButton/components/items/index.d.ts +4 -0
- package/cjs/MenuButton/components/items/index.js +49 -0
- package/cjs/MenuButton/index.d.ts +1 -0
- package/cjs/MenuButton/index.js +16 -0
- package/cjs/MenuButton/useMenuItemProps.d.ts +10 -0
- package/cjs/MenuButton/useMenuItemProps.js +18 -0
- package/cjs/Modal/Modal.d.ts +61 -0
- package/cjs/Modal/Modal.js +154 -0
- package/cjs/Modal/Modal.tailwind.d.ts +5 -0
- package/cjs/Modal/Modal.tailwind.js +81 -0
- package/cjs/Modal/components/ModalFooter.d.ts +5 -0
- package/cjs/Modal/components/ModalFooter.js +31 -0
- package/cjs/Modal/components/ModalSection.d.ts +9 -0
- package/cjs/Modal/components/ModalSection.js +22 -0
- package/cjs/Modal/index.d.ts +3 -0
- package/cjs/Modal/index.js +38 -0
- package/cjs/Pagination/CompactPagination/CompactPagination.d.ts +36 -0
- package/cjs/Pagination/CompactPagination/CompactPagination.js +87 -0
- package/cjs/Pagination/CompactPagination/index.d.ts +1 -0
- package/cjs/Pagination/CompactPagination/index.js +16 -0
- package/cjs/Pagination/DotPagination/DotPagination.d.ts +19 -0
- package/cjs/Pagination/DotPagination/DotPagination.js +50 -0
- package/cjs/Pagination/DotPagination/index.d.ts +1 -0
- package/cjs/Pagination/DotPagination/index.js +16 -0
- package/cjs/Pagination/Pagination/Pagination.d.ts +19 -0
- package/cjs/Pagination/Pagination/Pagination.js +116 -0
- package/cjs/Pagination/Pagination/index.d.ts +1 -0
- package/cjs/Pagination/Pagination/index.js +16 -0
- package/cjs/Pagination/index.d.ts +3 -0
- package/cjs/Pagination/index.js +38 -0
- package/cjs/Popover/Popover.d.ts +9 -0
- package/cjs/Popover/Popover.js +142 -0
- package/cjs/Popover/index.d.ts +2 -0
- package/{components/Input → cjs/Popover}/index.js +10 -10
- package/cjs/Popover/types.d.ts +74 -0
- package/cjs/Popover/types.js +5 -0
- package/cjs/ProgressBar/ProgressBar.d.ts +15 -0
- package/cjs/ProgressBar/ProgressBar.js +56 -0
- package/cjs/ProgressBar/ProgressBar.tailwind.d.ts +5 -0
- package/cjs/ProgressBar/ProgressBar.tailwind.js +25 -0
- package/cjs/ProgressBar/index.d.ts +1 -0
- package/cjs/ProgressBar/index.js +16 -0
- package/cjs/ProgressSpinner/ProgressSpinner.d.ts +13 -0
- package/cjs/ProgressSpinner/ProgressSpinner.js +59 -0
- package/cjs/ProgressSpinner/ProgressSpinner.tailwind.d.ts +5 -0
- package/cjs/ProgressSpinner/ProgressSpinner.tailwind.js +44 -0
- package/cjs/ProgressSpinner/index.d.ts +1 -0
- package/cjs/ProgressSpinner/index.js +16 -0
- package/cjs/RadioGroup/RadioButton.d.ts +3 -0
- package/cjs/RadioGroup/RadioButton.js +28 -0
- package/cjs/RadioGroup/RadioButton.tailwind.d.ts +5 -0
- package/cjs/RadioGroup/RadioButton.tailwind.js +61 -0
- package/cjs/RadioGroup/RadioGroup.d.ts +31 -0
- package/cjs/RadioGroup/RadioGroup.js +92 -0
- package/cjs/RadioGroup/RadiogroupContext.d.ts +11 -0
- package/cjs/RadioGroup/RadiogroupContext.js +15 -0
- package/cjs/RadioGroup/index.d.ts +3 -0
- package/cjs/RadioGroup/index.js +38 -0
- package/cjs/RangeSlider/RangeSlider.d.ts +36 -0
- package/cjs/RangeSlider/RangeSlider.js +102 -0
- package/cjs/RangeSlider/index.d.ts +1 -0
- package/cjs/RangeSlider/index.js +16 -0
- package/cjs/Satellite/Satellite.d.ts +10 -0
- package/cjs/Satellite/Satellite.js +59 -0
- package/cjs/Satellite/SatelliteContext.d.ts +10 -0
- package/cjs/Satellite/SatelliteContext.js +22 -0
- package/cjs/Satellite/SatelliteRouter.d.ts +21 -0
- package/cjs/Satellite/SatelliteRouter.js +47 -0
- package/cjs/Satellite/index.d.ts +5 -0
- package/cjs/Satellite/index.js +60 -0
- package/cjs/Satellite/locale.d.ts +37 -0
- package/cjs/Satellite/locale.js +13 -0
- package/cjs/Satellite/useCreatePortal.d.ts +4 -0
- package/cjs/Satellite/useCreatePortal.js +23 -0
- package/cjs/ScrollIndicator/ScrollIndicator.d.ts +18 -0
- package/cjs/ScrollIndicator/ScrollIndicator.js +91 -0
- package/cjs/ScrollIndicator/ScrollIndicator.tailwind.d.ts +5 -0
- package/cjs/ScrollIndicator/ScrollIndicator.tailwind.js +50 -0
- package/cjs/ScrollIndicator/index.d.ts +1 -0
- package/cjs/ScrollIndicator/index.js +16 -0
- package/cjs/Select/Select.d.ts +11 -0
- package/cjs/Select/Select.js +40 -0
- package/cjs/Select/Select.tailwind.d.ts +5 -0
- package/cjs/Select/Select.tailwind.js +76 -0
- package/cjs/Select/index.d.ts +1 -0
- package/cjs/Select/index.js +16 -0
- package/cjs/Separator/Separator.d.ts +13 -0
- package/cjs/Separator/Separator.js +43 -0
- package/cjs/Separator/Separator.tailwind.d.ts +5 -0
- package/cjs/Separator/Separator.tailwind.js +54 -0
- package/cjs/Separator/index.d.ts +1 -0
- package/cjs/Separator/index.js +16 -0
- package/cjs/Sidebar/Sidebar.d.ts +41 -0
- package/cjs/Sidebar/Sidebar.js +67 -0
- package/cjs/Sidebar/SidebarButtonLink.d.ts +20 -0
- package/cjs/Sidebar/SidebarButtonLink.js +84 -0
- package/cjs/Sidebar/SidebarContext.d.ts +9 -0
- package/cjs/Sidebar/SidebarContext.js +15 -0
- package/cjs/Sidebar/SidebarHeader.d.ts +7 -0
- package/cjs/Sidebar/SidebarHeader.js +20 -0
- package/cjs/Sidebar/SidebarHeading.d.ts +8 -0
- package/cjs/Sidebar/SidebarHeading.js +25 -0
- package/cjs/Sidebar/SidebarLink.d.ts +9 -0
- package/cjs/Sidebar/SidebarLink.js +50 -0
- package/cjs/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.d.ts +9 -0
- package/cjs/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.js +37 -0
- package/cjs/Sidebar/SidebarLinksGroup/SidebarGroupLink.d.ts +7 -0
- package/cjs/Sidebar/SidebarLinksGroup/SidebarGroupLink.js +36 -0
- package/cjs/Sidebar/SidebarLinksGroup/SidebarLinksGroup.d.ts +24 -0
- package/cjs/Sidebar/SidebarLinksGroup/SidebarLinksGroup.js +97 -0
- package/cjs/Sidebar/SidebarLinksGroup/index.d.ts +2 -0
- package/cjs/Sidebar/SidebarLinksGroup/index.js +16 -0
- package/cjs/Sidebar/SidebarLinksGroup/types.d.ts +10 -0
- package/cjs/Sidebar/SidebarLinksGroup/types.js +5 -0
- package/cjs/Sidebar/SidebarNav.d.ts +11 -0
- package/cjs/Sidebar/SidebarNav.js +36 -0
- package/cjs/Sidebar/index.d.ts +9 -0
- package/cjs/Sidebar/index.js +111 -0
- package/cjs/Sidebar/types.d.ts +6 -0
- package/cjs/Sidebar/types.js +5 -0
- package/cjs/Stepper/Step.d.ts +6 -0
- package/cjs/Stepper/Step.js +115 -0
- package/cjs/Stepper/Stepper.d.ts +41 -0
- package/cjs/Stepper/Stepper.js +145 -0
- package/cjs/Stepper/StepperContext.d.ts +12 -0
- package/cjs/Stepper/StepperContext.js +15 -0
- package/cjs/Stepper/index.d.ts +3 -0
- package/cjs/Stepper/index.js +38 -0
- package/cjs/Stepper/types.d.ts +26 -0
- package/cjs/Stepper/types.js +5 -0
- package/cjs/Stepper/utils.d.ts +5 -0
- package/cjs/Stepper/utils.js +67 -0
- package/cjs/Switch/Switch.d.ts +18 -0
- package/cjs/Switch/Switch.js +90 -0
- package/cjs/Switch/Switch.tailwind.d.ts +5 -0
- package/cjs/Switch/Switch.tailwind.js +25 -0
- package/cjs/Switch/SwitchOption.d.ts +7 -0
- package/cjs/Switch/SwitchOption.js +44 -0
- package/cjs/Switch/index.d.ts +2 -0
- package/cjs/Switch/index.js +27 -0
- package/cjs/Switch/types.d.ts +7 -0
- package/cjs/Switch/types.js +5 -0
- package/cjs/Switch/utils.d.ts +6 -0
- package/cjs/Switch/utils.js +18 -0
- package/cjs/Tables/DataTable/DataTable.d.ts +55 -0
- package/cjs/Tables/DataTable/DataTable.js +249 -0
- package/cjs/Tables/DataTable/DataTable.tailwind.d.ts +5 -0
- package/cjs/Tables/DataTable/DataTable.tailwind.js +23 -0
- package/cjs/Tables/DataTable/components/Body.d.ts +14 -0
- package/cjs/Tables/DataTable/components/Body.js +118 -0
- package/cjs/Tables/DataTable/components/Footer.d.ts +7 -0
- package/cjs/Tables/DataTable/components/Footer.js +59 -0
- package/cjs/Tables/DataTable/components/Header.d.ts +9 -0
- package/cjs/Tables/DataTable/components/Header.js +38 -0
- package/cjs/Tables/DataTable/components/HeaderCell.d.ts +11 -0
- package/cjs/Tables/DataTable/components/HeaderCell.js +57 -0
- package/cjs/Tables/DataTable/components/Loader.d.ts +8 -0
- package/cjs/Tables/DataTable/components/Loader.js +46 -0
- package/cjs/Tables/DataTable/components/index.d.ts +5 -0
- package/cjs/Tables/DataTable/components/index.js +60 -0
- package/cjs/Tables/DataTable/index.d.ts +2 -0
- package/cjs/Tables/DataTable/index.js +27 -0
- package/cjs/Tables/DataTable/types.d.ts +63 -0
- package/cjs/Tables/DataTable/types.js +5 -0
- package/cjs/Tables/DataTable/utils.d.ts +4 -0
- package/cjs/Tables/DataTable/utils.js +20 -0
- package/cjs/Tables/Table/Table.d.ts +13 -0
- package/cjs/Tables/Table/Table.js +45 -0
- package/cjs/Tables/Table/Table.tailwind.d.ts +5 -0
- package/cjs/Tables/Table/Table.tailwind.js +39 -0
- package/cjs/Tables/Table/components/TableFooter.d.ts +7 -0
- package/cjs/Tables/Table/components/TableFooter.js +25 -0
- package/cjs/Tables/Table/index.d.ts +2 -0
- package/cjs/Tables/Table/index.js +27 -0
- package/cjs/Tables/index.d.ts +2 -0
- package/cjs/Tables/index.js +27 -0
- package/cjs/Tabs/ContentTabs.d.ts +3 -0
- package/cjs/Tabs/ContentTabs.js +59 -0
- package/cjs/Tabs/LinkTabs.d.ts +9 -0
- package/cjs/Tabs/LinkTabs.js +51 -0
- package/cjs/Tabs/Tabs.tailwind.d.ts +5 -0
- package/cjs/Tabs/Tabs.tailwind.js +72 -0
- package/cjs/Tabs/components/LinkTab.d.ts +8 -0
- package/cjs/Tabs/components/LinkTab.js +83 -0
- package/cjs/Tabs/index.d.ts +3 -0
- package/cjs/Tabs/index.js +38 -0
- package/cjs/Tabs/types.d.ts +34 -0
- package/cjs/Tabs/types.js +5 -0
- package/cjs/Tabs/utils.d.ts +2 -0
- package/cjs/Tabs/utils.js +18 -0
- package/cjs/Tag/Tag.d.ts +30 -0
- package/cjs/Tag/Tag.js +121 -0
- package/cjs/Tag/Tag.tailwind.d.ts +5 -0
- package/cjs/Tag/Tag.tailwind.js +54 -0
- package/cjs/Tag/index.d.ts +1 -0
- package/cjs/Tag/index.js +16 -0
- package/cjs/TextArea/TextArea.d.ts +9 -0
- package/cjs/TextArea/TextArea.js +32 -0
- package/cjs/TextArea/TextArea.tailwind.d.ts +5 -0
- package/cjs/TextArea/TextArea.tailwind.js +42 -0
- package/cjs/TextArea/index.d.ts +1 -0
- package/cjs/TextArea/index.js +16 -0
- package/cjs/TextWrap/TextWrap.d.ts +12 -0
- package/cjs/TextWrap/TextWrap.js +58 -0
- package/cjs/TextWrap/index.d.ts +1 -0
- package/cjs/TextWrap/index.js +16 -0
- package/cjs/Toast/Toast.d.ts +5 -0
- package/cjs/Toast/Toast.js +110 -0
- package/cjs/Toast/Toast.tailwind.d.ts +5 -0
- package/cjs/Toast/Toast.tailwind.js +34 -0
- package/cjs/Toast/Toasts.d.ts +20 -0
- package/cjs/Toast/Toasts.js +101 -0
- package/cjs/Toast/index.d.ts +3 -0
- package/cjs/Toast/index.js +38 -0
- package/cjs/Toast/types.d.ts +34 -0
- package/cjs/Toast/types.js +5 -0
- package/cjs/Toggle/Toggle.d.ts +12 -0
- package/cjs/Toggle/Toggle.js +73 -0
- package/cjs/Toggle/Toggle.tailwind.d.ts +5 -0
- package/cjs/Toggle/Toggle.tailwind.js +84 -0
- package/cjs/Toggle/index.d.ts +1 -0
- package/cjs/Toggle/index.js +16 -0
- package/cjs/Tooltip/OverflowTooltipWrapper.d.ts +10 -0
- package/cjs/Tooltip/OverflowTooltipWrapper.js +51 -0
- package/cjs/Tooltip/Tooltip.d.ts +11 -0
- package/cjs/Tooltip/Tooltip.js +39 -0
- package/cjs/Tooltip/Tooltip.tailwind.d.ts +5 -0
- package/cjs/Tooltip/Tooltip.tailwind.js +47 -0
- package/cjs/Tooltip/TooltipWrapper.d.ts +19 -0
- package/cjs/Tooltip/TooltipWrapper.js +87 -0
- package/cjs/Tooltip/index.d.ts +3 -0
- package/cjs/Tooltip/index.js +38 -0
- package/cjs/Tooltip/types.d.ts +65 -0
- package/cjs/Tooltip/types.js +5 -0
- package/cjs/Tooltip/utils.d.ts +1 -0
- package/cjs/Tooltip/utils.js +9 -0
- package/cjs/Typography/Typography.tailwind.d.ts +5 -0
- package/cjs/Typography/Typography.tailwind.js +170 -0
- package/cjs/UserContent/UserContent.d.ts +13 -0
- package/cjs/UserContent/UserContent.js +30 -0
- package/cjs/UserContent/UserContent.tailwind.d.ts +5 -0
- package/cjs/UserContent/UserContent.tailwind.js +141 -0
- package/cjs/index.d.ts +53 -0
- package/cjs/index.js +628 -0
- package/cjs/package.json +3 -0
- package/cjs/styles/base.tailwind.d.ts +5 -0
- package/cjs/styles/base.tailwind.js +46 -0
- package/cjs/styles/brandColors.d.ts +42 -0
- package/cjs/styles/brandColors.js +48 -0
- package/cjs/styles/colors.d.ts +110 -0
- package/cjs/styles/colors.js +116 -0
- package/cjs/styles/disabledColor.d.ts +6 -0
- package/cjs/styles/disabledColor.js +14 -0
- package/cjs/styles/helpers/icons.d.ts +15 -0
- package/cjs/styles/helpers/icons.js +39 -0
- package/cjs/styles/helpers/makePurgeCssExtractor.d.ts +7 -0
- package/cjs/styles/helpers/makePurgeCssExtractor.js +50 -0
- package/cjs/styles/helpers/makeTailwindPrefixer.d.ts +6 -0
- package/cjs/styles/helpers/makeTailwindPrefixer.js +36 -0
- package/cjs/styles/helpers/prefixTailwindClassName.d.ts +7 -0
- package/cjs/styles/helpers/prefixTailwindClassName.js +28 -0
- package/cjs/styles/helpers/satellitePrefixer.d.ts +3 -0
- package/cjs/styles/helpers/satellitePrefixer.js +8 -0
- package/cjs/styles/rgba.d.ts +8 -0
- package/cjs/styles/rgba.js +15 -0
- package/cjs/styles/tailwind.config.d.ts +2 -0
- package/cjs/styles/tailwind.config.js +146 -0
- package/cjs/styles/zIndexes.d.ts +8 -0
- package/cjs/styles/zIndexes.js +15 -0
- package/cjs/types.d.ts +24 -0
- package/cjs/types.js +5 -0
- package/cjs/utilities/overlay.tailwind.d.ts +5 -0
- package/cjs/utilities/overlay.tailwind.js +107 -0
- package/cjs/utilities/utilities.tailwind.d.ts +5 -0
- package/cjs/utilities/utilities.tailwind.js +27 -0
- package/cjs/utils/NumberUnion.d.ts +5 -0
- package/cjs/utils/NumberUnion.js +5 -0
- package/cjs/utils/clamp.d.ts +1 -0
- package/cjs/utils/clamp.js +9 -0
- package/cjs/utils/event-polyfill.d.ts +0 -0
- package/cjs/utils/event-polyfill.js +25 -0
- package/cjs/utils/formatters.d.ts +25 -0
- package/cjs/utils/formatters.js +44 -0
- package/cjs/utils/genericChangeHandler.d.ts +5 -0
- package/{utils → cjs/utils}/genericChangeHandler.js +1 -10
- package/cjs/utils/getTextFromReactNode.d.ts +4 -0
- package/cjs/utils/getTextFromReactNode.js +20 -0
- package/cjs/utils/hashCode.d.ts +1 -0
- package/cjs/utils/hashCode.js +20 -0
- package/{utils → cjs/utils}/index.d.ts +2 -3
- package/{utils → cjs/utils}/index.js +11 -18
- package/cjs/utils/isCssPropertySupported.d.ts +1 -0
- package/cjs/utils/isCssPropertySupported.js +14 -0
- package/cjs/utils/isNil.d.ts +18 -0
- package/cjs/utils/isNil.js +26 -0
- package/cjs/utils/isReactText.d.ts +2 -0
- package/cjs/utils/isReactText.js +9 -0
- package/cjs/utils/isRenderedChild.d.ts +7 -0
- package/cjs/utils/isRenderedChild.js +14 -0
- package/cjs/utils/matchLocation.d.ts +2 -0
- package/cjs/utils/matchLocation.js +10 -0
- package/cjs/utils/onlyText.d.ts +2 -0
- package/cjs/utils/onlyText.js +38 -0
- package/cjs/utils/parseUrl.d.ts +10 -0
- package/cjs/utils/parseUrl.js +20 -0
- package/{utils → cjs/utils}/pluralize.d.ts +1 -1
- package/{utils → cjs/utils}/pluralize.js +7 -10
- package/cjs/utils/prefersReducedMotion.d.ts +6 -0
- package/cjs/utils/prefersReducedMotion.js +13 -0
- package/{utils → cjs/utils}/range.d.ts +0 -1
- package/{utils → cjs/utils}/range.js +1 -6
- package/cjs/utils/sortObjectAlphabetically.d.ts +1 -0
- package/cjs/utils/sortObjectAlphabetically.js +18 -0
- package/cjs/utils/toSentenceCase.d.ts +2 -0
- package/cjs/utils/toSentenceCase.js +14 -0
- package/{utils → cjs/utils}/uniqBy.d.ts +0 -1
- package/{utils → cjs/utils}/uniqBy.js +1 -8
- package/{utils → cjs/utils}/uniqueId.d.ts +0 -1
- package/{utils → cjs/utils}/uniqueId.js +1 -6
- package/cjs/utils/useForwardedRef.d.ts +2 -0
- package/cjs/utils/useForwardedRef.js +23 -0
- package/cjs/utils/useLinkProps.d.ts +6 -0
- package/cjs/utils/useLinkProps.js +51 -0
- package/cjs/utils/useTriggerInputChange.d.ts +8 -0
- package/cjs/utils/useTriggerInputChange.js +26 -0
- package/esm/AnnouncementBadge/AnnouncementBadge.d.ts +25 -0
- package/esm/AnnouncementBadge/AnnouncementBadge.js +49 -0
- package/esm/AnnouncementBadge/index.d.ts +1 -0
- package/esm/AnnouncementBadge/index.js +1 -0
- package/esm/AutoComplete/AutoComplete.d.ts +8 -0
- package/esm/AutoComplete/AutoComplete.js +428 -0
- package/esm/AutoComplete/AutoComplete.tailwind.d.ts +5 -0
- package/esm/AutoComplete/AutoComplete.tailwind.js +97 -0
- package/esm/AutoComplete/components/AutoCompleteContext.d.ts +10 -0
- package/esm/AutoComplete/components/AutoCompleteContext.js +23 -0
- package/esm/AutoComplete/components/AutoCompleteEmptyState.d.ts +12 -0
- package/esm/AutoComplete/components/AutoCompleteEmptyState.js +28 -0
- package/esm/AutoComplete/components/DefaultOptionItem.d.ts +6 -0
- package/esm/AutoComplete/components/DefaultOptionItem.js +35 -0
- package/esm/AutoComplete/index.d.ts +6 -0
- package/esm/AutoComplete/index.js +6 -0
- package/esm/AutoComplete/types.d.ts +95 -0
- package/esm/AutoComplete/types.js +1 -0
- package/esm/AutoComplete/utils.d.ts +8 -0
- package/esm/AutoComplete/utils.js +71 -0
- package/esm/Avatars/ApplicationAvatar.d.ts +16 -0
- package/esm/Avatars/ApplicationAvatar.js +30 -0
- package/esm/Avatars/UserAvatar.d.ts +23 -0
- package/esm/Avatars/UserAvatar.js +52 -0
- package/esm/Avatars/index.d.ts +2 -0
- package/esm/Avatars/index.js +2 -0
- package/esm/Avatars/types.d.ts +17 -0
- package/esm/Avatars/types.js +1 -0
- package/esm/Avatars/utils.d.ts +6 -0
- package/esm/Avatars/utils.js +48 -0
- package/esm/Badge/Badge.d.ts +24 -0
- package/esm/Badge/Badge.js +62 -0
- package/esm/Badge/index.d.ts +1 -0
- package/esm/Badge/index.js +1 -0
- package/esm/Banners/Alert/Alert.d.ts +33 -0
- package/esm/Banners/Alert/Alert.js +87 -0
- package/esm/Banners/Alert/index.d.ts +1 -0
- package/esm/Banners/Alert/index.js +1 -0
- package/esm/Banners/Promote/Promote.d.ts +28 -0
- package/esm/Banners/Promote/Promote.js +73 -0
- package/esm/Banners/Promote/index.d.ts +1 -0
- package/esm/Banners/Promote/index.js +1 -0
- package/esm/Banners/SystemNotification/SystemNotification.d.ts +12 -0
- package/esm/Banners/SystemNotification/SystemNotification.js +27 -0
- package/esm/Banners/SystemNotification/index.d.ts +1 -0
- package/esm/Banners/SystemNotification/index.js +1 -0
- package/esm/Banners/index.d.ts +3 -0
- package/esm/Banners/index.js +3 -0
- package/esm/Button/Button.d.ts +9 -0
- package/esm/Button/Button.js +18 -0
- package/esm/Button/Button.tailwind.d.ts +5 -0
- package/esm/Button/Button.tailwind.js +155 -0
- package/esm/Button/ButtonGroup.d.ts +17 -0
- package/esm/Button/ButtonGroup.js +20 -0
- package/esm/Button/IconButton.d.ts +9 -0
- package/esm/Button/IconButton.js +18 -0
- package/esm/Button/PolymorphicButton.d.ts +12 -0
- package/esm/Button/PolymorphicButton.js +69 -0
- package/esm/Button/PolymorphicIconButton.d.ts +29 -0
- package/esm/Button/PolymorphicIconButton.js +81 -0
- package/esm/Button/index.d.ts +4 -0
- package/esm/Button/index.js +4 -0
- package/esm/Button/styles.d.ts +5 -0
- package/esm/Button/styles.js +30 -0
- package/esm/Button/types.d.ts +33 -0
- package/esm/Button/types.js +5 -0
- package/esm/Card/Card.d.ts +36 -0
- package/esm/Card/Card.js +40 -0
- package/esm/Card/Card.tailwind.d.ts +5 -0
- package/esm/Card/Card.tailwind.js +35 -0
- package/esm/Card/components/CardHeader.d.ts +5 -0
- package/esm/Card/components/CardHeader.js +19 -0
- package/esm/Card/components/CardTitle.d.ts +7 -0
- package/esm/Card/components/CardTitle.js +21 -0
- package/esm/Card/index.d.ts +3 -0
- package/esm/Card/index.js +3 -0
- package/esm/Checkbox/Checkbox.d.ts +23 -0
- package/esm/Checkbox/Checkbox.js +90 -0
- package/esm/Checkbox/Checkbox.tailwind.d.ts +5 -0
- package/esm/Checkbox/Checkbox.tailwind.js +70 -0
- package/esm/Checkbox/index.d.ts +1 -0
- package/esm/Checkbox/index.js +1 -0
- package/esm/ClickAwayContainer/ClickAwayContainer.d.ts +28 -0
- package/esm/ClickAwayContainer/ClickAwayContainer.js +75 -0
- package/esm/ClickAwayContainer/index.d.ts +1 -0
- package/esm/ClickAwayContainer/index.js +1 -0
- package/esm/DatePicker/DatePicker/DatePicker.d.ts +39 -0
- package/esm/DatePicker/DatePicker/DatePicker.js +163 -0
- package/esm/DatePicker/DatePicker/datePickerReducer.d.ts +29 -0
- package/esm/DatePicker/DatePicker/datePickerReducer.js +43 -0
- package/esm/DatePicker/DatePicker/index.d.ts +2 -0
- package/esm/DatePicker/DatePicker/index.js +2 -0
- package/esm/DatePicker/DatePicker.tailwind.d.ts +5 -0
- package/esm/DatePicker/DatePicker.tailwind.js +182 -0
- package/esm/DatePicker/DateRangePicker/DateRangePicker.d.ts +40 -0
- package/esm/DatePicker/DateRangePicker/DateRangePicker.js +256 -0
- package/esm/DatePicker/DateRangePicker/DateRangePickerDisplay.d.ts +13 -0
- package/esm/DatePicker/DateRangePicker/DateRangePickerDisplay.js +32 -0
- package/esm/DatePicker/DateRangePicker/dateRangePickerReducer.d.ts +54 -0
- package/esm/DatePicker/DateRangePicker/dateRangePickerReducer.js +92 -0
- package/esm/DatePicker/DateRangePicker/dateRangePickerTimeRange.d.ts +16 -0
- package/esm/DatePicker/DateRangePicker/dateRangePickerTimeRange.js +9 -0
- package/esm/DatePicker/DateRangePicker/index.d.ts +3 -0
- package/esm/DatePicker/DateRangePicker/index.js +3 -0
- package/esm/DatePicker/components/Calendar.d.ts +17 -0
- package/esm/DatePicker/components/Calendar.js +47 -0
- package/esm/DatePicker/components/Display.d.ts +9 -0
- package/esm/DatePicker/components/Display.js +16 -0
- package/esm/DatePicker/components/Footer.d.ts +5 -0
- package/esm/DatePicker/components/Footer.js +11 -0
- package/esm/DatePicker/components/FooterActions.d.ts +11 -0
- package/esm/DatePicker/components/FooterActions.js +25 -0
- package/esm/DatePicker/components/Modal.d.ts +15 -0
- package/esm/DatePicker/components/Modal.js +59 -0
- package/esm/DatePicker/components/NavBar.d.ts +9 -0
- package/esm/DatePicker/components/NavBar.js +116 -0
- package/esm/DatePicker/components/SidePanel.d.ts +5 -0
- package/esm/DatePicker/components/SidePanel.js +14 -0
- package/esm/DatePicker/components/index.d.ts +7 -0
- package/esm/DatePicker/components/index.js +6 -0
- package/esm/DatePicker/index.d.ts +3 -0
- package/esm/DatePicker/index.js +3 -0
- package/esm/DatePicker/types.d.ts +26 -0
- package/esm/DatePicker/types.js +1 -0
- package/esm/DatePicker/utils.d.ts +3 -0
- package/esm/DatePicker/utils.js +12 -0
- package/esm/Dropdown/Dropdown.d.ts +40 -0
- package/esm/Dropdown/Dropdown.js +118 -0
- package/esm/Dropdown/DropdownButton.d.ts +13 -0
- package/esm/Dropdown/DropdownButton.js +42 -0
- package/esm/Dropdown/DropdownContext.d.ts +6 -0
- package/esm/Dropdown/DropdownContext.js +9 -0
- package/esm/Dropdown/components/DropdownButtonItem.d.ts +14 -0
- package/esm/Dropdown/components/DropdownButtonItem.js +40 -0
- package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.d.ts +10 -0
- package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.js +53 -0
- package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.d.ts +8 -0
- package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.js +15 -0
- package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.d.ts +8 -0
- package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.js +11 -0
- package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.d.ts +10 -0
- package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.js +30 -0
- package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.d.ts +10 -0
- package/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.js +27 -0
- package/esm/Dropdown/components/DropdownCollapsibleItem/index.d.ts +5 -0
- package/esm/Dropdown/components/DropdownCollapsibleItem/index.js +5 -0
- package/esm/Dropdown/components/DropdownDivider.d.ts +3 -0
- package/esm/Dropdown/components/DropdownDivider.js +11 -0
- package/esm/Dropdown/components/DropdownFooterItem.d.ts +9 -0
- package/esm/Dropdown/components/DropdownFooterItem.js +22 -0
- package/esm/Dropdown/components/DropdownLinkItem.d.ts +10 -0
- package/esm/Dropdown/components/DropdownLinkItem.js +48 -0
- package/esm/Dropdown/components/DropdownRadioItem.d.ts +8 -0
- package/esm/Dropdown/components/DropdownRadioItem.js +40 -0
- package/esm/Dropdown/components/DropdownTitle.d.ts +6 -0
- package/esm/Dropdown/components/DropdownTitle.js +18 -0
- package/esm/Dropdown/components/DropdownToggleItem.d.ts +11 -0
- package/esm/Dropdown/components/DropdownToggleItem.js +43 -0
- package/esm/Dropdown/index.d.ts +12 -0
- package/esm/Dropdown/index.js +12 -0
- package/esm/Dropdown/useDropdownItemProps.d.ts +20 -0
- package/esm/Dropdown/useDropdownItemProps.js +30 -0
- package/esm/Dropzone/Dropzone.d.ts +25 -0
- package/esm/Dropzone/Dropzone.js +157 -0
- package/esm/Dropzone/index.d.ts +1 -0
- package/esm/Dropzone/index.js +1 -0
- package/esm/EmptyState/EmptyState.d.ts +8 -0
- package/esm/EmptyState/EmptyState.js +92 -0
- package/esm/EmptyState/EmptyState.tailwind.d.ts +5 -0
- package/esm/EmptyState/EmptyState.tailwind.js +14 -0
- package/esm/EmptyState/index.d.ts +2 -0
- package/esm/EmptyState/index.js +2 -0
- package/esm/EmptyState/types.d.ts +50 -0
- package/esm/EmptyState/types.js +1 -0
- package/esm/Field/Field.d.ts +24 -0
- package/esm/Field/Field.js +68 -0
- package/esm/Field/FieldContext.d.ts +16 -0
- package/esm/Field/FieldContext.js +8 -0
- package/esm/Field/index.d.ts +4 -0
- package/esm/Field/index.js +3 -0
- package/esm/Field/useField.d.ts +2 -0
- package/esm/Field/useField.js +5 -0
- package/esm/FlexGrid/FlexGrid.d.ts +44 -0
- package/esm/FlexGrid/FlexGrid.js +67 -0
- package/esm/FlexGrid/FlexGrid.tailwind.d.ts +8 -0
- package/esm/FlexGrid/FlexGrid.tailwind.js +69 -0
- package/esm/FlexGrid/index.d.ts +1 -0
- package/esm/FlexGrid/index.js +1 -0
- package/esm/HelpUnderline/HelpUnderline.d.ts +15 -0
- package/esm/HelpUnderline/HelpUnderline.js +32 -0
- package/esm/HelpUnderline/HelpUnderline.tailwind.d.ts +5 -0
- package/esm/HelpUnderline/HelpUnderline.tailwind.js +20 -0
- package/esm/HelpUnderline/index.d.ts +1 -0
- package/esm/HelpUnderline/index.js +1 -0
- package/esm/Icons/AlgoliaRecommendIcon.d.ts +3 -0
- package/esm/Icons/AlgoliaRecommendIcon.js +40 -0
- package/esm/Icons/AlgoliaSearchIcon.d.ts +3 -0
- package/esm/Icons/AlgoliaSearchIcon.js +43 -0
- package/esm/Icons/BulbIcon.d.ts +3 -0
- package/esm/Icons/BulbIcon.js +30 -0
- package/esm/Icons/ContextIcon.d.ts +3 -0
- package/esm/Icons/ContextIcon.js +45 -0
- package/esm/Icons/CrawlerIcon.d.ts +3 -0
- package/esm/Icons/CrawlerIcon.js +34 -0
- package/esm/Icons/DragHandleIcon.d.ts +3 -0
- package/esm/Icons/DragHandleIcon.js +52 -0
- package/esm/Icons/NeuralSearchIcon.d.ts +3 -0
- package/esm/Icons/NeuralSearchIcon.js +27 -0
- package/esm/Icons/NoFiltersIcon.d.ts +3 -0
- package/esm/Icons/NoFiltersIcon.js +53 -0
- package/esm/Icons/PinIcon.d.ts +3 -0
- package/esm/Icons/PinIcon.js +54 -0
- package/esm/Icons/QueryBreakdownIcon.d.ts +3 -0
- package/esm/Icons/QueryBreakdownIcon.js +33 -0
- package/esm/Icons/RocketIcon.d.ts +3 -0
- package/esm/Icons/RocketIcon.js +29 -0
- package/esm/Icons/SettingsCategoryPagesIcon.d.ts +3 -0
- package/esm/Icons/SettingsCategoryPagesIcon.js +29 -0
- package/esm/Icons/SettingsConsequencesIcon.d.ts +3 -0
- package/esm/Icons/SettingsConsequencesIcon.js +64 -0
- package/esm/Icons/TestingIcon.d.ts +3 -0
- package/esm/Icons/TestingIcon.js +29 -0
- package/esm/Icons/UnpinIcon.d.ts +3 -0
- package/esm/Icons/UnpinIcon.js +54 -0
- package/esm/Icons/WorkspaceSwitcherIcon.d.ts +3 -0
- package/esm/Icons/WorkspaceSwitcherIcon.js +27 -0
- package/esm/Icons/index.d.ts +20 -0
- package/esm/Icons/index.js +22 -0
- package/esm/Icons/utils.d.ts +1 -0
- package/esm/Icons/utils.js +4 -0
- package/esm/Input/Input.d.ts +27 -0
- package/esm/Input/Input.js +206 -0
- package/esm/Input/Input.tailwind.d.ts +5 -0
- package/esm/Input/Input.tailwind.js +124 -0
- package/esm/Input/index.d.ts +1 -0
- package/esm/Input/index.js +1 -0
- package/esm/Insert/Insert.d.ts +19 -0
- package/esm/Insert/Insert.js +44 -0
- package/esm/Insert/index.d.ts +1 -0
- package/esm/Insert/index.js +1 -0
- package/esm/InstantSearch/InstantSearch.tailwind.d.ts +5 -0
- package/esm/InstantSearch/InstantSearch.tailwind.js +377 -0
- package/esm/KeyboardKey/KeyboardKey.d.ts +12 -0
- package/esm/KeyboardKey/KeyboardKey.js +34 -0
- package/esm/KeyboardKey/KeyboardKey.tailwind.d.ts +5 -0
- package/esm/KeyboardKey/KeyboardKey.tailwind.js +28 -0
- package/esm/KeyboardKey/index.d.ts +1 -0
- package/esm/KeyboardKey/index.js +1 -0
- package/esm/Link/BaseLink.d.ts +7 -0
- package/esm/Link/BaseLink.js +21 -0
- package/esm/Link/ButtonLink.d.ts +13 -0
- package/esm/Link/ButtonLink.js +34 -0
- package/esm/Link/IconButtonLink.d.ts +13 -0
- package/esm/Link/IconButtonLink.js +28 -0
- package/esm/Link/Link.d.ts +17 -0
- package/esm/Link/Link.js +50 -0
- package/esm/Link/index.d.ts +4 -0
- package/esm/Link/index.js +4 -0
- package/esm/Medallion/Medallion.d.ts +16 -0
- package/esm/Medallion/Medallion.js +37 -0
- package/esm/Medallion/Medallion.tailwind.d.ts +5 -0
- package/esm/Medallion/Medallion.tailwind.js +30 -0
- package/esm/Medallion/index.d.ts +2 -0
- package/esm/Medallion/index.js +2 -0
- package/esm/Medallion/types.d.ts +2 -0
- package/esm/Medallion/types.js +1 -0
- package/esm/MenuButton/MenuButton.d.ts +26 -0
- package/esm/MenuButton/MenuButton.js +37 -0
- package/esm/MenuButton/components/Content.d.ts +4 -0
- package/esm/MenuButton/components/Content.js +32 -0
- package/esm/MenuButton/components/CustomTrigger.d.ts +4 -0
- package/esm/MenuButton/components/CustomTrigger.js +13 -0
- package/esm/MenuButton/components/DefaultTrigger.d.ts +4 -0
- package/esm/MenuButton/components/DefaultTrigger.js +24 -0
- package/esm/MenuButton/components/Divider.d.ts +2 -0
- package/esm/MenuButton/components/Divider.js +10 -0
- package/esm/MenuButton/components/Label.d.ts +3 -0
- package/esm/MenuButton/components/Label.js +21 -0
- package/esm/MenuButton/components/collapsible/CollapsibleItem.d.ts +8 -0
- package/esm/MenuButton/components/collapsible/CollapsibleItem.js +54 -0
- package/esm/MenuButton/components/collapsible/CollapsibleItemsGroup.d.ts +6 -0
- package/esm/MenuButton/components/collapsible/CollapsibleItemsGroup.js +14 -0
- package/esm/MenuButton/components/collapsible/CollapsibleItemsGroupContext.d.ts +7 -0
- package/esm/MenuButton/components/collapsible/CollapsibleItemsGroupContext.js +9 -0
- package/esm/MenuButton/components/collapsible/CollapsibleItemsMultipleGroup.d.ts +8 -0
- package/esm/MenuButton/components/collapsible/CollapsibleItemsMultipleGroup.js +29 -0
- package/esm/MenuButton/components/collapsible/CollapsibleItemsSingleGroup.d.ts +8 -0
- package/esm/MenuButton/components/collapsible/CollapsibleItemsSingleGroup.js +26 -0
- package/esm/MenuButton/components/collapsible/index.d.ts +5 -0
- package/esm/MenuButton/components/collapsible/index.js +5 -0
- package/esm/MenuButton/components/items/Item.d.ts +14 -0
- package/esm/MenuButton/components/items/Item.js +33 -0
- package/esm/MenuButton/components/items/LinkItem.d.ts +16 -0
- package/esm/MenuButton/components/items/LinkItem.js +63 -0
- package/esm/MenuButton/components/items/RadioItem.d.ts +5 -0
- package/esm/MenuButton/components/items/RadioItem.js +40 -0
- package/esm/MenuButton/components/items/ToggleItem.d.ts +8 -0
- package/esm/MenuButton/components/items/ToggleItem.js +62 -0
- package/esm/MenuButton/components/items/index.d.ts +4 -0
- package/esm/MenuButton/components/items/index.js +4 -0
- package/esm/MenuButton/index.d.ts +1 -0
- package/esm/MenuButton/index.js +1 -0
- package/esm/MenuButton/useMenuItemProps.d.ts +10 -0
- package/esm/MenuButton/useMenuItemProps.js +11 -0
- package/esm/Modal/Modal.d.ts +61 -0
- package/esm/Modal/Modal.js +145 -0
- package/esm/Modal/Modal.tailwind.d.ts +5 -0
- package/esm/Modal/Modal.tailwind.js +79 -0
- package/esm/Modal/components/ModalFooter.d.ts +5 -0
- package/esm/Modal/components/ModalFooter.js +24 -0
- package/esm/Modal/components/ModalSection.d.ts +9 -0
- package/esm/Modal/components/ModalSection.js +15 -0
- package/esm/Modal/index.d.ts +3 -0
- package/esm/Modal/index.js +3 -0
- package/esm/Pagination/CompactPagination/CompactPagination.d.ts +36 -0
- package/esm/Pagination/CompactPagination/CompactPagination.js +81 -0
- package/esm/Pagination/CompactPagination/index.d.ts +1 -0
- package/esm/Pagination/CompactPagination/index.js +1 -0
- package/esm/Pagination/DotPagination/DotPagination.d.ts +19 -0
- package/esm/Pagination/DotPagination/DotPagination.js +43 -0
- package/esm/Pagination/DotPagination/index.d.ts +1 -0
- package/esm/Pagination/DotPagination/index.js +1 -0
- package/esm/Pagination/Pagination/Pagination.d.ts +19 -0
- package/esm/Pagination/Pagination/Pagination.js +111 -0
- package/esm/Pagination/Pagination/index.d.ts +1 -0
- package/esm/Pagination/Pagination/index.js +1 -0
- package/esm/Pagination/index.d.ts +3 -0
- package/esm/Pagination/index.js +3 -0
- package/esm/Popover/Popover.d.ts +9 -0
- package/esm/Popover/Popover.js +134 -0
- package/esm/Popover/index.d.ts +2 -0
- package/esm/Popover/index.js +2 -0
- package/esm/Popover/types.d.ts +74 -0
- package/esm/Popover/types.js +1 -0
- package/esm/ProgressBar/ProgressBar.d.ts +15 -0
- package/esm/ProgressBar/ProgressBar.js +46 -0
- package/esm/ProgressBar/ProgressBar.tailwind.d.ts +5 -0
- package/esm/ProgressBar/ProgressBar.tailwind.js +25 -0
- package/esm/ProgressBar/index.d.ts +1 -0
- package/esm/ProgressBar/index.js +1 -0
- package/esm/ProgressSpinner/ProgressSpinner.d.ts +13 -0
- package/esm/ProgressSpinner/ProgressSpinner.js +53 -0
- package/esm/ProgressSpinner/ProgressSpinner.tailwind.d.ts +5 -0
- package/esm/ProgressSpinner/ProgressSpinner.tailwind.js +43 -0
- package/esm/ProgressSpinner/index.d.ts +1 -0
- package/esm/ProgressSpinner/index.js +1 -0
- package/esm/RadioGroup/RadioButton.d.ts +3 -0
- package/esm/RadioGroup/RadioButton.js +21 -0
- package/esm/RadioGroup/RadioButton.tailwind.d.ts +5 -0
- package/esm/RadioGroup/RadioButton.tailwind.js +62 -0
- package/esm/RadioGroup/RadioGroup.d.ts +31 -0
- package/esm/RadioGroup/RadioGroup.js +86 -0
- package/esm/RadioGroup/RadiogroupContext.d.ts +11 -0
- package/esm/RadioGroup/RadiogroupContext.js +9 -0
- package/esm/RadioGroup/index.d.ts +3 -0
- package/esm/RadioGroup/index.js +3 -0
- package/esm/RangeSlider/RangeSlider.d.ts +36 -0
- package/esm/RangeSlider/RangeSlider.js +98 -0
- package/esm/RangeSlider/index.d.ts +1 -0
- package/esm/RangeSlider/index.js +1 -0
- package/esm/Satellite/Satellite.d.ts +10 -0
- package/esm/Satellite/Satellite.js +53 -0
- package/esm/Satellite/SatelliteContext.d.ts +10 -0
- package/esm/Satellite/SatelliteContext.js +15 -0
- package/esm/Satellite/SatelliteRouter.d.ts +21 -0
- package/esm/Satellite/SatelliteRouter.js +40 -0
- package/esm/Satellite/index.d.ts +5 -0
- package/esm/Satellite/index.js +5 -0
- package/esm/Satellite/locale.d.ts +37 -0
- package/esm/Satellite/locale.js +7 -0
- package/esm/Satellite/useCreatePortal.d.ts +4 -0
- package/esm/Satellite/useCreatePortal.js +17 -0
- package/esm/ScrollIndicator/ScrollIndicator.d.ts +18 -0
- package/esm/ScrollIndicator/ScrollIndicator.js +84 -0
- package/esm/ScrollIndicator/ScrollIndicator.tailwind.d.ts +5 -0
- package/esm/ScrollIndicator/ScrollIndicator.tailwind.js +50 -0
- package/esm/ScrollIndicator/index.d.ts +1 -0
- package/esm/ScrollIndicator/index.js +1 -0
- package/esm/Select/Select.d.ts +11 -0
- package/esm/Select/Select.js +33 -0
- package/esm/Select/Select.tailwind.d.ts +5 -0
- package/esm/Select/Select.tailwind.js +77 -0
- package/esm/Select/index.d.ts +1 -0
- package/esm/Select/index.js +1 -0
- package/esm/Separator/Separator.d.ts +13 -0
- package/esm/Separator/Separator.js +33 -0
- package/esm/Separator/Separator.tailwind.d.ts +5 -0
- package/esm/Separator/Separator.tailwind.js +53 -0
- package/esm/Separator/index.d.ts +1 -0
- package/esm/Separator/index.js +1 -0
- package/esm/Sidebar/Sidebar.d.ts +41 -0
- package/esm/Sidebar/Sidebar.js +60 -0
- package/esm/Sidebar/SidebarButtonLink.d.ts +20 -0
- package/esm/Sidebar/SidebarButtonLink.js +78 -0
- package/esm/Sidebar/SidebarContext.d.ts +9 -0
- package/esm/Sidebar/SidebarContext.js +9 -0
- package/esm/Sidebar/SidebarHeader.d.ts +7 -0
- package/esm/Sidebar/SidebarHeader.js +13 -0
- package/esm/Sidebar/SidebarHeading.d.ts +8 -0
- package/esm/Sidebar/SidebarHeading.js +18 -0
- package/esm/Sidebar/SidebarLink.d.ts +9 -0
- package/esm/Sidebar/SidebarLink.js +44 -0
- package/esm/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.d.ts +9 -0
- package/esm/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.js +30 -0
- package/esm/Sidebar/SidebarLinksGroup/SidebarGroupLink.d.ts +7 -0
- package/esm/Sidebar/SidebarLinksGroup/SidebarGroupLink.js +30 -0
- package/esm/Sidebar/SidebarLinksGroup/SidebarLinksGroup.d.ts +24 -0
- package/esm/Sidebar/SidebarLinksGroup/SidebarLinksGroup.js +91 -0
- package/esm/Sidebar/SidebarLinksGroup/index.d.ts +2 -0
- package/esm/Sidebar/SidebarLinksGroup/index.js +2 -0
- package/esm/Sidebar/SidebarLinksGroup/types.d.ts +10 -0
- package/esm/Sidebar/SidebarLinksGroup/types.js +1 -0
- package/esm/Sidebar/SidebarNav.d.ts +11 -0
- package/esm/Sidebar/SidebarNav.js +29 -0
- package/esm/Sidebar/index.d.ts +9 -0
- package/esm/Sidebar/index.js +9 -0
- package/esm/Sidebar/types.d.ts +6 -0
- package/esm/Sidebar/types.js +1 -0
- package/esm/Stepper/Step.d.ts +6 -0
- package/esm/Stepper/Step.js +109 -0
- package/esm/Stepper/Stepper.d.ts +41 -0
- package/esm/Stepper/Stepper.js +138 -0
- package/esm/Stepper/StepperContext.d.ts +12 -0
- package/esm/Stepper/StepperContext.js +9 -0
- package/esm/Stepper/index.d.ts +3 -0
- package/esm/Stepper/index.js +3 -0
- package/esm/Stepper/types.d.ts +26 -0
- package/esm/Stepper/types.js +1 -0
- package/esm/Stepper/utils.d.ts +5 -0
- package/esm/Stepper/utils.js +61 -0
- package/esm/Switch/Switch.d.ts +18 -0
- package/esm/Switch/Switch.js +84 -0
- package/esm/Switch/Switch.tailwind.d.ts +5 -0
- package/esm/Switch/Switch.tailwind.js +24 -0
- package/esm/Switch/SwitchOption.d.ts +7 -0
- package/esm/Switch/SwitchOption.js +38 -0
- package/esm/Switch/index.d.ts +2 -0
- package/esm/Switch/index.js +2 -0
- package/esm/Switch/types.d.ts +7 -0
- package/esm/Switch/types.js +1 -0
- package/esm/Switch/utils.d.ts +6 -0
- package/esm/Switch/utils.js +11 -0
- package/esm/Tables/DataTable/DataTable.d.ts +55 -0
- package/esm/Tables/DataTable/DataTable.js +243 -0
- package/esm/Tables/DataTable/DataTable.tailwind.d.ts +5 -0
- package/esm/Tables/DataTable/DataTable.tailwind.js +22 -0
- package/esm/Tables/DataTable/components/Body.d.ts +14 -0
- package/esm/Tables/DataTable/components/Body.js +111 -0
- package/esm/Tables/DataTable/components/Footer.d.ts +7 -0
- package/esm/Tables/DataTable/components/Footer.js +52 -0
- package/esm/Tables/DataTable/components/Header.d.ts +9 -0
- package/esm/Tables/DataTable/components/Header.js +31 -0
- package/esm/Tables/DataTable/components/HeaderCell.d.ts +11 -0
- package/esm/Tables/DataTable/components/HeaderCell.js +51 -0
- package/esm/Tables/DataTable/components/Loader.d.ts +8 -0
- package/esm/Tables/DataTable/components/Loader.js +39 -0
- package/esm/Tables/DataTable/components/index.d.ts +5 -0
- package/esm/Tables/DataTable/components/index.js +5 -0
- package/esm/Tables/DataTable/index.d.ts +2 -0
- package/esm/Tables/DataTable/index.js +2 -0
- package/esm/Tables/DataTable/types.d.ts +63 -0
- package/esm/Tables/DataTable/types.js +1 -0
- package/esm/Tables/DataTable/utils.d.ts +4 -0
- package/esm/Tables/DataTable/utils.js +13 -0
- package/esm/Tables/Table/Table.d.ts +13 -0
- package/esm/Tables/Table/Table.js +39 -0
- package/esm/Tables/Table/Table.tailwind.d.ts +5 -0
- package/esm/Tables/Table/Table.tailwind.js +38 -0
- package/esm/Tables/Table/components/TableFooter.d.ts +7 -0
- package/esm/Tables/Table/components/TableFooter.js +18 -0
- package/esm/Tables/Table/index.d.ts +2 -0
- package/esm/Tables/Table/index.js +2 -0
- package/esm/Tables/index.d.ts +2 -0
- package/esm/Tables/index.js +2 -0
- package/esm/Tabs/ContentTabs.d.ts +3 -0
- package/esm/Tabs/ContentTabs.js +53 -0
- package/esm/Tabs/LinkTabs.d.ts +9 -0
- package/esm/Tabs/LinkTabs.js +44 -0
- package/esm/Tabs/Tabs.tailwind.d.ts +5 -0
- package/esm/Tabs/Tabs.tailwind.js +71 -0
- package/esm/Tabs/components/LinkTab.d.ts +8 -0
- package/esm/Tabs/components/LinkTab.js +77 -0
- package/esm/Tabs/index.d.ts +3 -0
- package/esm/Tabs/index.js +3 -0
- package/esm/Tabs/types.d.ts +34 -0
- package/esm/Tabs/types.js +1 -0
- package/esm/Tabs/utils.d.ts +2 -0
- package/esm/Tabs/utils.js +11 -0
- package/esm/Tag/Tag.d.ts +30 -0
- package/esm/Tag/Tag.js +115 -0
- package/esm/Tag/Tag.tailwind.d.ts +5 -0
- package/esm/Tag/Tag.tailwind.js +53 -0
- package/esm/Tag/index.d.ts +1 -0
- package/esm/Tag/index.js +1 -0
- package/esm/TextArea/TextArea.d.ts +9 -0
- package/esm/TextArea/TextArea.js +25 -0
- package/esm/TextArea/TextArea.tailwind.d.ts +5 -0
- package/esm/TextArea/TextArea.tailwind.js +43 -0
- package/esm/TextArea/index.d.ts +1 -0
- package/esm/TextArea/index.js +1 -0
- package/esm/TextWrap/TextWrap.d.ts +12 -0
- package/esm/TextWrap/TextWrap.js +52 -0
- package/esm/TextWrap/index.d.ts +1 -0
- package/esm/TextWrap/index.js +1 -0
- package/esm/Toast/Toast.d.ts +5 -0
- package/esm/Toast/Toast.js +101 -0
- package/esm/Toast/Toast.tailwind.d.ts +5 -0
- package/esm/Toast/Toast.tailwind.js +33 -0
- package/esm/Toast/Toasts.d.ts +20 -0
- package/esm/Toast/Toasts.js +92 -0
- package/esm/Toast/index.d.ts +3 -0
- package/esm/Toast/index.js +3 -0
- package/esm/Toast/types.d.ts +34 -0
- package/esm/Toast/types.js +1 -0
- package/esm/Toggle/Toggle.d.ts +12 -0
- package/esm/Toggle/Toggle.js +67 -0
- package/esm/Toggle/Toggle.tailwind.d.ts +5 -0
- package/esm/Toggle/Toggle.tailwind.js +84 -0
- package/esm/Toggle/index.d.ts +1 -0
- package/esm/Toggle/index.js +1 -0
- package/esm/Tooltip/OverflowTooltipWrapper.d.ts +10 -0
- package/esm/Tooltip/OverflowTooltipWrapper.js +44 -0
- package/esm/Tooltip/Tooltip.d.ts +11 -0
- package/esm/Tooltip/Tooltip.js +32 -0
- package/esm/Tooltip/Tooltip.tailwind.d.ts +5 -0
- package/esm/Tooltip/Tooltip.tailwind.js +46 -0
- package/esm/Tooltip/TooltipWrapper.d.ts +19 -0
- package/esm/Tooltip/TooltipWrapper.js +79 -0
- package/esm/Tooltip/index.d.ts +3 -0
- package/{components/Tooltip/index.d.ts → esm/Tooltip/index.js} +1 -1
- package/esm/Tooltip/types.d.ts +65 -0
- package/esm/Tooltip/types.js +1 -0
- package/esm/Tooltip/utils.d.ts +1 -0
- package/esm/Tooltip/utils.js +3 -0
- package/esm/Typography/Typography.tailwind.d.ts +5 -0
- package/esm/Typography/Typography.tailwind.js +169 -0
- package/esm/UserContent/UserContent.d.ts +13 -0
- package/esm/UserContent/UserContent.js +23 -0
- package/esm/UserContent/UserContent.tailwind.d.ts +5 -0
- package/esm/UserContent/UserContent.tailwind.js +141 -0
- package/esm/index.d.ts +53 -0
- package/esm/index.js +53 -0
- package/esm/styles/base.tailwind.d.ts +5 -0
- package/esm/styles/base.tailwind.js +45 -0
- package/esm/styles/brandColors.d.ts +42 -0
- package/esm/styles/brandColors.js +46 -0
- package/esm/styles/colors.d.ts +110 -0
- package/esm/styles/colors.js +114 -0
- package/esm/styles/disabledColor.d.ts +6 -0
- package/esm/styles/disabledColor.js +14 -0
- package/esm/styles/helpers/icons.d.ts +15 -0
- package/esm/styles/helpers/icons.js +40 -0
- package/esm/styles/helpers/makePurgeCssExtractor.d.ts +7 -0
- package/esm/styles/helpers/makePurgeCssExtractor.js +49 -0
- package/esm/styles/helpers/makeTailwindPrefixer.d.ts +6 -0
- package/esm/styles/helpers/makeTailwindPrefixer.js +34 -0
- package/esm/styles/helpers/prefixTailwindClassName.d.ts +7 -0
- package/esm/styles/helpers/prefixTailwindClassName.js +26 -0
- package/esm/styles/helpers/satellitePrefixer.d.ts +3 -0
- package/esm/styles/helpers/satellitePrefixer.js +7 -0
- package/esm/styles/rgba.d.ts +8 -0
- package/esm/styles/rgba.js +14 -0
- package/esm/styles/tailwind.config.d.ts +2 -0
- package/esm/styles/tailwind.config.js +147 -0
- package/esm/styles/zIndexes.d.ts +8 -0
- package/esm/styles/zIndexes.js +13 -0
- package/esm/types.d.ts +24 -0
- package/esm/types.js +1 -0
- package/esm/utilities/overlay.tailwind.d.ts +5 -0
- package/esm/utilities/overlay.tailwind.js +106 -0
- package/esm/utilities/utilities.tailwind.d.ts +5 -0
- package/esm/utilities/utilities.tailwind.js +25 -0
- package/esm/utils/NumberUnion.d.ts +5 -0
- package/esm/utils/NumberUnion.js +1 -0
- package/esm/utils/clamp.d.ts +1 -0
- package/esm/utils/clamp.js +3 -0
- package/esm/utils/event-polyfill.d.ts +0 -0
- package/esm/utils/event-polyfill.js +23 -0
- package/esm/utils/formatters.d.ts +25 -0
- package/esm/utils/formatters.js +36 -0
- package/esm/utils/genericChangeHandler.d.ts +5 -0
- package/esm/utils/genericChangeHandler.js +17 -0
- package/esm/utils/getTextFromReactNode.d.ts +4 -0
- package/esm/utils/getTextFromReactNode.js +15 -0
- package/esm/utils/hashCode.d.ts +1 -0
- package/esm/utils/hashCode.js +14 -0
- package/esm/utils/index.d.ts +7 -0
- package/esm/utils/index.js +7 -0
- package/esm/utils/isCssPropertySupported.d.ts +1 -0
- package/esm/utils/isCssPropertySupported.js +8 -0
- package/esm/utils/isNil.d.ts +18 -0
- package/esm/utils/isNil.js +20 -0
- package/esm/utils/isReactText.d.ts +2 -0
- package/esm/utils/isReactText.js +3 -0
- package/esm/utils/isRenderedChild.d.ts +7 -0
- package/esm/utils/isRenderedChild.js +8 -0
- package/esm/utils/matchLocation.d.ts +2 -0
- package/esm/utils/matchLocation.js +4 -0
- package/esm/utils/onlyText.d.ts +2 -0
- package/esm/utils/onlyText.js +32 -0
- package/esm/utils/parseUrl.d.ts +10 -0
- package/esm/utils/parseUrl.js +14 -0
- package/esm/utils/pluralize.d.ts +6 -0
- package/esm/utils/pluralize.js +15 -0
- package/esm/utils/prefersReducedMotion.d.ts +6 -0
- package/esm/utils/prefersReducedMotion.js +7 -0
- package/esm/utils/range.d.ts +1 -0
- package/esm/utils/range.js +6 -0
- package/esm/utils/sortObjectAlphabetically.d.ts +1 -0
- package/esm/utils/sortObjectAlphabetically.js +11 -0
- package/esm/utils/toSentenceCase.d.ts +2 -0
- package/esm/utils/toSentenceCase.js +8 -0
- package/esm/utils/uniqBy.d.ts +1 -0
- package/esm/utils/uniqBy.js +12 -0
- package/esm/utils/uniqueId.d.ts +1 -0
- package/esm/utils/uniqueId.js +6 -0
- package/esm/utils/useForwardedRef.d.ts +2 -0
- package/esm/utils/useForwardedRef.js +16 -0
- package/esm/utils/useLinkProps.d.ts +6 -0
- package/esm/utils/useLinkProps.js +45 -0
- package/esm/utils/useTriggerInputChange.d.ts +8 -0
- package/esm/utils/useTriggerInputChange.js +20 -0
- package/package.json +92 -49
- package/satellite.min.css +3 -0
- package/scss/colors.scss +139 -0
- package/scss/variables.scss +8 -0
- package/components/Alert/Alert.d.ts +0 -9
- package/components/Alert/Alert.js +0 -49
- package/components/Alert/index.d.ts +0 -2
- package/components/Alert/index.js +0 -27
- package/components/AutoComplete/AutoComplete.d.ts +0 -66
- package/components/AutoComplete/AutoComplete.js +0 -512
- package/components/AutoComplete/index.d.ts +0 -2
- package/components/AutoComplete/index.js +0 -27
- package/components/AutoComplete/types.d.ts +0 -21
- package/components/AutoComplete/types.js +0 -1
- package/components/AutoComplete/utils.d.ts +0 -3
- package/components/AutoComplete/utils.js +0 -35
- package/components/Button/Button.d.ts +0 -13
- package/components/Button/Button.js +0 -59
- package/components/Button/LinkButton.d.ts +0 -9
- package/components/Button/LinkButton.js +0 -52
- package/components/Button/index.d.ts +0 -3
- package/components/Button/index.js +0 -40
- package/components/Card/Card.d.ts +0 -13
- package/components/Card/Card.js +0 -71
- package/components/Card/components/CardHeader.d.ts +0 -3
- package/components/Card/components/CardHeader.js +0 -25
- package/components/Card/components/CardTitle.d.ts +0 -7
- package/components/Card/components/CardTitle.js +0 -30
- package/components/Card/index.d.ts +0 -3
- package/components/Card/index.js +0 -19
- package/components/Checkbox/Checkbox.d.ts +0 -5
- package/components/Checkbox/Checkbox.js +0 -66
- package/components/Checkbox/index.d.ts +0 -2
- package/components/Checkbox/index.js +0 -27
- package/components/Chip/Chip.d.ts +0 -9
- package/components/Chip/Chip.js +0 -77
- package/components/Chip/index.d.ts +0 -2
- package/components/Chip/index.js +0 -21
- package/components/Dropdown/Dropdown.d.ts +0 -27
- package/components/Dropdown/Dropdown.js +0 -163
- package/components/Dropdown/DropdownButton.d.ts +0 -12
- package/components/Dropdown/DropdownButton.js +0 -117
- package/components/Dropdown/components/DropdownDivider.d.ts +0 -6
- package/components/Dropdown/components/DropdownDivider.js +0 -24
- package/components/Dropdown/components/DropdownItem.d.ts +0 -10
- package/components/Dropdown/components/DropdownItem.js +0 -46
- package/components/Dropdown/components/DropdownTitle.d.ts +0 -4
- package/components/Dropdown/components/DropdownTitle.js +0 -34
- package/components/Dropdown/index.d.ts +0 -3
- package/components/Dropdown/index.js +0 -29
- package/components/HelpUnderline/HelpUnderline.d.ts +0 -10
- package/components/HelpUnderline/HelpUnderline.js +0 -39
- package/components/HelpUnderline/index.d.ts +0 -2
- package/components/HelpUnderline/index.js +0 -27
- package/components/Input/Input.d.ts +0 -25
- package/components/Input/Input.js +0 -134
- package/components/Input/index.d.ts +0 -2
- package/components/LoaderIcon/LoaderIcon.d.ts +0 -7
- package/components/LoaderIcon/LoaderIcon.js +0 -65
- package/components/LoaderIcon/index.d.ts +0 -2
- package/components/LoaderIcon/index.js +0 -27
- package/components/MaterialIcon/MaterialIcon.d.ts +0 -12
- package/components/MaterialIcon/MaterialIcon.js +0 -48
- package/components/MaterialIcon/index.d.ts +0 -2
- package/components/MaterialIcon/index.js +0 -27
- package/components/Modal/Modal.d.ts +0 -30
- package/components/Modal/Modal.js +0 -207
- package/components/Modal/components/ModalFooter.d.ts +0 -4
- package/components/Modal/components/ModalFooter.js +0 -34
- package/components/Modal/components/ModalSection.d.ts +0 -6
- package/components/Modal/components/ModalSection.js +0 -38
- package/components/Modal/index.d.ts +0 -2
- package/components/Modal/index.js +0 -21
- package/components/Pagination/Pagination.d.ts +0 -12
- package/components/Pagination/Pagination.js +0 -131
- package/components/Pagination/index.d.ts +0 -2
- package/components/Pagination/index.js +0 -27
- package/components/RadioGroup/RadioButton.d.ts +0 -5
- package/components/RadioGroup/RadioButton.js +0 -35
- package/components/RadioGroup/RadioGroup.d.ts +0 -20
- package/components/RadioGroup/RadioGroup.js +0 -140
- package/components/RadioGroup/index.d.ts +0 -3
- package/components/RadioGroup/index.js +0 -29
- package/components/ScrollIndicator/ScrollIndicator.d.ts +0 -24
- package/components/ScrollIndicator/ScrollIndicator.js +0 -165
- package/components/ScrollIndicator/index.d.ts +0 -2
- package/components/ScrollIndicator/index.js +0 -21
- package/components/Select/Select.d.ts +0 -6
- package/components/Select/Select.js +0 -40
- package/components/Select/index.d.ts +0 -2
- package/components/Select/index.js +0 -27
- package/components/Table/Table.d.ts +0 -6
- package/components/Table/Table.js +0 -36
- package/components/Table/index.d.ts +0 -3
- package/components/Table/index.js +0 -19
- package/components/TextArea/TextArea.d.ts +0 -5
- package/components/TextArea/TextArea.js +0 -34
- package/components/TextArea/index.d.ts +0 -2
- package/components/TextArea/index.js +0 -27
- package/components/Tooltip/Tooltip.d.ts +0 -5
- package/components/Tooltip/Tooltip.js +0 -29
- package/components/Tooltip/TooltipWrapper.d.ts +0 -32
- package/components/Tooltip/TooltipWrapper.js +0 -164
- package/index.d.ts +0 -19
- package/index.js +0 -173
- package/nothing-to-see-here.gif +0 -0
- package/satellite.css +0 -32
- package/satellite.css.map +0 -1
- package/styles/_colors.scss +0 -147
- package/styles/_mixins.scss +0 -72
- package/styles/_variables.scss +0 -71
- package/utils/clamp.d.ts +0 -2
- package/utils/clamp.js +0 -20
- package/utils/genericChangeHandler.d.ts +0 -5
- package/utils/omit.d.ts +0 -2
- package/utils/omit.js +0 -25
@@ -0,0 +1,146 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
6
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { (0, _defineProperty2["default"])(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
7
|
+
// @ts-check
|
8
|
+
|
9
|
+
var colors = require("./colors");
|
10
|
+
var makePurgeCssExtractor = require("./helpers/makePurgeCssExtractor.js");
|
11
|
+
var rgba = require("./rgba");
|
12
|
+
var zIndexes = require("./zIndexes");
|
13
|
+
var prefix = "stl-";
|
14
|
+
|
15
|
+
/** @type {import('tailwindcss').Config} */
|
16
|
+
module.exports = {
|
17
|
+
prefix: prefix,
|
18
|
+
content: {
|
19
|
+
files: ["./src/**/*.tailwind.js", "./src/**/!(*.test|*.stories).{ts,tsx}"],
|
20
|
+
extract: makePurgeCssExtractor(prefix)
|
21
|
+
},
|
22
|
+
safelist: ["stl-instantsearch"],
|
23
|
+
theme: {
|
24
|
+
fontFamily: {
|
25
|
+
sans: ["-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "Noto Sans", "sans-serif", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"],
|
26
|
+
mono: ["Fira Code", "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", "monospace"]
|
27
|
+
},
|
28
|
+
fontSize: {
|
29
|
+
sm: "0.75rem",
|
30
|
+
// 12px,
|
31
|
+
mobile: "0.8125rem",
|
32
|
+
// 13px,
|
33
|
+
base: "0.875rem",
|
34
|
+
// 14px,
|
35
|
+
md: "1rem",
|
36
|
+
// 16px,
|
37
|
+
lg: "1.25rem",
|
38
|
+
// 20px,
|
39
|
+
xl: "1.625rem",
|
40
|
+
// 26px,
|
41
|
+
"2xl": "1.75rem",
|
42
|
+
// 28px,
|
43
|
+
"3xl": "2.625rem" // 42px,
|
44
|
+
},
|
45
|
+
|
46
|
+
lineHeight: {
|
47
|
+
inherit: "inherit",
|
48
|
+
sm: "1rem",
|
49
|
+
// 16px,
|
50
|
+
base: "1.25rem",
|
51
|
+
// 20px,
|
52
|
+
md: "1.5rem",
|
53
|
+
// 24px,
|
54
|
+
lg: "1.75rem",
|
55
|
+
// 28px,
|
56
|
+
xl: "2rem",
|
57
|
+
// 32px,
|
58
|
+
"2xl": "2rem",
|
59
|
+
// 32px,
|
60
|
+
"3xl": "2.75rem",
|
61
|
+
// 44px,
|
62
|
+
none: "0"
|
63
|
+
},
|
64
|
+
borderRadius: {
|
65
|
+
none: "0",
|
66
|
+
DEFAULT: "3px",
|
67
|
+
full: "99999px"
|
68
|
+
},
|
69
|
+
borderWidth: {
|
70
|
+
DEFAULT: "1px",
|
71
|
+
0: "0",
|
72
|
+
2: "2px",
|
73
|
+
3: "3px"
|
74
|
+
},
|
75
|
+
boxShadow: function boxShadow(_ref) {
|
76
|
+
var theme = _ref.theme;
|
77
|
+
return {
|
78
|
+
none: "none",
|
79
|
+
z100: "0px 0px 0px 1px ".concat(theme("colors.shadow.5"), ", 0px 1px 3px 0px ").concat(theme("colors.shadow.15")),
|
80
|
+
z200: "0px 0px 0px 1px ".concat(theme("colors.shadow.5"), ", 0px 4px 8px -2px ").concat(theme("colors.shadow.25")),
|
81
|
+
z300: "0px 0px 0px 1px ".concat(theme("colors.shadow.5"), ", 0px 8px 16px -4px ").concat(theme("colors.shadow.25")),
|
82
|
+
z400: "0px 0px 0px 1px ".concat(theme("colors.shadow.5"), ", 0px 12px 24px -6px ").concat(theme("colors.shadow.25")),
|
83
|
+
z500: "0px 0px 0px 1px ".concat(theme("colors.shadow.5"), ", 0px 20px 32px -8px ").concat(theme("colors.shadow.25")),
|
84
|
+
field: "inset 0px 1px 4px 0px ".concat(rgba(colors.grey[500], 0.3)),
|
85
|
+
"field-focused": "0px 1px 0px 0px ".concat(theme("colors.shadow.5"))
|
86
|
+
};
|
87
|
+
},
|
88
|
+
opacity: {
|
89
|
+
0: "0",
|
90
|
+
10: ".1",
|
91
|
+
20: ".2",
|
92
|
+
30: ".3",
|
93
|
+
40: ".4",
|
94
|
+
50: ".5",
|
95
|
+
60: ".6",
|
96
|
+
70: ".7",
|
97
|
+
80: ".8",
|
98
|
+
90: ".9",
|
99
|
+
100: "1"
|
100
|
+
},
|
101
|
+
colors: _objectSpread(_objectSpread({}, colors), {}, {
|
102
|
+
accent: colors.xenon,
|
103
|
+
inherit: "inherit",
|
104
|
+
transparent: "transparent",
|
105
|
+
current: "currentColor",
|
106
|
+
shadow: {
|
107
|
+
5: rgba(colors.grey[900], 0.05),
|
108
|
+
10: rgba(colors.grey[900], 0.1),
|
109
|
+
15: rgba(colors.grey[900], 0.15),
|
110
|
+
25: rgba(colors.grey[900], 0.25)
|
111
|
+
}
|
112
|
+
}),
|
113
|
+
extend: {
|
114
|
+
spacing: {
|
115
|
+
"2px": "2px",
|
116
|
+
128: "32rem"
|
117
|
+
},
|
118
|
+
inset: function inset(_ref2) {
|
119
|
+
var theme = _ref2.theme;
|
120
|
+
return theme("width");
|
121
|
+
},
|
122
|
+
maxWidth: function maxWidth(_ref3) {
|
123
|
+
var theme = _ref3.theme;
|
124
|
+
return theme("width");
|
125
|
+
},
|
126
|
+
minWidth: function minWidth(_ref4) {
|
127
|
+
var theme = _ref4.theme;
|
128
|
+
return theme("width");
|
129
|
+
},
|
130
|
+
maxHeight: function maxHeight(_ref5) {
|
131
|
+
var theme = _ref5.theme;
|
132
|
+
return theme("height");
|
133
|
+
},
|
134
|
+
minHeight: function minHeight(_ref6) {
|
135
|
+
var theme = _ref6.theme;
|
136
|
+
return theme("height");
|
137
|
+
},
|
138
|
+
zIndex: zIndexes,
|
139
|
+
cursor: {
|
140
|
+
grab: "grab",
|
141
|
+
help: "help"
|
142
|
+
}
|
143
|
+
}
|
144
|
+
},
|
145
|
+
plugins: [require("./base.tailwind"), require("../utilities/overlay.tailwind"), require("../utilities/utilities.tailwind"), require("../Typography/Typography.tailwind"), require("../FlexGrid/FlexGrid.tailwind"), require("../AutoComplete/AutoComplete.tailwind"), require("../Button/Button.tailwind"), require("../Card/Card.tailwind"), require("../Checkbox/Checkbox.tailwind"), require("../EmptyState/EmptyState.tailwind"), require("../Toast/Toast.tailwind"), require("../HelpUnderline/HelpUnderline.tailwind"), require("../Input/Input.tailwind"), require("../InstantSearch/InstantSearch.tailwind"), require("../KeyboardKey/KeyboardKey.tailwind"), require("../Medallion/Medallion.tailwind"), require("../Modal/Modal.tailwind"), require("../ProgressBar/ProgressBar.tailwind"), require("../ProgressSpinner/ProgressSpinner.tailwind"), require("../RadioGroup/RadioButton.tailwind"), require("../ScrollIndicator/ScrollIndicator.tailwind"), require("../Select/Select.tailwind"), require("../Separator/Separator.tailwind"), require("../Switch/Switch.tailwind"), require("../Tabs/Tabs.tailwind"), require("../Tables/DataTable/DataTable.tailwind"), require("../Tables/Table/Table.tailwind"), require("../Tag/Tag.tailwind"), require("../TextArea/TextArea.tailwind"), require("../Toggle/Toggle.tailwind"), require("../Tooltip/Tooltip.tailwind"), require("../UserContent/UserContent.tailwind"), require("../DatePicker/DatePicker.tailwind")]
|
146
|
+
};
|
@@ -0,0 +1,8 @@
|
|
1
|
+
export const sidebar: number;
|
2
|
+
export const fullPageLayout: number;
|
3
|
+
export const modalOverlay: number;
|
4
|
+
export const modal: number;
|
5
|
+
export const popover: number;
|
6
|
+
export const dropdown: number;
|
7
|
+
export const notification: number;
|
8
|
+
export const tooltip: number;
|
package/cjs/types.d.ts
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
export declare type ColorVariant = "accent" | "grey" | "green" | "blue" | "orange" | "red";
|
2
|
+
/**
|
3
|
+
* Ensures at least one type is required
|
4
|
+
* See https://stackoverflow.com/a/48244432/5903923
|
5
|
+
*/
|
6
|
+
export declare type AtLeastOne<Type, Union = {
|
7
|
+
[Key in keyof Type]: Pick<Type, Key>;
|
8
|
+
}> = Partial<Type> & Union[keyof Union];
|
9
|
+
/**
|
10
|
+
* Makes an optional property required
|
11
|
+
* See https://bobbyhadz.com/blog/typescript-make-property-required
|
12
|
+
*/
|
13
|
+
export declare type WithRequiredProperty<Type, Key extends keyof Type> = Type & {
|
14
|
+
[Property in Key]-?: Type[Property];
|
15
|
+
};
|
16
|
+
/**
|
17
|
+
* Makes two types mutually exclusive
|
18
|
+
* https://stackoverflow.com/questions/42123407/does-typescript-support-mutually-exclusive-types
|
19
|
+
*/
|
20
|
+
declare type Without<Type, Union> = {
|
21
|
+
[Property in Exclude<keyof Type, keyof Union>]?: never;
|
22
|
+
};
|
23
|
+
export declare type XOR<Type, Union> = Type | Union extends object ? (Without<Type, Union> & Union) | (Without<Union, Type> & Type) : Type | Union;
|
24
|
+
export {};
|
package/cjs/types.js
ADDED
@@ -0,0 +1,107 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
// @ts-check
|
4
|
+
var plugin = require("tailwindcss/plugin");
|
5
|
+
module.exports = plugin(function (_ref) {
|
6
|
+
var addUtilities = _ref.addUtilities,
|
7
|
+
theme = _ref.theme;
|
8
|
+
/** @type {string} */
|
9
|
+
var lightBackground = theme("colors.white");
|
10
|
+
/** @type {string} */
|
11
|
+
var darkBackground = theme("colors.grey.900");
|
12
|
+
addUtilities({
|
13
|
+
// Since Radix relies on a SVG for the arrow, we use the stroke property
|
14
|
+
// with a dash array/offset to create a border around the arrow.
|
15
|
+
".arrow-light": {
|
16
|
+
fill: lightBackground,
|
17
|
+
stroke: theme("colors.shadow.5"),
|
18
|
+
strokeWidth: "3px",
|
19
|
+
strokeDasharray: "36",
|
20
|
+
strokeDashoffset: "-30"
|
21
|
+
},
|
22
|
+
".arrow-dark": {
|
23
|
+
fill: darkBackground
|
24
|
+
}
|
25
|
+
});
|
26
|
+
var animationDuration = "100ms";
|
27
|
+
var animationEasing = "cubic-bezier(.17,.61,.4,.95)";
|
28
|
+
addUtilities({
|
29
|
+
/* eslint-disable @algolia/satellite/prefer-stl-helper */
|
30
|
+
"@keyframes stl-slide-slide-down-and-fade": {
|
31
|
+
from: {
|
32
|
+
opacity: "0",
|
33
|
+
transform: "translateY(-2px)"
|
34
|
+
},
|
35
|
+
to: {
|
36
|
+
opacity: "1",
|
37
|
+
transform: "translateY(0)"
|
38
|
+
}
|
39
|
+
},
|
40
|
+
"@keyframes stl-slide-slide-left-and-fade": {
|
41
|
+
from: {
|
42
|
+
opacity: "0",
|
43
|
+
transform: "translateX(2px)"
|
44
|
+
},
|
45
|
+
to: {
|
46
|
+
opacity: "1",
|
47
|
+
transform: "translateX(0)"
|
48
|
+
}
|
49
|
+
},
|
50
|
+
"@keyframes stl-slide-slide-up-and-fade": {
|
51
|
+
from: {
|
52
|
+
opacity: "0",
|
53
|
+
transform: "translateY(2px)"
|
54
|
+
},
|
55
|
+
to: {
|
56
|
+
opacity: "1",
|
57
|
+
transform: "translateY(0)"
|
58
|
+
}
|
59
|
+
},
|
60
|
+
"@keyframes stl-slide-slide-right-and-fade": {
|
61
|
+
from: {
|
62
|
+
opacity: "0",
|
63
|
+
transform: "translateX(-2px)"
|
64
|
+
},
|
65
|
+
to: {
|
66
|
+
opacity: "1",
|
67
|
+
transform: "translateX(0)"
|
68
|
+
}
|
69
|
+
},
|
70
|
+
"@keyframes stl-slide-fade-out": {
|
71
|
+
from: {
|
72
|
+
opacity: "1"
|
73
|
+
},
|
74
|
+
to: {
|
75
|
+
opacity: "0"
|
76
|
+
}
|
77
|
+
},
|
78
|
+
".animate-slide": {
|
79
|
+
// Even if the user has enabled reduced motion,
|
80
|
+
// we still need to keep this animation to handle the hide delay.
|
81
|
+
'&[data-state="closed"]': {
|
82
|
+
animation: "stl-slide-fade-out 0ms linear var(--slide-hide-delay, 0ms)"
|
83
|
+
},
|
84
|
+
"@media (prefers-reduced-motion: no-preference)": {
|
85
|
+
willChange: "transform, opacity",
|
86
|
+
'&[data-state="open"], &[data-state="delayed-open"]': {
|
87
|
+
'&[data-side="top"]': {
|
88
|
+
animation: "stl-slide-slide-down-and-fade ".concat(animationDuration, " ").concat(animationEasing)
|
89
|
+
},
|
90
|
+
'&[data-side="right"]': {
|
91
|
+
animation: "stl-slide-slide-left-and-fade ".concat(animationDuration, " ").concat(animationEasing)
|
92
|
+
},
|
93
|
+
'&[data-side="left"]': {
|
94
|
+
animation: "stl-slide-slide-right-and-fade ".concat(animationDuration, " ").concat(animationEasing)
|
95
|
+
},
|
96
|
+
'&[data-side="bottom"]': {
|
97
|
+
animation: "stl-slide-slide-up-and-fade ".concat(animationDuration, " ").concat(animationEasing)
|
98
|
+
}
|
99
|
+
},
|
100
|
+
'&[data-state="closed"]': {
|
101
|
+
animation: "stl-slide-fade-out ".concat(animationDuration, " ").concat(animationEasing, " var(--slide-hide-delay, 0ms)")
|
102
|
+
}
|
103
|
+
}
|
104
|
+
}
|
105
|
+
/* eslint-enable @algolia/satellite/prefer-stl-helper */
|
106
|
+
});
|
107
|
+
});
|
@@ -0,0 +1,27 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
5
|
+
// @ts-check
|
6
|
+
var plugin = require("tailwindcss/plugin");
|
7
|
+
module.exports = plugin(function (_ref) {
|
8
|
+
var addUtilities = _ref.addUtilities;
|
9
|
+
addUtilities({
|
10
|
+
".no-scrollbar": {
|
11
|
+
// for Firefox
|
12
|
+
"scrollbar-width": "none",
|
13
|
+
// for Internet Explorer, Edge
|
14
|
+
"-ms-overflow-style": "none",
|
15
|
+
// for Chrome, Safari, and Opera
|
16
|
+
"&::-webkit-scrollbar": {
|
17
|
+
display: "none",
|
18
|
+
width: "0px"
|
19
|
+
}
|
20
|
+
},
|
21
|
+
".no-search-input-decoration": {
|
22
|
+
"&[type='search']": (0, _defineProperty2["default"])({}, "&::-webkit-search-decoration,\n &::-webkit-search-cancel-button,\n &::-webkit-search-results-button,\n &::-webkit-search-results-decoration", {
|
23
|
+
display: "none"
|
24
|
+
})
|
25
|
+
}
|
26
|
+
});
|
27
|
+
});
|
@@ -0,0 +1,5 @@
|
|
1
|
+
declare type AscendingArray<length extends number, accumulator extends Array<number> = []> = accumulator["length"] extends length ? accumulator : AscendingArray<length, [...accumulator, accumulator["length"]]>;
|
2
|
+
declare type ArrayToUnion<T extends Array<any>> = T[number];
|
3
|
+
/** example: `NumberUnion<3> = 1 | 2 | 3` */
|
4
|
+
export declare type NumberUnion<T extends number> = Exclude<ArrayToUnion<AscendingArray<T>>, 0> | T;
|
5
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare function clamp(val: number, min: number, max: number): number;
|
File without changes
|
@@ -0,0 +1,25 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
// See https://github.com/streamich/react-use/issues/73
|
4
|
+
/**
|
5
|
+
* To detect you are in IE (for this case) by checking typeof(Event) which is
|
6
|
+
* 'function' for all except IE where it is 'object'.
|
7
|
+
* You can then safely polyfill the Event constructor using the approach above.
|
8
|
+
* In IE11 it seems to be safe to set window.Event = CustomEvent.
|
9
|
+
*/
|
10
|
+
(function () {
|
11
|
+
if (typeof window === "undefined" || typeof window.Event === "function") return false; //If not IE
|
12
|
+
|
13
|
+
function CustomEvent(event, params) {
|
14
|
+
params = params || {
|
15
|
+
bubbles: false,
|
16
|
+
cancelable: false,
|
17
|
+
detail: undefined
|
18
|
+
};
|
19
|
+
var evt = document.createEvent("CustomEvent");
|
20
|
+
evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail);
|
21
|
+
return evt;
|
22
|
+
}
|
23
|
+
CustomEvent.prototype = window.Event.prototype;
|
24
|
+
window.Event = CustomEvent;
|
25
|
+
})();
|
@@ -0,0 +1,25 @@
|
|
1
|
+
declare const defaultHumanSizes: string[];
|
2
|
+
export declare function numberWithCommas(x: number | string, precision?: number): string;
|
3
|
+
export declare function formatHumanNumber(bytes: number, options?: {
|
4
|
+
/** @default 2 */
|
5
|
+
decimals?: number;
|
6
|
+
/** @default ['', 'K', 'M', 'B', 'T'] */
|
7
|
+
sizes?: typeof defaultHumanSizes;
|
8
|
+
/** @default 1000 */
|
9
|
+
divider?: number;
|
10
|
+
/**
|
11
|
+
* Hides the decimal points if they're 0
|
12
|
+
* @default false
|
13
|
+
*/
|
14
|
+
prettyDecimals?: boolean;
|
15
|
+
}): string;
|
16
|
+
export declare function formatHumanSize(nb: number, options?: {
|
17
|
+
/** @default 2 */
|
18
|
+
decimals?: number;
|
19
|
+
/**
|
20
|
+
* Hides the decimal points if they're 0
|
21
|
+
* @default false
|
22
|
+
*/
|
23
|
+
prettyDecimals?: boolean;
|
24
|
+
}): string;
|
25
|
+
export {};
|
@@ -0,0 +1,44 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.formatHumanNumber = formatHumanNumber;
|
7
|
+
exports.formatHumanSize = formatHumanSize;
|
8
|
+
exports.numberWithCommas = numberWithCommas;
|
9
|
+
var defaultHumanSizes = ["", "K", "M", "B", "T"];
|
10
|
+
function numberWithCommas(x) {
|
11
|
+
var precision = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
|
12
|
+
if (typeof x !== "number") {
|
13
|
+
return x;
|
14
|
+
}
|
15
|
+
return (x || 0).toFixed(precision).replace(/\B(?=(\d{3})+(?!\d))/g, ",");
|
16
|
+
}
|
17
|
+
function formatHumanNumber(bytes, options) {
|
18
|
+
var _ref = options !== null && options !== void 0 ? options : {},
|
19
|
+
_ref$decimals = _ref.decimals,
|
20
|
+
decimals = _ref$decimals === void 0 ? 2 : _ref$decimals,
|
21
|
+
_ref$sizes = _ref.sizes,
|
22
|
+
sizes = _ref$sizes === void 0 ? defaultHumanSizes : _ref$sizes,
|
23
|
+
_ref$divider = _ref.divider,
|
24
|
+
divider = _ref$divider === void 0 ? 1000 : _ref$divider,
|
25
|
+
_ref$prettyDecimals = _ref.prettyDecimals,
|
26
|
+
prettyDecimals = _ref$prettyDecimals === void 0 ? false : _ref$prettyDecimals;
|
27
|
+
if (bytes === 0) return "0";
|
28
|
+
var i = Math.min(Math.max(0, Math.floor(Math.log(Math.abs(bytes)) / Math.log(divider))), sizes.length - 1);
|
29
|
+
var nb = bytes / Math.pow(divider, i);
|
30
|
+
return (Math.abs(nb) > 1000 ? numberWithCommas(nb, decimals) : prettyDecimals ? parseFloat(nb.toFixed(decimals)) : nb.toFixed(decimals)) + sizes[i];
|
31
|
+
}
|
32
|
+
function formatHumanSize(nb, options) {
|
33
|
+
var _ref2 = options !== null && options !== void 0 ? options : {},
|
34
|
+
_ref2$decimals = _ref2.decimals,
|
35
|
+
decimals = _ref2$decimals === void 0 ? 2 : _ref2$decimals,
|
36
|
+
_ref2$prettyDecimals = _ref2.prettyDecimals,
|
37
|
+
prettyDecimals = _ref2$prettyDecimals === void 0 ? false : _ref2$prettyDecimals;
|
38
|
+
return formatHumanNumber(nb, {
|
39
|
+
decimals: decimals,
|
40
|
+
sizes: ["", "K", "M", "G", "T"],
|
41
|
+
divider: 1000,
|
42
|
+
prettyDecimals: prettyDecimals
|
43
|
+
}) + "B";
|
44
|
+
}
|
@@ -0,0 +1,5 @@
|
|
1
|
+
import type { ChangeEvent, Component } from "react";
|
2
|
+
declare type stateUpdater<State> = (state: State, name: string, newValue: any) => Partial<State>;
|
3
|
+
declare type changeHandler = (evt: ChangeEvent<any>) => void;
|
4
|
+
export declare function genericChangeHandler<State>(ctx: Component<any, State>, updater?: stateUpdater<State>): (name: string, attribute?: string) => changeHandler;
|
5
|
+
export {};
|
@@ -1,21 +1,16 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
-
|
5
4
|
Object.defineProperty(exports, "__esModule", {
|
6
5
|
value: true
|
7
6
|
});
|
8
7
|
exports.genericChangeHandler = genericChangeHandler;
|
9
|
-
exports["default"] = void 0;
|
10
|
-
|
11
8
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
12
|
-
|
13
9
|
function genericChangeHandler(ctx, updater) {
|
14
10
|
var memo = {};
|
15
11
|
return function (name) {
|
16
12
|
var attribute = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : "value";
|
17
13
|
var key = "".concat(name, ":").concat(attribute);
|
18
|
-
|
19
14
|
if (!memo[key]) {
|
20
15
|
memo[key] = function (evt) {
|
21
16
|
var newValue = evt.target[attribute];
|
@@ -24,10 +19,6 @@ function genericChangeHandler(ctx, updater) {
|
|
24
19
|
});
|
25
20
|
};
|
26
21
|
}
|
27
|
-
|
28
22
|
return memo[key];
|
29
23
|
};
|
30
|
-
}
|
31
|
-
|
32
|
-
var _default = genericChangeHandler;
|
33
|
-
exports["default"] = _default;
|
24
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.getTextFromReactNode = void 0;
|
7
|
+
var _react = require("react");
|
8
|
+
/**
|
9
|
+
* Returns the text content of a React node.
|
10
|
+
*/
|
11
|
+
var getTextFromReactNode = exports.getTextFromReactNode = function getTextFromReactNode(node) {
|
12
|
+
if (typeof node === "string") return node;
|
13
|
+
if (typeof node === "number") return node.toString();
|
14
|
+
if ( /*#__PURE__*/(0, _react.isValidElement)(node)) {
|
15
|
+
return _react.Children.toArray(node.props.children).map(function (child) {
|
16
|
+
return getTextFromReactNode(child);
|
17
|
+
}).join(" ");
|
18
|
+
}
|
19
|
+
return "";
|
20
|
+
};
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const hashCode: (value: string) => number;
|
@@ -0,0 +1,20 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
4
|
+
value: true
|
5
|
+
});
|
6
|
+
exports.hashCode = void 0;
|
7
|
+
// https://stackoverflow.com/questions/7616461/generate-a-hash-from-string-in-javascript?rq=1
|
8
|
+
var hashCode = exports.hashCode = function hashCode(value) {
|
9
|
+
var hash = 0;
|
10
|
+
if (value.length === 0) {
|
11
|
+
return hash;
|
12
|
+
}
|
13
|
+
for (var i = 0; i < value.length; i++) {
|
14
|
+
var _char = value.charCodeAt(i);
|
15
|
+
hash = (hash << 5) - hash + _char;
|
16
|
+
hash = hash & hash; // Convert to 32bit integer
|
17
|
+
}
|
18
|
+
|
19
|
+
return hash;
|
20
|
+
};
|
@@ -1,8 +1,7 @@
|
|
1
|
-
export { clamp } from "./clamp";
|
2
1
|
export { genericChangeHandler } from "./genericChangeHandler";
|
3
|
-
export { omit } from "./omit";
|
4
2
|
export { pluralize } from "./pluralize";
|
5
3
|
export { range } from "./range";
|
6
4
|
export { uniqBy } from "./uniqBy";
|
7
5
|
export { uniqueId } from "./uniqueId";
|
8
|
-
export
|
6
|
+
export { isNil } from "./isNil";
|
7
|
+
export { toSentenceCase } from "./toSentenceCase";
|
@@ -3,22 +3,16 @@
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
4
4
|
value: true
|
5
5
|
});
|
6
|
-
Object.defineProperty(exports, "clamp", {
|
7
|
-
enumerable: true,
|
8
|
-
get: function get() {
|
9
|
-
return _clamp.clamp;
|
10
|
-
}
|
11
|
-
});
|
12
6
|
Object.defineProperty(exports, "genericChangeHandler", {
|
13
7
|
enumerable: true,
|
14
8
|
get: function get() {
|
15
9
|
return _genericChangeHandler.genericChangeHandler;
|
16
10
|
}
|
17
11
|
});
|
18
|
-
Object.defineProperty(exports, "
|
12
|
+
Object.defineProperty(exports, "isNil", {
|
19
13
|
enumerable: true,
|
20
14
|
get: function get() {
|
21
|
-
return
|
15
|
+
return _isNil.isNil;
|
22
16
|
}
|
23
17
|
});
|
24
18
|
Object.defineProperty(exports, "pluralize", {
|
@@ -33,6 +27,12 @@ Object.defineProperty(exports, "range", {
|
|
33
27
|
return _range.range;
|
34
28
|
}
|
35
29
|
});
|
30
|
+
Object.defineProperty(exports, "toSentenceCase", {
|
31
|
+
enumerable: true,
|
32
|
+
get: function get() {
|
33
|
+
return _toSentenceCase.toSentenceCase;
|
34
|
+
}
|
35
|
+
});
|
36
36
|
Object.defineProperty(exports, "uniqBy", {
|
37
37
|
enumerable: true,
|
38
38
|
get: function get() {
|
@@ -45,17 +45,10 @@ Object.defineProperty(exports, "uniqueId", {
|
|
45
45
|
return _uniqueId.uniqueId;
|
46
46
|
}
|
47
47
|
});
|
48
|
-
|
49
|
-
var _clamp = require("./clamp");
|
50
|
-
|
51
48
|
var _genericChangeHandler = require("./genericChangeHandler");
|
52
|
-
|
53
|
-
var _omit = require("./omit");
|
54
|
-
|
55
49
|
var _pluralize = require("./pluralize");
|
56
|
-
|
57
50
|
var _range = require("./range");
|
58
|
-
|
59
51
|
var _uniqBy = require("./uniqBy");
|
60
|
-
|
61
|
-
var
|
52
|
+
var _uniqueId = require("./uniqueId");
|
53
|
+
var _isNil = require("./isNil");
|
54
|
+
var _toSentenceCase = require("./toSentenceCase");
|