@algolia/satellite 1.0.0-v3.99 → 1.1.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 +457 -0
- package/dist/cjs/AutoComplete/AutoComplete.tailwind.d.ts +5 -0
- package/dist/cjs/AutoComplete/AutoComplete.tailwind.js +104 -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 +96 -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 +104 -0
- package/dist/cjs/Checkbox/Checkbox.tailwind.d.ts +5 -0
- package/dist/cjs/Checkbox/Checkbox.tailwind.js +76 -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 +41 -0
- package/dist/cjs/DatePicker/DatePicker/DatePicker.js +179 -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 +33 -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 +27 -0
- package/dist/cjs/Dropzone/Dropzone.js +174 -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 +25 -0
- package/dist/cjs/Field/Field.js +126 -0
- package/dist/cjs/Field/FieldContext.d.ts +19 -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 +5 -0
- package/dist/cjs/Field/useField.js +27 -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/Form/Form.d.ts +16 -0
- package/dist/cjs/Form/Form.js +140 -0
- package/dist/cjs/Form/FormContext.d.ts +13 -0
- package/dist/cjs/Form/FormContext.js +8 -0
- package/dist/cjs/Form/index.d.ts +3 -0
- package/dist/cjs/Form/index.js +27 -0
- package/dist/cjs/Form/stories/AsynchronousValidation.js +396 -0
- package/dist/cjs/Form/stories/Complex.js +928 -0
- package/dist/cjs/Form/stories/DependentFieldsValidation.js +249 -0
- package/dist/cjs/Form/stories/DirtyFields.js +339 -0
- package/dist/cjs/Form/stories/DynamicFieldsValidation.js +425 -0
- package/dist/cjs/Form/stories/FieldArrays.js +549 -0
- package/dist/cjs/Form/stories/ValidationStrategies.js +455 -0
- package/dist/cjs/Form/stories/utils/useFormikAutoFocusOnError.js +22 -0
- package/dist/cjs/Form/useForm.d.ts +1 -0
- package/dist/cjs/Form/useForm.js +11 -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 +225 -0
- package/dist/cjs/Input/Input.tailwind.d.ts +5 -0
- package/dist/cjs/Input/Input.tailwind.js +128 -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 +41 -0
- package/dist/cjs/RadioGroup/RadioButton.tailwind.d.ts +5 -0
- package/dist/cjs/RadioGroup/RadioButton.tailwind.js +84 -0
- package/dist/cjs/RadioGroup/RadioGroup.d.ts +33 -0
- package/dist/cjs/RadioGroup/RadioGroup.js +154 -0
- package/dist/cjs/RadioGroup/RadioGroupContext.d.ts +18 -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 +35 -0
- package/dist/cjs/RangeSlider/RangeSlider.js +119 -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 +39 -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 +73 -0
- package/dist/cjs/Select/Select.tailwind.d.ts +5 -0
- package/dist/cjs/Select/Select.tailwind.js +95 -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 +10 -0
- package/dist/cjs/TextArea/TextArea.js +71 -0
- package/dist/cjs/TextArea/TextArea.tailwind.d.ts +5 -0
- package/dist/cjs/TextArea/TextArea.tailwind.js +79 -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 +90 -0
- package/dist/cjs/Toggle/Toggle.tailwind.d.ts +5 -0
- package/dist/cjs/Toggle/Toggle.tailwind.js +93 -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 +55 -0
- package/dist/cjs/index.js +652 -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/mergeRefs.d.ts +2 -0
- package/dist/cjs/utils/mergeRefs.js +17 -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 +453 -0
- package/dist/esm/AutoComplete/AutoComplete.tailwind.d.ts +5 -0
- package/dist/esm/AutoComplete/AutoComplete.tailwind.js +105 -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 +96 -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 +98 -0
- package/dist/esm/Checkbox/Checkbox.tailwind.d.ts +5 -0
- package/dist/esm/Checkbox/Checkbox.tailwind.js +76 -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 +41 -0
- package/dist/esm/DatePicker/DatePicker/DatePicker.js +174 -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 +26 -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 +27 -0
- package/dist/esm/Dropzone/Dropzone.js +168 -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 +25 -0
- package/dist/esm/Field/Field.js +120 -0
- package/dist/esm/Field/FieldContext.d.ts +19 -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 +5 -0
- package/dist/esm/Field/useField.js +20 -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/Form/Form.d.ts +16 -0
- package/dist/esm/Form/Form.js +135 -0
- package/dist/esm/Form/FormContext.d.ts +13 -0
- package/dist/esm/Form/FormContext.js +2 -0
- package/dist/esm/Form/index.d.ts +3 -0
- package/dist/esm/Form/index.js +3 -0
- package/dist/esm/Form/stories/AsynchronousValidation.js +387 -0
- package/dist/esm/Form/stories/Complex.js +919 -0
- package/dist/esm/Form/stories/DependentFieldsValidation.js +240 -0
- package/dist/esm/Form/stories/DirtyFields.js +330 -0
- package/dist/esm/Form/stories/DynamicFieldsValidation.js +416 -0
- package/dist/esm/Form/stories/FieldArrays.js +544 -0
- package/dist/esm/Form/stories/ValidationStrategies.js +446 -0
- package/dist/esm/Form/stories/utils/useFormikAutoFocusOnError.js +16 -0
- package/dist/esm/Form/useForm.d.ts +1 -0
- package/dist/esm/Form/useForm.js +5 -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 +219 -0
- package/dist/esm/Input/Input.tailwind.d.ts +5 -0
- package/dist/esm/Input/Input.tailwind.js +129 -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 +34 -0
- package/dist/esm/RadioGroup/RadioButton.tailwind.d.ts +5 -0
- package/dist/esm/RadioGroup/RadioButton.tailwind.js +85 -0
- package/dist/esm/RadioGroup/RadioGroup.d.ts +33 -0
- package/dist/esm/RadioGroup/RadioGroup.js +148 -0
- package/dist/esm/RadioGroup/RadioGroupContext.d.ts +18 -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 +35 -0
- package/dist/esm/RangeSlider/RangeSlider.js +115 -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 +39 -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 +67 -0
- package/dist/esm/Select/Select.tailwind.d.ts +5 -0
- package/dist/esm/Select/Select.tailwind.js +96 -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 +10 -0
- package/dist/esm/TextArea/TextArea.js +65 -0
- package/dist/esm/TextArea/TextArea.tailwind.d.ts +5 -0
- package/dist/esm/TextArea/TextArea.tailwind.js +80 -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 +84 -0
- package/dist/esm/Toggle/Toggle.tailwind.d.ts +5 -0
- package/dist/esm/Toggle/Toggle.tailwind.js +93 -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 +55 -0
- package/dist/esm/index.js +55 -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/mergeRefs.d.ts +2 -0
- package/dist/esm/utils/mergeRefs.js +11 -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 +178 -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,30 @@
|
|
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 BulbIcon = /*#__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 18 16"
|
20
|
+
}, rest), {}, {
|
21
|
+
children: /*#__PURE__*/_jsx("path", {
|
22
|
+
fill: "none",
|
23
|
+
stroke: "currentColor",
|
24
|
+
strokeLinecap: "round",
|
25
|
+
strokeLinejoin: "round",
|
26
|
+
d: "M8 15.5h2M15.5 8H17M1 8h1.5M9 2V.5M4 4 3 3M14 4l1-1M7.124 13.02v-1.513C5.958 10.806 5 9.439 5 7.987c0-2.497 2.307-4.454 4.913-3.89 1.146.253 2.15 1.01 2.672 2.054 1.06 2.118-.056 4.367-1.694 5.351v1.514c0 .146.056.484-.486.484H7.61c-.558.005-.487-.212-.487-.48Z"
|
27
|
+
})
|
28
|
+
}));
|
29
|
+
});
|
30
|
+
BulbIcon.displayName = "BulbIcon";
|
@@ -0,0 +1,45 @@
|
|
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 ContextIcon = /*#__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 32 32",
|
21
|
+
fill: "none"
|
22
|
+
}, rest), {}, {
|
23
|
+
children: [/*#__PURE__*/_jsx("path", {
|
24
|
+
stroke: "#76A0FF",
|
25
|
+
strokeWidth: "2",
|
26
|
+
d: "M25.317 25.178 22.31 22"
|
27
|
+
}), /*#__PURE__*/_jsx("path", {
|
28
|
+
stroke: "#76A0FF",
|
29
|
+
strokeWidth: "2",
|
30
|
+
d: "M16 14c.552 0 1.052.224 1.414.586.362.362.586.862.586 1.414 0 .552-.224 1.052-.586 1.414A1.994 1.994 0 0 1 16 18a1.994 1.994 0 0 1-1.414-.586A1.994 1.994 0 0 1 14 16c0-.552.224-1.052.586-1.414A1.994 1.994 0 0 1 16 14Z",
|
31
|
+
clipRule: "evenodd"
|
32
|
+
}), /*#__PURE__*/_jsx("path", {
|
33
|
+
stroke: "currentColor",
|
34
|
+
strokeWidth: "2",
|
35
|
+
d: "M16 10.667c1.473 0 2.806.597 3.771 1.562A5.317 5.317 0 0 1 21.333 16a5.317 5.317 0 0 1-1.562 3.771 5.317 5.317 0 0 1-3.77 1.562 5.317 5.317 0 0 1-3.772-1.562A5.317 5.317 0 0 1 10.667 16c0-1.473.597-2.806 1.562-3.771A5.317 5.317 0 0 1 16 10.667Z",
|
36
|
+
clipRule: "evenodd"
|
37
|
+
}), /*#__PURE__*/_jsx("path", {
|
38
|
+
stroke: "#76A0FF",
|
39
|
+
strokeWidth: "2",
|
40
|
+
d: "M16 7.333c2.393 0 4.56.97 6.128 2.539A8.64 8.64 0 0 1 24.667 16a8.64 8.64 0 0 1-2.539 6.128A8.64 8.64 0 0 1 16 24.667a8.64 8.64 0 0 1-6.128-2.539A8.64 8.64 0 0 1 7.333 16c0-2.393.97-4.56 2.539-6.128A8.64 8.64 0 0 1 16 7.333Z",
|
41
|
+
clipRule: "evenodd"
|
42
|
+
})]
|
43
|
+
}));
|
44
|
+
});
|
45
|
+
ContextIcon.displayName = "ContextIcon";
|
@@ -0,0 +1,34 @@
|
|
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 CrawlerIcon = /*#__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__*/_jsx("svg", _objectSpread(_objectSpread({
|
16
|
+
ref: ref,
|
17
|
+
xmlns: "http://www.w3.org/2000/svg",
|
18
|
+
width: width,
|
19
|
+
height: height,
|
20
|
+
viewBox: "0 0 24 24"
|
21
|
+
}, rest), {}, {
|
22
|
+
children: /*#__PURE__*/_jsxs("g", {
|
23
|
+
fill: "none",
|
24
|
+
fillRule: "evenodd",
|
25
|
+
children: [/*#__PURE__*/_jsx("path", {
|
26
|
+
fill: "currentColor",
|
27
|
+
d: "M3 10V4a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v6h1a1 1 0 0 1 0 2h-1v8a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-8H2a1 1 0 0 1 0-2h1zm2 0v2h14v-2H5zm0-5v2h2V5H5zm3 0v2h2V5H8zm3 0v2h2V5h-2z"
|
28
|
+
}), /*#__PURE__*/_jsx("path", {
|
29
|
+
d: "M0 0h24v24H0z"
|
30
|
+
})]
|
31
|
+
})
|
32
|
+
}));
|
33
|
+
});
|
34
|
+
CrawlerIcon.displayName = "CrawlerIcon";
|
@@ -0,0 +1,52 @@
|
|
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 DragHandleIcon = /*#__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__*/_jsx("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__*/_jsxs("g", {
|
23
|
+
fill: "currentColor",
|
24
|
+
children: [/*#__PURE__*/_jsx("circle", {
|
25
|
+
cx: "5.5",
|
26
|
+
cy: "3",
|
27
|
+
r: "1.5"
|
28
|
+
}), /*#__PURE__*/_jsx("circle", {
|
29
|
+
cx: "10.5",
|
30
|
+
cy: "3",
|
31
|
+
r: "1.5"
|
32
|
+
}), /*#__PURE__*/_jsx("circle", {
|
33
|
+
cx: "5.5",
|
34
|
+
cy: "8",
|
35
|
+
r: "1.5"
|
36
|
+
}), /*#__PURE__*/_jsx("circle", {
|
37
|
+
cx: "10.5",
|
38
|
+
cy: "8",
|
39
|
+
r: "1.5"
|
40
|
+
}), /*#__PURE__*/_jsx("circle", {
|
41
|
+
cx: "5.5",
|
42
|
+
cy: "13",
|
43
|
+
r: "1.5"
|
44
|
+
}), /*#__PURE__*/_jsx("circle", {
|
45
|
+
cx: "10.5",
|
46
|
+
cy: "13",
|
47
|
+
r: "1.5"
|
48
|
+
})]
|
49
|
+
})
|
50
|
+
}));
|
51
|
+
});
|
52
|
+
DragHandleIcon.displayName = "DragHandleIcon";
|
@@ -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 NeuralSearchIcon = /*#__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 11 12"
|
20
|
+
}, rest), {}, {
|
21
|
+
children: /*#__PURE__*/_jsx("path", {
|
22
|
+
fill: "currentColor",
|
23
|
+
d: "M10.855 6.257a1.224 1.224 0 0 0-.733-.583 1.274 1.274 0 0 0-.945.086c-.2.103-.366.254-.482.44L7.62 6.013a1.795 1.795 0 0 0-.414-1.007L8.757 2.92a1.61 1.61 0 0 0 .794.065 1.57 1.57 0 0 0 1.02-.62 1.45 1.45 0 0 0 .26-1.12C10.682.43 9.868-.119 9.014.022a1.57 1.57 0 0 0-1.02.62c-.24.328-.332.726-.26 1.12.05.278.18.533.374.741L6.6 4.53a1.955 1.955 0 0 0-1.76.007 1.875 1.875 0 0 0-.497.367l-1.955-1.48c.061-.143.093-.3.093-.455 0-.66-.556-1.196-1.24-1.196C.557 1.773 0 2.31 0 2.969c0 .66.557 1.197 1.24 1.197.227 0 .447-.06.639-.171l2.059 1.557a1.77 1.77 0 0 0 .332 1.772l-1.303 1.75a1.627 1.627 0 0 0-.794-.065 1.57 1.57 0 0 0-1.02.62 1.45 1.45 0 0 0-.26 1.12c.132.722.783 1.246 1.548 1.246.09 0 .18-.007.269-.022a1.57 1.57 0 0 0 1.019-.62c.24-.328.332-.726.26-1.12a1.467 1.467 0 0 0-.374-.74L4.882 7.79a1.967 1.967 0 0 0 1.531.07l1.285 1.906a1.38 1.38 0 0 0-.265.565c-.078.367-.003.74.21 1.051.212.308.535.518.91.59.093.019.187.028.282.028.682 0 1.278-.471 1.415-1.12.078-.367.003-.74-.21-1.051a1.424 1.424 0 0 0-.91-.59 1.473 1.473 0 0 0-.81.07L7.067 7.45a1.81 1.81 0 0 0 .451-.691l1.006.174c.016.154.063.307.139.444.215.393.636.636 1.098.636.2 0 .4-.048.579-.139a1.2 1.2 0 0 0 .605-.706 1.151 1.151 0 0 0-.09-.911Zm-1.313.168a.466.466 0 0 1 .352-.033.454.454 0 0 1 .272.217c.058.105.07.226.033.34a.447.447 0 0 1-.225.262.473.473 0 0 1-.623-.185.426.426 0 0 1-.034-.339.447.447 0 0 1 .225-.262Zm-1.346 4.057a.665.665 0 0 1 1.193-.237.62.62 0 0 1 .097.485.667.667 0 0 1-1.194.238.62.62 0 0 1-.097-.486ZM2.442 9.74a.78.78 0 0 1 .78.624.719.719 0 0 1-.13.557.793.793 0 0 1-.515.313c-.43.07-.841-.204-.916-.613a.719.719 0 0 1 .13-.557.793.793 0 0 1 .65-.324Zm7.491-7.806a.793.793 0 0 1-.514.312c-.43.072-.842-.203-.916-.613a.719.719 0 0 1 .13-.557.793.793 0 0 1 .65-.323.78.78 0 0 1 .78.624.719.719 0 0 1-.13.557ZM5.726 5.076c.111 0 .222.016.33.048.286.085.52.271.66.525a1.06 1.06 0 0 1-.464 1.458 1.147 1.147 0 0 1-.851.078 1.102 1.102 0 0 1-.66-.526 1.06 1.06 0 0 1 .464-1.458 1.15 1.15 0 0 1 .521-.125ZM1.24 3.414a.454.454 0 0 1-.46-.444c0-.245.207-.444.461-.444s.461.2.461.444a.454.454 0 0 1-.461.445Z"
|
24
|
+
})
|
25
|
+
}));
|
26
|
+
});
|
27
|
+
NeuralSearchIcon.displayName = "NeuralSearchIcon";
|
@@ -0,0 +1,53 @@
|
|
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 NoFiltersIcon = /*#__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 15"
|
24
|
+
}, rest), {}, {
|
25
|
+
children: [/*#__PURE__*/_jsx("defs", {
|
26
|
+
children: /*#__PURE__*/_jsx("path", {
|
27
|
+
id: id1,
|
28
|
+
d: "m3.64.16.06.06.99 1.11h9.98c.23 0 .41.1.54.3l.06.1c.14.2.07.47-.06.67l-4.67 5.5 1.7 1.91a.67.67 0 0 1-.95.95l-.05-.06L10 9.32V14c0 .23-.1.4-.26.54l-.08.06c-.06.07-.2.07-.33.07h-.07c-.1 0-.14-.02-.2-.07L6.4 13.27c-.27-.14-.4-.34-.4-.6V8.53L.8 2.4c-.14-.2-.2-.47-.07-.67.13-.26.33-.4.6-.4H2.9l-.2-.22a.67.67 0 0 1 .94-.95zm.45 2.5H2.8l4.4 5.27c.06.07.13.27.13.4v3.94l1.33.66v-4.6c0-.2.07-.33.14-.46l-.04.06L4.1 2.67zm9.18 0h-7.4L9.64 6.9l3.63-4.23z"
|
29
|
+
})
|
30
|
+
}), /*#__PURE__*/_jsxs("g", {
|
31
|
+
fill: "none",
|
32
|
+
fillRule: "evenodd",
|
33
|
+
children: [/*#__PURE__*/_jsx("mask", {
|
34
|
+
id: id2,
|
35
|
+
fill: "#fff",
|
36
|
+
children: /*#__PURE__*/_jsx("use", {
|
37
|
+
xlinkHref: "#".concat(id1)
|
38
|
+
})
|
39
|
+
}), /*#__PURE__*/_jsx("use", {
|
40
|
+
xlinkHref: "#".concat(id1),
|
41
|
+
fill: "#000",
|
42
|
+
fillRule: "nonzero"
|
43
|
+
}), /*#__PURE__*/_jsx("g", {
|
44
|
+
fill: "currentColor",
|
45
|
+
mask: "url(#".concat(id2, ")"),
|
46
|
+
children: /*#__PURE__*/_jsx("path", {
|
47
|
+
d: "M0 0h16v16H0z"
|
48
|
+
})
|
49
|
+
})]
|
50
|
+
})]
|
51
|
+
}));
|
52
|
+
});
|
53
|
+
NoFiltersIcon.displayName = "NoFiltersIcon";
|
@@ -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 PinIcon = /*#__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: "M10.667 5.773v-3.16H12a.667.667 0 0 0 0-1.333H4a.667.667 0 0 0-.667.72c0 .368.299.667.667.667h1.333v3.106A5.74 5.74 0 0 0 2 10.927c0 .368.298.666.667.666h4.666v2.56a2.48 2.48 0 0 0 .074.667.667.667 0 0 0 .593.447c.153 0 .42-.06.58-.487.058-.217.087-.442.087-.667v-2.546h4.666A.667.667 0 0 0 14 10.9a5.74 5.74 0 0 0-3.333-5.127ZM3.38 10.287A4.513 4.513 0 0 1 6.253 6.78a.667.667 0 0 0 .414-.593V2.613h2.666v3.574c.01.261.171.494.414.593a4.513 4.513 0 0 1 2.873 3.507H3.38Z"
|
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
|
+
PinIcon.displayName = "PinIcon";
|
@@ -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";
|