@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
package/dist/tokens.json
ADDED
@@ -0,0 +1,866 @@
|
|
1
|
+
{
|
2
|
+
"themes": {
|
3
|
+
"timescale": {
|
4
|
+
"colors": {
|
5
|
+
"error-100": "#aa0000",
|
6
|
+
"error-90": "#b90000",
|
7
|
+
"error-80": "#c50001",
|
8
|
+
"error-70": "#d80005",
|
9
|
+
"error-60": "#e70000",
|
10
|
+
"error-50": "#e62728",
|
11
|
+
"error-40": "#e0504f",
|
12
|
+
"error-30": "#ed7975",
|
13
|
+
"error-20": "#ffadb3",
|
14
|
+
"error-10": "#ffcbd2",
|
15
|
+
"error-5": "#fee8e7",
|
16
|
+
"error-0": "#fef2f1",
|
17
|
+
"warning-100": "#fe6d00",
|
18
|
+
"warning-90": "#ff9003",
|
19
|
+
"warning-80": "#fd9f00",
|
20
|
+
"warning-70": "#ffb300",
|
21
|
+
"warning-60": "#ffc107",
|
22
|
+
"warning-50": "#fdc926",
|
23
|
+
"warning-40": "#fdd44d",
|
24
|
+
"warning-30": "#fddf81",
|
25
|
+
"warning-20": "#feebb2",
|
26
|
+
"warning-10": "#fff2cd",
|
27
|
+
"warning-5": "#fff8ea",
|
28
|
+
"warning-0": "#fffdf9",
|
29
|
+
"success-100": "#006f00",
|
30
|
+
"success-90": "#008e00",
|
31
|
+
"success-80": "#009f00",
|
32
|
+
"success-70": "#00b300",
|
33
|
+
"success-60": "#00c300",
|
34
|
+
"success-50": "#40ce37",
|
35
|
+
"success-40": "#60db57",
|
36
|
+
"success-30": "#89eb80",
|
37
|
+
"success-20": "#afffa7",
|
38
|
+
"success-10": "#cbffc9",
|
39
|
+
"success-5": "#ecf7ed",
|
40
|
+
"success-0": "#f5faf5",
|
41
|
+
"info-100": "#02569a",
|
42
|
+
"info-90": "#0174ba",
|
43
|
+
"info-80": "#0788d1",
|
44
|
+
"info-70": "#0399e3",
|
45
|
+
"info-60": "#02a8f3",
|
46
|
+
"info-50": "#28b4f4",
|
47
|
+
"info-40": "#4cc2f7",
|
48
|
+
"info-30": "#7fd1f7",
|
49
|
+
"info-20": "#b4e5fb",
|
50
|
+
"info-10": "#e0f5fe",
|
51
|
+
"info-5": "#effaff",
|
52
|
+
"info-0": "#f9fdff",
|
53
|
+
"grey-100": "#19191d",
|
54
|
+
"grey-90": "#292a31",
|
55
|
+
"grey-80": "#3a3a44",
|
56
|
+
"grey-70": "#4a4b57",
|
57
|
+
"grey-60": "#5a5b6a",
|
58
|
+
"grey-50": "#787885",
|
59
|
+
"grey-40": "#9696a0",
|
60
|
+
"grey-30": "#b4b4bb",
|
61
|
+
"grey-20": "#d2d2d6",
|
62
|
+
"grey-10": "#e1e1e3",
|
63
|
+
"grey-5": "#ededf0",
|
64
|
+
"grey-0": "#f7f7fa",
|
65
|
+
"secondary-100": "#e11d16",
|
66
|
+
"secondary-90": "#eb4610",
|
67
|
+
"secondary-80": "#f3580d",
|
68
|
+
"secondary-70": "#f96a02",
|
69
|
+
"secondary-60": "#ff7700",
|
70
|
+
"secondary-50": "#fc871a",
|
71
|
+
"secondary-40": "#fb9a3e",
|
72
|
+
"secondary-30": "#fab26e",
|
73
|
+
"secondary-20": "#f8c99c",
|
74
|
+
"secondary-10": "#fee8d0",
|
75
|
+
"secondary-5": "#fff3e8",
|
76
|
+
"secondary-0": "#fffbf8",
|
77
|
+
"primary-100": "#02569a",
|
78
|
+
"primary-90": "#0174ba",
|
79
|
+
"primary-80": "#0788d1",
|
80
|
+
"primary-70": "#0399e3",
|
81
|
+
"primary-60": "#02a8f3",
|
82
|
+
"primary-50": "#28b4f4",
|
83
|
+
"primary-40": "#4cc2f7",
|
84
|
+
"primary-30": "#7fd1f7",
|
85
|
+
"primary-20": "#b4e5fb",
|
86
|
+
"primary-10": "#e0f5fe",
|
87
|
+
"primary-5": "#effaff",
|
88
|
+
"primary-0": "#f9fdff"
|
89
|
+
},
|
90
|
+
"typography": {
|
91
|
+
"sizes": [
|
92
|
+
{
|
93
|
+
"name": "caption-small",
|
94
|
+
"className": "typography-caption-small",
|
95
|
+
"style": {
|
96
|
+
"fontFamily": "Inter",
|
97
|
+
"fontSize": "10px",
|
98
|
+
"fontWeight": 400,
|
99
|
+
"fontStyle": "normal",
|
100
|
+
"lineHeight": 1.2,
|
101
|
+
"letterSpacing": 0,
|
102
|
+
"textTransform": "none"
|
103
|
+
},
|
104
|
+
"fontPostScriptName": null
|
105
|
+
},
|
106
|
+
{
|
107
|
+
"name": "caption-default",
|
108
|
+
"className": "typography-caption-default",
|
109
|
+
"style": {
|
110
|
+
"fontFamily": "Inter",
|
111
|
+
"fontSize": "12px",
|
112
|
+
"fontWeight": 400,
|
113
|
+
"fontStyle": "normal",
|
114
|
+
"lineHeight": 1.26,
|
115
|
+
"letterSpacing": 0,
|
116
|
+
"textTransform": "none"
|
117
|
+
},
|
118
|
+
"fontPostScriptName": null
|
119
|
+
},
|
120
|
+
{
|
121
|
+
"name": "overline-small",
|
122
|
+
"className": "typography-overline-small",
|
123
|
+
"style": {
|
124
|
+
"fontFamily": "Inter",
|
125
|
+
"fontSize": "10px",
|
126
|
+
"fontWeight": 400,
|
127
|
+
"fontStyle": "normal",
|
128
|
+
"lineHeight": 1,
|
129
|
+
"letterSpacing": 0,
|
130
|
+
"textTransform": "uppercase"
|
131
|
+
},
|
132
|
+
"fontPostScriptName": null
|
133
|
+
},
|
134
|
+
{
|
135
|
+
"name": "overline-default",
|
136
|
+
"className": "typography-overline-default",
|
137
|
+
"style": {
|
138
|
+
"fontFamily": "Inter",
|
139
|
+
"fontSize": "12px",
|
140
|
+
"fontWeight": 400,
|
141
|
+
"fontStyle": "normal",
|
142
|
+
"lineHeight": 1,
|
143
|
+
"letterSpacing": 0,
|
144
|
+
"textTransform": "uppercase"
|
145
|
+
},
|
146
|
+
"fontPostScriptName": null
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"name": "button-small",
|
150
|
+
"className": "typography-button-small",
|
151
|
+
"style": {
|
152
|
+
"fontFamily": "Inter",
|
153
|
+
"fontSize": "12px",
|
154
|
+
"fontWeight": 500,
|
155
|
+
"fontStyle": "normal",
|
156
|
+
"lineHeight": 1,
|
157
|
+
"letterSpacing": 0,
|
158
|
+
"textTransform": "none"
|
159
|
+
},
|
160
|
+
"fontPostScriptName": "Inter-Medium"
|
161
|
+
},
|
162
|
+
{
|
163
|
+
"name": "button-medium",
|
164
|
+
"className": "typography-button-medium",
|
165
|
+
"style": {
|
166
|
+
"fontFamily": "Inter",
|
167
|
+
"fontSize": "14px",
|
168
|
+
"fontWeight": 400,
|
169
|
+
"fontStyle": "normal",
|
170
|
+
"lineHeight": 1,
|
171
|
+
"letterSpacing": 0,
|
172
|
+
"textTransform": "none"
|
173
|
+
},
|
174
|
+
"fontPostScriptName": "Inter-SemiBold"
|
175
|
+
},
|
176
|
+
{
|
177
|
+
"name": "button-large",
|
178
|
+
"className": "typography-button-large",
|
179
|
+
"style": {
|
180
|
+
"fontFamily": "Inter",
|
181
|
+
"fontSize": "16px",
|
182
|
+
"fontWeight": 500,
|
183
|
+
"fontStyle": "normal",
|
184
|
+
"lineHeight": 1.5,
|
185
|
+
"letterSpacing": 0,
|
186
|
+
"textTransform": "none"
|
187
|
+
},
|
188
|
+
"fontPostScriptName": "Inter-Medium"
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"name": "body-small",
|
192
|
+
"className": "typography-body-small",
|
193
|
+
"style": {
|
194
|
+
"fontFamily": "Inter",
|
195
|
+
"fontSize": "14px",
|
196
|
+
"fontWeight": 400,
|
197
|
+
"fontStyle": "normal",
|
198
|
+
"lineHeight": 1.43,
|
199
|
+
"letterSpacing": 0,
|
200
|
+
"textTransform": "none"
|
201
|
+
},
|
202
|
+
"fontPostScriptName": null
|
203
|
+
},
|
204
|
+
{
|
205
|
+
"name": "body-small-medium",
|
206
|
+
"className": "typography-body-small-medium",
|
207
|
+
"style": {
|
208
|
+
"fontFamily": "Inter",
|
209
|
+
"fontSize": "14px",
|
210
|
+
"fontWeight": 500,
|
211
|
+
"fontStyle": "normal",
|
212
|
+
"lineHeight": 1.43,
|
213
|
+
"letterSpacing": 0,
|
214
|
+
"textTransform": "none"
|
215
|
+
},
|
216
|
+
"fontPostScriptName": "Inter-SemiBold"
|
217
|
+
},
|
218
|
+
{
|
219
|
+
"name": "body-default",
|
220
|
+
"className": "typography-body-default",
|
221
|
+
"style": {
|
222
|
+
"fontFamily": "Inter",
|
223
|
+
"fontSize": "16px",
|
224
|
+
"fontWeight": 400,
|
225
|
+
"fontStyle": "normal",
|
226
|
+
"lineHeight": 1.5,
|
227
|
+
"letterSpacing": 0,
|
228
|
+
"textTransform": "none"
|
229
|
+
},
|
230
|
+
"fontPostScriptName": null
|
231
|
+
},
|
232
|
+
{
|
233
|
+
"name": "body-default-medium",
|
234
|
+
"className": "typography-body-default-medium",
|
235
|
+
"style": {
|
236
|
+
"fontFamily": "Inter",
|
237
|
+
"fontSize": "16px",
|
238
|
+
"fontWeight": 500,
|
239
|
+
"fontStyle": "normal",
|
240
|
+
"lineHeight": 1.5,
|
241
|
+
"letterSpacing": 0,
|
242
|
+
"textTransform": "none"
|
243
|
+
},
|
244
|
+
"fontPostScriptName": "Inter-SemiBold"
|
245
|
+
},
|
246
|
+
{
|
247
|
+
"name": "body-large",
|
248
|
+
"className": "typography-body-large",
|
249
|
+
"style": {
|
250
|
+
"fontFamily": "Inter",
|
251
|
+
"fontSize": "20px",
|
252
|
+
"fontWeight": 400,
|
253
|
+
"fontStyle": "normal",
|
254
|
+
"lineHeight": 1.58,
|
255
|
+
"letterSpacing": 0,
|
256
|
+
"textTransform": "none"
|
257
|
+
},
|
258
|
+
"fontPostScriptName": null
|
259
|
+
},
|
260
|
+
{
|
261
|
+
"name": "body-large-medium",
|
262
|
+
"className": "typography-body-large-medium",
|
263
|
+
"style": {
|
264
|
+
"fontFamily": "Inter",
|
265
|
+
"fontSize": "20px",
|
266
|
+
"fontWeight": 400,
|
267
|
+
"fontStyle": "normal",
|
268
|
+
"lineHeight": 1.2,
|
269
|
+
"letterSpacing": 0,
|
270
|
+
"textTransform": "none"
|
271
|
+
},
|
272
|
+
"fontPostScriptName": "Inter-SemiBold"
|
273
|
+
},
|
274
|
+
{
|
275
|
+
"name": "heading-large",
|
276
|
+
"className": "typography-heading-large",
|
277
|
+
"style": {
|
278
|
+
"fontFamily": "Inter",
|
279
|
+
"fontSize": "20px",
|
280
|
+
"fontWeight": 700,
|
281
|
+
"fontStyle": "normal",
|
282
|
+
"lineHeight": 1.5,
|
283
|
+
"letterSpacing": 0.15,
|
284
|
+
"textTransform": "none"
|
285
|
+
},
|
286
|
+
"fontPostScriptName": "Inter-Bold"
|
287
|
+
},
|
288
|
+
{
|
289
|
+
"name": "heading-xl",
|
290
|
+
"className": "typography-heading-xl",
|
291
|
+
"style": {
|
292
|
+
"fontFamily": "Inter",
|
293
|
+
"fontSize": "24px",
|
294
|
+
"fontWeight": 700,
|
295
|
+
"fontStyle": "normal",
|
296
|
+
"lineHeight": 1.5,
|
297
|
+
"letterSpacing": 0,
|
298
|
+
"textTransform": "none"
|
299
|
+
},
|
300
|
+
"fontPostScriptName": "Inter-Bold"
|
301
|
+
},
|
302
|
+
{
|
303
|
+
"name": "heading-2xl",
|
304
|
+
"className": "typography-heading-2xl",
|
305
|
+
"style": {
|
306
|
+
"fontFamily": "Inter",
|
307
|
+
"fontSize": "34px",
|
308
|
+
"fontWeight": 700,
|
309
|
+
"fontStyle": "normal",
|
310
|
+
"lineHeight": 1.28,
|
311
|
+
"letterSpacing": 0,
|
312
|
+
"textTransform": "none"
|
313
|
+
},
|
314
|
+
"fontPostScriptName": "Inter-Bold"
|
315
|
+
},
|
316
|
+
{
|
317
|
+
"name": "heading-3xl",
|
318
|
+
"className": "typography-heading-3xl",
|
319
|
+
"style": {
|
320
|
+
"fontFamily": "Inter",
|
321
|
+
"fontSize": "48px",
|
322
|
+
"fontWeight": 700,
|
323
|
+
"fontStyle": "normal",
|
324
|
+
"lineHeight": 1.24,
|
325
|
+
"letterSpacing": -0.48,
|
326
|
+
"textTransform": "none"
|
327
|
+
},
|
328
|
+
"fontPostScriptName": "Inter-Bold"
|
329
|
+
},
|
330
|
+
{
|
331
|
+
"name": "heading-4xl",
|
332
|
+
"className": "typography-heading-4xl",
|
333
|
+
"style": {
|
334
|
+
"fontFamily": "Inter",
|
335
|
+
"fontSize": "60px",
|
336
|
+
"fontWeight": 700,
|
337
|
+
"fontStyle": "normal",
|
338
|
+
"lineHeight": 1.2,
|
339
|
+
"letterSpacing": -1.5,
|
340
|
+
"textTransform": "none"
|
341
|
+
},
|
342
|
+
"fontPostScriptName": "Inter-Bold"
|
343
|
+
},
|
344
|
+
{
|
345
|
+
"name": "heading-5xl",
|
346
|
+
"className": "typography-heading-5xl",
|
347
|
+
"style": {
|
348
|
+
"fontFamily": "Inter",
|
349
|
+
"fontSize": "76px",
|
350
|
+
"fontWeight": 700,
|
351
|
+
"fontStyle": "normal",
|
352
|
+
"lineHeight": 1.2,
|
353
|
+
"letterSpacing": -1.98,
|
354
|
+
"textTransform": "none"
|
355
|
+
},
|
356
|
+
"fontPostScriptName": "Inter-Bold"
|
357
|
+
}
|
358
|
+
]
|
359
|
+
},
|
360
|
+
"elevations": {
|
361
|
+
"24dp": "0px 24px 48px rgba(90, 91, 106, 0.08), 0px 12px 24px rgba(58, 58, 68, 0.08)",
|
362
|
+
"16dp": "0px 16px 32px rgba(90, 91, 106, 0.12), 0px 8px 16px rgba(58, 58, 68, 0.12)",
|
363
|
+
"8dp": "0px 8px 16px rgba(90, 91, 106, 0.16), 0px 4px 8px rgba(58, 58, 68, 0.16)",
|
364
|
+
"4dp": "0px 4px 8px rgba(90, 91, 106, 0.20), 0px 2px 4px rgba(58, 58, 68, 0.20)",
|
365
|
+
"2dp": "0px 2px 4px rgba(90, 91, 106, 0.24), 0px 1px 2px rgba(58, 58, 68, 0.24)"
|
366
|
+
},
|
367
|
+
"spacing": {
|
368
|
+
"layout01": {
|
369
|
+
"px": 16,
|
370
|
+
"rem": 1
|
371
|
+
},
|
372
|
+
"layout02": {
|
373
|
+
"px": 24,
|
374
|
+
"rem": 1.5
|
375
|
+
},
|
376
|
+
"layout03": {
|
377
|
+
"px": 32,
|
378
|
+
"rem": 2
|
379
|
+
},
|
380
|
+
"layout04": {
|
381
|
+
"px": 48,
|
382
|
+
"rem": 3
|
383
|
+
},
|
384
|
+
"layout05": {
|
385
|
+
"px": 64,
|
386
|
+
"rem": 4
|
387
|
+
},
|
388
|
+
"layout06": {
|
389
|
+
"px": 96,
|
390
|
+
"rem": 6
|
391
|
+
},
|
392
|
+
"layout07": {
|
393
|
+
"px": 160,
|
394
|
+
"rem": 10
|
395
|
+
},
|
396
|
+
"spacing01": {
|
397
|
+
"px": 2,
|
398
|
+
"rem": 0.125
|
399
|
+
},
|
400
|
+
"spacing02": {
|
401
|
+
"px": 4,
|
402
|
+
"rem": 0.25
|
403
|
+
},
|
404
|
+
"spacing03": {
|
405
|
+
"px": 8,
|
406
|
+
"rem": 0.5
|
407
|
+
},
|
408
|
+
"spacing04": {
|
409
|
+
"px": 12,
|
410
|
+
"rem": 0.75
|
411
|
+
},
|
412
|
+
"spacing05": {
|
413
|
+
"px": 16,
|
414
|
+
"rem": 1
|
415
|
+
},
|
416
|
+
"spacing06": {
|
417
|
+
"px": 24,
|
418
|
+
"rem": 1.5
|
419
|
+
},
|
420
|
+
"spacing07": {
|
421
|
+
"px": 32,
|
422
|
+
"rem": 2
|
423
|
+
},
|
424
|
+
"spacing08": {
|
425
|
+
"px": 40,
|
426
|
+
"rem": 2.5
|
427
|
+
},
|
428
|
+
"spacing09": {
|
429
|
+
"px": 48,
|
430
|
+
"rem": 3
|
431
|
+
}
|
432
|
+
}
|
433
|
+
},
|
434
|
+
"aiven": {
|
435
|
+
"colors": {
|
436
|
+
"error-100": "#aa0000",
|
437
|
+
"error-90": "#b90000",
|
438
|
+
"error-80": "#c50001",
|
439
|
+
"error-70": "#d80005",
|
440
|
+
"error-60": "#e70000",
|
441
|
+
"error-50": "#e62728",
|
442
|
+
"error-40": "#e0504f",
|
443
|
+
"error-30": "#ed7975",
|
444
|
+
"error-20": "#ffadb3",
|
445
|
+
"error-10": "#ffcbd2",
|
446
|
+
"error-5": "#fee8e7",
|
447
|
+
"error-0": "#fef2f1",
|
448
|
+
"warning-100": "#fe6d00",
|
449
|
+
"warning-90": "#ff9003",
|
450
|
+
"warning-80": "#fd9f00",
|
451
|
+
"warning-70": "#ffb300",
|
452
|
+
"warning-60": "#ffc107",
|
453
|
+
"warning-50": "#fdc926",
|
454
|
+
"warning-40": "#fdd44d",
|
455
|
+
"warning-30": "#fddf81",
|
456
|
+
"warning-20": "#feebb2",
|
457
|
+
"warning-10": "#fff2cd",
|
458
|
+
"warning-5": "#fff8ea",
|
459
|
+
"warning-0": "#fffdf9",
|
460
|
+
"success-100": "#006f00",
|
461
|
+
"success-90": "#008e00",
|
462
|
+
"success-80": "#009f00",
|
463
|
+
"success-70": "#00b300",
|
464
|
+
"success-60": "#00c300",
|
465
|
+
"success-50": "#40ce37",
|
466
|
+
"success-40": "#60db57",
|
467
|
+
"success-30": "#89eb80",
|
468
|
+
"success-20": "#afffa7",
|
469
|
+
"success-10": "#cbffc9",
|
470
|
+
"success-5": "#ecf7ed",
|
471
|
+
"success-0": "#f5faf5",
|
472
|
+
"info-100": "#02569a",
|
473
|
+
"info-90": "#0174ba",
|
474
|
+
"info-80": "#0788d1",
|
475
|
+
"info-70": "#0399e3",
|
476
|
+
"info-60": "#02a8f3",
|
477
|
+
"info-50": "#28b4f4",
|
478
|
+
"info-40": "#4cc2f7",
|
479
|
+
"info-30": "#7fd1f7",
|
480
|
+
"info-20": "#b4e5fb",
|
481
|
+
"info-10": "#e0f5fe",
|
482
|
+
"info-5": "#effaff",
|
483
|
+
"info-0": "#f9fdff",
|
484
|
+
"grey-100": "#19191d",
|
485
|
+
"grey-90": "#292a31",
|
486
|
+
"grey-80": "#3a3a44",
|
487
|
+
"grey-70": "#4a4b57",
|
488
|
+
"grey-60": "#5a5b6a",
|
489
|
+
"grey-50": "#787885",
|
490
|
+
"grey-40": "#9696a0",
|
491
|
+
"grey-30": "#b4b4bb",
|
492
|
+
"grey-10": "#e1e1e3",
|
493
|
+
"grey-5": "#ededf0",
|
494
|
+
"grey-0": "#f7f7fa",
|
495
|
+
"secondary-100": "#e11d16",
|
496
|
+
"secondary-90": "#eb4610",
|
497
|
+
"secondary-80": "#f3580d",
|
498
|
+
"secondary-70": "#f96a02",
|
499
|
+
"secondary-60": "#ff7700",
|
500
|
+
"secondary-50": "#fc871a",
|
501
|
+
"secondary-40": "#fb9a3e",
|
502
|
+
"secondary-30": "#fab26e",
|
503
|
+
"secondary-20": "#f8c99c",
|
504
|
+
"secondary-10": "#fee8d0",
|
505
|
+
"secondary-5": "#fff3e8",
|
506
|
+
"secondary-0": "#fffbf8",
|
507
|
+
"primary-100": "#a70045",
|
508
|
+
"primary-90": "#c60443",
|
509
|
+
"primary-80": "#e41a4a",
|
510
|
+
"primary-70": "#ff3554",
|
511
|
+
"primary-60": "#ff5275",
|
512
|
+
"primary-50": "#ff6f94",
|
513
|
+
"primary-40": "#ff8db0",
|
514
|
+
"primary-30": "#ffa9c9",
|
515
|
+
"primary-20": "#ffc4de",
|
516
|
+
"primary-10": "#ffdeef",
|
517
|
+
"primary-5": "#ffe8f4",
|
518
|
+
"primary-0": "#fff9fc",
|
519
|
+
"grey-20": "#d2d2d6"
|
520
|
+
},
|
521
|
+
"typography": {
|
522
|
+
"sizes": [
|
523
|
+
{
|
524
|
+
"name": "caption-small",
|
525
|
+
"className": "typography-caption-small",
|
526
|
+
"style": {
|
527
|
+
"fontFamily": "Inter",
|
528
|
+
"fontSize": "10px",
|
529
|
+
"fontWeight": 400,
|
530
|
+
"fontStyle": "normal",
|
531
|
+
"lineHeight": 1.2,
|
532
|
+
"letterSpacing": 0,
|
533
|
+
"textTransform": "none"
|
534
|
+
},
|
535
|
+
"fontPostScriptName": null
|
536
|
+
},
|
537
|
+
{
|
538
|
+
"name": "caption-default",
|
539
|
+
"className": "typography-caption-default",
|
540
|
+
"style": {
|
541
|
+
"fontFamily": "Inter",
|
542
|
+
"fontSize": "12px",
|
543
|
+
"fontWeight": 400,
|
544
|
+
"fontStyle": "normal",
|
545
|
+
"lineHeight": 1.26,
|
546
|
+
"letterSpacing": 0,
|
547
|
+
"textTransform": "none"
|
548
|
+
},
|
549
|
+
"fontPostScriptName": null
|
550
|
+
},
|
551
|
+
{
|
552
|
+
"name": "overline-small",
|
553
|
+
"className": "typography-overline-small",
|
554
|
+
"style": {
|
555
|
+
"fontFamily": "Inter",
|
556
|
+
"fontSize": "10px",
|
557
|
+
"fontWeight": 400,
|
558
|
+
"fontStyle": "normal",
|
559
|
+
"lineHeight": 1,
|
560
|
+
"letterSpacing": 0,
|
561
|
+
"textTransform": "uppercase"
|
562
|
+
},
|
563
|
+
"fontPostScriptName": null
|
564
|
+
},
|
565
|
+
{
|
566
|
+
"name": "overline-default",
|
567
|
+
"className": "typography-overline-default",
|
568
|
+
"style": {
|
569
|
+
"fontFamily": "Inter",
|
570
|
+
"fontSize": "12px",
|
571
|
+
"fontWeight": 400,
|
572
|
+
"fontStyle": "normal",
|
573
|
+
"lineHeight": 1,
|
574
|
+
"letterSpacing": 0,
|
575
|
+
"textTransform": "uppercase"
|
576
|
+
},
|
577
|
+
"fontPostScriptName": null
|
578
|
+
},
|
579
|
+
{
|
580
|
+
"name": "button-small",
|
581
|
+
"className": "typography-button-small",
|
582
|
+
"style": {
|
583
|
+
"fontFamily": "Inter",
|
584
|
+
"fontSize": "12px",
|
585
|
+
"fontWeight": 500,
|
586
|
+
"fontStyle": "normal",
|
587
|
+
"lineHeight": 1,
|
588
|
+
"letterSpacing": 0,
|
589
|
+
"textTransform": "none"
|
590
|
+
},
|
591
|
+
"fontPostScriptName": "Inter-Medium"
|
592
|
+
},
|
593
|
+
{
|
594
|
+
"name": "button-medium",
|
595
|
+
"className": "typography-button-medium",
|
596
|
+
"style": {
|
597
|
+
"fontFamily": "Inter",
|
598
|
+
"fontSize": "14px",
|
599
|
+
"fontWeight": 400,
|
600
|
+
"fontStyle": "normal",
|
601
|
+
"lineHeight": 1,
|
602
|
+
"letterSpacing": 0,
|
603
|
+
"textTransform": "none"
|
604
|
+
},
|
605
|
+
"fontPostScriptName": "Inter-SemiBold"
|
606
|
+
},
|
607
|
+
{
|
608
|
+
"name": "button-large",
|
609
|
+
"className": "typography-button-large",
|
610
|
+
"style": {
|
611
|
+
"fontFamily": "Inter",
|
612
|
+
"fontSize": "16px",
|
613
|
+
"fontWeight": 500,
|
614
|
+
"fontStyle": "normal",
|
615
|
+
"lineHeight": 1.5,
|
616
|
+
"letterSpacing": 0,
|
617
|
+
"textTransform": "none"
|
618
|
+
},
|
619
|
+
"fontPostScriptName": "Inter-Medium"
|
620
|
+
},
|
621
|
+
{
|
622
|
+
"name": "body-small",
|
623
|
+
"className": "typography-body-small",
|
624
|
+
"style": {
|
625
|
+
"fontFamily": "Inter",
|
626
|
+
"fontSize": "14px",
|
627
|
+
"fontWeight": 400,
|
628
|
+
"fontStyle": "normal",
|
629
|
+
"lineHeight": 1.43,
|
630
|
+
"letterSpacing": 0,
|
631
|
+
"textTransform": "none"
|
632
|
+
},
|
633
|
+
"fontPostScriptName": null
|
634
|
+
},
|
635
|
+
{
|
636
|
+
"name": "body-small-medium",
|
637
|
+
"className": "typography-body-small-medium",
|
638
|
+
"style": {
|
639
|
+
"fontFamily": "Inter",
|
640
|
+
"fontSize": "14px",
|
641
|
+
"fontWeight": 500,
|
642
|
+
"fontStyle": "normal",
|
643
|
+
"lineHeight": 1.43,
|
644
|
+
"letterSpacing": 0,
|
645
|
+
"textTransform": "none"
|
646
|
+
},
|
647
|
+
"fontPostScriptName": "Inter-SemiBold"
|
648
|
+
},
|
649
|
+
{
|
650
|
+
"name": "body-default",
|
651
|
+
"className": "typography-body-default",
|
652
|
+
"style": {
|
653
|
+
"fontFamily": "Inter",
|
654
|
+
"fontSize": "16px",
|
655
|
+
"fontWeight": 400,
|
656
|
+
"fontStyle": "normal",
|
657
|
+
"lineHeight": 1.5,
|
658
|
+
"letterSpacing": 0,
|
659
|
+
"textTransform": "none"
|
660
|
+
},
|
661
|
+
"fontPostScriptName": null
|
662
|
+
},
|
663
|
+
{
|
664
|
+
"name": "body-default-medium",
|
665
|
+
"className": "typography-body-default-medium",
|
666
|
+
"style": {
|
667
|
+
"fontFamily": "Inter",
|
668
|
+
"fontSize": "16px",
|
669
|
+
"fontWeight": 500,
|
670
|
+
"fontStyle": "normal",
|
671
|
+
"lineHeight": 1.5,
|
672
|
+
"letterSpacing": 0,
|
673
|
+
"textTransform": "none"
|
674
|
+
},
|
675
|
+
"fontPostScriptName": "Inter-SemiBold"
|
676
|
+
},
|
677
|
+
{
|
678
|
+
"name": "body-large",
|
679
|
+
"className": "typography-body-large",
|
680
|
+
"style": {
|
681
|
+
"fontFamily": "Inter",
|
682
|
+
"fontSize": "20px",
|
683
|
+
"fontWeight": 400,
|
684
|
+
"fontStyle": "normal",
|
685
|
+
"lineHeight": 1.58,
|
686
|
+
"letterSpacing": 0,
|
687
|
+
"textTransform": "none"
|
688
|
+
},
|
689
|
+
"fontPostScriptName": null
|
690
|
+
},
|
691
|
+
{
|
692
|
+
"name": "body-large-medium",
|
693
|
+
"className": "typography-body-large-medium",
|
694
|
+
"style": {
|
695
|
+
"fontFamily": "Inter",
|
696
|
+
"fontSize": "20px",
|
697
|
+
"fontWeight": 400,
|
698
|
+
"fontStyle": "normal",
|
699
|
+
"lineHeight": 1.2,
|
700
|
+
"letterSpacing": 0,
|
701
|
+
"textTransform": "none"
|
702
|
+
},
|
703
|
+
"fontPostScriptName": "Inter-SemiBold"
|
704
|
+
},
|
705
|
+
{
|
706
|
+
"name": "heading-large",
|
707
|
+
"className": "typography-heading-large",
|
708
|
+
"style": {
|
709
|
+
"fontFamily": "Inter",
|
710
|
+
"fontSize": "20px",
|
711
|
+
"fontWeight": 700,
|
712
|
+
"fontStyle": "normal",
|
713
|
+
"lineHeight": 1.5,
|
714
|
+
"letterSpacing": 0.15,
|
715
|
+
"textTransform": "none"
|
716
|
+
},
|
717
|
+
"fontPostScriptName": "Inter-Bold"
|
718
|
+
},
|
719
|
+
{
|
720
|
+
"name": "heading-xl",
|
721
|
+
"className": "typography-heading-xl",
|
722
|
+
"style": {
|
723
|
+
"fontFamily": "Inter",
|
724
|
+
"fontSize": "24px",
|
725
|
+
"fontWeight": 700,
|
726
|
+
"fontStyle": "normal",
|
727
|
+
"lineHeight": 1.5,
|
728
|
+
"letterSpacing": 0,
|
729
|
+
"textTransform": "none"
|
730
|
+
},
|
731
|
+
"fontPostScriptName": "Inter-Bold"
|
732
|
+
},
|
733
|
+
{
|
734
|
+
"name": "heading-2xl",
|
735
|
+
"className": "typography-heading-2xl",
|
736
|
+
"style": {
|
737
|
+
"fontFamily": "Inter",
|
738
|
+
"fontSize": "34px",
|
739
|
+
"fontWeight": 700,
|
740
|
+
"fontStyle": "normal",
|
741
|
+
"lineHeight": 1.28,
|
742
|
+
"letterSpacing": 0,
|
743
|
+
"textTransform": "none"
|
744
|
+
},
|
745
|
+
"fontPostScriptName": "Inter-Bold"
|
746
|
+
},
|
747
|
+
{
|
748
|
+
"name": "heading-3xl",
|
749
|
+
"className": "typography-heading-3xl",
|
750
|
+
"style": {
|
751
|
+
"fontFamily": "Inter",
|
752
|
+
"fontSize": "48px",
|
753
|
+
"fontWeight": 700,
|
754
|
+
"fontStyle": "normal",
|
755
|
+
"lineHeight": 1.24,
|
756
|
+
"letterSpacing": -0.48,
|
757
|
+
"textTransform": "none"
|
758
|
+
},
|
759
|
+
"fontPostScriptName": "Inter-Bold"
|
760
|
+
},
|
761
|
+
{
|
762
|
+
"name": "heading-4xl",
|
763
|
+
"className": "typography-heading-4xl",
|
764
|
+
"style": {
|
765
|
+
"fontFamily": "Inter",
|
766
|
+
"fontSize": "60px",
|
767
|
+
"fontWeight": 700,
|
768
|
+
"fontStyle": "normal",
|
769
|
+
"lineHeight": 1.2,
|
770
|
+
"letterSpacing": -1.5,
|
771
|
+
"textTransform": "none"
|
772
|
+
},
|
773
|
+
"fontPostScriptName": "Inter-Bold"
|
774
|
+
},
|
775
|
+
{
|
776
|
+
"name": "heading-5xl",
|
777
|
+
"className": "typography-heading-5xl",
|
778
|
+
"style": {
|
779
|
+
"fontFamily": "Inter",
|
780
|
+
"fontSize": "76px",
|
781
|
+
"fontWeight": 700,
|
782
|
+
"fontStyle": "normal",
|
783
|
+
"lineHeight": 1.2,
|
784
|
+
"letterSpacing": -1.98,
|
785
|
+
"textTransform": "none"
|
786
|
+
},
|
787
|
+
"fontPostScriptName": "Inter-Bold"
|
788
|
+
}
|
789
|
+
]
|
790
|
+
},
|
791
|
+
"elevations": {
|
792
|
+
"24dp": "0px 24px 48px rgba(90, 91, 106, 0.08), 0px 12px 24px rgba(58, 58, 68, 0.08)",
|
793
|
+
"16dp": "0px 16px 32px rgba(90, 91, 106, 0.12), 0px 8px 16px rgba(58, 58, 68, 0.12)",
|
794
|
+
"8dp": "0px 8px 16px rgba(90, 91, 106, 0.16), 0px 4px 8px rgba(58, 58, 68, 0.16)",
|
795
|
+
"4dp": "0px 4px 8px rgba(90, 91, 106, 0.20), 0px 2px 4px rgba(58, 58, 68, 0.20)",
|
796
|
+
"2dp": "0px 2px 4px rgba(90, 91, 106, 0.24), 0px 1px 2px rgba(58, 58, 68, 0.24)"
|
797
|
+
},
|
798
|
+
"spacing": {
|
799
|
+
"layout01": {
|
800
|
+
"px": 16,
|
801
|
+
"rem": 1
|
802
|
+
},
|
803
|
+
"layout02": {
|
804
|
+
"px": 24,
|
805
|
+
"rem": 1.5
|
806
|
+
},
|
807
|
+
"layout03": {
|
808
|
+
"px": 32,
|
809
|
+
"rem": 2
|
810
|
+
},
|
811
|
+
"layout04": {
|
812
|
+
"px": 48,
|
813
|
+
"rem": 3
|
814
|
+
},
|
815
|
+
"layout05": {
|
816
|
+
"px": 64,
|
817
|
+
"rem": 4
|
818
|
+
},
|
819
|
+
"layout06": {
|
820
|
+
"px": 96,
|
821
|
+
"rem": 6
|
822
|
+
},
|
823
|
+
"layout07": {
|
824
|
+
"px": 160,
|
825
|
+
"rem": 10
|
826
|
+
},
|
827
|
+
"spacing01": {
|
828
|
+
"px": 2,
|
829
|
+
"rem": 0.125
|
830
|
+
},
|
831
|
+
"spacing02": {
|
832
|
+
"px": 4,
|
833
|
+
"rem": 0.25
|
834
|
+
},
|
835
|
+
"spacing03": {
|
836
|
+
"px": 8,
|
837
|
+
"rem": 0.5
|
838
|
+
},
|
839
|
+
"spacing04": {
|
840
|
+
"px": 12,
|
841
|
+
"rem": 0.75
|
842
|
+
},
|
843
|
+
"spacing05": {
|
844
|
+
"px": 16,
|
845
|
+
"rem": 1
|
846
|
+
},
|
847
|
+
"spacing06": {
|
848
|
+
"px": 24,
|
849
|
+
"rem": 1.5
|
850
|
+
},
|
851
|
+
"spacing07": {
|
852
|
+
"px": 32,
|
853
|
+
"rem": 2
|
854
|
+
},
|
855
|
+
"spacing08": {
|
856
|
+
"px": 40,
|
857
|
+
"rem": 2.5
|
858
|
+
},
|
859
|
+
"spacing09": {
|
860
|
+
"px": 48,
|
861
|
+
"rem": 3
|
862
|
+
}
|
863
|
+
}
|
864
|
+
}
|
865
|
+
}
|
866
|
+
}
|