@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,33 @@
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
3
|
+
var _excluded = ["width", "height"];
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
6
|
+
import { forwardRef } from "react";
|
7
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
8
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
9
|
+
export var QueryBreakdownIcon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
10
|
+
var _ref$width = _ref.width,
|
11
|
+
width = _ref$width === void 0 ? 24 : _ref$width,
|
12
|
+
_ref$height = _ref.height,
|
13
|
+
height = _ref$height === void 0 ? 24 : _ref$height,
|
14
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
15
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
16
|
+
ref: ref,
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
18
|
+
width: width,
|
19
|
+
height: height,
|
20
|
+
viewBox: "0 0 16 16"
|
21
|
+
}, rest), {}, {
|
22
|
+
children: [/*#__PURE__*/_jsx("path", {
|
23
|
+
fill: "currentColor",
|
24
|
+
fillRule: "evenodd",
|
25
|
+
d: "M14 8A6 6 0 1 1 2 8a6 6 0 0 1 12 0Zm-1.416 5.29a7 7 0 1 1 .707-.707.486.486 0 0 1 .01.01l2.449 2.45a.5.5 0 1 1-.707.707l-2.45-2.45a.952.952 0 0 1-.01-.01Z",
|
26
|
+
clipRule: "evenodd"
|
27
|
+
}), /*#__PURE__*/_jsx("path", {
|
28
|
+
fill: "currentColor",
|
29
|
+
d: "m9.9 11-.58-1.683H6.903L6.318 11h-1.01l2.29-6.341h1.058L10.946 11H9.9ZM8.076 5.81l-.923 2.68H9.07l-.918-2.68h-.075Z"
|
30
|
+
})]
|
31
|
+
}));
|
32
|
+
});
|
33
|
+
QueryBreakdownIcon.displayName = "QueryBreakdownIcon";
|
@@ -0,0 +1,29 @@
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
3
|
+
var _excluded = ["width", "height"];
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
6
|
+
import { forwardRef } from "react";
|
7
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
8
|
+
export var RocketIcon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
9
|
+
var _ref$width = _ref.width,
|
10
|
+
width = _ref$width === void 0 ? 24 : _ref$width,
|
11
|
+
_ref$height = _ref.height,
|
12
|
+
height = _ref$height === void 0 ? 24 : _ref$height,
|
13
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
14
|
+
return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
|
15
|
+
ref: ref,
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
17
|
+
width: width,
|
18
|
+
height: height,
|
19
|
+
viewBox: "0 0 16 16"
|
20
|
+
}, rest), {}, {
|
21
|
+
children: /*#__PURE__*/_jsx("path", {
|
22
|
+
fill: "currentColor",
|
23
|
+
fillRule: "evenodd",
|
24
|
+
d: "M8.184 11.786c1.195-.902 3.182-2.46 4.562-3.842.87-.87 1.39-2.328 1.582-3.751a7.896 7.896 0 0 0 .05-1.822 2.92 2.92 0 0 0-.105-.555 1.04 1.04 0 0 0-.023-.065 1.069 1.069 0 0 0-.064-.022 2.908 2.908 0 0 0-.555-.105 7.863 7.863 0 0 0-1.82.05c-1.422.191-2.878.713-3.747 1.583-1.38 1.382-2.937 3.37-3.837 4.567-.083.111-.145.458.195.798l2.965 2.969c.34.34.686.278.797.195Zm6.731-10.7C14.167.335 9.56.452 7.411 2.602 5.98 4.034 4.39 6.068 3.489 7.268c-.427.567-.302 1.427.28 2.009l2.964 2.968c.581.581 1.44.707 2.007.28 1.198-.904 3.23-2.496 4.66-3.927 2.147-2.15 2.264-6.763 1.515-7.513Zm-1.784 4.117a2.347 2.347 0 0 1-2.345 2.348A2.347 2.347 0 0 1 8.44 5.203a2.347 2.347 0 0 1 2.346-2.348 2.347 2.347 0 0 1 2.345 2.348Zm-2.345 1.423a1.422 1.422 0 1 0-.002-2.844 1.422 1.422 0 0 0 .002 2.844Zm-7.69-4.69c-.4-.045-.794.118-1.045.433L.258 4.61a1.174 1.174 0 0 0 .787 1.9l1.456.163a.463.463 0 0 0 .102-.92l-1.456-.162A.25.25 0 0 1 .98 5.19l1.792-2.243a.249.249 0 0 1 .222-.091l2.35.26a.463.463 0 1 0 .102-.918l-2.35-.262Zm10.882 12.008c.31-.249.474-.638.434-1.034l-.27-2.713a.462.462 0 0 0-.92.092l.271 2.713a.249.249 0 0 1-.092.22l-2.244 1.797a.249.249 0 0 1-.403-.167l-.162-1.458a.462.462 0 0 0-.918.101l.162 1.46a1.172 1.172 0 0 0 1.898.786l2.244-1.797ZM2.628 11.12a.463.463 0 0 0-.654-.654l-.768.77a.463.463 0 0 0 .653.653l.768-.769Zm2.842 2.193c.18.18.18.473 0 .654l-.768.769a.462.462 0 1 1-.653-.655l.768-.768a.46.46 0 0 1 .653 0Zm-1.421-.77a.463.463 0 0 0-.654-.654l-2.19 2.193a.463.463 0 0 0 .654.654l2.19-2.193Z",
|
25
|
+
clipRule: "evenodd"
|
26
|
+
})
|
27
|
+
}));
|
28
|
+
});
|
29
|
+
RocketIcon.displayName = "RocketIcon";
|
@@ -0,0 +1,29 @@
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
3
|
+
var _excluded = ["width", "height"];
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
6
|
+
import { forwardRef } from "react";
|
7
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
8
|
+
export var SettingsCategoryPagesIcon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
9
|
+
var _ref$width = _ref.width,
|
10
|
+
width = _ref$width === void 0 ? 24 : _ref$width,
|
11
|
+
_ref$height = _ref.height,
|
12
|
+
height = _ref$height === void 0 ? 24 : _ref$height,
|
13
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
14
|
+
return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
|
15
|
+
ref: ref,
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
17
|
+
width: width,
|
18
|
+
height: height,
|
19
|
+
viewBox: "0 0 16 16"
|
20
|
+
}, rest), {}, {
|
21
|
+
children: /*#__PURE__*/_jsx("path", {
|
22
|
+
fill: "currentColor",
|
23
|
+
fillRule: "evenodd",
|
24
|
+
d: "M4.111 7H1.89v6h2.22V7ZM5 6v8H1V6h4Zm9-3H2v1h12V3Zm1-1v3H1V2h14Zm-6 9H7v2h2v-2Zm1-1v4H6v-4h4ZM9 7H7v1h2V7Zm1-1v3H6V6h4Zm4 5h-2v2h2v-2Zm1-1v4h-4v-4h4Zm-1-3.083h-2V8h2V6.917ZM15 6v3h-4V6h4Z",
|
25
|
+
clipRule: "evenodd"
|
26
|
+
})
|
27
|
+
}));
|
28
|
+
});
|
29
|
+
SettingsCategoryPagesIcon.displayName = "SettingsCategoryPagesIcon";
|
@@ -0,0 +1,64 @@
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
3
|
+
var _excluded = ["width", "height"];
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
6
|
+
import { forwardRef } from "react";
|
7
|
+
import { getUniqueIconId } from "./utils";
|
8
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
9
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
10
|
+
var id1 = getUniqueIconId();
|
11
|
+
var id2 = getUniqueIconId();
|
12
|
+
export var SettingsConsequencesIcon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
13
|
+
var _ref$width = _ref.width,
|
14
|
+
width = _ref$width === void 0 ? 24 : _ref$width,
|
15
|
+
_ref$height = _ref.height,
|
16
|
+
height = _ref$height === void 0 ? 24 : _ref$height,
|
17
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
18
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
19
|
+
ref: ref,
|
20
|
+
xmlns: "http://www.w3.org/2000/svg",
|
21
|
+
width: width,
|
22
|
+
height: height,
|
23
|
+
viewBox: "0 0 16 16"
|
24
|
+
}, rest), {}, {
|
25
|
+
children: [/*#__PURE__*/_jsx("mask", {
|
26
|
+
id: id1,
|
27
|
+
fill: "#fff",
|
28
|
+
children: /*#__PURE__*/_jsx("path", {
|
29
|
+
d: "M11 12H6v1h5v-1Z"
|
30
|
+
})
|
31
|
+
}), /*#__PURE__*/_jsx("path", {
|
32
|
+
fill: "currentColor",
|
33
|
+
d: "M11 12H6v1h5v-1Z"
|
34
|
+
}), /*#__PURE__*/_jsx("path", {
|
35
|
+
fill: "currentColor",
|
36
|
+
d: "M6 12v-1H5v1h1Zm5 0h1v-1h-1v1Zm0 1v1h1v-1h-1Zm-5 0H5v1h1v-1Zm0 0h5v-2H6v2Zm4-1v1h2v-1h-2Zm1 0H6v2h5v-2Zm-4 1v-1H5v1h2Z",
|
37
|
+
mask: "url(#".concat(id1, ")")
|
38
|
+
}), /*#__PURE__*/_jsx("mask", {
|
39
|
+
id: id2,
|
40
|
+
fill: "#fff",
|
41
|
+
children: /*#__PURE__*/_jsx("path", {
|
42
|
+
d: "M11 2H6v1h5V2Z"
|
43
|
+
})
|
44
|
+
}), /*#__PURE__*/_jsx("path", {
|
45
|
+
fill: "currentColor",
|
46
|
+
d: "M11 2H6v1h5V2Z"
|
47
|
+
}), /*#__PURE__*/_jsx("path", {
|
48
|
+
fill: "currentColor",
|
49
|
+
d: "M6 2V1H5v1h1Zm5 0h1V1h-1v1Zm0 1v1h1V3h-1ZM6 3H5v1h1V3Zm0 0h5V1H6v2Zm4-1v1h2V2h-2Zm1 0H6v2h5V2ZM7 3V2H5v1h2Z",
|
50
|
+
mask: "url(#".concat(id2, ")")
|
51
|
+
}), /*#__PURE__*/_jsx("path", {
|
52
|
+
fill: "none",
|
53
|
+
stroke: "currentColor",
|
54
|
+
d: "M12.5 11a1.496 1.496 0 0 1 1.5 1.5 1.496 1.496 0 0 1-1.5 1.5 1.496 1.496 0 0 1-1.5-1.5 1.496 1.496 0 0 1 1.5-1.5Zm0-10c.414 0 .79.168 1.06.44a1.495 1.495 0 0 1 0 2.121 1.496 1.496 0 0 1-2.121 0A1.495 1.495 0 0 1 11 2.5c0-.414.168-.79.44-1.06A1.49 1.49 0 0 1 12.5 1Zm-10 5c.414 0 .79.168 1.06.44a1.495 1.495 0 0 1 0 2.121C3.29 8.832 2.915 9 2.5 9a1.49 1.49 0 0 1-1.06-.44A1.495 1.495 0 0 1 1 7.5c0-.414.168-.79.44-1.06A1.49 1.49 0 0 1 2.5 6ZM4 11v3H1v-3h3ZM4 1v3H1V1h3Zm10 5v3h-3V6h3Z",
|
55
|
+
clipRule: "evenodd"
|
56
|
+
}), /*#__PURE__*/_jsx("path", {
|
57
|
+
fill: "currentColor",
|
58
|
+
stroke: "currentColor",
|
59
|
+
strokeWidth: ".5",
|
60
|
+
d: "M4.25 7.25h4.5v.5h-4.5z"
|
61
|
+
})]
|
62
|
+
}));
|
63
|
+
});
|
64
|
+
SettingsConsequencesIcon.displayName = "SettingsConsequencesIcon";
|
@@ -0,0 +1,29 @@
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
3
|
+
var _excluded = ["width", "height"];
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
6
|
+
import { forwardRef } from "react";
|
7
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
8
|
+
export var TestingIcon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
9
|
+
var _ref$width = _ref.width,
|
10
|
+
width = _ref$width === void 0 ? 24 : _ref$width,
|
11
|
+
_ref$height = _ref.height,
|
12
|
+
height = _ref$height === void 0 ? 24 : _ref$height,
|
13
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
14
|
+
return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
|
15
|
+
ref: ref,
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
17
|
+
width: width,
|
18
|
+
height: height,
|
19
|
+
viewBox: "0 0 16 16"
|
20
|
+
}, rest), {}, {
|
21
|
+
children: /*#__PURE__*/_jsx("path", {
|
22
|
+
fill: "currentColor",
|
23
|
+
fillRule: "evenodd",
|
24
|
+
clipRule: "evenodd",
|
25
|
+
d: "M6.52 1.023c0-.24.194-.433.433-.433h2.093c.24 0 .434.194.434.433V6.46l.448.593c.668.881 1.52 2.005 2.264 3.07.483.691.928 1.367 1.255 1.946.163.29.3.563.399.806.094.234.169.482.169.706 0 .74-.397 1.21-.807 1.48a2.3 2.3 0 0 1-.579.269c-.164.05-.326.08-.443.08H3.814c-.117 0-.28-.03-.444-.08a2.301 2.301 0 0 1-.578-.27c-.41-.268-.807-.74-.807-1.479 0-.224.075-.472.17-.706.097-.243.235-.517.398-.806a25.12 25.12 0 0 1 1.255-1.945c.745-1.066 1.596-2.19 2.264-3.07v-.001l.448-.593V1.023Zm.867.434v5.148a.43.43 0 0 1-.087.26l-.545.72a101.56 101.56 0 0 0-2.237 3.035 24.217 24.217 0 0 0-1.21 1.875 6.265 6.265 0 0 0-.35.704c-.083.206-.106.328-.106.382 0 .378.185.604.414.754a1.438 1.438 0 0 0 .547.208h8.373a1.438 1.438 0 0 0 .547-.208.848.848 0 0 0 .415-.754c0-.054-.023-.176-.106-.382a6.254 6.254 0 0 0-.35-.704 24.209 24.209 0 0 0-1.21-1.875 100.7 100.7 0 0 0-2.238-3.034L8.7 6.865a.433.433 0 0 1-.087-.26V1.457H7.387Zm.546 6.563c.182.156.203.43.047.61v.002l-.005.005-.017.02a12.884 12.884 0 0 0-.317.388c-.215.268-.516.655-.86 1.129a27.898 27.898 0 0 0-1.903 2.974h2.075a.433.433 0 1 1 0 .867h-2.79a.433.433 0 0 1-.388-.627c.712-1.425 1.6-2.755 2.305-3.724a32.072 32.072 0 0 1 1.216-1.567l.019-.022.005-.006.002-.002.33.282-.33-.282a.433.433 0 0 1 .611-.047Zm1.579 3.384a.433.433 0 1 0 0 .867h.232a.433.433 0 0 0 0-.867h-.232Zm1.628 1.744a.433.433 0 1 0 0 .867h.232a.433.433 0 1 0 0-.867h-.232Z"
|
26
|
+
})
|
27
|
+
}));
|
28
|
+
});
|
29
|
+
TestingIcon.displayName = "TestingIcon";
|
@@ -0,0 +1,54 @@
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
3
|
+
var _excluded = ["width", "height"];
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
6
|
+
import { forwardRef } from "react";
|
7
|
+
import { getUniqueIconId } from "./utils";
|
8
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
9
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
10
|
+
var id1 = getUniqueIconId();
|
11
|
+
var id2 = getUniqueIconId();
|
12
|
+
export var UnpinIcon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
13
|
+
var _ref$width = _ref.width,
|
14
|
+
width = _ref$width === void 0 ? 24 : _ref$width,
|
15
|
+
_ref$height = _ref.height,
|
16
|
+
height = _ref$height === void 0 ? 24 : _ref$height,
|
17
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
18
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
19
|
+
ref: ref,
|
20
|
+
xmlns: "http://www.w3.org/2000/svg",
|
21
|
+
width: width,
|
22
|
+
height: height,
|
23
|
+
viewBox: "0 0 12 15"
|
24
|
+
}, rest), {}, {
|
25
|
+
children: [/*#__PURE__*/_jsx("defs", {
|
26
|
+
children: /*#__PURE__*/_jsx("path", {
|
27
|
+
id: id1,
|
28
|
+
d: "m3.74 6.88 1.153.74a4.42 4.42 0 0 0-1.467 2.428l-.046.239h5.88l2.073 1.28H8.667v2.546a2.31 2.31 0 0 1-.087.667c-.16.427-.42.487-.58.487a.627.627 0 0 1-.587-.447 2.16 2.16 0 0 1-.08-.498v-2.729H2.667A.667.667 0 0 1 2 10.927 5.64 5.64 0 0 1 3.74 6.88ZM2.667 4.3A.667.667 0 0 1 3 4.4l2.273 1.407L6.54 6.6l6 3.713 1.12.667a.727.727 0 0 1 .253.26.753.753 0 0 1 .02.747.667.667 0 0 1-.566.346.667.667 0 0 1-.34-.1L12 11.567l-2.093-1.28-4.734-2.92L4 6.667 2.347 5.62a.74.74 0 0 1-.26-.953.667.667 0 0 1 .58-.367ZM4 1.28h7.993a.667.667 0 0 1 .099 1.326l-.099.007H10.66v3.134a5.713 5.713 0 0 1 3.333 5.046l-.075-.068-.085-.058-1.293-.774A4.507 4.507 0 0 0 9.747 6.78a.667.667 0 0 1-.403-.497l-.01-.096V2.613H6.666v3.574l.002.04-.002.04-1.334-.82V2.613H4a.667.667 0 0 1-.11-1.324L4 1.28h7.993Z"
|
29
|
+
})
|
30
|
+
}), /*#__PURE__*/_jsxs("g", {
|
31
|
+
fill: "none",
|
32
|
+
fillRule: "evenodd",
|
33
|
+
transform: "translate(-2 -1)",
|
34
|
+
children: [/*#__PURE__*/_jsx("mask", {
|
35
|
+
id: id2,
|
36
|
+
fill: "#fff",
|
37
|
+
children: /*#__PURE__*/_jsx("use", {
|
38
|
+
xlinkHref: "#".concat(id1)
|
39
|
+
})
|
40
|
+
}), /*#__PURE__*/_jsx("use", {
|
41
|
+
xlinkHref: "#".concat(id1),
|
42
|
+
fill: "#000",
|
43
|
+
fillRule: "nonzero"
|
44
|
+
}), /*#__PURE__*/_jsx("g", {
|
45
|
+
fill: "currentColor",
|
46
|
+
mask: "url(#".concat(id2, ")"),
|
47
|
+
children: /*#__PURE__*/_jsx("path", {
|
48
|
+
d: "M-8-8h32v32H-8z"
|
49
|
+
})
|
50
|
+
})]
|
51
|
+
})]
|
52
|
+
}));
|
53
|
+
});
|
54
|
+
UnpinIcon.displayName = "UnpinIcon";
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
3
|
+
var _excluded = ["width", "height"];
|
4
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
5
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
6
|
+
import { forwardRef } from "react";
|
7
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
8
|
+
export var WorkspaceSwitcherIcon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
9
|
+
var _ref$width = _ref.width,
|
10
|
+
width = _ref$width === void 0 ? 24 : _ref$width,
|
11
|
+
_ref$height = _ref.height,
|
12
|
+
height = _ref$height === void 0 ? 24 : _ref$height,
|
13
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
14
|
+
return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
|
15
|
+
ref: ref,
|
16
|
+
xmlns: "http://www.w3.org/2000/svg",
|
17
|
+
width: width,
|
18
|
+
height: height,
|
19
|
+
viewBox: "0 0 14 14"
|
20
|
+
}, rest), {}, {
|
21
|
+
children: /*#__PURE__*/_jsx("path", {
|
22
|
+
fill: "currentColor",
|
23
|
+
d: "M.499.25h3.553v3.553H.499zm0 4.974h3.553v3.553H.499zm0 4.973h3.553v3.553H.499zM5.472.25h3.553v3.553H5.472zm0 4.974h3.553v3.553H5.472zm0 4.973h3.553v3.553H5.472zM10.446.25h3.553v3.553h-3.553zm0 4.974h3.553v3.553h-3.553zm0 4.973h3.553v3.553h-3.553z"
|
24
|
+
})
|
25
|
+
}));
|
26
|
+
});
|
27
|
+
WorkspaceSwitcherIcon.displayName = "WorkspaceSwitcherIcon";
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import type { ComponentClass, SVGAttributes, VoidFunctionComponent } from "react";
|
2
|
+
export declare type IconProps = SVGAttributes<SVGElement>;
|
3
|
+
export declare type IconComponentType = VoidFunctionComponent<IconProps> | ComponentClass<IconProps>;
|
4
|
+
export { DragHandleIcon } from "./DragHandleIcon";
|
5
|
+
export { NoFiltersIcon } from "./NoFiltersIcon";
|
6
|
+
export { CrawlerIcon } from "./CrawlerIcon";
|
7
|
+
export { NeuralSearchIcon } from "./NeuralSearchIcon";
|
8
|
+
export { UnpinIcon } from "./UnpinIcon";
|
9
|
+
export { PinIcon } from "./PinIcon";
|
10
|
+
export { SettingsCategoryPagesIcon } from "./SettingsCategoryPagesIcon";
|
11
|
+
export { SettingsConsequencesIcon } from "./SettingsConsequencesIcon";
|
12
|
+
export { WorkspaceSwitcherIcon } from "./WorkspaceSwitcherIcon";
|
13
|
+
export { AlgoliaSearchIcon } from "./AlgoliaSearchIcon";
|
14
|
+
export { AlgoliaRecommendIcon } from "./AlgoliaRecommendIcon";
|
15
|
+
export { ContextIcon } from "./ContextIcon";
|
16
|
+
export { QueryBreakdownIcon } from "./QueryBreakdownIcon";
|
17
|
+
export { BulbIcon } from "./BulbIcon";
|
18
|
+
export { TestingIcon } from "./TestingIcon";
|
19
|
+
export { RocketIcon } from "./RocketIcon";
|
20
|
+
export { ActivityIcon, AirplayIcon, AlertCircleIcon, AlertOctagonIcon, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, AnchorIcon, ApertureIcon, ArchiveIcon, ArrowDownCircleIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftCircleIcon, ArrowLeftIcon, ArrowRightCircleIcon, ArrowRightIcon, ArrowUpCircleIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AwardIcon, BanIcon, BarChart2Icon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BookOpenIcon, BoxIcon, BriefcaseIcon, CalendarIcon, CameraIcon, CameraOffIcon, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChevronUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, CodeIcon, CodepenIcon, CodesandboxIcon, CoffeeIcon, ColumnsIcon, CommandIcon, CompassIcon, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, DatabaseIcon, DeleteIcon, DiscIcon, DivideCircleIcon, DivideIcon, DivideSquareIcon, DollarSignIcon, DownloadCloudIcon, DownloadIcon, DribbbleIcon, DropletIcon, Edit2Icon, Edit3Icon, EditIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FlaskConicalIcon, FolderIcon, FolderMinusIcon, FolderPlusIcon, FramerIcon, FrownIcon, GiftIcon, GitBranchIcon, GitCommitIcon, GithubIcon, GitlabIcon, GitMergeIcon, GitPullRequestIcon, GlobeIcon, HardDriveIcon, HashIcon, HeadphonesIcon, HeartIcon, HelpCircleIcon, HexagonIcon, HomeIcon, ImageIcon, InboxIcon, InfoIcon, InstagramIcon, ItalicIcon, KeyIcon, LayersIcon, LayoutIcon, LayoutGridIcon, LifeBuoyIcon, Link2Icon, LinkedinIcon, LinkIcon, ListIcon, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MapIcon, MapPinIcon, Maximize2Icon, MaximizeIcon, MehIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, Minimize2Icon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MousePointerIcon, MoveIcon, MusicIcon, Navigation2Icon, NavigationIcon, OctagonIcon, PackageIcon, PaperclipIcon, PauseCircleIcon, PauseIcon, PenToolIcon, PercentIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, RadioIcon, RefreshCcwIcon, RefreshCwIcon, RepeatIcon, RewindIcon, RotateCcwIcon, RotateCwIcon, RssIcon, SaveIcon, ScissorsIcon, SearchIcon, SendIcon, ServerIcon, SettingsIcon, Share2Icon, ShareIcon, ShieldIcon, ShieldOffIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SlackIcon, SlidersIcon, SmartphoneIcon, SmileIcon, SpeakerIcon, SquareIcon, StarIcon, StopCircleIcon, SunIcon, SunriseIcon, SunsetIcon, TableIcon, TabletIcon, TagIcon, TargetIcon, TerminalIcon, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, ToggleLeftIcon, ToggleRightIcon, Trash2Icon, TrashIcon, TrelloIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TruckIcon, TvIcon, TwitchIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UsersIcon, UserXIcon, VideoIcon, VideoOffIcon, VoicemailIcon, Volume1Icon, Volume2Icon, VolumeIcon, VolumeXIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, WrenchIcon, XCircleIcon, XIcon, XOctagonIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZapOffIcon, ZoomInIcon, ZoomOutIcon, } from "lucide-react";
|
@@ -0,0 +1,22 @@
|
|
1
|
+
// Not using ComponentType because it adds children to the props through the use of FunctionComponent.
|
2
|
+
// TODO: Use ComponentType directly when upgrading to React 18
|
3
|
+
// Custom icons
|
4
|
+
export { DragHandleIcon } from "./DragHandleIcon";
|
5
|
+
export { NoFiltersIcon } from "./NoFiltersIcon";
|
6
|
+
export { CrawlerIcon } from "./CrawlerIcon";
|
7
|
+
export { NeuralSearchIcon } from "./NeuralSearchIcon";
|
8
|
+
export { UnpinIcon } from "./UnpinIcon";
|
9
|
+
export { PinIcon } from "./PinIcon";
|
10
|
+
export { SettingsCategoryPagesIcon } from "./SettingsCategoryPagesIcon";
|
11
|
+
export { SettingsConsequencesIcon } from "./SettingsConsequencesIcon";
|
12
|
+
export { WorkspaceSwitcherIcon } from "./WorkspaceSwitcherIcon";
|
13
|
+
export { AlgoliaSearchIcon } from "./AlgoliaSearchIcon";
|
14
|
+
export { AlgoliaRecommendIcon } from "./AlgoliaRecommendIcon";
|
15
|
+
export { ContextIcon } from "./ContextIcon";
|
16
|
+
export { QueryBreakdownIcon } from "./QueryBreakdownIcon";
|
17
|
+
export { BulbIcon } from "./BulbIcon";
|
18
|
+
export { TestingIcon } from "./TestingIcon";
|
19
|
+
export { RocketIcon } from "./RocketIcon";
|
20
|
+
|
21
|
+
// Feather icons
|
22
|
+
export { ActivityIcon, AirplayIcon, AlertCircleIcon, AlertOctagonIcon, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, AnchorIcon, ApertureIcon, ArchiveIcon, ArrowDownCircleIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftCircleIcon, ArrowLeftIcon, ArrowRightCircleIcon, ArrowRightIcon, ArrowUpCircleIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AwardIcon, BanIcon, BarChart2Icon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BluetoothIcon, BoldIcon, BookIcon, BookmarkIcon, BookOpenIcon, BoxIcon, BriefcaseIcon, CalendarIcon, CameraIcon, CameraOffIcon, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChevronUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, CodeIcon, CodepenIcon, CodesandboxIcon, CoffeeIcon, ColumnsIcon, CommandIcon, CompassIcon, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, DatabaseIcon, DeleteIcon, DiscIcon, DivideCircleIcon, DivideIcon, DivideSquareIcon, DollarSignIcon, DownloadCloudIcon, DownloadIcon, DribbbleIcon, DropletIcon, Edit2Icon, Edit3Icon, EditIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FlaskConicalIcon, FolderIcon, FolderMinusIcon, FolderPlusIcon, FramerIcon, FrownIcon, GiftIcon, GitBranchIcon, GitCommitIcon, GithubIcon, GitlabIcon, GitMergeIcon, GitPullRequestIcon, GlobeIcon, HardDriveIcon, HashIcon, HeadphonesIcon, HeartIcon, HelpCircleIcon, HexagonIcon, HomeIcon, ImageIcon, InboxIcon, InfoIcon, InstagramIcon, ItalicIcon, KeyIcon, LayersIcon, LayoutIcon, LayoutGridIcon, LifeBuoyIcon, Link2Icon, LinkedinIcon, LinkIcon, ListIcon, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MapIcon, MapPinIcon, Maximize2Icon, MaximizeIcon, MehIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, Minimize2Icon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MousePointerIcon, MoveIcon, MusicIcon, Navigation2Icon, NavigationIcon, OctagonIcon, PackageIcon, PaperclipIcon, PauseCircleIcon, PauseIcon, PenToolIcon, PercentIcon, PhoneCallIcon, PhoneForwardedIcon, PhoneIcon, PhoneIncomingIcon, PhoneMissedIcon, PhoneOffIcon, PhoneOutgoingIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, RadioIcon, RefreshCcwIcon, RefreshCwIcon, RepeatIcon, RewindIcon, RotateCcwIcon, RotateCwIcon, RssIcon, SaveIcon, ScissorsIcon, SearchIcon, SendIcon, ServerIcon, SettingsIcon, Share2Icon, ShareIcon, ShieldIcon, ShieldOffIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SlackIcon, SlidersIcon, SmartphoneIcon, SmileIcon, SpeakerIcon, SquareIcon, StarIcon, StopCircleIcon, SunIcon, SunriseIcon, SunsetIcon, TableIcon, TabletIcon, TagIcon, TargetIcon, TerminalIcon, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, ToggleLeftIcon, ToggleRightIcon, Trash2Icon, TrashIcon, TrelloIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TruckIcon, TvIcon, TwitchIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UsersIcon, UserXIcon, VideoIcon, VideoOffIcon, VoicemailIcon, Volume1Icon, Volume2Icon, VolumeIcon, VolumeXIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, WrenchIcon, XCircleIcon, XIcon, XOctagonIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZapOffIcon, ZoomInIcon, ZoomOutIcon } from "lucide-react";
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare function getUniqueIconId(): string;
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import type { InputHTMLAttributes, ReactNode } from "react";
|
2
|
+
import type { IconComponentType } from "../Icons";
|
3
|
+
export declare type InputVariant = "small" | "medium" | "large";
|
4
|
+
export declare type InputStatus = "default" | "validated" | "invalid";
|
5
|
+
export declare type InputPropsLocale = {
|
6
|
+
clearInput?: string;
|
7
|
+
increment?: string;
|
8
|
+
decrement?: string;
|
9
|
+
};
|
10
|
+
export interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "checked" | "defaultChecked"> {
|
11
|
+
type?: "text" | "number" | "search" | "email" | "password";
|
12
|
+
variant?: InputVariant;
|
13
|
+
startIcon?: IconComponentType;
|
14
|
+
endItem?: ReactNode;
|
15
|
+
/**
|
16
|
+
* Define whether or not a "clear input" x button should show on hover
|
17
|
+
* @default false
|
18
|
+
*/
|
19
|
+
clearable?: boolean;
|
20
|
+
locale?: InputPropsLocale;
|
21
|
+
}
|
22
|
+
/**
|
23
|
+
* The `Input` component is a flexible, user-friendly component for efficient text and number entry across forms and applications.
|
24
|
+
*
|
25
|
+
* See the [Input documentation page](https://satellite.algolia.com/components/forms/input) for more information.
|
26
|
+
*/
|
27
|
+
export declare const Input: import("react").ForwardRefExoticComponent<InputProps & import("react").RefAttributes<HTMLInputElement>>;
|
@@ -0,0 +1,206 @@
|
|
1
|
+
import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
|
3
|
+
import _defineProperty from "@babel/runtime/helpers/defineProperty";
|
4
|
+
import _taggedTemplateLiteral from "@babel/runtime/helpers/taggedTemplateLiteral";
|
5
|
+
var _excluded = ["className", "style", "startIcon", "endItem", "disabled", "readOnly", "clearable", "type", "variant", "locale"];
|
6
|
+
var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5, _templateObject6, _templateObject7, _templateObject8, _templateObject9, _templateObject10, _templateObject11, _templateObject12, _templateObject13, _templateObject14;
|
7
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
8
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
9
|
+
import cx from "clsx";
|
10
|
+
import { forwardRef, Fragment, useEffect, useState } from "react";
|
11
|
+
import { IconButton } from "../Button";
|
12
|
+
import { useField } from "../Field";
|
13
|
+
import { CheckIcon, ChevronDownIcon, ChevronUpIcon, SearchIcon as SearchBaseIcon, XIcon } from "../Icons";
|
14
|
+
import { useLocale } from "../Satellite";
|
15
|
+
import stl from "../styles/helpers/satellitePrefixer";
|
16
|
+
import { isNil } from "../utils/isNil";
|
17
|
+
import { useForwardedRef } from "../utils/useForwardedRef";
|
18
|
+
import { useTriggerInputChange } from "../utils/useTriggerInputChange";
|
19
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
20
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
21
|
+
var DEFAULT_INPUT_LOCALE = {
|
22
|
+
clearInput: "Clear input",
|
23
|
+
increment: "Increment",
|
24
|
+
decrement: "Decrement"
|
25
|
+
};
|
26
|
+
var STATUS_CLASSNAMES = {
|
27
|
+
"default": "",
|
28
|
+
invalid: stl(_templateObject || (_templateObject = _taggedTemplateLiteral(["input-invalid"]))),
|
29
|
+
validated: ""
|
30
|
+
};
|
31
|
+
var VARIANT_CLASSNAMES = {
|
32
|
+
small: stl(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["input-small"]))),
|
33
|
+
medium: stl(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["input-medium"]))),
|
34
|
+
large: stl(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["input-large"])))
|
35
|
+
};
|
36
|
+
var SearchIcon = function SearchIcon(props) {
|
37
|
+
return /*#__PURE__*/_jsx(SearchBaseIcon, _objectSpread(_objectSpread({}, props), {}, {
|
38
|
+
role: "img",
|
39
|
+
"aria-label": "Search Icon"
|
40
|
+
}));
|
41
|
+
};
|
42
|
+
var InvalidIcon = function InvalidIcon() {
|
43
|
+
return /*#__PURE__*/_jsx(XIcon, {
|
44
|
+
className: stl(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["mr-4 h-4 w-4 text-white bg-red-700 p-px rounded-full"])))
|
45
|
+
});
|
46
|
+
};
|
47
|
+
var ValidatedIcon = function ValidatedIcon() {
|
48
|
+
return /*#__PURE__*/_jsx(CheckIcon, {
|
49
|
+
className: stl(_templateObject6 || (_templateObject6 = _taggedTemplateLiteral(["mr-4 h-4 w-4 text-white bg-accent-600 p-px rounded-full"])))
|
50
|
+
});
|
51
|
+
};
|
52
|
+
|
53
|
+
/**
|
54
|
+
* The `Input` component is a flexible, user-friendly component for efficient text and number entry across forms and applications.
|
55
|
+
*
|
56
|
+
* See the [Input documentation page](https://satellite.algolia.com/components/forms/input) for more information.
|
57
|
+
*/
|
58
|
+
export var Input = /*#__PURE__*/forwardRef(function (_ref, externalRef) {
|
59
|
+
var className = _ref.className,
|
60
|
+
style = _ref.style,
|
61
|
+
startIcon = _ref.startIcon,
|
62
|
+
endItem = _ref.endItem,
|
63
|
+
disabled = _ref.disabled,
|
64
|
+
readOnly = _ref.readOnly,
|
65
|
+
clearableProp = _ref.clearable,
|
66
|
+
_ref$type = _ref.type,
|
67
|
+
type = _ref$type === void 0 ? "text" : _ref$type,
|
68
|
+
_ref$variant = _ref.variant,
|
69
|
+
variant = _ref$variant === void 0 ? "medium" : _ref$variant,
|
70
|
+
propsLocale = _ref.locale,
|
71
|
+
inputProps = _objectWithoutProperties(_ref, _excluded);
|
72
|
+
var contextLocale = useLocale("input");
|
73
|
+
var locale = _objectSpread(_objectSpread(_objectSpread({}, DEFAULT_INPUT_LOCALE), contextLocale), propsLocale);
|
74
|
+
var _useState = useState(false),
|
75
|
+
_useState2 = _slicedToArray(_useState, 2),
|
76
|
+
focused = _useState2[0],
|
77
|
+
setFocused = _useState2[1];
|
78
|
+
var _useForwardedRef = useForwardedRef(externalRef),
|
79
|
+
_useForwardedRef2 = _slicedToArray(_useForwardedRef, 2),
|
80
|
+
inputRefCallback = _useForwardedRef2[0],
|
81
|
+
inputRef = _useForwardedRef2[1];
|
82
|
+
var triggerInputChange = useTriggerInputChange(inputRef);
|
83
|
+
var _useField = useField(),
|
84
|
+
status = _useField.state.status,
|
85
|
+
labelId = _useField.labelId;
|
86
|
+
var isControlled = ("value" in inputProps);
|
87
|
+
var _useState3 = useState(function () {
|
88
|
+
return isControlled ? inputProps.value : inputProps.defaultValue;
|
89
|
+
}),
|
90
|
+
_useState4 = _slicedToArray(_useState3, 2),
|
91
|
+
internalValue = _useState4[0],
|
92
|
+
setInternalValue = _useState4[1];
|
93
|
+
var isValueEmpty = typeof internalValue !== "number" && !(internalValue !== null && internalValue !== void 0 && internalValue.length);
|
94
|
+
useEffect(function () {
|
95
|
+
if (isControlled) {
|
96
|
+
setInternalValue(inputProps.value);
|
97
|
+
}
|
98
|
+
}, [inputProps.value, isControlled]);
|
99
|
+
var Icon = startIcon ? startIcon : type === "search" ? SearchIcon : undefined;
|
100
|
+
var iconSize = variant === "small" ? "1rem" : "1.5rem";
|
101
|
+
var StatusIcon = status === "invalid" ? InvalidIcon : status === "validated" ? ValidatedIcon : Fragment;
|
102
|
+
var clearable = typeof clearableProp === "boolean" ? clearableProp : type === "search";
|
103
|
+
return /*#__PURE__*/_jsxs("div", {
|
104
|
+
className: cx(stl(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n input group\n ", "\n ", "\n "])), focused && "input-focused", disabled && "input-disabled"), VARIANT_CLASSNAMES[variant], STATUS_CLASSNAMES[status], className),
|
105
|
+
style: style,
|
106
|
+
onClick: function onClick() {
|
107
|
+
var _inputRef$current;
|
108
|
+
(_inputRef$current = inputRef.current) === null || _inputRef$current === void 0 || _inputRef$current.focus();
|
109
|
+
},
|
110
|
+
children: [Icon && /*#__PURE__*/_jsx(Icon, {
|
111
|
+
className: stl(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["ml-4 shrink-0 ", ""])), disabled ? "text-grey-200" : focused ? "text-accent-600" : "text-grey-500"),
|
112
|
+
width: iconSize,
|
113
|
+
height: iconSize
|
114
|
+
}), /*#__PURE__*/_jsx("input", _objectSpread(_objectSpread({
|
115
|
+
className: stl(_templateObject9 || (_templateObject9 = _taggedTemplateLiteral(["mx-4 no-search-input-decoration"]))),
|
116
|
+
ref: inputRefCallback,
|
117
|
+
type: type,
|
118
|
+
"aria-labelledby": labelId
|
119
|
+
}, inputProps), {}, {
|
120
|
+
readOnly: readOnly,
|
121
|
+
disabled: disabled,
|
122
|
+
onChange: function onChange(evt) {
|
123
|
+
var _inputProps$onChange;
|
124
|
+
(_inputProps$onChange = inputProps.onChange) === null || _inputProps$onChange === void 0 || _inputProps$onChange.call(inputProps, evt);
|
125
|
+
if (!isControlled) {
|
126
|
+
setInternalValue(evt.target.value);
|
127
|
+
}
|
128
|
+
},
|
129
|
+
onFocus: function onFocus(evt) {
|
130
|
+
var _inputProps$onFocus;
|
131
|
+
setFocused(true);
|
132
|
+
(_inputProps$onFocus = inputProps.onFocus) === null || _inputProps$onFocus === void 0 || _inputProps$onFocus.call(inputProps, evt);
|
133
|
+
},
|
134
|
+
onBlur: function onBlur(evt) {
|
135
|
+
var _inputProps$onBlur;
|
136
|
+
setFocused(false);
|
137
|
+
(_inputProps$onBlur = inputProps.onBlur) === null || _inputProps$onBlur === void 0 || _inputProps$onBlur.call(inputProps, evt);
|
138
|
+
}
|
139
|
+
})), clearable && !disabled && !readOnly && !isValueEmpty ? /*#__PURE__*/_jsx(IconButton, {
|
140
|
+
className: stl(_templateObject10 || (_templateObject10 = _taggedTemplateLiteral(["mr-2 ", ""])), focused ? "visible" : "invisible group-hover:visible"),
|
141
|
+
title: locale.clearInput,
|
142
|
+
icon: XIcon,
|
143
|
+
variant: "subtle",
|
144
|
+
size: "small",
|
145
|
+
tabIndex: -1,
|
146
|
+
"aria-hidden": true,
|
147
|
+
onClick: function onClick(evt) {
|
148
|
+
evt.preventDefault();
|
149
|
+
triggerInputChange("");
|
150
|
+
}
|
151
|
+
}) : null, !!endItem && /*#__PURE__*/_jsx("div", {
|
152
|
+
className: stl(_templateObject11 || (_templateObject11 = _taggedTemplateLiteral(["mr-4"]))),
|
153
|
+
children: endItem
|
154
|
+
}), /*#__PURE__*/_jsx(StatusIcon, {}), type === "number" && !disabled && /*#__PURE__*/_jsxs("div", {
|
155
|
+
className: stl(_templateObject12 || (_templateObject12 = _taggedTemplateLiteral(["input-spinner"]))),
|
156
|
+
children: [/*#__PURE__*/_jsx("button", {
|
157
|
+
tabIndex: -1,
|
158
|
+
type: "button",
|
159
|
+
disabled: readOnly,
|
160
|
+
className: stl(_templateObject13 || (_templateObject13 = _taggedTemplateLiteral(["input-spinner-button ", ""])), readOnly && "cursor-not-allowed"),
|
161
|
+
"aria-label": locale.increment,
|
162
|
+
onClick: function onClick() {
|
163
|
+
var _inputRef$current$val, _inputRef$current2;
|
164
|
+
var step = inputProps.step ? parseFloat(String(inputProps.step)) : 1;
|
165
|
+
var max = isNil(inputProps.max) ? Number.MAX_SAFE_INTEGER : parseFloat(String(inputProps.max));
|
166
|
+
var currentValue = parseFloat((_inputRef$current$val = (_inputRef$current2 = inputRef.current) === null || _inputRef$current2 === void 0 ? void 0 : _inputRef$current2.value) !== null && _inputRef$current$val !== void 0 ? _inputRef$current$val : "0");
|
167
|
+
if (Number.isNaN(currentValue)) {
|
168
|
+
currentValue = 0;
|
169
|
+
}
|
170
|
+
if (currentValue + step <= max) {
|
171
|
+
triggerInputChange(String(currentValue + step));
|
172
|
+
} else {
|
173
|
+
triggerInputChange(String(max));
|
174
|
+
}
|
175
|
+
},
|
176
|
+
children: /*#__PURE__*/_jsx(ChevronUpIcon, {
|
177
|
+
size: 12
|
178
|
+
})
|
179
|
+
}), /*#__PURE__*/_jsx("button", {
|
180
|
+
tabIndex: -1,
|
181
|
+
type: "button",
|
182
|
+
disabled: readOnly,
|
183
|
+
className: stl(_templateObject14 || (_templateObject14 = _taggedTemplateLiteral(["input-spinner-button ", ""])), readOnly && "cursor-not-allowed"),
|
184
|
+
"aria-label": locale.decrement,
|
185
|
+
onClick: function onClick() {
|
186
|
+
var _inputRef$current$val2, _inputRef$current3;
|
187
|
+
var step = inputProps.step ? parseFloat(String(inputProps.step)) : 1;
|
188
|
+
var min = isNil(inputProps.min) ? Number.MIN_SAFE_INTEGER : parseFloat(String(inputProps.min));
|
189
|
+
var currentValue = parseFloat((_inputRef$current$val2 = (_inputRef$current3 = inputRef.current) === null || _inputRef$current3 === void 0 ? void 0 : _inputRef$current3.value) !== null && _inputRef$current$val2 !== void 0 ? _inputRef$current$val2 : "0");
|
190
|
+
if (Number.isNaN(currentValue)) {
|
191
|
+
currentValue = 0;
|
192
|
+
}
|
193
|
+
if (currentValue - step >= min) {
|
194
|
+
triggerInputChange(String(currentValue - step));
|
195
|
+
} else {
|
196
|
+
triggerInputChange(String(min));
|
197
|
+
}
|
198
|
+
},
|
199
|
+
children: /*#__PURE__*/_jsx(ChevronDownIcon, {
|
200
|
+
size: 12
|
201
|
+
})
|
202
|
+
})]
|
203
|
+
})]
|
204
|
+
});
|
205
|
+
});
|
206
|
+
Input.displayName = "Input";
|