@aivenio/aquarium 0.0.1
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/LICENSE +202 -0
- package/README.md +190 -0
- package/dist/_variables.scss +155 -0
- package/dist/_variables_timescale.scss +155 -0
- package/dist/atoms.cjs +3131 -0
- package/dist/atoms.mjs +3105 -0
- package/dist/src/common/Alert/Alert.d.ts +19 -0
- package/dist/src/common/Alert/Alert.js +74 -0
- package/dist/src/common/Banner/Banner.d.ts +24 -0
- package/dist/src/common/Banner/Banner.js +52 -0
- package/dist/src/common/Checkbox/Checkbox.d.ts +13 -0
- package/dist/src/common/Checkbox/Checkbox.js +35 -0
- package/dist/src/common/Chip/Chip.d.ts +11 -0
- package/dist/src/common/Chip/Chip.js +24 -0
- package/dist/src/common/Dialog/Dialog.d.ts +10 -0
- package/dist/src/common/Dialog/Dialog.js +18 -0
- package/dist/src/common/DropdownMenu/DropdownMenu.d.ts +33 -0
- package/dist/src/common/DropdownMenu/DropdownMenu.js +50 -0
- package/dist/src/common/InputGroup/InputGroup.d.ts +11 -0
- package/dist/src/common/InputGroup/InputGroup.js +24 -0
- package/dist/src/common/Modal/Modal.d.ts +28 -0
- package/dist/src/common/Modal/Modal.js +59 -0
- package/dist/src/common/Popover/Popover.d.ts +8 -0
- package/dist/src/common/Popover/Popover.js +21 -0
- package/dist/src/common/PopoverDialog/PopoverDialog.d.ts +11 -0
- package/dist/src/common/PopoverDialog/PopoverDialog.js +42 -0
- package/dist/src/common/ProgressBar/ProgressBar.d.ts +20 -0
- package/dist/src/common/ProgressBar/ProgressBar.js +36 -0
- package/dist/src/common/RadioButton/RadioButton.d.ts +11 -0
- package/dist/src/common/RadioButton/RadioButton.js +30 -0
- package/dist/src/common/Select/Select.d.ts +76 -0
- package/dist/src/common/Select/Select.js +118 -0
- package/dist/src/common/Table/Table.d.ts +49 -0
- package/dist/src/common/Table/Table.js +81 -0
- package/dist/src/common/Table/Table.utils.d.ts +19 -0
- package/dist/src/common/Table/Table.utils.js +41 -0
- package/dist/src/common/Typography/Typography.d.ts +11 -0
- package/dist/src/common/Typography/Typography.js +17 -0
- package/dist/src/common/index.d.ts +12 -0
- package/dist/src/common/index.js +13 -0
- package/dist/src/components/Alert/Alert.d.ts +18 -0
- package/dist/src/components/Alert/Alert.js +12 -0
- package/dist/src/components/Avatar/Avatar.d.ts +20 -0
- package/dist/src/components/Avatar/Avatar.js +9 -0
- package/dist/src/components/Badge/Badge.d.ts +36 -0
- package/dist/src/components/Badge/Badge.js +46 -0
- package/dist/src/components/Banner/Banner.d.ts +51 -0
- package/dist/src/components/Banner/Banner.js +45 -0
- package/dist/src/components/Box/Box.d.ts +53 -0
- package/dist/src/components/Box/Box.js +55 -0
- package/dist/src/components/Breadcrumbs/Breadcrumbs.d.ts +36 -0
- package/dist/src/components/Breadcrumbs/Breadcrumbs.js +86 -0
- package/dist/src/components/Button/Button.d.ts +134 -0
- package/dist/src/components/Button/Button.js +104 -0
- package/dist/src/components/Card/Card.d.ts +68 -0
- package/dist/src/components/Card/Card.js +46 -0
- package/dist/src/components/Checkbox/Checkbox.d.ts +10 -0
- package/dist/src/components/Checkbox/Checkbox.js +33 -0
- package/dist/src/components/CheckboxGroup/CheckboxGroup.d.ts +45 -0
- package/dist/src/components/CheckboxGroup/CheckboxGroup.js +60 -0
- package/dist/src/components/Chip/Chip.d.ts +76 -0
- package/dist/src/components/Chip/Chip.js +63 -0
- package/dist/src/components/ChoiceChip/ChoiceChip.d.ts +24 -0
- package/dist/src/components/ChoiceChip/ChoiceChip.js +34 -0
- package/dist/src/components/Combobox/Combobox.d.ts +30 -0
- package/dist/src/components/Combobox/Combobox.js +109 -0
- package/dist/src/components/Context/Context.d.ts +10 -0
- package/dist/src/components/Context/Context.js +18 -0
- package/dist/src/components/ControlLabel/ControlLabel.d.ts +12 -0
- package/dist/src/components/ControlLabel/ControlLabel.js +26 -0
- package/dist/src/components/DataTable/DataTable.d.ts +107 -0
- package/dist/src/components/DataTable/DataTable.js +54 -0
- package/dist/src/components/Dialog/Dialog.d.ts +19 -0
- package/dist/src/components/Dialog/Dialog.js +18 -0
- package/dist/src/components/Divider/Divider.d.ts +27 -0
- package/dist/src/components/Divider/Divider.js +47 -0
- package/dist/src/components/Dropdown/Dropdown.d.ts +28 -0
- package/dist/src/components/Dropdown/Dropdown.js +87 -0
- package/dist/src/components/DropdownMenu/DropdownMenu.d.ts +103 -0
- package/dist/src/components/DropdownMenu/DropdownMenu.js +131 -0
- package/dist/src/components/Element/Element.d.ts +10 -0
- package/dist/src/components/Element/Element.js +18 -0
- package/dist/src/components/EmptyState/EmptyState.d.ts +62 -0
- package/dist/src/components/EmptyState/EmptyState.js +74 -0
- package/dist/src/components/Flexbox/Flexbox.d.ts +20 -0
- package/dist/src/components/Flexbox/Flexbox.js +19 -0
- package/dist/src/components/Flexbox/FlexboxItem.d.ts +17 -0
- package/dist/src/components/Flexbox/FlexboxItem.js +16 -0
- package/dist/src/components/Grid/Grid.d.ts +32 -0
- package/dist/src/components/Grid/Grid.js +31 -0
- package/dist/src/components/Grid/GridItem.d.ts +21 -0
- package/dist/src/components/Grid/GridItem.js +20 -0
- package/dist/src/components/Icon/Icon.d.ts +9 -0
- package/dist/src/components/Icon/Icon.js +26 -0
- package/dist/src/components/Input/Input.d.ts +28 -0
- package/dist/src/components/Input/Input.js +79 -0
- package/dist/src/components/List/List.d.ts +19 -0
- package/dist/src/components/List/List.js +6 -0
- package/dist/src/components/ListItem/ListItem.d.ts +7 -0
- package/dist/src/components/ListItem/ListItem.js +10 -0
- package/dist/src/components/Modal/Modal.d.ts +31 -0
- package/dist/src/components/Modal/Modal.js +57 -0
- package/dist/src/components/MultiInput/InputChip.d.ts +8 -0
- package/dist/src/components/MultiInput/InputChip.js +37 -0
- package/dist/src/components/MultiInput/MultiInput.d.ts +35 -0
- package/dist/src/components/MultiInput/MultiInput.js +150 -0
- package/dist/src/components/MultiSelect/MultiSelect.d.ts +21 -0
- package/dist/src/components/MultiSelect/MultiSelect.js +134 -0
- package/dist/src/components/NativeSelect/NativeSelect.d.ts +19 -0
- package/dist/src/components/NativeSelect/NativeSelect.js +56 -0
- package/dist/src/components/PageHeader/PageHeader.d.ts +34 -0
- package/dist/src/components/PageHeader/PageHeader.js +40 -0
- package/dist/src/components/Pagination/Pagination.d.ts +37 -0
- package/dist/src/components/Pagination/Pagination.js +63 -0
- package/dist/src/components/Popover/Popover.d.ts +34 -0
- package/dist/src/components/Popover/Popover.js +79 -0
- package/dist/src/components/Popover/PopoverContext.d.ts +7 -0
- package/dist/src/components/Popover/PopoverContext.js +10 -0
- package/dist/src/components/Popover/PopoverWrapper.d.ts +15 -0
- package/dist/src/components/Popover/PopoverWrapper.js +36 -0
- package/dist/src/components/PopoverDialog/PopoverDialog.d.ts +12 -0
- package/dist/src/components/PopoverDialog/PopoverDialog.js +28 -0
- package/dist/src/components/Portal/Portal.d.ts +7 -0
- package/dist/src/components/Portal/Portal.js +3 -0
- package/dist/src/components/Positioner/Positioner.d.ts +21 -0
- package/dist/src/components/Positioner/Positioner.js +97 -0
- package/dist/src/components/ProgressBar/ProgressBar.d.ts +45 -0
- package/dist/src/components/ProgressBar/ProgressBar.js +21 -0
- package/dist/src/components/RadioButton/RadioButton.d.ts +10 -0
- package/dist/src/components/RadioButton/RadioButton.js +33 -0
- package/dist/src/components/RadioButtonGroup/RadioButtonGroup.d.ts +55 -0
- package/dist/src/components/RadioButtonGroup/RadioButtonGroup.js +64 -0
- package/dist/src/components/SegmentedControl/SegmentedControl.d.ts +23 -0
- package/dist/src/components/SegmentedControl/SegmentedControl.js +51 -0
- package/dist/src/components/Select/Select.d.ts +55 -0
- package/dist/src/components/Select/Select.js +143 -0
- package/dist/src/components/Skeleton/Skeleton.d.ts +25 -0
- package/dist/src/components/Skeleton/Skeleton.js +15 -0
- package/dist/src/components/Switch/Switch.d.ts +12 -0
- package/dist/src/components/Switch/Switch.js +51 -0
- package/dist/src/components/SwitchGroup/SwitchGroup.d.ts +45 -0
- package/dist/src/components/SwitchGroup/SwitchGroup.js +58 -0
- package/dist/src/components/Table/Table.d.ts +14 -0
- package/dist/src/components/Table/Table.js +31 -0
- package/dist/src/components/Tabs/Tabs.d.ts +91 -0
- package/dist/src/components/Tabs/Tabs.js +184 -0
- package/dist/src/components/TagLabel/TagLabel.d.ts +16 -0
- package/dist/src/components/TagLabel/TagLabel.js +21 -0
- package/dist/src/components/Tailwindify/Tailwindify.d.ts +38 -0
- package/dist/src/components/Tailwindify/Tailwindify.js +71 -0
- package/dist/src/components/Textarea/Textarea.d.ts +15 -0
- package/dist/src/components/Textarea/Textarea.js +44 -0
- package/dist/src/components/Tooltip/Tooltip.d.ts +44 -0
- package/dist/src/components/Tooltip/Tooltip.js +110 -0
- package/dist/src/components/Tooltip/useTooltipTriggerState.d.ts +19 -0
- package/dist/src/components/Tooltip/useTooltipTriggerState.js +142 -0
- package/dist/src/components/Typography/Typography.d.ts +11 -0
- package/dist/src/components/Typography/Typography.js +49 -0
- package/dist/src/components/index.d.ts +65 -0
- package/dist/src/components/index.js +62 -0
- package/dist/src/icons/add.d.ts +9 -0
- package/dist/src/icons/add.js +11 -0
- package/dist/src/icons/addColumnLeft.d.ts +9 -0
- package/dist/src/icons/addColumnLeft.js +11 -0
- package/dist/src/icons/addColumnRight.d.ts +9 -0
- package/dist/src/icons/addColumnRight.js +11 -0
- package/dist/src/icons/addRowBottom.d.ts +9 -0
- package/dist/src/icons/addRowBottom.js +11 -0
- package/dist/src/icons/addRowTop.d.ts +9 -0
- package/dist/src/icons/addRowTop.js +11 -0
- package/dist/src/icons/addToArtifact.d.ts +9 -0
- package/dist/src/icons/addToArtifact.js +11 -0
- package/dist/src/icons/addToFolder.d.ts +9 -0
- package/dist/src/icons/addToFolder.js +11 -0
- package/dist/src/icons/airplane.d.ts +9 -0
- package/dist/src/icons/airplane.js +11 -0
- package/dist/src/icons/alignCenter.d.ts +9 -0
- package/dist/src/icons/alignCenter.js +11 -0
- package/dist/src/icons/alignJustify.d.ts +9 -0
- package/dist/src/icons/alignJustify.js +11 -0
- package/dist/src/icons/alignLeft.d.ts +9 -0
- package/dist/src/icons/alignLeft.js +11 -0
- package/dist/src/icons/alignRight.d.ts +9 -0
- package/dist/src/icons/alignRight.js +11 -0
- package/dist/src/icons/alignmentBottom.d.ts +9 -0
- package/dist/src/icons/alignmentBottom.js +11 -0
- package/dist/src/icons/alignmentHorizontalCenter.d.ts +9 -0
- package/dist/src/icons/alignmentHorizontalCenter.js +11 -0
- package/dist/src/icons/alignmentLeft.d.ts +9 -0
- package/dist/src/icons/alignmentLeft.js +11 -0
- package/dist/src/icons/alignmentRight.d.ts +9 -0
- package/dist/src/icons/alignmentRight.js +11 -0
- package/dist/src/icons/alignmentTop.d.ts +9 -0
- package/dist/src/icons/alignmentTop.js +11 -0
- package/dist/src/icons/alignmentVerticalCenter.d.ts +9 -0
- package/dist/src/icons/alignmentVerticalCenter.js +11 -0
- package/dist/src/icons/annotation.d.ts +9 -0
- package/dist/src/icons/annotation.js +11 -0
- package/dist/src/icons/application.d.ts +9 -0
- package/dist/src/icons/application.js +11 -0
- package/dist/src/icons/applications.d.ts +9 -0
- package/dist/src/icons/applications.js +11 -0
- package/dist/src/icons/archive.d.ts +9 -0
- package/dist/src/icons/archive.js +11 -0
- package/dist/src/icons/arrowBottomLeft.d.ts +9 -0
- package/dist/src/icons/arrowBottomLeft.js +11 -0
- package/dist/src/icons/arrowBottomRight.d.ts +9 -0
- package/dist/src/icons/arrowBottomRight.js +11 -0
- package/dist/src/icons/arrowDown.d.ts +9 -0
- package/dist/src/icons/arrowDown.js +11 -0
- package/dist/src/icons/arrowLeft.d.ts +9 -0
- package/dist/src/icons/arrowLeft.js +11 -0
- package/dist/src/icons/arrowRight.d.ts +9 -0
- package/dist/src/icons/arrowRight.js +11 -0
- package/dist/src/icons/arrowTopLeft.d.ts +9 -0
- package/dist/src/icons/arrowTopLeft.js +11 -0
- package/dist/src/icons/arrowTopRight.d.ts +9 -0
- package/dist/src/icons/arrowTopRight.js +11 -0
- package/dist/src/icons/arrowUp.d.ts +9 -0
- package/dist/src/icons/arrowUp.js +11 -0
- package/dist/src/icons/arrowsHorizontal.d.ts +9 -0
- package/dist/src/icons/arrowsHorizontal.js +11 -0
- package/dist/src/icons/arrowsVertical.d.ts +9 -0
- package/dist/src/icons/arrowsVertical.js +11 -0
- package/dist/src/icons/asterisk.d.ts +9 -0
- package/dist/src/icons/asterisk.js +11 -0
- package/dist/src/icons/automaticUpdates.d.ts +9 -0
- package/dist/src/icons/automaticUpdates.js +11 -0
- package/dist/src/icons/badge.d.ts +9 -0
- package/dist/src/icons/badge.js +11 -0
- package/dist/src/icons/banCircle.d.ts +9 -0
- package/dist/src/icons/banCircle.js +11 -0
- package/dist/src/icons/bankAccount.d.ts +9 -0
- package/dist/src/icons/bankAccount.js +11 -0
- package/dist/src/icons/barcode.d.ts +9 -0
- package/dist/src/icons/barcode.js +11 -0
- package/dist/src/icons/blockedPerson.d.ts +9 -0
- package/dist/src/icons/blockedPerson.js +11 -0
- package/dist/src/icons/bold.d.ts +9 -0
- package/dist/src/icons/bold.js +11 -0
- package/dist/src/icons/book.d.ts +9 -0
- package/dist/src/icons/book.js +11 -0
- package/dist/src/icons/bookmark.d.ts +9 -0
- package/dist/src/icons/bookmark.js +11 -0
- package/dist/src/icons/box.d.ts +9 -0
- package/dist/src/icons/box.js +11 -0
- package/dist/src/icons/briefcase.d.ts +9 -0
- package/dist/src/icons/briefcase.js +11 -0
- package/dist/src/icons/bringData.d.ts +9 -0
- package/dist/src/icons/bringData.js +11 -0
- package/dist/src/icons/build.d.ts +9 -0
- package/dist/src/icons/build.js +11 -0
- package/dist/src/icons/calculator.d.ts +9 -0
- package/dist/src/icons/calculator.js +11 -0
- package/dist/src/icons/calendar.d.ts +9 -0
- package/dist/src/icons/calendar.js +11 -0
- package/dist/src/icons/camera.d.ts +9 -0
- package/dist/src/icons/camera.js +11 -0
- package/dist/src/icons/caretDown.d.ts +9 -0
- package/dist/src/icons/caretDown.js +11 -0
- package/dist/src/icons/caretLeft.d.ts +9 -0
- package/dist/src/icons/caretLeft.js +11 -0
- package/dist/src/icons/caretRight.d.ts +9 -0
- package/dist/src/icons/caretRight.js +11 -0
- package/dist/src/icons/caretUp.d.ts +9 -0
- package/dist/src/icons/caretUp.js +11 -0
- package/dist/src/icons/cellTower.d.ts +9 -0
- package/dist/src/icons/cellTower.js +11 -0
- package/dist/src/icons/changes.d.ts +9 -0
- package/dist/src/icons/changes.js +11 -0
- package/dist/src/icons/chart.d.ts +9 -0
- package/dist/src/icons/chart.js +11 -0
- package/dist/src/icons/chat.d.ts +9 -0
- package/dist/src/icons/chat.js +11 -0
- package/dist/src/icons/chevronBackward.d.ts +9 -0
- package/dist/src/icons/chevronBackward.js +11 -0
- package/dist/src/icons/chevronDown.d.ts +9 -0
- package/dist/src/icons/chevronDown.js +11 -0
- package/dist/src/icons/chevronForward.d.ts +9 -0
- package/dist/src/icons/chevronForward.js +11 -0
- package/dist/src/icons/chevronLeft.d.ts +9 -0
- package/dist/src/icons/chevronLeft.js +11 -0
- package/dist/src/icons/chevronRight.d.ts +9 -0
- package/dist/src/icons/chevronRight.js +11 -0
- package/dist/src/icons/chevronUp.d.ts +9 -0
- package/dist/src/icons/chevronUp.js +11 -0
- package/dist/src/icons/circle.d.ts +9 -0
- package/dist/src/icons/circle.js +11 -0
- package/dist/src/icons/circleArrowDown.d.ts +9 -0
- package/dist/src/icons/circleArrowDown.js +11 -0
- package/dist/src/icons/circleArrowLeft.d.ts +9 -0
- package/dist/src/icons/circleArrowLeft.js +11 -0
- package/dist/src/icons/circleArrowRight.d.ts +9 -0
- package/dist/src/icons/circleArrowRight.js +11 -0
- package/dist/src/icons/circleArrowUp.d.ts +9 -0
- package/dist/src/icons/circleArrowUp.js +11 -0
- package/dist/src/icons/citation.d.ts +9 -0
- package/dist/src/icons/citation.js +11 -0
- package/dist/src/icons/clean.d.ts +9 -0
- package/dist/src/icons/clean.js +11 -0
- package/dist/src/icons/clipboard.d.ts +9 -0
- package/dist/src/icons/clipboard.js +11 -0
- package/dist/src/icons/cloud.d.ts +9 -0
- package/dist/src/icons/cloud.js +11 -0
- package/dist/src/icons/cloudDownload.d.ts +9 -0
- package/dist/src/icons/cloudDownload.js +11 -0
- package/dist/src/icons/cloudUpload.d.ts +9 -0
- package/dist/src/icons/cloudUpload.js +11 -0
- package/dist/src/icons/code.d.ts +9 -0
- package/dist/src/icons/code.js +11 -0
- package/dist/src/icons/codeBlock.d.ts +9 -0
- package/dist/src/icons/codeBlock.js +11 -0
- package/dist/src/icons/cog.d.ts +9 -0
- package/dist/src/icons/cog.js +11 -0
- package/dist/src/icons/collapseAll.d.ts +9 -0
- package/dist/src/icons/collapseAll.js +11 -0
- package/dist/src/icons/columnLayout.d.ts +9 -0
- package/dist/src/icons/columnLayout.js +11 -0
- package/dist/src/icons/comment.d.ts +9 -0
- package/dist/src/icons/comment.js +11 -0
- package/dist/src/icons/comparison.d.ts +9 -0
- package/dist/src/icons/comparison.js +11 -0
- package/dist/src/icons/compass.d.ts +9 -0
- package/dist/src/icons/compass.js +11 -0
- package/dist/src/icons/compressed.d.ts +9 -0
- package/dist/src/icons/compressed.js +11 -0
- package/dist/src/icons/confirm.d.ts +9 -0
- package/dist/src/icons/confirm.js +11 -0
- package/dist/src/icons/console.d.ts +9 -0
- package/dist/src/icons/console.js +11 -0
- package/dist/src/icons/contrast.d.ts +9 -0
- package/dist/src/icons/contrast.js +11 -0
- package/dist/src/icons/control.d.ts +9 -0
- package/dist/src/icons/control.js +11 -0
- package/dist/src/icons/creditCard.d.ts +9 -0
- package/dist/src/icons/creditCard.js +11 -0
- package/dist/src/icons/cross.d.ts +9 -0
- package/dist/src/icons/cross.js +11 -0
- package/dist/src/icons/crown.d.ts +9 -0
- package/dist/src/icons/crown.js +11 -0
- package/dist/src/icons/cube.d.ts +9 -0
- package/dist/src/icons/cube.js +11 -0
- package/dist/src/icons/cubeAdd.d.ts +9 -0
- package/dist/src/icons/cubeAdd.js +11 -0
- package/dist/src/icons/cubeRemove.d.ts +9 -0
- package/dist/src/icons/cubeRemove.js +11 -0
- package/dist/src/icons/curvedRangeChart.d.ts +9 -0
- package/dist/src/icons/curvedRangeChart.js +11 -0
- package/dist/src/icons/cut.d.ts +9 -0
- package/dist/src/icons/cut.js +11 -0
- package/dist/src/icons/dashboard.d.ts +9 -0
- package/dist/src/icons/dashboard.js +11 -0
- package/dist/src/icons/dataLineage.d.ts +9 -0
- package/dist/src/icons/dataLineage.js +11 -0
- package/dist/src/icons/database.d.ts +9 -0
- package/dist/src/icons/database.js +11 -0
- package/dist/src/icons/delete.d.ts +9 -0
- package/dist/src/icons/delete.js +11 -0
- package/dist/src/icons/delta.d.ts +9 -0
- package/dist/src/icons/delta.js +11 -0
- package/dist/src/icons/deriveColumn.d.ts +9 -0
- package/dist/src/icons/deriveColumn.js +11 -0
- package/dist/src/icons/desktop.d.ts +9 -0
- package/dist/src/icons/desktop.js +11 -0
- package/dist/src/icons/diagnosis.d.ts +9 -0
- package/dist/src/icons/diagnosis.js +11 -0
- package/dist/src/icons/diagramTree.d.ts +9 -0
- package/dist/src/icons/diagramTree.js +11 -0
- package/dist/src/icons/directionLeft.d.ts +9 -0
- package/dist/src/icons/directionLeft.js +11 -0
- package/dist/src/icons/directionRight.d.ts +9 -0
- package/dist/src/icons/directionRight.js +11 -0
- package/dist/src/icons/disable.d.ts +9 -0
- package/dist/src/icons/disable.js +11 -0
- package/dist/src/icons/document.d.ts +9 -0
- package/dist/src/icons/document.js +11 -0
- package/dist/src/icons/documentOpen.d.ts +9 -0
- package/dist/src/icons/documentOpen.js +11 -0
- package/dist/src/icons/documentShare.d.ts +9 -0
- package/dist/src/icons/documentShare.js +11 -0
- package/dist/src/icons/dollar.d.ts +9 -0
- package/dist/src/icons/dollar.js +11 -0
- package/dist/src/icons/dot.d.ts +9 -0
- package/dist/src/icons/dot.js +11 -0
- package/dist/src/icons/doubleCaretHorizontal.d.ts +9 -0
- package/dist/src/icons/doubleCaretHorizontal.js +11 -0
- package/dist/src/icons/doubleCaretVertical.d.ts +9 -0
- package/dist/src/icons/doubleCaretVertical.js +11 -0
- package/dist/src/icons/doubleChevronDown.d.ts +9 -0
- package/dist/src/icons/doubleChevronDown.js +11 -0
- package/dist/src/icons/doubleChevronLeft.d.ts +9 -0
- package/dist/src/icons/doubleChevronLeft.js +11 -0
- package/dist/src/icons/doubleChevronRight.d.ts +9 -0
- package/dist/src/icons/doubleChevronRight.js +11 -0
- package/dist/src/icons/doubleChevronUp.d.ts +9 -0
- package/dist/src/icons/doubleChevronUp.js +11 -0
- package/dist/src/icons/doughnutChart.d.ts +9 -0
- package/dist/src/icons/doughnutChart.js +11 -0
- package/dist/src/icons/download.d.ts +9 -0
- package/dist/src/icons/download.js +11 -0
- package/dist/src/icons/dragHandleHorizontal.d.ts +9 -0
- package/dist/src/icons/dragHandleHorizontal.js +11 -0
- package/dist/src/icons/dragHandleVertical.d.ts +9 -0
- package/dist/src/icons/dragHandleVertical.js +11 -0
- package/dist/src/icons/draw.d.ts +9 -0
- package/dist/src/icons/draw.js +11 -0
- package/dist/src/icons/driveTime.d.ts +9 -0
- package/dist/src/icons/driveTime.js +11 -0
- package/dist/src/icons/duplicate.d.ts +9 -0
- package/dist/src/icons/duplicate.js +11 -0
- package/dist/src/icons/edit.d.ts +9 -0
- package/dist/src/icons/edit.js +11 -0
- package/dist/src/icons/eject.d.ts +9 -0
- package/dist/src/icons/eject.js +11 -0
- package/dist/src/icons/endorsed.d.ts +9 -0
- package/dist/src/icons/endorsed.js +11 -0
- package/dist/src/icons/envelope.d.ts +9 -0
- package/dist/src/icons/envelope.js +11 -0
- package/dist/src/icons/equals.d.ts +9 -0
- package/dist/src/icons/equals.js +11 -0
- package/dist/src/icons/eraser.d.ts +9 -0
- package/dist/src/icons/eraser.js +11 -0
- package/dist/src/icons/error.d.ts +9 -0
- package/dist/src/icons/error.js +11 -0
- package/dist/src/icons/euro.d.ts +9 -0
- package/dist/src/icons/euro.js +11 -0
- package/dist/src/icons/exchange.d.ts +9 -0
- package/dist/src/icons/exchange.js +11 -0
- package/dist/src/icons/excludeRow.d.ts +9 -0
- package/dist/src/icons/excludeRow.js +11 -0
- package/dist/src/icons/expandAll.d.ts +9 -0
- package/dist/src/icons/expandAll.js +11 -0
- package/dist/src/icons/export.d.ts +9 -0
- package/dist/src/icons/export.js +11 -0
- package/dist/src/icons/eyeOff.d.ts +9 -0
- package/dist/src/icons/eyeOff.js +11 -0
- package/dist/src/icons/eyeOn.d.ts +9 -0
- package/dist/src/icons/eyeOn.js +11 -0
- package/dist/src/icons/eyeOpen.d.ts +9 -0
- package/dist/src/icons/eyeOpen.js +11 -0
- package/dist/src/icons/fastBackward.d.ts +9 -0
- package/dist/src/icons/fastBackward.js +11 -0
- package/dist/src/icons/fastForward.d.ts +9 -0
- package/dist/src/icons/fastForward.js +11 -0
- package/dist/src/icons/feed.d.ts +9 -0
- package/dist/src/icons/feed.js +11 -0
- package/dist/src/icons/feedSubscribed.d.ts +9 -0
- package/dist/src/icons/feedSubscribed.js +11 -0
- package/dist/src/icons/film.d.ts +9 -0
- package/dist/src/icons/film.js +11 -0
- package/dist/src/icons/filter.d.ts +9 -0
- package/dist/src/icons/filter.js +11 -0
- package/dist/src/icons/filterKeep.d.ts +9 -0
- package/dist/src/icons/filterKeep.js +11 -0
- package/dist/src/icons/filterList.d.ts +9 -0
- package/dist/src/icons/filterList.js +11 -0
- package/dist/src/icons/filterOpen.d.ts +9 -0
- package/dist/src/icons/filterOpen.js +11 -0
- package/dist/src/icons/filterRemove.d.ts +9 -0
- package/dist/src/icons/filterRemove.js +11 -0
- package/dist/src/icons/flag.d.ts +9 -0
- package/dist/src/icons/flag.js +11 -0
- package/dist/src/icons/flame.d.ts +9 -0
- package/dist/src/icons/flame.js +11 -0
- package/dist/src/icons/flash.d.ts +9 -0
- package/dist/src/icons/flash.js +11 -0
- package/dist/src/icons/floppyDisk.d.ts +9 -0
- package/dist/src/icons/floppyDisk.js +11 -0
- package/dist/src/icons/flowBranch.d.ts +9 -0
- package/dist/src/icons/flowBranch.js +11 -0
- package/dist/src/icons/flowEnd.d.ts +9 -0
- package/dist/src/icons/flowEnd.js +11 -0
- package/dist/src/icons/flowLinear.d.ts +9 -0
- package/dist/src/icons/flowLinear.js +11 -0
- package/dist/src/icons/flowReview.d.ts +9 -0
- package/dist/src/icons/flowReview.js +11 -0
- package/dist/src/icons/flowReviewBranch.d.ts +9 -0
- package/dist/src/icons/flowReviewBranch.js +11 -0
- package/dist/src/icons/flows.d.ts +9 -0
- package/dist/src/icons/flows.js +11 -0
- package/dist/src/icons/folderClose.d.ts +9 -0
- package/dist/src/icons/folderClose.js +11 -0
- package/dist/src/icons/folderNew.d.ts +9 -0
- package/dist/src/icons/folderNew.js +11 -0
- package/dist/src/icons/folderOpen.d.ts +9 -0
- package/dist/src/icons/folderOpen.js +11 -0
- package/dist/src/icons/folderShared.d.ts +9 -0
- package/dist/src/icons/folderShared.js +11 -0
- package/dist/src/icons/folderSharedOpen.d.ts +9 -0
- package/dist/src/icons/folderSharedOpen.js +11 -0
- package/dist/src/icons/follower.d.ts +9 -0
- package/dist/src/icons/follower.js +11 -0
- package/dist/src/icons/following.d.ts +9 -0
- package/dist/src/icons/following.js +11 -0
- package/dist/src/icons/font.d.ts +9 -0
- package/dist/src/icons/font.js +11 -0
- package/dist/src/icons/fork.d.ts +9 -0
- package/dist/src/icons/fork.js +11 -0
- package/dist/src/icons/form.d.ts +9 -0
- package/dist/src/icons/form.js +11 -0
- package/dist/src/icons/fullCircle.d.ts +9 -0
- package/dist/src/icons/fullCircle.js +11 -0
- package/dist/src/icons/fullStackedChart.d.ts +9 -0
- package/dist/src/icons/fullStackedChart.js +11 -0
- package/dist/src/icons/fullscreen.d.ts +9 -0
- package/dist/src/icons/fullscreen.js +11 -0
- package/dist/src/icons/function.d.ts +9 -0
- package/dist/src/icons/function.js +11 -0
- package/dist/src/icons/ganttChart.d.ts +9 -0
- package/dist/src/icons/ganttChart.js +11 -0
- package/dist/src/icons/geolocation.d.ts +9 -0
- package/dist/src/icons/geolocation.js +11 -0
- package/dist/src/icons/geosearch.d.ts +9 -0
- package/dist/src/icons/geosearch.js +11 -0
- package/dist/src/icons/gitBranch.d.ts +9 -0
- package/dist/src/icons/gitBranch.js +11 -0
- package/dist/src/icons/gitCommit.d.ts +9 -0
- package/dist/src/icons/gitCommit.js +11 -0
- package/dist/src/icons/gitMerge.d.ts +9 -0
- package/dist/src/icons/gitMerge.js +11 -0
- package/dist/src/icons/gitNewBranch.d.ts +9 -0
- package/dist/src/icons/gitNewBranch.js +11 -0
- package/dist/src/icons/gitPull.d.ts +9 -0
- package/dist/src/icons/gitPull.js +11 -0
- package/dist/src/icons/gitPush.d.ts +9 -0
- package/dist/src/icons/gitPush.js +11 -0
- package/dist/src/icons/gitRepo.d.ts +9 -0
- package/dist/src/icons/gitRepo.js +11 -0
- package/dist/src/icons/glass.d.ts +9 -0
- package/dist/src/icons/glass.js +11 -0
- package/dist/src/icons/globe.d.ts +9 -0
- package/dist/src/icons/globe.js +11 -0
- package/dist/src/icons/globeNetwork.d.ts +9 -0
- package/dist/src/icons/globeNetwork.js +11 -0
- package/dist/src/icons/graph.d.ts +9 -0
- package/dist/src/icons/graph.js +11 -0
- package/dist/src/icons/graphRemove.d.ts +9 -0
- package/dist/src/icons/graphRemove.js +11 -0
- package/dist/src/icons/greaterThan.d.ts +9 -0
- package/dist/src/icons/greaterThan.js +11 -0
- package/dist/src/icons/greaterThanOrEqualTo.d.ts +9 -0
- package/dist/src/icons/greaterThanOrEqualTo.js +11 -0
- package/dist/src/icons/grid.d.ts +9 -0
- package/dist/src/icons/grid.js +11 -0
- package/dist/src/icons/gridView.d.ts +9 -0
- package/dist/src/icons/gridView.js +11 -0
- package/dist/src/icons/groupObjects.d.ts +9 -0
- package/dist/src/icons/groupObjects.js +11 -0
- package/dist/src/icons/groupedBarChart.d.ts +9 -0
- package/dist/src/icons/groupedBarChart.js +11 -0
- package/dist/src/icons/hand.d.ts +9 -0
- package/dist/src/icons/hand.js +11 -0
- package/dist/src/icons/handDown.d.ts +9 -0
- package/dist/src/icons/handDown.js +11 -0
- package/dist/src/icons/handLeft.d.ts +9 -0
- package/dist/src/icons/handLeft.js +11 -0
- package/dist/src/icons/handRight.d.ts +9 -0
- package/dist/src/icons/handRight.js +11 -0
- package/dist/src/icons/handUp.d.ts +9 -0
- package/dist/src/icons/handUp.js +11 -0
- package/dist/src/icons/header.d.ts +9 -0
- package/dist/src/icons/header.js +11 -0
- package/dist/src/icons/headerOne.d.ts +9 -0
- package/dist/src/icons/headerOne.js +11 -0
- package/dist/src/icons/headerTwo.d.ts +9 -0
- package/dist/src/icons/headerTwo.js +11 -0
- package/dist/src/icons/headset.d.ts +9 -0
- package/dist/src/icons/headset.js +11 -0
- package/dist/src/icons/heart.d.ts +9 -0
- package/dist/src/icons/heart.js +11 -0
- package/dist/src/icons/heartBroken.d.ts +9 -0
- package/dist/src/icons/heartBroken.js +11 -0
- package/dist/src/icons/heatGrid.d.ts +9 -0
- package/dist/src/icons/heatGrid.js +11 -0
- package/dist/src/icons/heatmap.d.ts +9 -0
- package/dist/src/icons/heatmap.js +11 -0
- package/dist/src/icons/help.d.ts +9 -0
- package/dist/src/icons/help.js +11 -0
- package/dist/src/icons/helperManagement.d.ts +9 -0
- package/dist/src/icons/helperManagement.js +11 -0
- package/dist/src/icons/highlight.d.ts +9 -0
- package/dist/src/icons/highlight.js +11 -0
- package/dist/src/icons/history.d.ts +9 -0
- package/dist/src/icons/history.js +11 -0
- package/dist/src/icons/home.d.ts +9 -0
- package/dist/src/icons/home.js +11 -0
- package/dist/src/icons/horizontalBarChart.d.ts +9 -0
- package/dist/src/icons/horizontalBarChart.js +11 -0
- package/dist/src/icons/horizontalBarChartAsc.d.ts +9 -0
- package/dist/src/icons/horizontalBarChartAsc.js +11 -0
- package/dist/src/icons/horizontalBarChartDesc.d.ts +9 -0
- package/dist/src/icons/horizontalBarChartDesc.js +11 -0
- package/dist/src/icons/horizontalDistribution.d.ts +9 -0
- package/dist/src/icons/horizontalDistribution.js +11 -0
- package/dist/src/icons/idNumber.d.ts +9 -0
- package/dist/src/icons/idNumber.js +11 -0
- package/dist/src/icons/imageRotateLeft.d.ts +9 -0
- package/dist/src/icons/imageRotateLeft.js +11 -0
- package/dist/src/icons/imageRotateRight.d.ts +9 -0
- package/dist/src/icons/imageRotateRight.js +11 -0
- package/dist/src/icons/import.d.ts +9 -0
- package/dist/src/icons/import.js +11 -0
- package/dist/src/icons/inbox.d.ts +9 -0
- package/dist/src/icons/inbox.js +11 -0
- package/dist/src/icons/inboxFiltered.d.ts +9 -0
- package/dist/src/icons/inboxFiltered.js +11 -0
- package/dist/src/icons/inboxGeo.d.ts +9 -0
- package/dist/src/icons/inboxGeo.js +11 -0
- package/dist/src/icons/inboxSearch.d.ts +9 -0
- package/dist/src/icons/inboxSearch.js +11 -0
- package/dist/src/icons/inboxUpdate.d.ts +9 -0
- package/dist/src/icons/inboxUpdate.js +11 -0
- package/dist/src/icons/index.d.ts +490 -0
- package/dist/src/icons/index.js +490 -0
- package/dist/src/icons/infoSign.d.ts +9 -0
- package/dist/src/icons/infoSign.js +11 -0
- package/dist/src/icons/inheritance.d.ts +9 -0
- package/dist/src/icons/inheritance.js +11 -0
- package/dist/src/icons/innerJoin.d.ts +9 -0
- package/dist/src/icons/innerJoin.js +11 -0
- package/dist/src/icons/insert.d.ts +9 -0
- package/dist/src/icons/insert.js +11 -0
- package/dist/src/icons/intersection.d.ts +9 -0
- package/dist/src/icons/intersection.js +11 -0
- package/dist/src/icons/ipAddress.d.ts +9 -0
- package/dist/src/icons/ipAddress.js +11 -0
- package/dist/src/icons/issue.d.ts +9 -0
- package/dist/src/icons/issue.js +11 -0
- package/dist/src/icons/issueClosed.d.ts +9 -0
- package/dist/src/icons/issueClosed.js +11 -0
- package/dist/src/icons/issueNew.d.ts +9 -0
- package/dist/src/icons/issueNew.js +11 -0
- package/dist/src/icons/italic.d.ts +9 -0
- package/dist/src/icons/italic.js +11 -0
- package/dist/src/icons/joinTable.d.ts +9 -0
- package/dist/src/icons/joinTable.js +11 -0
- package/dist/src/icons/key.d.ts +9 -0
- package/dist/src/icons/key.js +11 -0
- package/dist/src/icons/keyBackspace.d.ts +9 -0
- package/dist/src/icons/keyBackspace.js +11 -0
- package/dist/src/icons/keyCommand.d.ts +9 -0
- package/dist/src/icons/keyCommand.js +11 -0
- package/dist/src/icons/keyControl.d.ts +9 -0
- package/dist/src/icons/keyControl.js +11 -0
- package/dist/src/icons/keyDelete.d.ts +9 -0
- package/dist/src/icons/keyDelete.js +11 -0
- package/dist/src/icons/keyEnter.d.ts +9 -0
- package/dist/src/icons/keyEnter.js +11 -0
- package/dist/src/icons/keyEscape.d.ts +9 -0
- package/dist/src/icons/keyEscape.js +11 -0
- package/dist/src/icons/keyOption.d.ts +9 -0
- package/dist/src/icons/keyOption.js +11 -0
- package/dist/src/icons/keyShift.d.ts +9 -0
- package/dist/src/icons/keyShift.js +11 -0
- package/dist/src/icons/keyTab.d.ts +9 -0
- package/dist/src/icons/keyTab.js +11 -0
- package/dist/src/icons/knownVehicle.d.ts +9 -0
- package/dist/src/icons/knownVehicle.js +11 -0
- package/dist/src/icons/labTest.d.ts +9 -0
- package/dist/src/icons/labTest.js +11 -0
- package/dist/src/icons/label.d.ts +9 -0
- package/dist/src/icons/label.js +11 -0
- package/dist/src/icons/layer.d.ts +9 -0
- package/dist/src/icons/layer.js +11 -0
- package/dist/src/icons/layers.d.ts +9 -0
- package/dist/src/icons/layers.js +11 -0
- package/dist/src/icons/layout.d.ts +9 -0
- package/dist/src/icons/layout.js +11 -0
- package/dist/src/icons/layoutAuto.d.ts +9 -0
- package/dist/src/icons/layoutAuto.js +11 -0
- package/dist/src/icons/layoutBalloon.d.ts +9 -0
- package/dist/src/icons/layoutBalloon.js +11 -0
- package/dist/src/icons/layoutCircle.d.ts +9 -0
- package/dist/src/icons/layoutCircle.js +11 -0
- package/dist/src/icons/layoutGrid.d.ts +9 -0
- package/dist/src/icons/layoutGrid.js +11 -0
- package/dist/src/icons/layoutGroupBy.d.ts +9 -0
- package/dist/src/icons/layoutGroupBy.js +11 -0
- package/dist/src/icons/layoutHierarchy.d.ts +9 -0
- package/dist/src/icons/layoutHierarchy.js +11 -0
- package/dist/src/icons/layoutLinear.d.ts +9 -0
- package/dist/src/icons/layoutLinear.js +11 -0
- package/dist/src/icons/layoutSkewGrid.d.ts +9 -0
- package/dist/src/icons/layoutSkewGrid.js +11 -0
- package/dist/src/icons/layoutSortedClusters.d.ts +9 -0
- package/dist/src/icons/layoutSortedClusters.js +11 -0
- package/dist/src/icons/learning.d.ts +9 -0
- package/dist/src/icons/learning.js +11 -0
- package/dist/src/icons/leftJoin.d.ts +9 -0
- package/dist/src/icons/leftJoin.js +11 -0
- package/dist/src/icons/lessThan.d.ts +9 -0
- package/dist/src/icons/lessThan.js +11 -0
- package/dist/src/icons/lessThanOrEqualTo.d.ts +9 -0
- package/dist/src/icons/lessThanOrEqualTo.js +11 -0
- package/dist/src/icons/lifesaver.d.ts +9 -0
- package/dist/src/icons/lifesaver.js +11 -0
- package/dist/src/icons/lightbulb.d.ts +9 -0
- package/dist/src/icons/lightbulb.js +11 -0
- package/dist/src/icons/link.d.ts +9 -0
- package/dist/src/icons/link.js +11 -0
- package/dist/src/icons/list.d.ts +9 -0
- package/dist/src/icons/list.js +11 -0
- package/dist/src/icons/listColumns.d.ts +9 -0
- package/dist/src/icons/listColumns.js +11 -0
- package/dist/src/icons/listDetailView.d.ts +9 -0
- package/dist/src/icons/listDetailView.js +11 -0
- package/dist/src/icons/loading.d.ts +9 -0
- package/dist/src/icons/loading.js +11 -0
- package/dist/src/icons/locate.d.ts +9 -0
- package/dist/src/icons/locate.js +11 -0
- package/dist/src/icons/lock.d.ts +9 -0
- package/dist/src/icons/lock.js +11 -0
- package/dist/src/icons/logIn.d.ts +9 -0
- package/dist/src/icons/logIn.js +11 -0
- package/dist/src/icons/logOut.d.ts +9 -0
- package/dist/src/icons/logOut.js +11 -0
- package/dist/src/icons/manual.d.ts +9 -0
- package/dist/src/icons/manual.js +11 -0
- package/dist/src/icons/manuallyEnteredData.d.ts +9 -0
- package/dist/src/icons/manuallyEnteredData.js +11 -0
- package/dist/src/icons/map.d.ts +9 -0
- package/dist/src/icons/map.js +11 -0
- package/dist/src/icons/mapCreate.d.ts +9 -0
- package/dist/src/icons/mapCreate.js +11 -0
- package/dist/src/icons/mapMarker.d.ts +9 -0
- package/dist/src/icons/mapMarker.js +11 -0
- package/dist/src/icons/maximize.d.ts +9 -0
- package/dist/src/icons/maximize.js +11 -0
- package/dist/src/icons/media.d.ts +9 -0
- package/dist/src/icons/media.js +11 -0
- package/dist/src/icons/menu.d.ts +9 -0
- package/dist/src/icons/menu.js +11 -0
- package/dist/src/icons/menuClosed.d.ts +9 -0
- package/dist/src/icons/menuClosed.js +11 -0
- package/dist/src/icons/menuOpen.d.ts +9 -0
- package/dist/src/icons/menuOpen.js +11 -0
- package/dist/src/icons/mergeColumns.d.ts +9 -0
- package/dist/src/icons/mergeColumns.js +11 -0
- package/dist/src/icons/mergeLinks.d.ts +9 -0
- package/dist/src/icons/mergeLinks.js +11 -0
- package/dist/src/icons/minimize.d.ts +9 -0
- package/dist/src/icons/minimize.js +11 -0
- package/dist/src/icons/minus.d.ts +9 -0
- package/dist/src/icons/minus.js +11 -0
- package/dist/src/icons/mobilePhone.d.ts +9 -0
- package/dist/src/icons/mobilePhone.js +11 -0
- package/dist/src/icons/mobileVideo.d.ts +9 -0
- package/dist/src/icons/mobileVideo.js +11 -0
- package/dist/src/icons/moon.d.ts +9 -0
- package/dist/src/icons/moon.js +11 -0
- package/dist/src/icons/more.d.ts +9 -0
- package/dist/src/icons/more.js +11 -0
- package/dist/src/icons/mountain.d.ts +9 -0
- package/dist/src/icons/mountain.js +11 -0
- package/dist/src/icons/move.d.ts +9 -0
- package/dist/src/icons/move.js +11 -0
- package/dist/src/icons/moveProject.d.ts +9 -0
- package/dist/src/icons/moveProject.js +11 -0
- package/dist/src/icons/mugshot.d.ts +9 -0
- package/dist/src/icons/mugshot.js +11 -0
- package/dist/src/icons/multiSelect.d.ts +9 -0
- package/dist/src/icons/multiSelect.js +11 -0
- package/dist/src/icons/music.d.ts +9 -0
- package/dist/src/icons/music.js +11 -0
- package/dist/src/icons/newDrawing.d.ts +9 -0
- package/dist/src/icons/newDrawing.js +11 -0
- package/dist/src/icons/newGridItem.d.ts +9 -0
- package/dist/src/icons/newGridItem.js +11 -0
- package/dist/src/icons/newLayer.d.ts +9 -0
- package/dist/src/icons/newLayer.js +11 -0
- package/dist/src/icons/newLayers.d.ts +9 -0
- package/dist/src/icons/newLayers.js +11 -0
- package/dist/src/icons/newLink.d.ts +9 -0
- package/dist/src/icons/newLink.js +11 -0
- package/dist/src/icons/newObject.d.ts +9 -0
- package/dist/src/icons/newObject.js +11 -0
- package/dist/src/icons/newPerson.d.ts +9 -0
- package/dist/src/icons/newPerson.js +11 -0
- package/dist/src/icons/newPrescription.d.ts +9 -0
- package/dist/src/icons/newPrescription.js +11 -0
- package/dist/src/icons/newTextBox.d.ts +9 -0
- package/dist/src/icons/newTextBox.js +11 -0
- package/dist/src/icons/ninja.d.ts +9 -0
- package/dist/src/icons/ninja.js +11 -0
- package/dist/src/icons/notEqualTo.d.ts +9 -0
- package/dist/src/icons/notEqualTo.js +11 -0
- package/dist/src/icons/notifications.d.ts +9 -0
- package/dist/src/icons/notifications.js +11 -0
- package/dist/src/icons/notificationsUpdated.d.ts +9 -0
- package/dist/src/icons/notificationsUpdated.js +11 -0
- package/dist/src/icons/numberedList.d.ts +9 -0
- package/dist/src/icons/numberedList.js +11 -0
- package/dist/src/icons/numerical.d.ts +9 -0
- package/dist/src/icons/numerical.js +11 -0
- package/dist/src/icons/office.d.ts +9 -0
- package/dist/src/icons/office.js +11 -0
- package/dist/src/icons/offline.d.ts +9 -0
- package/dist/src/icons/offline.js +11 -0
- package/dist/src/icons/oilField.d.ts +9 -0
- package/dist/src/icons/oilField.js +11 -0
- package/dist/src/icons/oneColumn.d.ts +9 -0
- package/dist/src/icons/oneColumn.js +11 -0
- package/dist/src/icons/outdated.d.ts +9 -0
- package/dist/src/icons/outdated.js +11 -0
- package/dist/src/icons/pageLayout.d.ts +9 -0
- package/dist/src/icons/pageLayout.js +11 -0
- package/dist/src/icons/panelStats.d.ts +9 -0
- package/dist/src/icons/panelStats.js +11 -0
- package/dist/src/icons/panelTable.d.ts +9 -0
- package/dist/src/icons/panelTable.js +11 -0
- package/dist/src/icons/paperclip.d.ts +9 -0
- package/dist/src/icons/paperclip.js +11 -0
- package/dist/src/icons/paragraph.d.ts +9 -0
- package/dist/src/icons/paragraph.js +11 -0
- package/dist/src/icons/path.d.ts +9 -0
- package/dist/src/icons/path.js +11 -0
- package/dist/src/icons/pathSearch.d.ts +9 -0
- package/dist/src/icons/pathSearch.js +11 -0
- package/dist/src/icons/pause.d.ts +9 -0
- package/dist/src/icons/pause.js +11 -0
- package/dist/src/icons/people.d.ts +9 -0
- package/dist/src/icons/people.js +11 -0
- package/dist/src/icons/percentage.d.ts +9 -0
- package/dist/src/icons/percentage.js +11 -0
- package/dist/src/icons/person.d.ts +9 -0
- package/dist/src/icons/person.js +11 -0
- package/dist/src/icons/phone.d.ts +9 -0
- package/dist/src/icons/phone.js +11 -0
- package/dist/src/icons/pieChart.d.ts +9 -0
- package/dist/src/icons/pieChart.js +11 -0
- package/dist/src/icons/pin.d.ts +9 -0
- package/dist/src/icons/pin.js +11 -0
- package/dist/src/icons/pivot.d.ts +9 -0
- package/dist/src/icons/pivot.js +11 -0
- package/dist/src/icons/pivotTable.d.ts +9 -0
- package/dist/src/icons/pivotTable.js +11 -0
- package/dist/src/icons/play.d.ts +9 -0
- package/dist/src/icons/play.js +11 -0
- package/dist/src/icons/plus.d.ts +9 -0
- package/dist/src/icons/plus.js +11 -0
- package/dist/src/icons/polygonFilter.d.ts +9 -0
- package/dist/src/icons/polygonFilter.js +11 -0
- package/dist/src/icons/power.d.ts +9 -0
- package/dist/src/icons/power.js +11 -0
- package/dist/src/icons/predictiveAnalysis.d.ts +9 -0
- package/dist/src/icons/predictiveAnalysis.js +11 -0
- package/dist/src/icons/prescription.d.ts +9 -0
- package/dist/src/icons/prescription.js +11 -0
- package/dist/src/icons/presentation.d.ts +9 -0
- package/dist/src/icons/presentation.js +11 -0
- package/dist/src/icons/print.d.ts +9 -0
- package/dist/src/icons/print.js +11 -0
- package/dist/src/icons/projects.d.ts +9 -0
- package/dist/src/icons/projects.js +11 -0
- package/dist/src/icons/properties.d.ts +9 -0
- package/dist/src/icons/properties.js +11 -0
- package/dist/src/icons/property.d.ts +9 -0
- package/dist/src/icons/property.js +11 -0
- package/dist/src/icons/publishFunction.d.ts +9 -0
- package/dist/src/icons/publishFunction.js +11 -0
- package/dist/src/icons/pulse.d.ts +9 -0
- package/dist/src/icons/pulse.js +11 -0
- package/dist/src/icons/questionMark.d.ts +9 -0
- package/dist/src/icons/questionMark.js +11 -0
- package/dist/src/icons/random.d.ts +9 -0
- package/dist/src/icons/random.js +11 -0
- package/dist/src/icons/record.d.ts +9 -0
- package/dist/src/icons/record.js +11 -0
- package/dist/src/icons/redo.d.ts +9 -0
- package/dist/src/icons/redo.js +11 -0
- package/dist/src/icons/refresh.d.ts +9 -0
- package/dist/src/icons/refresh.js +11 -0
- package/dist/src/icons/regressionChart.d.ts +9 -0
- package/dist/src/icons/regressionChart.js +11 -0
- package/dist/src/icons/remove.d.ts +9 -0
- package/dist/src/icons/remove.js +11 -0
- package/dist/src/icons/removeColumn.d.ts +9 -0
- package/dist/src/icons/removeColumn.js +11 -0
- package/dist/src/icons/removeColumnLeft.d.ts +9 -0
- package/dist/src/icons/removeColumnLeft.js +11 -0
- package/dist/src/icons/removeColumnRight.d.ts +9 -0
- package/dist/src/icons/removeColumnRight.js +11 -0
- package/dist/src/icons/removeRowBottom.d.ts +9 -0
- package/dist/src/icons/removeRowBottom.js +11 -0
- package/dist/src/icons/removeRowTop.d.ts +9 -0
- package/dist/src/icons/removeRowTop.js +11 -0
- package/dist/src/icons/repeat.d.ts +9 -0
- package/dist/src/icons/repeat.js +11 -0
- package/dist/src/icons/reset.d.ts +9 -0
- package/dist/src/icons/reset.js +11 -0
- package/dist/src/icons/resolve.d.ts +9 -0
- package/dist/src/icons/resolve.js +11 -0
- package/dist/src/icons/rig.d.ts +9 -0
- package/dist/src/icons/rig.js +11 -0
- package/dist/src/icons/rightJoin.d.ts +9 -0
- package/dist/src/icons/rightJoin.js +11 -0
- package/dist/src/icons/ring.d.ts +9 -0
- package/dist/src/icons/ring.js +11 -0
- package/dist/src/icons/rotateDocument.d.ts +9 -0
- package/dist/src/icons/rotateDocument.js +11 -0
- package/dist/src/icons/rotatePage.d.ts +9 -0
- package/dist/src/icons/rotatePage.js +11 -0
- package/dist/src/icons/satellite.d.ts +9 -0
- package/dist/src/icons/satellite.js +11 -0
- package/dist/src/icons/saved.d.ts +9 -0
- package/dist/src/icons/saved.js +11 -0
- package/dist/src/icons/scatterPlot.d.ts +9 -0
- package/dist/src/icons/scatterPlot.js +11 -0
- package/dist/src/icons/search.d.ts +9 -0
- package/dist/src/icons/search.js +11 -0
- package/dist/src/icons/searchAround.d.ts +9 -0
- package/dist/src/icons/searchAround.js +11 -0
- package/dist/src/icons/searchTemplate.d.ts +9 -0
- package/dist/src/icons/searchTemplate.js +11 -0
- package/dist/src/icons/searchText.d.ts +9 -0
- package/dist/src/icons/searchText.js +11 -0
- package/dist/src/icons/segmentedControl.d.ts +9 -0
- package/dist/src/icons/segmentedControl.js +11 -0
- package/dist/src/icons/select.d.ts +9 -0
- package/dist/src/icons/select.js +11 -0
- package/dist/src/icons/selection.d.ts +9 -0
- package/dist/src/icons/selection.js +11 -0
- package/dist/src/icons/sendTo.d.ts +9 -0
- package/dist/src/icons/sendTo.js +11 -0
- package/dist/src/icons/sendToGraph.d.ts +9 -0
- package/dist/src/icons/sendToGraph.js +11 -0
- package/dist/src/icons/sendToMap.d.ts +9 -0
- package/dist/src/icons/sendToMap.js +11 -0
- package/dist/src/icons/seriesAdd.d.ts +9 -0
- package/dist/src/icons/seriesAdd.js +11 -0
- package/dist/src/icons/seriesConfiguration.d.ts +9 -0
- package/dist/src/icons/seriesConfiguration.js +11 -0
- package/dist/src/icons/seriesDerived.d.ts +9 -0
- package/dist/src/icons/seriesDerived.js +11 -0
- package/dist/src/icons/seriesFiltered.d.ts +9 -0
- package/dist/src/icons/seriesFiltered.js +11 -0
- package/dist/src/icons/seriesSearch.d.ts +9 -0
- package/dist/src/icons/seriesSearch.js +11 -0
- package/dist/src/icons/settings.d.ts +9 -0
- package/dist/src/icons/settings.js +11 -0
- package/dist/src/icons/share.d.ts +9 -0
- package/dist/src/icons/share.js +11 -0
- package/dist/src/icons/shield.d.ts +9 -0
- package/dist/src/icons/shield.js +11 -0
- package/dist/src/icons/shop.d.ts +9 -0
- package/dist/src/icons/shop.js +11 -0
- package/dist/src/icons/shoppingCart.d.ts +9 -0
- package/dist/src/icons/shoppingCart.js +11 -0
- package/dist/src/icons/signalSearch.d.ts +9 -0
- package/dist/src/icons/signalSearch.js +11 -0
- package/dist/src/icons/simCard.d.ts +9 -0
- package/dist/src/icons/simCard.js +11 -0
- package/dist/src/icons/slash.d.ts +9 -0
- package/dist/src/icons/slash.js +11 -0
- package/dist/src/icons/smallCross.d.ts +9 -0
- package/dist/src/icons/smallCross.js +11 -0
- package/dist/src/icons/smallMinus.d.ts +9 -0
- package/dist/src/icons/smallMinus.js +11 -0
- package/dist/src/icons/smallPlus.d.ts +9 -0
- package/dist/src/icons/smallPlus.js +11 -0
- package/dist/src/icons/smallTick.d.ts +9 -0
- package/dist/src/icons/smallTick.js +11 -0
- package/dist/src/icons/snowflake.d.ts +9 -0
- package/dist/src/icons/snowflake.js +11 -0
- package/dist/src/icons/socialMedia.d.ts +9 -0
- package/dist/src/icons/socialMedia.js +11 -0
- package/dist/src/icons/sort.d.ts +9 -0
- package/dist/src/icons/sort.js +11 -0
- package/dist/src/icons/sortAlphabetical.d.ts +9 -0
- package/dist/src/icons/sortAlphabetical.js +11 -0
- package/dist/src/icons/sortAlphabeticalDesc.d.ts +9 -0
- package/dist/src/icons/sortAlphabeticalDesc.js +11 -0
- package/dist/src/icons/sortAsc.d.ts +9 -0
- package/dist/src/icons/sortAsc.js +11 -0
- package/dist/src/icons/sortDesc.d.ts +9 -0
- package/dist/src/icons/sortDesc.js +11 -0
- package/dist/src/icons/sortNumerical.d.ts +9 -0
- package/dist/src/icons/sortNumerical.js +11 -0
- package/dist/src/icons/sortNumericalDesc.d.ts +9 -0
- package/dist/src/icons/sortNumericalDesc.js +11 -0
- package/dist/src/icons/splitColumns.d.ts +9 -0
- package/dist/src/icons/splitColumns.js +11 -0
- package/dist/src/icons/square.d.ts +9 -0
- package/dist/src/icons/square.js +11 -0
- package/dist/src/icons/stackedChart.d.ts +9 -0
- package/dist/src/icons/stackedChart.js +11 -0
- package/dist/src/icons/star.d.ts +9 -0
- package/dist/src/icons/star.js +11 -0
- package/dist/src/icons/starEmpty.d.ts +9 -0
- package/dist/src/icons/starEmpty.js +11 -0
- package/dist/src/icons/stepBackward.d.ts +9 -0
- package/dist/src/icons/stepBackward.js +11 -0
- package/dist/src/icons/stepChart.d.ts +9 -0
- package/dist/src/icons/stepChart.js +11 -0
- package/dist/src/icons/stepForward.d.ts +9 -0
- package/dist/src/icons/stepForward.js +11 -0
- package/dist/src/icons/stop.d.ts +9 -0
- package/dist/src/icons/stop.js +11 -0
- package/dist/src/icons/stopwatch.d.ts +9 -0
- package/dist/src/icons/stopwatch.js +11 -0
- package/dist/src/icons/strikethrough.d.ts +9 -0
- package/dist/src/icons/strikethrough.js +11 -0
- package/dist/src/icons/style.d.ts +9 -0
- package/dist/src/icons/style.js +11 -0
- package/dist/src/icons/swapHorizontal.d.ts +9 -0
- package/dist/src/icons/swapHorizontal.js +11 -0
- package/dist/src/icons/swapVertical.d.ts +9 -0
- package/dist/src/icons/swapVertical.js +11 -0
- package/dist/src/icons/symbolCircle.d.ts +9 -0
- package/dist/src/icons/symbolCircle.js +11 -0
- package/dist/src/icons/symbolCross.d.ts +9 -0
- package/dist/src/icons/symbolCross.js +11 -0
- package/dist/src/icons/symbolDiamond.d.ts +9 -0
- package/dist/src/icons/symbolDiamond.js +11 -0
- package/dist/src/icons/symbolSquare.d.ts +9 -0
- package/dist/src/icons/symbolSquare.js +11 -0
- package/dist/src/icons/symbolTriangleDown.d.ts +9 -0
- package/dist/src/icons/symbolTriangleDown.js +11 -0
- package/dist/src/icons/symbolTriangleUp.d.ts +9 -0
- package/dist/src/icons/symbolTriangleUp.js +11 -0
- package/dist/src/icons/tag.d.ts +9 -0
- package/dist/src/icons/tag.js +11 -0
- package/dist/src/icons/takeAction.d.ts +9 -0
- package/dist/src/icons/takeAction.js +11 -0
- package/dist/src/icons/taxi.d.ts +9 -0
- package/dist/src/icons/taxi.js +11 -0
- package/dist/src/icons/terraform.d.ts +9 -0
- package/dist/src/icons/terraform.js +11 -0
- package/dist/src/icons/textHighlight.d.ts +9 -0
- package/dist/src/icons/textHighlight.js +11 -0
- package/dist/src/icons/th.d.ts +9 -0
- package/dist/src/icons/th.js +11 -0
- package/dist/src/icons/thDerived.d.ts +9 -0
- package/dist/src/icons/thDerived.js +11 -0
- package/dist/src/icons/thDisconnect.d.ts +9 -0
- package/dist/src/icons/thDisconnect.js +11 -0
- package/dist/src/icons/thFiltered.d.ts +9 -0
- package/dist/src/icons/thFiltered.js +11 -0
- package/dist/src/icons/thList.d.ts +9 -0
- package/dist/src/icons/thList.js +11 -0
- package/dist/src/icons/thumbsDown.d.ts +9 -0
- package/dist/src/icons/thumbsDown.js +11 -0
- package/dist/src/icons/thumbsUp.d.ts +9 -0
- package/dist/src/icons/thumbsUp.js +11 -0
- package/dist/src/icons/tick.d.ts +9 -0
- package/dist/src/icons/tick.js +11 -0
- package/dist/src/icons/tickCircle.d.ts +9 -0
- package/dist/src/icons/tickCircle.js +11 -0
- package/dist/src/icons/time.d.ts +9 -0
- package/dist/src/icons/time.js +11 -0
- package/dist/src/icons/timelineAreaChart.d.ts +9 -0
- package/dist/src/icons/timelineAreaChart.js +11 -0
- package/dist/src/icons/timelineBarChart.d.ts +9 -0
- package/dist/src/icons/timelineBarChart.js +11 -0
- package/dist/src/icons/timelineEvents.d.ts +9 -0
- package/dist/src/icons/timelineEvents.js +11 -0
- package/dist/src/icons/timelineLineChart.d.ts +9 -0
- package/dist/src/icons/timelineLineChart.js +11 -0
- package/dist/src/icons/tint.d.ts +9 -0
- package/dist/src/icons/tint.js +11 -0
- package/dist/src/icons/torch.d.ts +9 -0
- package/dist/src/icons/torch.js +11 -0
- package/dist/src/icons/tractor.d.ts +9 -0
- package/dist/src/icons/tractor.js +11 -0
- package/dist/src/icons/train.d.ts +9 -0
- package/dist/src/icons/train.js +11 -0
- package/dist/src/icons/translate.d.ts +9 -0
- package/dist/src/icons/translate.js +11 -0
- package/dist/src/icons/trash.d.ts +9 -0
- package/dist/src/icons/trash.js +11 -0
- package/dist/src/icons/tree.d.ts +9 -0
- package/dist/src/icons/tree.js +11 -0
- package/dist/src/icons/trendingDown.d.ts +9 -0
- package/dist/src/icons/trendingDown.js +11 -0
- package/dist/src/icons/trendingUp.d.ts +9 -0
- package/dist/src/icons/trendingUp.js +11 -0
- package/dist/src/icons/truck.d.ts +9 -0
- package/dist/src/icons/truck.js +11 -0
- package/dist/src/icons/twoColumns.d.ts +9 -0
- package/dist/src/icons/twoColumns.js +11 -0
- package/dist/src/icons/unarchive.d.ts +9 -0
- package/dist/src/icons/unarchive.js +11 -0
- package/dist/src/icons/underline.d.ts +9 -0
- package/dist/src/icons/underline.js +11 -0
- package/dist/src/icons/undo.d.ts +9 -0
- package/dist/src/icons/undo.js +11 -0
- package/dist/src/icons/ungroupObjects.d.ts +9 -0
- package/dist/src/icons/ungroupObjects.js +11 -0
- package/dist/src/icons/unknownVehicle.d.ts +9 -0
- package/dist/src/icons/unknownVehicle.js +11 -0
- package/dist/src/icons/unlock.d.ts +9 -0
- package/dist/src/icons/unlock.js +11 -0
- package/dist/src/icons/unpin.d.ts +9 -0
- package/dist/src/icons/unpin.js +11 -0
- package/dist/src/icons/unresolve.d.ts +9 -0
- package/dist/src/icons/unresolve.js +11 -0
- package/dist/src/icons/updated.d.ts +9 -0
- package/dist/src/icons/updated.js +11 -0
- package/dist/src/icons/upload.d.ts +9 -0
- package/dist/src/icons/upload.js +11 -0
- package/dist/src/icons/user.d.ts +9 -0
- package/dist/src/icons/user.js +11 -0
- package/dist/src/icons/variable.d.ts +9 -0
- package/dist/src/icons/variable.js +11 -0
- package/dist/src/icons/verticalBarChartAsc.d.ts +9 -0
- package/dist/src/icons/verticalBarChartAsc.js +11 -0
- package/dist/src/icons/verticalBarChartDesc.d.ts +9 -0
- package/dist/src/icons/verticalBarChartDesc.js +11 -0
- package/dist/src/icons/verticalDistribution.d.ts +9 -0
- package/dist/src/icons/verticalDistribution.js +11 -0
- package/dist/src/icons/video.d.ts +9 -0
- package/dist/src/icons/video.js +11 -0
- package/dist/src/icons/volumeDown.d.ts +9 -0
- package/dist/src/icons/volumeDown.js +11 -0
- package/dist/src/icons/volumeOff.d.ts +9 -0
- package/dist/src/icons/volumeOff.js +11 -0
- package/dist/src/icons/volumeUp.d.ts +9 -0
- package/dist/src/icons/volumeUp.js +11 -0
- package/dist/src/icons/walk.d.ts +9 -0
- package/dist/src/icons/walk.js +11 -0
- package/dist/src/icons/warningSign.d.ts +9 -0
- package/dist/src/icons/warningSign.js +11 -0
- package/dist/src/icons/waterfallChart.d.ts +9 -0
- package/dist/src/icons/waterfallChart.js +11 -0
- package/dist/src/icons/widget.d.ts +9 -0
- package/dist/src/icons/widget.js +11 -0
- package/dist/src/icons/widgetButton.d.ts +9 -0
- package/dist/src/icons/widgetButton.js +11 -0
- package/dist/src/icons/widgetFooter.d.ts +9 -0
- package/dist/src/icons/widgetFooter.js +11 -0
- package/dist/src/icons/widgetHeader.d.ts +9 -0
- package/dist/src/icons/widgetHeader.js +11 -0
- package/dist/src/icons/wrench.d.ts +9 -0
- package/dist/src/icons/wrench.js +11 -0
- package/dist/src/icons/zoomIn.d.ts +9 -0
- package/dist/src/icons/zoomIn.js +11 -0
- package/dist/src/icons/zoomOut.d.ts +9 -0
- package/dist/src/icons/zoomOut.js +11 -0
- package/dist/src/icons/zoomToFit.d.ts +9 -0
- package/dist/src/icons/zoomToFit.js +11 -0
- package/dist/src/js/resolveTheme.d.ts +6 -0
- package/dist/src/js/resolveTheme.js +22 -0
- package/dist/src/system.d.ts +15 -0
- package/dist/src/system.js +19 -0
- package/dist/src/utils/breakpoints.d.ts +11 -0
- package/dist/src/utils/breakpoints.js +45 -0
- package/dist/src/utils/constants.d.ts +4 -0
- package/dist/src/utils/constants.js +8 -0
- package/dist/src/utils/createComponent.d.ts +3 -0
- package/dist/src/utils/createComponent.js +29 -0
- package/dist/src/utils/form/CharCounter/CharCounter.d.ts +8 -0
- package/dist/src/utils/form/CharCounter/CharCounter.js +6 -0
- package/dist/src/utils/form/FormControl/FormControl.d.ts +7 -0
- package/dist/src/utils/form/FormControl/FormControl.js +6 -0
- package/dist/src/utils/form/HelperText/HelperText.d.ts +39 -0
- package/dist/src/utils/form/HelperText/HelperText.js +20 -0
- package/dist/src/utils/form/InputAdornment/InputAdornment.d.ts +14 -0
- package/dist/src/utils/form/InputAdornment/InputAdornment.js +21 -0
- package/dist/src/utils/form/Label/Label.d.ts +80 -0
- package/dist/src/utils/form/Label/Label.js +89 -0
- package/dist/src/utils/object.d.ts +4 -0
- package/dist/src/utils/object.js +19 -0
- package/dist/src/utils/positioner.d.ts +28 -0
- package/dist/src/utils/positioner.js +111 -0
- package/dist/src/utils/setupTests.d.ts +1 -0
- package/dist/src/utils/setupTests.js +2 -0
- package/dist/src/utils/string.d.ts +1 -0
- package/dist/src/utils/string.js +2 -0
- package/dist/src/utils/tailwind.d.ts +4 -0
- package/dist/src/utils/tailwind.js +18 -0
- package/dist/src/utils/useStyle.d.ts +11 -0
- package/dist/src/utils/useStyle.js +70 -0
- package/dist/src/utils/useWindowSize.d.ts +5 -0
- package/dist/src/utils/useWindowSize.js +27 -0
- package/dist/styles.css +2136 -0
- package/dist/styles_timescaledb.css +2136 -0
- package/dist/system.cjs +7685 -0
- package/dist/system.mjs +7561 -0
- package/dist/tailwind.config.js +150 -0
- package/dist/tailwind.theme.json +520 -0
- package/dist/tokens.json +866 -0
- package/dist/tsconfig.module.tsbuildinfo +1 -0
- package/dist/types/ActionType.d.ts +20 -0
- package/dist/types/ActionType.js +2 -0
- package/dist/types/IconProps.d.ts +4 -0
- package/dist/types/IconProps.js +2 -0
- package/dist/types/designTokens.d.ts +57 -0
- package/dist/types/designTokens.js +5 -0
- package/dist/types/tailwind.d.ts +42 -0
- package/dist/types/tailwind.js +2 -0
- package/dist/types/tailwindGenerated.d.ts +1 -0
- package/dist/types/tailwindGenerated.js +3 -0
- package/dist/types/utils.d.ts +5 -0
- package/dist/types/utils.js +3 -0
- package/package.json +183 -0
@@ -0,0 +1,150 @@
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-var-requires */
|
2
|
+
const plugin = require('tailwindcss/plugin');
|
3
|
+
const defaultTheme = require('tailwindcss/defaultTheme');
|
4
|
+
const _ = require('lodash');
|
5
|
+
const { theme } = require('./src/js/resolveTheme');
|
6
|
+
|
7
|
+
/*
|
8
|
+
* Shortens a given spacing key to a minimal differentiable string
|
9
|
+
* example for resulting classnames with/without the shortening:
|
10
|
+
* h-l1 / h-layout01; m-1 / m-spacing01
|
11
|
+
*/
|
12
|
+
const shortenSpacingKey = (key) => key.replace('ayout0', '').replace('spacing0', '');
|
13
|
+
|
14
|
+
const spacing = _.reduce(theme.spacing, (acc, { px }, key) => ({ ...acc, [shortenSpacingKey(key)]: `${px}px` }), {
|
15
|
+
'0': '0',
|
16
|
+
'1px': '1px',
|
17
|
+
});
|
18
|
+
|
19
|
+
/** @type {import('tailwindcss').Config} */
|
20
|
+
module.exports = {
|
21
|
+
important: true,
|
22
|
+
theme: {
|
23
|
+
extend: {
|
24
|
+
colors: {
|
25
|
+
'navyBlue-100': '#30375E',
|
26
|
+
},
|
27
|
+
zIndex: {
|
28
|
+
modal: '100',
|
29
|
+
},
|
30
|
+
},
|
31
|
+
borderRadius: {
|
32
|
+
...defaultTheme.borderRadius,
|
33
|
+
DEFAULT: '4px',
|
34
|
+
},
|
35
|
+
colors: { ...theme.colors, transparent: 'transparent', white: 'white', current: 'currentColor' },
|
36
|
+
spacing,
|
37
|
+
margin: {
|
38
|
+
...spacing,
|
39
|
+
auto: 'auto',
|
40
|
+
..._.reduce(spacing, (acc, value, key) => ({ ...acc, [`-${key}`]: `-${value}` })),
|
41
|
+
},
|
42
|
+
boxShadow: theme.elevations,
|
43
|
+
screens: {
|
44
|
+
// "default" here means the width from 0px to "xs"
|
45
|
+
default: '0px',
|
46
|
+
xs: '320px',
|
47
|
+
sm: '672px',
|
48
|
+
md: '1056px',
|
49
|
+
lg: '1312px',
|
50
|
+
xl: '1536px',
|
51
|
+
},
|
52
|
+
animation: {
|
53
|
+
...defaultTheme.animation,
|
54
|
+
'positioner-fade-in': 'positioner-fade-in 300ms ease-in-out',
|
55
|
+
},
|
56
|
+
keyframes: {
|
57
|
+
...defaultTheme.keyframes,
|
58
|
+
'positioner-fade-in': {
|
59
|
+
from: { opacity: '0' },
|
60
|
+
to: { opacity: '1' },
|
61
|
+
},
|
62
|
+
},
|
63
|
+
},
|
64
|
+
// https://tailwindcss.com/docs/configuring-variants#ordering-variants
|
65
|
+
variants: {
|
66
|
+
backgroundColor: ['odd', 'even', 'hover', 'group-hover', 'active', 'disabled', 'focus'],
|
67
|
+
textColor: ['hover', 'hover-save', 'active', 'disabled'],
|
68
|
+
cursor: ['disabled'],
|
69
|
+
borderColor: ['children', 'focus', 'hover', 'hover-save', 'active', 'disabled'],
|
70
|
+
borderWidth: ['focus', 'hover', 'hover-save', 'active', 'disabled'],
|
71
|
+
boxShadow: ['focus', 'hover', 'hover-save'],
|
72
|
+
transitionProperty: ['hover', 'focus'],
|
73
|
+
aivenTypographyComponent: ['focus'],
|
74
|
+
display: ['children'],
|
75
|
+
opacity: ['sibling-input-focus', 'focus'],
|
76
|
+
},
|
77
|
+
extend: {
|
78
|
+
ringWidth: {
|
79
|
+
DEFAULT: '2px',
|
80
|
+
1: '1px',
|
81
|
+
2: '2px',
|
82
|
+
},
|
83
|
+
},
|
84
|
+
content: ['./src/**/*.tsx', './src/**/*.ts'],
|
85
|
+
safelist: [...theme.typography.sizes.map((s) => s.className), ...Object.keys(theme.colors).map((s) => `text-${s}`)],
|
86
|
+
plugins: [
|
87
|
+
require('tailwindcss-children'),
|
88
|
+
|
89
|
+
plugin(({ addVariant, e }) => {
|
90
|
+
addVariant('hover-save', ({ modifySelectors, separator }) => {
|
91
|
+
modifySelectors(({ className }) => {
|
92
|
+
return `.${e(`hover-save${separator}${className}`)}:hover:not(:disabled)`;
|
93
|
+
});
|
94
|
+
});
|
95
|
+
}),
|
96
|
+
|
97
|
+
plugin(({ addComponents, variants }) => {
|
98
|
+
const typography = theme.typography.sizes.reduce(
|
99
|
+
(acc, { className, style }) => ({
|
100
|
+
...acc,
|
101
|
+
[`.${className}`]: style,
|
102
|
+
}),
|
103
|
+
{},
|
104
|
+
);
|
105
|
+
return addComponents(typography, variants('aivenTypographyComponent'));
|
106
|
+
}),
|
107
|
+
|
108
|
+
plugin(({ addVariant, e }) => {
|
109
|
+
addVariant('sibling-input-focus', ({ modifySelectors, separator }) => {
|
110
|
+
modifySelectors(({ className }) => {
|
111
|
+
const eClassName = e(`sibling-input-focus${separator}${className}`);
|
112
|
+
return `input:focus ~ * .${eClassName}`;
|
113
|
+
});
|
114
|
+
});
|
115
|
+
}),
|
116
|
+
|
117
|
+
plugin(({ addUtilities }) => {
|
118
|
+
addUtilities(
|
119
|
+
{
|
120
|
+
'.scrollbar-hide': {
|
121
|
+
/* IE and Edge */
|
122
|
+
'-ms-overflow-style': 'none',
|
123
|
+
|
124
|
+
/* Firefox */
|
125
|
+
'scrollbar-width': 'none',
|
126
|
+
|
127
|
+
/* Safari and Chrome */
|
128
|
+
'&::-webkit-scrollbar': {
|
129
|
+
display: 'none',
|
130
|
+
},
|
131
|
+
},
|
132
|
+
|
133
|
+
'.scrollbar-default': {
|
134
|
+
/* IE and Edge */
|
135
|
+
'-ms-overflow-style': 'auto',
|
136
|
+
|
137
|
+
/* Firefox */
|
138
|
+
'scrollbar-width': 'auto',
|
139
|
+
|
140
|
+
/* Safari and Chrome */
|
141
|
+
'&::-webkit-scrollbar': {
|
142
|
+
display: 'block',
|
143
|
+
},
|
144
|
+
},
|
145
|
+
},
|
146
|
+
['responsive'],
|
147
|
+
);
|
148
|
+
}),
|
149
|
+
],
|
150
|
+
};
|
@@ -0,0 +1,520 @@
|
|
1
|
+
{
|
2
|
+
"screens": {
|
3
|
+
"default": "0px",
|
4
|
+
"xs": "320px",
|
5
|
+
"sm": "672px",
|
6
|
+
"md": "1056px",
|
7
|
+
"lg": "1312px",
|
8
|
+
"xl": "1536px"
|
9
|
+
},
|
10
|
+
"order": {
|
11
|
+
"1": "1",
|
12
|
+
"2": "2",
|
13
|
+
"3": "3",
|
14
|
+
"4": "4",
|
15
|
+
"5": "5",
|
16
|
+
"6": "6",
|
17
|
+
"7": "7",
|
18
|
+
"8": "8",
|
19
|
+
"9": "9",
|
20
|
+
"10": "10",
|
21
|
+
"11": "11",
|
22
|
+
"12": "12",
|
23
|
+
"first": "-9999",
|
24
|
+
"last": "9999",
|
25
|
+
"none": "0"
|
26
|
+
},
|
27
|
+
"spacing": {
|
28
|
+
"0": "0",
|
29
|
+
"1": "2px",
|
30
|
+
"2": "4px",
|
31
|
+
"3": "8px",
|
32
|
+
"4": "12px",
|
33
|
+
"5": "16px",
|
34
|
+
"6": "24px",
|
35
|
+
"7": "32px",
|
36
|
+
"8": "40px",
|
37
|
+
"9": "48px",
|
38
|
+
"1px": "1px",
|
39
|
+
"l1": "16px",
|
40
|
+
"l2": "24px",
|
41
|
+
"l3": "32px",
|
42
|
+
"l4": "48px",
|
43
|
+
"l5": "64px",
|
44
|
+
"l6": "96px",
|
45
|
+
"l7": "160px"
|
46
|
+
},
|
47
|
+
"margin": {
|
48
|
+
"0": "0",
|
49
|
+
"1": "2px",
|
50
|
+
"2": "4px",
|
51
|
+
"3": "8px",
|
52
|
+
"4": "12px",
|
53
|
+
"5": "16px",
|
54
|
+
"6": "24px",
|
55
|
+
"7": "32px",
|
56
|
+
"8": "40px",
|
57
|
+
"9": "48px",
|
58
|
+
"1px": "1px",
|
59
|
+
"l1": "16px",
|
60
|
+
"l2": "24px",
|
61
|
+
"l3": "32px",
|
62
|
+
"l4": "48px",
|
63
|
+
"l5": "64px",
|
64
|
+
"l6": "96px",
|
65
|
+
"l7": "160px",
|
66
|
+
"auto": "auto",
|
67
|
+
"-1": "-2px",
|
68
|
+
"-2": "-4px",
|
69
|
+
"-3": "-8px",
|
70
|
+
"-4": "-12px",
|
71
|
+
"-5": "-16px",
|
72
|
+
"-6": "-24px",
|
73
|
+
"-7": "-32px",
|
74
|
+
"-8": "-40px",
|
75
|
+
"-9": "-48px",
|
76
|
+
"-1px": "-1px",
|
77
|
+
"-l1": "-16px",
|
78
|
+
"-l2": "-24px",
|
79
|
+
"-l3": "-32px",
|
80
|
+
"-l4": "-48px",
|
81
|
+
"-l5": "-64px",
|
82
|
+
"-l6": "-96px",
|
83
|
+
"-l7": "-160px"
|
84
|
+
},
|
85
|
+
"padding": {
|
86
|
+
"0": "0",
|
87
|
+
"1": "2px",
|
88
|
+
"2": "4px",
|
89
|
+
"3": "8px",
|
90
|
+
"4": "12px",
|
91
|
+
"5": "16px",
|
92
|
+
"6": "24px",
|
93
|
+
"7": "32px",
|
94
|
+
"8": "40px",
|
95
|
+
"9": "48px",
|
96
|
+
"1px": "1px",
|
97
|
+
"l1": "16px",
|
98
|
+
"l2": "24px",
|
99
|
+
"l3": "32px",
|
100
|
+
"l4": "48px",
|
101
|
+
"l5": "64px",
|
102
|
+
"l6": "96px",
|
103
|
+
"l7": "160px"
|
104
|
+
},
|
105
|
+
"width": {
|
106
|
+
"0": "0",
|
107
|
+
"1": "2px",
|
108
|
+
"2": "4px",
|
109
|
+
"3": "8px",
|
110
|
+
"4": "12px",
|
111
|
+
"5": "16px",
|
112
|
+
"6": "24px",
|
113
|
+
"7": "32px",
|
114
|
+
"8": "40px",
|
115
|
+
"9": "48px",
|
116
|
+
"auto": "auto",
|
117
|
+
"1px": "1px",
|
118
|
+
"l1": "16px",
|
119
|
+
"l2": "24px",
|
120
|
+
"l3": "32px",
|
121
|
+
"l4": "48px",
|
122
|
+
"l5": "64px",
|
123
|
+
"l6": "96px",
|
124
|
+
"l7": "160px",
|
125
|
+
"1/2": "50%",
|
126
|
+
"1/3": "33.333333%",
|
127
|
+
"2/3": "66.666667%",
|
128
|
+
"1/4": "25%",
|
129
|
+
"2/4": "50%",
|
130
|
+
"3/4": "75%",
|
131
|
+
"1/5": "20%",
|
132
|
+
"2/5": "40%",
|
133
|
+
"3/5": "60%",
|
134
|
+
"4/5": "80%",
|
135
|
+
"1/6": "16.666667%",
|
136
|
+
"2/6": "33.333333%",
|
137
|
+
"3/6": "50%",
|
138
|
+
"4/6": "66.666667%",
|
139
|
+
"5/6": "83.333333%",
|
140
|
+
"1/12": "8.333333%",
|
141
|
+
"2/12": "16.666667%",
|
142
|
+
"3/12": "25%",
|
143
|
+
"4/12": "33.333333%",
|
144
|
+
"5/12": "41.666667%",
|
145
|
+
"6/12": "50%",
|
146
|
+
"7/12": "58.333333%",
|
147
|
+
"8/12": "66.666667%",
|
148
|
+
"9/12": "75%",
|
149
|
+
"10/12": "83.333333%",
|
150
|
+
"11/12": "91.666667%",
|
151
|
+
"full": "100%",
|
152
|
+
"screen": "100vw",
|
153
|
+
"min": "min-content",
|
154
|
+
"max": "max-content",
|
155
|
+
"fit": "fit-content"
|
156
|
+
},
|
157
|
+
"height": {
|
158
|
+
"0": "0",
|
159
|
+
"1": "2px",
|
160
|
+
"2": "4px",
|
161
|
+
"3": "8px",
|
162
|
+
"4": "12px",
|
163
|
+
"5": "16px",
|
164
|
+
"6": "24px",
|
165
|
+
"7": "32px",
|
166
|
+
"8": "40px",
|
167
|
+
"9": "48px",
|
168
|
+
"auto": "auto",
|
169
|
+
"1px": "1px",
|
170
|
+
"l1": "16px",
|
171
|
+
"l2": "24px",
|
172
|
+
"l3": "32px",
|
173
|
+
"l4": "48px",
|
174
|
+
"l5": "64px",
|
175
|
+
"l6": "96px",
|
176
|
+
"l7": "160px",
|
177
|
+
"1/2": "50%",
|
178
|
+
"1/3": "33.333333%",
|
179
|
+
"2/3": "66.666667%",
|
180
|
+
"1/4": "25%",
|
181
|
+
"2/4": "50%",
|
182
|
+
"3/4": "75%",
|
183
|
+
"1/5": "20%",
|
184
|
+
"2/5": "40%",
|
185
|
+
"3/5": "60%",
|
186
|
+
"4/5": "80%",
|
187
|
+
"1/6": "16.666667%",
|
188
|
+
"2/6": "33.333333%",
|
189
|
+
"3/6": "50%",
|
190
|
+
"4/6": "66.666667%",
|
191
|
+
"5/6": "83.333333%",
|
192
|
+
"full": "100%",
|
193
|
+
"screen": "100vh",
|
194
|
+
"min": "min-content",
|
195
|
+
"max": "max-content",
|
196
|
+
"fit": "fit-content"
|
197
|
+
},
|
198
|
+
"maxWidth": {
|
199
|
+
"0": "0rem",
|
200
|
+
"none": "none",
|
201
|
+
"xs": "20rem",
|
202
|
+
"sm": "24rem",
|
203
|
+
"md": "28rem",
|
204
|
+
"lg": "32rem",
|
205
|
+
"xl": "36rem",
|
206
|
+
"2xl": "42rem",
|
207
|
+
"3xl": "48rem",
|
208
|
+
"4xl": "56rem",
|
209
|
+
"5xl": "64rem",
|
210
|
+
"6xl": "72rem",
|
211
|
+
"7xl": "80rem",
|
212
|
+
"full": "100%",
|
213
|
+
"min": "min-content",
|
214
|
+
"max": "max-content",
|
215
|
+
"fit": "fit-content",
|
216
|
+
"prose": "65ch",
|
217
|
+
"screen-default": "0px",
|
218
|
+
"screen-xs": "320px",
|
219
|
+
"screen-sm": "672px",
|
220
|
+
"screen-md": "1056px",
|
221
|
+
"screen-lg": "1312px",
|
222
|
+
"screen-xl": "1536px"
|
223
|
+
},
|
224
|
+
"maxHeight": {
|
225
|
+
"0": "0",
|
226
|
+
"1": "2px",
|
227
|
+
"2": "4px",
|
228
|
+
"3": "8px",
|
229
|
+
"4": "12px",
|
230
|
+
"5": "16px",
|
231
|
+
"6": "24px",
|
232
|
+
"7": "32px",
|
233
|
+
"8": "40px",
|
234
|
+
"9": "48px",
|
235
|
+
"1px": "1px",
|
236
|
+
"l1": "16px",
|
237
|
+
"l2": "24px",
|
238
|
+
"l3": "32px",
|
239
|
+
"l4": "48px",
|
240
|
+
"l5": "64px",
|
241
|
+
"l6": "96px",
|
242
|
+
"l7": "160px",
|
243
|
+
"full": "100%",
|
244
|
+
"screen": "100vh",
|
245
|
+
"min": "min-content",
|
246
|
+
"max": "max-content",
|
247
|
+
"fit": "fit-content"
|
248
|
+
},
|
249
|
+
"minWidth": {
|
250
|
+
"0": "0px",
|
251
|
+
"full": "100%",
|
252
|
+
"min": "min-content",
|
253
|
+
"max": "max-content",
|
254
|
+
"fit": "fit-content"
|
255
|
+
},
|
256
|
+
"minHeight": {
|
257
|
+
"0": "0px",
|
258
|
+
"full": "100%",
|
259
|
+
"screen": "100vh",
|
260
|
+
"min": "min-content",
|
261
|
+
"max": "max-content",
|
262
|
+
"fit": "fit-content"
|
263
|
+
},
|
264
|
+
"flex": {
|
265
|
+
"1": "1 1 0%",
|
266
|
+
"auto": "1 1 auto",
|
267
|
+
"initial": "0 1 auto",
|
268
|
+
"none": "none"
|
269
|
+
},
|
270
|
+
"flexGrow": {"0": "0", "DEFAULT": "1"},
|
271
|
+
"flexShrink": {"0": "0", "DEFAULT": "1"},
|
272
|
+
"backgroundColor": {
|
273
|
+
"error-100": "#aa0000",
|
274
|
+
"error-90": "#b90000",
|
275
|
+
"error-80": "#c50001",
|
276
|
+
"error-70": "#d80005",
|
277
|
+
"error-60": "#e70000",
|
278
|
+
"error-50": "#e62728",
|
279
|
+
"error-40": "#e0504f",
|
280
|
+
"error-30": "#ed7975",
|
281
|
+
"error-20": "#ffadb3",
|
282
|
+
"error-10": "#ffcbd2",
|
283
|
+
"error-5": "#fee8e7",
|
284
|
+
"error-0": "#fef2f1",
|
285
|
+
"warning-100": "#fe6d00",
|
286
|
+
"warning-90": "#ff9003",
|
287
|
+
"warning-80": "#fd9f00",
|
288
|
+
"warning-70": "#ffb300",
|
289
|
+
"warning-60": "#ffc107",
|
290
|
+
"warning-50": "#fdc926",
|
291
|
+
"warning-40": "#fdd44d",
|
292
|
+
"warning-30": "#fddf81",
|
293
|
+
"warning-20": "#feebb2",
|
294
|
+
"warning-10": "#fff2cd",
|
295
|
+
"warning-5": "#fff8ea",
|
296
|
+
"warning-0": "#fffdf9",
|
297
|
+
"success-100": "#006f00",
|
298
|
+
"success-90": "#008e00",
|
299
|
+
"success-80": "#009f00",
|
300
|
+
"success-70": "#00b300",
|
301
|
+
"success-60": "#00c300",
|
302
|
+
"success-50": "#40ce37",
|
303
|
+
"success-40": "#60db57",
|
304
|
+
"success-30": "#89eb80",
|
305
|
+
"success-20": "#afffa7",
|
306
|
+
"success-10": "#cbffc9",
|
307
|
+
"success-5": "#ecf7ed",
|
308
|
+
"success-0": "#f5faf5",
|
309
|
+
"info-100": "#02569a",
|
310
|
+
"info-90": "#0174ba",
|
311
|
+
"info-80": "#0788d1",
|
312
|
+
"info-70": "#0399e3",
|
313
|
+
"info-60": "#02a8f3",
|
314
|
+
"info-50": "#28b4f4",
|
315
|
+
"info-40": "#4cc2f7",
|
316
|
+
"info-30": "#7fd1f7",
|
317
|
+
"info-20": "#b4e5fb",
|
318
|
+
"info-10": "#e0f5fe",
|
319
|
+
"info-5": "#effaff",
|
320
|
+
"info-0": "#f9fdff",
|
321
|
+
"grey-100": "#19191d",
|
322
|
+
"grey-90": "#292a31",
|
323
|
+
"grey-80": "#3a3a44",
|
324
|
+
"grey-70": "#4a4b57",
|
325
|
+
"grey-60": "#5a5b6a",
|
326
|
+
"grey-50": "#787885",
|
327
|
+
"grey-40": "#9696a0",
|
328
|
+
"grey-30": "#b4b4bb",
|
329
|
+
"grey-10": "#e1e1e3",
|
330
|
+
"grey-5": "#ededf0",
|
331
|
+
"grey-0": "#f7f7fa",
|
332
|
+
"secondary-100": "#e11d16",
|
333
|
+
"secondary-90": "#eb4610",
|
334
|
+
"secondary-80": "#f3580d",
|
335
|
+
"secondary-70": "#f96a02",
|
336
|
+
"secondary-60": "#ff7700",
|
337
|
+
"secondary-50": "#fc871a",
|
338
|
+
"secondary-40": "#fb9a3e",
|
339
|
+
"secondary-30": "#fab26e",
|
340
|
+
"secondary-20": "#f8c99c",
|
341
|
+
"secondary-10": "#fee8d0",
|
342
|
+
"secondary-5": "#fff3e8",
|
343
|
+
"secondary-0": "#fffbf8",
|
344
|
+
"primary-100": "#a70045",
|
345
|
+
"primary-90": "#c60443",
|
346
|
+
"primary-80": "#e41a4a",
|
347
|
+
"primary-70": "#ff3554",
|
348
|
+
"primary-60": "#ff5275",
|
349
|
+
"primary-50": "#ff6f94",
|
350
|
+
"primary-40": "#ff8db0",
|
351
|
+
"primary-30": "#ffa9c9",
|
352
|
+
"primary-20": "#ffc4de",
|
353
|
+
"primary-10": "#ffdeef",
|
354
|
+
"primary-5": "#ffe8f4",
|
355
|
+
"primary-0": "#fff9fc",
|
356
|
+
"grey-20": "#d2d2d6",
|
357
|
+
"transparent": "transparent",
|
358
|
+
"white": "white",
|
359
|
+
"current": "currentColor",
|
360
|
+
"navyBlue-100": "#30375E"
|
361
|
+
},
|
362
|
+
"gap": {
|
363
|
+
"0": "0",
|
364
|
+
"1": "2px",
|
365
|
+
"2": "4px",
|
366
|
+
"3": "8px",
|
367
|
+
"4": "12px",
|
368
|
+
"5": "16px",
|
369
|
+
"6": "24px",
|
370
|
+
"7": "32px",
|
371
|
+
"8": "40px",
|
372
|
+
"9": "48px",
|
373
|
+
"1px": "1px",
|
374
|
+
"l1": "16px",
|
375
|
+
"l2": "24px",
|
376
|
+
"l3": "32px",
|
377
|
+
"l4": "48px",
|
378
|
+
"l5": "64px",
|
379
|
+
"l6": "96px",
|
380
|
+
"l7": "160px"
|
381
|
+
},
|
382
|
+
"gridAutoColumns": {
|
383
|
+
"auto": "auto",
|
384
|
+
"min": "min-content",
|
385
|
+
"max": "max-content",
|
386
|
+
"fr": "minmax(0, 1fr)"
|
387
|
+
},
|
388
|
+
"gridAutoRows": {
|
389
|
+
"auto": "auto",
|
390
|
+
"min": "min-content",
|
391
|
+
"max": "max-content",
|
392
|
+
"fr": "minmax(0, 1fr)"
|
393
|
+
},
|
394
|
+
"gridColumn": {
|
395
|
+
"auto": "auto",
|
396
|
+
"span-1": "span 1 / span 1",
|
397
|
+
"span-2": "span 2 / span 2",
|
398
|
+
"span-3": "span 3 / span 3",
|
399
|
+
"span-4": "span 4 / span 4",
|
400
|
+
"span-5": "span 5 / span 5",
|
401
|
+
"span-6": "span 6 / span 6",
|
402
|
+
"span-7": "span 7 / span 7",
|
403
|
+
"span-8": "span 8 / span 8",
|
404
|
+
"span-9": "span 9 / span 9",
|
405
|
+
"span-10": "span 10 / span 10",
|
406
|
+
"span-11": "span 11 / span 11",
|
407
|
+
"span-12": "span 12 / span 12",
|
408
|
+
"span-full": "1 / -1"
|
409
|
+
},
|
410
|
+
"gridColumnEnd": {
|
411
|
+
"1": "1",
|
412
|
+
"2": "2",
|
413
|
+
"3": "3",
|
414
|
+
"4": "4",
|
415
|
+
"5": "5",
|
416
|
+
"6": "6",
|
417
|
+
"7": "7",
|
418
|
+
"8": "8",
|
419
|
+
"9": "9",
|
420
|
+
"10": "10",
|
421
|
+
"11": "11",
|
422
|
+
"12": "12",
|
423
|
+
"13": "13",
|
424
|
+
"auto": "auto"
|
425
|
+
},
|
426
|
+
"gridColumnStart": {
|
427
|
+
"1": "1",
|
428
|
+
"2": "2",
|
429
|
+
"3": "3",
|
430
|
+
"4": "4",
|
431
|
+
"5": "5",
|
432
|
+
"6": "6",
|
433
|
+
"7": "7",
|
434
|
+
"8": "8",
|
435
|
+
"9": "9",
|
436
|
+
"10": "10",
|
437
|
+
"11": "11",
|
438
|
+
"12": "12",
|
439
|
+
"13": "13",
|
440
|
+
"auto": "auto"
|
441
|
+
},
|
442
|
+
"gridRow": {
|
443
|
+
"auto": "auto",
|
444
|
+
"span-1": "span 1 / span 1",
|
445
|
+
"span-2": "span 2 / span 2",
|
446
|
+
"span-3": "span 3 / span 3",
|
447
|
+
"span-4": "span 4 / span 4",
|
448
|
+
"span-5": "span 5 / span 5",
|
449
|
+
"span-6": "span 6 / span 6",
|
450
|
+
"span-full": "1 / -1"
|
451
|
+
},
|
452
|
+
"gridRowStart": {
|
453
|
+
"1": "1",
|
454
|
+
"2": "2",
|
455
|
+
"3": "3",
|
456
|
+
"4": "4",
|
457
|
+
"5": "5",
|
458
|
+
"6": "6",
|
459
|
+
"7": "7",
|
460
|
+
"auto": "auto"
|
461
|
+
},
|
462
|
+
"gridRowEnd": {
|
463
|
+
"1": "1",
|
464
|
+
"2": "2",
|
465
|
+
"3": "3",
|
466
|
+
"4": "4",
|
467
|
+
"5": "5",
|
468
|
+
"6": "6",
|
469
|
+
"7": "7",
|
470
|
+
"auto": "auto"
|
471
|
+
},
|
472
|
+
"gridTemplateColumns": {
|
473
|
+
"1": "repeat(1, minmax(0, 1fr))",
|
474
|
+
"2": "repeat(2, minmax(0, 1fr))",
|
475
|
+
"3": "repeat(3, minmax(0, 1fr))",
|
476
|
+
"4": "repeat(4, minmax(0, 1fr))",
|
477
|
+
"5": "repeat(5, minmax(0, 1fr))",
|
478
|
+
"6": "repeat(6, minmax(0, 1fr))",
|
479
|
+
"7": "repeat(7, minmax(0, 1fr))",
|
480
|
+
"8": "repeat(8, minmax(0, 1fr))",
|
481
|
+
"9": "repeat(9, minmax(0, 1fr))",
|
482
|
+
"10": "repeat(10, minmax(0, 1fr))",
|
483
|
+
"11": "repeat(11, minmax(0, 1fr))",
|
484
|
+
"12": "repeat(12, minmax(0, 1fr))",
|
485
|
+
"none": "none"
|
486
|
+
},
|
487
|
+
"gridTemplateRows": {
|
488
|
+
"1": "repeat(1, minmax(0, 1fr))",
|
489
|
+
"2": "repeat(2, minmax(0, 1fr))",
|
490
|
+
"3": "repeat(3, minmax(0, 1fr))",
|
491
|
+
"4": "repeat(4, minmax(0, 1fr))",
|
492
|
+
"5": "repeat(5, minmax(0, 1fr))",
|
493
|
+
"6": "repeat(6, minmax(0, 1fr))",
|
494
|
+
"none": "none"
|
495
|
+
},
|
496
|
+
"keyframes": {
|
497
|
+
"spin": {"to": {"transform": "rotate(360deg)"}},
|
498
|
+
"ping": {"75%, 100%": {"transform": "scale(2)", "opacity": "0"}},
|
499
|
+
"pulse": {"50%": {"opacity": ".5"}},
|
500
|
+
"bounce": {
|
501
|
+
"0%, 100%": {
|
502
|
+
"transform": "translateY(-25%)",
|
503
|
+
"animationTimingFunction": "cubic-bezier(0.8,0,1,1)"
|
504
|
+
},
|
505
|
+
"50%": {
|
506
|
+
"transform": "none",
|
507
|
+
"animationTimingFunction": "cubic-bezier(0,0,0.2,1)"
|
508
|
+
}
|
509
|
+
},
|
510
|
+
"positioner-fade-in": {"from": {"opacity": "0"}, "to": {"opacity": "1"}}
|
511
|
+
},
|
512
|
+
"animation": {
|
513
|
+
"none": "none",
|
514
|
+
"spin": "spin 1s linear infinite",
|
515
|
+
"ping": "ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",
|
516
|
+
"pulse": "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",
|
517
|
+
"bounce": "bounce 1s infinite",
|
518
|
+
"positioner-fade-in": "positioner-fade-in 300ms ease-in-out"
|
519
|
+
}
|
520
|
+
}
|