@algolia/satellite 1.0.0-v3.98 → 1.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 +46 -29
- package/dist/cjs/AnnouncementBadge/AnnouncementBadge.d.ts +25 -0
- package/dist/cjs/AnnouncementBadge/AnnouncementBadge.js +56 -0
- package/dist/cjs/AnnouncementBadge/index.d.ts +1 -0
- package/dist/cjs/AnnouncementBadge/index.js +16 -0
- package/dist/cjs/AutoComplete/AutoComplete.d.ts +8 -0
- package/dist/cjs/AutoComplete/AutoComplete.js +434 -0
- package/dist/cjs/AutoComplete/AutoComplete.tailwind.d.ts +5 -0
- package/dist/cjs/AutoComplete/AutoComplete.tailwind.js +96 -0
- package/dist/cjs/AutoComplete/components/AutoCompleteContext.d.ts +10 -0
- package/dist/cjs/AutoComplete/components/AutoCompleteContext.js +29 -0
- package/dist/cjs/AutoComplete/components/AutoCompleteEmptyState.d.ts +12 -0
- package/dist/cjs/AutoComplete/components/AutoCompleteEmptyState.js +34 -0
- package/dist/cjs/AutoComplete/components/DefaultOptionItem.d.ts +6 -0
- package/dist/cjs/AutoComplete/components/DefaultOptionItem.js +41 -0
- package/dist/cjs/AutoComplete/index.d.ts +5 -0
- package/dist/cjs/AutoComplete/index.js +63 -0
- package/dist/cjs/AutoComplete/types.d.ts +95 -0
- package/dist/cjs/AutoComplete/types.js +5 -0
- package/dist/cjs/AutoComplete/utils.d.ts +8 -0
- package/dist/cjs/AutoComplete/utils.js +81 -0
- package/dist/cjs/Avatars/ApplicationAvatar.d.ts +16 -0
- package/dist/cjs/Avatars/ApplicationAvatar.js +37 -0
- package/dist/cjs/Avatars/UserAvatar.d.ts +23 -0
- package/dist/cjs/Avatars/UserAvatar.js +58 -0
- package/dist/cjs/Avatars/index.d.ts +2 -0
- package/dist/cjs/Avatars/index.js +27 -0
- package/dist/cjs/Avatars/types.d.ts +17 -0
- package/dist/cjs/Avatars/types.js +5 -0
- package/dist/cjs/Avatars/utils.d.ts +6 -0
- package/dist/cjs/Avatars/utils.js +55 -0
- package/dist/cjs/Badge/Badge.d.ts +24 -0
- package/dist/cjs/Badge/Badge.js +68 -0
- package/dist/cjs/Badge/index.d.ts +1 -0
- package/dist/cjs/Badge/index.js +16 -0
- package/dist/cjs/Banners/Alert/Alert.d.ts +33 -0
- package/dist/cjs/Banners/Alert/Alert.js +93 -0
- package/dist/cjs/Banners/Alert/index.d.ts +1 -0
- package/dist/cjs/Banners/Alert/index.js +16 -0
- package/dist/cjs/Banners/Promote/Promote.d.ts +28 -0
- package/dist/cjs/Banners/Promote/Promote.js +79 -0
- package/dist/cjs/Banners/Promote/index.d.ts +1 -0
- package/dist/cjs/Banners/Promote/index.js +16 -0
- package/dist/cjs/Banners/SystemNotification/SystemNotification.d.ts +12 -0
- package/dist/cjs/Banners/SystemNotification/SystemNotification.js +33 -0
- package/dist/cjs/Banners/SystemNotification/index.d.ts +1 -0
- package/dist/cjs/Banners/SystemNotification/index.js +16 -0
- package/dist/cjs/Banners/index.d.ts +3 -0
- package/dist/cjs/Banners/index.js +38 -0
- package/dist/cjs/Button/Button.d.ts +9 -0
- package/dist/cjs/Button/Button.js +25 -0
- package/dist/cjs/Button/Button.tailwind.d.ts +5 -0
- package/dist/cjs/Button/Button.tailwind.js +154 -0
- package/dist/cjs/Button/ButtonGroup.d.ts +17 -0
- package/dist/cjs/Button/ButtonGroup.js +27 -0
- package/dist/cjs/Button/IconButton.d.ts +9 -0
- package/dist/cjs/Button/IconButton.js +25 -0
- package/dist/cjs/Button/PolymorphicButton.d.ts +12 -0
- package/dist/cjs/Button/PolymorphicButton.js +78 -0
- package/dist/cjs/Button/PolymorphicIconButton.d.ts +29 -0
- package/dist/cjs/Button/PolymorphicIconButton.js +86 -0
- package/dist/cjs/Button/index.d.ts +4 -0
- package/dist/cjs/Button/index.js +38 -0
- package/dist/cjs/Button/styles.d.ts +5 -0
- package/dist/cjs/Button/styles.js +37 -0
- package/dist/cjs/Button/types.d.ts +33 -0
- package/dist/cjs/Button/types.js +11 -0
- package/dist/cjs/Card/Card.d.ts +36 -0
- package/dist/cjs/Card/Card.js +47 -0
- package/dist/cjs/Card/Card.tailwind.d.ts +5 -0
- package/dist/cjs/Card/Card.tailwind.js +36 -0
- package/dist/cjs/Card/components/CardHeader.d.ts +5 -0
- package/dist/cjs/Card/components/CardHeader.js +26 -0
- package/dist/cjs/Card/components/CardTitle.d.ts +7 -0
- package/dist/cjs/Card/components/CardTitle.js +28 -0
- package/dist/cjs/Card/index.d.ts +3 -0
- package/dist/cjs/Card/index.js +38 -0
- package/dist/cjs/Checkbox/Checkbox.d.ts +23 -0
- package/dist/cjs/Checkbox/Checkbox.js +96 -0
- package/dist/cjs/Checkbox/Checkbox.tailwind.d.ts +5 -0
- package/dist/cjs/Checkbox/Checkbox.tailwind.js +70 -0
- package/dist/cjs/Checkbox/index.d.ts +1 -0
- package/dist/cjs/Checkbox/index.js +16 -0
- package/dist/cjs/ClickAwayContainer/ClickAwayContainer.d.ts +27 -0
- package/dist/cjs/ClickAwayContainer/ClickAwayContainer.js +82 -0
- package/dist/cjs/ClickAwayContainer/index.d.ts +1 -0
- package/dist/cjs/ClickAwayContainer/index.js +16 -0
- package/dist/cjs/DatePicker/DatePicker/DatePicker.d.ts +39 -0
- package/dist/cjs/DatePicker/DatePicker/DatePicker.js +168 -0
- package/dist/cjs/DatePicker/DatePicker/datePickerReducer.d.ts +29 -0
- package/dist/cjs/DatePicker/DatePicker/datePickerReducer.js +50 -0
- package/dist/cjs/DatePicker/DatePicker/index.d.ts +2 -0
- package/dist/cjs/DatePicker/DatePicker/index.js +27 -0
- package/dist/cjs/DatePicker/DatePicker.tailwind.d.ts +5 -0
- package/dist/cjs/DatePicker/DatePicker.tailwind.js +184 -0
- package/dist/cjs/DatePicker/DateRangePicker/DateRangePicker.d.ts +40 -0
- package/dist/cjs/DatePicker/DateRangePicker/DateRangePicker.js +261 -0
- package/dist/cjs/DatePicker/DateRangePicker/DateRangePickerDisplay.d.ts +13 -0
- package/dist/cjs/DatePicker/DateRangePicker/DateRangePickerDisplay.js +37 -0
- package/dist/cjs/DatePicker/DateRangePicker/dateRangePickerReducer.d.ts +54 -0
- package/dist/cjs/DatePicker/DateRangePicker/dateRangePickerReducer.js +99 -0
- package/dist/cjs/DatePicker/DateRangePicker/dateRangePickerTimeRange.d.ts +16 -0
- package/dist/cjs/DatePicker/DateRangePicker/dateRangePickerTimeRange.js +15 -0
- package/dist/cjs/DatePicker/DateRangePicker/index.d.ts +4 -0
- package/dist/cjs/DatePicker/DateRangePicker/index.js +39 -0
- package/dist/cjs/DatePicker/components/Calendar.d.ts +17 -0
- package/dist/cjs/DatePicker/components/Calendar.js +54 -0
- package/dist/cjs/DatePicker/components/Display.d.ts +9 -0
- package/dist/cjs/DatePicker/components/Display.js +22 -0
- package/dist/cjs/DatePicker/components/Footer.d.ts +5 -0
- package/dist/cjs/DatePicker/components/Footer.js +18 -0
- package/dist/cjs/DatePicker/components/FooterActions.d.ts +11 -0
- package/dist/cjs/DatePicker/components/FooterActions.js +31 -0
- package/dist/cjs/DatePicker/components/Modal.d.ts +15 -0
- package/dist/cjs/DatePicker/components/Modal.js +66 -0
- package/dist/cjs/DatePicker/components/NavBar.d.ts +9 -0
- package/dist/cjs/DatePicker/components/NavBar.js +122 -0
- package/dist/cjs/DatePicker/components/SidePanel.d.ts +5 -0
- package/dist/cjs/DatePicker/components/SidePanel.js +21 -0
- package/dist/cjs/DatePicker/components/index.d.ts +7 -0
- package/dist/cjs/DatePicker/components/index.js +75 -0
- package/dist/cjs/DatePicker/index.d.ts +2 -0
- package/dist/cjs/DatePicker/index.js +27 -0
- package/dist/cjs/DatePicker/types.d.ts +26 -0
- package/dist/cjs/DatePicker/types.js +5 -0
- package/dist/cjs/DatePicker/utils.d.ts +3 -0
- package/dist/cjs/DatePicker/utils.js +19 -0
- package/dist/cjs/Dropdown/Dropdown.d.ts +38 -0
- package/dist/cjs/Dropdown/Dropdown.js +124 -0
- package/dist/cjs/Dropdown/DropdownButton.d.ts +13 -0
- package/dist/cjs/Dropdown/DropdownButton.js +49 -0
- package/dist/cjs/Dropdown/DropdownContext.d.ts +6 -0
- package/dist/cjs/Dropdown/DropdownContext.js +15 -0
- package/dist/cjs/Dropdown/components/DropdownButtonItem.d.ts +14 -0
- package/dist/cjs/Dropdown/components/DropdownButtonItem.js +46 -0
- package/dist/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.d.ts +10 -0
- package/dist/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.js +59 -0
- package/dist/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.d.ts +8 -0
- package/dist/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.js +21 -0
- package/dist/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.d.ts +8 -0
- package/dist/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.js +17 -0
- package/dist/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.d.ts +10 -0
- package/dist/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.js +37 -0
- package/dist/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.d.ts +10 -0
- package/dist/cjs/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.js +34 -0
- package/dist/cjs/Dropdown/components/DropdownCollapsibleItem/index.d.ts +5 -0
- package/dist/cjs/Dropdown/components/DropdownCollapsibleItem/index.js +63 -0
- package/dist/cjs/Dropdown/components/DropdownDivider.d.ts +3 -0
- package/dist/cjs/Dropdown/components/DropdownDivider.js +17 -0
- package/dist/cjs/Dropdown/components/DropdownFooterItem.d.ts +9 -0
- package/dist/cjs/Dropdown/components/DropdownFooterItem.js +29 -0
- package/dist/cjs/Dropdown/components/DropdownLinkItem.d.ts +10 -0
- package/dist/cjs/Dropdown/components/DropdownLinkItem.js +54 -0
- package/dist/cjs/Dropdown/components/DropdownRadioItem.d.ts +8 -0
- package/dist/cjs/Dropdown/components/DropdownRadioItem.js +46 -0
- package/dist/cjs/Dropdown/components/DropdownTitle.d.ts +6 -0
- package/dist/cjs/Dropdown/components/DropdownTitle.js +25 -0
- package/dist/cjs/Dropdown/components/DropdownToggleItem.d.ts +11 -0
- package/dist/cjs/Dropdown/components/DropdownToggleItem.js +49 -0
- package/dist/cjs/Dropdown/index.d.ts +12 -0
- package/dist/cjs/Dropdown/index.js +147 -0
- package/dist/cjs/Dropdown/useDropdownItemProps.d.ts +20 -0
- package/dist/cjs/Dropdown/useDropdownItemProps.js +37 -0
- package/dist/cjs/Dropzone/Dropzone.d.ts +25 -0
- package/dist/cjs/Dropzone/Dropzone.js +163 -0
- package/dist/cjs/Dropzone/index.d.ts +1 -0
- package/dist/cjs/Dropzone/index.js +16 -0
- package/dist/cjs/EmptyState/EmptyState.d.ts +8 -0
- package/dist/cjs/EmptyState/EmptyState.js +98 -0
- package/dist/cjs/EmptyState/EmptyState.tailwind.d.ts +5 -0
- package/dist/cjs/EmptyState/EmptyState.tailwind.js +15 -0
- package/dist/cjs/EmptyState/index.d.ts +2 -0
- package/dist/cjs/EmptyState/index.js +27 -0
- package/dist/cjs/EmptyState/types.d.ts +50 -0
- package/dist/cjs/EmptyState/types.js +5 -0
- package/dist/cjs/Field/Field.d.ts +24 -0
- package/dist/cjs/Field/Field.js +74 -0
- package/dist/cjs/Field/FieldContext.d.ts +16 -0
- package/dist/cjs/Field/FieldContext.js +14 -0
- package/dist/cjs/Field/index.d.ts +3 -0
- package/dist/cjs/Field/index.js +27 -0
- package/dist/cjs/Field/useField.d.ts +2 -0
- package/dist/cjs/Field/useField.js +11 -0
- package/dist/cjs/FlexGrid/FlexGrid.d.ts +44 -0
- package/dist/cjs/FlexGrid/FlexGrid.js +73 -0
- package/dist/cjs/FlexGrid/FlexGrid.tailwind.d.ts +8 -0
- package/dist/cjs/FlexGrid/FlexGrid.tailwind.js +71 -0
- package/dist/cjs/FlexGrid/index.d.ts +1 -0
- package/dist/cjs/FlexGrid/index.js +16 -0
- package/dist/cjs/HelpUnderline/HelpUnderline.d.ts +15 -0
- package/dist/cjs/HelpUnderline/HelpUnderline.js +39 -0
- package/dist/cjs/HelpUnderline/HelpUnderline.tailwind.d.ts +5 -0
- package/dist/cjs/HelpUnderline/HelpUnderline.tailwind.js +21 -0
- package/dist/cjs/HelpUnderline/index.d.ts +1 -0
- package/dist/cjs/HelpUnderline/index.js +16 -0
- package/dist/cjs/Icons/AlgoliaRecommendIcon.d.ts +3 -0
- package/dist/cjs/Icons/AlgoliaRecommendIcon.js +46 -0
- package/dist/cjs/Icons/AlgoliaSearchIcon.d.ts +3 -0
- package/dist/cjs/Icons/AlgoliaSearchIcon.js +49 -0
- package/dist/cjs/Icons/BulbIcon.d.ts +3 -0
- package/dist/cjs/Icons/BulbIcon.js +37 -0
- package/dist/cjs/Icons/ContextIcon.d.ts +3 -0
- package/dist/cjs/Icons/ContextIcon.js +51 -0
- package/dist/cjs/Icons/CrawlerIcon.d.ts +3 -0
- package/dist/cjs/Icons/CrawlerIcon.js +40 -0
- package/dist/cjs/Icons/DragHandleIcon.d.ts +3 -0
- package/dist/cjs/Icons/DragHandleIcon.js +58 -0
- package/dist/cjs/Icons/NeuralSearchIcon.d.ts +3 -0
- package/dist/cjs/Icons/NeuralSearchIcon.js +34 -0
- package/dist/cjs/Icons/NoFiltersIcon.d.ts +3 -0
- package/dist/cjs/Icons/NoFiltersIcon.js +59 -0
- package/dist/cjs/Icons/PinIcon.d.ts +3 -0
- package/dist/cjs/Icons/PinIcon.js +60 -0
- package/dist/cjs/Icons/QueryBreakdownIcon.d.ts +3 -0
- package/dist/cjs/Icons/QueryBreakdownIcon.js +39 -0
- package/dist/cjs/Icons/RocketIcon.d.ts +3 -0
- package/dist/cjs/Icons/RocketIcon.js +36 -0
- package/dist/cjs/Icons/SettingsCategoryPagesIcon.d.ts +3 -0
- package/dist/cjs/Icons/SettingsCategoryPagesIcon.js +36 -0
- package/dist/cjs/Icons/SettingsConsequencesIcon.d.ts +3 -0
- package/dist/cjs/Icons/SettingsConsequencesIcon.js +70 -0
- package/dist/cjs/Icons/TestingIcon.d.ts +3 -0
- package/dist/cjs/Icons/TestingIcon.js +36 -0
- package/dist/cjs/Icons/UnpinIcon.d.ts +3 -0
- package/dist/cjs/Icons/UnpinIcon.js +60 -0
- package/dist/cjs/Icons/WorkspaceSwitcherIcon.d.ts +3 -0
- package/dist/cjs/Icons/WorkspaceSwitcherIcon.js +34 -0
- package/dist/cjs/Icons/index.d.ts +20 -0
- package/dist/cjs/Icons/index.js +1846 -0
- package/dist/cjs/Icons/utils.d.ts +1 -0
- package/dist/cjs/Icons/utils.js +10 -0
- package/dist/cjs/Input/Input.d.ts +27 -0
- package/dist/cjs/Input/Input.js +212 -0
- package/dist/cjs/Input/Input.tailwind.d.ts +5 -0
- package/dist/cjs/Input/Input.tailwind.js +123 -0
- package/dist/cjs/Input/index.d.ts +1 -0
- package/dist/cjs/Input/index.js +16 -0
- package/dist/cjs/Insert/Insert.d.ts +19 -0
- package/dist/cjs/Insert/Insert.js +50 -0
- package/dist/cjs/Insert/index.d.ts +1 -0
- package/dist/cjs/Insert/index.js +16 -0
- package/dist/cjs/InstantSearch/InstantSearch.tailwind.d.ts +5 -0
- package/dist/cjs/InstantSearch/InstantSearch.tailwind.js +376 -0
- package/dist/cjs/KeyboardKey/KeyboardKey.d.ts +12 -0
- package/dist/cjs/KeyboardKey/KeyboardKey.js +41 -0
- package/dist/cjs/KeyboardKey/KeyboardKey.tailwind.d.ts +5 -0
- package/dist/cjs/KeyboardKey/KeyboardKey.tailwind.js +29 -0
- package/dist/cjs/KeyboardKey/index.d.ts +1 -0
- package/dist/cjs/KeyboardKey/index.js +16 -0
- package/dist/cjs/Link/BaseLink.d.ts +7 -0
- package/dist/cjs/Link/BaseLink.js +28 -0
- package/dist/cjs/Link/ButtonLink.d.ts +13 -0
- package/dist/cjs/Link/ButtonLink.js +41 -0
- package/dist/cjs/Link/IconButtonLink.d.ts +13 -0
- package/dist/cjs/Link/IconButtonLink.js +35 -0
- package/dist/cjs/Link/Link.d.ts +17 -0
- package/dist/cjs/Link/Link.js +56 -0
- package/dist/cjs/Link/index.d.ts +4 -0
- package/dist/cjs/Link/index.js +49 -0
- package/dist/cjs/Medallion/Medallion.d.ts +16 -0
- package/dist/cjs/Medallion/Medallion.js +44 -0
- package/dist/cjs/Medallion/Medallion.tailwind.d.ts +5 -0
- package/dist/cjs/Medallion/Medallion.tailwind.js +31 -0
- package/dist/cjs/Medallion/index.d.ts +2 -0
- package/dist/cjs/Medallion/index.js +27 -0
- package/dist/cjs/Medallion/types.d.ts +2 -0
- package/dist/cjs/Medallion/types.js +5 -0
- package/dist/cjs/MenuButton/MenuButton.d.ts +26 -0
- package/dist/cjs/MenuButton/MenuButton.js +44 -0
- package/dist/cjs/MenuButton/components/Content.d.ts +4 -0
- package/dist/cjs/MenuButton/components/Content.js +42 -0
- package/dist/cjs/MenuButton/components/CustomTrigger.d.ts +4 -0
- package/dist/cjs/MenuButton/components/CustomTrigger.js +23 -0
- package/dist/cjs/MenuButton/components/DefaultTrigger.d.ts +4 -0
- package/dist/cjs/MenuButton/components/DefaultTrigger.js +34 -0
- package/dist/cjs/MenuButton/components/Divider.d.ts +2 -0
- package/dist/cjs/MenuButton/components/Divider.js +20 -0
- package/dist/cjs/MenuButton/components/Label.d.ts +3 -0
- package/dist/cjs/MenuButton/components/Label.js +31 -0
- package/dist/cjs/MenuButton/components/collapsible/CollapsibleItem.d.ts +8 -0
- package/dist/cjs/MenuButton/components/collapsible/CollapsibleItem.js +63 -0
- package/dist/cjs/MenuButton/components/collapsible/CollapsibleItemsGroup.d.ts +6 -0
- package/dist/cjs/MenuButton/components/collapsible/CollapsibleItemsGroup.js +20 -0
- package/dist/cjs/MenuButton/components/collapsible/CollapsibleItemsGroupContext.d.ts +7 -0
- package/dist/cjs/MenuButton/components/collapsible/CollapsibleItemsGroupContext.js +15 -0
- package/dist/cjs/MenuButton/components/collapsible/CollapsibleItemsMultipleGroup.d.ts +8 -0
- package/dist/cjs/MenuButton/components/collapsible/CollapsibleItemsMultipleGroup.js +36 -0
- package/dist/cjs/MenuButton/components/collapsible/CollapsibleItemsSingleGroup.d.ts +8 -0
- package/dist/cjs/MenuButton/components/collapsible/CollapsibleItemsSingleGroup.js +33 -0
- package/dist/cjs/MenuButton/components/collapsible/index.d.ts +5 -0
- package/dist/cjs/MenuButton/components/collapsible/index.js +60 -0
- package/dist/cjs/MenuButton/components/items/Item.d.ts +14 -0
- package/dist/cjs/MenuButton/components/items/Item.js +42 -0
- package/dist/cjs/MenuButton/components/items/LinkItem.d.ts +16 -0
- package/dist/cjs/MenuButton/components/items/LinkItem.js +73 -0
- package/dist/cjs/MenuButton/components/items/RadioItem.d.ts +5 -0
- package/dist/cjs/MenuButton/components/items/RadioItem.js +49 -0
- package/dist/cjs/MenuButton/components/items/ToggleItem.d.ts +7 -0
- package/dist/cjs/MenuButton/components/items/ToggleItem.js +77 -0
- package/dist/cjs/MenuButton/components/items/index.d.ts +4 -0
- package/dist/cjs/MenuButton/components/items/index.js +49 -0
- package/dist/cjs/MenuButton/index.d.ts +1 -0
- package/dist/cjs/MenuButton/index.js +16 -0
- package/dist/cjs/MenuButton/useMenuItemProps.d.ts +10 -0
- package/dist/cjs/MenuButton/useMenuItemProps.js +18 -0
- package/dist/cjs/Modal/Modal.d.ts +62 -0
- package/dist/cjs/Modal/Modal.js +139 -0
- package/dist/cjs/Modal/Modal.tailwind.d.ts +5 -0
- package/dist/cjs/Modal/Modal.tailwind.js +81 -0
- package/dist/cjs/Modal/components/ModalFooter.d.ts +5 -0
- package/dist/cjs/Modal/components/ModalFooter.js +31 -0
- package/dist/cjs/Modal/components/ModalSection.d.ts +9 -0
- package/dist/cjs/Modal/components/ModalSection.js +22 -0
- package/dist/cjs/Modal/index.d.ts +3 -0
- package/dist/cjs/Modal/index.js +38 -0
- package/dist/cjs/Pagination/CompactPagination/CompactPagination.d.ts +36 -0
- package/dist/cjs/Pagination/CompactPagination/CompactPagination.js +87 -0
- package/dist/cjs/Pagination/CompactPagination/index.d.ts +1 -0
- package/dist/cjs/Pagination/CompactPagination/index.js +16 -0
- package/dist/cjs/Pagination/DotPagination/DotPagination.d.ts +19 -0
- package/dist/cjs/Pagination/DotPagination/DotPagination.js +50 -0
- package/dist/cjs/Pagination/DotPagination/index.d.ts +1 -0
- package/dist/cjs/Pagination/DotPagination/index.js +16 -0
- package/dist/cjs/Pagination/Pagination/Pagination.d.ts +19 -0
- package/dist/cjs/Pagination/Pagination/Pagination.js +116 -0
- package/dist/cjs/Pagination/Pagination/index.d.ts +1 -0
- package/dist/cjs/Pagination/Pagination/index.js +16 -0
- package/dist/cjs/Pagination/index.d.ts +3 -0
- package/dist/cjs/Pagination/index.js +38 -0
- package/dist/cjs/Popover/Popover.d.ts +9 -0
- package/dist/cjs/Popover/Popover.js +142 -0
- package/dist/cjs/Popover/index.d.ts +2 -0
- package/dist/cjs/Popover/index.js +27 -0
- package/dist/cjs/Popover/types.d.ts +74 -0
- package/dist/cjs/Popover/types.js +5 -0
- package/dist/cjs/ProgressBar/ProgressBar.d.ts +15 -0
- package/dist/cjs/ProgressBar/ProgressBar.js +56 -0
- package/dist/cjs/ProgressBar/ProgressBar.tailwind.d.ts +5 -0
- package/dist/cjs/ProgressBar/ProgressBar.tailwind.js +25 -0
- package/dist/cjs/ProgressBar/index.d.ts +1 -0
- package/dist/cjs/ProgressBar/index.js +16 -0
- package/dist/cjs/ProgressSpinner/ProgressSpinner.d.ts +13 -0
- package/dist/cjs/ProgressSpinner/ProgressSpinner.js +59 -0
- package/dist/cjs/ProgressSpinner/ProgressSpinner.tailwind.d.ts +5 -0
- package/dist/cjs/ProgressSpinner/ProgressSpinner.tailwind.js +44 -0
- package/dist/cjs/ProgressSpinner/index.d.ts +1 -0
- package/dist/cjs/ProgressSpinner/index.js +16 -0
- package/dist/cjs/RadioGroup/RadioButton.d.ts +3 -0
- package/dist/cjs/RadioGroup/RadioButton.js +28 -0
- package/dist/cjs/RadioGroup/RadioButton.tailwind.d.ts +5 -0
- package/dist/cjs/RadioGroup/RadioButton.tailwind.js +61 -0
- package/dist/cjs/RadioGroup/RadioGroup.d.ts +31 -0
- package/dist/cjs/RadioGroup/RadioGroup.js +92 -0
- package/dist/cjs/RadioGroup/RadiogroupContext.d.ts +11 -0
- package/dist/cjs/RadioGroup/RadiogroupContext.js +15 -0
- package/dist/cjs/RadioGroup/index.d.ts +2 -0
- package/dist/cjs/RadioGroup/index.js +27 -0
- package/dist/cjs/RangeSlider/RangeSlider.d.ts +36 -0
- package/dist/cjs/RangeSlider/RangeSlider.js +102 -0
- package/dist/cjs/RangeSlider/index.d.ts +1 -0
- package/dist/cjs/RangeSlider/index.js +16 -0
- package/dist/cjs/Satellite/Satellite.d.ts +10 -0
- package/dist/cjs/Satellite/Satellite.js +59 -0
- package/dist/cjs/Satellite/SatelliteContext.d.ts +10 -0
- package/dist/cjs/Satellite/SatelliteContext.js +22 -0
- package/dist/cjs/Satellite/SatelliteRouter.d.ts +21 -0
- package/dist/cjs/Satellite/SatelliteRouter.js +47 -0
- package/dist/cjs/Satellite/index.d.ts +5 -0
- package/dist/cjs/Satellite/index.js +60 -0
- package/dist/cjs/Satellite/locale.d.ts +37 -0
- package/dist/cjs/Satellite/locale.js +13 -0
- package/dist/cjs/Satellite/useCreatePortal.d.ts +4 -0
- package/dist/cjs/Satellite/useCreatePortal.js +23 -0
- package/dist/cjs/ScrollIndicator/ScrollIndicator.d.ts +18 -0
- package/dist/cjs/ScrollIndicator/ScrollIndicator.js +91 -0
- package/dist/cjs/ScrollIndicator/ScrollIndicator.tailwind.d.ts +5 -0
- package/dist/cjs/ScrollIndicator/ScrollIndicator.tailwind.js +50 -0
- package/dist/cjs/ScrollIndicator/index.d.ts +1 -0
- package/dist/cjs/ScrollIndicator/index.js +16 -0
- package/dist/cjs/Select/Select.d.ts +11 -0
- package/dist/cjs/Select/Select.js +40 -0
- package/dist/cjs/Select/Select.tailwind.d.ts +5 -0
- package/dist/cjs/Select/Select.tailwind.js +76 -0
- package/dist/cjs/Select/index.d.ts +1 -0
- package/dist/cjs/Select/index.js +16 -0
- package/dist/cjs/Separator/Separator.d.ts +13 -0
- package/dist/cjs/Separator/Separator.js +43 -0
- package/dist/cjs/Separator/Separator.tailwind.d.ts +5 -0
- package/dist/cjs/Separator/Separator.tailwind.js +54 -0
- package/dist/cjs/Separator/index.d.ts +1 -0
- package/dist/cjs/Separator/index.js +16 -0
- package/dist/cjs/Sidebar/Sidebar.d.ts +41 -0
- package/dist/cjs/Sidebar/Sidebar.js +67 -0
- package/dist/cjs/Sidebar/SidebarButtonLink.d.ts +20 -0
- package/dist/cjs/Sidebar/SidebarButtonLink.js +84 -0
- package/dist/cjs/Sidebar/SidebarContext.d.ts +9 -0
- package/dist/cjs/Sidebar/SidebarContext.js +15 -0
- package/dist/cjs/Sidebar/SidebarHeader.d.ts +7 -0
- package/dist/cjs/Sidebar/SidebarHeader.js +20 -0
- package/dist/cjs/Sidebar/SidebarHeading.d.ts +8 -0
- package/dist/cjs/Sidebar/SidebarHeading.js +25 -0
- package/dist/cjs/Sidebar/SidebarLink.d.ts +9 -0
- package/dist/cjs/Sidebar/SidebarLink.js +50 -0
- package/dist/cjs/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.d.ts +9 -0
- package/dist/cjs/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.js +37 -0
- package/dist/cjs/Sidebar/SidebarLinksGroup/SidebarGroupLink.d.ts +7 -0
- package/dist/cjs/Sidebar/SidebarLinksGroup/SidebarGroupLink.js +36 -0
- package/dist/cjs/Sidebar/SidebarLinksGroup/SidebarLinksGroup.d.ts +24 -0
- package/dist/cjs/Sidebar/SidebarLinksGroup/SidebarLinksGroup.js +97 -0
- package/dist/cjs/Sidebar/SidebarLinksGroup/index.d.ts +2 -0
- package/dist/cjs/Sidebar/SidebarLinksGroup/index.js +16 -0
- package/dist/cjs/Sidebar/SidebarLinksGroup/types.d.ts +10 -0
- package/dist/cjs/Sidebar/SidebarLinksGroup/types.js +5 -0
- package/dist/cjs/Sidebar/SidebarNav.d.ts +11 -0
- package/dist/cjs/Sidebar/SidebarNav.js +36 -0
- package/dist/cjs/Sidebar/index.d.ts +9 -0
- package/dist/cjs/Sidebar/index.js +111 -0
- package/dist/cjs/Sidebar/types.d.ts +6 -0
- package/dist/cjs/Sidebar/types.js +5 -0
- package/dist/cjs/Stepper/Step.d.ts +6 -0
- package/dist/cjs/Stepper/Step.js +115 -0
- package/dist/cjs/Stepper/Stepper.d.ts +41 -0
- package/dist/cjs/Stepper/Stepper.js +145 -0
- package/dist/cjs/Stepper/StepperContext.d.ts +12 -0
- package/dist/cjs/Stepper/StepperContext.js +15 -0
- package/dist/cjs/Stepper/index.d.ts +3 -0
- package/dist/cjs/Stepper/index.js +38 -0
- package/dist/cjs/Stepper/types.d.ts +26 -0
- package/dist/cjs/Stepper/types.js +5 -0
- package/dist/cjs/Stepper/utils.d.ts +5 -0
- package/dist/cjs/Stepper/utils.js +67 -0
- package/dist/cjs/Switch/Switch.d.ts +18 -0
- package/dist/cjs/Switch/Switch.js +90 -0
- package/dist/cjs/Switch/Switch.tailwind.d.ts +5 -0
- package/dist/cjs/Switch/Switch.tailwind.js +25 -0
- package/dist/cjs/Switch/SwitchOption.d.ts +7 -0
- package/dist/cjs/Switch/SwitchOption.js +44 -0
- package/dist/cjs/Switch/index.d.ts +2 -0
- package/dist/cjs/Switch/index.js +27 -0
- package/dist/cjs/Switch/types.d.ts +7 -0
- package/dist/cjs/Switch/types.js +5 -0
- package/dist/cjs/Switch/utils.d.ts +6 -0
- package/dist/cjs/Switch/utils.js +18 -0
- package/dist/cjs/Tables/DataTable/DataTable.d.ts +55 -0
- package/dist/cjs/Tables/DataTable/DataTable.js +249 -0
- package/dist/cjs/Tables/DataTable/DataTable.tailwind.d.ts +5 -0
- package/dist/cjs/Tables/DataTable/DataTable.tailwind.js +23 -0
- package/dist/cjs/Tables/DataTable/components/Body.d.ts +14 -0
- package/dist/cjs/Tables/DataTable/components/Body.js +118 -0
- package/dist/cjs/Tables/DataTable/components/Footer.d.ts +7 -0
- package/dist/cjs/Tables/DataTable/components/Footer.js +59 -0
- package/dist/cjs/Tables/DataTable/components/Header.d.ts +9 -0
- package/dist/cjs/Tables/DataTable/components/Header.js +38 -0
- package/dist/cjs/Tables/DataTable/components/HeaderCell.d.ts +11 -0
- package/dist/cjs/Tables/DataTable/components/HeaderCell.js +57 -0
- package/dist/cjs/Tables/DataTable/components/Loader.d.ts +8 -0
- package/dist/cjs/Tables/DataTable/components/Loader.js +46 -0
- package/dist/cjs/Tables/DataTable/components/index.d.ts +5 -0
- package/dist/cjs/Tables/DataTable/components/index.js +60 -0
- package/dist/cjs/Tables/DataTable/index.d.ts +2 -0
- package/dist/cjs/Tables/DataTable/index.js +27 -0
- package/dist/cjs/Tables/DataTable/types.d.ts +63 -0
- package/dist/cjs/Tables/DataTable/types.js +5 -0
- package/dist/cjs/Tables/DataTable/utils.d.ts +4 -0
- package/dist/cjs/Tables/DataTable/utils.js +20 -0
- package/dist/cjs/Tables/Table/Table.d.ts +13 -0
- package/dist/cjs/Tables/Table/Table.js +45 -0
- package/dist/cjs/Tables/Table/Table.tailwind.d.ts +5 -0
- package/dist/cjs/Tables/Table/Table.tailwind.js +39 -0
- package/dist/cjs/Tables/Table/components/TableFooter.d.ts +7 -0
- package/dist/cjs/Tables/Table/components/TableFooter.js +25 -0
- package/dist/cjs/Tables/Table/index.d.ts +2 -0
- package/dist/cjs/Tables/Table/index.js +27 -0
- package/dist/cjs/Tables/index.d.ts +2 -0
- package/dist/cjs/Tables/index.js +27 -0
- package/dist/cjs/Tabs/ContentTabs.d.ts +3 -0
- package/dist/cjs/Tabs/ContentTabs.js +59 -0
- package/dist/cjs/Tabs/LinkTabs.d.ts +9 -0
- package/dist/cjs/Tabs/LinkTabs.js +51 -0
- package/dist/cjs/Tabs/Tabs.tailwind.d.ts +5 -0
- package/dist/cjs/Tabs/Tabs.tailwind.js +72 -0
- package/dist/cjs/Tabs/components/LinkTab.d.ts +8 -0
- package/dist/cjs/Tabs/components/LinkTab.js +83 -0
- package/dist/cjs/Tabs/index.d.ts +3 -0
- package/dist/cjs/Tabs/index.js +38 -0
- package/dist/cjs/Tabs/types.d.ts +34 -0
- package/dist/cjs/Tabs/types.js +5 -0
- package/dist/cjs/Tabs/utils.d.ts +2 -0
- package/dist/cjs/Tabs/utils.js +18 -0
- package/dist/cjs/Tag/Tag.d.ts +30 -0
- package/dist/cjs/Tag/Tag.js +121 -0
- package/dist/cjs/Tag/Tag.tailwind.d.ts +5 -0
- package/dist/cjs/Tag/Tag.tailwind.js +54 -0
- package/dist/cjs/Tag/index.d.ts +1 -0
- package/dist/cjs/Tag/index.js +16 -0
- package/dist/cjs/TextArea/TextArea.d.ts +9 -0
- package/dist/cjs/TextArea/TextArea.js +32 -0
- package/dist/cjs/TextArea/TextArea.tailwind.d.ts +5 -0
- package/dist/cjs/TextArea/TextArea.tailwind.js +42 -0
- package/dist/cjs/TextArea/index.d.ts +1 -0
- package/dist/cjs/TextArea/index.js +16 -0
- package/dist/cjs/TextWrap/TextWrap.d.ts +12 -0
- package/dist/cjs/TextWrap/TextWrap.js +58 -0
- package/dist/cjs/TextWrap/index.d.ts +1 -0
- package/dist/cjs/TextWrap/index.js +16 -0
- package/dist/cjs/Toast/Toast.d.ts +5 -0
- package/dist/cjs/Toast/Toast.js +110 -0
- package/dist/cjs/Toast/Toast.tailwind.d.ts +5 -0
- package/dist/cjs/Toast/Toast.tailwind.js +34 -0
- package/dist/cjs/Toast/Toasts.d.ts +20 -0
- package/dist/cjs/Toast/Toasts.js +101 -0
- package/dist/cjs/Toast/index.d.ts +3 -0
- package/dist/cjs/Toast/index.js +38 -0
- package/dist/cjs/Toast/types.d.ts +34 -0
- package/dist/cjs/Toast/types.js +5 -0
- package/dist/cjs/Toggle/Toggle.d.ts +12 -0
- package/dist/cjs/Toggle/Toggle.js +73 -0
- package/dist/cjs/Toggle/Toggle.tailwind.d.ts +5 -0
- package/dist/cjs/Toggle/Toggle.tailwind.js +84 -0
- package/dist/cjs/Toggle/index.d.ts +1 -0
- package/dist/cjs/Toggle/index.js +16 -0
- package/dist/cjs/Tooltip/OverflowTooltipWrapper.d.ts +10 -0
- package/dist/cjs/Tooltip/OverflowTooltipWrapper.js +51 -0
- package/dist/cjs/Tooltip/Tooltip.d.ts +11 -0
- package/dist/cjs/Tooltip/Tooltip.js +39 -0
- package/dist/cjs/Tooltip/Tooltip.tailwind.d.ts +5 -0
- package/dist/cjs/Tooltip/Tooltip.tailwind.js +47 -0
- package/dist/cjs/Tooltip/TooltipWrapper.d.ts +19 -0
- package/dist/cjs/Tooltip/TooltipWrapper.js +87 -0
- package/dist/cjs/Tooltip/index.d.ts +3 -0
- package/dist/cjs/Tooltip/index.js +38 -0
- package/dist/cjs/Tooltip/types.d.ts +65 -0
- package/dist/cjs/Tooltip/types.js +5 -0
- package/dist/cjs/Tooltip/utils.d.ts +1 -0
- package/dist/cjs/Tooltip/utils.js +9 -0
- package/dist/cjs/Typography/Typography.tailwind.d.ts +5 -0
- package/dist/cjs/Typography/Typography.tailwind.js +170 -0
- package/dist/cjs/UserContent/UserContent.d.ts +13 -0
- package/dist/cjs/UserContent/UserContent.js +30 -0
- package/dist/cjs/UserContent/UserContent.tailwind.d.ts +5 -0
- package/dist/cjs/UserContent/UserContent.tailwind.js +141 -0
- package/dist/cjs/UserContent/index.d.ts +1 -0
- package/dist/cjs/UserContent/index.js +16 -0
- package/dist/cjs/index.d.ts +54 -0
- package/dist/cjs/index.js +640 -0
- package/dist/cjs/styles/base.tailwind.d.ts +5 -0
- package/dist/cjs/styles/base.tailwind.js +46 -0
- package/dist/cjs/styles/brandColors.d.ts +42 -0
- package/dist/cjs/styles/brandColors.js +48 -0
- package/dist/cjs/styles/colors.d.ts +110 -0
- package/dist/cjs/styles/colors.js +116 -0
- package/dist/cjs/styles/disabledColor.js +14 -0
- package/dist/cjs/styles/helpers/icons.d.ts +15 -0
- package/dist/cjs/styles/helpers/icons.js +39 -0
- package/dist/cjs/styles/helpers/makePurgeCssExtractor.d.ts +7 -0
- package/dist/cjs/styles/helpers/makePurgeCssExtractor.js +50 -0
- package/dist/cjs/styles/helpers/makeTailwindPrefixer.d.ts +6 -0
- package/dist/cjs/styles/helpers/makeTailwindPrefixer.js +36 -0
- package/dist/cjs/styles/helpers/prefixTailwindClassName.d.ts +7 -0
- package/dist/cjs/styles/helpers/prefixTailwindClassName.js +29 -0
- package/dist/cjs/styles/helpers/satellitePrefixer.js +8 -0
- package/dist/cjs/styles/rgba.js +15 -0
- package/dist/cjs/styles/tailwind.config.d.ts +2 -0
- package/dist/cjs/styles/tailwind.config.js +146 -0
- package/dist/cjs/styles/zIndexes.d.ts +8 -0
- package/dist/cjs/styles/zIndexes.js +15 -0
- package/dist/cjs/types.d.ts +24 -0
- package/dist/cjs/types.js +5 -0
- package/dist/cjs/utilities/overlay.tailwind.d.ts +5 -0
- package/dist/cjs/utilities/overlay.tailwind.js +107 -0
- package/dist/cjs/utilities/utilities.tailwind.d.ts +5 -0
- package/dist/cjs/utilities/utilities.tailwind.js +27 -0
- package/dist/cjs/utils/NumberUnion.d.ts +5 -0
- package/dist/cjs/utils/NumberUnion.js +5 -0
- package/dist/cjs/utils/clamp.d.ts +1 -0
- package/dist/cjs/utils/clamp.js +9 -0
- package/dist/cjs/utils/event-polyfill.js +25 -0
- package/dist/cjs/utils/formatters.d.ts +25 -0
- package/dist/cjs/utils/formatters.js +44 -0
- package/dist/cjs/utils/genericChangeHandler.d.ts +5 -0
- package/dist/cjs/utils/genericChangeHandler.js +24 -0
- package/dist/cjs/utils/getTextFromReactNode.d.ts +4 -0
- package/dist/cjs/utils/getTextFromReactNode.js +20 -0
- package/dist/cjs/utils/hashCode.d.ts +1 -0
- package/dist/cjs/utils/hashCode.js +20 -0
- package/dist/cjs/utils/index.d.ts +7 -0
- package/dist/cjs/utils/index.js +54 -0
- package/dist/cjs/utils/isCssPropertySupported.d.ts +1 -0
- package/dist/cjs/utils/isCssPropertySupported.js +14 -0
- package/dist/cjs/utils/isNil.d.ts +18 -0
- package/dist/cjs/utils/isNil.js +26 -0
- package/dist/cjs/utils/isReactText.d.ts +2 -0
- package/dist/cjs/utils/isReactText.js +9 -0
- package/dist/cjs/utils/isRenderedChild.d.ts +7 -0
- package/dist/cjs/utils/isRenderedChild.js +14 -0
- package/dist/cjs/utils/matchLocation.d.ts +2 -0
- package/dist/cjs/utils/matchLocation.js +10 -0
- package/dist/cjs/utils/onlyText.d.ts +2 -0
- package/dist/cjs/utils/onlyText.js +38 -0
- package/dist/cjs/utils/parseUrl.d.ts +10 -0
- package/dist/cjs/utils/parseUrl.js +20 -0
- package/dist/cjs/utils/pluralize.d.ts +6 -0
- package/dist/cjs/utils/pluralize.js +21 -0
- package/dist/cjs/utils/prefersReducedMotion.d.ts +6 -0
- package/dist/cjs/utils/prefersReducedMotion.js +13 -0
- package/dist/cjs/utils/range.d.ts +1 -0
- package/dist/cjs/utils/range.js +12 -0
- package/dist/cjs/utils/sortObjectAlphabetically.d.ts +1 -0
- package/dist/cjs/utils/sortObjectAlphabetically.js +18 -0
- package/dist/cjs/utils/toSentenceCase.d.ts +2 -0
- package/dist/cjs/utils/toSentenceCase.js +14 -0
- package/dist/cjs/utils/uniqBy.d.ts +1 -0
- package/dist/cjs/utils/uniqBy.js +18 -0
- package/dist/cjs/utils/uniqueId.d.ts +1 -0
- package/dist/cjs/utils/uniqueId.js +12 -0
- package/dist/cjs/utils/useForwardedRef.d.ts +2 -0
- package/dist/cjs/utils/useForwardedRef.js +23 -0
- package/dist/cjs/utils/useLinkProps.d.ts +6 -0
- package/dist/cjs/utils/useLinkProps.js +51 -0
- package/dist/cjs/utils/useTriggerInputChange.d.ts +8 -0
- package/dist/cjs/utils/useTriggerInputChange.js +26 -0
- package/dist/esm/AnnouncementBadge/AnnouncementBadge.d.ts +25 -0
- package/dist/esm/AnnouncementBadge/AnnouncementBadge.js +49 -0
- package/dist/esm/AnnouncementBadge/index.d.ts +1 -0
- package/dist/esm/AnnouncementBadge/index.js +1 -0
- package/dist/esm/AutoComplete/AutoComplete.d.ts +8 -0
- package/dist/esm/AutoComplete/AutoComplete.js +428 -0
- package/dist/esm/AutoComplete/AutoComplete.tailwind.d.ts +5 -0
- package/dist/esm/AutoComplete/AutoComplete.tailwind.js +97 -0
- package/dist/esm/AutoComplete/components/AutoCompleteContext.d.ts +10 -0
- package/dist/esm/AutoComplete/components/AutoCompleteContext.js +23 -0
- package/dist/esm/AutoComplete/components/AutoCompleteEmptyState.d.ts +12 -0
- package/dist/esm/AutoComplete/components/AutoCompleteEmptyState.js +28 -0
- package/dist/esm/AutoComplete/components/DefaultOptionItem.d.ts +6 -0
- package/dist/esm/AutoComplete/components/DefaultOptionItem.js +35 -0
- package/dist/esm/AutoComplete/index.d.ts +5 -0
- package/dist/esm/AutoComplete/index.js +5 -0
- package/dist/esm/AutoComplete/types.d.ts +95 -0
- package/dist/esm/AutoComplete/types.js +1 -0
- package/dist/esm/AutoComplete/utils.d.ts +8 -0
- package/dist/esm/AutoComplete/utils.js +71 -0
- package/dist/esm/Avatars/ApplicationAvatar.d.ts +16 -0
- package/dist/esm/Avatars/ApplicationAvatar.js +30 -0
- package/dist/esm/Avatars/UserAvatar.d.ts +23 -0
- package/dist/esm/Avatars/UserAvatar.js +52 -0
- package/dist/esm/Avatars/index.d.ts +2 -0
- package/dist/esm/Avatars/index.js +2 -0
- package/dist/esm/Avatars/types.d.ts +17 -0
- package/dist/esm/Avatars/types.js +1 -0
- package/dist/esm/Avatars/utils.d.ts +6 -0
- package/dist/esm/Avatars/utils.js +48 -0
- package/dist/esm/Badge/Badge.d.ts +24 -0
- package/dist/esm/Badge/Badge.js +62 -0
- package/dist/esm/Badge/index.d.ts +1 -0
- package/dist/esm/Badge/index.js +1 -0
- package/dist/esm/Banners/Alert/Alert.d.ts +33 -0
- package/dist/esm/Banners/Alert/Alert.js +87 -0
- package/dist/esm/Banners/Alert/index.d.ts +1 -0
- package/dist/esm/Banners/Alert/index.js +1 -0
- package/dist/esm/Banners/Promote/Promote.d.ts +28 -0
- package/dist/esm/Banners/Promote/Promote.js +73 -0
- package/dist/esm/Banners/Promote/index.d.ts +1 -0
- package/dist/esm/Banners/Promote/index.js +1 -0
- package/dist/esm/Banners/SystemNotification/SystemNotification.d.ts +12 -0
- package/dist/esm/Banners/SystemNotification/SystemNotification.js +27 -0
- package/dist/esm/Banners/SystemNotification/index.d.ts +1 -0
- package/dist/esm/Banners/SystemNotification/index.js +1 -0
- package/dist/esm/Banners/index.d.ts +3 -0
- package/dist/esm/Banners/index.js +3 -0
- package/dist/esm/Button/Button.d.ts +9 -0
- package/dist/esm/Button/Button.js +18 -0
- package/dist/esm/Button/Button.tailwind.d.ts +5 -0
- package/dist/esm/Button/Button.tailwind.js +155 -0
- package/dist/esm/Button/ButtonGroup.d.ts +17 -0
- package/dist/esm/Button/ButtonGroup.js +20 -0
- package/dist/esm/Button/IconButton.d.ts +9 -0
- package/dist/esm/Button/IconButton.js +18 -0
- package/dist/esm/Button/PolymorphicButton.d.ts +12 -0
- package/dist/esm/Button/PolymorphicButton.js +69 -0
- package/dist/esm/Button/PolymorphicIconButton.d.ts +29 -0
- package/dist/esm/Button/PolymorphicIconButton.js +81 -0
- package/dist/esm/Button/index.d.ts +4 -0
- package/dist/esm/Button/index.js +4 -0
- package/dist/esm/Button/styles.d.ts +5 -0
- package/dist/esm/Button/styles.js +30 -0
- package/dist/esm/Button/types.d.ts +33 -0
- package/dist/esm/Button/types.js +5 -0
- package/dist/esm/Card/Card.d.ts +36 -0
- package/dist/esm/Card/Card.js +40 -0
- package/dist/esm/Card/Card.tailwind.d.ts +5 -0
- package/dist/esm/Card/Card.tailwind.js +35 -0
- package/dist/esm/Card/components/CardHeader.d.ts +5 -0
- package/dist/esm/Card/components/CardHeader.js +19 -0
- package/dist/esm/Card/components/CardTitle.d.ts +7 -0
- package/dist/esm/Card/components/CardTitle.js +21 -0
- package/dist/esm/Card/index.d.ts +3 -0
- package/dist/esm/Card/index.js +3 -0
- package/dist/esm/Checkbox/Checkbox.d.ts +23 -0
- package/dist/esm/Checkbox/Checkbox.js +90 -0
- package/dist/esm/Checkbox/Checkbox.tailwind.d.ts +5 -0
- package/dist/esm/Checkbox/Checkbox.tailwind.js +70 -0
- package/dist/esm/Checkbox/index.d.ts +1 -0
- package/dist/esm/Checkbox/index.js +1 -0
- package/dist/esm/ClickAwayContainer/ClickAwayContainer.d.ts +27 -0
- package/dist/esm/ClickAwayContainer/ClickAwayContainer.js +75 -0
- package/dist/esm/ClickAwayContainer/index.d.ts +1 -0
- package/dist/esm/ClickAwayContainer/index.js +1 -0
- package/dist/esm/DatePicker/DatePicker/DatePicker.d.ts +39 -0
- package/dist/esm/DatePicker/DatePicker/DatePicker.js +163 -0
- package/dist/esm/DatePicker/DatePicker/datePickerReducer.d.ts +29 -0
- package/dist/esm/DatePicker/DatePicker/datePickerReducer.js +43 -0
- package/dist/esm/DatePicker/DatePicker/index.d.ts +2 -0
- package/dist/esm/DatePicker/DatePicker/index.js +2 -0
- package/dist/esm/DatePicker/DatePicker.tailwind.d.ts +5 -0
- package/dist/esm/DatePicker/DatePicker.tailwind.js +182 -0
- package/dist/esm/DatePicker/DateRangePicker/DateRangePicker.d.ts +40 -0
- package/dist/esm/DatePicker/DateRangePicker/DateRangePicker.js +256 -0
- package/dist/esm/DatePicker/DateRangePicker/DateRangePickerDisplay.d.ts +13 -0
- package/dist/esm/DatePicker/DateRangePicker/DateRangePickerDisplay.js +32 -0
- package/dist/esm/DatePicker/DateRangePicker/dateRangePickerReducer.d.ts +54 -0
- package/dist/esm/DatePicker/DateRangePicker/dateRangePickerReducer.js +92 -0
- package/dist/esm/DatePicker/DateRangePicker/dateRangePickerTimeRange.d.ts +16 -0
- package/dist/esm/DatePicker/DateRangePicker/dateRangePickerTimeRange.js +9 -0
- package/dist/esm/DatePicker/DateRangePicker/index.d.ts +4 -0
- package/dist/esm/DatePicker/DateRangePicker/index.js +3 -0
- package/dist/esm/DatePicker/components/Calendar.d.ts +17 -0
- package/dist/esm/DatePicker/components/Calendar.js +47 -0
- package/dist/esm/DatePicker/components/Display.d.ts +9 -0
- package/dist/esm/DatePicker/components/Display.js +16 -0
- package/dist/esm/DatePicker/components/Footer.d.ts +5 -0
- package/dist/esm/DatePicker/components/Footer.js +11 -0
- package/dist/esm/DatePicker/components/FooterActions.d.ts +11 -0
- package/dist/esm/DatePicker/components/FooterActions.js +25 -0
- package/dist/esm/DatePicker/components/Modal.d.ts +15 -0
- package/dist/esm/DatePicker/components/Modal.js +59 -0
- package/dist/esm/DatePicker/components/NavBar.d.ts +9 -0
- package/dist/esm/DatePicker/components/NavBar.js +116 -0
- package/dist/esm/DatePicker/components/SidePanel.d.ts +5 -0
- package/dist/esm/DatePicker/components/SidePanel.js +14 -0
- package/dist/esm/DatePicker/components/index.d.ts +7 -0
- package/dist/esm/DatePicker/components/index.js +6 -0
- package/dist/esm/DatePicker/index.d.ts +2 -0
- package/dist/esm/DatePicker/index.js +2 -0
- package/dist/esm/DatePicker/types.d.ts +26 -0
- package/dist/esm/DatePicker/types.js +1 -0
- package/dist/esm/DatePicker/utils.d.ts +3 -0
- package/dist/esm/DatePicker/utils.js +12 -0
- package/dist/esm/Dropdown/Dropdown.d.ts +38 -0
- package/dist/esm/Dropdown/Dropdown.js +118 -0
- package/dist/esm/Dropdown/DropdownButton.d.ts +13 -0
- package/dist/esm/Dropdown/DropdownButton.js +42 -0
- package/dist/esm/Dropdown/DropdownContext.d.ts +6 -0
- package/dist/esm/Dropdown/DropdownContext.js +9 -0
- package/dist/esm/Dropdown/components/DropdownButtonItem.d.ts +14 -0
- package/dist/esm/Dropdown/components/DropdownButtonItem.js +40 -0
- package/dist/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.d.ts +10 -0
- package/dist/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItem.js +53 -0
- package/dist/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.d.ts +8 -0
- package/dist/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroup.js +15 -0
- package/dist/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.d.ts +8 -0
- package/dist/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsGroupContext.js +11 -0
- package/dist/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.d.ts +10 -0
- package/dist/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsMultiGroup.js +30 -0
- package/dist/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.d.ts +10 -0
- package/dist/esm/Dropdown/components/DropdownCollapsibleItem/DropdownCollapsibleItemsSingleGroup.js +27 -0
- package/dist/esm/Dropdown/components/DropdownCollapsibleItem/index.d.ts +5 -0
- package/dist/esm/Dropdown/components/DropdownCollapsibleItem/index.js +5 -0
- package/dist/esm/Dropdown/components/DropdownDivider.d.ts +3 -0
- package/dist/esm/Dropdown/components/DropdownDivider.js +11 -0
- package/dist/esm/Dropdown/components/DropdownFooterItem.d.ts +9 -0
- package/dist/esm/Dropdown/components/DropdownFooterItem.js +22 -0
- package/dist/esm/Dropdown/components/DropdownLinkItem.d.ts +10 -0
- package/dist/esm/Dropdown/components/DropdownLinkItem.js +48 -0
- package/dist/esm/Dropdown/components/DropdownRadioItem.d.ts +8 -0
- package/dist/esm/Dropdown/components/DropdownRadioItem.js +40 -0
- package/dist/esm/Dropdown/components/DropdownTitle.d.ts +6 -0
- package/dist/esm/Dropdown/components/DropdownTitle.js +18 -0
- package/dist/esm/Dropdown/components/DropdownToggleItem.d.ts +11 -0
- package/dist/esm/Dropdown/components/DropdownToggleItem.js +43 -0
- package/dist/esm/Dropdown/index.d.ts +12 -0
- package/dist/esm/Dropdown/index.js +12 -0
- package/dist/esm/Dropdown/useDropdownItemProps.d.ts +20 -0
- package/dist/esm/Dropdown/useDropdownItemProps.js +30 -0
- package/dist/esm/Dropzone/Dropzone.d.ts +25 -0
- package/dist/esm/Dropzone/Dropzone.js +157 -0
- package/dist/esm/Dropzone/index.d.ts +1 -0
- package/dist/esm/Dropzone/index.js +1 -0
- package/dist/esm/EmptyState/EmptyState.d.ts +8 -0
- package/dist/esm/EmptyState/EmptyState.js +92 -0
- package/dist/esm/EmptyState/EmptyState.tailwind.d.ts +5 -0
- package/dist/esm/EmptyState/EmptyState.tailwind.js +14 -0
- package/dist/esm/EmptyState/index.d.ts +2 -0
- package/dist/esm/EmptyState/index.js +2 -0
- package/dist/esm/EmptyState/types.d.ts +50 -0
- package/dist/esm/EmptyState/types.js +1 -0
- package/dist/esm/Field/Field.d.ts +24 -0
- package/dist/esm/Field/Field.js +68 -0
- package/dist/esm/Field/FieldContext.d.ts +16 -0
- package/dist/esm/Field/FieldContext.js +8 -0
- package/dist/esm/Field/index.d.ts +3 -0
- package/dist/esm/Field/index.js +3 -0
- package/dist/esm/Field/useField.d.ts +2 -0
- package/dist/esm/Field/useField.js +5 -0
- package/dist/esm/FlexGrid/FlexGrid.d.ts +44 -0
- package/dist/esm/FlexGrid/FlexGrid.js +67 -0
- package/dist/esm/FlexGrid/FlexGrid.tailwind.d.ts +8 -0
- package/dist/esm/FlexGrid/FlexGrid.tailwind.js +69 -0
- package/dist/esm/FlexGrid/index.d.ts +1 -0
- package/dist/esm/FlexGrid/index.js +1 -0
- package/dist/esm/HelpUnderline/HelpUnderline.d.ts +15 -0
- package/dist/esm/HelpUnderline/HelpUnderline.js +32 -0
- package/dist/esm/HelpUnderline/HelpUnderline.tailwind.d.ts +5 -0
- package/dist/esm/HelpUnderline/HelpUnderline.tailwind.js +20 -0
- package/dist/esm/HelpUnderline/index.d.ts +1 -0
- package/dist/esm/HelpUnderline/index.js +1 -0
- package/dist/esm/Icons/AlgoliaRecommendIcon.d.ts +3 -0
- package/dist/esm/Icons/AlgoliaRecommendIcon.js +40 -0
- package/dist/esm/Icons/AlgoliaSearchIcon.d.ts +3 -0
- package/dist/esm/Icons/AlgoliaSearchIcon.js +43 -0
- package/dist/esm/Icons/BulbIcon.d.ts +3 -0
- package/dist/esm/Icons/BulbIcon.js +30 -0
- package/dist/esm/Icons/ContextIcon.d.ts +3 -0
- package/dist/esm/Icons/ContextIcon.js +45 -0
- package/dist/esm/Icons/CrawlerIcon.d.ts +3 -0
- package/dist/esm/Icons/CrawlerIcon.js +34 -0
- package/dist/esm/Icons/DragHandleIcon.d.ts +3 -0
- package/dist/esm/Icons/DragHandleIcon.js +52 -0
- package/dist/esm/Icons/NeuralSearchIcon.d.ts +3 -0
- package/dist/esm/Icons/NeuralSearchIcon.js +27 -0
- package/dist/esm/Icons/NoFiltersIcon.d.ts +3 -0
- package/dist/esm/Icons/NoFiltersIcon.js +53 -0
- package/dist/esm/Icons/PinIcon.d.ts +3 -0
- package/dist/esm/Icons/PinIcon.js +54 -0
- package/dist/esm/Icons/QueryBreakdownIcon.d.ts +3 -0
- package/dist/esm/Icons/QueryBreakdownIcon.js +33 -0
- package/dist/esm/Icons/RocketIcon.d.ts +3 -0
- package/dist/esm/Icons/RocketIcon.js +29 -0
- package/dist/esm/Icons/SettingsCategoryPagesIcon.d.ts +3 -0
- package/dist/esm/Icons/SettingsCategoryPagesIcon.js +29 -0
- package/dist/esm/Icons/SettingsConsequencesIcon.d.ts +3 -0
- package/dist/esm/Icons/SettingsConsequencesIcon.js +64 -0
- package/dist/esm/Icons/TestingIcon.d.ts +3 -0
- package/dist/esm/Icons/TestingIcon.js +29 -0
- package/dist/esm/Icons/UnpinIcon.d.ts +3 -0
- package/dist/esm/Icons/UnpinIcon.js +54 -0
- package/dist/esm/Icons/WorkspaceSwitcherIcon.d.ts +3 -0
- package/dist/esm/Icons/WorkspaceSwitcherIcon.js +27 -0
- package/dist/esm/Icons/index.d.ts +20 -0
- package/dist/esm/Icons/index.js +22 -0
- package/dist/esm/Icons/utils.d.ts +1 -0
- package/dist/esm/Icons/utils.js +4 -0
- package/dist/esm/Input/Input.d.ts +27 -0
- package/dist/esm/Input/Input.js +206 -0
- package/dist/esm/Input/Input.tailwind.d.ts +5 -0
- package/dist/esm/Input/Input.tailwind.js +124 -0
- package/dist/esm/Input/index.d.ts +1 -0
- package/dist/esm/Input/index.js +1 -0
- package/dist/esm/Insert/Insert.d.ts +19 -0
- package/dist/esm/Insert/Insert.js +44 -0
- package/dist/esm/Insert/index.d.ts +1 -0
- package/dist/esm/Insert/index.js +1 -0
- package/dist/esm/InstantSearch/InstantSearch.tailwind.d.ts +5 -0
- package/dist/esm/InstantSearch/InstantSearch.tailwind.js +377 -0
- package/dist/esm/KeyboardKey/KeyboardKey.d.ts +12 -0
- package/dist/esm/KeyboardKey/KeyboardKey.js +34 -0
- package/dist/esm/KeyboardKey/KeyboardKey.tailwind.d.ts +5 -0
- package/dist/esm/KeyboardKey/KeyboardKey.tailwind.js +28 -0
- package/dist/esm/KeyboardKey/index.d.ts +1 -0
- package/dist/esm/KeyboardKey/index.js +1 -0
- package/dist/esm/Link/BaseLink.d.ts +7 -0
- package/dist/esm/Link/BaseLink.js +21 -0
- package/dist/esm/Link/ButtonLink.d.ts +13 -0
- package/dist/esm/Link/ButtonLink.js +34 -0
- package/dist/esm/Link/IconButtonLink.d.ts +13 -0
- package/dist/esm/Link/IconButtonLink.js +28 -0
- package/dist/esm/Link/Link.d.ts +17 -0
- package/dist/esm/Link/Link.js +50 -0
- package/dist/esm/Link/index.d.ts +4 -0
- package/dist/esm/Link/index.js +4 -0
- package/dist/esm/Medallion/Medallion.d.ts +16 -0
- package/dist/esm/Medallion/Medallion.js +37 -0
- package/dist/esm/Medallion/Medallion.tailwind.d.ts +5 -0
- package/dist/esm/Medallion/Medallion.tailwind.js +30 -0
- package/dist/esm/Medallion/index.d.ts +2 -0
- package/dist/esm/Medallion/index.js +2 -0
- package/dist/esm/Medallion/types.d.ts +2 -0
- package/dist/esm/Medallion/types.js +1 -0
- package/dist/esm/MenuButton/MenuButton.d.ts +26 -0
- package/dist/esm/MenuButton/MenuButton.js +34 -0
- package/dist/esm/MenuButton/components/Content.d.ts +4 -0
- package/dist/esm/MenuButton/components/Content.js +35 -0
- package/dist/esm/MenuButton/components/CustomTrigger.d.ts +4 -0
- package/dist/esm/MenuButton/components/CustomTrigger.js +13 -0
- package/dist/esm/MenuButton/components/DefaultTrigger.d.ts +4 -0
- package/dist/esm/MenuButton/components/DefaultTrigger.js +24 -0
- package/dist/esm/MenuButton/components/Divider.d.ts +2 -0
- package/dist/esm/MenuButton/components/Divider.js +10 -0
- package/dist/esm/MenuButton/components/Label.d.ts +3 -0
- package/dist/esm/MenuButton/components/Label.js +21 -0
- package/dist/esm/MenuButton/components/collapsible/CollapsibleItem.d.ts +8 -0
- package/dist/esm/MenuButton/components/collapsible/CollapsibleItem.js +54 -0
- package/dist/esm/MenuButton/components/collapsible/CollapsibleItemsGroup.d.ts +6 -0
- package/dist/esm/MenuButton/components/collapsible/CollapsibleItemsGroup.js +14 -0
- package/dist/esm/MenuButton/components/collapsible/CollapsibleItemsGroupContext.d.ts +7 -0
- package/dist/esm/MenuButton/components/collapsible/CollapsibleItemsGroupContext.js +9 -0
- package/dist/esm/MenuButton/components/collapsible/CollapsibleItemsMultipleGroup.d.ts +8 -0
- package/dist/esm/MenuButton/components/collapsible/CollapsibleItemsMultipleGroup.js +29 -0
- package/dist/esm/MenuButton/components/collapsible/CollapsibleItemsSingleGroup.d.ts +8 -0
- package/dist/esm/MenuButton/components/collapsible/CollapsibleItemsSingleGroup.js +26 -0
- package/dist/esm/MenuButton/components/collapsible/index.d.ts +5 -0
- package/dist/esm/MenuButton/components/collapsible/index.js +5 -0
- package/dist/esm/MenuButton/components/items/Item.d.ts +14 -0
- package/dist/esm/MenuButton/components/items/Item.js +33 -0
- package/dist/esm/MenuButton/components/items/LinkItem.d.ts +16 -0
- package/dist/esm/MenuButton/components/items/LinkItem.js +64 -0
- package/dist/esm/MenuButton/components/items/RadioItem.d.ts +5 -0
- package/dist/esm/MenuButton/components/items/RadioItem.js +40 -0
- package/dist/esm/MenuButton/components/items/ToggleItem.d.ts +7 -0
- package/dist/esm/MenuButton/components/items/ToggleItem.js +68 -0
- package/dist/esm/MenuButton/components/items/index.d.ts +4 -0
- package/dist/esm/MenuButton/components/items/index.js +4 -0
- package/dist/esm/MenuButton/index.d.ts +1 -0
- package/dist/esm/MenuButton/index.js +1 -0
- package/dist/esm/MenuButton/useMenuItemProps.d.ts +10 -0
- package/dist/esm/MenuButton/useMenuItemProps.js +11 -0
- package/dist/esm/Modal/Modal.d.ts +62 -0
- package/dist/esm/Modal/Modal.js +130 -0
- package/dist/esm/Modal/Modal.tailwind.d.ts +5 -0
- package/dist/esm/Modal/Modal.tailwind.js +79 -0
- package/dist/esm/Modal/components/ModalFooter.d.ts +5 -0
- package/dist/esm/Modal/components/ModalFooter.js +24 -0
- package/dist/esm/Modal/components/ModalSection.d.ts +9 -0
- package/dist/esm/Modal/components/ModalSection.js +15 -0
- package/dist/esm/Modal/index.d.ts +3 -0
- package/dist/esm/Modal/index.js +3 -0
- package/dist/esm/Pagination/CompactPagination/CompactPagination.d.ts +36 -0
- package/dist/esm/Pagination/CompactPagination/CompactPagination.js +81 -0
- package/dist/esm/Pagination/CompactPagination/index.d.ts +1 -0
- package/dist/esm/Pagination/CompactPagination/index.js +1 -0
- package/dist/esm/Pagination/DotPagination/DotPagination.d.ts +19 -0
- package/dist/esm/Pagination/DotPagination/DotPagination.js +43 -0
- package/dist/esm/Pagination/DotPagination/index.d.ts +1 -0
- package/dist/esm/Pagination/DotPagination/index.js +1 -0
- package/dist/esm/Pagination/Pagination/Pagination.d.ts +19 -0
- package/dist/esm/Pagination/Pagination/Pagination.js +111 -0
- package/dist/esm/Pagination/Pagination/index.d.ts +1 -0
- package/dist/esm/Pagination/Pagination/index.js +1 -0
- package/dist/esm/Pagination/index.d.ts +3 -0
- package/dist/esm/Pagination/index.js +3 -0
- package/dist/esm/Popover/Popover.d.ts +9 -0
- package/dist/esm/Popover/Popover.js +134 -0
- package/dist/esm/Popover/index.d.ts +2 -0
- package/dist/esm/Popover/index.js +2 -0
- package/dist/esm/Popover/types.d.ts +74 -0
- package/dist/esm/Popover/types.js +1 -0
- package/dist/esm/ProgressBar/ProgressBar.d.ts +15 -0
- package/dist/esm/ProgressBar/ProgressBar.js +46 -0
- package/dist/esm/ProgressBar/ProgressBar.tailwind.d.ts +5 -0
- package/dist/esm/ProgressBar/ProgressBar.tailwind.js +25 -0
- package/dist/esm/ProgressBar/index.d.ts +1 -0
- package/dist/esm/ProgressBar/index.js +1 -0
- package/dist/esm/ProgressSpinner/ProgressSpinner.d.ts +13 -0
- package/dist/esm/ProgressSpinner/ProgressSpinner.js +53 -0
- package/dist/esm/ProgressSpinner/ProgressSpinner.tailwind.d.ts +5 -0
- package/dist/esm/ProgressSpinner/ProgressSpinner.tailwind.js +43 -0
- package/dist/esm/ProgressSpinner/index.d.ts +1 -0
- package/dist/esm/ProgressSpinner/index.js +1 -0
- package/dist/esm/RadioGroup/RadioButton.d.ts +3 -0
- package/dist/esm/RadioGroup/RadioButton.js +21 -0
- package/dist/esm/RadioGroup/RadioButton.tailwind.d.ts +5 -0
- package/dist/esm/RadioGroup/RadioButton.tailwind.js +62 -0
- package/dist/esm/RadioGroup/RadioGroup.d.ts +31 -0
- package/dist/esm/RadioGroup/RadioGroup.js +86 -0
- package/dist/esm/RadioGroup/RadiogroupContext.d.ts +11 -0
- package/dist/esm/RadioGroup/RadiogroupContext.js +9 -0
- package/dist/esm/RadioGroup/index.d.ts +2 -0
- package/dist/esm/RadioGroup/index.js +2 -0
- package/dist/esm/RangeSlider/RangeSlider.d.ts +36 -0
- package/dist/esm/RangeSlider/RangeSlider.js +98 -0
- package/dist/esm/RangeSlider/index.d.ts +1 -0
- package/dist/esm/RangeSlider/index.js +1 -0
- package/dist/esm/Satellite/Satellite.d.ts +10 -0
- package/dist/esm/Satellite/Satellite.js +53 -0
- package/dist/esm/Satellite/SatelliteContext.d.ts +10 -0
- package/dist/esm/Satellite/SatelliteContext.js +15 -0
- package/dist/esm/Satellite/SatelliteRouter.d.ts +21 -0
- package/dist/esm/Satellite/SatelliteRouter.js +40 -0
- package/dist/esm/Satellite/index.d.ts +5 -0
- package/dist/esm/Satellite/index.js +5 -0
- package/dist/esm/Satellite/locale.d.ts +37 -0
- package/dist/esm/Satellite/locale.js +7 -0
- package/dist/esm/Satellite/useCreatePortal.d.ts +4 -0
- package/dist/esm/Satellite/useCreatePortal.js +17 -0
- package/dist/esm/ScrollIndicator/ScrollIndicator.d.ts +18 -0
- package/dist/esm/ScrollIndicator/ScrollIndicator.js +84 -0
- package/dist/esm/ScrollIndicator/ScrollIndicator.tailwind.d.ts +5 -0
- package/dist/esm/ScrollIndicator/ScrollIndicator.tailwind.js +50 -0
- package/dist/esm/ScrollIndicator/index.d.ts +1 -0
- package/dist/esm/ScrollIndicator/index.js +1 -0
- package/dist/esm/Select/Select.d.ts +11 -0
- package/dist/esm/Select/Select.js +33 -0
- package/dist/esm/Select/Select.tailwind.d.ts +5 -0
- package/dist/esm/Select/Select.tailwind.js +77 -0
- package/dist/esm/Select/index.d.ts +1 -0
- package/dist/esm/Select/index.js +1 -0
- package/dist/esm/Separator/Separator.d.ts +13 -0
- package/dist/esm/Separator/Separator.js +33 -0
- package/dist/esm/Separator/Separator.tailwind.d.ts +5 -0
- package/dist/esm/Separator/Separator.tailwind.js +53 -0
- package/dist/esm/Separator/index.d.ts +1 -0
- package/dist/esm/Separator/index.js +1 -0
- package/dist/esm/Sidebar/Sidebar.d.ts +41 -0
- package/dist/esm/Sidebar/Sidebar.js +60 -0
- package/dist/esm/Sidebar/SidebarButtonLink.d.ts +20 -0
- package/dist/esm/Sidebar/SidebarButtonLink.js +78 -0
- package/dist/esm/Sidebar/SidebarContext.d.ts +9 -0
- package/dist/esm/Sidebar/SidebarContext.js +9 -0
- package/dist/esm/Sidebar/SidebarHeader.d.ts +7 -0
- package/dist/esm/Sidebar/SidebarHeader.js +13 -0
- package/dist/esm/Sidebar/SidebarHeading.d.ts +8 -0
- package/dist/esm/Sidebar/SidebarHeading.js +18 -0
- package/dist/esm/Sidebar/SidebarLink.d.ts +9 -0
- package/dist/esm/Sidebar/SidebarLink.js +44 -0
- package/dist/esm/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.d.ts +9 -0
- package/dist/esm/Sidebar/SidebarLinksGroup/ActiveLinkIndicator.js +30 -0
- package/dist/esm/Sidebar/SidebarLinksGroup/SidebarGroupLink.d.ts +7 -0
- package/dist/esm/Sidebar/SidebarLinksGroup/SidebarGroupLink.js +30 -0
- package/dist/esm/Sidebar/SidebarLinksGroup/SidebarLinksGroup.d.ts +24 -0
- package/dist/esm/Sidebar/SidebarLinksGroup/SidebarLinksGroup.js +91 -0
- package/dist/esm/Sidebar/SidebarLinksGroup/index.d.ts +2 -0
- package/dist/esm/Sidebar/SidebarLinksGroup/index.js +2 -0
- package/dist/esm/Sidebar/SidebarLinksGroup/types.d.ts +10 -0
- package/dist/esm/Sidebar/SidebarLinksGroup/types.js +1 -0
- package/dist/esm/Sidebar/SidebarNav.d.ts +11 -0
- package/dist/esm/Sidebar/SidebarNav.js +29 -0
- package/dist/esm/Sidebar/index.d.ts +9 -0
- package/dist/esm/Sidebar/index.js +9 -0
- package/dist/esm/Sidebar/types.d.ts +6 -0
- package/dist/esm/Sidebar/types.js +1 -0
- package/dist/esm/Stepper/Step.d.ts +6 -0
- package/dist/esm/Stepper/Step.js +109 -0
- package/dist/esm/Stepper/Stepper.d.ts +41 -0
- package/dist/esm/Stepper/Stepper.js +138 -0
- package/dist/esm/Stepper/StepperContext.d.ts +12 -0
- package/dist/esm/Stepper/StepperContext.js +9 -0
- package/dist/esm/Stepper/index.d.ts +3 -0
- package/dist/esm/Stepper/index.js +3 -0
- package/dist/esm/Stepper/types.d.ts +26 -0
- package/dist/esm/Stepper/types.js +1 -0
- package/dist/esm/Stepper/utils.d.ts +5 -0
- package/dist/esm/Stepper/utils.js +61 -0
- package/dist/esm/Switch/Switch.d.ts +18 -0
- package/dist/esm/Switch/Switch.js +84 -0
- package/dist/esm/Switch/Switch.tailwind.d.ts +5 -0
- package/dist/esm/Switch/Switch.tailwind.js +24 -0
- package/dist/esm/Switch/SwitchOption.d.ts +7 -0
- package/dist/esm/Switch/SwitchOption.js +38 -0
- package/dist/esm/Switch/index.d.ts +2 -0
- package/dist/esm/Switch/index.js +2 -0
- package/dist/esm/Switch/types.d.ts +7 -0
- package/dist/esm/Switch/types.js +1 -0
- package/dist/esm/Switch/utils.d.ts +6 -0
- package/dist/esm/Switch/utils.js +11 -0
- package/dist/esm/Tables/DataTable/DataTable.d.ts +55 -0
- package/dist/esm/Tables/DataTable/DataTable.js +243 -0
- package/dist/esm/Tables/DataTable/DataTable.tailwind.d.ts +5 -0
- package/dist/esm/Tables/DataTable/DataTable.tailwind.js +22 -0
- package/dist/esm/Tables/DataTable/components/Body.d.ts +14 -0
- package/dist/esm/Tables/DataTable/components/Body.js +111 -0
- package/dist/esm/Tables/DataTable/components/Footer.d.ts +7 -0
- package/dist/esm/Tables/DataTable/components/Footer.js +52 -0
- package/dist/esm/Tables/DataTable/components/Header.d.ts +9 -0
- package/dist/esm/Tables/DataTable/components/Header.js +31 -0
- package/dist/esm/Tables/DataTable/components/HeaderCell.d.ts +11 -0
- package/dist/esm/Tables/DataTable/components/HeaderCell.js +51 -0
- package/dist/esm/Tables/DataTable/components/Loader.d.ts +8 -0
- package/dist/esm/Tables/DataTable/components/Loader.js +39 -0
- package/dist/esm/Tables/DataTable/components/index.d.ts +5 -0
- package/dist/esm/Tables/DataTable/components/index.js +5 -0
- package/dist/esm/Tables/DataTable/index.d.ts +2 -0
- package/dist/esm/Tables/DataTable/index.js +2 -0
- package/dist/esm/Tables/DataTable/types.d.ts +63 -0
- package/dist/esm/Tables/DataTable/types.js +1 -0
- package/dist/esm/Tables/DataTable/utils.d.ts +4 -0
- package/dist/esm/Tables/DataTable/utils.js +13 -0
- package/dist/esm/Tables/Table/Table.d.ts +13 -0
- package/dist/esm/Tables/Table/Table.js +39 -0
- package/dist/esm/Tables/Table/Table.tailwind.d.ts +5 -0
- package/dist/esm/Tables/Table/Table.tailwind.js +38 -0
- package/dist/esm/Tables/Table/components/TableFooter.d.ts +7 -0
- package/dist/esm/Tables/Table/components/TableFooter.js +18 -0
- package/dist/esm/Tables/Table/index.d.ts +2 -0
- package/dist/esm/Tables/Table/index.js +2 -0
- package/dist/esm/Tables/index.d.ts +2 -0
- package/dist/esm/Tables/index.js +2 -0
- package/dist/esm/Tabs/ContentTabs.d.ts +3 -0
- package/dist/esm/Tabs/ContentTabs.js +53 -0
- package/dist/esm/Tabs/LinkTabs.d.ts +9 -0
- package/dist/esm/Tabs/LinkTabs.js +44 -0
- package/dist/esm/Tabs/Tabs.tailwind.d.ts +5 -0
- package/dist/esm/Tabs/Tabs.tailwind.js +71 -0
- package/dist/esm/Tabs/components/LinkTab.d.ts +8 -0
- package/dist/esm/Tabs/components/LinkTab.js +77 -0
- package/dist/esm/Tabs/index.d.ts +3 -0
- package/dist/esm/Tabs/index.js +3 -0
- package/dist/esm/Tabs/types.d.ts +34 -0
- package/dist/esm/Tabs/types.js +1 -0
- package/dist/esm/Tabs/utils.d.ts +2 -0
- package/dist/esm/Tabs/utils.js +11 -0
- package/dist/esm/Tag/Tag.d.ts +30 -0
- package/dist/esm/Tag/Tag.js +115 -0
- package/dist/esm/Tag/Tag.tailwind.d.ts +5 -0
- package/dist/esm/Tag/Tag.tailwind.js +53 -0
- package/dist/esm/Tag/index.d.ts +1 -0
- package/dist/esm/Tag/index.js +1 -0
- package/dist/esm/TextArea/TextArea.d.ts +9 -0
- package/dist/esm/TextArea/TextArea.js +25 -0
- package/dist/esm/TextArea/TextArea.tailwind.d.ts +5 -0
- package/dist/esm/TextArea/TextArea.tailwind.js +43 -0
- package/dist/esm/TextArea/index.d.ts +1 -0
- package/dist/esm/TextArea/index.js +1 -0
- package/dist/esm/TextWrap/TextWrap.d.ts +12 -0
- package/dist/esm/TextWrap/TextWrap.js +52 -0
- package/dist/esm/TextWrap/index.d.ts +1 -0
- package/dist/esm/TextWrap/index.js +1 -0
- package/dist/esm/Toast/Toast.d.ts +5 -0
- package/dist/esm/Toast/Toast.js +101 -0
- package/dist/esm/Toast/Toast.tailwind.d.ts +5 -0
- package/dist/esm/Toast/Toast.tailwind.js +33 -0
- package/dist/esm/Toast/Toasts.d.ts +20 -0
- package/dist/esm/Toast/Toasts.js +92 -0
- package/dist/esm/Toast/index.d.ts +3 -0
- package/dist/esm/Toast/index.js +3 -0
- package/dist/esm/Toast/types.d.ts +34 -0
- package/dist/esm/Toast/types.js +1 -0
- package/dist/esm/Toggle/Toggle.d.ts +12 -0
- package/dist/esm/Toggle/Toggle.js +67 -0
- package/dist/esm/Toggle/Toggle.tailwind.d.ts +5 -0
- package/dist/esm/Toggle/Toggle.tailwind.js +84 -0
- package/dist/esm/Toggle/index.d.ts +1 -0
- package/dist/esm/Toggle/index.js +1 -0
- package/dist/esm/Tooltip/OverflowTooltipWrapper.d.ts +10 -0
- package/dist/esm/Tooltip/OverflowTooltipWrapper.js +44 -0
- package/dist/esm/Tooltip/Tooltip.d.ts +11 -0
- package/dist/esm/Tooltip/Tooltip.js +32 -0
- package/dist/esm/Tooltip/Tooltip.tailwind.d.ts +5 -0
- package/dist/esm/Tooltip/Tooltip.tailwind.js +46 -0
- package/dist/esm/Tooltip/TooltipWrapper.d.ts +19 -0
- package/dist/esm/Tooltip/TooltipWrapper.js +79 -0
- package/dist/esm/Tooltip/index.d.ts +3 -0
- package/dist/esm/Tooltip/index.js +3 -0
- package/dist/esm/Tooltip/types.d.ts +65 -0
- package/dist/esm/Tooltip/types.js +1 -0
- package/dist/esm/Tooltip/utils.d.ts +1 -0
- package/dist/esm/Tooltip/utils.js +3 -0
- package/dist/esm/Typography/Typography.tailwind.d.ts +5 -0
- package/dist/esm/Typography/Typography.tailwind.js +169 -0
- package/dist/esm/UserContent/UserContent.d.ts +13 -0
- package/dist/esm/UserContent/UserContent.js +23 -0
- package/dist/esm/UserContent/UserContent.tailwind.d.ts +5 -0
- package/dist/esm/UserContent/UserContent.tailwind.js +141 -0
- package/dist/esm/UserContent/index.d.ts +1 -0
- package/dist/esm/UserContent/index.js +1 -0
- package/dist/esm/index.d.ts +54 -0
- package/dist/esm/index.js +54 -0
- package/dist/esm/styles/base.tailwind.d.ts +5 -0
- package/dist/esm/styles/base.tailwind.js +45 -0
- package/dist/esm/styles/brandColors.d.ts +42 -0
- package/dist/esm/styles/brandColors.js +46 -0
- package/dist/esm/styles/colors.d.ts +110 -0
- package/dist/esm/styles/colors.js +114 -0
- package/dist/esm/styles/disabledColor.d.ts +6 -0
- package/dist/esm/styles/disabledColor.js +14 -0
- package/dist/esm/styles/helpers/icons.d.ts +15 -0
- package/dist/esm/styles/helpers/icons.js +40 -0
- package/dist/esm/styles/helpers/makePurgeCssExtractor.d.ts +7 -0
- package/dist/esm/styles/helpers/makePurgeCssExtractor.js +49 -0
- package/dist/esm/styles/helpers/makeTailwindPrefixer.d.ts +6 -0
- package/dist/esm/styles/helpers/makeTailwindPrefixer.js +34 -0
- package/dist/esm/styles/helpers/prefixTailwindClassName.d.ts +7 -0
- package/dist/esm/styles/helpers/prefixTailwindClassName.js +27 -0
- package/dist/esm/styles/helpers/satellitePrefixer.d.ts +3 -0
- package/dist/esm/styles/helpers/satellitePrefixer.js +7 -0
- package/dist/esm/styles/rgba.d.ts +8 -0
- package/dist/esm/styles/rgba.js +14 -0
- package/dist/esm/styles/tailwind.config.d.ts +2 -0
- package/dist/esm/styles/tailwind.config.js +147 -0
- package/dist/esm/styles/zIndexes.d.ts +8 -0
- package/dist/esm/styles/zIndexes.js +13 -0
- package/dist/esm/types.d.ts +24 -0
- package/dist/esm/types.js +1 -0
- package/dist/esm/utilities/overlay.tailwind.d.ts +5 -0
- package/dist/esm/utilities/overlay.tailwind.js +106 -0
- package/dist/esm/utilities/utilities.tailwind.d.ts +5 -0
- package/dist/esm/utilities/utilities.tailwind.js +25 -0
- package/dist/esm/utils/NumberUnion.d.ts +5 -0
- package/dist/esm/utils/NumberUnion.js +1 -0
- package/dist/esm/utils/clamp.d.ts +1 -0
- package/dist/esm/utils/clamp.js +3 -0
- package/dist/esm/utils/event-polyfill.d.ts +0 -0
- package/dist/esm/utils/event-polyfill.js +23 -0
- package/dist/esm/utils/formatters.d.ts +25 -0
- package/dist/esm/utils/formatters.js +36 -0
- package/dist/esm/utils/genericChangeHandler.d.ts +5 -0
- package/dist/esm/utils/genericChangeHandler.js +17 -0
- package/dist/esm/utils/getTextFromReactNode.d.ts +4 -0
- package/dist/esm/utils/getTextFromReactNode.js +15 -0
- package/dist/esm/utils/hashCode.d.ts +1 -0
- package/dist/esm/utils/hashCode.js +14 -0
- package/dist/esm/utils/index.d.ts +7 -0
- package/dist/esm/utils/index.js +7 -0
- package/dist/esm/utils/isCssPropertySupported.d.ts +1 -0
- package/dist/esm/utils/isCssPropertySupported.js +8 -0
- package/dist/esm/utils/isNil.d.ts +18 -0
- package/dist/esm/utils/isNil.js +20 -0
- package/dist/esm/utils/isReactText.d.ts +2 -0
- package/dist/esm/utils/isReactText.js +3 -0
- package/dist/esm/utils/isRenderedChild.d.ts +7 -0
- package/dist/esm/utils/isRenderedChild.js +8 -0
- package/dist/esm/utils/matchLocation.d.ts +2 -0
- package/dist/esm/utils/matchLocation.js +4 -0
- package/dist/esm/utils/onlyText.d.ts +2 -0
- package/dist/esm/utils/onlyText.js +32 -0
- package/dist/esm/utils/parseUrl.d.ts +10 -0
- package/dist/esm/utils/parseUrl.js +14 -0
- package/dist/esm/utils/pluralize.d.ts +6 -0
- package/dist/esm/utils/pluralize.js +15 -0
- package/dist/esm/utils/prefersReducedMotion.d.ts +6 -0
- package/dist/esm/utils/prefersReducedMotion.js +7 -0
- package/dist/esm/utils/range.d.ts +1 -0
- package/dist/esm/utils/range.js +6 -0
- package/dist/esm/utils/sortObjectAlphabetically.d.ts +1 -0
- package/dist/esm/utils/sortObjectAlphabetically.js +11 -0
- package/dist/esm/utils/toSentenceCase.d.ts +2 -0
- package/dist/esm/utils/toSentenceCase.js +8 -0
- package/dist/esm/utils/uniqBy.d.ts +1 -0
- package/dist/esm/utils/uniqBy.js +12 -0
- package/dist/esm/utils/uniqueId.d.ts +1 -0
- package/dist/esm/utils/uniqueId.js +6 -0
- package/dist/esm/utils/useForwardedRef.d.ts +2 -0
- package/dist/esm/utils/useForwardedRef.js +16 -0
- package/dist/esm/utils/useLinkProps.d.ts +6 -0
- package/dist/esm/utils/useLinkProps.js +45 -0
- package/dist/esm/utils/useTriggerInputChange.d.ts +8 -0
- package/dist/esm/utils/useTriggerInputChange.js +20 -0
- package/dist/satellite.min.css +3 -0
- package/dist/scss/colors.scss +139 -0
- package/dist/scss/variables.scss +8 -0
- package/package.json +172 -18
- package/AnnouncementBadge/AnnouncementBadge.d.ts +0 -9
- package/AnnouncementBadge/AnnouncementBadge.js +0 -72
- package/AnnouncementBadge/index.d.ts +0 -2
- package/AnnouncementBadge/index.js +0 -27
- package/AutoComplete/AutoComplete.d.ts +0 -54
- package/AutoComplete/AutoComplete.js +0 -673
- package/AutoComplete/AutoComplete.tailwind.d.ts +0 -5
- package/AutoComplete/AutoComplete.tailwind.js +0 -88
- package/AutoComplete/components/AutoCompleteEmptyState.d.ts +0 -11
- package/AutoComplete/components/AutoCompleteEmptyState.js +0 -71
- package/AutoComplete/components/DefaultOptionItem.d.ts +0 -3
- package/AutoComplete/components/DefaultOptionItem.js +0 -77
- package/AutoComplete/index.d.ts +0 -5
- package/AutoComplete/index.js +0 -66
- package/AutoComplete/types.d.ts +0 -68
- package/AutoComplete/types.js +0 -1
- package/AutoComplete/utils.d.ts +0 -4
- package/AutoComplete/utils.js +0 -40
- package/Badge/Badge.d.ts +0 -33
- package/Badge/Badge.js +0 -265
- package/Badge/index.d.ts +0 -2
- package/Badge/index.js +0 -27
- package/Banner/Banner.d.ts +0 -79
- package/Banner/Banner.js +0 -499
- package/Banner/index.d.ts +0 -2
- package/Banner/index.js +0 -27
- package/Button/Button.d.ts +0 -21
- package/Button/Button.js +0 -300
- package/Button/Button.tailwind.d.ts +0 -5
- package/Button/Button.tailwind.js +0 -158
- package/Button/ButtonGroup.d.ts +0 -12
- package/Button/ButtonGroup.js +0 -45
- package/Button/IconButton.d.ts +0 -17
- package/Button/IconButton.js +0 -203
- package/Button/index.d.ts +0 -5
- package/Button/index.js +0 -66
- package/Button/types.d.ts +0 -27
- package/Button/types.js +0 -10
- package/Card/Card.d.ts +0 -25
- package/Card/Card.js +0 -110
- package/Card/Card.tailwind.d.ts +0 -5
- package/Card/Card.tailwind.js +0 -39
- package/Card/components/CardHeader.d.ts +0 -4
- package/Card/components/CardHeader.js +0 -42
- package/Card/components/CardTitle.d.ts +0 -4
- package/Card/components/CardTitle.js +0 -43
- package/Card/index.d.ts +0 -4
- package/Card/index.js +0 -53
- package/Checkbox/Checkbox.d.ts +0 -24
- package/Checkbox/Checkbox.js +0 -170
- package/Checkbox/Checkbox.tailwind.d.ts +0 -5
- package/Checkbox/Checkbox.tailwind.js +0 -70
- package/Checkbox/index.d.ts +0 -2
- package/Checkbox/index.js +0 -27
- package/Dropdown/Dropdown.d.ts +0 -47
- package/Dropdown/Dropdown.js +0 -135
- package/Dropdown/DropdownButton.d.ts +0 -8
- package/Dropdown/DropdownButton.js +0 -53
- package/Dropdown/DropdownContext.d.ts +0 -7
- package/Dropdown/DropdownContext.js +0 -28
- package/Dropdown/components/DropdownButtonItem.d.ts +0 -19
- package/Dropdown/components/DropdownButtonItem.js +0 -70
- package/Dropdown/components/DropdownDivider.d.ts +0 -3
- package/Dropdown/components/DropdownDivider.js +0 -34
- package/Dropdown/components/DropdownLinkItem.d.ts +0 -10
- package/Dropdown/components/DropdownLinkItem.js +0 -41
- package/Dropdown/components/DropdownTitle.d.ts +0 -4
- package/Dropdown/components/DropdownTitle.js +0 -42
- package/Dropdown/components/DropdownToggleItem.d.ts +0 -13
- package/Dropdown/components/DropdownToggleItem.js +0 -59
- package/Dropdown/index.d.ts +0 -9
- package/Dropdown/index.js +0 -118
- package/Dropdown/useDropdownItemProps.d.ts +0 -13
- package/Dropdown/useDropdownItemProps.js +0 -52
- package/EmptyState/EmptyState.d.ts +0 -64
- package/EmptyState/EmptyState.js +0 -284
- package/EmptyState/EmptyState.tailwind.d.ts +0 -5
- package/EmptyState/EmptyState.tailwind.js +0 -19
- package/EmptyState/index.d.ts +0 -2
- package/EmptyState/index.js +0 -27
- package/Field/Field.d.ts +0 -53
- package/Field/Field.js +0 -166
- package/Field/FieldStateContext.d.ts +0 -12
- package/Field/FieldStateContext.js +0 -21
- package/Field/index.d.ts +0 -4
- package/Field/index.js +0 -53
- package/Field/useFieldState.d.ts +0 -2
- package/Field/useFieldState.js +0 -20
- package/Flag/Flag.d.ts +0 -5
- package/Flag/Flag.js +0 -272
- package/Flag/Flag.tailwind.d.ts +0 -5
- package/Flag/Flag.tailwind.js +0 -49
- package/Flag/Flags.d.ts +0 -48
- package/Flag/Flags.js +0 -116
- package/Flag/index.d.ts +0 -4
- package/Flag/index.js +0 -53
- package/Flag/types.d.ts +0 -17
- package/Flag/types.js +0 -1
- package/FlexGrid/FlexGrid.d.ts +0 -16
- package/FlexGrid/FlexGrid.js +0 -293
- package/FlexGrid/FlexGrid.tailwind.d.ts +0 -5
- package/FlexGrid/FlexGrid.tailwind.js +0 -81
- package/FlexGrid/index.d.ts +0 -2
- package/FlexGrid/index.js +0 -27
- package/HelpUnderline/HelpUnderline.d.ts +0 -11
- package/HelpUnderline/HelpUnderline.js +0 -69
- package/HelpUnderline/HelpUnderline.tailwind.d.ts +0 -5
- package/HelpUnderline/HelpUnderline.tailwind.js +0 -25
- package/HelpUnderline/index.d.ts +0 -2
- package/HelpUnderline/index.js +0 -27
- package/Input/Input.d.ts +0 -19
- package/Input/Input.js +0 -318
- package/Input/Input.tailwind.d.ts +0 -5
- package/Input/Input.tailwind.js +0 -105
- package/Input/index.d.ts +0 -2
- package/Input/index.js +0 -27
- package/InstantSearch/InstantSearch.tailwind.d.ts +0 -6
- package/InstantSearch/InstantSearch.tailwind.js +0 -380
- package/Link/BaseLink.d.ts +0 -4
- package/Link/BaseLink.js +0 -26
- package/Link/ButtonLink.d.ts +0 -5
- package/Link/ButtonLink.js +0 -48
- package/Link/IconButtonLink.d.ts +0 -6
- package/Link/IconButtonLink.js +0 -27
- package/Link/Link.d.ts +0 -11
- package/Link/Link.js +0 -85
- package/Link/index.d.ts +0 -5
- package/Link/index.js +0 -66
- package/Medallion/Medallion.d.ts +0 -11
- package/Medallion/Medallion.js +0 -135
- package/Medallion/Medallion.tailwind.d.ts +0 -5
- package/Medallion/Medallion.tailwind.js +0 -37
- package/Medallion/index.d.ts +0 -3
- package/Medallion/index.js +0 -40
- package/Medallion/types.d.ts +0 -2
- package/Medallion/types.js +0 -1
- package/Modal/Modal.d.ts +0 -20
- package/Modal/Modal.js +0 -260
- package/Modal/Modal.tailwind.d.ts +0 -5
- package/Modal/Modal.tailwind.js +0 -63
- package/Modal/components/ModalFooter.d.ts +0 -4
- package/Modal/components/ModalFooter.js +0 -48
- package/Modal/index.d.ts +0 -2
- package/Modal/index.js +0 -27
- package/Pagination/Pagination.d.ts +0 -16
- package/Pagination/Pagination.js +0 -120
- package/Pagination/index.d.ts +0 -2
- package/Pagination/index.js +0 -27
- package/ProgressBar/ProgressBar.d.ts +0 -13
- package/ProgressBar/ProgressBar.js +0 -70
- package/ProgressBar/ProgressBar.tailwind.d.ts +0 -5
- package/ProgressBar/ProgressBar.tailwind.js +0 -25
- package/ProgressBar/index.d.ts +0 -2
- package/ProgressBar/index.js +0 -27
- package/ProgressSpinner/ProgressSpinner.d.ts +0 -9
- package/ProgressSpinner/ProgressSpinner.js +0 -92
- package/ProgressSpinner/ProgressSpinner.tailwind.d.ts +0 -5
- package/ProgressSpinner/ProgressSpinner.tailwind.js +0 -40
- package/ProgressSpinner/index.d.ts +0 -2
- package/ProgressSpinner/index.js +0 -27
- package/RadioGroup/RadioButton.d.ts +0 -4
- package/RadioGroup/RadioButton.js +0 -45
- package/RadioGroup/RadioButton.tailwind.d.ts +0 -5
- package/RadioGroup/RadioButton.tailwind.js +0 -61
- package/RadioGroup/RadioGroup.d.ts +0 -34
- package/RadioGroup/RadioGroup.js +0 -173
- package/RadioGroup/index.d.ts +0 -3
- package/RadioGroup/index.js +0 -40
- package/RangeSlider/RangeSlider.d.ts +0 -18
- package/RangeSlider/RangeSlider.js +0 -171
- package/RangeSlider/RangeSlider.tailwind.d.ts +0 -5
- package/RangeSlider/RangeSlider.tailwind.js +0 -78
- package/RangeSlider/index.d.ts +0 -2
- package/RangeSlider/index.js +0 -27
- package/Satellite/Satellite.d.ts +0 -7
- package/Satellite/Satellite.js +0 -26
- package/Satellite/SatelliteContext.d.ts +0 -8
- package/Satellite/SatelliteContext.js +0 -37
- package/Satellite/index.d.ts +0 -4
- package/Satellite/index.js +0 -53
- package/Satellite/router.d.ts +0 -14
- package/Satellite/router.js +0 -30
- package/ScrollIndicator/ScrollIndicator.d.ts +0 -11
- package/ScrollIndicator/ScrollIndicator.js +0 -87
- package/ScrollIndicator/ScrollIndicator.tailwind.d.ts +0 -5
- package/ScrollIndicator/ScrollIndicator.tailwind.js +0 -55
- package/ScrollIndicator/index.d.ts +0 -2
- package/ScrollIndicator/index.js +0 -27
- package/Select/Select.d.ts +0 -15
- package/Select/Select.js +0 -90
- package/Select/Select.tailwind.d.ts +0 -5
- package/Select/Select.tailwind.js +0 -82
- package/Select/index.d.ts +0 -2
- package/Select/index.js +0 -27
- package/Sidebar/Sidebar.d.ts +0 -12
- package/Sidebar/Sidebar.js +0 -65
- package/Sidebar/Sidebar.tailwind.d.ts +0 -5
- package/Sidebar/Sidebar.tailwind.js +0 -69
- package/Sidebar/SidebarContext.d.ts +0 -10
- package/Sidebar/SidebarContext.js +0 -28
- package/Sidebar/components/SidebarHeader.d.ts +0 -5
- package/Sidebar/components/SidebarHeader.js +0 -50
- package/Sidebar/components/SidebarLink.d.ts +0 -9
- package/Sidebar/components/SidebarLink.js +0 -130
- package/Sidebar/index.d.ts +0 -6
- package/Sidebar/index.js +0 -79
- package/Sidebar/types.d.ts +0 -2
- package/Sidebar/types.js +0 -1
- package/Table/Table.d.ts +0 -27
- package/Table/Table.js +0 -101
- package/Table/Table.tailwind.d.ts +0 -5
- package/Table/Table.tailwind.js +0 -55
- package/Table/index.d.ts +0 -3
- package/Table/index.js +0 -24
- package/Tabs/ContentTabs.d.ts +0 -4
- package/Tabs/ContentTabs.js +0 -129
- package/Tabs/LinkTabs.d.ts +0 -33
- package/Tabs/LinkTabs.js +0 -100
- package/Tabs/Tabs.tailwind.d.ts +0 -5
- package/Tabs/Tabs.tailwind.js +0 -54
- package/Tabs/components/LinkTab.d.ts +0 -10
- package/Tabs/components/LinkTab.js +0 -135
- package/Tabs/index.d.ts +0 -4
- package/Tabs/index.js +0 -53
- package/Tabs/types.d.ts +0 -30
- package/Tabs/types.js +0 -1
- package/Tabs/utils.d.ts +0 -2
- package/Tabs/utils.js +0 -82
- package/Tag/Tag.d.ts +0 -28
- package/Tag/Tag.js +0 -227
- package/Tag/Tag.tailwind.d.ts +0 -5
- package/Tag/Tag.tailwind.js +0 -42
- package/Tag/index.d.ts +0 -2
- package/Tag/index.js +0 -27
- package/TextArea/TextArea.d.ts +0 -5
- package/TextArea/TextArea.js +0 -44
- package/TextArea/TextArea.tailwind.d.ts +0 -5
- package/TextArea/TextArea.tailwind.js +0 -45
- package/TextArea/index.d.ts +0 -2
- package/TextArea/index.js +0 -27
- package/Toggle/Toggle.d.ts +0 -10
- package/Toggle/Toggle.js +0 -93
- package/Toggle/Toggle.tailwind.d.ts +0 -5
- package/Toggle/Toggle.tailwind.js +0 -71
- package/Toggle/index.d.ts +0 -2
- package/Toggle/index.js +0 -27
- package/Tooltip/Tooltip.d.ts +0 -24
- package/Tooltip/Tooltip.js +0 -63
- package/Tooltip/Tooltip.tailwind.d.ts +0 -5
- package/Tooltip/Tooltip.tailwind.js +0 -122
- package/Tooltip/TooltipWrapper.d.ts +0 -15
- package/Tooltip/TooltipWrapper.js +0 -157
- package/Tooltip/index.d.ts +0 -3
- package/Tooltip/index.js +0 -40
- package/Typography/Typography.tailwind.d.ts +0 -17
- package/Typography/Typography.tailwind.js +0 -186
- package/UserContent/UserContent.d.ts +0 -8
- package/UserContent/UserContent.js +0 -45
- package/UserContent/UserContent.tailwind.d.ts +0 -2
- package/UserContent/UserContent.tailwind.js +0 -150
- package/index.d.ts +0 -31
- package/index.js +0 -377
- package/satellite.css +0 -78905
- package/satellite.min.css +0 -1
- package/styles/base.tailwind.d.ts +0 -5
- package/styles/base.tailwind.js +0 -44
- package/styles/brandColors.d.ts +0 -42
- package/styles/brandColors.js +0 -48
- package/styles/colors.d.ts +0 -81
- package/styles/colors.js +0 -87
- package/styles/disabledColor.js +0 -17
- package/styles/helpers/icons.d.ts +0 -3
- package/styles/helpers/icons.js +0 -45
- package/styles/helpers/makePurgeCssExtractor.d.ts +0 -12
- package/styles/helpers/makePurgeCssExtractor.js +0 -55
- package/styles/helpers/makeTailwindPrefixer.d.ts +0 -15
- package/styles/helpers/makeTailwindPrefixer.js +0 -62
- package/styles/helpers/satellitePrefixer.js +0 -9
- package/styles/rgba.js +0 -17
- package/styles/scss/colors.scss +0 -112
- package/styles/scss/variables.scss +0 -7
- package/styles/tailwind.config.d.ts +0 -193
- package/styles/tailwind.config.js +0 -135
- package/styles/zIndexes.d.ts +0 -7
- package/styles/zIndexes.js +0 -13
- package/tailwind-types.d.ts +0 -48
- package/tailwind-types.js +0 -1
- package/types.d.ts +0 -1
- package/types.js +0 -1
- package/utils/event-polyfill.js +0 -27
- package/utils/genericChangeHandler.d.ts +0 -5
- package/utils/genericChangeHandler.js +0 -33
- package/utils/icon.d.ts +0 -7
- package/utils/icon.js +0 -1
- package/utils/index.d.ts +0 -6
- package/utils/index.js +0 -45
- package/utils/isRenderedChild.d.ts +0 -8
- package/utils/isRenderedChild.js +0 -18
- package/utils/matchLocation.d.ts +0 -3
- package/utils/matchLocation.js +0 -17
- package/utils/parseUrl.d.ts +0 -11
- package/utils/parseUrl.js +0 -24
- package/utils/pluralize.d.ts +0 -6
- package/utils/pluralize.js +0 -24
- package/utils/range.d.ts +0 -2
- package/utils/range.js +0 -17
- package/utils/uniqBy.d.ts +0 -2
- package/utils/uniqBy.js +0 -25
- package/utils/uniqueId.d.ts +0 -2
- package/utils/uniqueId.js +0 -17
- package/utils/useForwardedRef.d.ts +0 -3
- package/utils/useForwardedRef.js +0 -31
- package/utils/useLinkProps.d.ts +0 -4
- package/utils/useLinkProps.js +0 -60
- package/utils/useLockBodyScroll.d.ts +0 -2
- package/utils/useLockBodyScroll.js +0 -30
- package/utils/useTriggerInputChange.d.ts +0 -7
- package/utils/useTriggerInputChange.js +0 -30
- /package/{styles → dist/cjs/styles}/disabledColor.d.ts +0 -0
- /package/{styles → dist/cjs/styles}/helpers/satellitePrefixer.d.ts +0 -0
- /package/{styles → dist/cjs/styles}/rgba.d.ts +0 -0
- /package/{utils → dist/cjs/utils}/event-polyfill.d.ts +0 -0
@@ -0,0 +1,640 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
5
|
+
value: true
|
6
|
+
});
|
7
|
+
var _exportNames = {
|
8
|
+
colors: true,
|
9
|
+
brandColors: true,
|
10
|
+
stl: true,
|
11
|
+
makePurgeCssExtractor: true
|
12
|
+
};
|
13
|
+
Object.defineProperty(exports, "brandColors", {
|
14
|
+
enumerable: true,
|
15
|
+
get: function get() {
|
16
|
+
return _brandColors["default"];
|
17
|
+
}
|
18
|
+
});
|
19
|
+
Object.defineProperty(exports, "colors", {
|
20
|
+
enumerable: true,
|
21
|
+
get: function get() {
|
22
|
+
return _colors["default"];
|
23
|
+
}
|
24
|
+
});
|
25
|
+
Object.defineProperty(exports, "makePurgeCssExtractor", {
|
26
|
+
enumerable: true,
|
27
|
+
get: function get() {
|
28
|
+
return _makePurgeCssExtractor["default"];
|
29
|
+
}
|
30
|
+
});
|
31
|
+
Object.defineProperty(exports, "stl", {
|
32
|
+
enumerable: true,
|
33
|
+
get: function get() {
|
34
|
+
return _satellitePrefixer["default"];
|
35
|
+
}
|
36
|
+
});
|
37
|
+
var _types = require("./types");
|
38
|
+
Object.keys(_types).forEach(function (key) {
|
39
|
+
if (key === "default" || key === "__esModule") return;
|
40
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
41
|
+
if (key in exports && exports[key] === _types[key]) return;
|
42
|
+
Object.defineProperty(exports, key, {
|
43
|
+
enumerable: true,
|
44
|
+
get: function get() {
|
45
|
+
return _types[key];
|
46
|
+
}
|
47
|
+
});
|
48
|
+
});
|
49
|
+
var _colors = _interopRequireDefault(require("./styles/colors"));
|
50
|
+
var _brandColors = _interopRequireDefault(require("./styles/brandColors"));
|
51
|
+
var _satellitePrefixer = _interopRequireDefault(require("./styles/helpers/satellitePrefixer"));
|
52
|
+
var _makePurgeCssExtractor = _interopRequireDefault(require("./styles/helpers/makePurgeCssExtractor"));
|
53
|
+
var _NumberUnion = require("./utils/NumberUnion");
|
54
|
+
Object.keys(_NumberUnion).forEach(function (key) {
|
55
|
+
if (key === "default" || key === "__esModule") return;
|
56
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
57
|
+
if (key in exports && exports[key] === _NumberUnion[key]) return;
|
58
|
+
Object.defineProperty(exports, key, {
|
59
|
+
enumerable: true,
|
60
|
+
get: function get() {
|
61
|
+
return _NumberUnion[key];
|
62
|
+
}
|
63
|
+
});
|
64
|
+
});
|
65
|
+
var _parseUrl = require("./utils/parseUrl");
|
66
|
+
Object.keys(_parseUrl).forEach(function (key) {
|
67
|
+
if (key === "default" || key === "__esModule") return;
|
68
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
69
|
+
if (key in exports && exports[key] === _parseUrl[key]) return;
|
70
|
+
Object.defineProperty(exports, key, {
|
71
|
+
enumerable: true,
|
72
|
+
get: function get() {
|
73
|
+
return _parseUrl[key];
|
74
|
+
}
|
75
|
+
});
|
76
|
+
});
|
77
|
+
var _useLinkProps = require("./utils/useLinkProps");
|
78
|
+
Object.keys(_useLinkProps).forEach(function (key) {
|
79
|
+
if (key === "default" || key === "__esModule") return;
|
80
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
81
|
+
if (key in exports && exports[key] === _useLinkProps[key]) return;
|
82
|
+
Object.defineProperty(exports, key, {
|
83
|
+
enumerable: true,
|
84
|
+
get: function get() {
|
85
|
+
return _useLinkProps[key];
|
86
|
+
}
|
87
|
+
});
|
88
|
+
});
|
89
|
+
var _AnnouncementBadge = require("./AnnouncementBadge");
|
90
|
+
Object.keys(_AnnouncementBadge).forEach(function (key) {
|
91
|
+
if (key === "default" || key === "__esModule") return;
|
92
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
93
|
+
if (key in exports && exports[key] === _AnnouncementBadge[key]) return;
|
94
|
+
Object.defineProperty(exports, key, {
|
95
|
+
enumerable: true,
|
96
|
+
get: function get() {
|
97
|
+
return _AnnouncementBadge[key];
|
98
|
+
}
|
99
|
+
});
|
100
|
+
});
|
101
|
+
var _AutoComplete = require("./AutoComplete");
|
102
|
+
Object.keys(_AutoComplete).forEach(function (key) {
|
103
|
+
if (key === "default" || key === "__esModule") return;
|
104
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
105
|
+
if (key in exports && exports[key] === _AutoComplete[key]) return;
|
106
|
+
Object.defineProperty(exports, key, {
|
107
|
+
enumerable: true,
|
108
|
+
get: function get() {
|
109
|
+
return _AutoComplete[key];
|
110
|
+
}
|
111
|
+
});
|
112
|
+
});
|
113
|
+
var _Avatars = require("./Avatars");
|
114
|
+
Object.keys(_Avatars).forEach(function (key) {
|
115
|
+
if (key === "default" || key === "__esModule") return;
|
116
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
117
|
+
if (key in exports && exports[key] === _Avatars[key]) return;
|
118
|
+
Object.defineProperty(exports, key, {
|
119
|
+
enumerable: true,
|
120
|
+
get: function get() {
|
121
|
+
return _Avatars[key];
|
122
|
+
}
|
123
|
+
});
|
124
|
+
});
|
125
|
+
var _Badge = require("./Badge");
|
126
|
+
Object.keys(_Badge).forEach(function (key) {
|
127
|
+
if (key === "default" || key === "__esModule") return;
|
128
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
129
|
+
if (key in exports && exports[key] === _Badge[key]) return;
|
130
|
+
Object.defineProperty(exports, key, {
|
131
|
+
enumerable: true,
|
132
|
+
get: function get() {
|
133
|
+
return _Badge[key];
|
134
|
+
}
|
135
|
+
});
|
136
|
+
});
|
137
|
+
var _Banners = require("./Banners");
|
138
|
+
Object.keys(_Banners).forEach(function (key) {
|
139
|
+
if (key === "default" || key === "__esModule") return;
|
140
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
141
|
+
if (key in exports && exports[key] === _Banners[key]) return;
|
142
|
+
Object.defineProperty(exports, key, {
|
143
|
+
enumerable: true,
|
144
|
+
get: function get() {
|
145
|
+
return _Banners[key];
|
146
|
+
}
|
147
|
+
});
|
148
|
+
});
|
149
|
+
var _Button = require("./Button");
|
150
|
+
Object.keys(_Button).forEach(function (key) {
|
151
|
+
if (key === "default" || key === "__esModule") return;
|
152
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
153
|
+
if (key in exports && exports[key] === _Button[key]) return;
|
154
|
+
Object.defineProperty(exports, key, {
|
155
|
+
enumerable: true,
|
156
|
+
get: function get() {
|
157
|
+
return _Button[key];
|
158
|
+
}
|
159
|
+
});
|
160
|
+
});
|
161
|
+
var _Card = require("./Card");
|
162
|
+
Object.keys(_Card).forEach(function (key) {
|
163
|
+
if (key === "default" || key === "__esModule") return;
|
164
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
165
|
+
if (key in exports && exports[key] === _Card[key]) return;
|
166
|
+
Object.defineProperty(exports, key, {
|
167
|
+
enumerable: true,
|
168
|
+
get: function get() {
|
169
|
+
return _Card[key];
|
170
|
+
}
|
171
|
+
});
|
172
|
+
});
|
173
|
+
var _Checkbox = require("./Checkbox");
|
174
|
+
Object.keys(_Checkbox).forEach(function (key) {
|
175
|
+
if (key === "default" || key === "__esModule") return;
|
176
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
177
|
+
if (key in exports && exports[key] === _Checkbox[key]) return;
|
178
|
+
Object.defineProperty(exports, key, {
|
179
|
+
enumerable: true,
|
180
|
+
get: function get() {
|
181
|
+
return _Checkbox[key];
|
182
|
+
}
|
183
|
+
});
|
184
|
+
});
|
185
|
+
var _ClickAwayContainer = require("./ClickAwayContainer");
|
186
|
+
Object.keys(_ClickAwayContainer).forEach(function (key) {
|
187
|
+
if (key === "default" || key === "__esModule") return;
|
188
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
189
|
+
if (key in exports && exports[key] === _ClickAwayContainer[key]) return;
|
190
|
+
Object.defineProperty(exports, key, {
|
191
|
+
enumerable: true,
|
192
|
+
get: function get() {
|
193
|
+
return _ClickAwayContainer[key];
|
194
|
+
}
|
195
|
+
});
|
196
|
+
});
|
197
|
+
var _DatePicker = require("./DatePicker");
|
198
|
+
Object.keys(_DatePicker).forEach(function (key) {
|
199
|
+
if (key === "default" || key === "__esModule") return;
|
200
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
201
|
+
if (key in exports && exports[key] === _DatePicker[key]) return;
|
202
|
+
Object.defineProperty(exports, key, {
|
203
|
+
enumerable: true,
|
204
|
+
get: function get() {
|
205
|
+
return _DatePicker[key];
|
206
|
+
}
|
207
|
+
});
|
208
|
+
});
|
209
|
+
var _Dropdown = require("./Dropdown");
|
210
|
+
Object.keys(_Dropdown).forEach(function (key) {
|
211
|
+
if (key === "default" || key === "__esModule") return;
|
212
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
213
|
+
if (key in exports && exports[key] === _Dropdown[key]) return;
|
214
|
+
Object.defineProperty(exports, key, {
|
215
|
+
enumerable: true,
|
216
|
+
get: function get() {
|
217
|
+
return _Dropdown[key];
|
218
|
+
}
|
219
|
+
});
|
220
|
+
});
|
221
|
+
var _Dropzone = require("./Dropzone");
|
222
|
+
Object.keys(_Dropzone).forEach(function (key) {
|
223
|
+
if (key === "default" || key === "__esModule") return;
|
224
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
225
|
+
if (key in exports && exports[key] === _Dropzone[key]) return;
|
226
|
+
Object.defineProperty(exports, key, {
|
227
|
+
enumerable: true,
|
228
|
+
get: function get() {
|
229
|
+
return _Dropzone[key];
|
230
|
+
}
|
231
|
+
});
|
232
|
+
});
|
233
|
+
var _EmptyState = require("./EmptyState");
|
234
|
+
Object.keys(_EmptyState).forEach(function (key) {
|
235
|
+
if (key === "default" || key === "__esModule") return;
|
236
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
237
|
+
if (key in exports && exports[key] === _EmptyState[key]) return;
|
238
|
+
Object.defineProperty(exports, key, {
|
239
|
+
enumerable: true,
|
240
|
+
get: function get() {
|
241
|
+
return _EmptyState[key];
|
242
|
+
}
|
243
|
+
});
|
244
|
+
});
|
245
|
+
var _Field = require("./Field");
|
246
|
+
Object.keys(_Field).forEach(function (key) {
|
247
|
+
if (key === "default" || key === "__esModule") return;
|
248
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
249
|
+
if (key in exports && exports[key] === _Field[key]) return;
|
250
|
+
Object.defineProperty(exports, key, {
|
251
|
+
enumerable: true,
|
252
|
+
get: function get() {
|
253
|
+
return _Field[key];
|
254
|
+
}
|
255
|
+
});
|
256
|
+
});
|
257
|
+
var _FlexGrid = require("./FlexGrid");
|
258
|
+
Object.keys(_FlexGrid).forEach(function (key) {
|
259
|
+
if (key === "default" || key === "__esModule") return;
|
260
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
261
|
+
if (key in exports && exports[key] === _FlexGrid[key]) return;
|
262
|
+
Object.defineProperty(exports, key, {
|
263
|
+
enumerable: true,
|
264
|
+
get: function get() {
|
265
|
+
return _FlexGrid[key];
|
266
|
+
}
|
267
|
+
});
|
268
|
+
});
|
269
|
+
var _HelpUnderline = require("./HelpUnderline");
|
270
|
+
Object.keys(_HelpUnderline).forEach(function (key) {
|
271
|
+
if (key === "default" || key === "__esModule") return;
|
272
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
273
|
+
if (key in exports && exports[key] === _HelpUnderline[key]) return;
|
274
|
+
Object.defineProperty(exports, key, {
|
275
|
+
enumerable: true,
|
276
|
+
get: function get() {
|
277
|
+
return _HelpUnderline[key];
|
278
|
+
}
|
279
|
+
});
|
280
|
+
});
|
281
|
+
var _Icons = require("./Icons");
|
282
|
+
Object.keys(_Icons).forEach(function (key) {
|
283
|
+
if (key === "default" || key === "__esModule") return;
|
284
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
285
|
+
if (key in exports && exports[key] === _Icons[key]) return;
|
286
|
+
Object.defineProperty(exports, key, {
|
287
|
+
enumerable: true,
|
288
|
+
get: function get() {
|
289
|
+
return _Icons[key];
|
290
|
+
}
|
291
|
+
});
|
292
|
+
});
|
293
|
+
var _Input = require("./Input");
|
294
|
+
Object.keys(_Input).forEach(function (key) {
|
295
|
+
if (key === "default" || key === "__esModule") return;
|
296
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
297
|
+
if (key in exports && exports[key] === _Input[key]) return;
|
298
|
+
Object.defineProperty(exports, key, {
|
299
|
+
enumerable: true,
|
300
|
+
get: function get() {
|
301
|
+
return _Input[key];
|
302
|
+
}
|
303
|
+
});
|
304
|
+
});
|
305
|
+
var _Insert = require("./Insert");
|
306
|
+
Object.keys(_Insert).forEach(function (key) {
|
307
|
+
if (key === "default" || key === "__esModule") return;
|
308
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
309
|
+
if (key in exports && exports[key] === _Insert[key]) return;
|
310
|
+
Object.defineProperty(exports, key, {
|
311
|
+
enumerable: true,
|
312
|
+
get: function get() {
|
313
|
+
return _Insert[key];
|
314
|
+
}
|
315
|
+
});
|
316
|
+
});
|
317
|
+
var _KeyboardKey = require("./KeyboardKey");
|
318
|
+
Object.keys(_KeyboardKey).forEach(function (key) {
|
319
|
+
if (key === "default" || key === "__esModule") return;
|
320
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
321
|
+
if (key in exports && exports[key] === _KeyboardKey[key]) return;
|
322
|
+
Object.defineProperty(exports, key, {
|
323
|
+
enumerable: true,
|
324
|
+
get: function get() {
|
325
|
+
return _KeyboardKey[key];
|
326
|
+
}
|
327
|
+
});
|
328
|
+
});
|
329
|
+
var _Link = require("./Link");
|
330
|
+
Object.keys(_Link).forEach(function (key) {
|
331
|
+
if (key === "default" || key === "__esModule") return;
|
332
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
333
|
+
if (key in exports && exports[key] === _Link[key]) return;
|
334
|
+
Object.defineProperty(exports, key, {
|
335
|
+
enumerable: true,
|
336
|
+
get: function get() {
|
337
|
+
return _Link[key];
|
338
|
+
}
|
339
|
+
});
|
340
|
+
});
|
341
|
+
var _Medallion = require("./Medallion");
|
342
|
+
Object.keys(_Medallion).forEach(function (key) {
|
343
|
+
if (key === "default" || key === "__esModule") return;
|
344
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
345
|
+
if (key in exports && exports[key] === _Medallion[key]) return;
|
346
|
+
Object.defineProperty(exports, key, {
|
347
|
+
enumerable: true,
|
348
|
+
get: function get() {
|
349
|
+
return _Medallion[key];
|
350
|
+
}
|
351
|
+
});
|
352
|
+
});
|
353
|
+
var _MenuButton = require("./MenuButton");
|
354
|
+
Object.keys(_MenuButton).forEach(function (key) {
|
355
|
+
if (key === "default" || key === "__esModule") return;
|
356
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
357
|
+
if (key in exports && exports[key] === _MenuButton[key]) return;
|
358
|
+
Object.defineProperty(exports, key, {
|
359
|
+
enumerable: true,
|
360
|
+
get: function get() {
|
361
|
+
return _MenuButton[key];
|
362
|
+
}
|
363
|
+
});
|
364
|
+
});
|
365
|
+
var _Modal = require("./Modal");
|
366
|
+
Object.keys(_Modal).forEach(function (key) {
|
367
|
+
if (key === "default" || key === "__esModule") return;
|
368
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
369
|
+
if (key in exports && exports[key] === _Modal[key]) return;
|
370
|
+
Object.defineProperty(exports, key, {
|
371
|
+
enumerable: true,
|
372
|
+
get: function get() {
|
373
|
+
return _Modal[key];
|
374
|
+
}
|
375
|
+
});
|
376
|
+
});
|
377
|
+
var _Pagination = require("./Pagination");
|
378
|
+
Object.keys(_Pagination).forEach(function (key) {
|
379
|
+
if (key === "default" || key === "__esModule") return;
|
380
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
381
|
+
if (key in exports && exports[key] === _Pagination[key]) return;
|
382
|
+
Object.defineProperty(exports, key, {
|
383
|
+
enumerable: true,
|
384
|
+
get: function get() {
|
385
|
+
return _Pagination[key];
|
386
|
+
}
|
387
|
+
});
|
388
|
+
});
|
389
|
+
var _Popover = require("./Popover");
|
390
|
+
Object.keys(_Popover).forEach(function (key) {
|
391
|
+
if (key === "default" || key === "__esModule") return;
|
392
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
393
|
+
if (key in exports && exports[key] === _Popover[key]) return;
|
394
|
+
Object.defineProperty(exports, key, {
|
395
|
+
enumerable: true,
|
396
|
+
get: function get() {
|
397
|
+
return _Popover[key];
|
398
|
+
}
|
399
|
+
});
|
400
|
+
});
|
401
|
+
var _ProgressBar = require("./ProgressBar");
|
402
|
+
Object.keys(_ProgressBar).forEach(function (key) {
|
403
|
+
if (key === "default" || key === "__esModule") return;
|
404
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
405
|
+
if (key in exports && exports[key] === _ProgressBar[key]) return;
|
406
|
+
Object.defineProperty(exports, key, {
|
407
|
+
enumerable: true,
|
408
|
+
get: function get() {
|
409
|
+
return _ProgressBar[key];
|
410
|
+
}
|
411
|
+
});
|
412
|
+
});
|
413
|
+
var _ProgressSpinner = require("./ProgressSpinner");
|
414
|
+
Object.keys(_ProgressSpinner).forEach(function (key) {
|
415
|
+
if (key === "default" || key === "__esModule") return;
|
416
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
417
|
+
if (key in exports && exports[key] === _ProgressSpinner[key]) return;
|
418
|
+
Object.defineProperty(exports, key, {
|
419
|
+
enumerable: true,
|
420
|
+
get: function get() {
|
421
|
+
return _ProgressSpinner[key];
|
422
|
+
}
|
423
|
+
});
|
424
|
+
});
|
425
|
+
var _RadioGroup = require("./RadioGroup");
|
426
|
+
Object.keys(_RadioGroup).forEach(function (key) {
|
427
|
+
if (key === "default" || key === "__esModule") return;
|
428
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
429
|
+
if (key in exports && exports[key] === _RadioGroup[key]) return;
|
430
|
+
Object.defineProperty(exports, key, {
|
431
|
+
enumerable: true,
|
432
|
+
get: function get() {
|
433
|
+
return _RadioGroup[key];
|
434
|
+
}
|
435
|
+
});
|
436
|
+
});
|
437
|
+
var _RangeSlider = require("./RangeSlider");
|
438
|
+
Object.keys(_RangeSlider).forEach(function (key) {
|
439
|
+
if (key === "default" || key === "__esModule") return;
|
440
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
441
|
+
if (key in exports && exports[key] === _RangeSlider[key]) return;
|
442
|
+
Object.defineProperty(exports, key, {
|
443
|
+
enumerable: true,
|
444
|
+
get: function get() {
|
445
|
+
return _RangeSlider[key];
|
446
|
+
}
|
447
|
+
});
|
448
|
+
});
|
449
|
+
var _Satellite = require("./Satellite");
|
450
|
+
Object.keys(_Satellite).forEach(function (key) {
|
451
|
+
if (key === "default" || key === "__esModule") return;
|
452
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
453
|
+
if (key in exports && exports[key] === _Satellite[key]) return;
|
454
|
+
Object.defineProperty(exports, key, {
|
455
|
+
enumerable: true,
|
456
|
+
get: function get() {
|
457
|
+
return _Satellite[key];
|
458
|
+
}
|
459
|
+
});
|
460
|
+
});
|
461
|
+
var _ScrollIndicator = require("./ScrollIndicator");
|
462
|
+
Object.keys(_ScrollIndicator).forEach(function (key) {
|
463
|
+
if (key === "default" || key === "__esModule") return;
|
464
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
465
|
+
if (key in exports && exports[key] === _ScrollIndicator[key]) return;
|
466
|
+
Object.defineProperty(exports, key, {
|
467
|
+
enumerable: true,
|
468
|
+
get: function get() {
|
469
|
+
return _ScrollIndicator[key];
|
470
|
+
}
|
471
|
+
});
|
472
|
+
});
|
473
|
+
var _Select = require("./Select");
|
474
|
+
Object.keys(_Select).forEach(function (key) {
|
475
|
+
if (key === "default" || key === "__esModule") return;
|
476
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
477
|
+
if (key in exports && exports[key] === _Select[key]) return;
|
478
|
+
Object.defineProperty(exports, key, {
|
479
|
+
enumerable: true,
|
480
|
+
get: function get() {
|
481
|
+
return _Select[key];
|
482
|
+
}
|
483
|
+
});
|
484
|
+
});
|
485
|
+
var _Separator = require("./Separator");
|
486
|
+
Object.keys(_Separator).forEach(function (key) {
|
487
|
+
if (key === "default" || key === "__esModule") return;
|
488
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
489
|
+
if (key in exports && exports[key] === _Separator[key]) return;
|
490
|
+
Object.defineProperty(exports, key, {
|
491
|
+
enumerable: true,
|
492
|
+
get: function get() {
|
493
|
+
return _Separator[key];
|
494
|
+
}
|
495
|
+
});
|
496
|
+
});
|
497
|
+
var _Sidebar = require("./Sidebar");
|
498
|
+
Object.keys(_Sidebar).forEach(function (key) {
|
499
|
+
if (key === "default" || key === "__esModule") return;
|
500
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
501
|
+
if (key in exports && exports[key] === _Sidebar[key]) return;
|
502
|
+
Object.defineProperty(exports, key, {
|
503
|
+
enumerable: true,
|
504
|
+
get: function get() {
|
505
|
+
return _Sidebar[key];
|
506
|
+
}
|
507
|
+
});
|
508
|
+
});
|
509
|
+
var _Stepper = require("./Stepper");
|
510
|
+
Object.keys(_Stepper).forEach(function (key) {
|
511
|
+
if (key === "default" || key === "__esModule") return;
|
512
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
513
|
+
if (key in exports && exports[key] === _Stepper[key]) return;
|
514
|
+
Object.defineProperty(exports, key, {
|
515
|
+
enumerable: true,
|
516
|
+
get: function get() {
|
517
|
+
return _Stepper[key];
|
518
|
+
}
|
519
|
+
});
|
520
|
+
});
|
521
|
+
var _Switch = require("./Switch");
|
522
|
+
Object.keys(_Switch).forEach(function (key) {
|
523
|
+
if (key === "default" || key === "__esModule") return;
|
524
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
525
|
+
if (key in exports && exports[key] === _Switch[key]) return;
|
526
|
+
Object.defineProperty(exports, key, {
|
527
|
+
enumerable: true,
|
528
|
+
get: function get() {
|
529
|
+
return _Switch[key];
|
530
|
+
}
|
531
|
+
});
|
532
|
+
});
|
533
|
+
var _Tables = require("./Tables");
|
534
|
+
Object.keys(_Tables).forEach(function (key) {
|
535
|
+
if (key === "default" || key === "__esModule") return;
|
536
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
537
|
+
if (key in exports && exports[key] === _Tables[key]) return;
|
538
|
+
Object.defineProperty(exports, key, {
|
539
|
+
enumerable: true,
|
540
|
+
get: function get() {
|
541
|
+
return _Tables[key];
|
542
|
+
}
|
543
|
+
});
|
544
|
+
});
|
545
|
+
var _Tabs = require("./Tabs");
|
546
|
+
Object.keys(_Tabs).forEach(function (key) {
|
547
|
+
if (key === "default" || key === "__esModule") return;
|
548
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
549
|
+
if (key in exports && exports[key] === _Tabs[key]) return;
|
550
|
+
Object.defineProperty(exports, key, {
|
551
|
+
enumerable: true,
|
552
|
+
get: function get() {
|
553
|
+
return _Tabs[key];
|
554
|
+
}
|
555
|
+
});
|
556
|
+
});
|
557
|
+
var _Tag = require("./Tag");
|
558
|
+
Object.keys(_Tag).forEach(function (key) {
|
559
|
+
if (key === "default" || key === "__esModule") return;
|
560
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
561
|
+
if (key in exports && exports[key] === _Tag[key]) return;
|
562
|
+
Object.defineProperty(exports, key, {
|
563
|
+
enumerable: true,
|
564
|
+
get: function get() {
|
565
|
+
return _Tag[key];
|
566
|
+
}
|
567
|
+
});
|
568
|
+
});
|
569
|
+
var _TextArea = require("./TextArea");
|
570
|
+
Object.keys(_TextArea).forEach(function (key) {
|
571
|
+
if (key === "default" || key === "__esModule") return;
|
572
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
573
|
+
if (key in exports && exports[key] === _TextArea[key]) return;
|
574
|
+
Object.defineProperty(exports, key, {
|
575
|
+
enumerable: true,
|
576
|
+
get: function get() {
|
577
|
+
return _TextArea[key];
|
578
|
+
}
|
579
|
+
});
|
580
|
+
});
|
581
|
+
var _TextWrap = require("./TextWrap");
|
582
|
+
Object.keys(_TextWrap).forEach(function (key) {
|
583
|
+
if (key === "default" || key === "__esModule") return;
|
584
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
585
|
+
if (key in exports && exports[key] === _TextWrap[key]) return;
|
586
|
+
Object.defineProperty(exports, key, {
|
587
|
+
enumerable: true,
|
588
|
+
get: function get() {
|
589
|
+
return _TextWrap[key];
|
590
|
+
}
|
591
|
+
});
|
592
|
+
});
|
593
|
+
var _Toast = require("./Toast");
|
594
|
+
Object.keys(_Toast).forEach(function (key) {
|
595
|
+
if (key === "default" || key === "__esModule") return;
|
596
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
597
|
+
if (key in exports && exports[key] === _Toast[key]) return;
|
598
|
+
Object.defineProperty(exports, key, {
|
599
|
+
enumerable: true,
|
600
|
+
get: function get() {
|
601
|
+
return _Toast[key];
|
602
|
+
}
|
603
|
+
});
|
604
|
+
});
|
605
|
+
var _Toggle = require("./Toggle");
|
606
|
+
Object.keys(_Toggle).forEach(function (key) {
|
607
|
+
if (key === "default" || key === "__esModule") return;
|
608
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
609
|
+
if (key in exports && exports[key] === _Toggle[key]) return;
|
610
|
+
Object.defineProperty(exports, key, {
|
611
|
+
enumerable: true,
|
612
|
+
get: function get() {
|
613
|
+
return _Toggle[key];
|
614
|
+
}
|
615
|
+
});
|
616
|
+
});
|
617
|
+
var _Tooltip = require("./Tooltip");
|
618
|
+
Object.keys(_Tooltip).forEach(function (key) {
|
619
|
+
if (key === "default" || key === "__esModule") return;
|
620
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
621
|
+
if (key in exports && exports[key] === _Tooltip[key]) return;
|
622
|
+
Object.defineProperty(exports, key, {
|
623
|
+
enumerable: true,
|
624
|
+
get: function get() {
|
625
|
+
return _Tooltip[key];
|
626
|
+
}
|
627
|
+
});
|
628
|
+
});
|
629
|
+
var _UserContent = require("./UserContent");
|
630
|
+
Object.keys(_UserContent).forEach(function (key) {
|
631
|
+
if (key === "default" || key === "__esModule") return;
|
632
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
633
|
+
if (key in exports && exports[key] === _UserContent[key]) return;
|
634
|
+
Object.defineProperty(exports, key, {
|
635
|
+
enumerable: true,
|
636
|
+
get: function get() {
|
637
|
+
return _UserContent[key];
|
638
|
+
}
|
639
|
+
});
|
640
|
+
});
|
@@ -0,0 +1,46 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
// @ts-check
|
4
|
+
var plugin = require("tailwindcss/plugin");
|
5
|
+
var basePlugin = plugin(function (_ref) {
|
6
|
+
var addBase = _ref.addBase,
|
7
|
+
theme = _ref.theme;
|
8
|
+
// https://polaris.shopify.com/design/typography#font-stack
|
9
|
+
addBase({
|
10
|
+
"html, body": {
|
11
|
+
/* Make type rendering look crisper */
|
12
|
+
"-webkit-font-smoothing": "antialiased",
|
13
|
+
"-moz-osx-font-smoothing": "grayscale",
|
14
|
+
/* Disable auto-enlargement of small text in Safari */
|
15
|
+
"text-size-adjust": "100%",
|
16
|
+
/* Enable kerning and optional ligatures */
|
17
|
+
"text-rendering": "optimizeLegibility"
|
18
|
+
}
|
19
|
+
});
|
20
|
+
|
21
|
+
// Accent color
|
22
|
+
addBase({
|
23
|
+
":root": {
|
24
|
+
"accent-color": theme("colors.accent.600")
|
25
|
+
}
|
26
|
+
});
|
27
|
+
|
28
|
+
// Text selection
|
29
|
+
addBase({
|
30
|
+
"::selection": {
|
31
|
+
background: theme("colors.accent.600"),
|
32
|
+
color: theme("colors.white")
|
33
|
+
}
|
34
|
+
});
|
35
|
+
|
36
|
+
// Base styles for links
|
37
|
+
addBase({
|
38
|
+
a: {
|
39
|
+
color: theme("colors.accent.600"),
|
40
|
+
"&:hover": {
|
41
|
+
textDecoration: "underline"
|
42
|
+
}
|
43
|
+
}
|
44
|
+
});
|
45
|
+
});
|
46
|
+
module.exports = basePlugin;
|