@spaced-out/ui-design-system 0.4.13-beta.1 → 0.4.14
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/.cspell/custom-words.txt +1 -6
- package/.github/workflows/publish_to_npm.yml +38 -17
- package/.storybook/main.js +3 -3
- package/CHANGELOG.md +5 -4
- package/babel.config.js +1 -1
- package/config.js +3 -4
- package/cspell.json +1 -3
- package/gulpfile.js +33 -5
- package/lib/components/Accordion/Accordion.js +1 -3
- package/lib/components/Accordion/Accordion.js.flow +116 -0
- package/lib/components/Accordion/AccordionGroup.js +0 -3
- package/lib/components/Accordion/AccordionGroup.js.flow +75 -0
- package/lib/components/Accordion/index.js.flow +4 -0
- package/lib/components/Avatar/Avatar.js +6 -14
- package/lib/components/Avatar/Avatar.js.flow +269 -0
- package/lib/components/Avatar/index.js.flow +3 -0
- package/lib/components/AvatarGroup/AvatarGroup.js +0 -5
- package/lib/components/AvatarGroup/AvatarGroup.js.flow +164 -0
- package/lib/components/AvatarGroup/index.js.flow +3 -0
- package/lib/components/Badge/Badge.js.flow +147 -0
- package/lib/components/Badge/index.js.flow +3 -0
- package/lib/components/BadgedIcon/BadgedIcon.js +1 -3
- package/lib/components/BadgedIcon/BadgedIcon.js.flow +73 -0
- package/lib/components/BadgedIcon/index.js.flow +3 -0
- package/lib/components/Banner/Banner.js.flow +60 -0
- package/lib/components/Banner/index.js.flow +3 -0
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.js +1 -3
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.js.flow +58 -0
- package/lib/components/Breadcrumbs/BreadcrumbLink/index.js.flow +3 -0
- package/lib/components/Breadcrumbs/Breadcrumbs.js +1 -5
- package/lib/components/Breadcrumbs/Breadcrumbs.js.flow +59 -0
- package/lib/components/Breadcrumbs/index.js.flow +4 -0
- package/lib/components/Button/Button.js +8 -26
- package/lib/components/Button/Button.js.flow +286 -0
- package/lib/components/Button/index.js.flow +16 -0
- package/lib/components/ButtonDropdown/ButtonDropdown.js +3 -13
- package/lib/components/ButtonDropdown/ButtonDropdown.js.flow +226 -0
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.js +0 -6
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.js.flow +169 -0
- package/lib/components/ButtonDropdown/index.js.flow +4 -0
- package/lib/components/ButtonTabs/ButtonTab/ButtonTab.js.flow +82 -0
- package/lib/components/ButtonTabs/ButtonTab/index.js.flow +3 -0
- package/lib/components/ButtonTabs/ButtonTabDropdown.js +3 -12
- package/lib/components/ButtonTabs/ButtonTabDropdown.js.flow +150 -0
- package/lib/components/ButtonTabs/ButtonTabs.js +0 -3
- package/lib/components/ButtonTabs/ButtonTabs.js.flow +121 -0
- package/lib/components/ButtonTabs/index.js.flow +4 -0
- package/lib/components/Card/Card.js +1 -6
- package/lib/components/Card/Card.js.flow +174 -0
- package/lib/components/Card/index.js.flow +3 -0
- package/lib/components/Charts/ChartTooltip/index.js.flow +15 -0
- package/lib/components/Charts/ChartWrapper/ChartWrapper.js +7 -5
- package/lib/components/Charts/ChartWrapper/ChartWrapper.js.flow +190 -0
- package/lib/components/Charts/ChartWrapper/index.js.flow +3 -0
- package/lib/components/Charts/ColumnChart/ColumnChart.js +7 -12
- package/lib/components/Charts/ColumnChart/ColumnChart.js.flow +126 -0
- package/lib/components/Charts/ColumnChart/index.js.flow +3 -0
- package/lib/components/Charts/DonutChart/DonutChart.js +6 -7
- package/lib/components/Charts/DonutChart/DonutChart.js.flow +158 -0
- package/lib/components/Charts/DonutChart/index.js.flow +3 -0
- package/lib/components/Charts/FunnelChart/FunnelChart.js +7 -6
- package/lib/components/Charts/FunnelChart/FunnelChart.js.flow +115 -0
- package/lib/components/Charts/FunnelChart/index.js.flow +3 -0
- package/lib/components/Charts/LineChart/LineChart.js +6 -6
- package/lib/components/Charts/LineChart/LineChart.js.flow +113 -0
- package/lib/components/Charts/LineChart/index.js.flow +3 -0
- package/lib/components/Charts/SpiderChart/SpiderChart.js +5 -0
- package/lib/components/Charts/SpiderChart/SpiderChart.js.flow +111 -0
- package/lib/components/Charts/SpiderChart/index.js.flow +3 -0
- package/lib/components/Charts/index.js.flow +9 -0
- package/lib/components/ChatBubble/ChatBubble.js +2 -5
- package/lib/components/ChatBubble/ChatBubble.js.flow +222 -0
- package/lib/components/ChatBubble/index.js.flow +3 -0
- package/lib/components/Checkbox/Checkbox.js +0 -2
- package/lib/components/Checkbox/Checkbox.js.flow +168 -0
- package/lib/components/Checkbox/CheckboxGroup.js +0 -8
- package/lib/components/Checkbox/CheckboxGroup.js.flow +116 -0
- package/lib/components/Checkbox/index.js.flow +3 -0
- package/lib/components/Chip/Chip.js +2 -10
- package/lib/components/Chip/Chip.js.flow +199 -0
- package/lib/components/Chip/index.js.flow +4 -0
- package/lib/components/CircularLoader/CircularLoader.js.flow +58 -0
- package/lib/components/CircularLoader/index.js.flow +3 -0
- package/lib/components/CollapsibleCard/CollapsibleCard.js.flow +146 -0
- package/lib/components/CollapsibleCard/index.js.flow +3 -0
- package/lib/components/Combobox/Combobox.js +3 -16
- package/lib/components/Combobox/Combobox.js.flow +287 -0
- package/lib/components/Combobox/helper.js +0 -1
- package/lib/components/Combobox/helper.js.flow +204 -0
- package/lib/components/Combobox/index.js.flow +3 -0
- package/lib/components/ConditionalWrapper/ConditionalWrapper.js +2 -0
- package/lib/components/ConditionalWrapper/ConditionalWrapper.js.flow +16 -0
- package/lib/components/ConditionalWrapper/index.js.flow +3 -0
- package/lib/components/DateRangePicker/Calendar.js +2 -4
- package/lib/components/DateRangePicker/Calendar.js.flow +112 -0
- package/lib/components/DateRangePicker/DateRangePicker.js +1 -0
- package/lib/components/DateRangePicker/DateRangePicker.js.flow +214 -0
- package/lib/components/DateRangePicker/DateRangeWrapper.js +5 -13
- package/lib/components/DateRangePicker/DateRangeWrapper.js.flow +384 -0
- package/lib/components/DateRangePicker/Day.js +4 -6
- package/lib/components/DateRangePicker/Day.js.flow +75 -0
- package/lib/components/DateRangePicker/index.js.flow +3 -0
- package/lib/components/Dialog/Dialog.js.flow +228 -0
- package/lib/components/Dialog/index.js.flow +2 -0
- package/lib/components/Disclaimer/Disclaimer.js +0 -1
- package/lib/components/Disclaimer/Disclaimer.js.flow +41 -0
- package/lib/components/Disclaimer/index.js.flow +3 -0
- package/lib/components/Dropdown/Dropdown.js +3 -14
- package/lib/components/Dropdown/Dropdown.js.flow +176 -0
- package/lib/components/Dropdown/SimpleDropdown.js +1 -7
- package/lib/components/Dropdown/SimpleDropdown.js.flow +170 -0
- package/lib/components/Dropdown/index.js.flow +4 -0
- package/lib/components/EmptyState/EmptyImages/CalendarEmptyImage.js.flow +112 -0
- package/lib/components/EmptyState/EmptyImages/ChartEmptyImage.js.flow +198 -0
- package/lib/components/EmptyState/EmptyImages/DataEmptyImage.js.flow +120 -0
- package/lib/components/EmptyState/EmptyImages/FileEmptyImage.js.flow +137 -0
- package/lib/components/EmptyState/EmptyImages/MessageEmptyImage.js.flow +68 -0
- package/lib/components/EmptyState/EmptyImages/UploadEmptyImage.js.flow +71 -0
- package/lib/components/EmptyState/EmptyImages/index.js.flow +8 -0
- package/lib/components/EmptyState/EmptyState.js.flow +91 -0
- package/lib/components/EmptyState/index.js.flow +3 -0
- package/lib/components/ErrorMessage/ErrorImages/ForbiddenImage.js.flow +89 -0
- package/lib/components/ErrorMessage/ErrorImages/NotFoundImage.js.flow +121 -0
- package/lib/components/ErrorMessage/ErrorImages/ServerErrorImage.js.flow +241 -0
- package/lib/components/ErrorMessage/ErrorImages/UnauthorizedImage.js.flow +77 -0
- package/lib/components/ErrorMessage/ErrorImages/index.js.flow +6 -0
- package/lib/components/ErrorMessage/ErrorMessage.js.flow +95 -0
- package/lib/components/ErrorMessage/index.js.flow +3 -0
- package/lib/components/FileUpload/FileBlock/FileBlock.js.flow +139 -0
- package/lib/components/FileUpload/FileBlock/index.js.flow +3 -0
- package/lib/components/FileUpload/FileUpload.js +1 -6
- package/lib/components/FileUpload/FileUpload.js.flow +212 -0
- package/lib/components/FileUpload/index.js.flow +4 -0
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.js +1 -9
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.js.flow +166 -0
- package/lib/components/FilterButtonOverlay/index.js.flow +3 -0
- package/lib/components/FocusManager/FocusManager.js.flow +57 -0
- package/lib/components/FocusManager/index.js.flow +3 -0
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.js +0 -11
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.js.flow +152 -0
- package/lib/components/FocusManagerWithArrowKeyNavigation/index.js.flow +3 -0
- package/lib/components/FormTitleWrapper/FormTitleWrapper.js.flow +68 -0
- package/lib/components/FormTitleWrapper/index.js.flow +3 -0
- package/lib/components/Grid/Grid.js +0 -8
- package/lib/components/Grid/Grid.js.flow +110 -0
- package/lib/components/Grid/index.js.flow +3 -0
- package/lib/components/Icon/ClickableIcon.js +2 -4
- package/lib/components/Icon/ClickableIcon.js.flow +111 -0
- package/lib/components/Icon/Icon.docs.js +1 -1
- package/lib/components/Icon/Icon.docs.js.flow +120 -0
- package/lib/components/Icon/Icon.js +1 -3
- package/lib/components/Icon/Icon.js.flow +77 -0
- package/lib/components/Icon/SemanticIcon.js +1 -3
- package/lib/components/Icon/SemanticIcon.js.flow +48 -0
- package/lib/components/Icon/index.js.flow +5 -0
- package/lib/components/InContextAlert/InContextAlert.js +0 -2
- package/lib/components/InContextAlert/InContextAlert.js.flow +208 -0
- package/lib/components/InContextAlert/index.js.flow +3 -0
- package/lib/components/InfinitePagination/InfinitePagination.js +2 -9
- package/lib/components/InfinitePagination/InfinitePagination.js.flow +122 -0
- package/lib/components/InfinitePagination/index.js.flow +3 -0
- package/lib/components/InlineDropdown/InlineDropdown.js +3 -12
- package/lib/components/InlineDropdown/InlineDropdown.js.flow +181 -0
- package/lib/components/InlineDropdown/SimpleInlineDropdown.js +0 -7
- package/lib/components/InlineDropdown/SimpleInlineDropdown.js.flow +167 -0
- package/lib/components/InlineDropdown/index.js.flow +4 -0
- package/lib/components/Input/Input.js +5 -18
- package/lib/components/Input/Input.js.flow +325 -0
- package/lib/components/Input/index.js.flow +3 -0
- package/lib/components/KPIBox/KPIBox.js +1 -1
- package/lib/components/KPIBox/KPIBox.js.flow +98 -0
- package/lib/components/KPIBox/index.js.flow +3 -0
- package/lib/components/LinearLoader/LinearLoader.js.flow +49 -0
- package/lib/components/LinearLoader/index.js.flow +3 -0
- package/lib/components/Link/Link.js +5 -16
- package/lib/components/Link/Link.js.flow +231 -0
- package/lib/components/Link/index.js.flow +3 -0
- package/lib/components/Menu/Menu.js +2 -5
- package/lib/components/Menu/Menu.js.flow +391 -0
- package/lib/components/Menu/MenuOptionButton.js +1 -6
- package/lib/components/Menu/MenuOptionButton.js.flow +201 -0
- package/lib/components/Menu/index.js.flow +4 -0
- package/lib/components/Modal/Modal.js +2 -6
- package/lib/components/Modal/Modal.js.flow +370 -0
- package/lib/components/Modal/index.js.flow +15 -0
- package/lib/components/Notification/Notification.js +0 -1
- package/lib/components/Notification/Notification.js.flow +149 -0
- package/lib/components/Notification/index.js.flow +3 -0
- package/lib/components/OptionButton/OptionButton.js.flow +153 -0
- package/lib/components/OptionButton/SimpleOptionButton.js +0 -4
- package/lib/components/OptionButton/SimpleOptionButton.js.flow +161 -0
- package/lib/components/OptionButton/index.js.flow +4 -0
- package/lib/components/PageTitle/PageTitle.js +2 -7
- package/lib/components/PageTitle/PageTitle.js.flow +267 -0
- package/lib/components/PageTitle/index.js.flow +3 -0
- package/lib/components/Pagination/Pagination.js +1 -3
- package/lib/components/Pagination/Pagination.js.flow +158 -0
- package/lib/components/Pagination/PaginationItem.js +0 -3
- package/lib/components/Pagination/PaginationItem.js.flow +120 -0
- package/lib/components/Pagination/index.js.flow +3 -0
- package/lib/components/Panel/Panel.js.flow +181 -0
- package/lib/components/Panel/index.js.flow +10 -0
- package/lib/components/ProgressDonut/ProgressDonut.js +0 -1
- package/lib/components/ProgressDonut/ProgressDonut.js.flow +111 -0
- package/lib/components/ProgressDonut/index.js.flow +3 -0
- package/lib/components/PromptChip/PromptChip.js +2 -8
- package/lib/components/PromptChip/PromptChip.js.flow +166 -0
- package/lib/components/PromptChip/index.js.flow +3 -0
- package/lib/components/PromptInput/PromptInput.js +1 -10
- package/lib/components/PromptInput/PromptInput.js.flow +194 -0
- package/lib/components/PromptInput/index.js.flow +3 -0
- package/lib/components/RadioButton/RadioButton.js +0 -1
- package/lib/components/RadioButton/RadioButton.js.flow +134 -0
- package/lib/components/RadioButton/RadioGroup.js +0 -2
- package/lib/components/RadioButton/RadioGroup.js.flow +94 -0
- package/lib/components/RadioButton/index.js.flow +3 -0
- package/lib/components/RadioTile/RadioTile.js +0 -2
- package/lib/components/RadioTile/RadioTile.js.flow +110 -0
- package/lib/components/RadioTile/index.js.flow +3 -0
- package/lib/components/RangeSlider/RangeSlider.js +0 -3
- package/lib/components/RangeSlider/RangeSlider.js.flow +202 -0
- package/lib/components/RangeSlider/index.js.flow +3 -0
- package/lib/components/Rating/Rating.js +3 -7
- package/lib/components/Rating/Rating.js.flow +134 -0
- package/lib/components/Rating/index.js.flow +3 -0
- package/lib/components/ScoreBar/ScoreBar.js +1 -1
- package/lib/components/ScoreBar/ScoreBar.js.flow +135 -0
- package/lib/components/ScoreBar/index.js.flow +3 -0
- package/lib/components/SearchInput/SearchInput.js.flow +88 -0
- package/lib/components/SearchInput/index.js.flow +4 -0
- package/lib/components/Separator/Separator.js.flow +60 -0
- package/lib/components/Separator/index.js.flow +3 -0
- package/lib/components/Shimmer/Shimmer.js +2 -4
- package/lib/components/Shimmer/Shimmer.js.flow +141 -0
- package/lib/components/Shimmer/index.js.flow +3 -0
- package/lib/components/SideMenuLink/SideMenuLink.js +2 -8
- package/lib/components/SideMenuLink/SideMenuLink.js.flow +344 -0
- package/lib/components/SideMenuLink/index.js.flow +3 -0
- package/lib/components/StatusIndicator/StatusIndicator.js.flow +68 -0
- package/lib/components/StatusIndicator/index.js.flow +3 -0
- package/lib/components/Stepper/Step/Step.js +3 -12
- package/lib/components/Stepper/Step/Step.js.flow +123 -0
- package/lib/components/Stepper/Step/StepContent.js.flow +40 -0
- package/lib/components/Stepper/Step/StepLabel.js.flow +40 -0
- package/lib/components/Stepper/Step/index.js.flow +5 -0
- package/lib/components/Stepper/Stepper.js +0 -4
- package/lib/components/Stepper/Stepper.js.flow +64 -0
- package/lib/components/Stepper/index.js.flow +4 -0
- package/lib/components/StickyBar/StickyBar.js.flow +67 -0
- package/lib/components/StickyBar/index.js.flow +3 -0
- package/lib/components/SubMenu/SubMenu.js.flow +96 -0
- package/lib/components/SubMenu/SubMenuGroup.js +3 -11
- package/lib/components/SubMenu/SubMenuGroup.js.flow +156 -0
- package/lib/components/SubMenu/SubMenuItem.js +4 -14
- package/lib/components/SubMenu/SubMenuItem.js.flow +170 -0
- package/lib/components/SubMenu/SubMenuLink.js +2 -6
- package/lib/components/SubMenu/SubMenuLink.js.flow +89 -0
- package/lib/components/SubMenu/index.js.flow +6 -0
- package/lib/components/Table/Cell.js +3 -3
- package/lib/components/Table/Cell.js.flow +122 -0
- package/lib/components/Table/DefaultRow.js +2 -2
- package/lib/components/Table/DefaultRow.js.flow +152 -0
- package/lib/components/Table/DefaultTableHeader.js +2 -9
- package/lib/components/Table/DefaultTableHeader.js.flow +240 -0
- package/lib/components/Table/StaticTable.js +315 -88
- package/lib/components/Table/StaticTable.js.flow +576 -0
- package/lib/components/Table/Table.docs.js +83 -3
- package/lib/components/Table/Table.docs.js.flow +550 -0
- package/lib/components/Table/Table.js +9 -14
- package/lib/components/Table/Table.js.flow +154 -0
- package/lib/components/Table/Table.module.css +36 -5
- package/lib/components/Table/TableActionBar.js.flow +55 -0
- package/lib/components/Table/TableBottomBar.js.flow +28 -0
- package/lib/components/Table/TableTopBar.js.flow +28 -0
- package/lib/components/Table/dummyTableData.js.flow +2191 -0
- package/lib/components/Table/hooks.js +0 -7
- package/lib/components/Table/hooks.js.flow +97 -0
- package/lib/components/Table/index.js.flow +10 -0
- package/lib/components/Tabs/Tab/Tab.js +1 -5
- package/lib/components/Tabs/Tab/Tab.js.flow +140 -0
- package/lib/components/Tabs/Tab/index.js.flow +3 -0
- package/lib/components/Tabs/TabList/TabDropdown.js +2 -8
- package/lib/components/Tabs/TabList/TabDropdown.js.flow +123 -0
- package/lib/components/Tabs/TabList/TabList.js +3 -17
- package/lib/components/Tabs/TabList/TabList.js.flow +161 -0
- package/lib/components/Tabs/TabList/index.js.flow +3 -0
- package/lib/components/Tabs/index.js.flow +4 -0
- package/lib/components/Text/Text.js +0 -1
- package/lib/components/Text/Text.js.flow +1060 -0
- package/lib/components/Text/index.js.flow +32 -0
- package/lib/components/TextTile/TextTile.js.flow +44 -0
- package/lib/components/TextTile/index.js.flow +3 -0
- package/lib/components/Textarea/Textarea.js +4 -14
- package/lib/components/Textarea/Textarea.js.flow +139 -0
- package/lib/components/Textarea/index.js.flow +4 -0
- package/lib/components/Timeline/Timeline.js +1 -8
- package/lib/components/Timeline/Timeline.js.flow +47 -0
- package/lib/components/Timeline/TimelineItem/TimelineItem.js +2 -9
- package/lib/components/Timeline/TimelineItem/TimelineItem.js.flow +127 -0
- package/lib/components/Timeline/TimelineItem/index.js.flow +3 -0
- package/lib/components/Timeline/index.js.flow +4 -0
- package/lib/components/Toast/Toast.js +1 -10
- package/lib/components/Toast/Toast.js.flow +249 -0
- package/lib/components/Toast/ToastContainer.js +5 -2
- package/lib/components/Toast/ToastContainer.js.flow +125 -0
- package/lib/components/Toast/ToastManager.js +0 -1
- package/lib/components/Toast/ToastManager.js.flow +67 -0
- package/lib/components/Toast/index.js.flow +12 -0
- package/lib/components/Toggle/Toggle.js +0 -1
- package/lib/components/Toggle/Toggle.js.flow +113 -0
- package/lib/components/Toggle/index.js.flow +2 -0
- package/lib/components/TokenListInput/TokenListInput.js +10 -30
- package/lib/components/TokenListInput/TokenListInput.js.flow +389 -0
- package/lib/components/TokenListInput/TokenValueChips.js +4 -2
- package/lib/components/TokenListInput/TokenValueChips.js.flow +69 -0
- package/lib/components/TokenListInput/index.js.flow +3 -0
- package/lib/components/Tooltip/Tooltip.js +3 -6
- package/lib/components/Tooltip/Tooltip.js.flow +206 -0
- package/lib/components/Tooltip/index.js.flow +3 -0
- package/lib/components/Truncate/Truncate.js +1 -5
- package/lib/components/Truncate/Truncate.js.flow +86 -0
- package/lib/components/Truncate/index.js.flow +4 -0
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.js +1 -6
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.js.flow +104 -0
- package/lib/components/TruncatedTextWithTooltip/index.js.flow +3 -0
- package/lib/components/Typeahead/SimpleTypeahead.js +0 -4
- package/lib/components/Typeahead/SimpleTypeahead.js.flow +164 -0
- package/lib/components/Typeahead/Typeahead.js +3 -12
- package/lib/components/Typeahead/Typeahead.js.flow +250 -0
- package/lib/components/Typeahead/index.js.flow +4 -0
- package/lib/components/WeekdayPicker/WeekdayPicker.js.flow +229 -0
- package/lib/components/WeekdayPicker/index.js.flow +3 -0
- package/lib/components/index.js.flow +77 -0
- package/lib/hooks/index.js.flow +18 -0
- package/lib/hooks/useArbitraryOptionAddition/index.js.flow +3 -0
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.js +9 -9
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.js.flow +117 -0
- package/lib/hooks/useCopyToClipboard/index.js.flow +3 -0
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.js +0 -1
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.js.flow +31 -0
- package/lib/hooks/useDebounce/index.js.flow +3 -0
- package/lib/hooks/useDebounce/useDebounce.js.flow +17 -0
- package/lib/hooks/useFileUpload/index.js.flow +3 -0
- package/lib/hooks/useFileUpload/useFileUpload.js +2 -7
- package/lib/hooks/useFileUpload/useFileUpload.js.flow +304 -0
- package/lib/hooks/useFilteredOptions/index.js.flow +3 -0
- package/lib/hooks/useFilteredOptions/useFilteredOptions.js +3 -5
- package/lib/hooks/useFilteredOptions/useFilteredOptions.js.flow +81 -0
- package/lib/hooks/useInfiniteScroll/index.js.flow +3 -0
- package/lib/hooks/useInfiniteScroll/useInfiniteScroll.js.flow +82 -0
- package/lib/hooks/useInputState/index.js.flow +3 -0
- package/lib/hooks/useInputState/useInputState.js +1 -3
- package/lib/hooks/useInputState/useInputState.js.flow +28 -0
- package/lib/hooks/useLockedBody/index.js.flow +3 -0
- package/lib/hooks/useLockedBody/useLockedBody.js.flow +55 -0
- package/lib/hooks/useModal/index.js.flow +3 -0
- package/lib/hooks/useModal/useModal.js.flow +39 -0
- package/lib/hooks/useMountTransition/index.js +0 -2
- package/lib/hooks/useMountTransition/index.js.flow +27 -0
- package/lib/hooks/usePagination/index.js.flow +3 -0
- package/lib/hooks/usePagination/usePagination.js +0 -3
- package/lib/hooks/usePagination/usePagination.js.flow +155 -0
- package/lib/hooks/useReferenceElementWidth/index.js.flow +3 -0
- package/lib/hooks/useReferenceElementWidth/useReferenceElementWidth.js.flow +23 -0
- package/lib/hooks/useResizeObserver/index.js.flow +3 -0
- package/lib/hooks/useResizeObserver/useResizeObserver.js +0 -3
- package/lib/hooks/useResizeObserver/useResizeObserver.js.flow +28 -0
- package/lib/hooks/useToastPortal/index.js.flow +3 -0
- package/lib/hooks/useToastPortal/useToastPortal.js +3 -3
- package/lib/hooks/useToastPortal/useToastPortal.js.flow +30 -0
- package/lib/hooks/useToggle/index.js.flow +3 -0
- package/lib/hooks/useToggle/useToggle.js.flow +17 -0
- package/lib/hooks/useWindowSize/index.js.flow +3 -0
- package/lib/hooks/useWindowSize/useWindowSize.js.flow +41 -0
- package/lib/index.js.flow +7 -0
- package/lib/styles/index.js +275 -535
- package/lib/styles/index.js.flow +535 -0
- package/lib/styles/variables/_border.js.flow +25 -0
- package/lib/styles/variables/_color.js.flow +209 -0
- package/lib/styles/variables/_elevation.js.flow +15 -0
- package/lib/styles/variables/_font.js.flow +61 -0
- package/lib/styles/variables/_motion.js.flow +13 -0
- package/lib/styles/variables/_opacity.js.flow +31 -0
- package/lib/styles/variables/_shadow.js.flow +49 -0
- package/lib/styles/variables/_size.js.flow +115 -0
- package/lib/styles/variables/_space.js.flow +25 -0
- package/lib/types/charts.js +1 -5
- package/lib/types/charts.js.flow +263 -0
- package/lib/types/common.js.flow +13 -0
- package/lib/types/date-range-picker.js +1 -5
- package/lib/types/date-range-picker.js.flow +17 -0
- package/lib/types/index.js.flow +8 -0
- package/lib/types/menu.js +1 -5
- package/lib/types/menu.js.flow +15 -0
- package/lib/types/toast.js +2 -0
- package/lib/types/toast.js.flow +41 -0
- package/lib/types/typography.js.flow +19 -0
- package/lib/utils/array/are-arrays-equal.js.flow +14 -0
- package/lib/utils/array/index.js.flow +3 -0
- package/lib/utils/charts/charts.js +0 -4
- package/lib/utils/charts/charts.js.flow +111 -0
- package/lib/utils/charts/columnChart.js +1 -3
- package/lib/utils/charts/columnChart.js.flow +63 -0
- package/lib/utils/charts/donutChart.js +2 -7
- package/lib/utils/charts/donutChart.js.flow +119 -0
- package/lib/utils/charts/funnelChart.js +1 -5
- package/lib/utils/charts/funnelChart.js.flow +102 -0
- package/lib/utils/charts/helpers.js.flow +68 -0
- package/lib/utils/charts/index.js.flow +9 -0
- package/lib/utils/charts/lineChart.js +1 -3
- package/lib/utils/charts/lineChart.js.flow +51 -0
- package/lib/utils/charts/spiderChart.js.flow +59 -0
- package/lib/utils/charts/typography.js.flow +53 -0
- package/lib/utils/classify/index.js +1 -1
- package/lib/utils/classify/index.js.flow +29 -0
- package/lib/utils/click-away/click-away.js +5 -18
- package/lib/utils/click-away/click-away.js.flow +228 -0
- package/lib/utils/click-away/index.js.flow +3 -0
- package/lib/utils/date-range-picker/date-range-picker.js +2 -17
- package/lib/utils/date-range-picker/date-range-picker.js.flow +442 -0
- package/lib/utils/date-range-picker/index.js.flow +4 -0
- package/lib/utils/date-range-picker/timezones.js +1 -0
- package/lib/utils/date-range-picker/timezones.js.flow +269 -0
- package/lib/utils/dom/dom.js +7 -9
- package/lib/utils/dom/dom.js.flow +238 -0
- package/lib/utils/dom/index.js.flow +3 -0
- package/lib/utils/helpers/helpers.js.flow +53 -0
- package/lib/utils/helpers/index.js.flow +3 -0
- package/lib/utils/index.js.flow +16 -0
- package/lib/utils/makeClassNameComponent/index.js.flow +3 -0
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.js +7 -21
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.js.flow +70 -0
- package/lib/utils/menu/index.js.flow +3 -0
- package/lib/utils/menu/menu.js +2 -0
- package/lib/utils/menu/menu.js.flow +193 -0
- package/lib/utils/merge-refs/index.js.flow +3 -0
- package/lib/utils/merge-refs/merge-refs.js +0 -1
- package/lib/utils/merge-refs/merge-refs.js.flow +14 -0
- package/lib/utils/rating/index.js.flow +3 -0
- package/lib/utils/rating/rating.js.flow +35 -0
- package/lib/utils/score-bar/index.js.flow +3 -0
- package/lib/utils/score-bar/score-bar.js.flow +58 -0
- package/lib/utils/string/index.js.flow +3 -0
- package/lib/utils/string/string.js.flow +33 -0
- package/lib/utils/token-list-input/token-list-input.js +2 -0
- package/lib/utils/token-list-input/token-list-input.js.flow +37 -0
- package/lib/utils/tokens/index.js.flow +3 -0
- package/lib/utils/tokens/tokens.js.flow +244 -0
- package/package.json +7 -32
- package/docs/FORWARDREF_FIX.md +0 -241
- package/lib/components/AIPromptFlow/AIPromptFlow.stories.d.ts +0 -19
- package/lib/components/AIPromptFlow/AIPromptFlow.stories.d.ts.map +0 -1
- package/lib/components/AIPromptFlow/AIPromptFlow.stories.js +0 -225
- package/lib/components/Accordion/Accordion.d.ts +0 -21
- package/lib/components/Accordion/Accordion.d.ts.map +0 -1
- package/lib/components/Accordion/Accordion.stories.d.ts +0 -143
- package/lib/components/Accordion/Accordion.stories.d.ts.map +0 -1
- package/lib/components/Accordion/Accordion.stories.js +0 -172
- package/lib/components/Accordion/AccordionGroup.d.ts +0 -17
- package/lib/components/Accordion/AccordionGroup.d.ts.map +0 -1
- package/lib/components/Accordion/AccordionGroup.stories.d.ts +0 -104
- package/lib/components/Accordion/AccordionGroup.stories.d.ts.map +0 -1
- package/lib/components/Accordion/AccordionGroup.stories.js +0 -202
- package/lib/components/Accordion/index.d.ts +0 -3
- package/lib/components/Accordion/index.d.ts.map +0 -1
- package/lib/components/Avatar/Avatar.d.ts +0 -60
- package/lib/components/Avatar/Avatar.d.ts.map +0 -1
- package/lib/components/Avatar/Avatar.stories.d.ts +0 -149
- package/lib/components/Avatar/Avatar.stories.d.ts.map +0 -1
- package/lib/components/Avatar/Avatar.stories.js +0 -174
- package/lib/components/Avatar/index.d.ts +0 -2
- package/lib/components/Avatar/index.d.ts.map +0 -1
- package/lib/components/AvatarGroup/AvatarGroup.d.ts +0 -15
- package/lib/components/AvatarGroup/AvatarGroup.d.ts.map +0 -1
- package/lib/components/AvatarGroup/AvatarGroup.stories.d.ts +0 -101
- package/lib/components/AvatarGroup/AvatarGroup.stories.d.ts.map +0 -1
- package/lib/components/AvatarGroup/AvatarGroup.stories.js +0 -160
- package/lib/components/AvatarGroup/index.d.ts +0 -2
- package/lib/components/AvatarGroup/index.d.ts.map +0 -1
- package/lib/components/Badge/Badge.d.ts +0 -40
- package/lib/components/Badge/Badge.d.ts.map +0 -1
- package/lib/components/Badge/Badge.stories.d.ts +0 -123
- package/lib/components/Badge/Badge.stories.d.ts.map +0 -1
- package/lib/components/Badge/Badge.stories.js +0 -155
- package/lib/components/Badge/index.d.ts +0 -2
- package/lib/components/Badge/index.d.ts.map +0 -1
- package/lib/components/BadgedIcon/BadgedIcon.d.ts +0 -18
- package/lib/components/BadgedIcon/BadgedIcon.d.ts.map +0 -1
- package/lib/components/BadgedIcon/BadgedIcon.stories.d.ts +0 -111
- package/lib/components/BadgedIcon/BadgedIcon.stories.d.ts.map +0 -1
- package/lib/components/BadgedIcon/BadgedIcon.stories.js +0 -95
- package/lib/components/BadgedIcon/index.d.ts +0 -2
- package/lib/components/BadgedIcon/index.d.ts.map +0 -1
- package/lib/components/Banner/Banner.d.ts +0 -7
- package/lib/components/Banner/Banner.d.ts.map +0 -1
- package/lib/components/Banner/Banner.stories.d.ts +0 -187
- package/lib/components/Banner/Banner.stories.d.ts.map +0 -1
- package/lib/components/Banner/Banner.stories.js +0 -210
- package/lib/components/Banner/index.d.ts +0 -2
- package/lib/components/Banner/index.d.ts.map +0 -1
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.d.ts +0 -10
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.d.ts.map +0 -1
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.stories.d.ts +0 -98
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.stories.d.ts.map +0 -1
- package/lib/components/Breadcrumbs/BreadcrumbLink/BreadcrumbLink.stories.js +0 -122
- package/lib/components/Breadcrumbs/BreadcrumbLink/index.d.ts +0 -2
- package/lib/components/Breadcrumbs/BreadcrumbLink/index.d.ts.map +0 -1
- package/lib/components/Breadcrumbs/Breadcrumbs.d.ts +0 -14
- package/lib/components/Breadcrumbs/Breadcrumbs.d.ts.map +0 -1
- package/lib/components/Breadcrumbs/Breadcrumbs.stories.d.ts +0 -57
- package/lib/components/Breadcrumbs/Breadcrumbs.stories.d.ts.map +0 -1
- package/lib/components/Breadcrumbs/Breadcrumbs.stories.js +0 -180
- package/lib/components/Breadcrumbs/index.d.ts +0 -3
- package/lib/components/Breadcrumbs/index.d.ts.map +0 -1
- package/lib/components/Button/Button.d.ts +0 -64
- package/lib/components/Button/Button.d.ts.map +0 -1
- package/lib/components/Button/Button.stories.d.ts +0 -245
- package/lib/components/Button/Button.stories.d.ts.map +0 -1
- package/lib/components/Button/Button.stories.js +0 -257
- package/lib/components/Button/index.d.ts +0 -3
- package/lib/components/Button/index.d.ts.map +0 -1
- package/lib/components/ButtonDropdown/ButtonDropdown.d.ts +0 -40
- package/lib/components/ButtonDropdown/ButtonDropdown.d.ts.map +0 -1
- package/lib/components/ButtonDropdown/ButtonDropdown.stories.d.ts +0 -558
- package/lib/components/ButtonDropdown/ButtonDropdown.stories.d.ts.map +0 -1
- package/lib/components/ButtonDropdown/ButtonDropdown.stories.js +0 -669
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.d.ts +0 -42
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.d.ts.map +0 -1
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.stories.d.ts +0 -628
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.stories.d.ts.map +0 -1
- package/lib/components/ButtonDropdown/SimpleButtonDropdown.stories.js +0 -651
- package/lib/components/ButtonDropdown/index.d.ts +0 -3
- package/lib/components/ButtonDropdown/index.d.ts.map +0 -1
- package/lib/components/ButtonTabs/ButtonTab/ButtonTab.d.ts +0 -25
- package/lib/components/ButtonTabs/ButtonTab/ButtonTab.d.ts.map +0 -1
- package/lib/components/ButtonTabs/ButtonTab/ButtonTab.stories.d.ts +0 -142
- package/lib/components/ButtonTabs/ButtonTab/ButtonTab.stories.d.ts.map +0 -1
- package/lib/components/ButtonTabs/ButtonTab/ButtonTab.stories.js +0 -152
- package/lib/components/ButtonTabs/ButtonTab/index.d.ts +0 -2
- package/lib/components/ButtonTabs/ButtonTab/index.d.ts.map +0 -1
- package/lib/components/ButtonTabs/ButtonTabDropdown.d.ts +0 -12
- package/lib/components/ButtonTabs/ButtonTabDropdown.d.ts.map +0 -1
- package/lib/components/ButtonTabs/ButtonTabs.d.ts +0 -24
- package/lib/components/ButtonTabs/ButtonTabs.d.ts.map +0 -1
- package/lib/components/ButtonTabs/ButtonTabs.stories.d.ts +0 -201
- package/lib/components/ButtonTabs/ButtonTabs.stories.d.ts.map +0 -1
- package/lib/components/ButtonTabs/ButtonTabs.stories.js +0 -471
- package/lib/components/ButtonTabs/index.d.ts +0 -3
- package/lib/components/ButtonTabs/index.d.ts.map +0 -1
- package/lib/components/Card/Card.d.ts +0 -37
- package/lib/components/Card/Card.d.ts.map +0 -1
- package/lib/components/Card/Card.stories.d.ts +0 -150
- package/lib/components/Card/Card.stories.d.ts.map +0 -1
- package/lib/components/Card/Card.stories.js +0 -236
- package/lib/components/Card/index.d.ts +0 -2
- package/lib/components/Card/index.d.ts.map +0 -1
- package/lib/components/Charts/ChartTooltip/index.d.ts +0 -3
- package/lib/components/Charts/ChartTooltip/index.d.ts.map +0 -1
- package/lib/components/Charts/ChartWrapper/ChartWrapper.d.ts +0 -50
- package/lib/components/Charts/ChartWrapper/ChartWrapper.d.ts.map +0 -1
- package/lib/components/Charts/ChartWrapper/index.d.ts +0 -2
- package/lib/components/Charts/ChartWrapper/index.d.ts.map +0 -1
- package/lib/components/Charts/ColumnChart/ColumnChart.d.ts +0 -23
- package/lib/components/Charts/ColumnChart/ColumnChart.d.ts.map +0 -1
- package/lib/components/Charts/ColumnChart/ColumnChart.stories.d.ts +0 -446
- package/lib/components/Charts/ColumnChart/ColumnChart.stories.d.ts.map +0 -1
- package/lib/components/Charts/ColumnChart/ColumnChart.stories.js +0 -654
- package/lib/components/Charts/ColumnChart/index.d.ts +0 -2
- package/lib/components/Charts/ColumnChart/index.d.ts.map +0 -1
- package/lib/components/Charts/DonutChart/DonutChart.d.ts +0 -28
- package/lib/components/Charts/DonutChart/DonutChart.d.ts.map +0 -1
- package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts +0 -226
- package/lib/components/Charts/DonutChart/DonutChart.stories.d.ts.map +0 -1
- package/lib/components/Charts/DonutChart/DonutChart.stories.js +0 -387
- package/lib/components/Charts/DonutChart/index.d.ts +0 -2
- package/lib/components/Charts/DonutChart/index.d.ts.map +0 -1
- package/lib/components/Charts/FunnelChart/FunnelChart.d.ts +0 -25
- package/lib/components/Charts/FunnelChart/FunnelChart.d.ts.map +0 -1
- package/lib/components/Charts/FunnelChart/FunnelChart.stories.d.ts +0 -307
- package/lib/components/Charts/FunnelChart/FunnelChart.stories.d.ts.map +0 -1
- package/lib/components/Charts/FunnelChart/FunnelChart.stories.js +0 -529
- package/lib/components/Charts/FunnelChart/index.d.ts +0 -2
- package/lib/components/Charts/FunnelChart/index.d.ts.map +0 -1
- package/lib/components/Charts/LineChart/LineChart.d.ts +0 -23
- package/lib/components/Charts/LineChart/LineChart.d.ts.map +0 -1
- package/lib/components/Charts/LineChart/LineChart.stories.d.ts +0 -310
- package/lib/components/Charts/LineChart/LineChart.stories.d.ts.map +0 -1
- package/lib/components/Charts/LineChart/LineChart.stories.js +0 -587
- package/lib/components/Charts/LineChart/index.d.ts +0 -2
- package/lib/components/Charts/LineChart/index.d.ts.map +0 -1
- package/lib/components/Charts/SpiderChart/SpiderChart.d.ts +0 -22
- package/lib/components/Charts/SpiderChart/SpiderChart.d.ts.map +0 -1
- package/lib/components/Charts/SpiderChart/SpiderChart.stories.d.ts +0 -149
- package/lib/components/Charts/SpiderChart/SpiderChart.stories.d.ts.map +0 -1
- package/lib/components/Charts/SpiderChart/SpiderChart.stories.js +0 -422
- package/lib/components/Charts/SpiderChart/index.d.ts +0 -2
- package/lib/components/Charts/SpiderChart/index.d.ts.map +0 -1
- package/lib/components/Charts/index.d.ts +0 -8
- package/lib/components/Charts/index.d.ts.map +0 -1
- package/lib/components/ChatBubble/ChatAnchor.stories.d.ts +0 -101
- package/lib/components/ChatBubble/ChatAnchor.stories.d.ts.map +0 -1
- package/lib/components/ChatBubble/ChatAnchor.stories.js +0 -113
- package/lib/components/ChatBubble/ChatBubble.d.ts +0 -76
- package/lib/components/ChatBubble/ChatBubble.d.ts.map +0 -1
- package/lib/components/ChatBubble/ChatBubble.stories.d.ts +0 -102
- package/lib/components/ChatBubble/ChatBubble.stories.d.ts.map +0 -1
- package/lib/components/ChatBubble/ChatBubble.stories.js +0 -188
- package/lib/components/ChatBubble/index.d.ts +0 -2
- package/lib/components/ChatBubble/index.d.ts.map +0 -1
- package/lib/components/Checkbox/Checkbox.d.ts +0 -29
- package/lib/components/Checkbox/Checkbox.d.ts.map +0 -1
- package/lib/components/Checkbox/Checkbox.stories.d.ts +0 -168
- package/lib/components/Checkbox/Checkbox.stories.d.ts.map +0 -1
- package/lib/components/Checkbox/Checkbox.stories.js +0 -210
- package/lib/components/Checkbox/CheckboxGroup.d.ts +0 -26
- package/lib/components/Checkbox/CheckboxGroup.d.ts.map +0 -1
- package/lib/components/Checkbox/CheckboxGroup.stories.d.ts +0 -163
- package/lib/components/Checkbox/CheckboxGroup.stories.d.ts.map +0 -1
- package/lib/components/Checkbox/CheckboxGroup.stories.js +0 -399
- package/lib/components/Checkbox/index.d.ts +0 -3
- package/lib/components/Checkbox/index.d.ts.map +0 -1
- package/lib/components/Chip/Chip.d.ts +0 -47
- package/lib/components/Chip/Chip.d.ts.map +0 -1
- package/lib/components/Chip/Chip.stories.d.ts +0 -238
- package/lib/components/Chip/Chip.stories.d.ts.map +0 -1
- package/lib/components/Chip/Chip.stories.js +0 -362
- package/lib/components/Chip/index.d.ts +0 -3
- package/lib/components/Chip/index.d.ts.map +0 -1
- package/lib/components/CircularLoader/CircularLoader.d.ts +0 -10
- package/lib/components/CircularLoader/CircularLoader.d.ts.map +0 -1
- package/lib/components/CircularLoader/CircularLoader.stories.d.ts +0 -64
- package/lib/components/CircularLoader/CircularLoader.stories.d.ts.map +0 -1
- package/lib/components/CircularLoader/CircularLoader.stories.js +0 -82
- package/lib/components/CircularLoader/index.d.ts +0 -2
- package/lib/components/CircularLoader/index.d.ts.map +0 -1
- package/lib/components/CollapsibleCard/CollapsibleCard.d.ts +0 -40
- package/lib/components/CollapsibleCard/CollapsibleCard.d.ts.map +0 -1
- package/lib/components/CollapsibleCard/CollapsibleCard.stories.d.ts +0 -225
- package/lib/components/CollapsibleCard/CollapsibleCard.stories.d.ts.map +0 -1
- package/lib/components/CollapsibleCard/CollapsibleCard.stories.js +0 -298
- package/lib/components/CollapsibleCard/index.d.ts +0 -2
- package/lib/components/CollapsibleCard/index.d.ts.map +0 -1
- package/lib/components/Combobox/Combobox.d.ts +0 -78
- package/lib/components/Combobox/Combobox.d.ts.map +0 -1
- package/lib/components/Combobox/Combobox.stories.d.ts +0 -197
- package/lib/components/Combobox/Combobox.stories.d.ts.map +0 -1
- package/lib/components/Combobox/Combobox.stories.js +0 -343
- package/lib/components/Combobox/helper.d.ts +0 -12
- package/lib/components/Combobox/helper.d.ts.map +0 -1
- package/lib/components/Combobox/index.d.ts +0 -2
- package/lib/components/Combobox/index.d.ts.map +0 -1
- package/lib/components/ConditionalWrapper/ConditionalWrapper.d.ts +0 -8
- package/lib/components/ConditionalWrapper/ConditionalWrapper.d.ts.map +0 -1
- package/lib/components/ConditionalWrapper/ConditionalWrapper.stories.d.ts +0 -16
- package/lib/components/ConditionalWrapper/ConditionalWrapper.stories.d.ts.map +0 -1
- package/lib/components/ConditionalWrapper/ConditionalWrapper.stories.js +0 -50
- package/lib/components/ConditionalWrapper/index.d.ts +0 -2
- package/lib/components/ConditionalWrapper/index.d.ts.map +0 -1
- package/lib/components/DateRangePicker/Calendar.d.ts +0 -22
- package/lib/components/DateRangePicker/Calendar.d.ts.map +0 -1
- package/lib/components/DateRangePicker/DateRangePicker.d.ts +0 -22
- package/lib/components/DateRangePicker/DateRangePicker.d.ts.map +0 -1
- package/lib/components/DateRangePicker/DateRangePicker.stories.d.ts +0 -184
- package/lib/components/DateRangePicker/DateRangePicker.stories.d.ts.map +0 -1
- package/lib/components/DateRangePicker/DateRangePicker.stories.js +0 -406
- package/lib/components/DateRangePicker/DateRangeWrapper.d.ts +0 -33
- package/lib/components/DateRangePicker/DateRangeWrapper.d.ts.map +0 -1
- package/lib/components/DateRangePicker/Day.d.ts +0 -17
- package/lib/components/DateRangePicker/Day.d.ts.map +0 -1
- package/lib/components/DateRangePicker/index.d.ts +0 -2
- package/lib/components/DateRangePicker/index.d.ts.map +0 -1
- package/lib/components/Dialog/Dialog.d.ts +0 -46
- package/lib/components/Dialog/Dialog.d.ts.map +0 -1
- package/lib/components/Dialog/Dialog.stories.d.ts +0 -171
- package/lib/components/Dialog/Dialog.stories.d.ts.map +0 -1
- package/lib/components/Dialog/Dialog.stories.js +0 -260
- package/lib/components/Dialog/index.d.ts +0 -2
- package/lib/components/Dialog/index.d.ts.map +0 -1
- package/lib/components/Disclaimer/Disclaimer.d.ts +0 -5
- package/lib/components/Disclaimer/Disclaimer.d.ts.map +0 -1
- package/lib/components/Disclaimer/Disclaimer.stories.d.ts +0 -156
- package/lib/components/Disclaimer/Disclaimer.stories.d.ts.map +0 -1
- package/lib/components/Disclaimer/Disclaimer.stories.js +0 -174
- package/lib/components/Disclaimer/index.d.ts +0 -2
- package/lib/components/Disclaimer/index.d.ts.map +0 -1
- package/lib/components/Dropdown/Dropdown.d.ts +0 -25
- package/lib/components/Dropdown/Dropdown.d.ts.map +0 -1
- package/lib/components/Dropdown/Dropdown.stories.d.ts +0 -417
- package/lib/components/Dropdown/Dropdown.stories.d.ts.map +0 -1
- package/lib/components/Dropdown/Dropdown.stories.js +0 -729
- package/lib/components/Dropdown/SimpleDropdown.d.ts +0 -44
- package/lib/components/Dropdown/SimpleDropdown.d.ts.map +0 -1
- package/lib/components/Dropdown/SimpleDropdown.stories.d.ts +0 -424
- package/lib/components/Dropdown/SimpleDropdown.stories.d.ts.map +0 -1
- package/lib/components/Dropdown/SimpleDropdown.stories.js +0 -569
- package/lib/components/Dropdown/index.d.ts +0 -3
- package/lib/components/Dropdown/index.d.ts.map +0 -1
- package/lib/components/EmptyState/EmptyImages/CalendarEmptyImage.d.ts +0 -3
- package/lib/components/EmptyState/EmptyImages/CalendarEmptyImage.d.ts.map +0 -1
- package/lib/components/EmptyState/EmptyImages/ChartEmptyImage.d.ts +0 -3
- package/lib/components/EmptyState/EmptyImages/ChartEmptyImage.d.ts.map +0 -1
- package/lib/components/EmptyState/EmptyImages/DataEmptyImage.d.ts +0 -3
- package/lib/components/EmptyState/EmptyImages/DataEmptyImage.d.ts.map +0 -1
- package/lib/components/EmptyState/EmptyImages/FileEmptyImage.d.ts +0 -3
- package/lib/components/EmptyState/EmptyImages/FileEmptyImage.d.ts.map +0 -1
- package/lib/components/EmptyState/EmptyImages/MessageEmptyImage.d.ts +0 -3
- package/lib/components/EmptyState/EmptyImages/MessageEmptyImage.d.ts.map +0 -1
- package/lib/components/EmptyState/EmptyImages/UploadEmptyImage.d.ts +0 -3
- package/lib/components/EmptyState/EmptyImages/UploadEmptyImage.d.ts.map +0 -1
- package/lib/components/EmptyState/EmptyImages/index.d.ts +0 -7
- package/lib/components/EmptyState/EmptyImages/index.d.ts.map +0 -1
- package/lib/components/EmptyState/EmptyState.d.ts +0 -20
- package/lib/components/EmptyState/EmptyState.d.ts.map +0 -1
- package/lib/components/EmptyState/EmptyState.stories.d.ts +0 -91
- package/lib/components/EmptyState/EmptyState.stories.d.ts.map +0 -1
- package/lib/components/EmptyState/EmptyState.stories.js +0 -115
- package/lib/components/EmptyState/index.d.ts +0 -2
- package/lib/components/EmptyState/index.d.ts.map +0 -1
- package/lib/components/ErrorMessage/ErrorImages/ForbiddenImage.d.ts +0 -3
- package/lib/components/ErrorMessage/ErrorImages/ForbiddenImage.d.ts.map +0 -1
- package/lib/components/ErrorMessage/ErrorImages/NotFoundImage.d.ts +0 -3
- package/lib/components/ErrorMessage/ErrorImages/NotFoundImage.d.ts.map +0 -1
- package/lib/components/ErrorMessage/ErrorImages/ServerErrorImage.d.ts +0 -3
- package/lib/components/ErrorMessage/ErrorImages/ServerErrorImage.d.ts.map +0 -1
- package/lib/components/ErrorMessage/ErrorImages/UnauthorizedImage.d.ts +0 -3
- package/lib/components/ErrorMessage/ErrorImages/UnauthorizedImage.d.ts.map +0 -1
- package/lib/components/ErrorMessage/ErrorImages/index.d.ts +0 -5
- package/lib/components/ErrorMessage/ErrorImages/index.d.ts.map +0 -1
- package/lib/components/ErrorMessage/ErrorMessage.d.ts +0 -22
- package/lib/components/ErrorMessage/ErrorMessage.d.ts.map +0 -1
- package/lib/components/ErrorMessage/ErrorMessage.stories.d.ts +0 -97
- package/lib/components/ErrorMessage/ErrorMessage.stories.d.ts.map +0 -1
- package/lib/components/ErrorMessage/ErrorMessage.stories.js +0 -125
- package/lib/components/ErrorMessage/index.d.ts +0 -2
- package/lib/components/ErrorMessage/index.d.ts.map +0 -1
- package/lib/components/FileUpload/FileBlock/FileBlock.d.ts +0 -14
- package/lib/components/FileUpload/FileBlock/FileBlock.d.ts.map +0 -1
- package/lib/components/FileUpload/FileBlock/FileBlock.stories.d.ts +0 -68
- package/lib/components/FileUpload/FileBlock/FileBlock.stories.d.ts.map +0 -1
- package/lib/components/FileUpload/FileBlock/FileBlock.stories.js +0 -91
- package/lib/components/FileUpload/FileBlock/index.d.ts +0 -2
- package/lib/components/FileUpload/FileBlock/index.d.ts.map +0 -1
- package/lib/components/FileUpload/FileUpload.d.ts +0 -62
- package/lib/components/FileUpload/FileUpload.d.ts.map +0 -1
- package/lib/components/FileUpload/FileUpload.stories.d.ts +0 -340
- package/lib/components/FileUpload/FileUpload.stories.d.ts.map +0 -1
- package/lib/components/FileUpload/FileUpload.stories.js +0 -952
- package/lib/components/FileUpload/index.d.ts +0 -3
- package/lib/components/FileUpload/index.d.ts.map +0 -1
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.d.ts +0 -30
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.d.ts.map +0 -1
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.stories.d.ts +0 -300
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.stories.d.ts.map +0 -1
- package/lib/components/FilterButtonOverlay/FilterButtonOverlay.stories.js +0 -390
- package/lib/components/FilterButtonOverlay/index.d.ts +0 -2
- package/lib/components/FilterButtonOverlay/index.d.ts.map +0 -1
- package/lib/components/FocusManager/FocusManager.d.ts +0 -17
- package/lib/components/FocusManager/FocusManager.d.ts.map +0 -1
- package/lib/components/FocusManager/FocusManager.stories.d.ts +0 -103
- package/lib/components/FocusManager/FocusManager.stories.d.ts.map +0 -1
- package/lib/components/FocusManager/FocusManager.stories.js +0 -133
- package/lib/components/FocusManager/index.d.ts +0 -2
- package/lib/components/FocusManager/index.d.ts.map +0 -1
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.d.ts +0 -20
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.d.ts.map +0 -1
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.stories.d.ts +0 -175
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.stories.d.ts.map +0 -1
- package/lib/components/FocusManagerWithArrowKeyNavigation/FocusManagerWithArrowKeyNavigation.stories.js +0 -427
- package/lib/components/FocusManagerWithArrowKeyNavigation/index.d.ts +0 -2
- package/lib/components/FocusManagerWithArrowKeyNavigation/index.d.ts.map +0 -1
- package/lib/components/FormTitleWrapper/FormTitleWrapper.d.ts +0 -21
- package/lib/components/FormTitleWrapper/FormTitleWrapper.d.ts.map +0 -1
- package/lib/components/FormTitleWrapper/FormTitleWrapper.stories.d.ts +0 -128
- package/lib/components/FormTitleWrapper/FormTitleWrapper.stories.d.ts.map +0 -1
- package/lib/components/FormTitleWrapper/FormTitleWrapper.stories.js +0 -189
- package/lib/components/FormTitleWrapper/index.d.ts +0 -2
- package/lib/components/FormTitleWrapper/index.d.ts.map +0 -1
- package/lib/components/Grid/Col.stories.d.ts +0 -66
- package/lib/components/Grid/Col.stories.d.ts.map +0 -1
- package/lib/components/Grid/Col.stories.js +0 -141
- package/lib/components/Grid/Grid.d.ts +0 -20
- package/lib/components/Grid/Grid.d.ts.map +0 -1
- package/lib/components/Grid/GridPatterns.stories.d.ts +0 -18
- package/lib/components/Grid/GridPatterns.stories.d.ts.map +0 -1
- package/lib/components/Grid/GridPatterns.stories.js +0 -392
- package/lib/components/Grid/Row.stories.d.ts +0 -41
- package/lib/components/Grid/Row.stories.d.ts.map +0 -1
- package/lib/components/Grid/Row.stories.js +0 -172
- package/lib/components/Grid/Tablist.layout.stories.d.ts +0 -20
- package/lib/components/Grid/Tablist.layout.stories.d.ts.map +0 -1
- package/lib/components/Grid/Tablist.layout.stories.js +0 -330
- package/lib/components/Grid/index.d.ts +0 -2
- package/lib/components/Grid/index.d.ts.map +0 -1
- package/lib/components/Icon/ClickableIcon.d.ts +0 -26
- package/lib/components/Icon/ClickableIcon.d.ts.map +0 -1
- package/lib/components/Icon/Icon.d.ts +0 -31
- package/lib/components/Icon/Icon.d.ts.map +0 -1
- package/lib/components/Icon/Icon.docs.d.ts +0 -134
- package/lib/components/Icon/Icon.docs.d.ts.map +0 -1
- package/lib/components/Icon/Icon.stories.d.ts +0 -193
- package/lib/components/Icon/Icon.stories.d.ts.map +0 -1
- package/lib/components/Icon/Icon.stories.js +0 -73
- package/lib/components/Icon/SemanticIcon.d.ts +0 -14
- package/lib/components/Icon/SemanticIcon.d.ts.map +0 -1
- package/lib/components/Icon/SemanticIcon.stories.d.ts +0 -190
- package/lib/components/Icon/SemanticIcon.stories.d.ts.map +0 -1
- package/lib/components/Icon/SemanticIcon.stories.js +0 -75
- package/lib/components/Icon/index.d.ts +0 -4
- package/lib/components/Icon/index.d.ts.map +0 -1
- package/lib/components/InContextAlert/InContextAlert.d.ts +0 -31
- package/lib/components/InContextAlert/InContextAlert.d.ts.map +0 -1
- package/lib/components/InContextAlert/InContextAlert.stories.d.ts +0 -164
- package/lib/components/InContextAlert/InContextAlert.stories.d.ts.map +0 -1
- package/lib/components/InContextAlert/InContextAlert.stories.js +0 -184
- package/lib/components/InContextAlert/index.d.ts +0 -2
- package/lib/components/InContextAlert/index.d.ts.map +0 -1
- package/lib/components/InfinitePagination/InfinitePagination.d.ts +0 -26
- package/lib/components/InfinitePagination/InfinitePagination.d.ts.map +0 -1
- package/lib/components/InfinitePagination/InfinitePagination.stories.d.ts +0 -145
- package/lib/components/InfinitePagination/InfinitePagination.stories.d.ts.map +0 -1
- package/lib/components/InfinitePagination/InfinitePagination.stories.js +0 -343
- package/lib/components/InfinitePagination/index.d.ts +0 -2
- package/lib/components/InfinitePagination/index.d.ts.map +0 -1
- package/lib/components/InlineDropdown/InlineDropdown.d.ts +0 -25
- package/lib/components/InlineDropdown/InlineDropdown.d.ts.map +0 -1
- package/lib/components/InlineDropdown/InlineDropdown.stories.d.ts +0 -350
- package/lib/components/InlineDropdown/InlineDropdown.stories.d.ts.map +0 -1
- package/lib/components/InlineDropdown/InlineDropdown.stories.js +0 -397
- package/lib/components/InlineDropdown/SimpleInlineDropdown.d.ts +0 -40
- package/lib/components/InlineDropdown/SimpleInlineDropdown.d.ts.map +0 -1
- package/lib/components/InlineDropdown/SimpleInlineDropdown.stories.d.ts +0 -469
- package/lib/components/InlineDropdown/SimpleInlineDropdown.stories.d.ts.map +0 -1
- package/lib/components/InlineDropdown/SimpleInlineDropdown.stories.js +0 -521
- package/lib/components/InlineDropdown/index.d.ts +0 -3
- package/lib/components/InlineDropdown/index.d.ts.map +0 -1
- package/lib/components/Input/Input.d.ts +0 -76
- package/lib/components/Input/Input.d.ts.map +0 -1
- package/lib/components/Input/Input.stories.d.ts +0 -502
- package/lib/components/Input/Input.stories.d.ts.map +0 -1
- package/lib/components/Input/Input.stories.js +0 -608
- package/lib/components/Input/NativeColorpicker.stories.d.ts +0 -370
- package/lib/components/Input/NativeColorpicker.stories.d.ts.map +0 -1
- package/lib/components/Input/NativeColorpicker.stories.js +0 -395
- package/lib/components/Input/NativeDatepicker.stories.d.ts +0 -388
- package/lib/components/Input/NativeDatepicker.stories.d.ts.map +0 -1
- package/lib/components/Input/NativeDatepicker.stories.js +0 -457
- package/lib/components/Input/index.d.ts +0 -2
- package/lib/components/Input/index.d.ts.map +0 -1
- package/lib/components/KPIBox/KPIBox.d.ts +0 -23
- package/lib/components/KPIBox/KPIBox.d.ts.map +0 -1
- package/lib/components/KPIBox/KPIBox.stories.d.ts +0 -132
- package/lib/components/KPIBox/KPIBox.stories.d.ts.map +0 -1
- package/lib/components/KPIBox/KPIBox.stories.js +0 -246
- package/lib/components/KPIBox/index.d.ts +0 -2
- package/lib/components/KPIBox/index.d.ts.map +0 -1
- package/lib/components/LinearLoader/LinearLoader.d.ts +0 -9
- package/lib/components/LinearLoader/LinearLoader.d.ts.map +0 -1
- package/lib/components/LinearLoader/LinearLoader.stories.d.ts +0 -78
- package/lib/components/LinearLoader/LinearLoader.stories.d.ts.map +0 -1
- package/lib/components/LinearLoader/LinearLoader.stories.js +0 -135
- package/lib/components/LinearLoader/index.d.ts +0 -2
- package/lib/components/LinearLoader/index.d.ts.map +0 -1
- package/lib/components/Link/Link.d.ts +0 -93
- package/lib/components/Link/Link.d.ts.map +0 -1
- package/lib/components/Link/Link.stories.d.ts +0 -284
- package/lib/components/Link/Link.stories.d.ts.map +0 -1
- package/lib/components/Link/Link.stories.js +0 -350
- package/lib/components/Link/index.d.ts +0 -2
- package/lib/components/Link/index.d.ts.map +0 -1
- package/lib/components/Menu/Menu.d.ts +0 -74
- package/lib/components/Menu/Menu.d.ts.map +0 -1
- package/lib/components/Menu/Menu.stories.d.ts +0 -526
- package/lib/components/Menu/Menu.stories.d.ts.map +0 -1
- package/lib/components/Menu/Menu.stories.js +0 -1048
- package/lib/components/Menu/MenuOptionButton.d.ts +0 -9
- package/lib/components/Menu/MenuOptionButton.d.ts.map +0 -1
- package/lib/components/Menu/index.d.ts +0 -3
- package/lib/components/Menu/index.d.ts.map +0 -1
- package/lib/components/Modal/Modal.d.ts +0 -64
- package/lib/components/Modal/Modal.d.ts.map +0 -1
- package/lib/components/Modal/Modal.stories.d.ts +0 -149
- package/lib/components/Modal/Modal.stories.d.ts.map +0 -1
- package/lib/components/Modal/Modal.stories.js +0 -427
- package/lib/components/Modal/index.d.ts +0 -3
- package/lib/components/Modal/index.d.ts.map +0 -1
- package/lib/components/Notification/Notification.d.ts +0 -37
- package/lib/components/Notification/Notification.d.ts.map +0 -1
- package/lib/components/Notification/Notification.stories.d.ts +0 -136
- package/lib/components/Notification/Notification.stories.d.ts.map +0 -1
- package/lib/components/Notification/Notification.stories.js +0 -153
- package/lib/components/Notification/index.d.ts +0 -2
- package/lib/components/Notification/index.d.ts.map +0 -1
- package/lib/components/OptionButton/OptionButton.d.ts +0 -33
- package/lib/components/OptionButton/OptionButton.d.ts.map +0 -1
- package/lib/components/OptionButton/OptionButton.stories.d.ts +0 -366
- package/lib/components/OptionButton/OptionButton.stories.d.ts.map +0 -1
- package/lib/components/OptionButton/OptionButton.stories.js +0 -437
- package/lib/components/OptionButton/SimpleOptionButton.d.ts +0 -47
- package/lib/components/OptionButton/SimpleOptionButton.d.ts.map +0 -1
- package/lib/components/OptionButton/SimpleOptionButton.stories.d.ts +0 -502
- package/lib/components/OptionButton/SimpleOptionButton.stories.d.ts.map +0 -1
- package/lib/components/OptionButton/SimpleOptionButton.stories.js +0 -552
- package/lib/components/OptionButton/index.d.ts +0 -3
- package/lib/components/OptionButton/index.d.ts.map +0 -1
- package/lib/components/PageTitle/PageTitle.d.ts +0 -156
- package/lib/components/PageTitle/PageTitle.d.ts.map +0 -1
- package/lib/components/PageTitle/PageTitle.stories.d.ts +0 -83
- package/lib/components/PageTitle/PageTitle.stories.d.ts.map +0 -1
- package/lib/components/PageTitle/PageTitle.stories.js +0 -221
- package/lib/components/PageTitle/index.d.ts +0 -2
- package/lib/components/PageTitle/index.d.ts.map +0 -1
- package/lib/components/Pagination/Pagination.d.ts +0 -39
- package/lib/components/Pagination/Pagination.d.ts.map +0 -1
- package/lib/components/Pagination/Pagination.stories.d.ts +0 -203
- package/lib/components/Pagination/Pagination.stories.d.ts.map +0 -1
- package/lib/components/Pagination/Pagination.stories.js +0 -263
- package/lib/components/Pagination/PaginationItem.d.ts +0 -5
- package/lib/components/Pagination/PaginationItem.d.ts.map +0 -1
- package/lib/components/Pagination/index.d.ts +0 -2
- package/lib/components/Pagination/index.d.ts.map +0 -1
- package/lib/components/Panel/Panel.d.ts +0 -35
- package/lib/components/Panel/Panel.d.ts.map +0 -1
- package/lib/components/Panel/Panel.stories.d.ts +0 -187
- package/lib/components/Panel/Panel.stories.d.ts.map +0 -1
- package/lib/components/Panel/Panel.stories.js +0 -415
- package/lib/components/Panel/index.d.ts +0 -3
- package/lib/components/Panel/index.d.ts.map +0 -1
- package/lib/components/ProgressDonut/ProgressDonut.d.ts +0 -13
- package/lib/components/ProgressDonut/ProgressDonut.d.ts.map +0 -1
- package/lib/components/ProgressDonut/ProgressDonut.stories.d.ts +0 -72
- package/lib/components/ProgressDonut/ProgressDonut.stories.d.ts.map +0 -1
- package/lib/components/ProgressDonut/ProgressDonut.stories.js +0 -96
- package/lib/components/ProgressDonut/index.d.ts +0 -2
- package/lib/components/ProgressDonut/index.d.ts.map +0 -1
- package/lib/components/PromptChip/PromptChip.d.ts +0 -38
- package/lib/components/PromptChip/PromptChip.d.ts.map +0 -1
- package/lib/components/PromptChip/PromptChip.stories.d.ts +0 -205
- package/lib/components/PromptChip/PromptChip.stories.d.ts.map +0 -1
- package/lib/components/PromptChip/PromptChip.stories.js +0 -242
- package/lib/components/PromptChip/index.d.ts +0 -2
- package/lib/components/PromptChip/index.d.ts.map +0 -1
- package/lib/components/PromptInput/PromptInput.d.ts +0 -38
- package/lib/components/PromptInput/PromptInput.d.ts.map +0 -1
- package/lib/components/PromptInput/PromptInput.stories.d.ts +0 -265
- package/lib/components/PromptInput/PromptInput.stories.d.ts.map +0 -1
- package/lib/components/PromptInput/PromptInput.stories.js +0 -390
- package/lib/components/PromptInput/index.d.ts +0 -2
- package/lib/components/PromptInput/index.d.ts.map +0 -1
- package/lib/components/RadioButton/RadioButton.d.ts +0 -31
- package/lib/components/RadioButton/RadioButton.d.ts.map +0 -1
- package/lib/components/RadioButton/RadioButton.stories.d.ts +0 -149
- package/lib/components/RadioButton/RadioButton.stories.d.ts.map +0 -1
- package/lib/components/RadioButton/RadioButton.stories.js +0 -180
- package/lib/components/RadioButton/RadioGroup.d.ts +0 -27
- package/lib/components/RadioButton/RadioGroup.d.ts.map +0 -1
- package/lib/components/RadioButton/RadioGroup.stories.d.ts +0 -137
- package/lib/components/RadioButton/RadioGroup.stories.d.ts.map +0 -1
- package/lib/components/RadioButton/RadioGroup.stories.js +0 -317
- package/lib/components/RadioButton/index.d.ts +0 -3
- package/lib/components/RadioButton/index.d.ts.map +0 -1
- package/lib/components/RadioTile/RadioTile.d.ts +0 -23
- package/lib/components/RadioTile/RadioTile.d.ts.map +0 -1
- package/lib/components/RadioTile/RadioTile.stories.d.ts +0 -171
- package/lib/components/RadioTile/RadioTile.stories.d.ts.map +0 -1
- package/lib/components/RadioTile/RadioTile.stories.js +0 -261
- package/lib/components/RadioTile/index.d.ts +0 -2
- package/lib/components/RadioTile/index.d.ts.map +0 -1
- package/lib/components/RangeSlider/RangeSlider.d.ts +0 -27
- package/lib/components/RangeSlider/RangeSlider.d.ts.map +0 -1
- package/lib/components/RangeSlider/RangeSlider.stories.d.ts +0 -287
- package/lib/components/RangeSlider/RangeSlider.stories.d.ts.map +0 -1
- package/lib/components/RangeSlider/RangeSlider.stories.js +0 -379
- package/lib/components/RangeSlider/index.d.ts +0 -2
- package/lib/components/RangeSlider/index.d.ts.map +0 -1
- package/lib/components/Rating/Rating.d.ts +0 -32
- package/lib/components/Rating/Rating.d.ts.map +0 -1
- package/lib/components/Rating/Rating.stories.d.ts +0 -237
- package/lib/components/Rating/Rating.stories.d.ts.map +0 -1
- package/lib/components/Rating/Rating.stories.js +0 -309
- package/lib/components/Rating/index.d.ts +0 -2
- package/lib/components/Rating/index.d.ts.map +0 -1
- package/lib/components/ScoreBar/ScoreBar.d.ts +0 -28
- package/lib/components/ScoreBar/ScoreBar.d.ts.map +0 -1
- package/lib/components/ScoreBar/ScoreBar.stories.d.ts +0 -156
- package/lib/components/ScoreBar/ScoreBar.stories.d.ts.map +0 -1
- package/lib/components/ScoreBar/ScoreBar.stories.js +0 -199
- package/lib/components/ScoreBar/index.d.ts +0 -2
- package/lib/components/ScoreBar/index.d.ts.map +0 -1
- package/lib/components/SearchInput/SearchInput.d.ts +0 -15
- package/lib/components/SearchInput/SearchInput.d.ts.map +0 -1
- package/lib/components/SearchInput/SearchInput.stories.d.ts +0 -260
- package/lib/components/SearchInput/SearchInput.stories.d.ts.map +0 -1
- package/lib/components/SearchInput/SearchInput.stories.js +0 -299
- package/lib/components/SearchInput/index.d.ts +0 -3
- package/lib/components/SearchInput/index.d.ts.map +0 -1
- package/lib/components/Separator/Separator.d.ts +0 -18
- package/lib/components/Separator/Separator.d.ts.map +0 -1
- package/lib/components/Separator/Separator.stories.d.ts +0 -79
- package/lib/components/Separator/Separator.stories.d.ts.map +0 -1
- package/lib/components/Separator/Separator.stories.js +0 -101
- package/lib/components/Separator/index.d.ts +0 -2
- package/lib/components/Separator/index.d.ts.map +0 -1
- package/lib/components/Shimmer/Shimmer.d.ts +0 -57
- package/lib/components/Shimmer/Shimmer.d.ts.map +0 -1
- package/lib/components/Shimmer/Shimmer.stories.d.ts +0 -213
- package/lib/components/Shimmer/Shimmer.stories.d.ts.map +0 -1
- package/lib/components/Shimmer/Shimmer.stories.js +0 -323
- package/lib/components/Shimmer/index.d.ts +0 -2
- package/lib/components/Shimmer/index.d.ts.map +0 -1
- package/lib/components/SideMenuLink/SideMenuLink.d.ts +0 -211
- package/lib/components/SideMenuLink/SideMenuLink.d.ts.map +0 -1
- package/lib/components/SideMenuLink/SideMenuLink.stories.d.ts +0 -96
- package/lib/components/SideMenuLink/SideMenuLink.stories.d.ts.map +0 -1
- package/lib/components/SideMenuLink/SideMenuLink.stories.js +0 -162
- package/lib/components/SideMenuLink/index.d.ts +0 -2
- package/lib/components/SideMenuLink/index.d.ts.map +0 -1
- package/lib/components/StatusIndicator/StatusIndicator.d.ts +0 -25
- package/lib/components/StatusIndicator/StatusIndicator.d.ts.map +0 -1
- package/lib/components/StatusIndicator/StatusIndicator.stories.d.ts +0 -92
- package/lib/components/StatusIndicator/StatusIndicator.stories.d.ts.map +0 -1
- package/lib/components/StatusIndicator/StatusIndicator.stories.js +0 -145
- package/lib/components/StatusIndicator/index.d.ts +0 -2
- package/lib/components/StatusIndicator/index.d.ts.map +0 -1
- package/lib/components/Stepper/Step/Step.d.ts +0 -25
- package/lib/components/Stepper/Step/Step.d.ts.map +0 -1
- package/lib/components/Stepper/Step/Step.stories.d.ts +0 -120
- package/lib/components/Stepper/Step/Step.stories.d.ts.map +0 -1
- package/lib/components/Stepper/Step/Step.stories.js +0 -147
- package/lib/components/Stepper/Step/StepContent.d.ts +0 -14
- package/lib/components/Stepper/Step/StepContent.d.ts.map +0 -1
- package/lib/components/Stepper/Step/StepLabel.d.ts +0 -14
- package/lib/components/Stepper/Step/StepLabel.d.ts.map +0 -1
- package/lib/components/Stepper/Step/index.d.ts +0 -4
- package/lib/components/Stepper/Step/index.d.ts.map +0 -1
- package/lib/components/Stepper/Stepper.d.ts +0 -15
- package/lib/components/Stepper/Stepper.d.ts.map +0 -1
- package/lib/components/Stepper/Stepper.stories.d.ts +0 -210
- package/lib/components/Stepper/Stepper.stories.d.ts.map +0 -1
- package/lib/components/Stepper/Stepper.stories.js +0 -402
- package/lib/components/Stepper/index.d.ts +0 -3
- package/lib/components/Stepper/index.d.ts.map +0 -1
- package/lib/components/StickyBar/StickyBar.d.ts +0 -15
- package/lib/components/StickyBar/StickyBar.d.ts.map +0 -1
- package/lib/components/StickyBar/StickyBar.stories.d.ts +0 -35
- package/lib/components/StickyBar/StickyBar.stories.d.ts.map +0 -1
- package/lib/components/StickyBar/StickyBar.stories.js +0 -141
- package/lib/components/StickyBar/index.d.ts +0 -2
- package/lib/components/StickyBar/index.d.ts.map +0 -1
- package/lib/components/SubMenu/SubMenu.d.ts +0 -19
- package/lib/components/SubMenu/SubMenu.d.ts.map +0 -1
- package/lib/components/SubMenu/SubMenu.stories.d.ts +0 -114
- package/lib/components/SubMenu/SubMenu.stories.d.ts.map +0 -1
- package/lib/components/SubMenu/SubMenu.stories.js +0 -373
- package/lib/components/SubMenu/SubMenuGroup.d.ts +0 -24
- package/lib/components/SubMenu/SubMenuGroup.d.ts.map +0 -1
- package/lib/components/SubMenu/SubMenuItem.d.ts +0 -42
- package/lib/components/SubMenu/SubMenuItem.d.ts.map +0 -1
- package/lib/components/SubMenu/SubMenuLink.d.ts +0 -14
- package/lib/components/SubMenu/SubMenuLink.d.ts.map +0 -1
- package/lib/components/SubMenu/index.d.ts +0 -5
- package/lib/components/SubMenu/index.d.ts.map +0 -1
- package/lib/components/Table/BasicTable.stories.d.ts +0 -536
- package/lib/components/Table/BasicTable.stories.d.ts.map +0 -1
- package/lib/components/Table/BasicTable.stories.js +0 -552
- package/lib/components/Table/BulkActions.stories.d.ts +0 -257
- package/lib/components/Table/BulkActions.stories.d.ts.map +0 -1
- package/lib/components/Table/BulkActions.stories.js +0 -252
- package/lib/components/Table/Cell.d.ts +0 -37
- package/lib/components/Table/Cell.d.ts.map +0 -1
- package/lib/components/Table/DefaultRow.d.ts +0 -39
- package/lib/components/Table/DefaultRow.d.ts.map +0 -1
- package/lib/components/Table/DefaultTableHeader.d.ts +0 -43
- package/lib/components/Table/DefaultTableHeader.d.ts.map +0 -1
- package/lib/components/Table/InlineEdit.stories.d.ts +0 -244
- package/lib/components/Table/InlineEdit.stories.d.ts.map +0 -1
- package/lib/components/Table/InlineEdit.stories.js +0 -355
- package/lib/components/Table/StaticTable.d.ts +0 -18
- package/lib/components/Table/StaticTable.d.ts.map +0 -1
- package/lib/components/Table/Table.d.ts +0 -56
- package/lib/components/Table/Table.d.ts.map +0 -1
- package/lib/components/Table/Table.docs.d.ts +0 -229
- package/lib/components/Table/Table.docs.d.ts.map +0 -1
- package/lib/components/Table/TableActionBar.d.ts +0 -11
- package/lib/components/Table/TableActionBar.d.ts.map +0 -1
- package/lib/components/Table/TableBottomBar.d.ts +0 -7
- package/lib/components/Table/TableBottomBar.d.ts.map +0 -1
- package/lib/components/Table/TableTopBar.d.ts +0 -7
- package/lib/components/Table/TableTopBar.d.ts.map +0 -1
- package/lib/components/Table/dummyTableData.d.ts +0 -1946
- package/lib/components/Table/dummyTableData.d.ts.map +0 -1
- package/lib/components/Table/hooks.d.ts +0 -15
- package/lib/components/Table/hooks.d.ts.map +0 -1
- package/lib/components/Table/index.d.ts +0 -9
- package/lib/components/Table/index.d.ts.map +0 -1
- package/lib/components/Tabs/Tab/Tab.d.ts +0 -35
- package/lib/components/Tabs/Tab/Tab.d.ts.map +0 -1
- package/lib/components/Tabs/Tab/Tab.stories.d.ts +0 -156
- package/lib/components/Tabs/Tab/Tab.stories.d.ts.map +0 -1
- package/lib/components/Tabs/Tab/Tab.stories.js +0 -179
- package/lib/components/Tabs/Tab/index.d.ts +0 -2
- package/lib/components/Tabs/Tab/index.d.ts.map +0 -1
- package/lib/components/Tabs/TabList/TabDropdown.d.ts +0 -24
- package/lib/components/Tabs/TabList/TabDropdown.d.ts.map +0 -1
- package/lib/components/Tabs/TabList/TabList.d.ts +0 -24
- package/lib/components/Tabs/TabList/TabList.d.ts.map +0 -1
- package/lib/components/Tabs/TabList/TabList.stories.d.ts +0 -111
- package/lib/components/Tabs/TabList/TabList.stories.d.ts.map +0 -1
- package/lib/components/Tabs/TabList/TabList.stories.js +0 -197
- package/lib/components/Tabs/TabList/index.d.ts +0 -2
- package/lib/components/Tabs/TabList/index.d.ts.map +0 -1
- package/lib/components/Tabs/index.d.ts +0 -3
- package/lib/components/Tabs/index.d.ts.map +0 -1
- package/lib/components/Text/HighlightedText.stories.d.ts +0 -120
- package/lib/components/Text/HighlightedText.stories.d.ts.map +0 -1
- package/lib/components/Text/HighlightedText.stories.js +0 -131
- package/lib/components/Text/Text.d.ts +0 -46
- package/lib/components/Text/Text.d.ts.map +0 -1
- package/lib/components/Text/Text.stories.d.ts +0 -271
- package/lib/components/Text/Text.stories.d.ts.map +0 -1
- package/lib/components/Text/Text.stories.js +0 -262
- package/lib/components/Text/index.d.ts +0 -4
- package/lib/components/Text/index.d.ts.map +0 -1
- package/lib/components/TextTile/TextTile.d.ts +0 -14
- package/lib/components/TextTile/TextTile.d.ts.map +0 -1
- package/lib/components/TextTile/TextTile.stories.d.ts +0 -76
- package/lib/components/TextTile/TextTile.stories.d.ts.map +0 -1
- package/lib/components/TextTile/TextTile.stories.js +0 -100
- package/lib/components/TextTile/index.d.ts +0 -2
- package/lib/components/TextTile/index.d.ts.map +0 -1
- package/lib/components/Textarea/Textarea.d.ts +0 -28
- package/lib/components/Textarea/Textarea.d.ts.map +0 -1
- package/lib/components/Textarea/Textarea.stories.d.ts +0 -264
- package/lib/components/Textarea/Textarea.stories.d.ts.map +0 -1
- package/lib/components/Textarea/Textarea.stories.js +0 -329
- package/lib/components/Textarea/index.d.ts +0 -3
- package/lib/components/Textarea/index.d.ts.map +0 -1
- package/lib/components/Timeline/Timeline.d.ts +0 -18
- package/lib/components/Timeline/Timeline.d.ts.map +0 -1
- package/lib/components/Timeline/Timeline.stories.d.ts +0 -62
- package/lib/components/Timeline/Timeline.stories.d.ts.map +0 -1
- package/lib/components/Timeline/Timeline.stories.js +0 -267
- package/lib/components/Timeline/TimelineItem/TimelineItem.d.ts +0 -28
- package/lib/components/Timeline/TimelineItem/TimelineItem.d.ts.map +0 -1
- package/lib/components/Timeline/TimelineItem/TimelineItem.stories.d.ts +0 -184
- package/lib/components/Timeline/TimelineItem/TimelineItem.stories.d.ts.map +0 -1
- package/lib/components/Timeline/TimelineItem/TimelineItem.stories.js +0 -245
- package/lib/components/Timeline/TimelineItem/index.d.ts +0 -2
- package/lib/components/Timeline/TimelineItem/index.d.ts.map +0 -1
- package/lib/components/Timeline/index.d.ts +0 -3
- package/lib/components/Timeline/index.d.ts.map +0 -1
- package/lib/components/Toast/Toast.d.ts +0 -46
- package/lib/components/Toast/Toast.d.ts.map +0 -1
- package/lib/components/Toast/Toast.stories.d.ts +0 -105
- package/lib/components/Toast/Toast.stories.d.ts.map +0 -1
- package/lib/components/Toast/Toast.stories.js +0 -237
- package/lib/components/Toast/ToastContainer.d.ts +0 -3
- package/lib/components/Toast/ToastContainer.d.ts.map +0 -1
- package/lib/components/Toast/ToastManager.d.ts +0 -23
- package/lib/components/Toast/ToastManager.d.ts.map +0 -1
- package/lib/components/Toast/index.d.ts +0 -5
- package/lib/components/Toast/index.d.ts.map +0 -1
- package/lib/components/Toggle/Toggle.d.ts +0 -30
- package/lib/components/Toggle/Toggle.d.ts.map +0 -1
- package/lib/components/Toggle/Toggle.stories.d.ts +0 -142
- package/lib/components/Toggle/Toggle.stories.d.ts.map +0 -1
- package/lib/components/Toggle/Toggle.stories.js +0 -207
- package/lib/components/Toggle/index.d.ts +0 -2
- package/lib/components/Toggle/index.d.ts.map +0 -1
- package/lib/components/TokenListInput/TokenListInput.d.ts +0 -57
- package/lib/components/TokenListInput/TokenListInput.d.ts.map +0 -1
- package/lib/components/TokenListInput/TokenListInput.stories.d.ts +0 -379
- package/lib/components/TokenListInput/TokenListInput.stories.d.ts.map +0 -1
- package/lib/components/TokenListInput/TokenListInput.stories.js +0 -877
- package/lib/components/TokenListInput/TokenValueChips.d.ts +0 -20
- package/lib/components/TokenListInput/TokenValueChips.d.ts.map +0 -1
- package/lib/components/TokenListInput/index.d.ts +0 -2
- package/lib/components/TokenListInput/index.d.ts.map +0 -1
- package/lib/components/Tooltip/Tooltip.d.ts +0 -44
- package/lib/components/Tooltip/Tooltip.d.ts.map +0 -1
- package/lib/components/Tooltip/Tooltip.stories.d.ts +0 -172
- package/lib/components/Tooltip/Tooltip.stories.d.ts.map +0 -1
- package/lib/components/Tooltip/Tooltip.stories.js +0 -321
- package/lib/components/Tooltip/index.d.ts +0 -2
- package/lib/components/Tooltip/index.d.ts.map +0 -1
- package/lib/components/Truncate/Truncate.d.ts +0 -12
- package/lib/components/Truncate/Truncate.d.ts.map +0 -1
- package/lib/components/Truncate/Truncate.stories.d.ts +0 -94
- package/lib/components/Truncate/Truncate.stories.d.ts.map +0 -1
- package/lib/components/Truncate/Truncate.stories.js +0 -118
- package/lib/components/Truncate/index.d.ts +0 -3
- package/lib/components/Truncate/index.d.ts.map +0 -1
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.d.ts +0 -16
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.d.ts.map +0 -1
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.stories.d.ts +0 -110
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.stories.d.ts.map +0 -1
- package/lib/components/TruncatedTextWithTooltip/TruncatedTextWithTooltip.stories.js +0 -161
- package/lib/components/TruncatedTextWithTooltip/index.d.ts +0 -2
- package/lib/components/TruncatedTextWithTooltip/index.d.ts.map +0 -1
- package/lib/components/Typeahead/SimpleTypeahead.d.ts +0 -41
- package/lib/components/Typeahead/SimpleTypeahead.d.ts.map +0 -1
- package/lib/components/Typeahead/SimpleTypeahead.stories.d.ts +0 -396
- package/lib/components/Typeahead/SimpleTypeahead.stories.d.ts.map +0 -1
- package/lib/components/Typeahead/SimpleTypeahead.stories.js +0 -591
- package/lib/components/Typeahead/Typeahead.d.ts +0 -30
- package/lib/components/Typeahead/Typeahead.d.ts.map +0 -1
- package/lib/components/Typeahead/Typeahead.stories.d.ts +0 -399
- package/lib/components/Typeahead/Typeahead.stories.d.ts.map +0 -1
- package/lib/components/Typeahead/Typeahead.stories.js +0 -648
- package/lib/components/Typeahead/index.d.ts +0 -3
- package/lib/components/Typeahead/index.d.ts.map +0 -1
- package/lib/components/WeekdayPicker/WeekdayPicker.d.ts +0 -36
- package/lib/components/WeekdayPicker/WeekdayPicker.d.ts.map +0 -1
- package/lib/components/WeekdayPicker/WeekdayPicker.stories.d.ts +0 -238
- package/lib/components/WeekdayPicker/WeekdayPicker.stories.d.ts.map +0 -1
- package/lib/components/WeekdayPicker/WeekdayPicker.stories.js +0 -330
- package/lib/components/WeekdayPicker/index.d.ts +0 -2
- package/lib/components/WeekdayPicker/index.d.ts.map +0 -1
- package/lib/components/index.d.ts +0 -76
- package/lib/components/index.d.ts.map +0 -1
- package/lib/flow-to-typescript-codemod.d.ts +0 -48
- package/lib/hooks/index.d.ts +0 -17
- package/lib/hooks/index.d.ts.map +0 -1
- package/lib/hooks/useArbitraryOptionAddition/index.d.ts +0 -2
- package/lib/hooks/useArbitraryOptionAddition/index.d.ts.map +0 -1
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.d.ts +0 -24
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.d.ts.map +0 -1
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.stories.d.ts +0 -18
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.stories.d.ts.map +0 -1
- package/lib/hooks/useArbitraryOptionAddition/useArbitraryOptionAddition.stories.js +0 -171
- package/lib/hooks/useCopyToClipboard/index.d.ts +0 -2
- package/lib/hooks/useCopyToClipboard/index.d.ts.map +0 -1
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.d.ts +0 -5
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.d.ts.map +0 -1
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.stories.d.ts +0 -24
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.stories.d.ts.map +0 -1
- package/lib/hooks/useCopyToClipboard/useCopyToClipboard.stories.js +0 -107
- package/lib/hooks/useDebounce/index.d.ts +0 -2
- package/lib/hooks/useDebounce/index.d.ts.map +0 -1
- package/lib/hooks/useDebounce/useDebounce.d.ts +0 -2
- package/lib/hooks/useDebounce/useDebounce.d.ts.map +0 -1
- package/lib/hooks/useDebounce/useDebounce.stories.d.ts +0 -26
- package/lib/hooks/useDebounce/useDebounce.stories.d.ts.map +0 -1
- package/lib/hooks/useDebounce/useDebounce.stories.js +0 -80
- package/lib/hooks/useFileUpload/index.d.ts +0 -2
- package/lib/hooks/useFileUpload/index.d.ts.map +0 -1
- package/lib/hooks/useFileUpload/useFileUpload.d.ts +0 -17
- package/lib/hooks/useFileUpload/useFileUpload.d.ts.map +0 -1
- package/lib/hooks/useFileUpload/useFileUpload.stories.d.ts +0 -16
- package/lib/hooks/useFileUpload/useFileUpload.stories.d.ts.map +0 -1
- package/lib/hooks/useFileUpload/useFileUpload.stories.js +0 -405
- package/lib/hooks/useFilteredOptions/index.d.ts +0 -2
- package/lib/hooks/useFilteredOptions/index.d.ts.map +0 -1
- package/lib/hooks/useFilteredOptions/useFilteredOptions.d.ts +0 -17
- package/lib/hooks/useFilteredOptions/useFilteredOptions.d.ts.map +0 -1
- package/lib/hooks/useFilteredOptions/useFilteredOptions.stories.d.ts +0 -18
- package/lib/hooks/useFilteredOptions/useFilteredOptions.stories.d.ts.map +0 -1
- package/lib/hooks/useFilteredOptions/useFilteredOptions.stories.js +0 -155
- package/lib/hooks/useInfiniteScroll/index.d.ts +0 -2
- package/lib/hooks/useInfiniteScroll/index.d.ts.map +0 -1
- package/lib/hooks/useInfiniteScroll/useInfiniteScroll.d.ts +0 -15
- package/lib/hooks/useInfiniteScroll/useInfiniteScroll.d.ts.map +0 -1
- package/lib/hooks/useInputState/index.d.ts +0 -2
- package/lib/hooks/useInputState/index.d.ts.map +0 -1
- package/lib/hooks/useInputState/useInputState.d.ts +0 -13
- package/lib/hooks/useInputState/useInputState.d.ts.map +0 -1
- package/lib/hooks/useInputState/useInputState.stories.d.ts +0 -16
- package/lib/hooks/useInputState/useInputState.stories.d.ts.map +0 -1
- package/lib/hooks/useInputState/useInputState.stories.js +0 -67
- package/lib/hooks/useLockedBody/index.d.ts +0 -2
- package/lib/hooks/useLockedBody/index.d.ts.map +0 -1
- package/lib/hooks/useLockedBody/useLockedBody.d.ts +0 -4
- package/lib/hooks/useLockedBody/useLockedBody.d.ts.map +0 -1
- package/lib/hooks/useLockedBody/useLockedBody.stories.d.ts +0 -17
- package/lib/hooks/useLockedBody/useLockedBody.stories.d.ts.map +0 -1
- package/lib/hooks/useLockedBody/useLockedBody.stories.js +0 -69
- package/lib/hooks/useModal/index.d.ts +0 -2
- package/lib/hooks/useModal/index.d.ts.map +0 -1
- package/lib/hooks/useModal/useModal.d.ts +0 -11
- package/lib/hooks/useModal/useModal.d.ts.map +0 -1
- package/lib/hooks/useModal/useModal.stories.d.ts +0 -16
- package/lib/hooks/useModal/useModal.stories.d.ts.map +0 -1
- package/lib/hooks/useModal/useModal.stories.js +0 -138
- package/lib/hooks/useMountTransition/index.d.ts +0 -3
- package/lib/hooks/useMountTransition/index.d.ts.map +0 -1
- package/lib/hooks/useMountTransition/useMountTransition.stories.d.ts +0 -16
- package/lib/hooks/useMountTransition/useMountTransition.stories.d.ts.map +0 -1
- package/lib/hooks/useMountTransition/useMountTransition.stories.js +0 -64
- package/lib/hooks/usePagination/index.d.ts +0 -2
- package/lib/hooks/usePagination/index.d.ts.map +0 -1
- package/lib/hooks/usePagination/usePagination.d.ts +0 -5
- package/lib/hooks/usePagination/usePagination.d.ts.map +0 -1
- package/lib/hooks/usePagination/usePagination.stories.d.ts +0 -18
- package/lib/hooks/usePagination/usePagination.stories.d.ts.map +0 -1
- package/lib/hooks/usePagination/usePagination.stories.js +0 -77
- package/lib/hooks/useReferenceElementWidth/index.d.ts +0 -2
- package/lib/hooks/useReferenceElementWidth/index.d.ts.map +0 -1
- package/lib/hooks/useReferenceElementWidth/useReferenceElementWidth.d.ts +0 -2
- package/lib/hooks/useReferenceElementWidth/useReferenceElementWidth.d.ts.map +0 -1
- package/lib/hooks/useResizeObserver/index.d.ts +0 -2
- package/lib/hooks/useResizeObserver/index.d.ts.map +0 -1
- package/lib/hooks/useResizeObserver/useResizeObserver.d.ts +0 -3
- package/lib/hooks/useResizeObserver/useResizeObserver.d.ts.map +0 -1
- package/lib/hooks/useToastPortal/index.d.ts +0 -2
- package/lib/hooks/useToastPortal/index.d.ts.map +0 -1
- package/lib/hooks/useToastPortal/useToastPortal.d.ts +0 -10
- package/lib/hooks/useToastPortal/useToastPortal.d.ts.map +0 -1
- package/lib/hooks/useToggle/index.d.ts +0 -2
- package/lib/hooks/useToggle/index.d.ts.map +0 -1
- package/lib/hooks/useToggle/useToggle.d.ts +0 -2
- package/lib/hooks/useToggle/useToggle.d.ts.map +0 -1
- package/lib/hooks/useToggle/useToggle.stories.d.ts +0 -17
- package/lib/hooks/useToggle/useToggle.stories.d.ts.map +0 -1
- package/lib/hooks/useToggle/useToggle.stories.js +0 -68
- package/lib/hooks/useWindowSize/index.d.ts +0 -2
- package/lib/hooks/useWindowSize/index.d.ts.map +0 -1
- package/lib/hooks/useWindowSize/useWindowSize.d.ts +0 -7
- package/lib/hooks/useWindowSize/useWindowSize.d.ts.map +0 -1
- package/lib/hooks/useWindowSize/useWindowSize.stories.d.ts +0 -17
- package/lib/hooks/useWindowSize/useWindowSize.stories.d.ts.map +0 -1
- package/lib/hooks/useWindowSize/useWindowSize.stories.js +0 -58
- package/lib/index.d.ts +0 -6
- package/lib/index.d.ts.map +0 -1
- package/lib/stories/Border/Border.stories.d.ts +0 -12
- package/lib/stories/Border/Border.stories.d.ts.map +0 -1
- package/lib/stories/Color/Color.stories.d.ts +0 -13
- package/lib/stories/Color/Color.stories.d.ts.map +0 -1
- package/lib/stories/Elevation/Elevation.stories.d.ts +0 -12
- package/lib/stories/Elevation/Elevation.stories.d.ts.map +0 -1
- package/lib/stories/Introduction/index.d.ts +0 -3
- package/lib/stories/Introduction/index.d.ts.map +0 -1
- package/lib/stories/Motion/Motion.stories.d.ts +0 -12
- package/lib/stories/Motion/Motion.stories.d.ts.map +0 -1
- package/lib/stories/Opacity/Opacity.stories.d.ts +0 -12
- package/lib/stories/Opacity/Opacity.stories.d.ts.map +0 -1
- package/lib/stories/Shadow/Shadow.stories.d.ts +0 -12
- package/lib/stories/Shadow/Shadow.stories.d.ts.map +0 -1
- package/lib/stories/Size/Size.stories.d.ts +0 -12
- package/lib/stories/Size/Size.stories.d.ts.map +0 -1
- package/lib/stories/Space/Space.stories.d.ts +0 -12
- package/lib/stories/Space/Space.stories.d.ts.map +0 -1
- package/lib/stories/Tokens/index.d.ts +0 -3
- package/lib/stories/Tokens/index.d.ts.map +0 -1
- package/lib/styles/index.d.ts +0 -268
- package/lib/styles/index.d.ts.map +0 -1
- package/lib/styles/variables/_border.d.ts +0 -13
- package/lib/styles/variables/_border.d.ts.map +0 -1
- package/lib/styles/variables/_color.d.ts +0 -105
- package/lib/styles/variables/_color.d.ts.map +0 -1
- package/lib/styles/variables/_elevation.d.ts +0 -8
- package/lib/styles/variables/_elevation.d.ts.map +0 -1
- package/lib/styles/variables/_font.d.ts +0 -31
- package/lib/styles/variables/_font.d.ts.map +0 -1
- package/lib/styles/variables/_motion.d.ts +0 -7
- package/lib/styles/variables/_motion.d.ts.map +0 -1
- package/lib/styles/variables/_opacity.d.ts +0 -16
- package/lib/styles/variables/_opacity.d.ts.map +0 -1
- package/lib/styles/variables/_shadow.d.ts +0 -25
- package/lib/styles/variables/_shadow.d.ts.map +0 -1
- package/lib/styles/variables/_size.d.ts +0 -58
- package/lib/styles/variables/_size.d.ts.map +0 -1
- package/lib/styles/variables/_space.d.ts +0 -13
- package/lib/styles/variables/_space.d.ts.map +0 -1
- package/lib/types/charts.d.ts +0 -224
- package/lib/types/charts.d.ts.map +0 -1
- package/lib/types/common.d.ts +0 -10
- package/lib/types/common.d.ts.map +0 -1
- package/lib/types/cssvariables.d.js +0 -3
- package/lib/types/date-range-picker.d.ts +0 -21
- package/lib/types/date-range-picker.d.ts.map +0 -1
- package/lib/types/flow-to-typescript-codemod.d.js +0 -1
- package/lib/types/global.d.js +0 -1
- package/lib/types/index.d.ts +0 -7
- package/lib/types/index.d.ts.map +0 -1
- package/lib/types/menu.d.ts +0 -13
- package/lib/types/menu.d.ts.map +0 -1
- package/lib/types/toast.d.ts +0 -28
- package/lib/types/toast.d.ts.map +0 -1
- package/lib/types/typography.d.ts +0 -17
- package/lib/types/typography.d.ts.map +0 -1
- package/lib/utils/array/are-arrays-equal.d.ts +0 -4
- package/lib/utils/array/are-arrays-equal.d.ts.map +0 -1
- package/lib/utils/array/index.d.ts +0 -2
- package/lib/utils/array/index.d.ts.map +0 -1
- package/lib/utils/charts/charts.d.ts +0 -17
- package/lib/utils/charts/charts.d.ts.map +0 -1
- package/lib/utils/charts/columnChart.d.ts +0 -8
- package/lib/utils/charts/columnChart.d.ts.map +0 -1
- package/lib/utils/charts/donutChart.d.ts +0 -21
- package/lib/utils/charts/donutChart.d.ts.map +0 -1
- package/lib/utils/charts/funnelChart.d.ts +0 -10
- package/lib/utils/charts/funnelChart.d.ts.map +0 -1
- package/lib/utils/charts/helpers.d.ts +0 -76
- package/lib/utils/charts/helpers.d.ts.map +0 -1
- package/lib/utils/charts/index.d.ts +0 -8
- package/lib/utils/charts/index.d.ts.map +0 -1
- package/lib/utils/charts/lineChart.d.ts +0 -7
- package/lib/utils/charts/lineChart.d.ts.map +0 -1
- package/lib/utils/charts/spiderChart.d.ts +0 -18
- package/lib/utils/charts/spiderChart.d.ts.map +0 -1
- package/lib/utils/charts/typography.d.ts +0 -58
- package/lib/utils/charts/typography.d.ts.map +0 -1
- package/lib/utils/classify/classify.stories.d.ts +0 -17
- package/lib/utils/classify/classify.stories.d.ts.map +0 -1
- package/lib/utils/classify/classify.stories.js +0 -63
- package/lib/utils/classify/index.d.ts +0 -3
- package/lib/utils/classify/index.d.ts.map +0 -1
- package/lib/utils/click-away/ClickAway.stories.d.ts +0 -106
- package/lib/utils/click-away/ClickAway.stories.d.ts.map +0 -1
- package/lib/utils/click-away/ClickAway.stories.js +0 -260
- package/lib/utils/click-away/click-away.d.ts +0 -77
- package/lib/utils/click-away/click-away.d.ts.map +0 -1
- package/lib/utils/click-away/index.d.ts +0 -2
- package/lib/utils/click-away/index.d.ts.map +0 -1
- package/lib/utils/date-range-picker/date-range-picker.d.ts +0 -63
- package/lib/utils/date-range-picker/date-range-picker.d.ts.map +0 -1
- package/lib/utils/date-range-picker/index.d.ts +0 -3
- package/lib/utils/date-range-picker/index.d.ts.map +0 -1
- package/lib/utils/date-range-picker/timezones.d.ts +0 -258
- package/lib/utils/date-range-picker/timezones.d.ts.map +0 -1
- package/lib/utils/dom/dom.d.ts +0 -38
- package/lib/utils/dom/dom.d.ts.map +0 -1
- package/lib/utils/dom/dom.stories.d.ts +0 -15
- package/lib/utils/dom/dom.stories.d.ts.map +0 -1
- package/lib/utils/dom/dom.stories.js +0 -59
- package/lib/utils/dom/index.d.ts +0 -2
- package/lib/utils/dom/index.d.ts.map +0 -1
- package/lib/utils/helpers/helpers.d.ts +0 -4
- package/lib/utils/helpers/helpers.d.ts.map +0 -1
- package/lib/utils/helpers/helpers.stories.d.ts +0 -15
- package/lib/utils/helpers/helpers.stories.d.ts.map +0 -1
- package/lib/utils/helpers/helpers.stories.js +0 -111
- package/lib/utils/helpers/index.d.ts +0 -2
- package/lib/utils/helpers/index.d.ts.map +0 -1
- package/lib/utils/index.d.ts +0 -15
- package/lib/utils/index.d.ts.map +0 -1
- package/lib/utils/makeClassNameComponent/index.d.ts +0 -2
- package/lib/utils/makeClassNameComponent/index.d.ts.map +0 -1
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.d.ts +0 -9
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.d.ts.map +0 -1
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.stories.d.ts +0 -15
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.stories.d.ts.map +0 -1
- package/lib/utils/makeClassNameComponent/makeClassNameComponent.stories.js +0 -44
- package/lib/utils/menu/index.d.ts +0 -2
- package/lib/utils/menu/index.d.ts.map +0 -1
- package/lib/utils/menu/menu.d.ts +0 -20
- package/lib/utils/menu/menu.d.ts.map +0 -1
- package/lib/utils/merge-refs/index.d.ts +0 -2
- package/lib/utils/merge-refs/index.d.ts.map +0 -1
- package/lib/utils/merge-refs/merge-refs.d.ts +0 -4
- package/lib/utils/merge-refs/merge-refs.d.ts.map +0 -1
- package/lib/utils/merge-refs/merge-refs.stories.d.ts +0 -15
- package/lib/utils/merge-refs/merge-refs.stories.d.ts.map +0 -1
- package/lib/utils/merge-refs/merge-refs.stories.js +0 -86
- package/lib/utils/rating/index.d.ts +0 -2
- package/lib/utils/rating/index.d.ts.map +0 -1
- package/lib/utils/rating/rating.d.ts +0 -13
- package/lib/utils/rating/rating.d.ts.map +0 -1
- package/lib/utils/score-bar/index.d.ts +0 -2
- package/lib/utils/score-bar/index.d.ts.map +0 -1
- package/lib/utils/score-bar/score-bar.d.ts +0 -10
- package/lib/utils/score-bar/score-bar.d.ts.map +0 -1
- package/lib/utils/string/index.d.ts +0 -2
- package/lib/utils/string/index.d.ts.map +0 -1
- package/lib/utils/string/string.d.ts +0 -6
- package/lib/utils/string/string.d.ts.map +0 -1
- package/lib/utils/string/string.stories.d.ts +0 -15
- package/lib/utils/string/string.stories.d.ts.map +0 -1
- package/lib/utils/string/string.stories.js +0 -63
- package/lib/utils/token-list-input/token-list-input.d.ts +0 -15
- package/lib/utils/token-list-input/token-list-input.d.ts.map +0 -1
- package/lib/utils/tokens/index.d.ts +0 -2
- package/lib/utils/tokens/index.d.ts.map +0 -1
- package/lib/utils/tokens/tokens.d.ts +0 -41
- package/lib/utils/tokens/tokens.d.ts.map +0 -1
- package/tsconfig.declaration.json +0 -19
- package/tsconfig.declaration.tsbuildinfo +0 -1
- package/tsconfig.json +0 -40
|
@@ -1,258 +0,0 @@
|
|
|
1
|
-
export declare const TIMEZONES: {
|
|
2
|
-
readonly 'Pacific/Niue': "(GMT-11:00) Niue";
|
|
3
|
-
readonly 'Pacific/Pago_Pago': "(GMT-11:00) Pago Pago";
|
|
4
|
-
readonly 'Pacific/Honolulu': "(GMT-10:00) Hawaii Time";
|
|
5
|
-
readonly 'Pacific/Rarotonga': "(GMT-10:00) Rarotonga";
|
|
6
|
-
readonly 'Pacific/Tahiti': "(GMT-10:00) Tahiti";
|
|
7
|
-
readonly 'Pacific/Marquesas': "(GMT-09:30) Marquesas";
|
|
8
|
-
readonly 'America/Anchorage': "(GMT-09:00) Alaska Time";
|
|
9
|
-
readonly 'Pacific/Gambier': "(GMT-09:00) Gambier";
|
|
10
|
-
readonly 'America/Los_Angeles': "(GMT-08:00) Pacific Time";
|
|
11
|
-
readonly 'America/Tijuana': "(GMT-08:00) Pacific Time - Tijuana";
|
|
12
|
-
readonly 'America/Vancouver': "(GMT-08:00) Pacific Time - Vancouver";
|
|
13
|
-
readonly 'America/Whitehorse': "(GMT-08:00) Pacific Time - Whitehorse";
|
|
14
|
-
readonly 'Pacific/Pitcairn': "(GMT-08:00) Pitcairn";
|
|
15
|
-
readonly 'America/Dawson_Creek': "(GMT-07:00) Mountain Time - Dawson Creek";
|
|
16
|
-
readonly 'America/Denver': "(GMT-07:00) Mountain Time";
|
|
17
|
-
readonly 'America/Edmonton': "(GMT-07:00) Mountain Time - Edmonton";
|
|
18
|
-
readonly 'America/Hermosillo': "(GMT-07:00) Mountain Time - Hermosillo";
|
|
19
|
-
readonly 'America/Mazatlan': "(GMT-07:00) Mountain Time - Chihuahua, Mazatlan";
|
|
20
|
-
readonly 'America/Phoenix': "(GMT-07:00) Mountain Time - Arizona";
|
|
21
|
-
readonly 'America/Yellowknife': "(GMT-07:00) Mountain Time - Yellowknife";
|
|
22
|
-
readonly 'America/Belize': "(GMT-06:00) Belize";
|
|
23
|
-
readonly 'America/Chicago': "(GMT-06:00) Central Time";
|
|
24
|
-
readonly 'America/Costa_Rica': "(GMT-06:00) Costa Rica";
|
|
25
|
-
readonly 'America/El_Salvador': "(GMT-06:00) El Salvador";
|
|
26
|
-
readonly 'America/Guatemala': "(GMT-06:00) Guatemala";
|
|
27
|
-
readonly 'America/Managua': "(GMT-06:00) Managua";
|
|
28
|
-
readonly 'America/Mexico_City': "(GMT-06:00) Central Time - Mexico City";
|
|
29
|
-
readonly 'America/Regina': "(GMT-06:00) Central Time - Regina";
|
|
30
|
-
readonly 'America/Tegucigalpa': "(GMT-06:00) Central Time - Tegucigalpa";
|
|
31
|
-
readonly 'America/Winnipeg': "(GMT-06:00) Central Time - Winnipeg";
|
|
32
|
-
readonly 'Pacific/Galapagos': "(GMT-06:00) Galapagos";
|
|
33
|
-
readonly 'America/Bogota': "(GMT-05:00) Bogota";
|
|
34
|
-
readonly 'America/Cancun': "(GMT-05:00) America Cancun";
|
|
35
|
-
readonly 'America/Cayman': "(GMT-05:00) Cayman";
|
|
36
|
-
readonly 'America/Guayaquil': "(GMT-05:00) Guayaquil";
|
|
37
|
-
readonly 'America/Havana': "(GMT-05:00) Havana";
|
|
38
|
-
readonly 'America/Iqaluit': "(GMT-05:00) Eastern Time - Iqaluit";
|
|
39
|
-
readonly 'America/Jamaica': "(GMT-05:00) Jamaica";
|
|
40
|
-
readonly 'America/Lima': "(GMT-05:00) Lima";
|
|
41
|
-
readonly 'America/Nassau': "(GMT-05:00) Nassau";
|
|
42
|
-
readonly 'America/New_York': "(GMT-05:00) Eastern Time";
|
|
43
|
-
readonly 'America/Panama': "(GMT-05:00) Panama";
|
|
44
|
-
readonly 'America/Port-au-Prince': "(GMT-05:00) Port-au-Prince";
|
|
45
|
-
readonly 'America/Rio_Branco': "(GMT-05:00) Rio Branco";
|
|
46
|
-
readonly 'America/Toronto': "(GMT-05:00) Eastern Time - Toronto";
|
|
47
|
-
readonly 'Pacific/Easter': "(GMT-05:00) Easter Island";
|
|
48
|
-
readonly 'America/Caracas': "(GMT-04:00) Caracas";
|
|
49
|
-
readonly 'America/Asuncion': "(GMT-03:00) Asuncion";
|
|
50
|
-
readonly 'America/Barbados': "(GMT-04:00) Barbados";
|
|
51
|
-
readonly 'America/Boa_Vista': "(GMT-04:00) Boa Vista";
|
|
52
|
-
readonly 'America/Campo_Grande': "(GMT-03:00) Campo Grande";
|
|
53
|
-
readonly 'America/Cuiaba': "(GMT-03:00) Cuiaba";
|
|
54
|
-
readonly 'America/Curacao': "(GMT-04:00) Curacao";
|
|
55
|
-
readonly 'America/Grand_Turk': "(GMT-04:00) Grand Turk";
|
|
56
|
-
readonly 'America/Guyana': "(GMT-04:00) Guyana";
|
|
57
|
-
readonly 'America/Halifax': "(GMT-04:00) Atlantic Time - Halifax";
|
|
58
|
-
readonly 'America/La_Paz': "(GMT-04:00) La Paz";
|
|
59
|
-
readonly 'America/Manaus': "(GMT-04:00) Manaus";
|
|
60
|
-
readonly 'America/Martinique': "(GMT-04:00) Martinique";
|
|
61
|
-
readonly 'America/Port_of_Spain': "(GMT-04:00) Port of Spain";
|
|
62
|
-
readonly 'America/Porto_Velho': "(GMT-04:00) Porto Velho";
|
|
63
|
-
readonly 'America/Puerto_Rico': "(GMT-04:00) Puerto Rico";
|
|
64
|
-
readonly 'America/Santo_Domingo': "(GMT-04:00) Santo Domingo";
|
|
65
|
-
readonly 'America/Thule': "(GMT-04:00) Thule";
|
|
66
|
-
readonly 'Atlantic/Bermuda': "(GMT-04:00) Bermuda";
|
|
67
|
-
readonly 'America/St_Johns': "(GMT-03:30) Newfoundland Time - St. Johns";
|
|
68
|
-
readonly 'America/Araguaina': "(GMT-03:00) Araguaina";
|
|
69
|
-
readonly 'America/Argentina/Buenos_Aires': "(GMT-03:00) Buenos Aires";
|
|
70
|
-
readonly 'America/Bahia': "(GMT-03:00) Salvador";
|
|
71
|
-
readonly 'America/Belem': "(GMT-03:00) Belem";
|
|
72
|
-
readonly 'America/Cayenne': "(GMT-03:00) Cayenne";
|
|
73
|
-
readonly 'America/Fortaleza': "(GMT-03:00) Fortaleza";
|
|
74
|
-
readonly 'America/Godthab': "(GMT-03:00) Godthab";
|
|
75
|
-
readonly 'America/Maceio': "(GMT-03:00) Maceio";
|
|
76
|
-
readonly 'America/Miquelon': "(GMT-03:00) Miquelon";
|
|
77
|
-
readonly 'America/Montevideo': "(GMT-03:00) Montevideo";
|
|
78
|
-
readonly 'America/Paramaribo': "(GMT-03:00) Paramaribo";
|
|
79
|
-
readonly 'America/Recife': "(GMT-03:00) Recife";
|
|
80
|
-
readonly 'America/Santiago': "(GMT-03:00) Santiago";
|
|
81
|
-
readonly 'America/Sao_Paulo': "(GMT-03:00) Sao Paulo";
|
|
82
|
-
readonly 'Antarctica/Palmer': "(GMT-03:00) Palmer";
|
|
83
|
-
readonly 'Antarctica/Rothera': "(GMT-03:00) Rothera";
|
|
84
|
-
readonly 'Atlantic/Stanley': "(GMT-03:00) Stanley";
|
|
85
|
-
readonly 'America/Noronha': "(GMT-02:00) Noronha";
|
|
86
|
-
readonly 'Atlantic/South_Georgia': "(GMT-02:00) South Georgia";
|
|
87
|
-
readonly 'America/Scoresbysund': "(GMT-01:00) Scoresbysund";
|
|
88
|
-
readonly 'Atlantic/Azores': "(GMT-01:00) Azores";
|
|
89
|
-
readonly 'Atlantic/Cape_Verde': "(GMT-01:00) Cape Verde";
|
|
90
|
-
readonly 'Africa/Abidjan': "(GMT+00:00) Abidjan";
|
|
91
|
-
readonly 'Africa/Accra': "(GMT+00:00) Accra";
|
|
92
|
-
readonly 'Africa/Bissau': "(GMT+00:00) Bissau";
|
|
93
|
-
readonly 'Africa/Casablanca': "(GMT+00:00) Casablanca";
|
|
94
|
-
readonly 'Africa/El_Aaiun': "(GMT+00:00) El Aaiun";
|
|
95
|
-
readonly 'Africa/Monrovia': "(GMT+00:00) Monrovia";
|
|
96
|
-
readonly 'America/Danmarkshavn': "(GMT+00:00) Danmarkshavn";
|
|
97
|
-
readonly 'Atlantic/Canary': "(GMT+00:00) Canary Islands";
|
|
98
|
-
readonly 'Atlantic/Faroe': "(GMT+00:00) Faeroe";
|
|
99
|
-
readonly 'Atlantic/Reykjavik': "(GMT+00:00) Reykjavik";
|
|
100
|
-
readonly 'Etc/GMT': "(GMT+00:00) GMT (no daylight saving)";
|
|
101
|
-
readonly 'Europe/Dublin': "(GMT+00:00) Dublin";
|
|
102
|
-
readonly 'Europe/Lisbon': "(GMT+00:00) Lisbon";
|
|
103
|
-
readonly 'Europe/London': "(GMT+00:00) London";
|
|
104
|
-
readonly 'Africa/Algiers': "(GMT+01:00) Algiers";
|
|
105
|
-
readonly 'Africa/Ceuta': "(GMT+01:00) Ceuta";
|
|
106
|
-
readonly 'Africa/Lagos': "(GMT+01:00) Lagos";
|
|
107
|
-
readonly 'Africa/Ndjamena': "(GMT+01:00) Ndjamena";
|
|
108
|
-
readonly 'Africa/Tunis': "(GMT+01:00) Tunis";
|
|
109
|
-
readonly 'Africa/Windhoek': "(GMT+02:00) Windhoek";
|
|
110
|
-
readonly 'Europe/Amsterdam': "(GMT+01:00) Amsterdam";
|
|
111
|
-
readonly 'Europe/Andorra': "(GMT+01:00) Andorra";
|
|
112
|
-
readonly 'Europe/Belgrade': "(GMT+01:00) Central European Time - Belgrade";
|
|
113
|
-
readonly 'Europe/Berlin': "(GMT+01:00) Berlin";
|
|
114
|
-
readonly 'Europe/Brussels': "(GMT+01:00) Brussels";
|
|
115
|
-
readonly 'Europe/Budapest': "(GMT+01:00) Budapest";
|
|
116
|
-
readonly 'Europe/Copenhagen': "(GMT+01:00) Copenhagen";
|
|
117
|
-
readonly 'Europe/Gibraltar': "(GMT+01:00) Gibraltar";
|
|
118
|
-
readonly 'Europe/Luxembourg': "(GMT+01:00) Luxembourg";
|
|
119
|
-
readonly 'Europe/Madrid': "(GMT+01:00) Madrid";
|
|
120
|
-
readonly 'Europe/Malta': "(GMT+01:00) Malta";
|
|
121
|
-
readonly 'Europe/Monaco': "(GMT+01:00) Monaco";
|
|
122
|
-
readonly 'Europe/Oslo': "(GMT+01:00) Oslo";
|
|
123
|
-
readonly 'Europe/Paris': "(GMT+01:00) Paris";
|
|
124
|
-
readonly 'Europe/Prague': "(GMT+01:00) Central European Time - Prague";
|
|
125
|
-
readonly 'Europe/Rome': "(GMT+01:00) Rome";
|
|
126
|
-
readonly 'Europe/Stockholm': "(GMT+01:00) Stockholm";
|
|
127
|
-
readonly 'Europe/Tirane': "(GMT+01:00) Tirane";
|
|
128
|
-
readonly 'Europe/Vienna': "(GMT+01:00) Vienna";
|
|
129
|
-
readonly 'Europe/Warsaw': "(GMT+01:00) Warsaw";
|
|
130
|
-
readonly 'Europe/Zurich': "(GMT+01:00) Zurich";
|
|
131
|
-
readonly 'Africa/Cairo': "(GMT+02:00) Cairo";
|
|
132
|
-
readonly 'Africa/Johannesburg': "(GMT+02:00) Johannesburg";
|
|
133
|
-
readonly 'Africa/Maputo': "(GMT+02:00) Maputo";
|
|
134
|
-
readonly 'Africa/Tripoli': "(GMT+02:00) Tripoli";
|
|
135
|
-
readonly 'Asia/Amman': "(GMT+02:00) Amman";
|
|
136
|
-
readonly 'Asia/Beirut': "(GMT+02:00) Beirut";
|
|
137
|
-
readonly 'Asia/Damascus': "(GMT+02:00) Damascus";
|
|
138
|
-
readonly 'Asia/Gaza': "(GMT+02:00) Gaza";
|
|
139
|
-
readonly 'Asia/Jerusalem': "(GMT+02:00) Jerusalem";
|
|
140
|
-
readonly 'Asia/Nicosia': "(GMT+02:00) Nicosia";
|
|
141
|
-
readonly 'Europe/Athens': "(GMT+02:00) Athens";
|
|
142
|
-
readonly 'Europe/Bucharest': "(GMT+02:00) Bucharest";
|
|
143
|
-
readonly 'Europe/Chisinau': "(GMT+02:00) Chisinau";
|
|
144
|
-
readonly 'Europe/Helsinki': "(GMT+02:00) Helsinki";
|
|
145
|
-
readonly 'Europe/Istanbul': "(GMT+03:00) Istanbul";
|
|
146
|
-
readonly 'Europe/Kaliningrad': "(GMT+02:00) Moscow-01 - Kaliningrad";
|
|
147
|
-
readonly 'Europe/Kyiv': "(GMT+02:00) Kyiv";
|
|
148
|
-
readonly 'Europe/Riga': "(GMT+02:00) Riga";
|
|
149
|
-
readonly 'Europe/Sofia': "(GMT+02:00) Sofia";
|
|
150
|
-
readonly 'Europe/Tallinn': "(GMT+02:00) Tallinn";
|
|
151
|
-
readonly 'Europe/Vilnius': "(GMT+02:00) Vilnius";
|
|
152
|
-
readonly 'Africa/Khartoum': "(GMT+03:00) Khartoum";
|
|
153
|
-
readonly 'Africa/Nairobi': "(GMT+03:00) Nairobi";
|
|
154
|
-
readonly 'Antarctica/Syowa': "(GMT+03:00) Syowa";
|
|
155
|
-
readonly 'Asia/Baghdad': "(GMT+03:00) Baghdad";
|
|
156
|
-
readonly 'Asia/Qatar': "(GMT+03:00) Qatar";
|
|
157
|
-
readonly 'Asia/Riyadh': "(GMT+03:00) Riyadh";
|
|
158
|
-
readonly 'Europe/Minsk': "(GMT+03:00) Minsk";
|
|
159
|
-
readonly 'Europe/Moscow': "(GMT+03:00) Moscow+00 - Moscow";
|
|
160
|
-
readonly 'Asia/Tehran': "(GMT+03:30) Tehran";
|
|
161
|
-
readonly 'Asia/Baku': "(GMT+04:00) Baku";
|
|
162
|
-
readonly 'Asia/Dubai': "(GMT+04:00) Dubai";
|
|
163
|
-
readonly 'Asia/Tbilisi': "(GMT+04:00) Tbilisi";
|
|
164
|
-
readonly 'Asia/Yerevan': "(GMT+04:00) Yerevan";
|
|
165
|
-
readonly 'Europe/Samara': "(GMT+04:00) Moscow+01 - Samara";
|
|
166
|
-
readonly 'Indian/Mahe': "(GMT+04:00) Mahe";
|
|
167
|
-
readonly 'Indian/Mauritius': "(GMT+04:00) Mauritius";
|
|
168
|
-
readonly 'Indian/Reunion': "(GMT+04:00) Reunion";
|
|
169
|
-
readonly 'Asia/Kabul': "(GMT+04:30) Kabul";
|
|
170
|
-
readonly 'Antarctica/Mawson': "(GMT+05:00) Mawson";
|
|
171
|
-
readonly 'Asia/Aqtau': "(GMT+05:00) Aqtau";
|
|
172
|
-
readonly 'Asia/Aqtobe': "(GMT+05:00) Aqtobe";
|
|
173
|
-
readonly 'Asia/Ashgabat': "(GMT+05:00) Ashgabat";
|
|
174
|
-
readonly 'Asia/Dushanbe': "(GMT+05:00) Dushanbe";
|
|
175
|
-
readonly 'Asia/Karachi': "(GMT+05:00) Karachi";
|
|
176
|
-
readonly 'Asia/Tashkent': "(GMT+05:00) Tashkent";
|
|
177
|
-
readonly 'Asia/Yekaterinburg': "(GMT+05:00) Moscow+02 - Yekaterinburg";
|
|
178
|
-
readonly 'Indian/Kerguelen': "(GMT+05:00) Kerguelen";
|
|
179
|
-
readonly 'Indian/Maldives': "(GMT+05:00) Maldives";
|
|
180
|
-
readonly 'Asia/Calcutta': "(GMT+05:30) India Standard Time";
|
|
181
|
-
readonly 'Asia/Colombo': "(GMT+05:30) Colombo";
|
|
182
|
-
readonly 'Asia/Katmandu': "(GMT+05:45) Katmandu";
|
|
183
|
-
readonly 'Antarctica/Vostok': "(GMT+06:00) Vostok";
|
|
184
|
-
readonly 'Asia/Almaty': "(GMT+06:00) Almaty";
|
|
185
|
-
readonly 'Asia/Bishkek': "(GMT+06:00) Bishkek";
|
|
186
|
-
readonly 'Asia/Dhaka': "(GMT+06:00) Dhaka";
|
|
187
|
-
readonly 'Asia/Omsk': "(GMT+06:00) Moscow+03 - Omsk, Novosibirsk";
|
|
188
|
-
readonly 'Asia/Thimphu': "(GMT+06:00) Thimphu";
|
|
189
|
-
readonly 'Indian/Chagos': "(GMT+06:00) Chagos";
|
|
190
|
-
readonly 'Asia/Rangoon': "(GMT+06:30) Rangoon";
|
|
191
|
-
readonly 'Indian/Cocos': "(GMT+06:30) Cocos";
|
|
192
|
-
readonly 'Antarctica/Davis': "(GMT+07:00) Davis";
|
|
193
|
-
readonly 'Asia/Bangkok': "(GMT+07:00) Bangkok";
|
|
194
|
-
readonly 'Asia/Hovd': "(GMT+07:00) Hovd";
|
|
195
|
-
readonly 'Asia/Jakarta': "(GMT+07:00) Jakarta";
|
|
196
|
-
readonly 'Asia/Krasnoyarsk': "(GMT+07:00) Moscow+04 - Krasnoyarsk";
|
|
197
|
-
readonly 'Asia/Saigon': "(GMT+07:00) Hanoi";
|
|
198
|
-
readonly 'Asia/Ho_Chi_Minh': "(GMT+07:00) Ho Chi Minh";
|
|
199
|
-
readonly 'Indian/Christmas': "(GMT+07:00) Christmas";
|
|
200
|
-
readonly 'Antarctica/Casey': "(GMT+08:00) Casey";
|
|
201
|
-
readonly 'Asia/Brunei': "(GMT+08:00) Brunei";
|
|
202
|
-
readonly 'Asia/Choibalsan': "(GMT+08:00) Choibalsan";
|
|
203
|
-
readonly 'Asia/Hong_Kong': "(GMT+08:00) Hong Kong";
|
|
204
|
-
readonly 'Asia/Irkutsk': "(GMT+08:00) Moscow+05 - Irkutsk";
|
|
205
|
-
readonly 'Asia/Kuala_Lumpur': "(GMT+08:00) Kuala Lumpur";
|
|
206
|
-
readonly 'Asia/Macau': "(GMT+08:00) Macau";
|
|
207
|
-
readonly 'Asia/Makassar': "(GMT+08:00) Makassar";
|
|
208
|
-
readonly 'Asia/Manila': "(GMT+08:00) Manila";
|
|
209
|
-
readonly 'Asia/Shanghai': "(GMT+08:00) China Time - Beijing";
|
|
210
|
-
readonly 'Asia/Singapore': "(GMT+08:00) Singapore";
|
|
211
|
-
readonly 'Asia/Taipei': "(GMT+08:00) Taipei";
|
|
212
|
-
readonly 'Asia/Ulaanbaatar': "(GMT+08:00) Ulaanbaatar";
|
|
213
|
-
readonly 'Australia/Perth': "(GMT+08:00) Western Time - Perth";
|
|
214
|
-
readonly 'Asia/Pyongyang': "(GMT+08:30) Pyongyang";
|
|
215
|
-
readonly 'Asia/Dili': "(GMT+09:00) Dili";
|
|
216
|
-
readonly 'Asia/Jayapura': "(GMT+09:00) Jayapura";
|
|
217
|
-
readonly 'Asia/Seoul': "(GMT+09:00) Seoul";
|
|
218
|
-
readonly 'Asia/Tokyo': "(GMT+09:00) Tokyo";
|
|
219
|
-
readonly 'Asia/Yakutsk': "(GMT+09:00) Moscow+06 - Yakutsk";
|
|
220
|
-
readonly 'Pacific/Palau': "(GMT+09:00) Palau";
|
|
221
|
-
readonly 'Australia/Adelaide': "(GMT+10:30) Central Time - Adelaide";
|
|
222
|
-
readonly 'Australia/Darwin': "(GMT+09:30) Central Time - Darwin";
|
|
223
|
-
readonly 'Antarctica/DumontDUrville': "(GMT+10:00) Dumont D'Urville";
|
|
224
|
-
readonly 'Asia/Magadan': "(GMT+10:00) Moscow+07 - Magadan";
|
|
225
|
-
readonly 'Asia/Vladivostok': "(GMT+10:00) Moscow+07 - Vladivostok";
|
|
226
|
-
readonly 'Australia/Brisbane': "(GMT+10:00) Eastern Time - Brisbane";
|
|
227
|
-
readonly 'Asia/Sakhalin': "(GMT+11:00) Moscow+08 - Yuzhno-Sakhalin";
|
|
228
|
-
readonly 'Australia/Hobart': "(GMT+11:00) Eastern Time - Hobart";
|
|
229
|
-
readonly 'Australia/Sydney': "(GMT+11:00) Eastern Time - Melbourne, Sydney";
|
|
230
|
-
readonly 'Pacific/Chuuk': "(GMT+10:00) Truk";
|
|
231
|
-
readonly 'Pacific/Guam': "(GMT+10:00) Guam";
|
|
232
|
-
readonly 'Pacific/Port_Moresby': "(GMT+10:00) Port Moresby";
|
|
233
|
-
readonly 'Pacific/Efate': "(GMT+11:00) Efate";
|
|
234
|
-
readonly 'Pacific/Guadalcanal': "(GMT+11:00) Guadalcanal";
|
|
235
|
-
readonly 'Pacific/Kosrae': "(GMT+11:00) Kosrae";
|
|
236
|
-
readonly 'Pacific/Norfolk': "(GMT+11:00) Norfolk";
|
|
237
|
-
readonly 'Pacific/Noumea': "(GMT+11:00) Noumea";
|
|
238
|
-
readonly 'Pacific/Pohnpei': "(GMT+11:00) Ponape";
|
|
239
|
-
readonly 'Asia/Kamchatka': "(GMT+12:00) Moscow+09 - Petropavlovsk-Kamchatskiy";
|
|
240
|
-
readonly 'Pacific/Auckland': "(GMT+13:00) Auckland";
|
|
241
|
-
readonly 'Pacific/Fiji': "(GMT+13:00) Fiji";
|
|
242
|
-
readonly 'Pacific/Funafuti': "(GMT+12:00) Funafuti";
|
|
243
|
-
readonly 'Pacific/Kwajalein': "(GMT+12:00) Kwajalein";
|
|
244
|
-
readonly 'Pacific/Majuro': "(GMT+12:00) Majuro";
|
|
245
|
-
readonly 'Pacific/Nauru': "(GMT+12:00) Nauru";
|
|
246
|
-
readonly 'Pacific/Tarawa': "(GMT+12:00) Tarawa";
|
|
247
|
-
readonly 'Pacific/Wake': "(GMT+12:00) Wake";
|
|
248
|
-
readonly 'Pacific/Wallis': "(GMT+12:00) Wallis";
|
|
249
|
-
readonly 'Pacific/Apia': "(GMT+14:00) Apia";
|
|
250
|
-
readonly 'Pacific/Enderbury': "(GMT+13:00) Enderbury";
|
|
251
|
-
readonly 'Pacific/Fakaofo': "(GMT+13:00) Fakaofo";
|
|
252
|
-
readonly 'Pacific/Tongatapu': "(GMT+13:00) Tongatapu";
|
|
253
|
-
readonly 'Pacific/Kiritimati': "(GMT+14:00) Kiritimati";
|
|
254
|
-
};
|
|
255
|
-
export declare const addTimezoneStartOfDay: (date: string, timezone: string) => string;
|
|
256
|
-
export declare const addTimezoneEndOfDay: (date: string, timezone: string) => string;
|
|
257
|
-
export declare const getTodayInTimezone: (timezone: string) => string;
|
|
258
|
-
//# sourceMappingURL=timezones.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"timezones.d.ts","sourceRoot":"","sources":["../../../src/utils/date-range-picker/timezones.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6PZ,CAAC;AAEX,eAAO,MAAM,qBAAqB,GAAI,MAAM,MAAM,EAAE,UAAU,MAAM,KAAG,MAA8D,CAAC;AAEtI,eAAO,MAAM,mBAAmB,GAAI,MAAM,MAAM,EAAE,UAAU,MAAM,KAAG,MAA4D,CAAC;AAElI,eAAO,MAAM,kBAAkB,GAAI,UAAU,MAAM,KAAG,MAAkD,CAAC"}
|
package/lib/utils/dom/dom.d.ts
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
export type Placement = 'top' | 'left' | 'right' | 'bottom';
|
|
2
|
-
export type ArrowPosition = 'start' | 'center' | 'end';
|
|
3
|
-
export type Justify = ArrowPosition;
|
|
4
|
-
export type PositionedPlacement = {
|
|
5
|
-
placement: Placement;
|
|
6
|
-
x: number;
|
|
7
|
-
y: number;
|
|
8
|
-
};
|
|
9
|
-
export declare function createElement(document: Document, type: string, props: {
|
|
10
|
-
[key: string]: unknown;
|
|
11
|
-
}): HTMLElement;
|
|
12
|
-
export declare function pageHeight(): number;
|
|
13
|
-
export declare function getFixedAnchorPosition(element: HTMLElement, placement?: Placement, pad?: number, justify?: Justify): PositionedPlacement;
|
|
14
|
-
export declare function getAnchorPosition(element: HTMLElement, placement?: Placement, pad?: number, justify?: Justify): PositionedPlacement;
|
|
15
|
-
export declare function pxToNumber(px: string): number;
|
|
16
|
-
type Handlers = Partial<{
|
|
17
|
-
click: (arg1: MouseEvent) => unknown;
|
|
18
|
-
mousedown: (arg1: MouseEvent) => unknown;
|
|
19
|
-
mouseup: (arg1: MouseEvent) => unknown;
|
|
20
|
-
pointerdown: (arg1: PointerEvent) => unknown;
|
|
21
|
-
pointerup: (arg1: PointerEvent) => unknown;
|
|
22
|
-
pointercancel: (arg1: PointerEvent) => unknown;
|
|
23
|
-
[key: string]: (arg1: Event) => unknown;
|
|
24
|
-
}>;
|
|
25
|
-
export declare function listen(target: EventTarget, handlers: Handlers, options?: EventListenerOptionsOrUseCapture, hook?: 'addEventListener' | 'removeEventListener'): void;
|
|
26
|
-
export declare function forget(target: EventTarget, events: Handlers, options: EventListenerOptionsOrUseCapture): void;
|
|
27
|
-
type MixedEvent = React.SyntheticEvent<EventTarget> | Event;
|
|
28
|
-
export declare function stopEvent(event: MixedEvent): void;
|
|
29
|
-
export declare function stopEventImmediately(event: React.SyntheticEvent<EventTarget>): void;
|
|
30
|
-
export declare function cancelEvent(event: MixedEvent): void;
|
|
31
|
-
export declare function requestPointerLock(element: Element): Promise<void>;
|
|
32
|
-
export declare function checkDateInputSupport(): boolean;
|
|
33
|
-
export declare const getListPasteHandler: ({ listItemSeparatorRegex, handleValue, }: {
|
|
34
|
-
listItemSeparatorRegex?: RegExp;
|
|
35
|
-
handleValue?: (arg1: string[]) => unknown;
|
|
36
|
-
}) => (arg1: ClipboardEvent) => unknown;
|
|
37
|
-
export {};
|
|
38
|
-
//# sourceMappingURL=dom.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dom.d.ts","sourceRoot":"","sources":["../../../src/utils/dom/dom.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,SAAS,GAAG,KAAK,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,CAAC;AAC5D,MAAM,MAAM,aAAa,GAAG,OAAO,GAAG,QAAQ,GAAG,KAAK,CAAC;AACvD,MAAM,MAAM,OAAO,GAAG,aAAa,CAAC;AAEpC,MAAM,MAAM,mBAAmB,GAAG;IAChC,SAAS,EAAE,SAAS,CAAC;IACrB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;CACX,CAAC;AAEF,wBAAgB,aAAa,CAC3B,QAAQ,EAAE,QAAQ,EAClB,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE;IACL,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;CACxB,GACA,WAAW,CAGb;AAED,wBAAgB,UAAU,IAAI,MAAM,CAQnC;AAED,wBAAgB,sBAAsB,CACpC,OAAO,EAAE,WAAW,EACpB,SAAS,GAAE,SAAiB,EAC5B,GAAG,GAAE,MAAU,EACf,OAAO,GAAE,OAAkB,GAC1B,mBAAmB,CA6DrB;AAED,wBAAgB,iBAAiB,CAC/B,OAAO,EAAE,WAAW,EACpB,SAAS,GAAE,SAAiB,EAC5B,GAAG,GAAE,MAAU,EACf,OAAO,GAAE,OAAkB,GAC1B,mBAAmB,CAQrB;AAED,wBAAgB,UAAU,CAAC,EAAE,EAAE,MAAM,GAAG,MAAM,CAE7C;AAGD,KAAK,QAAQ,GAAG,OAAO,CAAC;IAEtB,KAAK,EAAE,CAAC,IAAI,EAAE,UAAU,KAAK,OAAO,CAAC;IAErC,SAAS,EAAE,CAAC,IAAI,EAAE,UAAU,KAAK,OAAO,CAAC;IAEzC,OAAO,EAAE,CAAC,IAAI,EAAE,UAAU,KAAK,OAAO,CAAC;IAEvC,WAAW,EAAE,CAAC,IAAI,EAAE,YAAY,KAAK,OAAO,CAAC;IAE7C,SAAS,EAAE,CAAC,IAAI,EAAE,YAAY,KAAK,OAAO,CAAC;IAE3C,aAAa,EAAE,CAAC,IAAI,EAAE,YAAY,KAAK,OAAO,CAAC;IAC/C,CAAC,GAAG,EAAE,MAAM,GAAG,CAAC,IAAI,EAAE,KAAK,KAAK,OAAO,CAAC;CACzC,CAAC,CAAC;AACH,wBAAgB,MAAM,CACpB,MAAM,EAAE,WAAW,EACnB,QAAQ,EAAE,QAAQ,EAElB,OAAO,CAAC,EAAE,gCAAgC,EAC1C,IAAI,GAAE,kBAAkB,GAAG,qBAA0C,QAMtE;AAED,wBAAgB,MAAM,CACpB,MAAM,EAAE,WAAW,EACnB,MAAM,EAAE,QAAQ,EAEhB,OAAO,EAAE,gCAAgC,GACxC,IAAI,CAEN;AAED,KAAK,UAAU,GAAG,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC;AAC5D,wBAAgB,SAAS,CAAC,KAAK,EAAE,UAAU,QAE1C;AACD,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,KAAK,CAAC,cAAc,CAAC,WAAW,CAAC,QAE5E;AACD,wBAAgB,WAAW,CAAC,KAAK,EAAE,UAAU,QAG5C;AAED,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,OAAO,GAAG,OAAO,CAAC,IAAI,CAAC,CA4BlE;AAED,wBAAgB,qBAAqB,IAAI,OAAO,CAQ/C;AAGD,eAAO,MAAM,mBAAmB,GAC9B,0CAGG;IACD,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAChC,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,MAAM,EAAE,KAAK,OAAO,CAAC;CAC3C,KACA,CAAC,IAAI,EAAE,cAAc,KAAK,OA6B5B,CAAC"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
tags: string[];
|
|
4
|
-
title: string;
|
|
5
|
-
parameters: {
|
|
6
|
-
docs: {
|
|
7
|
-
description: {
|
|
8
|
-
component: string;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
export default _default;
|
|
14
|
-
export declare const Example: () => React.ReactElement<React.ComponentProps<"div">>;
|
|
15
|
-
//# sourceMappingURL=dom.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dom.stories.d.ts","sourceRoot":"","sources":["../../../src/utils/dom/dom.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;;;;;;;;;;;;AAO1B,wBA4CE;AAEF,eAAO,MAAM,OAAO,QAAO,KAAK,CAAC,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,CAKlE,CAAC"}
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = exports.Example = void 0;
|
|
7
|
-
var _react = _interopRequireDefault(require("react"));
|
|
8
|
-
var _Text = require("../../components/Text");
|
|
9
|
-
var _domStoriesModule = _interopRequireDefault(require("./dom.stories.module.css"));
|
|
10
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
11
|
-
var _default = exports.default = {
|
|
12
|
-
tags: ['autodocs'],
|
|
13
|
-
title: 'Utils/Dom',
|
|
14
|
-
parameters: {
|
|
15
|
-
docs: {
|
|
16
|
-
description: {
|
|
17
|
-
component: `
|
|
18
|
-
\`\`\`js
|
|
19
|
-
import {
|
|
20
|
-
createElement,
|
|
21
|
-
pageHeight,
|
|
22
|
-
getFixedAnchorPosition,
|
|
23
|
-
pxToNumber,
|
|
24
|
-
listen,
|
|
25
|
-
stopEvent,
|
|
26
|
-
stopEventImmediately,
|
|
27
|
-
cancelEvent,
|
|
28
|
-
requestPointerLock,
|
|
29
|
-
checkDateInputSupport,
|
|
30
|
-
getListPasteHandler
|
|
31
|
-
} from "@spaced-out/ui-design-system/lib/utils/dom";
|
|
32
|
-
\`\`\`
|
|
33
|
-
This story showcases various utility functions that can be used in different scenarios.
|
|
34
|
-
|
|
35
|
-
### Utility Functions
|
|
36
|
-
- \`createElement\`: Creates an HTML element with the provided type and props.
|
|
37
|
-
- \`pageHeight\`: Returns the height of the page.
|
|
38
|
-
- \`getFixedAnchorPosition\`: Returns the position of an element with a fixed placement.
|
|
39
|
-
- \`getAnchorPosition\`: Returns the position of an element taking into account the page offset.
|
|
40
|
-
- \`pxToNumber\`: Converts a string value representing pixels to a number.
|
|
41
|
-
- \`listen\` and \`forget\`: Attach and detach event listeners to an event target.
|
|
42
|
-
- \`stopEvent\`: Stops the propagation of an event.
|
|
43
|
-
- \`stopEventImmediately\`: Stops the propagation of an event immediately.
|
|
44
|
-
- \`cancelEvent\`: Stops the propagation and prevents the default action of an event.
|
|
45
|
-
- \`requestPointerLock\`: Requests pointer lock for an element.
|
|
46
|
-
- \`checkDateInputSupport\`: Checks if the browser supports the date input type.
|
|
47
|
-
- \`getListPasteHandler\`: Handles pasting of list items separated by a specified regex.
|
|
48
|
-
|
|
49
|
-
### Usage
|
|
50
|
-
Please refer to the individual functions for usage examples.
|
|
51
|
-
`
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
};
|
|
56
|
-
const Example = () => /*#__PURE__*/_react.default.createElement("div", null, /*#__PURE__*/_react.default.createElement(_Text.BodyLarge, {
|
|
57
|
-
className: _domStoriesModule.default.text
|
|
58
|
-
}, "This story showcases various utility functions that can be used in different scenarios."));
|
|
59
|
-
exports.Example = Example;
|
package/lib/utils/dom/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/dom/index.ts"],"names":[],"mappings":"AAAA,cAAc,OAAO,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"helpers.d.ts","sourceRoot":"","sources":["../../../src/utils/helpers/helpers.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI,QAAO,MAQvB,CAAC;AAEF,eAAO,MAAM,KAAK,GAAI,OAAO,MAAM,EAAE,KAAK,MAAM,KAAG,KAAK,CAAC,MAAM,CAG9D,CAAC;AAEF,eAAO,MAAM,eAAe,GAAI,WAAU,MAAU,KAAG,MAmCtD,CAAC"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
tags: string[];
|
|
4
|
-
title: string;
|
|
5
|
-
parameters: {
|
|
6
|
-
docs: {
|
|
7
|
-
description: {
|
|
8
|
-
component: string;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
export default _default;
|
|
14
|
-
export declare const Example: () => React.ReactElement<React.ComponentProps<"div">>;
|
|
15
|
-
//# sourceMappingURL=helpers.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"helpers.stories.d.ts","sourceRoot":"","sources":["../../../src/utils/helpers/helpers.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAiB,MAAM,OAAO,CAAC;;;;;;;;;;;;AAWtC,wBA+BE;AAEF,eAAO,MAAM,OAAO,QAAO,KAAK,CAAC,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,CA+ExE,CAAC"}
|
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.default = exports.Example = void 0;
|
|
7
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
8
|
-
var _Button = require("../../components/Button");
|
|
9
|
-
var _Input = require("../../components/Input");
|
|
10
|
-
var _Text = require("../../components/Text");
|
|
11
|
-
var _helpers = require("./helpers");
|
|
12
|
-
var _helpersStoriesModule = _interopRequireDefault(require("./helpers.stories.module.css"));
|
|
13
|
-
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
|
|
14
|
-
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); }
|
|
15
|
-
var _default = exports.default = {
|
|
16
|
-
tags: ['autodocs'],
|
|
17
|
-
title: 'Utils/Helper Functions',
|
|
18
|
-
parameters: {
|
|
19
|
-
docs: {
|
|
20
|
-
description: {
|
|
21
|
-
component: `
|
|
22
|
-
\`\`\`js
|
|
23
|
-
import { uuid, range } from "@spaced-out/ui-design-system/lib/utils/helpers";
|
|
24
|
-
\`\`\`
|
|
25
|
-
This story showcases helper functions that can be used in different scenarios.
|
|
26
|
-
|
|
27
|
-
### Helper Functions
|
|
28
|
-
- \`uuid\`: Generates a unique identifier.
|
|
29
|
-
- \`range\`: Creates an array of numbers within a specified range.
|
|
30
|
-
- \`convertFileSize\`: Converts a file size in bytes to KB, MB, or GB.
|
|
31
|
-
|
|
32
|
-
### Usage
|
|
33
|
-
\`\`\`jsx
|
|
34
|
-
import { uuid, range } from './helpers';
|
|
35
|
-
|
|
36
|
-
const uniqueId = uuid(); // Example output: "983651f0-a7db-4f84-b0d2-4d348b5e5199"
|
|
37
|
-
|
|
38
|
-
const numbers = range(1, 5); // Example output: [1, 2, 3, 4, 5]
|
|
39
|
-
|
|
40
|
-
const fileSize = convertFileSize(1024 * 1024 * 1024); // 1 GB
|
|
41
|
-
\`\`\`
|
|
42
|
-
`
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
};
|
|
47
|
-
const Example = () => {
|
|
48
|
-
const [uniqueId, setUniqueId] = (0, _react.useState)('');
|
|
49
|
-
const [rangeStart, setRangeStart] = (0, _react.useState)(1);
|
|
50
|
-
const [rangeEnd, setRangeEnd] = (0, _react.useState)(5);
|
|
51
|
-
const [numbers, setNumbers] = (0, _react.useState)([]);
|
|
52
|
-
const [fileSize, setFileSize] = (0, _react.useState)(1024);
|
|
53
|
-
const generateUniqueId = () => {
|
|
54
|
-
const id = (0, _helpers.uuid)();
|
|
55
|
-
setUniqueId(id);
|
|
56
|
-
};
|
|
57
|
-
const generateRange = () => {
|
|
58
|
-
// @ts-ignore - TS2345 - Argument of type 'number' is not assignable to parameter of type 'string'.
|
|
59
|
-
const start = parseInt(rangeStart, 10);
|
|
60
|
-
// @ts-ignore - TS2345 - Argument of type 'number' is not assignable to parameter of type 'string'.
|
|
61
|
-
const end = parseInt(rangeEnd, 10);
|
|
62
|
-
const generatedNumbers = (0, _helpers.range)(start, end);
|
|
63
|
-
// @ts-ignore - TS2345 - Argument of type 'number[]' is not assignable to parameter of type 'SetStateAction<never[]>'.
|
|
64
|
-
setNumbers(generatedNumbers);
|
|
65
|
-
};
|
|
66
|
-
return /*#__PURE__*/_react.default.createElement("div", null, /*#__PURE__*/_react.default.createElement(_Text.BodyLarge, {
|
|
67
|
-
className: _helpersStoriesModule.default.text
|
|
68
|
-
}, "This story showcases helper functions that can be used in different scenarios."), /*#__PURE__*/_react.default.createElement("div", {
|
|
69
|
-
className: _helpersStoriesModule.default.playground
|
|
70
|
-
}, /*#__PURE__*/_react.default.createElement("div", {
|
|
71
|
-
className: _helpersStoriesModule.default.playgroundItem
|
|
72
|
-
}, /*#__PURE__*/_react.default.createElement(_Text.BodyLarge, null, "Generated Unique ID: ", uniqueId), /*#__PURE__*/_react.default.createElement(_Button.Button, {
|
|
73
|
-
onClick: generateUniqueId
|
|
74
|
-
}, "Generate Unique ID")), /*#__PURE__*/_react.default.createElement("div", {
|
|
75
|
-
className: _helpersStoriesModule.default.playgroundItem
|
|
76
|
-
}, /*#__PURE__*/_react.default.createElement(_Text.BodyLarge, null, "Generated Range: ", numbers.join(', ')), /*#__PURE__*/_react.default.createElement("div", null, /*#__PURE__*/_react.default.createElement("label", {
|
|
77
|
-
htmlFor: "rangeStart"
|
|
78
|
-
}, "Start:"), /*#__PURE__*/_react.default.createElement(_Input.Input, {
|
|
79
|
-
type: "number",
|
|
80
|
-
id: "rangeStart"
|
|
81
|
-
// @ts-ignore - TS2769 - No overload matches this call.
|
|
82
|
-
,
|
|
83
|
-
value: rangeStart
|
|
84
|
-
// @ts-ignore - TS2345 - Argument of type 'string' is not assignable to parameter of type 'SetStateAction<number>'.
|
|
85
|
-
,
|
|
86
|
-
onChange: event => setRangeStart(event.target.value)
|
|
87
|
-
})), /*#__PURE__*/_react.default.createElement("div", null, /*#__PURE__*/_react.default.createElement("label", {
|
|
88
|
-
htmlFor: "rangeEnd"
|
|
89
|
-
}, "End:"), /*#__PURE__*/_react.default.createElement(_Input.Input, {
|
|
90
|
-
type: "number",
|
|
91
|
-
id: "rangeEnd"
|
|
92
|
-
// @ts-ignore - TS2769 - No overload matches this call.
|
|
93
|
-
,
|
|
94
|
-
value: rangeEnd
|
|
95
|
-
// @ts-ignore - TS2345 - Argument of type 'string' is not assignable to parameter of type 'SetStateAction<number>'.
|
|
96
|
-
,
|
|
97
|
-
onChange: event => setRangeEnd(event.target.value)
|
|
98
|
-
})), /*#__PURE__*/_react.default.createElement(_Button.Button, {
|
|
99
|
-
onClick: generateRange
|
|
100
|
-
}, "Generate Range")), /*#__PURE__*/_react.default.createElement("div", {
|
|
101
|
-
className: _helpersStoriesModule.default.playgroundItem
|
|
102
|
-
}, /*#__PURE__*/_react.default.createElement(_Text.BodyLarge, null, "Generated File Size: ", (0, _helpers.convertFileSize)(parseInt(fileSize))), /*#__PURE__*/_react.default.createElement("div", null, /*#__PURE__*/_react.default.createElement(_Input.Input, {
|
|
103
|
-
type: "number",
|
|
104
|
-
id: "rangeStart"
|
|
105
|
-
// @ts-ignore - TS2769 - No overload matches this call.
|
|
106
|
-
,
|
|
107
|
-
value: fileSize || 0,
|
|
108
|
-
onChange: event => setFileSize(parseInt(event.target.value))
|
|
109
|
-
})))));
|
|
110
|
-
};
|
|
111
|
-
exports.Example = Example;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/helpers/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC"}
|
package/lib/utils/index.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export * from './array';
|
|
2
|
-
export * from './charts';
|
|
3
|
-
export * from './classify';
|
|
4
|
-
export * from './click-away';
|
|
5
|
-
export * from './date-range-picker';
|
|
6
|
-
export * from './dom';
|
|
7
|
-
export * from './helpers';
|
|
8
|
-
export * from './makeClassNameComponent';
|
|
9
|
-
export * from './menu';
|
|
10
|
-
export * from './merge-refs';
|
|
11
|
-
export * from './rating';
|
|
12
|
-
export * from './score-bar';
|
|
13
|
-
export * from './string';
|
|
14
|
-
export * from './tokens';
|
|
15
|
-
//# sourceMappingURL=index.d.ts.map
|
package/lib/utils/index.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,qBAAqB,CAAC;AACpC,cAAc,OAAO,CAAC;AACtB,cAAc,WAAW,CAAC;AAC1B,cAAc,0BAA0B,CAAC;AACzC,cAAc,QAAQ,CAAC;AACvB,cAAc,cAAc,CAAC;AAC7B,cAAc,UAAU,CAAC;AACzB,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/utils/makeClassNameComponent/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { Flow } from 'flow-to-typescript-codemod';
|
|
2
|
-
import * as React from 'react';
|
|
3
|
-
export declare function nameHoc<C, T extends React.ComponentType<C>, C2>(WrapperComponent: T, WrappedComponent: React.ComponentType<C2>, hocName: string): T;
|
|
4
|
-
export type ClassNameComponent<T = 'div', I = React.ElementRef<T>> = Flow.AbstractComponent<ComponentProps<T>, I>;
|
|
5
|
-
export declare function makeClassNameComponent<C extends string>(baseClassName: string, ComponentType?: C, name?: string): Flow.AbstractComponent<ComponentProps<C>, React.ElementRef<C>>;
|
|
6
|
-
export declare function makeClassNameComponentCustom<C extends Readonly<{
|
|
7
|
-
className?: string;
|
|
8
|
-
}>, B>(baseClassName: string, ComponentType: Flow.AbstractComponent<C, B>): Flow.AbstractComponent<C, B>;
|
|
9
|
-
//# sourceMappingURL=makeClassNameComponent.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"makeClassNameComponent.d.ts","sourceRoot":"","sources":["../../../src/utils/makeClassNameComponent/makeClassNameComponent.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAC,MAAM,4BAA4B,CAAC;AAChD,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAK/B,wBAAgB,OAAO,CAAC,CAAC,EAAE,CAAC,SAAS,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,EAAE,EAAE,EAC7D,gBAAgB,EAAE,CAAC,EACnB,gBAAgB,EAAE,KAAK,CAAC,aAAa,CAAC,EAAE,CAAC,EACzC,OAAO,EAAE,MAAM,GACd,CAAC,CAKH;AAGD,MAAM,MAAM,kBAAkB,CAAC,CAAC,GAAG,KAAK,EAAE,CAAC,GAAG,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,IAAI,IAAI,CAAC,iBAAiB,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;AAElH,wBAAgB,sBAAsB,CAAC,CAAC,SAAS,MAAM,EAAE,aAAa,EAAE,MAAM,EAAE,aAAa,GAAE,CAAS,EAAE,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC,iBAAiB,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAYvL;AAED,wBAAgB,4BAA4B,CAAC,CAAC,SAAS,QAAQ,CAAC;IAC9D,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC,EAAE,CAAC,EAAE,aAAa,EAAE,MAAM,EAAE,aAAa,EAAE,IAAI,CAAC,iBAAiB,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG,IAAI,CAAC,iBAAiB,CAAC,CAAC,EAAE,CAAC,CAAC,CAiBvG"}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
tags: string[];
|
|
4
|
-
title: string;
|
|
5
|
-
parameters: {
|
|
6
|
-
docs: {
|
|
7
|
-
description: {
|
|
8
|
-
component: string;
|
|
9
|
-
};
|
|
10
|
-
};
|
|
11
|
-
};
|
|
12
|
-
};
|
|
13
|
-
export default _default;
|
|
14
|
-
export declare const Example: () => React.ReactElement<React.ComponentProps<"div">>;
|
|
15
|
-
//# sourceMappingURL=makeClassNameComponent.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"makeClassNameComponent.stories.d.ts","sourceRoot":"","sources":["../../../src/utils/makeClassNameComponent/makeClassNameComponent.stories.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAiB,MAAM,OAAO,CAAC;;;;;;;;;;;;AAOtC,wBAwBE;AAEF,eAAO,MAAM,OAAO,QAAO,KAAK,CAAC,YAAY,CAAC,KAAK,CAAC,cAAc,CAAC,KAAK,CAAC,CAYxE,CAAC"}
|