@orfium/ictinus 5.5.0 → 5.5.2
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/dist/codemods/assets/header.png +0 -0
- package/dist/codemods/assets/header.svg +417 -0
- package/dist/codemods/avatarCodemod.js +1 -45
- package/dist/codemods/buttonCodemod.js +1 -32
- package/dist/codemods/checkboxCodemod.js +1 -29
- package/dist/codemods/chipCodemode.js +1 -39
- package/dist/codemods/{avatarCodemod.d.ts → codemods/avatarCodemod.d.ts} +2 -1
- package/dist/codemods/{buttonCodemod.d.ts → codemods/buttonCodemod.d.ts} +2 -1
- package/dist/codemods/{checkboxCodemod.d.ts → codemods/checkboxCodemod.d.ts} +2 -1
- package/dist/codemods/{chipCodemode.d.ts → codemods/chipCodemode.d.ts} +2 -1
- package/dist/codemods/{drawerCodemod.d.ts → codemods/drawerCodemod.d.ts} +2 -1
- package/dist/codemods/{filterCodemod.d.ts → codemods/filterCodemod.d.ts} +2 -1
- package/dist/codemods/{iconButtonCodemod.d.ts → codemods/iconButtonCodemod.d.ts} +2 -1
- package/dist/codemods/{iconCodemod.d.ts → codemods/iconCodemod.d.ts} +2 -1
- package/dist/codemods/{loaderCodemod.d.ts → codemods/loaderCodemod.d.ts} +2 -1
- package/dist/codemods/{menuCodemod.d.ts → codemods/menuCodemod.d.ts} +2 -1
- package/dist/codemods/{notificationsCodemod.d.ts → codemods/notificationsCodemod.d.ts} +2 -1
- package/dist/codemods/{paginationCodemod.d.ts → codemods/paginationCodemod.d.ts} +2 -1
- package/dist/codemods/{radioCodemod.d.ts → codemods/radioCodemod.d.ts} +2 -1
- package/dist/codemods/{radioGroupCodemod.d.ts → codemods/radioGroupCodemod.d.ts} +2 -1
- package/dist/codemods/{searchCodemod.d.ts → codemods/searchCodemod.d.ts} +2 -1
- package/dist/codemods/{selectCodemod.d.ts → codemods/selectCodemod.d.ts} +2 -1
- package/dist/codemods/{switchCodemod.d.ts → codemods/switchCodemod.d.ts} +2 -1
- package/dist/codemods/{tableCodemod.d.ts → codemods/tableCodemod.d.ts} +2 -1
- package/dist/codemods/{textareaCodemod.d.ts → codemods/textareaCodemod.d.ts} +2 -1
- package/dist/codemods/{textfieldCodemod.d.ts → codemods/textfieldCodemod.d.ts} +2 -1
- package/dist/codemods/{tooltipCodemod.d.ts → codemods/tooltipCodemod.d.ts} +2 -1
- package/dist/codemods/{unchangedIconsCodemod.d.ts → codemods/unchangedIconsCodemod.d.ts} +2 -1
- package/dist/codemods/drawerCodemod.js +1 -61
- package/dist/codemods/filterCodemod.js +1 -27
- package/dist/codemods/globalsCodemod.js +1 -130
- package/dist/codemods/iconButtonCodemod.js +1 -28
- package/dist/codemods/iconCodemod.js +1 -19
- package/dist/codemods/loaderCodemod.js +1 -42
- package/dist/codemods/menuCodemod.js +1 -31
- package/dist/codemods/notificationsCodemod.js +1 -17
- package/dist/codemods/paginationCodemod.js +1 -32
- package/dist/codemods/radioCodemod.js +1 -21
- package/dist/codemods/radioGroupCodemod.js +1 -18
- package/dist/codemods/searchCodemod.js +1 -31
- package/dist/codemods/selectCodemod.js +1 -66
- package/dist/codemods/switchCodemod.js +1 -28
- package/dist/codemods/tableCodemod.js +1 -23
- package/dist/codemods/textareaCodemod.js +1 -44
- package/dist/codemods/textfieldCodemod.js +1 -43
- package/dist/codemods/tooltipCodemod.js +1 -26
- package/dist/codemods/unchangedIconsCodemod.js +1 -56
- package/dist/{index.mjs → index.js} +5739 -5690
- package/dist/index.umd.cjs +147 -0
- package/dist/src/components/Avatar/Avatar.d.ts +5 -0
- package/dist/src/components/Avatar/Avatar.stories.d.ts +61 -0
- package/dist/src/components/Avatar/Avatar.style.d.ts +9 -0
- package/dist/src/components/Avatar/Avatar.tokens.d.ts +8 -0
- package/dist/src/components/Avatar/Avatar.types.d.ts +22 -0
- package/dist/src/components/Avatar/AvatarStack/AvatarStack.d.ts +6 -0
- package/dist/src/components/Avatar/AvatarStack/AvatarStack.style.d.ts +11 -0
- package/dist/src/components/Avatar/AvatarStack/AvatarStack.types.d.ts +10 -0
- package/dist/src/components/Avatar/AvatarStack/index.d.ts +2 -0
- package/dist/src/components/Avatar/AvatarStack/utils.d.ts +7 -0
- package/dist/src/components/Avatar/AvatarStack.stories.d.ts +20 -0
- package/dist/src/components/Avatar/constants.d.ts +4 -0
- package/dist/src/components/Avatar/index.d.ts +3 -0
- package/dist/src/components/Box/Box.d.ts +6 -0
- package/dist/src/components/Box/Box.stories.d.ts +27 -0
- package/dist/src/components/Box/Box.style.d.ts +5 -0
- package/dist/src/components/Box/Box.test.d.ts +1 -0
- package/dist/src/components/Box/Box.types.d.ts +145 -0
- package/dist/src/components/Box/Box.utilities.d.ts +19 -0
- package/dist/src/components/Box/index.d.ts +3 -0
- package/dist/src/components/Breadcrumb/BackToItem/BackToItem.d.ts +6 -0
- package/dist/src/components/Breadcrumb/BackToItem/BackToItem.style.d.ts +4 -0
- package/dist/src/components/Breadcrumb/BackToItem/index.d.ts +1 -0
- package/dist/src/components/Breadcrumb/Breadcrumb.d.ts +7 -0
- package/dist/src/components/Breadcrumb/Breadcrumb.stories.d.ts +31 -0
- package/dist/src/components/Breadcrumb/Breadcrumb.style.d.ts +4 -0
- package/dist/src/components/Breadcrumb/Breadcrumb.types.d.ts +13 -0
- package/dist/src/components/Breadcrumb/BreadcrumbItem/BreadcrumbItem.d.ts +10 -0
- package/dist/src/components/Breadcrumb/BreadcrumbItem/BreadcrumbItem.style.d.ts +6 -0
- package/dist/src/components/Breadcrumb/BreadcrumbItem/index.d.ts +1 -0
- package/dist/src/components/Breadcrumb/index.d.ts +2 -0
- package/dist/src/components/Button/Button.d.ts +40 -0
- package/dist/src/components/Button/Button.stories.d.ts +102 -0
- package/dist/src/components/Button/Button.style.d.ts +8 -0
- package/dist/src/components/Button/Button.tokens.d.ts +6 -0
- package/dist/src/components/Button/Button.types.d.ts +4 -0
- package/dist/src/components/Button/ButtonLoader/ButtonLoader.d.ts +6 -0
- package/dist/src/components/Button/ButtonLoader/ButtonLoader.style.d.ts +6 -0
- package/dist/src/components/Button/ButtonLoader/index.d.ts +2 -0
- package/dist/src/components/Button/index.d.ts +2 -0
- package/dist/src/components/ButtonBase/ButtonBase.d.ts +57 -0
- package/dist/src/components/ButtonBase/ButtonBase.style.d.ts +13 -0
- package/dist/src/components/ButtonBase/constants.d.ts +7 -0
- package/dist/src/components/ButtonBase/index.d.ts +2 -0
- package/dist/src/components/Card/Card.d.ts +14 -0
- package/dist/src/components/Card/Card.stories.d.ts +24 -0
- package/dist/src/components/Card/Card.style.d.ts +5 -0
- package/dist/src/components/Card/index.d.ts +2 -0
- package/dist/src/components/Chart/BarChart/BarChart.d.ts +26 -0
- package/dist/src/components/Chart/BarChart/components/CustomLabel/CustomLabel.d.ts +9 -0
- package/dist/src/components/Chart/BarChart/components/CustomLabel/index.d.ts +1 -0
- package/dist/src/components/Chart/BarChart/components/CustomTooltip/CustomTooltip.d.ts +8 -0
- package/dist/src/components/Chart/BarChart/components/CustomTooltip/CustomTooltip.style.d.ts +6 -0
- package/dist/src/components/Chart/BarChart/components/CustomTooltip/index.d.ts +1 -0
- package/dist/src/components/Chart/BarChart/components/CustomTooltipContent/CustomTooltipContent.d.ts +6 -0
- package/dist/src/components/Chart/BarChart/components/CustomTooltipContent/CustomTooltipContent.style.d.ts +39 -0
- package/dist/src/components/Chart/BarChart/components/CustomTooltipContent/index.d.ts +1 -0
- package/dist/src/components/Chart/BarChart/index.d.ts +1 -0
- package/dist/src/components/Chart/BarChart/utils.d.ts +11 -0
- package/dist/src/components/Chart/Chart.stories.d.ts +55 -0
- package/dist/src/components/Chart/DonutChart/DonutChart.d.ts +17 -0
- package/dist/src/components/Chart/DonutChart/components/CustomLabel/CustomLabel.d.ts +9 -0
- package/dist/src/components/Chart/DonutChart/components/CustomLabel/CustomLabel.style.d.ts +5 -0
- package/dist/src/components/Chart/DonutChart/components/CustomLabel/index.d.ts +1 -0
- package/dist/src/components/Chart/DonutChart/index.d.ts +1 -0
- package/dist/src/components/Chart/LineChart/LineChart.d.ts +17 -0
- package/dist/src/components/Chart/LineChart/LineChart.test.d.ts +1 -0
- package/dist/src/components/Chart/LineChart/components/CustomTooltip/CustomTooltip.d.ts +6 -0
- package/dist/src/components/Chart/LineChart/components/CustomTooltip/CustomTooltip.style.d.ts +32 -0
- package/dist/src/components/Chart/LineChart/components/CustomTooltip/index.d.ts +1 -0
- package/dist/src/components/Chart/LineChart/components/GradientLine/GradientLine.d.ts +8 -0
- package/dist/src/components/Chart/LineChart/components/GradientLine/index.d.ts +1 -0
- package/dist/src/components/Chart/LineChart/index.d.ts +1 -0
- package/dist/src/components/Chart/LineChart/mockedData.d.ts +11 -0
- package/dist/src/components/Chart/LineChart/story.utils.d.ts +1 -0
- package/dist/src/components/Chart/LineChart/utils.d.ts +14 -0
- package/dist/src/components/Chart/Wrapper.d.ts +8 -0
- package/dist/src/components/Controls/CheckBox/CheckBox.d.ts +32 -0
- package/dist/src/components/Controls/CheckBox/CheckBox.stories.d.ts +99 -0
- package/dist/src/components/Controls/CheckBox/CheckBox.style.d.ts +7 -0
- package/dist/src/components/Controls/CheckBox/CheckBox.test.d.ts +1 -0
- package/dist/src/components/Controls/CheckBox/index.d.ts +2 -0
- package/dist/src/components/Controls/ControlLabel/ControlLabel.d.ts +7 -0
- package/dist/src/components/Controls/ControlLabel/ControlLabel.style.d.ts +7 -0
- package/dist/src/components/Controls/ControlLabel/index.d.ts +1 -0
- package/dist/src/components/Controls/Controls.tokens.d.ts +6 -0
- package/dist/src/components/Controls/Controls.types.d.ts +12 -0
- package/dist/src/components/Controls/Radio/Radio.d.ts +23 -0
- package/dist/src/components/Controls/Radio/Radio.stories.d.ts +89 -0
- package/dist/src/components/Controls/Radio/Radio.style.d.ts +7 -0
- package/dist/src/components/Controls/Radio/Radio.test.d.ts +1 -0
- package/dist/src/components/Controls/Radio/components/RadioGroup/RadioGroup.d.ts +27 -0
- package/dist/src/components/Controls/Radio/components/RadioGroup/RadioGroupContext.d.ts +5 -0
- package/dist/src/components/Controls/Radio/components/RadioGroup/index.d.ts +2 -0
- package/dist/src/components/Controls/Radio/index.d.ts +2 -0
- package/dist/src/components/Controls/Switch/Switch.d.ts +27 -0
- package/dist/src/components/Controls/Switch/Switch.stories.d.ts +90 -0
- package/dist/src/components/Controls/Switch/Switch.style.d.ts +5 -0
- package/dist/src/components/Controls/Switch/Switch.test.d.ts +1 -0
- package/dist/src/components/Controls/Switch/index.d.ts +2 -0
- package/dist/src/components/Controls/index.d.ts +4 -0
- package/dist/src/components/DatePicker/DatePickInput/DatePickInput.d.ts +40 -0
- package/dist/src/components/DatePicker/DatePickInput/DatePickInput.style.d.ts +4 -0
- package/dist/src/components/DatePicker/DatePickInput/index.d.ts +2 -0
- package/dist/src/components/DatePicker/DatePicker.d.ts +6 -0
- package/dist/src/components/DatePicker/DatePicker.stories.d.ts +138 -0
- package/dist/src/components/DatePicker/DatePicker.style.d.ts +4 -0
- package/dist/src/components/DatePicker/DatePicker.test.d.ts +1 -0
- package/dist/src/components/DatePicker/DatePicker.tokens.d.ts +6 -0
- package/dist/src/components/DatePicker/DatePicker.types.d.ts +48 -0
- package/dist/src/components/DatePicker/Day/Day.d.ts +17 -0
- package/dist/src/components/DatePicker/Day/Day.style.d.ts +20 -0
- package/dist/src/components/DatePicker/Day/Day.test.d.ts +1 -0
- package/dist/src/components/DatePicker/Day/index.d.ts +2 -0
- package/dist/src/components/DatePicker/Month/Month.d.ts +15 -0
- package/dist/src/components/DatePicker/Month/Month.style.d.ts +6 -0
- package/dist/src/components/DatePicker/Month/Month.test.d.ts +1 -0
- package/dist/src/components/DatePicker/Month/Month.utils.d.ts +8 -0
- package/dist/src/components/DatePicker/Month/hooks/useMonthKeyboardNavigation.d.ts +14 -0
- package/dist/src/components/DatePicker/Month/index.d.ts +2 -0
- package/dist/src/components/DatePicker/OverlayComponent/OverlayComponent.d.ts +20 -0
- package/dist/src/components/DatePicker/OverlayComponent/OverlayComponent.style.d.ts +11 -0
- package/dist/src/components/DatePicker/OverlayComponent/OverlayComponent.test.d.ts +1 -0
- package/dist/src/components/DatePicker/OverlayComponent/components/MonthWrapper/MonthWrapper.d.ts +17 -0
- package/dist/src/components/DatePicker/OverlayComponent/components/MonthWrapper/MonthWrapper.style.d.ts +12 -0
- package/dist/src/components/DatePicker/OverlayComponent/components/MonthWrapper/MonthWrapper.test.d.ts +1 -0
- package/dist/src/components/DatePicker/OverlayComponent/components/MonthWrapper/index.d.ts +0 -0
- package/dist/src/components/DatePicker/OverlayComponent/index.d.ts +2 -0
- package/dist/src/components/DatePicker/OverlayComponent/utils.d.ts +5 -0
- package/dist/src/components/DatePicker/constants.d.ts +51 -0
- package/dist/src/components/DatePicker/index.d.ts +4 -0
- package/dist/src/components/DatePicker/play-utils.d.ts +3 -0
- package/dist/src/components/DatePicker/utils.d.ts +11 -0
- package/dist/src/components/Drawer/Drawer.d.ts +14 -0
- package/dist/src/components/Drawer/Drawer.stories.d.ts +91 -0
- package/dist/src/components/Drawer/Drawer.style.d.ts +23 -0
- package/dist/src/components/Drawer/Drawer.test.d.ts +1 -0
- package/dist/src/components/Drawer/Drawer.types.d.ts +19 -0
- package/dist/src/components/Drawer/DrawerContext.d.ts +28 -0
- package/dist/src/components/Drawer/components/DrawerContent/DrawerContent.d.ts +5 -0
- package/dist/src/components/Drawer/components/DrawerContent/DrawerContent.stories.d.ts +18 -0
- package/dist/src/components/Drawer/components/DrawerContent/hooks/useDrawerContentObserver.d.ts +6 -0
- package/dist/src/components/Drawer/components/DrawerContent/index.d.ts +1 -0
- package/dist/src/components/Drawer/components/DrawerFooter/DrawerFooter.d.ts +5 -0
- package/dist/src/components/Drawer/components/DrawerFooter/DrawerFooter.stories.d.ts +18 -0
- package/dist/src/components/Drawer/components/DrawerFooter/index.d.ts +1 -0
- package/dist/src/components/Drawer/components/DrawerHeader/DrawerHeader.d.ts +5 -0
- package/dist/src/components/Drawer/components/DrawerHeader/DrawerHeader.stories.d.ts +18 -0
- package/dist/src/components/Drawer/components/DrawerHeader/index.d.ts +1 -0
- package/dist/src/components/Drawer/components/index.d.ts +3 -0
- package/dist/src/components/Drawer/index.d.ts +5 -0
- package/dist/src/components/DropdownButton/DropdownButton.d.ts +42 -0
- package/dist/src/components/DropdownButton/DropdownButton.stories.d.ts +33 -0
- package/dist/src/components/DropdownButton/DropdownButton.style.d.ts +16 -0
- package/dist/src/components/DropdownButton/DropdownButton.test.d.ts +1 -0
- package/dist/src/components/DropdownButton/index.d.ts +1 -0
- package/dist/src/components/ExpandCollapse/ExpandCollapse.d.ts +4 -0
- package/dist/src/components/ExpandCollapse/ExpandCollapse.stories.d.ts +14 -0
- package/dist/src/components/ExpandCollapse/ExpandCollapse.style.d.ts +1 -0
- package/dist/src/components/ExpandCollapse/ExpandCollapse.types.d.ts +65 -0
- package/dist/src/components/ExpandCollapse/index.d.ts +3 -0
- package/dist/src/components/ExpandCollapse/useManageContentRef.d.ts +2 -0
- package/dist/src/components/ExpandCollapse/utils.d.ts +7 -0
- package/dist/src/components/Filter/Filter.d.ts +5 -0
- package/dist/src/components/Filter/Filter.stories.d.ts +114 -0
- package/dist/src/components/Filter/Filter.test.d.ts +1 -0
- package/dist/src/components/Filter/Filter.tokens.d.ts +6 -0
- package/dist/src/components/Filter/Filter.types.d.ts +66 -0
- package/dist/src/components/Filter/StatefulFilter.d.ts +5 -0
- package/dist/src/components/Filter/components/FilterButton/FilterButton.d.ts +23 -0
- package/dist/src/components/Filter/components/FilterButton/FilterButton.style.d.ts +6 -0
- package/dist/src/components/Filter/components/FilterButton/index.d.ts +1 -0
- package/dist/src/components/Filter/components/FilterMenu/FilterMenu.d.ts +12 -0
- package/dist/src/components/Filter/components/FilterMenu/FilterMenu.style.d.ts +3 -0
- package/dist/src/components/Filter/components/FilterMenu/components/FilterSearchField/FilterSearchField.d.ts +10 -0
- package/dist/src/components/Filter/components/FilterMenu/components/FilterSearchField/FilterSearchField.style.d.ts +2 -0
- package/dist/src/components/Filter/components/FilterMenu/components/FilterSearchField/index.d.ts +1 -0
- package/dist/src/components/Filter/components/FilterMenu/components/Options/Options.d.ts +9 -0
- package/dist/src/components/Filter/components/FilterMenu/components/Options/Options.style.d.ts +6 -0
- package/dist/src/components/Filter/components/FilterMenu/components/Options/index.d.ts +1 -0
- package/dist/src/components/Filter/components/FilterMenu/index.d.ts +1 -0
- package/dist/src/components/Filter/constants.d.ts +16 -0
- package/dist/src/components/Filter/hooks/index.d.ts +1 -0
- package/dist/src/components/Filter/hooks/useFilterWithSelectionUtils.d.ts +14 -0
- package/dist/src/components/Filter/index.d.ts +3 -0
- package/dist/src/components/Icon/Icon.d.ts +19 -0
- package/dist/src/components/Icon/Icon.stories.d.ts +53 -0
- package/dist/src/components/Icon/Icon.style.d.ts +7 -0
- package/dist/src/components/Icon/Icon.types.d.ts +9 -0
- package/dist/src/components/Icon/assets/iconSelector.d.ts +6 -0
- package/dist/src/components/Icon/constants.d.ts +38 -0
- package/dist/src/components/Icon/index.d.ts +3 -0
- package/dist/src/components/IconButton/IconButton.d.ts +23 -0
- package/dist/src/components/IconButton/IconButton.stories.d.ts +41 -0
- package/dist/src/components/IconButton/index.d.ts +2 -0
- package/dist/src/components/Label/Label.d.ts +18 -0
- package/dist/src/components/Label/Label.style.d.ts +6 -0
- package/dist/src/components/Label/index.d.ts +2 -0
- package/dist/src/components/Link/Link.d.ts +12 -0
- package/dist/src/components/Link/Link.stories.d.ts +82 -0
- package/dist/src/components/Link/Link.style.d.ts +5 -0
- package/dist/src/components/Link/Link.tokens.d.ts +6 -0
- package/dist/src/components/Link/Link.types.d.ts +21 -0
- package/dist/src/components/Link/constants.d.ts +4 -0
- package/dist/src/components/Link/index.d.ts +1 -0
- package/dist/src/components/List/List.d.ts +44 -0
- package/dist/src/components/List/List.style.d.ts +13 -0
- package/dist/src/components/List/List.tokens.d.ts +6 -0
- package/dist/src/components/List/ListItem.d.ts +15 -0
- package/dist/src/components/List/ListSection.d.ts +14 -0
- package/dist/src/components/List/Window.d.ts +20 -0
- package/dist/src/components/List/components/ListItemAction/ListItemAction.d.ts +5 -0
- package/dist/src/components/List/components/ListItemAction/ListItemAction.style.d.ts +3 -0
- package/dist/src/components/List/components/ListItemAction/index.d.ts +2 -0
- package/dist/src/components/List/components/ListItemText/ListItemText.d.ts +7 -0
- package/dist/src/components/List/components/ListItemText/ListItemText.style.d.ts +5 -0
- package/dist/src/components/List/components/ListItemText/index.d.ts +2 -0
- package/dist/src/components/List/components/ListItemWrapper/ListItemWrapper.d.ts +29 -0
- package/dist/src/components/List/components/ListItemWrapper/ListItemWrapper.style.d.ts +9 -0
- package/dist/src/components/List/components/ListItemWrapper/index.d.ts +2 -0
- package/dist/src/components/List/index.d.ts +7 -0
- package/dist/src/components/List/stories/List.stories.d.ts +36 -0
- package/dist/src/components/List/stories/ListItem.stories.d.ts +23 -0
- package/dist/src/components/List/stories/ListItemAction.stories.d.ts +18 -0
- package/dist/src/components/List/stories/ListItemText.stories.d.ts +24 -0
- package/dist/src/components/List/stories/ListSection.stories.d.ts +23 -0
- package/dist/src/components/List/types.d.ts +9 -0
- package/dist/src/components/List/utils.d.ts +6 -0
- package/dist/src/components/Menu/Menu.d.ts +26 -0
- package/dist/src/components/Menu/Menu.stories.d.ts +51 -0
- package/dist/src/components/Menu/Menu.style.d.ts +13 -0
- package/dist/src/components/Menu/MenuItemDivider.d.ts +8 -0
- package/dist/src/components/Menu/index.d.ts +4 -0
- package/dist/src/components/Modal/Modal.d.ts +18 -0
- package/dist/src/components/Modal/Modal.stories.d.ts +37 -0
- package/dist/src/components/Modal/Modal.style.d.ts +8 -0
- package/dist/src/components/Modal/Modal.test.d.ts +1 -0
- package/dist/src/components/Modal/ModalContent/ModalContent.d.ts +22 -0
- package/dist/src/components/Modal/ModalContent/ModalContent.style.d.ts +8 -0
- package/dist/src/components/Modal/ModalContent/index.d.ts +1 -0
- package/dist/src/components/Modal/index.d.ts +1 -0
- package/dist/src/components/MultiTextFieldBase/MultiTextFieldBase.d.ts +44 -0
- package/dist/src/components/MultiTextFieldBase/MultiTextFieldBase.style.d.ts +58 -0
- package/dist/src/components/MultiTextFieldBase/hooks.d.ts +19 -0
- package/dist/src/components/MultiTextFieldBase/index.d.ts +1 -0
- package/dist/src/components/Navigation/Directory/Directory.d.ts +6 -0
- package/dist/src/components/Navigation/Directory/Directory.style.d.ts +11 -0
- package/dist/src/components/Navigation/Directory/MenuItem/MenuItem.d.ts +12 -0
- package/dist/src/components/Navigation/Directory/index.d.ts +1 -0
- package/dist/src/components/Navigation/Navigation.d.ts +15 -0
- package/dist/src/components/Navigation/Navigation.stories.d.ts +24 -0
- package/dist/src/components/Navigation/Navigation.style.d.ts +4 -0
- package/dist/src/components/Navigation/Navigation.test.d.ts +1 -0
- package/dist/src/components/Navigation/index.d.ts +3 -0
- package/dist/src/components/Navigation/types.d.ts +13 -0
- package/dist/src/components/Notification/Banner/Banner.d.ts +21 -0
- package/dist/src/components/Notification/Banner/index.d.ts +2 -0
- package/dist/src/components/Notification/InlineNotification/InlineNotification.d.ts +19 -0
- package/dist/src/components/Notification/InlineNotification/index.d.ts +2 -0
- package/dist/src/components/Notification/Notification.d.ts +13 -0
- package/dist/src/components/Notification/Notification.stories.d.ts +102 -0
- package/dist/src/components/Notification/Notification.style.d.ts +11 -0
- package/dist/src/components/Notification/Notification.test.d.ts +1 -0
- package/dist/src/components/Notification/NotificationVisual/NotificationVisual.d.ts +13 -0
- package/dist/src/components/Notification/NotificationVisual/NotificationVisual.style.d.ts +5 -0
- package/dist/src/components/Notification/NotificationVisual/index.d.ts +2 -0
- package/dist/src/components/Notification/NotificationsContainer/NotificationsContainer.d.ts +10 -0
- package/dist/src/components/Notification/NotificationsContainer/NotificationsContainer.style.d.ts +4 -0
- package/dist/src/components/Notification/NotificationsContainer/index.d.ts +2 -0
- package/dist/src/components/Notification/Snackbar/Snackbar.d.ts +19 -0
- package/dist/src/components/Notification/Snackbar/Snackbar.style.d.ts +8 -0
- package/dist/src/components/Notification/Snackbar/index.d.ts +2 -0
- package/dist/src/components/Notification/subcomponents/CompactNotification/CompactNotification.d.ts +28 -0
- package/dist/src/components/Notification/subcomponents/CompactNotification/CompactNotification.style.d.ts +10 -0
- package/dist/src/components/Notification/subcomponents/CompactNotification/index.d.ts +2 -0
- package/dist/src/components/Notification/subcomponents/NotificationActionsArea/NotificationActionsArea.d.ts +7 -0
- package/dist/src/components/Notification/subcomponents/NotificationActionsArea/index.d.ts +1 -0
- package/dist/src/components/NumberField/NumberField.d.ts +36 -0
- package/dist/src/components/NumberField/NumberField.stories.d.ts +95 -0
- package/dist/src/components/NumberField/NumberField.style.d.ts +3 -0
- package/dist/src/components/NumberField/NumberField.test.d.ts +1 -0
- package/dist/src/components/NumberField/components/Stepper/Stepper.d.ts +8 -0
- package/dist/src/components/NumberField/components/Stepper/Stepper.style.d.ts +5 -0
- package/dist/src/components/NumberField/components/Stepper/index.d.ts +1 -0
- package/dist/src/components/NumberField/index.d.ts +2 -0
- package/dist/src/components/Pagination/Pagination.d.ts +16 -0
- package/dist/src/components/Pagination/Pagination.stories.d.ts +33 -0
- package/dist/src/components/Pagination/index.d.ts +2 -0
- package/dist/src/components/ProgressIndicator/ProgressIndicator.d.ts +9 -0
- package/dist/src/components/ProgressIndicator/ProgressIndicator.stories.d.ts +90 -0
- package/dist/src/components/ProgressIndicator/ProgressIndicator.tokens.d.ts +6 -0
- package/dist/src/components/ProgressIndicator/ProgressIndicator.types.d.ts +12 -0
- package/dist/src/components/ProgressIndicator/components/ProgressBar/ProgressBar.d.ts +5 -0
- package/dist/src/components/ProgressIndicator/components/ProgressBar/ProgressBar.style.d.ts +7 -0
- package/dist/src/components/ProgressIndicator/components/ProgressBar/index.d.ts +1 -0
- package/dist/src/components/ProgressIndicator/components/ProgressCircle/ProgressCircle.d.ts +5 -0
- package/dist/src/components/ProgressIndicator/components/ProgressCircle/ProgressCircle.style.d.ts +3 -0
- package/dist/src/components/ProgressIndicator/components/ProgressCircle/index.d.ts +1 -0
- package/dist/src/components/ProgressIndicator/index.d.ts +1 -0
- package/dist/src/components/Search/Search.d.ts +6 -0
- package/dist/src/components/Search/Search.stories.d.ts +51 -0
- package/dist/src/components/Search/Search.style.d.ts +1937 -0
- package/dist/src/components/Search/Search.test.d.ts +1 -0
- package/dist/src/components/Search/Search.tokens.d.ts +6 -0
- package/dist/src/components/Search/Search.types.d.ts +11 -0
- package/dist/src/components/Search/StatefulSearch.d.ts +5 -0
- package/dist/src/components/Search/constants.d.ts +5 -0
- package/dist/src/components/Search/index.d.ts +3 -0
- package/dist/src/components/Select/Select.d.ts +6 -0
- package/dist/src/components/Select/Select.stories.d.ts +123 -0
- package/dist/src/components/Select/Select.style.d.ts +5 -0
- package/dist/src/components/Select/Select.test.d.ts +1 -0
- package/dist/src/components/Select/StatefulSelect.d.ts +5 -0
- package/dist/src/components/Select/components/SelectMenu/SelectMenu.d.ts +27 -0
- package/dist/src/components/Select/components/SelectMenu/SelectMenu.style.d.ts +12 -0
- package/dist/src/components/Select/components/SelectMenu/index.d.ts +2 -0
- package/dist/src/components/Select/constants.d.ts +45 -0
- package/dist/src/components/Select/index.d.ts +4 -0
- package/dist/src/components/Select/storyUtils.d.ts +6 -0
- package/dist/src/components/Select/types.d.ts +66 -0
- package/dist/src/components/Slider/Slider.d.ts +22 -0
- package/dist/src/components/Slider/Slider.stories.d.ts +42 -0
- package/dist/src/components/Slider/Slider.style.d.ts +13 -0
- package/dist/src/components/Slider/components/SliderMark/SliderMark.d.ts +13 -0
- package/dist/src/components/Slider/components/SliderMark/SliderMark.style.d.ts +17 -0
- package/dist/src/components/Slider/components/SliderMark/index.d.ts +2 -0
- package/dist/src/components/Slider/components/SliderThumb/SliderThumb.d.ts +12 -0
- package/dist/src/components/Slider/components/SliderThumb/SliderThumb.style.d.ts +10 -0
- package/dist/src/components/Slider/components/SliderThumb/index.d.ts +2 -0
- package/dist/src/components/Slider/components/SliderTrack/SliderTrack.d.ts +12 -0
- package/dist/src/components/Slider/components/SliderTrack/SliderTrack.style.d.ts +10 -0
- package/dist/src/components/Slider/components/SliderTrack/index.d.ts +2 -0
- package/dist/src/components/Slider/index.d.ts +2 -0
- package/dist/src/components/Table/Table.d.ts +70 -0
- package/dist/src/components/Table/Table.stories.d.ts +48 -0
- package/dist/src/components/Table/Table.style.d.ts +6 -0
- package/dist/src/components/Table/Table.test.d.ts +1 -0
- package/dist/src/components/Table/TableRowContext.d.ts +21 -0
- package/dist/src/components/Table/components/ExtendedColumnItem/ExtendedColumnItem.d.ts +10 -0
- package/dist/src/components/Table/components/ExtendedColumnItem/ExtendedColumnItem.style.d.ts +5 -0
- package/dist/src/components/Table/components/ExtendedColumnItem/index.d.ts +2 -0
- package/dist/src/components/Table/components/RenderRowOrNestedRow/RenderRowOrNestedRow.d.ts +14 -0
- package/dist/src/components/Table/components/RenderRowOrNestedRow/RenderRowOrNestedRow.style.d.ts +11 -0
- package/dist/src/components/Table/components/RenderRowOrNestedRow/components/ContentCell/ContentCell.d.ts +20 -0
- package/dist/src/components/Table/components/RenderRowOrNestedRow/components/ContentCell/ContentCell.style.d.ts +4 -0
- package/dist/src/components/Table/components/RenderRowOrNestedRow/components/ContentCell/index.d.ts +1 -0
- package/dist/src/components/Table/components/RenderRowOrNestedRow/components/ExpandedButtonCell/ExpandedButtonCell.d.ts +13 -0
- package/dist/src/components/Table/components/RenderRowOrNestedRow/components/ExpandedButtonCell/index.d.ts +1 -0
- package/dist/src/components/Table/components/RenderRowOrNestedRow/index.d.ts +1 -0
- package/dist/src/components/Table/components/TableCell/TableCell.d.ts +19 -0
- package/dist/src/components/Table/components/TableCell/TableCell.style.d.ts +6 -0
- package/dist/src/components/Table/components/TableCell/index.d.ts +2 -0
- package/dist/src/components/Table/components/TableCell/utils.d.ts +3 -0
- package/dist/src/components/Table/components/TableRow/TableRow.d.ts +8 -0
- package/dist/src/components/Table/components/TableRow/index.d.ts +2 -0
- package/dist/src/components/Table/components/TableRowWrapper/TableRowWrapper.d.ts +21 -0
- package/dist/src/components/Table/components/TableRowWrapper/index.d.ts +2 -0
- package/dist/src/components/Table/index.d.ts +3 -0
- package/dist/src/components/Table/types.d.ts +18 -0
- package/dist/src/components/Table/utils/TableStoryComponents.d.ts +10 -0
- package/dist/src/components/Table/utils/index.d.ts +1 -0
- package/dist/src/components/Table/utils/utils.d.ts +6 -0
- package/dist/src/components/Tag/Tag.d.ts +11 -0
- package/dist/src/components/Tag/Tag.stories.d.ts +84 -0
- package/dist/src/components/Tag/Tag.style.d.ts +9 -0
- package/dist/src/components/Tag/Tag.test.d.ts +1 -0
- package/dist/src/components/Tag/Tag.tokens.d.ts +6 -0
- package/dist/src/components/Tag/Tag.types.d.ts +23 -0
- package/dist/src/components/Tag/constants.d.ts +4 -0
- package/dist/src/components/Tag/hooks/useGetTagUtils.d.ts +13 -0
- package/dist/src/components/Tag/index.d.ts +2 -0
- package/dist/src/components/TextArea/TextArea.d.ts +33 -0
- package/dist/src/components/TextArea/TextArea.stories.d.ts +77 -0
- package/dist/src/components/TextArea/TextArea.style.d.ts +11 -0
- package/dist/src/components/TextArea/index.d.ts +2 -0
- package/dist/src/components/TextField/TextField.d.ts +37 -0
- package/dist/src/components/TextField/TextField.stories.d.ts +99 -0
- package/dist/src/components/TextField/TextField.style.d.ts +8 -0
- package/dist/src/components/TextField/TextField.test.d.ts +1 -0
- package/dist/src/components/TextField/components/commons.d.ts +6 -0
- package/dist/src/components/TextField/index.d.ts +2 -0
- package/dist/src/components/TextInputBase/TextInputBase.d.ts +39 -0
- package/dist/src/components/TextInputBase/TextInputBase.style.d.ts +14 -0
- package/dist/src/components/TextInputBase/TextInputBase.tokens.d.ts +6 -0
- package/dist/src/components/TextInputBase/index.d.ts +2 -0
- package/dist/src/components/ThemeProvider/Test.d.ts +4 -0
- package/dist/src/components/ThemeProvider/ThemeProvider.d.ts +9 -0
- package/dist/src/components/ThemeProvider/ThemeProvider.stories.d.ts +14 -0
- package/dist/src/components/ThemeProvider/ThemeProvider.style.d.ts +5 -0
- package/dist/src/components/ThemeProvider/ThemeProvider.test.d.ts +1 -0
- package/dist/src/components/ThemeProvider/index.d.ts +2 -0
- package/dist/src/components/Toast/Toast.d.ts +23 -0
- package/dist/src/components/Toast/Toast.style.d.ts +12 -0
- package/dist/src/components/Toast/Toast.test.d.ts +1 -0
- package/dist/src/components/Toast/index.d.ts +2 -0
- package/dist/src/components/Tooltip/Tooltip.d.ts +5 -0
- package/dist/src/components/Tooltip/Tooltip.stories.d.ts +76 -0
- package/dist/src/components/Tooltip/Tooltip.style.d.ts +5 -0
- package/dist/src/components/Tooltip/Tooltip.types.d.ts +29 -0
- package/dist/src/components/Tooltip/index.d.ts +3 -0
- package/dist/src/components/Tooltip/utils.d.ts +3 -0
- package/dist/src/components/TopAppBar/TopAppBar.d.ts +5 -0
- package/dist/src/components/TopAppBar/TopAppBar.stories.d.ts +53 -0
- package/dist/src/components/TopAppBar/TopAppBar.style.d.ts +10 -0
- package/dist/src/components/TopAppBar/TopAppBar.test.d.ts +1 -0
- package/dist/src/components/TopAppBar/TopAppBar.types.d.ts +25 -0
- package/dist/src/components/TopAppBar/components/Logo/Logo.style.d.ts +9 -0
- package/dist/src/components/TopAppBar/components/Logo/Logo.wrapper.d.ts +7 -0
- package/dist/src/components/TopAppBar/components/Logo/index.d.ts +2 -0
- package/dist/src/components/TopAppBar/components/Search/Search.d.ts +13 -0
- package/dist/src/components/TopAppBar/components/Search/Search.style.d.ts +5 -0
- package/dist/src/components/TopAppBar/components/Search/index.d.ts +2 -0
- package/dist/src/components/TopAppBar/components/SidebarMenuIcon/SidebarMenuIcon.d.ts +5 -0
- package/dist/src/components/TopAppBar/components/SidebarMenuIcon/SidebarMenuIcon.style.d.ts +7 -0
- package/dist/src/components/TopAppBar/components/SidebarMenuIcon/index.d.ts +2 -0
- package/dist/src/components/TopAppBar/components/UserMenu/UserMenu.d.ts +13 -0
- package/dist/src/components/TopAppBar/components/UserMenu/UserMenu.style.d.ts +7 -0
- package/dist/src/components/TopAppBar/components/UserMenu/index.d.ts +2 -0
- package/dist/src/components/TopAppBar/components/index.d.ts +6 -0
- package/dist/src/components/TopAppBar/index.d.ts +3 -0
- package/dist/src/components/TruncatedContent/TruncatedContent.d.ts +12 -0
- package/dist/src/components/TruncatedContent/TruncatedContent.stories.d.ts +18 -0
- package/dist/src/components/TruncatedContent/TruncatedContent.style.d.ts +5 -0
- package/dist/src/components/TruncatedContent/TruncatedContent.test.d.ts +1 -0
- package/dist/src/components/TruncatedContent/index.d.ts +2 -0
- package/dist/src/components/Typography/Typography.config.styles.d.ts +19 -0
- package/dist/src/components/Typography/Typography.d.ts +29 -0
- package/dist/src/components/Typography/Typography.stories.d.ts +40 -0
- package/dist/src/components/Typography/Typography.style.d.ts +14 -0
- package/dist/src/components/Typography/index.d.ts +2 -0
- package/dist/src/components/Typography/utils.d.ts +4 -0
- package/dist/src/components/storyUtils/BarChartShowCase/BarChartShowCase.d.ts +5 -0
- package/dist/src/components/storyUtils/BarChartShowCase/index.d.ts +1 -0
- package/dist/src/components/storyUtils/BreadcrumbShowcase/BreadcrumbShowcase.d.ts +8 -0
- package/dist/src/components/storyUtils/BreadcrumbShowcase/index.d.ts +1 -0
- package/dist/src/components/storyUtils/Breakpoints/Breakpoints.d.ts +2 -0
- package/dist/src/components/storyUtils/Breakpoints/index.d.ts +1 -0
- package/dist/src/components/storyUtils/ButtonShowcases/ButtonShowcase.d.ts +8 -0
- package/dist/src/components/storyUtils/ButtonShowcases/LoadingButtonShowcase.d.ts +4 -0
- package/dist/src/components/storyUtils/ButtonShowcases/index.d.ts +2 -0
- package/dist/src/components/storyUtils/CardShowcase/CardShowcase.d.ts +11 -0
- package/dist/src/components/storyUtils/CardShowcase/CardShowcase.style.d.ts +4 -0
- package/dist/src/components/storyUtils/CardShowcase/index.d.ts +1 -0
- package/dist/src/components/storyUtils/ColorUtility/ColorBox.d.ts +10 -0
- package/dist/src/components/storyUtils/ColorUtility/ColorUtility.d.ts +4 -0
- package/dist/src/components/storyUtils/ColorUtility/ColorUtility.style.d.ts +4 -0
- package/dist/src/components/storyUtils/ColorUtility/RangeInput.d.ts +8 -0
- package/dist/src/components/storyUtils/ColorUtility/index.d.ts +0 -0
- package/dist/src/components/storyUtils/ColorUtility/useColors.d.ts +17 -0
- package/dist/src/components/storyUtils/ColorUtility/utils.d.ts +2 -0
- package/dist/src/components/storyUtils/DonutChartShowCase/DonutChartShowCase.d.ts +8 -0
- package/dist/src/components/storyUtils/DonutChartShowCase/index.d.ts +1 -0
- package/dist/src/components/storyUtils/EdgeCasesSelectShowcase/EdgeCasesSelectShowcase.d.ts +4 -0
- package/dist/src/components/storyUtils/EdgeCasesSelectShowcase/EdgeCasesSelectShowcase.style.d.ts +3 -0
- package/dist/src/components/storyUtils/EdgeCasesSelectShowcase/index.d.ts +1 -0
- package/dist/src/components/storyUtils/IconographyShowcase/IconographyShowcase.d.ts +4 -0
- package/dist/src/components/storyUtils/IconographyShowcase/index.d.ts +1 -0
- package/dist/src/components/storyUtils/LabelConfigStoryComponents.d.ts +5 -0
- package/dist/src/components/storyUtils/ModalShowcase/ModalShowcase.d.ts +8 -0
- package/dist/src/components/storyUtils/ModalShowcase/index.d.ts +1 -0
- package/dist/src/components/storyUtils/NavigationShowcase/MenuItems.d.ts +3 -0
- package/dist/src/components/storyUtils/NavigationShowcase/NavigationShowcase.d.ts +7 -0
- package/dist/src/components/storyUtils/NavigationShowcase/index.d.ts +1 -0
- package/dist/src/components/storyUtils/NotificationShowcase/NotificationShowcase.d.ts +12 -0
- package/dist/src/components/storyUtils/NotificationShowcase/index.d.ts +2 -0
- package/dist/src/components/storyUtils/PaletteShowcase/PaletteShowcase.d.ts +2 -0
- package/dist/src/components/storyUtils/PaletteShowcase/PaletteShowcase.style.d.ts +18 -0
- package/dist/src/components/storyUtils/PaletteShowcase/PaletteShowcase.test.d.ts +1 -0
- package/dist/src/components/storyUtils/PaletteShowcase/index.d.ts +1 -0
- package/dist/src/components/storyUtils/PresentComponent/PresentComponent.d.ts +8 -0
- package/dist/src/components/storyUtils/PresentComponent/index.d.ts +1 -0
- package/dist/src/components/storyUtils/SelectShowcase/MultiSelectShowcase.d.ts +9 -0
- package/dist/src/components/storyUtils/SelectShowcase/MultiSelectShowcase.style.d.ts +5 -0
- package/dist/src/components/storyUtils/SelectShowcase/SelectShowcase.d.ts +11 -0
- package/dist/src/components/storyUtils/SelectShowcase/index.d.ts +2 -0
- package/dist/src/components/storyUtils/SliderShowcase/SliderShowcase.d.ts +10 -0
- package/dist/src/components/storyUtils/SliderShowcase/index.d.ts +1 -0
- package/dist/src/components/storyUtils/Stack/Stack.d.ts +10 -0
- package/dist/src/components/storyUtils/Stack/index.d.ts +1 -0
- package/dist/src/components/storyUtils/TableFilterShowcase/TableFilterShowcase.d.ts +4 -0
- package/dist/src/components/storyUtils/TableFilterShowcase/index.d.ts +1 -0
- package/dist/src/components/storyUtils/TextFieldShowcases/MultiTextFieldShowcase.d.ts +7 -0
- package/dist/src/components/storyUtils/TextFieldShowcases/TextFieldShowCase.d.ts +8 -0
- package/dist/src/components/storyUtils/TextFieldShowcases/index.d.ts +2 -0
- package/dist/src/components/storyUtils/ThemeWrapper/ThemeWrapper.d.ts +4 -0
- package/dist/src/components/storyUtils/ThemeWrapper/index.d.ts +1 -0
- package/dist/src/components/storyUtils/TooltipShowcase/TooltipShowcase.d.ts +6 -0
- package/dist/src/components/storyUtils/TooltipShowcase/components/TooltipContent/TooltipContent.d.ts +7 -0
- package/dist/src/components/storyUtils/TooltipShowcase/components/TooltipContent/TooltipContent.style.d.ts +5 -0
- package/dist/src/components/storyUtils/TooltipShowcase/components/TooltipContent/index.d.ts +1 -0
- package/dist/src/components/storyUtils/TooltipShowcase/index.d.ts +1 -0
- package/dist/src/components/storyUtils/TopAppBarShowcase.d.ts +20 -0
- package/dist/src/components/storyUtils/componentsForTypes.d.ts +12 -0
- package/dist/src/components/utils/ClickAwayListener/ClickAwayListener.d.ts +12 -0
- package/dist/src/components/utils/ClickAwayListener/index.d.ts +1 -0
- package/dist/src/components/utils/DropdownOptions/index.d.ts +9 -0
- package/dist/src/components/utils/PositionInScreen/PositionInScreen.d.ts +25 -0
- package/dist/src/components/utils/PositionInScreen/PositionInScreen.style.d.ts +11 -0
- package/dist/src/components/utils/PositionInScreen/hooks.d.ts +5 -0
- package/dist/src/components/utils/PositionInScreen/index.d.ts +1 -0
- package/dist/src/components/utils/PositionInScreen/utils.d.ts +1 -0
- package/dist/src/components/utils/handleSearch.d.ts +12 -0
- package/dist/src/hooks/__tests__/useSearchQueryParams.test.d.ts +1 -0
- package/dist/src/hooks/index.d.ts +1 -0
- package/dist/src/hooks/storyUtils/DemoUseSearchQueryParams.d.ts +7 -0
- package/dist/src/hooks/useBreakpoints.d.ts +4 -0
- package/dist/src/hooks/useBreakpoints.test.d.ts +1 -0
- package/dist/src/hooks/useCheck.d.ts +7 -0
- package/dist/src/hooks/useCombinedRefs.d.ts +3 -0
- package/dist/src/hooks/useElementSize.d.ts +10 -0
- package/dist/src/hooks/useEscape.d.ts +2 -0
- package/dist/src/hooks/useEventListener.d.ts +4 -0
- package/dist/src/hooks/useFieldUtils.d.ts +14 -0
- package/dist/src/hooks/useIsoMorphicLayoutEffect.d.ts +4 -0
- package/dist/src/hooks/useKeyboardEvents.d.ts +31 -0
- package/dist/src/hooks/useLoading.d.ts +8 -0
- package/dist/src/hooks/useLocationToGetCurrentMenuItem.d.ts +4 -0
- package/dist/src/hooks/usePagination.d.ts +15 -0
- package/dist/src/hooks/useSearchQueryParams.d.ts +2 -0
- package/dist/src/hooks/useSearchQueryParams.stories.d.ts +23 -0
- package/dist/src/hooks/useTheme.d.ts +2 -0
- package/dist/src/hooks/useThemeSwitch.d.ts +9 -0
- package/dist/src/hooks/useToggle.d.ts +2 -0
- package/dist/src/hooks/useTypeColorToColorMatch.d.ts +17 -0
- package/dist/src/index.d.ts +119 -0
- package/dist/src/storybook/Link/Link.d.ts +8 -0
- package/dist/src/storybook/Link/Link.style.d.ts +4 -0
- package/dist/src/storybook/Link/index.d.ts +2 -0
- package/dist/src/storybook/Note/Note.d.ts +4 -0
- package/dist/src/storybook/Note/Note.style.d.ts +4 -0
- package/dist/src/storybook/Note/index.d.ts +1 -0
- package/dist/src/storybook/Overview/Overview.d.ts +6 -0
- package/dist/src/storybook/Overview/Overview.style.d.ts +3 -0
- package/dist/src/storybook/Overview/index.d.ts +1 -0
- package/dist/src/storybook/Preview/Preview.d.ts +7 -0
- package/dist/src/storybook/Preview/Preview.style.d.ts +3 -0
- package/dist/src/storybook/Preview/index.d.ts +2 -0
- package/dist/src/storybook/SectionHeader/SectionHeader.d.ts +12 -0
- package/dist/src/storybook/SectionHeader/SectionHeader.style.d.ts +6 -0
- package/dist/src/storybook/SectionHeader/index.d.ts +2 -0
- package/dist/src/storybook/Showcases/BorderWidthShowcase/BorderWidthShowcase.d.ts +2 -0
- package/dist/src/storybook/Showcases/BorderWidthShowcase/index.d.ts +1 -0
- package/dist/src/storybook/Showcases/BoxShadowShowcase/BoxShadowShowcase.d.ts +2 -0
- package/dist/src/storybook/Showcases/BoxShadowShowcase/index.d.ts +1 -0
- package/dist/src/storybook/Showcases/LayoutShowcase/LayoutShowcase.d.ts +13 -0
- package/dist/src/storybook/Showcases/LayoutShowcase/LayoutShowcase.style.d.ts +13 -0
- package/dist/src/storybook/Showcases/LayoutShowcase/index.d.ts +1 -0
- package/dist/src/storybook/Showcases/MinHeightShowcase/MinHeightShowcase.d.ts +2 -0
- package/dist/src/storybook/Showcases/MinHeightShowcase/index.d.ts +1 -0
- package/dist/src/storybook/Showcases/OpacityShowcase/OpacityShowcase.d.ts +2 -0
- package/dist/src/storybook/Showcases/OpacityShowcase/index.d.ts +1 -0
- package/dist/src/storybook/Showcases/OverviewShowcase/OverviewShowcase.d.ts +10 -0
- package/dist/src/storybook/Showcases/OverviewShowcase/OverviewShowcase.style.d.ts +3 -0
- package/dist/src/storybook/Showcases/OverviewShowcase/index.d.ts +1 -0
- package/dist/src/storybook/Showcases/RadiusShowcase/RadiusShowcase.d.ts +5 -0
- package/dist/src/storybook/Showcases/RadiusShowcase/index.d.ts +1 -0
- package/dist/src/storybook/Showcases/SizingShowcase/SizingShowcase.d.ts +5 -0
- package/dist/src/storybook/Showcases/SizingShowcase/index.d.ts +1 -0
- package/dist/src/storybook/Showcases/SpacingSizingShowcase/SpacingSizingShowcase.d.ts +5 -0
- package/dist/src/storybook/Showcases/SpacingSizingShowcase/SpacingSizingShowcase.style.d.ts +0 -0
- package/dist/src/storybook/Showcases/SpacingSizingShowcase/index.d.ts +1 -0
- package/dist/src/storybook/Showcases/StateShowcase/StateShowcase.d.ts +2 -0
- package/dist/src/storybook/Showcases/StateShowcase/index.d.ts +1 -0
- package/dist/src/storybook/Showcases/TagShowcase/TagShowcase.d.ts +9 -0
- package/dist/src/storybook/Showcases/TagShowcase/index.d.ts +1 -0
- package/dist/src/storybook/Showcases/TextColorShowcase/TextColorShowcase.d.ts +2 -0
- package/dist/src/storybook/Showcases/TextColorShowcase/TextColorShowcase.style.d.ts +5 -0
- package/dist/src/storybook/Showcases/TextColorShowcase/index.d.ts +1 -0
- package/dist/src/storybook/Showcases/TokenColorsShowcase/TokenColorsShowcase.d.ts +10 -0
- package/dist/src/storybook/Showcases/TokenColorsShowcase/TokenColorsShowcase.style.d.ts +7 -0
- package/dist/src/storybook/Showcases/TokenColorsShowcase/index.d.ts +2 -0
- package/dist/src/storybook/Showcases/TokenColorsShowcase/utils.d.ts +17 -0
- package/dist/src/storybook/Showcases/TypographyTokensShowcase/TypographyTokensShowcase.d.ts +2 -0
- package/dist/src/storybook/Showcases/TypographyTokensShowcase/TypographyTokensShowcase.style.d.ts +4 -0
- package/dist/src/storybook/Showcases/TypographyTokensShowcase/index.d.ts +1 -0
- package/dist/src/storybook/SubsectionHeader/SubsectionHeader.d.ts +9 -0
- package/dist/src/storybook/SubsectionHeader/SubsectionHeader.style.d.ts +3 -0
- package/dist/src/storybook/SubsectionHeader/index.d.ts +1 -0
- package/dist/src/storybook/Tip/Tip.d.ts +7 -0
- package/dist/src/storybook/Tip/Tip.style.d.ts +5 -0
- package/dist/src/storybook/Tip/index.d.ts +2 -0
- package/dist/src/storybook/Typography/Typography.d.ts +9 -0
- package/dist/src/storybook/Typography/Typography.style.d.ts +4 -0
- package/dist/src/storybook/Typography/constants.d.ts +4 -0
- package/dist/src/storybook/Typography/index.d.ts +2 -0
- package/dist/src/storybook/UsageGuidelines/UsageGuidelines.d.ts +7 -0
- package/dist/src/storybook/UsageGuidelines/UsageGuidelines.style.d.ts +4 -0
- package/dist/src/storybook/UsageGuidelines/index.d.ts +1 -0
- package/dist/src/storybook/index.d.ts +8 -0
- package/dist/src/storybook/styles/OverviewCard.style.d.ts +4 -0
- package/dist/src/storybook.test.d.ts +1 -0
- package/dist/src/test/index.d.ts +1 -0
- package/dist/src/test/setup.d.ts +1 -0
- package/dist/src/test/utils.d.ts +7 -0
- package/dist/src/theme/dimension/borderRadius.d.ts +9 -0
- package/dist/src/theme/dimension/borderWidth.d.ts +9 -0
- package/dist/src/theme/dimension/index.d.ts +10 -0
- package/dist/src/theme/dimension/minHeight.d.ts +9 -0
- package/dist/src/theme/dimension/opacity.d.ts +9 -0
- package/dist/src/theme/dimension/sizing.d.ts +9 -0
- package/dist/src/theme/dimension/spacing.d.ts +9 -0
- package/dist/src/theme/dimension/state.d.ts +9 -0
- package/dist/src/theme/dimension/variables/borderRadius.d.ts +28 -0
- package/dist/src/theme/dimension/variables/borderWidth.d.ts +23 -0
- package/dist/src/theme/dimension/variables/minHeight.d.ts +20 -0
- package/dist/src/theme/dimension/variables/opacity.d.ts +18 -0
- package/dist/src/theme/dimension/variables/sizing.d.ts +30 -0
- package/dist/src/theme/dimension/variables/spacing.d.ts +43 -0
- package/dist/src/theme/dimension/variables/state.d.ts +25 -0
- package/dist/src/theme/functions.d.ts +9 -0
- package/dist/src/theme/globals/borderRadius.d.ts +8 -0
- package/dist/src/theme/globals/borderWidth.d.ts +8 -0
- package/dist/src/theme/globals/colors.d.ts +9 -0
- package/dist/src/theme/globals/constants/borderRadius.d.ts +43 -0
- package/dist/src/theme/globals/constants/borderWidth.d.ts +17 -0
- package/dist/src/theme/globals/constants/colors.d.ts +295 -0
- package/dist/src/theme/globals/constants/fontFamily.d.ts +12 -0
- package/dist/src/theme/globals/constants/fontSize.d.ts +44 -0
- package/dist/src/theme/globals/constants/fontWeight.d.ts +18 -0
- package/dist/src/theme/globals/constants/letterSpacing.d.ts +19 -0
- package/dist/src/theme/globals/constants/lineHeight.d.ts +48 -0
- package/dist/src/theme/globals/constants/opacity.d.ts +29 -0
- package/dist/src/theme/globals/constants/sizing.d.ts +95 -0
- package/dist/src/theme/globals/constants/spacing.d.ts +55 -0
- package/dist/src/theme/globals/constants/textCase.d.ts +11 -0
- package/dist/src/theme/globals/constants/textDecoration.d.ts +12 -0
- package/dist/src/theme/globals/elevation.d.ts +8 -0
- package/dist/src/theme/globals/index.d.ts +12 -0
- package/dist/src/theme/globals/oldColors.d.ts +2 -0
- package/dist/src/theme/globals/opacity.d.ts +8 -0
- package/dist/src/theme/globals/sizing.d.ts +8 -0
- package/dist/src/theme/globals/spacing.d.ts +8 -0
- package/dist/src/theme/globals/typography.d.ts +54 -0
- package/dist/src/theme/index.d.ts +5 -0
- package/dist/src/theme/overrides.d.ts +3 -0
- package/dist/src/theme/palette.config.d.ts +46 -0
- package/dist/src/theme/palette.d.ts +74 -0
- package/dist/src/theme/states/disabled.d.ts +12 -0
- package/dist/src/theme/states/focus.d.ts +17 -0
- package/dist/src/theme/states/hover.d.ts +16 -0
- package/dist/src/theme/states/index.d.ts +6 -0
- package/dist/src/theme/states/pressed.d.ts +16 -0
- package/dist/src/theme/states/statesConfig.d.ts +37 -0
- package/dist/src/theme/states/tests/states.test.d.ts +1 -0
- package/dist/src/theme/states/utils.d.ts +10 -0
- package/dist/src/theme/tests/utils.test.d.ts +1 -0
- package/dist/src/theme/tokens/components/variables/avatar.d.ts +103 -0
- package/dist/src/theme/tokens/components/variables/button.d.ts +27 -0
- package/dist/src/theme/tokens/components/variables/controls.d.ts +19 -0
- package/dist/src/theme/tokens/components/variables/datePicker.d.ts +18 -0
- package/dist/src/theme/tokens/components/variables/field.d.ts +93 -0
- package/dist/src/theme/tokens/components/variables/filter.d.ts +8 -0
- package/dist/src/theme/tokens/components/variables/link.d.ts +58 -0
- package/dist/src/theme/tokens/components/variables/listItem.d.ts +13 -0
- package/dist/src/theme/tokens/components/variables/progressIndicator.d.ts +15 -0
- package/dist/src/theme/tokens/components/variables/search.d.ts +10 -0
- package/dist/src/theme/tokens/components/variables/tag.d.ts +17 -0
- package/dist/src/theme/tokens/index.d.ts +10 -0
- package/dist/src/theme/tokens/semantic/boxShadow.d.ts +8 -0
- package/dist/src/theme/tokens/semantic/colors.d.ts +9 -0
- package/dist/src/theme/tokens/semantic/disabledState.d.ts +8 -0
- package/dist/src/theme/tokens/semantic/index.d.ts +8 -0
- package/dist/src/theme/tokens/semantic/state.d.ts +8 -0
- package/dist/src/theme/tokens/semantic/tests/constants.d.ts +22 -0
- package/dist/src/theme/tokens/semantic/tests/utils.test.d.ts +1 -0
- package/dist/src/theme/tokens/semantic/typography.d.ts +12 -0
- package/dist/src/theme/tokens/semantic/variables/boxShadow.d.ts +71 -0
- package/dist/src/theme/tokens/semantic/variables/colors.d.ts +308 -0
- package/dist/src/theme/tokens/semantic/variables/disabledState.d.ts +7 -0
- package/dist/src/theme/tokens/semantic/variables/state.d.ts +24 -0
- package/dist/src/theme/tokens/semantic/variables/typography.d.ts +359 -0
- package/dist/src/theme/tokens/utils/components.d.ts +13 -0
- package/dist/src/theme/tokens/utils/index.d.ts +4 -0
- package/dist/src/theme/tokens/utils/parsers.d.ts +21 -0
- package/dist/src/theme/tokens/utils/semantic.d.ts +11 -0
- package/dist/src/theme/tokens/utils/types.d.ts +49 -0
- package/dist/src/theme/types.d.ts +82 -0
- package/dist/src/theme/utils.d.ts +51 -0
- package/dist/src/utils/common.d.ts +22 -0
- package/dist/src/utils/date.d.ts +5 -0
- package/dist/src/utils/errors.d.ts +6 -0
- package/dist/src/utils/helpers.d.ts +20 -0
- package/dist/src/utils/storyshots.d.ts +18 -0
- package/dist/src/utils/tests/helpers.test.d.ts +1 -0
- package/dist/src/utils/tests/themeFunctions.test.d.ts +1 -0
- package/dist/src/utils/themeFunctions.d.ts +35 -0
- package/dist/src/utils/types.d.ts +11 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +24 -14
- package/dist/codemods/avatarCodemod.js.map +0 -1
- package/dist/codemods/buttonCodemod.js.map +0 -1
- package/dist/codemods/checkboxCodemod.js.map +0 -1
- package/dist/codemods/chipCodemode.js.map +0 -1
- package/dist/codemods/drawerCodemod.js.map +0 -1
- package/dist/codemods/filterCodemod.js.map +0 -1
- package/dist/codemods/globalsCodemod.js.map +0 -1
- package/dist/codemods/iconButtonCodemod.js.map +0 -1
- package/dist/codemods/iconCodemod.js.map +0 -1
- package/dist/codemods/loaderCodemod.js.map +0 -1
- package/dist/codemods/menuCodemod.js.map +0 -1
- package/dist/codemods/notificationsCodemod.js.map +0 -1
- package/dist/codemods/paginationCodemod.js.map +0 -1
- package/dist/codemods/radioCodemod.js.map +0 -1
- package/dist/codemods/radioGroupCodemod.js.map +0 -1
- package/dist/codemods/searchCodemod.js.map +0 -1
- package/dist/codemods/selectCodemod.js.map +0 -1
- package/dist/codemods/switchCodemod.js.map +0 -1
- package/dist/codemods/tableCodemod.js.map +0 -1
- package/dist/codemods/textareaCodemod.js.map +0 -1
- package/dist/codemods/textfieldCodemod.js.map +0 -1
- package/dist/codemods/tooltipCodemod.js.map +0 -1
- package/dist/codemods/unchangedIconsCodemod.js.map +0 -1
- package/dist/index.d.ts +0 -3479
- package/dist/index.umd.js +0 -147
- /package/dist/codemods/{globalsCodemod.d.ts → codemods/globalsCodemod.d.ts} +0 -0
|
@@ -0,0 +1,295 @@
|
|
|
1
|
+
declare const colors: {
|
|
2
|
+
readonly gradient: {
|
|
3
|
+
readonly '1': {
|
|
4
|
+
readonly value: "linear-gradient(-90deg, #F814A1 0%, #4945EE 100%)";
|
|
5
|
+
readonly type: "color";
|
|
6
|
+
};
|
|
7
|
+
readonly '2': {
|
|
8
|
+
readonly value: "linear-gradient(90deg, #B9CDFC 0%, #B9C0FF 100%)";
|
|
9
|
+
readonly type: "color";
|
|
10
|
+
};
|
|
11
|
+
readonly '3': {
|
|
12
|
+
readonly value: "linear-gradient(-90deg, #1B214F 0%, #020D25 100%)";
|
|
13
|
+
readonly type: "color";
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
readonly blue: {
|
|
17
|
+
readonly '1': {
|
|
18
|
+
readonly value: "#E9EFFB";
|
|
19
|
+
readonly type: "color";
|
|
20
|
+
};
|
|
21
|
+
readonly '2': {
|
|
22
|
+
readonly value: "#DAE4FB";
|
|
23
|
+
readonly type: "color";
|
|
24
|
+
};
|
|
25
|
+
readonly '3': {
|
|
26
|
+
readonly value: "#B8CCFA";
|
|
27
|
+
readonly type: "color";
|
|
28
|
+
};
|
|
29
|
+
readonly '4': {
|
|
30
|
+
readonly value: "#8EAAEC";
|
|
31
|
+
readonly type: "color";
|
|
32
|
+
};
|
|
33
|
+
readonly '5': {
|
|
34
|
+
readonly value: "#5E8DF8";
|
|
35
|
+
readonly type: "color";
|
|
36
|
+
};
|
|
37
|
+
readonly '6': {
|
|
38
|
+
readonly value: "#175BF5";
|
|
39
|
+
readonly type: "color";
|
|
40
|
+
};
|
|
41
|
+
readonly '7': {
|
|
42
|
+
readonly value: "#194DCC";
|
|
43
|
+
readonly type: "color";
|
|
44
|
+
};
|
|
45
|
+
readonly '8': {
|
|
46
|
+
readonly value: "#173DA0";
|
|
47
|
+
readonly type: "color";
|
|
48
|
+
};
|
|
49
|
+
readonly '9': {
|
|
50
|
+
readonly value: "#173382";
|
|
51
|
+
readonly type: "color";
|
|
52
|
+
};
|
|
53
|
+
readonly '10': {
|
|
54
|
+
readonly value: "#12204E";
|
|
55
|
+
readonly type: "color";
|
|
56
|
+
};
|
|
57
|
+
};
|
|
58
|
+
readonly neutral: {
|
|
59
|
+
readonly '1': {
|
|
60
|
+
readonly value: "#ffffff";
|
|
61
|
+
readonly type: "color";
|
|
62
|
+
};
|
|
63
|
+
readonly '2': {
|
|
64
|
+
readonly value: "#F2F4FF";
|
|
65
|
+
readonly type: "color";
|
|
66
|
+
};
|
|
67
|
+
readonly '3': {
|
|
68
|
+
readonly value: "#B3B5CC";
|
|
69
|
+
readonly type: "color";
|
|
70
|
+
};
|
|
71
|
+
readonly '4': {
|
|
72
|
+
readonly value: "#52567a";
|
|
73
|
+
readonly type: "color";
|
|
74
|
+
};
|
|
75
|
+
readonly '5': {
|
|
76
|
+
readonly value: "#262C59";
|
|
77
|
+
readonly type: "color";
|
|
78
|
+
};
|
|
79
|
+
readonly '6': {
|
|
80
|
+
readonly value: "#111530";
|
|
81
|
+
readonly type: "color";
|
|
82
|
+
};
|
|
83
|
+
};
|
|
84
|
+
readonly transparent: {
|
|
85
|
+
readonly '1': {
|
|
86
|
+
readonly value: "rgba(200,206,255,0)";
|
|
87
|
+
readonly type: "color";
|
|
88
|
+
};
|
|
89
|
+
readonly '2': {
|
|
90
|
+
readonly value: "rgba(200,206,255,0.20)";
|
|
91
|
+
readonly type: "color";
|
|
92
|
+
};
|
|
93
|
+
readonly '3': {
|
|
94
|
+
readonly value: "rgba(200,206,255,0.30)";
|
|
95
|
+
readonly type: "color";
|
|
96
|
+
};
|
|
97
|
+
readonly '4': {
|
|
98
|
+
readonly value: "rgba(200,206,255,0.45)";
|
|
99
|
+
readonly type: "color";
|
|
100
|
+
};
|
|
101
|
+
readonly '5': {
|
|
102
|
+
readonly value: "rgba(200,206,255,0.70)";
|
|
103
|
+
readonly type: "color";
|
|
104
|
+
};
|
|
105
|
+
readonly '6': {
|
|
106
|
+
readonly value: "rgba(76,86,164,0)";
|
|
107
|
+
readonly type: "color";
|
|
108
|
+
};
|
|
109
|
+
readonly '7': {
|
|
110
|
+
readonly value: "rgba(76,86,164,0.20)";
|
|
111
|
+
readonly type: "color";
|
|
112
|
+
};
|
|
113
|
+
readonly '8': {
|
|
114
|
+
readonly value: "rgba(76,86,164,0.30)";
|
|
115
|
+
readonly type: "color";
|
|
116
|
+
};
|
|
117
|
+
readonly '9': {
|
|
118
|
+
readonly value: "rgba(76,86,164,0.45)";
|
|
119
|
+
readonly type: "color";
|
|
120
|
+
};
|
|
121
|
+
readonly '10': {
|
|
122
|
+
readonly value: "rgba(76,86,164,0.70)";
|
|
123
|
+
readonly type: "color";
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
readonly red: {
|
|
127
|
+
readonly '1': {
|
|
128
|
+
readonly value: "#FFEBF1";
|
|
129
|
+
readonly type: "color";
|
|
130
|
+
};
|
|
131
|
+
readonly '2': {
|
|
132
|
+
readonly value: "#FFD6E5";
|
|
133
|
+
readonly type: "color";
|
|
134
|
+
};
|
|
135
|
+
readonly '3': {
|
|
136
|
+
readonly value: "#FFB2CE";
|
|
137
|
+
readonly type: "color";
|
|
138
|
+
};
|
|
139
|
+
readonly '4': {
|
|
140
|
+
readonly value: "#FF80AD";
|
|
141
|
+
readonly type: "color";
|
|
142
|
+
};
|
|
143
|
+
readonly '5': {
|
|
144
|
+
readonly value: "#FF4D8D";
|
|
145
|
+
readonly type: "color";
|
|
146
|
+
};
|
|
147
|
+
readonly '6': {
|
|
148
|
+
readonly value: "#D4165F";
|
|
149
|
+
readonly type: "color";
|
|
150
|
+
};
|
|
151
|
+
readonly '7': {
|
|
152
|
+
readonly value: "#BF1250";
|
|
153
|
+
readonly type: "color";
|
|
154
|
+
};
|
|
155
|
+
readonly '8': {
|
|
156
|
+
readonly value: "#831650";
|
|
157
|
+
readonly type: "color";
|
|
158
|
+
};
|
|
159
|
+
readonly '9': {
|
|
160
|
+
readonly value: "#601649";
|
|
161
|
+
readonly type: "color";
|
|
162
|
+
};
|
|
163
|
+
readonly '10': {
|
|
164
|
+
readonly value: "#33123A";
|
|
165
|
+
readonly type: "color";
|
|
166
|
+
};
|
|
167
|
+
};
|
|
168
|
+
readonly orange: {
|
|
169
|
+
readonly '1': {
|
|
170
|
+
readonly value: "#FFF0D1";
|
|
171
|
+
readonly type: "color";
|
|
172
|
+
};
|
|
173
|
+
readonly '2': {
|
|
174
|
+
readonly value: "#FFE2A8";
|
|
175
|
+
readonly type: "color";
|
|
176
|
+
};
|
|
177
|
+
readonly '3': {
|
|
178
|
+
readonly value: "#FFC95C";
|
|
179
|
+
readonly type: "color";
|
|
180
|
+
};
|
|
181
|
+
readonly '4': {
|
|
182
|
+
readonly value: "#F5A300";
|
|
183
|
+
readonly type: "color";
|
|
184
|
+
};
|
|
185
|
+
readonly '5': {
|
|
186
|
+
readonly value: "#D67D00";
|
|
187
|
+
readonly type: "color";
|
|
188
|
+
};
|
|
189
|
+
readonly '6': {
|
|
190
|
+
readonly value: "#9E4214";
|
|
191
|
+
readonly type: "color";
|
|
192
|
+
};
|
|
193
|
+
readonly '7': {
|
|
194
|
+
readonly value: "#8B391D";
|
|
195
|
+
readonly type: "color";
|
|
196
|
+
};
|
|
197
|
+
readonly '8': {
|
|
198
|
+
readonly value: "#66301E";
|
|
199
|
+
readonly type: "color";
|
|
200
|
+
};
|
|
201
|
+
readonly '9': {
|
|
202
|
+
readonly value: "#4D2A24";
|
|
203
|
+
readonly type: "color";
|
|
204
|
+
};
|
|
205
|
+
readonly '10': {
|
|
206
|
+
readonly value: "#29201E";
|
|
207
|
+
readonly type: "color";
|
|
208
|
+
};
|
|
209
|
+
};
|
|
210
|
+
readonly purple: {
|
|
211
|
+
readonly '1': {
|
|
212
|
+
readonly value: "#F3EBFF";
|
|
213
|
+
readonly type: "color";
|
|
214
|
+
};
|
|
215
|
+
readonly '2': {
|
|
216
|
+
readonly value: "#EBDBFF";
|
|
217
|
+
readonly type: "color";
|
|
218
|
+
};
|
|
219
|
+
readonly '3': {
|
|
220
|
+
readonly value: "#D8BDFF";
|
|
221
|
+
readonly type: "color";
|
|
222
|
+
};
|
|
223
|
+
readonly '4': {
|
|
224
|
+
readonly value: "#BD8FFF";
|
|
225
|
+
readonly type: "color";
|
|
226
|
+
};
|
|
227
|
+
readonly '5': {
|
|
228
|
+
readonly value: "#A566FF";
|
|
229
|
+
readonly type: "color";
|
|
230
|
+
};
|
|
231
|
+
readonly '6': {
|
|
232
|
+
readonly value: "#7531DE";
|
|
233
|
+
readonly type: "color";
|
|
234
|
+
};
|
|
235
|
+
readonly '7': {
|
|
236
|
+
readonly value: "#5F33AC";
|
|
237
|
+
readonly type: "color";
|
|
238
|
+
};
|
|
239
|
+
readonly '8': {
|
|
240
|
+
readonly value: "#492A89";
|
|
241
|
+
readonly type: "color";
|
|
242
|
+
};
|
|
243
|
+
readonly '9': {
|
|
244
|
+
readonly value: "#38246E";
|
|
245
|
+
readonly type: "color";
|
|
246
|
+
};
|
|
247
|
+
readonly '10': {
|
|
248
|
+
readonly value: "#211A47";
|
|
249
|
+
readonly type: "color";
|
|
250
|
+
};
|
|
251
|
+
};
|
|
252
|
+
readonly teal: {
|
|
253
|
+
readonly '1': {
|
|
254
|
+
readonly value: "#DCF9F2";
|
|
255
|
+
readonly type: "color";
|
|
256
|
+
};
|
|
257
|
+
readonly '2': {
|
|
258
|
+
readonly value: "#BFF4E7";
|
|
259
|
+
readonly type: "color";
|
|
260
|
+
};
|
|
261
|
+
readonly '3': {
|
|
262
|
+
readonly value: "#86EAD1";
|
|
263
|
+
readonly type: "color";
|
|
264
|
+
};
|
|
265
|
+
readonly '4': {
|
|
266
|
+
readonly value: "#3CDDB4";
|
|
267
|
+
readonly type: "color";
|
|
268
|
+
};
|
|
269
|
+
readonly '5': {
|
|
270
|
+
readonly value: "#1EBE96";
|
|
271
|
+
readonly type: "color";
|
|
272
|
+
};
|
|
273
|
+
readonly '6': {
|
|
274
|
+
readonly value: "#107962";
|
|
275
|
+
readonly type: "color";
|
|
276
|
+
};
|
|
277
|
+
readonly '7': {
|
|
278
|
+
readonly value: "#11695B";
|
|
279
|
+
readonly type: "color";
|
|
280
|
+
};
|
|
281
|
+
readonly '8': {
|
|
282
|
+
readonly value: "#0F514C";
|
|
283
|
+
readonly type: "color";
|
|
284
|
+
};
|
|
285
|
+
readonly '9': {
|
|
286
|
+
readonly value: "#104042";
|
|
287
|
+
readonly type: "color";
|
|
288
|
+
};
|
|
289
|
+
readonly '10': {
|
|
290
|
+
readonly value: "#0E2834";
|
|
291
|
+
readonly type: "color";
|
|
292
|
+
};
|
|
293
|
+
};
|
|
294
|
+
};
|
|
295
|
+
export default colors;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const fontFamily: {
|
|
2
|
+
readonly roboto: {
|
|
3
|
+
readonly value: "Roboto";
|
|
4
|
+
readonly type: "fontFamilies";
|
|
5
|
+
};
|
|
6
|
+
readonly robotoMono: {
|
|
7
|
+
readonly value: "Roboto Mono";
|
|
8
|
+
readonly type: "fontFamilies";
|
|
9
|
+
readonly description: "alternative font family used for numerical table cells";
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export default fontFamily;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
declare const fontSize: {
|
|
2
|
+
readonly '1': {
|
|
3
|
+
readonly value: "10px";
|
|
4
|
+
readonly type: "fontSizes";
|
|
5
|
+
readonly description: "smallest possible body size. Used only for avatar initials";
|
|
6
|
+
};
|
|
7
|
+
readonly '2': {
|
|
8
|
+
readonly value: "12px";
|
|
9
|
+
readonly type: "fontSizes";
|
|
10
|
+
};
|
|
11
|
+
readonly '3': {
|
|
12
|
+
readonly value: "14px";
|
|
13
|
+
readonly type: "fontSizes";
|
|
14
|
+
};
|
|
15
|
+
readonly '4': {
|
|
16
|
+
readonly value: "16px";
|
|
17
|
+
readonly type: "fontSizes";
|
|
18
|
+
};
|
|
19
|
+
readonly '5': {
|
|
20
|
+
readonly value: "18px";
|
|
21
|
+
readonly type: "fontSizes";
|
|
22
|
+
};
|
|
23
|
+
readonly '6': {
|
|
24
|
+
readonly value: "20px";
|
|
25
|
+
readonly type: "fontSizes";
|
|
26
|
+
};
|
|
27
|
+
readonly '7': {
|
|
28
|
+
readonly value: "22px";
|
|
29
|
+
readonly type: "fontSizes";
|
|
30
|
+
};
|
|
31
|
+
readonly '8': {
|
|
32
|
+
readonly value: "24px";
|
|
33
|
+
readonly type: "fontSizes";
|
|
34
|
+
};
|
|
35
|
+
readonly '9': {
|
|
36
|
+
readonly value: "28px";
|
|
37
|
+
readonly type: "fontSizes";
|
|
38
|
+
};
|
|
39
|
+
readonly '10': {
|
|
40
|
+
readonly value: "32px";
|
|
41
|
+
readonly type: "fontSizes";
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
export default fontSize;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
declare const fontWeight: {
|
|
2
|
+
readonly regular: {
|
|
3
|
+
readonly value: "400";
|
|
4
|
+
readonly type: "fontWeights";
|
|
5
|
+
readonly description: "fontWeight=Regular";
|
|
6
|
+
};
|
|
7
|
+
readonly medium: {
|
|
8
|
+
readonly value: "500";
|
|
9
|
+
readonly type: "fontWeights";
|
|
10
|
+
readonly description: "FontWeight=Medium";
|
|
11
|
+
};
|
|
12
|
+
readonly bold: {
|
|
13
|
+
readonly value: "700";
|
|
14
|
+
readonly type: "fontWeights";
|
|
15
|
+
readonly description: "FontWeight=Bold";
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export default fontWeight;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
declare const letterSpacing: {
|
|
2
|
+
readonly '0': {
|
|
3
|
+
readonly value: "0px";
|
|
4
|
+
readonly type: "letterSpacing";
|
|
5
|
+
};
|
|
6
|
+
readonly '1': {
|
|
7
|
+
readonly value: "0.1px";
|
|
8
|
+
readonly type: "letterSpacing";
|
|
9
|
+
};
|
|
10
|
+
readonly '2': {
|
|
11
|
+
readonly value: "0.25px";
|
|
12
|
+
readonly type: "letterSpacing";
|
|
13
|
+
};
|
|
14
|
+
readonly '3': {
|
|
15
|
+
readonly value: "0.5px";
|
|
16
|
+
readonly type: "letterSpacing";
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
export default letterSpacing;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
declare const lineHeight: {
|
|
2
|
+
readonly '1': {
|
|
3
|
+
readonly value: "14px";
|
|
4
|
+
readonly type: "lineHeights";
|
|
5
|
+
readonly description: "For form field labels only";
|
|
6
|
+
};
|
|
7
|
+
readonly '2': {
|
|
8
|
+
readonly value: "16px";
|
|
9
|
+
readonly type: "lineHeights";
|
|
10
|
+
};
|
|
11
|
+
readonly '3': {
|
|
12
|
+
readonly value: "18px";
|
|
13
|
+
readonly type: "lineHeights";
|
|
14
|
+
};
|
|
15
|
+
readonly '4': {
|
|
16
|
+
readonly value: "20px";
|
|
17
|
+
readonly type: "lineHeights";
|
|
18
|
+
};
|
|
19
|
+
readonly '5': {
|
|
20
|
+
readonly value: "22px";
|
|
21
|
+
readonly type: "lineHeights";
|
|
22
|
+
};
|
|
23
|
+
readonly '6': {
|
|
24
|
+
readonly value: "24px";
|
|
25
|
+
readonly type: "lineHeights";
|
|
26
|
+
};
|
|
27
|
+
readonly '7': {
|
|
28
|
+
readonly value: "28px";
|
|
29
|
+
readonly type: "lineHeights";
|
|
30
|
+
};
|
|
31
|
+
readonly '8': {
|
|
32
|
+
readonly value: "32px";
|
|
33
|
+
readonly type: "lineHeights";
|
|
34
|
+
};
|
|
35
|
+
readonly '9': {
|
|
36
|
+
readonly value: "36px";
|
|
37
|
+
readonly type: "lineHeights";
|
|
38
|
+
};
|
|
39
|
+
readonly '10': {
|
|
40
|
+
readonly value: "40px";
|
|
41
|
+
readonly type: "lineHeights";
|
|
42
|
+
};
|
|
43
|
+
readonly '11': {
|
|
44
|
+
readonly value: "48px";
|
|
45
|
+
readonly type: "lineHeights";
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
export default lineHeight;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
declare const opacity: {
|
|
2
|
+
readonly '0': {
|
|
3
|
+
readonly value: "0";
|
|
4
|
+
readonly type: "opacity";
|
|
5
|
+
};
|
|
6
|
+
readonly '1': {
|
|
7
|
+
readonly value: "7%";
|
|
8
|
+
readonly type: "opacity";
|
|
9
|
+
};
|
|
10
|
+
readonly '2': {
|
|
11
|
+
readonly value: "14%";
|
|
12
|
+
readonly type: "opacity";
|
|
13
|
+
};
|
|
14
|
+
readonly '3': {
|
|
15
|
+
readonly value: "21%";
|
|
16
|
+
readonly type: "opacity";
|
|
17
|
+
};
|
|
18
|
+
readonly '4': {
|
|
19
|
+
readonly value: "50%";
|
|
20
|
+
readonly type: "opacity";
|
|
21
|
+
readonly description: "used in disabled state";
|
|
22
|
+
};
|
|
23
|
+
readonly '5': {
|
|
24
|
+
readonly value: "75%";
|
|
25
|
+
readonly type: "opacity";
|
|
26
|
+
readonly description: "used in backdrop overlays";
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
export default opacity;
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
declare const sizing: {
|
|
2
|
+
readonly '0': {
|
|
3
|
+
readonly value: "0px";
|
|
4
|
+
readonly type: "sizing";
|
|
5
|
+
};
|
|
6
|
+
readonly '1': {
|
|
7
|
+
readonly value: "4px";
|
|
8
|
+
readonly type: "sizing";
|
|
9
|
+
};
|
|
10
|
+
readonly '2': {
|
|
11
|
+
readonly value: "8px";
|
|
12
|
+
readonly type: "sizing";
|
|
13
|
+
};
|
|
14
|
+
readonly '3': {
|
|
15
|
+
readonly value: "12px";
|
|
16
|
+
readonly type: "sizing";
|
|
17
|
+
};
|
|
18
|
+
readonly '4': {
|
|
19
|
+
readonly value: "16px";
|
|
20
|
+
readonly type: "sizing";
|
|
21
|
+
};
|
|
22
|
+
readonly '5': {
|
|
23
|
+
readonly value: "20px";
|
|
24
|
+
readonly type: "sizing";
|
|
25
|
+
};
|
|
26
|
+
readonly '6': {
|
|
27
|
+
readonly value: "24px";
|
|
28
|
+
readonly type: "sizing";
|
|
29
|
+
};
|
|
30
|
+
readonly '7': {
|
|
31
|
+
readonly value: "28px";
|
|
32
|
+
readonly type: "sizing";
|
|
33
|
+
};
|
|
34
|
+
readonly '8': {
|
|
35
|
+
readonly value: "32px";
|
|
36
|
+
readonly type: "sizing";
|
|
37
|
+
};
|
|
38
|
+
readonly '9': {
|
|
39
|
+
readonly value: "36px";
|
|
40
|
+
readonly type: "sizing";
|
|
41
|
+
};
|
|
42
|
+
readonly '10': {
|
|
43
|
+
readonly value: "40px";
|
|
44
|
+
readonly type: "sizing";
|
|
45
|
+
};
|
|
46
|
+
readonly '11': {
|
|
47
|
+
readonly value: "44px";
|
|
48
|
+
readonly type: "sizing";
|
|
49
|
+
};
|
|
50
|
+
readonly '12': {
|
|
51
|
+
readonly value: "48px";
|
|
52
|
+
readonly type: "sizing";
|
|
53
|
+
};
|
|
54
|
+
readonly '13': {
|
|
55
|
+
readonly value: "52px";
|
|
56
|
+
readonly type: "sizing";
|
|
57
|
+
};
|
|
58
|
+
readonly '14': {
|
|
59
|
+
readonly value: "56px";
|
|
60
|
+
readonly type: "sizing";
|
|
61
|
+
};
|
|
62
|
+
readonly '15': {
|
|
63
|
+
readonly value: "60px";
|
|
64
|
+
readonly type: "sizing";
|
|
65
|
+
};
|
|
66
|
+
readonly '16': {
|
|
67
|
+
readonly value: "72px";
|
|
68
|
+
readonly type: "sizing";
|
|
69
|
+
};
|
|
70
|
+
readonly '17': {
|
|
71
|
+
readonly value: "80px";
|
|
72
|
+
readonly type: "sizing";
|
|
73
|
+
};
|
|
74
|
+
readonly '18': {
|
|
75
|
+
readonly value: "88px";
|
|
76
|
+
readonly type: "sizing";
|
|
77
|
+
};
|
|
78
|
+
readonly '19': {
|
|
79
|
+
readonly value: "92px";
|
|
80
|
+
readonly type: "sizing";
|
|
81
|
+
};
|
|
82
|
+
readonly '20': {
|
|
83
|
+
readonly value: "100px";
|
|
84
|
+
readonly type: "sizing";
|
|
85
|
+
};
|
|
86
|
+
readonly '21': {
|
|
87
|
+
readonly value: "120px";
|
|
88
|
+
readonly type: "sizing";
|
|
89
|
+
};
|
|
90
|
+
readonly '22': {
|
|
91
|
+
readonly value: "140px";
|
|
92
|
+
readonly type: "sizing";
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
export default sizing;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
declare const spacing: {
|
|
2
|
+
readonly '0': {
|
|
3
|
+
readonly value: "0px";
|
|
4
|
+
readonly type: "spacing";
|
|
5
|
+
};
|
|
6
|
+
readonly '1': {
|
|
7
|
+
readonly value: "1px";
|
|
8
|
+
readonly type: "spacing";
|
|
9
|
+
};
|
|
10
|
+
readonly '2': {
|
|
11
|
+
readonly value: "2px";
|
|
12
|
+
readonly type: "spacing";
|
|
13
|
+
};
|
|
14
|
+
readonly '3': {
|
|
15
|
+
readonly value: "4px";
|
|
16
|
+
readonly type: "spacing";
|
|
17
|
+
};
|
|
18
|
+
readonly '4': {
|
|
19
|
+
readonly value: "8px";
|
|
20
|
+
readonly type: "spacing";
|
|
21
|
+
};
|
|
22
|
+
readonly '5': {
|
|
23
|
+
readonly value: "12px";
|
|
24
|
+
readonly type: "spacing";
|
|
25
|
+
};
|
|
26
|
+
readonly '6': {
|
|
27
|
+
readonly value: "16px";
|
|
28
|
+
readonly type: "spacing";
|
|
29
|
+
};
|
|
30
|
+
readonly '7': {
|
|
31
|
+
readonly value: "20px";
|
|
32
|
+
readonly type: "spacing";
|
|
33
|
+
};
|
|
34
|
+
readonly '8': {
|
|
35
|
+
readonly value: "24px";
|
|
36
|
+
readonly type: "spacing";
|
|
37
|
+
};
|
|
38
|
+
readonly '9': {
|
|
39
|
+
readonly value: "32px";
|
|
40
|
+
readonly type: "spacing";
|
|
41
|
+
};
|
|
42
|
+
readonly '10': {
|
|
43
|
+
readonly value: "36px";
|
|
44
|
+
readonly type: "spacing";
|
|
45
|
+
};
|
|
46
|
+
readonly '11': {
|
|
47
|
+
readonly value: "40px";
|
|
48
|
+
readonly type: "spacing";
|
|
49
|
+
};
|
|
50
|
+
readonly '12': {
|
|
51
|
+
readonly value: "44px";
|
|
52
|
+
readonly type: "spacing";
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
export default spacing;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const textDecoration: {
|
|
2
|
+
readonly link: {
|
|
3
|
+
readonly value: "underline";
|
|
4
|
+
readonly type: "textDecoration";
|
|
5
|
+
readonly description: "underline that appears on link while hovering";
|
|
6
|
+
};
|
|
7
|
+
readonly none: {
|
|
8
|
+
readonly value: "none";
|
|
9
|
+
readonly type: "textDecoration";
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export default textDecoration;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
declare const globals: {
|
|
2
|
+
oldColors: import('../palette').Palette;
|
|
3
|
+
colors: import('./colors').Colors;
|
|
4
|
+
typography: import('./typography').Typography;
|
|
5
|
+
spacing: import('./spacing').Spacing;
|
|
6
|
+
elevation: import('./elevation').Elevation;
|
|
7
|
+
borderRadius: import('./borderRadius').BorderRadius;
|
|
8
|
+
borderWidth: import('./borderWidth').BorderWidth;
|
|
9
|
+
opacity: import('./opacity').Opacity;
|
|
10
|
+
sizing: import('./sizing').Sizing;
|
|
11
|
+
};
|
|
12
|
+
export default globals;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as opacityFigma } from './constants/opacity';
|
|
2
|
+
|
|
3
|
+
export type OpacityKey = keyof typeof opacityFigma;
|
|
4
|
+
export type Opacity = {
|
|
5
|
+
get: (val: OpacityKey, fn?: (val: string) => unknown) => string;
|
|
6
|
+
};
|
|
7
|
+
declare const opacity: Opacity;
|
|
8
|
+
export default opacity;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as sizingFigma } from './constants/sizing';
|
|
2
|
+
|
|
3
|
+
export type SizingKey = keyof typeof sizingFigma;
|
|
4
|
+
export type Sizing = {
|
|
5
|
+
get: (val: SizingKey, fn?: (val: string) => unknown) => string;
|
|
6
|
+
};
|
|
7
|
+
declare const sizing: Sizing;
|
|
8
|
+
export default sizing;
|