@aivenio/aquarium 1.68.0-rc1 → 1.68.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_variables.scss +1 -1
- package/dist/atoms.cjs +76 -67
- package/dist/atoms.mjs +76 -67
- package/dist/charts.cjs +2 -2
- package/dist/charts.mjs +2 -2
- package/dist/src/atoms/Alert/Alert.js +2 -2
- package/dist/src/atoms/Banner/Banner.js +2 -2
- package/dist/src/atoms/Card/Card.d.ts +3 -3
- package/dist/src/atoms/Card/Card.js +2 -2
- package/dist/src/atoms/Checkbox/Checkbox.d.ts +1 -1
- package/dist/src/atoms/Checkbox/Checkbox.js +2 -2
- package/dist/src/atoms/DropdownMenu/DropdownMenu.js +2 -2
- package/dist/src/atoms/Modal/Modal.js +2 -2
- package/dist/src/atoms/Navigation/Navigation.js +1 -1
- package/dist/src/atoms/PageHeader/PageHeader.js +3 -3
- package/dist/src/atoms/RadioButton/RadioButton.d.ts +1 -1
- package/dist/src/atoms/Section/Section.js +4 -4
- package/dist/src/atoms/Stepper/Stepper.js +3 -3
- package/dist/src/atoms/Switch/Switch.d.ts +1 -1
- package/dist/src/atoms/Table/Table.d.ts +2 -2
- package/dist/src/atoms/Table/Table.js +8 -8
- package/dist/src/charts/PieChart/ChartValue.js +1 -1
- package/dist/src/charts/Tooltip/Tooltip.js +2 -2
- package/dist/src/icons/warningSign.js +2 -2
- package/dist/src/molecules/Accordion/Accordion.js +2 -2
- package/dist/src/molecules/Banner/Banner.d.ts +1 -1
- package/dist/src/molecules/Box/Box.d.ts +4 -1
- package/dist/src/molecules/Box/Box.js +4 -4
- package/dist/src/molecules/Button/Button.d.ts +9 -9
- package/dist/src/molecules/Button/Button.js +1 -1
- package/dist/src/molecules/Card/Card.js +3 -3
- package/dist/src/molecules/Card/Compact.js +3 -3
- package/dist/src/molecules/Card/types.d.ts +3 -2
- package/dist/src/molecules/Chip/Chip.js +2 -2
- package/dist/src/molecules/ChoiceChip/ChoiceChip.js +3 -3
- package/dist/src/molecules/ControlLabel/ControlLabel.js +2 -2
- package/dist/src/molecules/DataList/DataList.js +65 -55
- package/dist/src/molecules/DataList/DataListComponents.d.ts +3 -1
- package/dist/src/molecules/DataList/DataListComponents.js +12 -4
- package/dist/src/molecules/DataTable/DataTable.js +42 -25
- package/dist/src/molecules/DropdownMenu/DropdownMenu.d.ts +3 -3
- package/dist/src/molecules/DropdownMenu/DropdownMenu.js +1 -1
- package/dist/src/molecules/EmptyState/EmptyState.js +2 -2
- package/dist/src/molecules/List/List.js +1 -1
- package/dist/src/molecules/ListItem/ListItem.js +1 -1
- package/dist/src/molecules/MultiInput/InputChip.js +2 -2
- package/dist/src/molecules/Pagination/Pagination.js +4 -4
- package/dist/src/molecules/Tabs/Tabs.js +5 -3
- package/dist/src/molecules/Timeline/Timeline.js +2 -2
- package/dist/src/utils/ContrastRatio.js +7 -7
- package/dist/src/utils/stickyStyles.d.ts +64 -0
- package/dist/src/utils/stickyStyles.js +74 -0
- package/dist/styles.css +13 -15
- package/dist/system.cjs +831 -694
- package/dist/system.mjs +820 -683
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/dist/types/designTokens.d.ts +2 -0
- package/dist/types/tailwindGenerated.d.ts +1 -1
- package/package.json +4 -4
- package/dist/tailwind/tailwind.backgroundColor.d.ts +0 -43
- package/dist/tailwind/tailwind.backgroundColor.js +0 -44
- package/dist/tailwind/tailwind.borderColor.d.ts +0 -44
- package/dist/tailwind/tailwind.borderColor.js +0 -32
- package/dist/tailwind/tailwind.borderRadius.d.ts +0 -1
- package/dist/tailwind/tailwind.borderRadius.js +0 -5
- package/dist/tailwind/tailwind.colors.d.ts +0 -102
- package/dist/tailwind/tailwind.colors.js +0 -106
- package/dist/tailwind/tailwind.elevations.d.ts +0 -8
- package/dist/tailwind/tailwind.elevations.js +0 -9
- package/dist/tailwind/tailwind.margin.d.ts +0 -22
- package/dist/tailwind/tailwind.margin.js +0 -23
- package/dist/tailwind/tailwind.spacing.d.ts +0 -21
- package/dist/tailwind/tailwind.spacing.js +0 -22
- package/dist/tailwind/tailwind.textColor.d.ts +0 -56
- package/dist/tailwind/tailwind.textColor.js +0 -39
- package/dist/tailwind/tailwind.typography.d.ts +0 -14
- package/dist/tailwind/tailwind.typography.js +0 -15
- package/dist/tailwind/textColor.d.ts +0 -219
- package/dist/tailwind/textColor.js +0 -651
- package/dist/tailwind/typography.d.ts +0 -219
- package/dist/tailwind/typography.js +0 -651
@@ -12,6 +12,8 @@ export declare type TypographyCSSStyles = {
|
|
12
12
|
};
|
13
13
|
export declare type TypographyName = 'large-heading' | 'heading' | 'subheading' | 'large-strong' | 'large' | 'default-strong' | 'default' | 'small-strong' | 'small' | 'caption' | 'caption-small' | 'caption-default' | 'overline-small' | 'overline-default' | 'button-small' | 'button-medium' | 'button-large' | 'body-small' | 'body-small-medium' | 'body-default' | 'body-default-medium' | 'body-large' | 'body-large-medium' | 'heading-large' | 'heading-xl' | 'heading-2xl' | 'heading-3xl' | 'heading-4xl' | 'heading-5xl';
|
14
14
|
export declare type TextColorName = keyof (typeof twTheme)['textColor'];
|
15
|
+
export declare type BorderColorName = keyof (typeof twTheme)['borderColor'];
|
16
|
+
export declare type BackgroundColorName = keyof (typeof twTheme)['backgroundColor'];
|
15
17
|
export interface TypographySize {
|
16
18
|
name: TypographyName;
|
17
19
|
className: string;
|
@@ -1 +1 @@
|
|
1
|
-
export declare type ClassNames = "-left-1\/2" | "-m-2" | "-mt-4" | "-mx-4" | "-translate-x-1\/2" | "-translate-y-1\/2" | "-z-10" | "\!container" | "\!hidden" | "\!inline" | "\!table" | "\[\&\:\:-webkit-search-cancel-button\]\:appearance-none" | "\[\&\>\*\:not\(\:first-child\)\]\:-ml-3" | "\[\&\>\*\]\:bg-primary-active" | "\[\&\>\*\]\:hover\:bg-muted" | "\[\&\>button\]\:p-0" | "\[\&\>button\]\:text-danger-muted" | "\[\&\>button\]\:text-muted" | "\[\&\>div\:first-child\]\:px-3" | "\[\&\>div\:first-child\]\:px-5" | "\[\&\>path\]\:stroke-\[3px\]" | "\[\&\>path\]\:stroke-transparent" | "absolute" | "active\:bg-body" | "active\:bg-default" | "active\:bg-intense" | "active\:bg-primary-active" | "active\:bg-primary-intense" | "active\:bg-transparent" | "active\:ring-0" | "active\:ring-primary-90" | "active\:text-default" | "active\:text-muted" | "active\:text-primary-active" | "active\:text-primary-intense" | "align-middle" | "animate-pulse" | "appearance-none" | "aquarium-theme-dark" | "aspect-square" | "auto-cols-fr" | "before\:content-\[\'_\'\]" | "bg-black" | "bg-body" | "bg-body-intense" | "bg-cover" | "bg-current" | "bg-danger-default" | "bg-danger-intense" | "bg-default" | "bg-gradient-to-l" | "bg-gradient-to-r" | "bg-grey-5" | "bg-info-default" | "bg-intense" | "bg-muted" | "bg-popover-content" | "bg-primary-active" | "bg-primary-default" | "bg-primary-intense" | "bg-primary-muted" | "bg-status-announcement" | "bg-status-danger" | "bg-status-info" | "bg-status-success" | "bg-status-warning" | "bg-success-default" | "bg-success-intense" | "bg-transparent" | "bg-warning-default" | "bg-white" | "block" | "blur" | "border" | "border-0" | "border-2" | "border-\[2px\]" | "border-b" | "border-b-2" | "border-b-\[1px\]" | "border-current" | "border-danger-default" | "border-dashed" | "border-default" | "border-grey-100" | "border-grey-90" | "border-info-default" | "border-intense" | "border-muted" | "border-none" | "border-primary-default" | "border-r-\[1px\]" | "border-solid" | "border-spacing-0" | "border-success-intense" | "border-t-2" | "border-transparent" | "bottom-0" | "break-all" | "break-words" | "capitalize" | "checked\:bg-primary-default" | "checked\:bg-primary-muted" | "checked\:border-primary-default" | "checked\:border-transparent" | "checked\:opacity-50" | "checked\:shadow-whiteInset" | "children\:border-default" | "children\:inline-block" | "children\:last\:border-b-0" | "children\:opacity-70" | "col-span-full" | "col-start-1" | "col-start-2" | "col-start-3" | "collapse" | "container" | "contents" | "cursor-default" | "cursor-not-allowed" | "cursor-pointer" | "delay-150" | "delay-300" | "disabled\:bg-body" | "disabled\:bg-default" | "disabled\:bg-primary-muted" | "disabled\:bg-transparent" | "disabled\:border-default" | "disabled\:cursor-not-allowed" | "disabled\:ring-primary-40" | "disabled\:text-inactive" | "disabled\:text-primary-inactive" | "duration-200" | "duration-300" | "ease-in-out" | "fill-error-10" | "fill-primary-10" | "fill-success-10" | "fill-warning-20" | "filter" | "first\:mt-0" | "fixed" | "flex" | "flex-col" | "flex-grow" | "flex-nowrap" | "flex-row" | "flex-row-reverse" | "flex-wrap" | "focus-visible\:bg-muted" | "focus-visible\:border-info-default" | "focus-visible\:outline-0" | "focus-visible\:ring-1" | "focus-visible\:ring-2" | "focus-visible\:ring-info-70" | "focus-visible\:ring-inset" | "focus-visible\:ring-primary-100" | "focus-visible\:ring-primary-90" | "focus-visible\:text-intense" | "focus-visible\:text-primary-active" | "focus-visible\:text-primary-intense" | "focus\:bg-danger-default" | "focus\:bg-intense" | "focus\:border-info-default" | "focus\:border-transparent" | "focus\:outline-none" | "focus\:ring-0" | "focus\:ring-1" | "focus\:ring-2" | "focus\:ring-grey-60" | "focus\:ring-offset-0" | "focus\:text-primary-intense" | "focusable" | "font-normal" | "font-semibold" | "from-white" | "gap-0" | "gap-2" | "gap-3" | "gap-4" | "gap-5" | "gap-7" | "gap-8" | "gap-x-2" | "gap-x-3" | "gap-x-4" | "gap-x-5" | "gap-x-6" | "gap-y-2" | "grayscale" | "grid" | "grid-cols-1" | "grid-cols-2" | "grid-cols-3" | "grid-cols-\[16px_1fr\]" | "grid-cols-\[1fr_auto\]" | "grid-cols-\[200px_1fr_200px\]" | "grid-cols-\[auto_1fr\]" | "grid-cols-\[auto_1fr_auto\]" | "grid-flow-col" | "group" | "group-hover\:bg-muted" | "group-hover\:visible" | "group-last-of-type\:border-b-0" | "grow" | "grow-0" | "h-1" | "h-1px" | "h-2" | "h-3" | "h-4" | "h-5" | "h-6" | "h-\[120px\]" | "h-\[174px\]" | "h-\[1px\]" | "h-\[20px\]" | "h-\[225px\]" | "h-\[25px\]" | "h-\[2px\]" | "h-\[32px\]" | "h-\[3px\]" | "h-\[50px\]" | "h-\[56px\]" | "h-\[6px\]" | "h-\[72px\]" | "h-\[8px\]" | "h-\[9px\]" | "h-auto" | "h-full" | "hidden" | "hover\:bg-danger-muted" | "hover\:bg-default" | "hover\:bg-intense" | "hover\:bg-muted" | "hover\:bg-primary-hover" | "hover\:bg-primary-intense" | "hover\:border-intense" | "hover\:checked\:bg-primary-intense" | "hover\:cursor-pointer" | "hover\:ring-primary-90" | "hover\:text-intense" | "hover\:text-primary-active" | "hover\:text-primary-default" | "hover\:text-primary-intense" | "hover\:underline" | "icon-stroke-2" | "inactive" | "inline" | "inline-block" | "inline-flex" | "inline-grid" | "inset-0" | "inset-y-0" | "invisible" | "italic" | "items-center" | "items-stretch" | "justify-between" | "justify-center" | "justify-end" | "justify-self-center" | "justify-start" | "last\:border-r-0" | "leading-\[0px\]" | "leading-\[18px\]" | "leading-none" | "leading-tight" | "left-0" | "left-1\/2" | "left-2" | "line-clamp-1" | "line-clamp-2" | "line-clamp-3" | "line-clamp-4" | "line-clamp-5" | "line-clamp-6" | "m-3" | "m-4" | "m-\[1px\]" | "max-h-full" | "max-w-\[300px\]" | "max-w-\[320px\]" | "max-w-\[40px\]" | "max-w-\[600px\]" | "max-w-\[70px\]" | "max-w-\[940px\]" | "max-w-screen-lg" | "max-w-screen-md" | "max-w-screen-sm" | "max-w-screen-xl" | "max-w-screen-xs" | "mb-2" | "mb-3" | "mb-5" | "mb-\[-20px\]" | "mb-\[-2px\]" | "mb-\[7px\]" | "min-h-\[120px\]" | "min-h-\[50px\]" | "min-h-full" | "min-w-0" | "min-w-\[280px\]" | "min-w-full" | "ml-2" | "ml-3" | "mr-1" | "mr-4" | "mt-1" | "mt-2" | "mt-4" | "mt-5" | "mt-auto" | "mx-0" | "mx-1" | "mx-2" | "mx-3" | "mx-7" | "my-1" | "my-4" | "no-arrow" | "no-arrows" | "no-underline" | "object-cover" | "opacity-0" | "opacity-100" | "opacity-40" | "opacity-50" | "opacity-60" | "opacity-70" | "origin-\[0\%_45\%\]" | "outline-none" | "overflow-hidden" | "overflow-x-hidden" | "overflow-x-scroll" | "overflow-y-auto" | "p-1" | "p-2" | "p-3" | "p-4" | "p-5" | "p-6" | "p-\[2px\]" | "p-\[3px\]" | "p-\[56px\]" | "pb-3" | "pb-6" | "peer" | "peer-checked\/switch\:left-1" | "peer-checked\/switch\:text-primary-muted" | "peer-checked\/switch\:translate-x-5" | "peer-checked\:\[\&\>path\]\:stroke-primary-70" | "peer-checked\:\[\&\>path\]\:stroke-white" | "peer-checked\:border-primary-default" | "peer-checked\:border-transparent" | "peer-checked\:text-primary-default" | "peer-checked\:text-white" | "peer-focus\:border-info-default" | "peer-hover\:border-intense" | "peer\/switch" | "pl-4" | "pl-7" | "placeholder\:text-inactive" | "pointer-events-none" | "pr-4" | "pr-7" | "pr-\[64px\]" | "pt-3" | "px-0" | "px-1" | "px-2" | "px-3" | "px-4" | "px-5" | "px-6" | "px-7" | "px-\[14px\]" | "px-\[1px\]" | "px-\[20px\]" | "px-\[4px\]" | "px-\[60px\]" | "px-l2" | "py-1" | "py-2" | "py-3" | "py-4" | "py-5" | "py-6" | "py-7" | "py-\[14px\]" | "py-\[6px\]" | "recharts-cartesian-axis-tick-value" | "recharts-label" | "recharts-legend-item" | "recharts-legend-item-text" | "recharts-rectangle" | "recharts-sector" | "recharts-tooltip-item" | "recharts-tooltip-item-name" | "recharts-tooltip-item-separator" | "recharts-tooltip-item-value" | "recharts-tooltip-label" | "recharts-tooltip-wrapper" | "recharts-yAxis" | "relative" | "resize" | "resize-none" | "right-0" | "right-4" | "right-\[28px\]" | "ring" | "ring-0" | "ring-1" | "ring-2" | "ring-grey-30" | "ring-inset" | "ring-offset-0" | "ring-primary-80" | "rotate-45" | "rounded" | "rounded-\[2px\]" | "rounded-full" | "rounded-sm" | "row-start-1" | "row-start-2" | "scale-\[0\.55\]" | "scroll-smooth" | "scrollbar-hide" | "self-center" | "self-start" | "shadow-16dp" | "shadow-2dp" | "shadow-4dp" | "shrink" | "snap-mandatory" | "snap-start" | "snap-x" | "static" | "sticky" | "stroke-error-100" | "stroke-primary-60" | "stroke-success-40" | "stroke-warning-100" | "table" | "table-auto" | "table-fixed" | "text-\[8px\]" | "text-\[9px\]" | "text-center" | "text-danger-default" | "text-danger-inactive" | "text-danger-intense" | "text-danger-muted" | "text-default" | "text-ellipsis" | "text-error-0" | "text-error-10" | "text-error-100" | "text-error-20" | "text-error-30" | "text-error-40" | "text-error-5" | "text-error-50" | "text-error-60" | "text-error-70" | "text-error-80" | "text-error-90" | "text-grey-0" | "text-grey-10" | "text-grey-100" | "text-grey-20" | "text-grey-30" | "text-grey-40" | "text-grey-5" | "text-grey-50" | "text-grey-60" | "text-grey-70" | "text-grey-80" | "text-grey-90" | "text-inactive" | "text-info-0" | "text-info-10" | "text-info-100" | "text-info-20" | "text-info-30" | "text-info-40" | "text-info-5" | "text-info-50" | "text-info-60" | "text-info-70" | "text-info-80" | "text-info-90" | "text-info-default" | "text-info-inactive" | "text-info-intense" | "text-info-muted" | "text-intense" | "text-left" | "text-muted" | "text-primary-0" | "text-primary-10" | "text-primary-100" | "text-primary-20" | "text-primary-30" | "text-primary-40" | "text-primary-5" | "text-primary-50" | "text-primary-60" | "text-primary-70" | "text-primary-80" | "text-primary-90" | "text-primary-active" | "text-primary-default" | "text-primary-inactive" | "text-primary-intense" | "text-primary-muted" | "text-right" | "text-secondary-0" | "text-secondary-10" | "text-secondary-100" | "text-secondary-20" | "text-secondary-30" | "text-secondary-40" | "text-secondary-5" | "text-secondary-50" | "text-secondary-60" | "text-secondary-70" | "text-secondary-80" | "text-secondary-90" | "text-success-0" | "text-success-10" | "text-success-100" | "text-success-20" | "text-success-30" | "text-success-40" | "text-success-5" | "text-success-50" | "text-success-60" | "text-success-70" | "text-success-80" | "text-success-90" | "text-success-default" | "text-success-inactive" | "text-success-intense" | "text-success-muted" | "text-transparent" | "text-warning-0" | "text-warning-10" | "text-warning-100" | "text-warning-20" | "text-warning-30" | "text-warning-40" | "text-warning-5" | "text-warning-50" | "text-warning-60" | "text-warning-70" | "text-warning-80" | "text-warning-90" | "text-warning-default" | "text-warning-inactive" | "text-warning-intense" | "text-warning-muted" | "text-white" | "top-0" | "top-1\/2" | "top-\[14px\]" | "top-\[18px\]" | "top-\[24px\]" | "top-\[3px\]" | "top-\[47px\]" | "transform" | "transition" | "transition-all" | "transition-colors" | "transition-opacity" | "typography-body-default" | "typography-body-default-medium" | "typography-body-large" | "typography-body-large-medium" | "typography-body-small" | "typography-body-small-medium" | "typography-button-large" | "typography-button-medium" | "typography-button-small" | "typography-caption" | "typography-caption-default" | "typography-caption-small" | "typography-default" | "typography-default-strong" | "typography-heading" | "typography-heading-2xl" | "typography-heading-3xl" | "typography-heading-4xl" | "typography-heading-5xl" | "typography-heading-large" | "typography-heading-xl" | "typography-large" | "typography-large-heading" | "typography-large-strong" | "typography-overline-default" | "typography-overline-small" | "typography-small" | "typography-small-strong" | "typography-subheading" | "underline" | "uppercase" | "via-white" | "visible" | "visited\:text-primary-intense" | "w-1" | "w-1px" | "w-2" | "w-3" | "w-4" | "w-5" | "w-6" | "w-\[1080px\]" | "w-\[280px\]" | "w-\[32px\]" | "w-\[34px\]" | "w-\[360px\]" | "w-\[560px\]" | "w-\[56px\]" | "w-\[6px\]" | "w-\[8px\]" | "w-\[9px\]" | "w-full" | "whitespace-nowrap" | "whitespace-pre" | "z-0" | "z-10" | "z-20" | "z-40" | "z-modal";
|
1
|
+
export declare type ClassNames = "-left-1\/2" | "-m-2" | "-mt-4" | "-mx-4" | "-translate-x-1\/2" | "-translate-y-1\/2" | "-z-10" | "\!container" | "\!hidden" | "\!inline" | "\!table" | "\[\&\:\:-webkit-search-cancel-button\]\:appearance-none" | "\[\&\>\*\:not\(\:first-child\)\]\:-ml-3" | "\[\&\>\*\]\:bg-primary-active" | "\[\&\>\*\]\:hover\:bg-muted" | "\[\&\>button\]\:p-0" | "\[\&\>button\]\:text-danger-muted" | "\[\&\>button\]\:text-muted" | "\[\&\>div\:first-child\]\:px-3" | "\[\&\>div\:first-child\]\:px-5" | "\[\&\>path\]\:stroke-\[3px\]" | "\[\&\>path\]\:stroke-transparent" | "absolute" | "active\:bg-body" | "active\:bg-default" | "active\:bg-intense" | "active\:bg-primary-active" | "active\:bg-primary-intense" | "active\:bg-transparent" | "active\:ring-0" | "active\:ring-primary-90" | "active\:text-default" | "active\:text-muted" | "active\:text-primary-active" | "active\:text-primary-intense" | "align-middle" | "animate-pulse" | "appearance-none" | "aquarium-theme-dark" | "aspect-square" | "auto-cols-fr" | "before\:content-\[\'_\'\]" | "bg-black" | "bg-body" | "bg-body-intense" | "bg-cover" | "bg-current" | "bg-danger-default" | "bg-danger-intense" | "bg-default" | "bg-gradient-to-l" | "bg-gradient-to-r" | "bg-info-default" | "bg-intense" | "bg-muted" | "bg-popover-content" | "bg-primary-active" | "bg-primary-default" | "bg-primary-intense" | "bg-primary-muted" | "bg-status-announcement" | "bg-status-danger" | "bg-status-info" | "bg-status-success" | "bg-status-warning" | "bg-success-default" | "bg-success-intense" | "bg-transparent" | "bg-warning-default" | "bg-white" | "block" | "blur" | "border" | "border-0" | "border-2" | "border-\[2px\]" | "border-b" | "border-b-2" | "border-b-\[1px\]" | "border-current" | "border-danger-default" | "border-dashed" | "border-default" | "border-info-default" | "border-intense" | "border-muted" | "border-none" | "border-primary-default" | "border-r-\[1px\]" | "border-separate" | "border-solid" | "border-spacing-0" | "border-success-intense" | "border-t-2" | "border-transparent" | "bottom-0" | "break-all" | "break-words" | "capitalize" | "checked\:bg-primary-default" | "checked\:bg-primary-muted" | "checked\:border-primary-default" | "checked\:border-transparent" | "checked\:opacity-50" | "checked\:shadow-whiteInset" | "children\:border-default" | "children\:inline-block" | "children\:last\:border-b-0" | "children\:opacity-70" | "col-span-full" | "col-start-1" | "col-start-2" | "col-start-3" | "collapse" | "container" | "contents" | "cursor-default" | "cursor-not-allowed" | "cursor-pointer" | "delay-150" | "delay-300" | "disabled\:bg-body" | "disabled\:bg-default" | "disabled\:bg-primary-muted" | "disabled\:bg-transparent" | "disabled\:border-default" | "disabled\:cursor-not-allowed" | "disabled\:ring-primary-40" | "disabled\:text-inactive" | "disabled\:text-primary-inactive" | "duration-200" | "duration-300" | "ease-in-out" | "fill-error-10" | "fill-primary-10" | "fill-success-10" | "fill-warning-20" | "filter" | "first\:mt-0" | "fixed" | "flex" | "flex-col" | "flex-grow" | "flex-nowrap" | "flex-row" | "flex-row-reverse" | "flex-wrap" | "focus-visible\:bg-muted" | "focus-visible\:border-info-default" | "focus-visible\:outline-0" | "focus-visible\:ring-1" | "focus-visible\:ring-2" | "focus-visible\:ring-info-70" | "focus-visible\:ring-inset" | "focus-visible\:ring-primary-100" | "focus-visible\:ring-primary-90" | "focus-visible\:text-intense" | "focus-visible\:text-primary-active" | "focus-visible\:text-primary-intense" | "focus\:bg-danger-default" | "focus\:bg-intense" | "focus\:border-info-default" | "focus\:border-transparent" | "focus\:outline-none" | "focus\:ring-0" | "focus\:ring-1" | "focus\:ring-2" | "focus\:ring-grey-60" | "focus\:ring-offset-0" | "focus\:text-primary-intense" | "focusable" | "font-normal" | "font-semibold" | "from-white" | "gap-0" | "gap-2" | "gap-3" | "gap-4" | "gap-5" | "gap-7" | "gap-8" | "gap-x-2" | "gap-x-3" | "gap-x-4" | "gap-x-5" | "gap-x-6" | "gap-y-2" | "grayscale" | "grid" | "grid-cols-1" | "grid-cols-2" | "grid-cols-3" | "grid-cols-\[16px_1fr\]" | "grid-cols-\[1fr_auto\]" | "grid-cols-\[200px_1fr_200px\]" | "grid-cols-\[auto_1fr\]" | "grid-cols-\[auto_1fr_auto\]" | "grid-flow-col" | "group" | "group-hover\:bg-muted" | "group-hover\:visible" | "group-last-of-type\:border-b-0" | "grow" | "grow-0" | "h-1" | "h-1px" | "h-2" | "h-3" | "h-4" | "h-5" | "h-6" | "h-\[120px\]" | "h-\[174px\]" | "h-\[1px\]" | "h-\[20px\]" | "h-\[225px\]" | "h-\[25px\]" | "h-\[2px\]" | "h-\[32px\]" | "h-\[3px\]" | "h-\[50px\]" | "h-\[56px\]" | "h-\[6px\]" | "h-\[72px\]" | "h-\[8px\]" | "h-\[9px\]" | "h-auto" | "h-full" | "hidden" | "hover\:bg-danger-muted" | "hover\:bg-default" | "hover\:bg-intense" | "hover\:bg-muted" | "hover\:bg-primary-hover" | "hover\:bg-primary-intense" | "hover\:border-intense" | "hover\:checked\:bg-primary-intense" | "hover\:cursor-pointer" | "hover\:ring-primary-90" | "hover\:text-intense" | "hover\:text-primary-active" | "hover\:text-primary-default" | "hover\:text-primary-intense" | "hover\:underline" | "icon-stroke-2" | "inactive" | "inline" | "inline-block" | "inline-flex" | "inline-grid" | "inset-0" | "inset-y-0" | "invisible" | "italic" | "items-center" | "items-stretch" | "justify-between" | "justify-center" | "justify-end" | "justify-self-center" | "justify-start" | "last\:border-r-0" | "leading-\[0px\]" | "leading-\[18px\]" | "leading-none" | "leading-tight" | "left-0" | "left-1\/2" | "left-2" | "line-clamp-1" | "line-clamp-2" | "line-clamp-3" | "line-clamp-4" | "line-clamp-5" | "line-clamp-6" | "m-3" | "m-4" | "m-\[1px\]" | "max-h-full" | "max-w-\[300px\]" | "max-w-\[320px\]" | "max-w-\[40px\]" | "max-w-\[600px\]" | "max-w-\[70px\]" | "max-w-\[940px\]" | "max-w-screen-lg" | "max-w-screen-md" | "max-w-screen-sm" | "max-w-screen-xl" | "max-w-screen-xs" | "mb-2" | "mb-3" | "mb-5" | "mb-\[-20px\]" | "mb-\[-2px\]" | "mb-\[7px\]" | "min-h-\[120px\]" | "min-h-\[50px\]" | "min-h-full" | "min-w-0" | "min-w-\[280px\]" | "min-w-full" | "ml-2" | "ml-3" | "mr-1" | "mr-4" | "mt-1" | "mt-2" | "mt-4" | "mt-5" | "mt-auto" | "mx-0" | "mx-1" | "mx-2" | "mx-3" | "mx-7" | "my-1" | "my-4" | "no-arrow" | "no-arrows" | "no-underline" | "object-cover" | "opacity-0" | "opacity-100" | "opacity-40" | "opacity-50" | "opacity-60" | "opacity-70" | "origin-\[0\%_45\%\]" | "outline-none" | "overflow-hidden" | "overflow-x-auto" | "overflow-x-hidden" | "overflow-x-scroll" | "overflow-y-auto" | "p-1" | "p-2" | "p-3" | "p-4" | "p-5" | "p-6" | "p-\[2px\]" | "p-\[3px\]" | "p-\[56px\]" | "pb-3" | "pb-6" | "peer" | "peer-checked\/switch\:left-1" | "peer-checked\/switch\:text-primary-muted" | "peer-checked\/switch\:translate-x-5" | "peer-checked\:\[\&\>path\]\:stroke-primary-70" | "peer-checked\:\[\&\>path\]\:stroke-white" | "peer-checked\:border-primary-default" | "peer-checked\:border-transparent" | "peer-checked\:peer-disabled\:bg-muted" | "peer-checked\:text-primary-default" | "peer-checked\:text-white" | "peer-focus\:border-info-default" | "peer-hover\:border-intense" | "peer\/switch" | "pl-4" | "pl-7" | "placeholder\:text-inactive" | "pointer-events-none" | "pr-4" | "pr-7" | "pr-\[64px\]" | "pt-3" | "px-0" | "px-1" | "px-2" | "px-3" | "px-4" | "px-5" | "px-6" | "px-7" | "px-\[14px\]" | "px-\[1px\]" | "px-\[20px\]" | "px-\[4px\]" | "px-\[60px\]" | "px-l2" | "py-1" | "py-2" | "py-3" | "py-4" | "py-5" | "py-6" | "py-7" | "py-\[14px\]" | "py-\[6px\]" | "recharts-cartesian-axis-tick-value" | "recharts-label" | "recharts-legend-item" | "recharts-legend-item-text" | "recharts-rectangle" | "recharts-sector" | "recharts-tooltip-item" | "recharts-tooltip-item-name" | "recharts-tooltip-item-separator" | "recharts-tooltip-item-value" | "recharts-tooltip-label" | "recharts-tooltip-wrapper" | "recharts-yAxis" | "relative" | "resize" | "resize-none" | "right-0" | "right-4" | "right-\[28px\]" | "ring" | "ring-0" | "ring-1" | "ring-2" | "ring-grey-30" | "ring-inset" | "ring-offset-0" | "ring-primary-80" | "rotate-45" | "rounded" | "rounded-\[2px\]" | "rounded-full" | "rounded-sm" | "row-start-1" | "row-start-2" | "scale-\[0\.55\]" | "scroll-smooth" | "scrollbar-hide" | "self-center" | "self-start" | "shadow-16dp" | "shadow-2dp" | "shadow-4dp" | "shrink" | "snap-mandatory" | "snap-start" | "snap-x" | "static" | "sticky" | "stroke-error-100" | "stroke-primary-60" | "stroke-success-40" | "stroke-warning-100" | "table" | "table-auto" | "table-fixed" | "text-\[8px\]" | "text-\[9px\]" | "text-center" | "text-danger-default" | "text-danger-inactive" | "text-danger-intense" | "text-danger-muted" | "text-default" | "text-ellipsis" | "text-error-0" | "text-error-10" | "text-error-100" | "text-error-20" | "text-error-30" | "text-error-40" | "text-error-5" | "text-error-50" | "text-error-60" | "text-error-70" | "text-error-80" | "text-error-90" | "text-grey-0" | "text-grey-10" | "text-grey-100" | "text-grey-20" | "text-grey-30" | "text-grey-40" | "text-grey-5" | "text-grey-50" | "text-grey-60" | "text-grey-70" | "text-grey-80" | "text-grey-90" | "text-inactive" | "text-info-0" | "text-info-10" | "text-info-100" | "text-info-20" | "text-info-30" | "text-info-40" | "text-info-5" | "text-info-50" | "text-info-60" | "text-info-70" | "text-info-80" | "text-info-90" | "text-info-default" | "text-info-inactive" | "text-info-intense" | "text-info-muted" | "text-intense" | "text-left" | "text-muted" | "text-primary-0" | "text-primary-10" | "text-primary-100" | "text-primary-20" | "text-primary-30" | "text-primary-40" | "text-primary-5" | "text-primary-50" | "text-primary-60" | "text-primary-70" | "text-primary-80" | "text-primary-90" | "text-primary-active" | "text-primary-default" | "text-primary-inactive" | "text-primary-intense" | "text-primary-muted" | "text-right" | "text-secondary-0" | "text-secondary-10" | "text-secondary-100" | "text-secondary-20" | "text-secondary-30" | "text-secondary-40" | "text-secondary-5" | "text-secondary-50" | "text-secondary-60" | "text-secondary-70" | "text-secondary-80" | "text-secondary-90" | "text-success-0" | "text-success-10" | "text-success-100" | "text-success-20" | "text-success-30" | "text-success-40" | "text-success-5" | "text-success-50" | "text-success-60" | "text-success-70" | "text-success-80" | "text-success-90" | "text-success-default" | "text-success-inactive" | "text-success-intense" | "text-success-muted" | "text-transparent" | "text-warning-0" | "text-warning-10" | "text-warning-100" | "text-warning-20" | "text-warning-30" | "text-warning-40" | "text-warning-5" | "text-warning-50" | "text-warning-60" | "text-warning-70" | "text-warning-80" | "text-warning-90" | "text-warning-default" | "text-warning-inactive" | "text-warning-intense" | "text-warning-muted" | "text-white" | "top-0" | "top-1\/2" | "top-\[14px\]" | "top-\[18px\]" | "top-\[24px\]" | "top-\[3px\]" | "top-\[47px\]" | "transform" | "transition" | "transition-all" | "transition-colors" | "transition-opacity" | "typography-body-default" | "typography-body-default-medium" | "typography-body-large" | "typography-body-large-medium" | "typography-body-small" | "typography-body-small-medium" | "typography-button-large" | "typography-button-medium" | "typography-button-small" | "typography-caption" | "typography-caption-default" | "typography-caption-small" | "typography-default" | "typography-default-strong" | "typography-heading" | "typography-heading-2xl" | "typography-heading-3xl" | "typography-heading-4xl" | "typography-heading-5xl" | "typography-heading-large" | "typography-heading-xl" | "typography-large" | "typography-large-heading" | "typography-large-strong" | "typography-overline-default" | "typography-overline-small" | "typography-small" | "typography-small-strong" | "typography-subheading" | "underline" | "uppercase" | "via-white" | "visible" | "visited\:text-primary-intense" | "w-1" | "w-1px" | "w-2" | "w-3" | "w-4" | "w-5" | "w-6" | "w-\[1080px\]" | "w-\[280px\]" | "w-\[32px\]" | "w-\[34px\]" | "w-\[360px\]" | "w-\[560px\]" | "w-\[56px\]" | "w-\[6px\]" | "w-\[8px\]" | "w-\[9px\]" | "w-full" | "whitespace-nowrap" | "whitespace-pre" | "z-0" | "z-10" | "z-20" | "z-40" | "z-modal";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@aivenio/aquarium",
|
3
|
-
"version": "1.68.0
|
3
|
+
"version": "1.68.0",
|
4
4
|
"description": "Aiven Aquarium design system",
|
5
5
|
"main": "dist/system.cjs",
|
6
6
|
"module": "dist/system.mjs",
|
@@ -181,8 +181,8 @@
|
|
181
181
|
"classnames": "^2.3.1",
|
182
182
|
"downshift": "^8.2.3",
|
183
183
|
"match-sorter": "^6.3.1",
|
184
|
-
"react-aria": "^3.
|
185
|
-
"react-stately": "^3.
|
184
|
+
"react-aria": "^3.26.0",
|
185
|
+
"react-stately": "^3.24.0",
|
186
186
|
"recharts": "^2.10.3"
|
187
187
|
},
|
188
188
|
"peerDependencies": {
|
@@ -196,4 +196,4 @@
|
|
196
196
|
"resolutions": {
|
197
197
|
"webpack": "^5"
|
198
198
|
}
|
199
|
-
}
|
199
|
+
}
|
@@ -1,43 +0,0 @@
|
|
1
|
-
declare const _exports: {
|
2
|
-
body: string;
|
3
|
-
"body-intense": string;
|
4
|
-
"popover-content": string;
|
5
|
-
muted: string;
|
6
|
-
default: string;
|
7
|
-
intense: string;
|
8
|
-
primary: {
|
9
|
-
muted: string;
|
10
|
-
default: string;
|
11
|
-
intense: string;
|
12
|
-
active: string;
|
13
|
-
hover: string;
|
14
|
-
};
|
15
|
-
info: {
|
16
|
-
muted: string;
|
17
|
-
default: string;
|
18
|
-
intense: string;
|
19
|
-
};
|
20
|
-
success: {
|
21
|
-
muted: string;
|
22
|
-
default: string;
|
23
|
-
intense: string;
|
24
|
-
};
|
25
|
-
warning: {
|
26
|
-
muted: string;
|
27
|
-
default: string;
|
28
|
-
intense: string;
|
29
|
-
};
|
30
|
-
danger: {
|
31
|
-
muted: string;
|
32
|
-
default: string;
|
33
|
-
intense: string;
|
34
|
-
};
|
35
|
-
status: {
|
36
|
-
announcement: string;
|
37
|
-
info: string;
|
38
|
-
warning: string;
|
39
|
-
danger: string;
|
40
|
-
success: string;
|
41
|
-
};
|
42
|
-
};
|
43
|
-
export = _exports;
|
@@ -1,44 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
module.exports = {
|
3
|
-
"body": "var(--aquarium-background-color-body)",
|
4
|
-
"body-intense": "var(--aquarium-background-color-body-intense)",
|
5
|
-
"popover-content": "var(--aquarium-background-color-popover-content)",
|
6
|
-
"muted": "var(--aquarium-background-color-muted)",
|
7
|
-
"default": "var(--aquarium-background-color-default)",
|
8
|
-
"intense": "var(--aquarium-background-color-intense)",
|
9
|
-
"primary": {
|
10
|
-
"muted": "var(--aquarium-background-color-primary-muted)",
|
11
|
-
"default": "var(--aquarium-background-color-primary-default)",
|
12
|
-
"intense": "var(--aquarium-background-color-primary-intense)",
|
13
|
-
"active": "var(--aquarium-background-color-primary-active)",
|
14
|
-
"hover": "var(--aquarium-background-color-primary-hover)"
|
15
|
-
},
|
16
|
-
"info": {
|
17
|
-
"muted": "var(--aquarium-background-color-info-muted)",
|
18
|
-
"default": "var(--aquarium-background-color-info-default)",
|
19
|
-
"intense": "var(--aquarium-background-color-info-intense)"
|
20
|
-
},
|
21
|
-
"success": {
|
22
|
-
"muted": "var(--aquarium-background-color-success-muted)",
|
23
|
-
"default": "var(--aquarium-background-color-success-default)",
|
24
|
-
"intense": "var(--aquarium-background-color-success-intense)"
|
25
|
-
},
|
26
|
-
"warning": {
|
27
|
-
"muted": "var(--aquarium-background-color-warning-muted)",
|
28
|
-
"default": "var(--aquarium-background-color-warning-default)",
|
29
|
-
"intense": "var(--aquarium-background-color-warning-intense)"
|
30
|
-
},
|
31
|
-
"danger": {
|
32
|
-
"muted": "var(--aquarium-background-color-danger-muted)",
|
33
|
-
"default": "var(--aquarium-background-color-danger-default)",
|
34
|
-
"intense": "var(--aquarium-background-color-danger-intense)"
|
35
|
-
},
|
36
|
-
"status": {
|
37
|
-
"announcement": "var(--aquarium-background-color-status-announcement)",
|
38
|
-
"info": "var(--aquarium-background-color-status-info)",
|
39
|
-
"warning": "var(--aquarium-background-color-status-warning)",
|
40
|
-
"danger": "var(--aquarium-background-color-status-danger)",
|
41
|
-
"success": "var(--aquarium-background-color-status-success)"
|
42
|
-
}
|
43
|
-
};
|
44
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFpbHdpbmQuYmFja2dyb3VuZENvbG9yLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdGFpbHdpbmQvdGFpbHdpbmQuYmFja2dyb3VuZENvbG9yLmpzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxNQUFNLENBQUMsT0FBTyxHQUFHO0lBQ2YsTUFBTSxFQUFFLHVDQUF1QztJQUMvQyxjQUFjLEVBQUUsK0NBQStDO0lBQy9ELGlCQUFpQixFQUFFLGtEQUFrRDtJQUNyRSxPQUFPLEVBQUUsd0NBQXdDO0lBQ2pELFNBQVMsRUFBRSwwQ0FBMEM7SUFDckQsU0FBUyxFQUFFLDBDQUEwQztJQUNyRCxTQUFTLEVBQUU7UUFDVCxPQUFPLEVBQUUsZ0RBQWdEO1FBQ3pELFNBQVMsRUFBRSxrREFBa0Q7UUFDN0QsU0FBUyxFQUFFLGtEQUFrRDtRQUM3RCxRQUFRLEVBQUUsaURBQWlEO1FBQzNELE9BQU8sRUFBRSxnREFBZ0Q7S0FDMUQ7SUFDRCxNQUFNLEVBQUU7UUFDTixPQUFPLEVBQUUsNkNBQTZDO1FBQ3RELFNBQVMsRUFBRSwrQ0FBK0M7UUFDMUQsU0FBUyxFQUFFLCtDQUErQztLQUMzRDtJQUNELFNBQVMsRUFBRTtRQUNULE9BQU8sRUFBRSxnREFBZ0Q7UUFDekQsU0FBUyxFQUFFLGtEQUFrRDtRQUM3RCxTQUFTLEVBQUUsa0RBQWtEO0tBQzlEO0lBQ0QsU0FBUyxFQUFFO1FBQ1QsT0FBTyxFQUFFLGdEQUFnRDtRQUN6RCxTQUFTLEVBQUUsa0RBQWtEO1FBQzdELFNBQVMsRUFBRSxrREFBa0Q7S0FDOUQ7SUFDRCxRQUFRLEVBQUU7UUFDUixPQUFPLEVBQUUsK0NBQStDO1FBQ3hELFNBQVMsRUFBRSxpREFBaUQ7UUFDNUQsU0FBUyxFQUFFLGlEQUFpRDtLQUM3RDtJQUNELFFBQVEsRUFBRTtRQUNSLGNBQWMsRUFBRSxzREFBc0Q7UUFDdEUsTUFBTSxFQUFFLDhDQUE4QztRQUN0RCxTQUFTLEVBQUUsaURBQWlEO1FBQzVELFFBQVEsRUFBRSxnREFBZ0Q7UUFDMUQsU0FBUyxFQUFFLGlEQUFpRDtLQUM3RDtDQUNGLENBQUMifQ==
|
@@ -1,44 +0,0 @@
|
|
1
|
-
export declare const muted: string;
|
2
|
-
declare const _default: string;
|
3
|
-
export { _default as default };
|
4
|
-
export declare const intense: string;
|
5
|
-
export declare namespace primary {
|
6
|
-
const muted_1: string;
|
7
|
-
export { muted_1 as muted };
|
8
|
-
const _default_1: string;
|
9
|
-
export { _default_1 as default };
|
10
|
-
const intense_1: string;
|
11
|
-
export { intense_1 as intense };
|
12
|
-
}
|
13
|
-
export declare namespace info {
|
14
|
-
const muted_2: string;
|
15
|
-
export { muted_2 as muted };
|
16
|
-
const _default_2: string;
|
17
|
-
export { _default_2 as default };
|
18
|
-
const intense_2: string;
|
19
|
-
export { intense_2 as intense };
|
20
|
-
}
|
21
|
-
export declare namespace success {
|
22
|
-
const muted_3: string;
|
23
|
-
export { muted_3 as muted };
|
24
|
-
const _default_3: string;
|
25
|
-
export { _default_3 as default };
|
26
|
-
const intense_3: string;
|
27
|
-
export { intense_3 as intense };
|
28
|
-
}
|
29
|
-
export declare namespace warning {
|
30
|
-
const muted_4: string;
|
31
|
-
export { muted_4 as muted };
|
32
|
-
const _default_4: string;
|
33
|
-
export { _default_4 as default };
|
34
|
-
const intense_4: string;
|
35
|
-
export { intense_4 as intense };
|
36
|
-
}
|
37
|
-
export declare namespace danger {
|
38
|
-
const muted_5: string;
|
39
|
-
export { muted_5 as muted };
|
40
|
-
const _default_5: string;
|
41
|
-
export { _default_5 as default };
|
42
|
-
const intense_5: string;
|
43
|
-
export { intense_5 as intense };
|
44
|
-
}
|
@@ -1,32 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
module.exports = {
|
3
|
-
"muted": "var(--aquarium-border-color-muted)",
|
4
|
-
"default": "var(--aquarium-border-color-default)",
|
5
|
-
"intense": "var(--aquarium-border-color-intense)",
|
6
|
-
"primary": {
|
7
|
-
"muted": "var(--aquarium-border-color-primary-muted)",
|
8
|
-
"default": "var(--aquarium-border-color-primary-default)",
|
9
|
-
"intense": "var(--aquarium-border-color-primary-intense)"
|
10
|
-
},
|
11
|
-
"info": {
|
12
|
-
"muted": "var(--aquarium-border-color-info-muted)",
|
13
|
-
"default": "var(--aquarium-border-color-info-default)",
|
14
|
-
"intense": "var(--aquarium-border-color-info-intense)"
|
15
|
-
},
|
16
|
-
"success": {
|
17
|
-
"muted": "var(--aquarium-border-color-success-muted)",
|
18
|
-
"default": "var(--aquarium-border-color-success-default)",
|
19
|
-
"intense": "var(--aquarium-border-color-success-intense)"
|
20
|
-
},
|
21
|
-
"warning": {
|
22
|
-
"muted": "var(--aquarium-border-color-warning-muted)",
|
23
|
-
"default": "var(--aquarium-border-color-warning-default)",
|
24
|
-
"intense": "var(--aquarium-border-color-warning-intense)"
|
25
|
-
},
|
26
|
-
"danger": {
|
27
|
-
"muted": "var(--aquarium-border-color-danger-muted)",
|
28
|
-
"default": "var(--aquarium-border-color-danger-default)",
|
29
|
-
"intense": "var(--aquarium-border-color-danger-intense)"
|
30
|
-
}
|
31
|
-
};
|
32
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFpbHdpbmQuYm9yZGVyQ29sb3IuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi90YWlsd2luZC90YWlsd2luZC5ib3JkZXJDb2xvci5qcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsTUFBTSxDQUFDLE9BQU8sR0FBRztJQUNmLE9BQU8sRUFBRSxvQ0FBb0M7SUFDN0MsU0FBUyxFQUFFLHNDQUFzQztJQUNqRCxTQUFTLEVBQUUsc0NBQXNDO0lBQ2pELFNBQVMsRUFBRTtRQUNULE9BQU8sRUFBRSw0Q0FBNEM7UUFDckQsU0FBUyxFQUFFLDhDQUE4QztRQUN6RCxTQUFTLEVBQUUsOENBQThDO0tBQzFEO0lBQ0QsTUFBTSxFQUFFO1FBQ04sT0FBTyxFQUFFLHlDQUF5QztRQUNsRCxTQUFTLEVBQUUsMkNBQTJDO1FBQ3RELFNBQVMsRUFBRSwyQ0FBMkM7S0FDdkQ7SUFDRCxTQUFTLEVBQUU7UUFDVCxPQUFPLEVBQUUsNENBQTRDO1FBQ3JELFNBQVMsRUFBRSw4Q0FBOEM7UUFDekQsU0FBUyxFQUFFLDhDQUE4QztLQUMxRDtJQUNELFNBQVMsRUFBRTtRQUNULE9BQU8sRUFBRSw0Q0FBNEM7UUFDckQsU0FBUyxFQUFFLDhDQUE4QztRQUN6RCxTQUFTLEVBQUUsOENBQThDO0tBQzFEO0lBQ0QsUUFBUSxFQUFFO1FBQ1IsT0FBTyxFQUFFLDJDQUEyQztRQUNwRCxTQUFTLEVBQUUsNkNBQTZDO1FBQ3hELFNBQVMsRUFBRSw2Q0FBNkM7S0FDekQ7Q0FDRixDQUFDIn0=
|
@@ -1 +0,0 @@
|
|
1
|
-
export const DEFAULT: string;
|
@@ -1,5 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
module.exports = {
|
3
|
-
"DEFAULT": "var(--aquarium-border-radius-default)"
|
4
|
-
};
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFpbHdpbmQuYm9yZGVyUmFkaXVzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdGFpbHdpbmQvdGFpbHdpbmQuYm9yZGVyUmFkaXVzLmpzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxNQUFNLENBQUMsT0FBTyxHQUFHO0lBQ2YsU0FBUyxFQUFFLHVDQUF1QztDQUNuRCxDQUFDIn0=
|
@@ -1,102 +0,0 @@
|
|
1
|
-
export const white: string;
|
2
|
-
export const black: string;
|
3
|
-
export const transparent: string;
|
4
|
-
export const current: string;
|
5
|
-
export const error: {
|
6
|
-
"0": string;
|
7
|
-
"5": string;
|
8
|
-
"10": string;
|
9
|
-
"20": string;
|
10
|
-
"30": string;
|
11
|
-
"40": string;
|
12
|
-
"50": string;
|
13
|
-
"60": string;
|
14
|
-
"70": string;
|
15
|
-
"80": string;
|
16
|
-
"90": string;
|
17
|
-
"100": string;
|
18
|
-
};
|
19
|
-
export const warning: {
|
20
|
-
"0": string;
|
21
|
-
"5": string;
|
22
|
-
"10": string;
|
23
|
-
"20": string;
|
24
|
-
"30": string;
|
25
|
-
"40": string;
|
26
|
-
"50": string;
|
27
|
-
"60": string;
|
28
|
-
"70": string;
|
29
|
-
"80": string;
|
30
|
-
"90": string;
|
31
|
-
"100": string;
|
32
|
-
};
|
33
|
-
export const success: {
|
34
|
-
"0": string;
|
35
|
-
"5": string;
|
36
|
-
"10": string;
|
37
|
-
"20": string;
|
38
|
-
"30": string;
|
39
|
-
"40": string;
|
40
|
-
"50": string;
|
41
|
-
"60": string;
|
42
|
-
"70": string;
|
43
|
-
"80": string;
|
44
|
-
"90": string;
|
45
|
-
"100": string;
|
46
|
-
};
|
47
|
-
export const info: {
|
48
|
-
"0": string;
|
49
|
-
"5": string;
|
50
|
-
"10": string;
|
51
|
-
"20": string;
|
52
|
-
"30": string;
|
53
|
-
"40": string;
|
54
|
-
"50": string;
|
55
|
-
"60": string;
|
56
|
-
"70": string;
|
57
|
-
"80": string;
|
58
|
-
"90": string;
|
59
|
-
"100": string;
|
60
|
-
};
|
61
|
-
export const grey: {
|
62
|
-
"0": string;
|
63
|
-
"5": string;
|
64
|
-
"10": string;
|
65
|
-
"20": string;
|
66
|
-
"30": string;
|
67
|
-
"40": string;
|
68
|
-
"50": string;
|
69
|
-
"60": string;
|
70
|
-
"70": string;
|
71
|
-
"80": string;
|
72
|
-
"90": string;
|
73
|
-
"100": string;
|
74
|
-
};
|
75
|
-
export const secondary: {
|
76
|
-
"0": string;
|
77
|
-
"5": string;
|
78
|
-
"10": string;
|
79
|
-
"20": string;
|
80
|
-
"30": string;
|
81
|
-
"40": string;
|
82
|
-
"50": string;
|
83
|
-
"60": string;
|
84
|
-
"70": string;
|
85
|
-
"80": string;
|
86
|
-
"90": string;
|
87
|
-
"100": string;
|
88
|
-
};
|
89
|
-
export const primary: {
|
90
|
-
"0": string;
|
91
|
-
"5": string;
|
92
|
-
"10": string;
|
93
|
-
"20": string;
|
94
|
-
"30": string;
|
95
|
-
"40": string;
|
96
|
-
"50": string;
|
97
|
-
"60": string;
|
98
|
-
"70": string;
|
99
|
-
"80": string;
|
100
|
-
"90": string;
|
101
|
-
"100": string;
|
102
|
-
};
|
@@ -1,106 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
module.exports = {
|
3
|
-
"white": "var(--aquarium-colors-white)",
|
4
|
-
"black": "var(--aquarium-colors-black)",
|
5
|
-
"transparent": "var(--aquarium-colors-transparent)",
|
6
|
-
"current": "var(--aquarium-colors-current)",
|
7
|
-
"error": {
|
8
|
-
"0": "var(--aquarium-colors-error-0)",
|
9
|
-
"5": "var(--aquarium-colors-error-5)",
|
10
|
-
"10": "var(--aquarium-colors-error-10)",
|
11
|
-
"20": "var(--aquarium-colors-error-20)",
|
12
|
-
"30": "var(--aquarium-colors-error-30)",
|
13
|
-
"40": "var(--aquarium-colors-error-40)",
|
14
|
-
"50": "var(--aquarium-colors-error-50)",
|
15
|
-
"60": "var(--aquarium-colors-error-60)",
|
16
|
-
"70": "var(--aquarium-colors-error-70)",
|
17
|
-
"80": "var(--aquarium-colors-error-80)",
|
18
|
-
"90": "var(--aquarium-colors-error-90)",
|
19
|
-
"100": "var(--aquarium-colors-error-100)"
|
20
|
-
},
|
21
|
-
"warning": {
|
22
|
-
"0": "var(--aquarium-colors-warning-0)",
|
23
|
-
"5": "var(--aquarium-colors-warning-5)",
|
24
|
-
"10": "var(--aquarium-colors-warning-10)",
|
25
|
-
"20": "var(--aquarium-colors-warning-20)",
|
26
|
-
"30": "var(--aquarium-colors-warning-30)",
|
27
|
-
"40": "var(--aquarium-colors-warning-40)",
|
28
|
-
"50": "var(--aquarium-colors-warning-50)",
|
29
|
-
"60": "var(--aquarium-colors-warning-60)",
|
30
|
-
"70": "var(--aquarium-colors-warning-70)",
|
31
|
-
"80": "var(--aquarium-colors-warning-80)",
|
32
|
-
"90": "var(--aquarium-colors-warning-90)",
|
33
|
-
"100": "var(--aquarium-colors-warning-100)"
|
34
|
-
},
|
35
|
-
"success": {
|
36
|
-
"0": "var(--aquarium-colors-success-0)",
|
37
|
-
"5": "var(--aquarium-colors-success-5)",
|
38
|
-
"10": "var(--aquarium-colors-success-10)",
|
39
|
-
"20": "var(--aquarium-colors-success-20)",
|
40
|
-
"30": "var(--aquarium-colors-success-30)",
|
41
|
-
"40": "var(--aquarium-colors-success-40)",
|
42
|
-
"50": "var(--aquarium-colors-success-50)",
|
43
|
-
"60": "var(--aquarium-colors-success-60)",
|
44
|
-
"70": "var(--aquarium-colors-success-70)",
|
45
|
-
"80": "var(--aquarium-colors-success-80)",
|
46
|
-
"90": "var(--aquarium-colors-success-90)",
|
47
|
-
"100": "var(--aquarium-colors-success-100)"
|
48
|
-
},
|
49
|
-
"info": {
|
50
|
-
"0": "var(--aquarium-colors-info-0)",
|
51
|
-
"5": "var(--aquarium-colors-info-5)",
|
52
|
-
"10": "var(--aquarium-colors-info-10)",
|
53
|
-
"20": "var(--aquarium-colors-info-20)",
|
54
|
-
"30": "var(--aquarium-colors-info-30)",
|
55
|
-
"40": "var(--aquarium-colors-info-40)",
|
56
|
-
"50": "var(--aquarium-colors-info-50)",
|
57
|
-
"60": "var(--aquarium-colors-info-60)",
|
58
|
-
"70": "var(--aquarium-colors-info-70)",
|
59
|
-
"80": "var(--aquarium-colors-info-80)",
|
60
|
-
"90": "var(--aquarium-colors-info-90)",
|
61
|
-
"100": "var(--aquarium-colors-info-100)"
|
62
|
-
},
|
63
|
-
"grey": {
|
64
|
-
"0": "var(--aquarium-colors-grey-0)",
|
65
|
-
"5": "var(--aquarium-colors-grey-5)",
|
66
|
-
"10": "var(--aquarium-colors-grey-10)",
|
67
|
-
"20": "var(--aquarium-colors-grey-20)",
|
68
|
-
"30": "var(--aquarium-colors-grey-30)",
|
69
|
-
"40": "var(--aquarium-colors-grey-40)",
|
70
|
-
"50": "var(--aquarium-colors-grey-50)",
|
71
|
-
"60": "var(--aquarium-colors-grey-60)",
|
72
|
-
"70": "var(--aquarium-colors-grey-70)",
|
73
|
-
"80": "var(--aquarium-colors-grey-80)",
|
74
|
-
"90": "var(--aquarium-colors-grey-90)",
|
75
|
-
"100": "var(--aquarium-colors-grey-100)"
|
76
|
-
},
|
77
|
-
"secondary": {
|
78
|
-
"0": "var(--aquarium-colors-secondary-0)",
|
79
|
-
"5": "var(--aquarium-colors-secondary-5)",
|
80
|
-
"10": "var(--aquarium-colors-secondary-10)",
|
81
|
-
"20": "var(--aquarium-colors-secondary-20)",
|
82
|
-
"30": "var(--aquarium-colors-secondary-30)",
|
83
|
-
"40": "var(--aquarium-colors-secondary-40)",
|
84
|
-
"50": "var(--aquarium-colors-secondary-50)",
|
85
|
-
"60": "var(--aquarium-colors-secondary-60)",
|
86
|
-
"70": "var(--aquarium-colors-secondary-70)",
|
87
|
-
"80": "var(--aquarium-colors-secondary-80)",
|
88
|
-
"90": "var(--aquarium-colors-secondary-90)",
|
89
|
-
"100": "var(--aquarium-colors-secondary-100)"
|
90
|
-
},
|
91
|
-
"primary": {
|
92
|
-
"0": "var(--aquarium-colors-primary-0)",
|
93
|
-
"5": "var(--aquarium-colors-primary-5)",
|
94
|
-
"10": "var(--aquarium-colors-primary-10)",
|
95
|
-
"20": "var(--aquarium-colors-primary-20)",
|
96
|
-
"30": "var(--aquarium-colors-primary-30)",
|
97
|
-
"40": "var(--aquarium-colors-primary-40)",
|
98
|
-
"50": "var(--aquarium-colors-primary-50)",
|
99
|
-
"60": "var(--aquarium-colors-primary-60)",
|
100
|
-
"70": "var(--aquarium-colors-primary-70)",
|
101
|
-
"80": "var(--aquarium-colors-primary-80)",
|
102
|
-
"90": "var(--aquarium-colors-primary-90)",
|
103
|
-
"100": "var(--aquarium-colors-primary-100)"
|
104
|
-
}
|
105
|
-
};
|
106
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFpbHdpbmQuY29sb3JzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdGFpbHdpbmQvdGFpbHdpbmQuY29sb3JzLmpzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxNQUFNLENBQUMsT0FBTyxHQUFHO0lBQ2YsT0FBTyxFQUFFLDhCQUE4QjtJQUN2QyxPQUFPLEVBQUUsOEJBQThCO0lBQ3ZDLGFBQWEsRUFBRSxvQ0FBb0M7SUFDbkQsU0FBUyxFQUFFLGdDQUFnQztJQUMzQyxPQUFPLEVBQUU7UUFDUCxHQUFHLEVBQUUsZ0NBQWdDO1FBQ3JDLEdBQUcsRUFBRSxnQ0FBZ0M7UUFDckMsSUFBSSxFQUFFLGlDQUFpQztRQUN2QyxJQUFJLEVBQUUsaUNBQWlDO1FBQ3ZDLElBQUksRUFBRSxpQ0FBaUM7UUFDdkMsSUFBSSxFQUFFLGlDQUFpQztRQUN2QyxJQUFJLEVBQUUsaUNBQWlDO1FBQ3ZDLElBQUksRUFBRSxpQ0FBaUM7UUFDdkMsSUFBSSxFQUFFLGlDQUFpQztRQUN2QyxJQUFJLEVBQUUsaUNBQWlDO1FBQ3ZDLElBQUksRUFBRSxpQ0FBaUM7UUFDdkMsS0FBSyxFQUFFLGtDQUFrQztLQUMxQztJQUNELFNBQVMsRUFBRTtRQUNULEdBQUcsRUFBRSxrQ0FBa0M7UUFDdkMsR0FBRyxFQUFFLGtDQUFrQztRQUN2QyxJQUFJLEVBQUUsbUNBQW1DO1FBQ3pDLElBQUksRUFBRSxtQ0FBbUM7UUFDekMsSUFBSSxFQUFFLG1DQUFtQztRQUN6QyxJQUFJLEVBQUUsbUNBQW1DO1FBQ3pDLElBQUksRUFBRSxtQ0FBbUM7UUFDekMsSUFBSSxFQUFFLG1DQUFtQztRQUN6QyxJQUFJLEVBQUUsbUNBQW1DO1FBQ3pDLElBQUksRUFBRSxtQ0FBbUM7UUFDekMsSUFBSSxFQUFFLG1DQUFtQztRQUN6QyxLQUFLLEVBQUUsb0NBQW9DO0tBQzVDO0lBQ0QsU0FBUyxFQUFFO1FBQ1QsR0FBRyxFQUFFLGtDQUFrQztRQUN2QyxHQUFHLEVBQUUsa0NBQWtDO1FBQ3ZDLElBQUksRUFBRSxtQ0FBbUM7UUFDekMsSUFBSSxFQUFFLG1DQUFtQztRQUN6QyxJQUFJLEVBQUUsbUNBQW1DO1FBQ3pDLElBQUksRUFBRSxtQ0FBbUM7UUFDekMsSUFBSSxFQUFFLG1DQUFtQztRQUN6QyxJQUFJLEVBQUUsbUNBQW1DO1FBQ3pDLElBQUksRUFBRSxtQ0FBbUM7UUFDekMsSUFBSSxFQUFFLG1DQUFtQztRQUN6QyxJQUFJLEVBQUUsbUNBQW1DO1FBQ3pDLEtBQUssRUFBRSxvQ0FBb0M7S0FDNUM7SUFDRCxNQUFNLEVBQUU7UUFDTixHQUFHLEVBQUUsK0JBQStCO1FBQ3BDLEdBQUcsRUFBRSwrQkFBK0I7UUFDcEMsSUFBSSxFQUFFLGdDQUFnQztRQUN0QyxJQUFJLEVBQUUsZ0NBQWdDO1FBQ3RDLElBQUksRUFBRSxnQ0FBZ0M7UUFDdEMsSUFBSSxFQUFFLGdDQUFnQztRQUN0QyxJQUFJLEVBQUUsZ0NBQWdDO1FBQ3RDLElBQUksRUFBRSxnQ0FBZ0M7UUFDdEMsSUFBSSxFQUFFLGdDQUFnQztRQUN0QyxJQUFJLEVBQUUsZ0NBQWdDO1FBQ3RDLElBQUksRUFBRSxnQ0FBZ0M7UUFDdEMsS0FBSyxFQUFFLGlDQUFpQztLQUN6QztJQUNELE1BQU0sRUFBRTtRQUNOLEdBQUcsRUFBRSwrQkFBK0I7UUFDcEMsR0FBRyxFQUFFLCtCQUErQjtRQUNwQyxJQUFJLEVBQUUsZ0NBQWdDO1FBQ3RDLElBQUksRUFBRSxnQ0FBZ0M7UUFDdEMsSUFBSSxFQUFFLGdDQUFnQztRQUN0QyxJQUFJLEVBQUUsZ0NBQWdDO1FBQ3RDLElBQUksRUFBRSxnQ0FBZ0M7UUFDdEMsSUFBSSxFQUFFLGdDQUFnQztRQUN0QyxJQUFJLEVBQUUsZ0NBQWdDO1FBQ3RDLElBQUksRUFBRSxnQ0FBZ0M7UUFDdEMsSUFBSSxFQUFFLGdDQUFnQztRQUN0QyxLQUFLLEVBQUUsaUNBQWlDO0tBQ3pDO0lBQ0QsV0FBVyxFQUFFO1FBQ1gsR0FBRyxFQUFFLG9DQUFvQztRQUN6QyxHQUFHLEVBQUUsb0NBQW9DO1FBQ3pDLElBQUksRUFBRSxxQ0FBcUM7UUFDM0MsSUFBSSxFQUFFLHFDQUFxQztRQUMzQyxJQUFJLEVBQUUscUNBQXFDO1FBQzNDLElBQUksRUFBRSxxQ0FBcUM7UUFDM0MsSUFBSSxFQUFFLHFDQUFxQztRQUMzQyxJQUFJLEVBQUUscUNBQXFDO1FBQzNDLElBQUksRUFBRSxxQ0FBcUM7UUFDM0MsSUFBSSxFQUFFLHFDQUFxQztRQUMzQyxJQUFJLEVBQUUscUNBQXFDO1FBQzNDLEtBQUssRUFBRSxzQ0FBc0M7S0FDOUM7SUFDRCxTQUFTLEVBQUU7UUFDVCxHQUFHLEVBQUUsa0NBQWtDO1FBQ3ZDLEdBQUcsRUFBRSxrQ0FBa0M7UUFDdkMsSUFBSSxFQUFFLG1DQUFtQztRQUN6QyxJQUFJLEVBQUUsbUNBQW1DO1FBQ3pDLElBQUksRUFBRSxtQ0FBbUM7UUFDekMsSUFBSSxFQUFFLG1DQUFtQztRQUN6QyxJQUFJLEVBQUUsbUNBQW1DO1FBQ3pDLElBQUksRUFBRSxtQ0FBbUM7UUFDekMsSUFBSSxFQUFFLG1DQUFtQztRQUN6QyxJQUFJLEVBQUUsbUNBQW1DO1FBQ3pDLElBQUksRUFBRSxtQ0FBbUM7UUFDekMsS0FBSyxFQUFFLG9DQUFvQztLQUM1QztDQUNGLENBQUMifQ==
|
@@ -1,9 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
module.exports = {
|
3
|
-
"24dp": "var(--aquarium-elevations-24dp)",
|
4
|
-
"16dp": "var(--aquarium-elevations-16dp)",
|
5
|
-
"8dp": "var(--aquarium-elevations-8dp)",
|
6
|
-
"4dp": "var(--aquarium-elevations-4dp)",
|
7
|
-
"2dp": "var(--aquarium-elevations-2dp)"
|
8
|
-
};
|
9
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFpbHdpbmQuZWxldmF0aW9ucy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3RhaWx3aW5kL3RhaWx3aW5kLmVsZXZhdGlvbnMuanMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE1BQU0sQ0FBQyxPQUFPLEdBQUc7SUFDZixNQUFNLEVBQUUsaUNBQWlDO0lBQ3pDLE1BQU0sRUFBRSxpQ0FBaUM7SUFDekMsS0FBSyxFQUFFLGdDQUFnQztJQUN2QyxLQUFLLEVBQUUsZ0NBQWdDO0lBQ3ZDLEtBQUssRUFBRSxnQ0FBZ0M7Q0FDeEMsQ0FBQyJ9
|
@@ -1,22 +0,0 @@
|
|
1
|
-
declare const _exports: {
|
2
|
-
"0": string;
|
3
|
-
"1": string;
|
4
|
-
"2": string;
|
5
|
-
"3": string;
|
6
|
-
"4": string;
|
7
|
-
"5": string;
|
8
|
-
"6": string;
|
9
|
-
"7": string;
|
10
|
-
"8": string;
|
11
|
-
"9": string;
|
12
|
-
auto: string;
|
13
|
-
"1px": string;
|
14
|
-
l1: string;
|
15
|
-
l2: string;
|
16
|
-
l3: string;
|
17
|
-
l4: string;
|
18
|
-
l5: string;
|
19
|
-
l6: string;
|
20
|
-
l7: string;
|
21
|
-
};
|
22
|
-
export = _exports;
|
@@ -1,23 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
module.exports = {
|
3
|
-
"0": "var(--aquarium-margin-0)",
|
4
|
-
"1": "var(--aquarium-margin-1)",
|
5
|
-
"2": "var(--aquarium-margin-2)",
|
6
|
-
"3": "var(--aquarium-margin-3)",
|
7
|
-
"4": "var(--aquarium-margin-4)",
|
8
|
-
"5": "var(--aquarium-margin-5)",
|
9
|
-
"6": "var(--aquarium-margin-6)",
|
10
|
-
"7": "var(--aquarium-margin-7)",
|
11
|
-
"8": "var(--aquarium-margin-8)",
|
12
|
-
"9": "var(--aquarium-margin-9)",
|
13
|
-
"auto": "var(--aquarium-margin-auto)",
|
14
|
-
"1px": "var(--aquarium-margin-1px)",
|
15
|
-
"l1": "var(--aquarium-margin-l1)",
|
16
|
-
"l2": "var(--aquarium-margin-l2)",
|
17
|
-
"l3": "var(--aquarium-margin-l3)",
|
18
|
-
"l4": "var(--aquarium-margin-l4)",
|
19
|
-
"l5": "var(--aquarium-margin-l5)",
|
20
|
-
"l6": "var(--aquarium-margin-l6)",
|
21
|
-
"l7": "var(--aquarium-margin-l7)"
|
22
|
-
};
|
23
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFpbHdpbmQubWFyZ2luLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdGFpbHdpbmQvdGFpbHdpbmQubWFyZ2luLmpzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7QUFBQSxNQUFNLENBQUMsT0FBTyxHQUFHO0lBQ2YsR0FBRyxFQUFFLDBCQUEwQjtJQUMvQixHQUFHLEVBQUUsMEJBQTBCO0lBQy9CLEdBQUcsRUFBRSwwQkFBMEI7SUFDL0IsR0FBRyxFQUFFLDBCQUEwQjtJQUMvQixHQUFHLEVBQUUsMEJBQTBCO0lBQy9CLEdBQUcsRUFBRSwwQkFBMEI7SUFDL0IsR0FBRyxFQUFFLDBCQUEwQjtJQUMvQixHQUFHLEVBQUUsMEJBQTBCO0lBQy9CLEdBQUcsRUFBRSwwQkFBMEI7SUFDL0IsR0FBRyxFQUFFLDBCQUEwQjtJQUMvQixNQUFNLEVBQUUsNkJBQTZCO0lBQ3JDLEtBQUssRUFBRSw0QkFBNEI7SUFDbkMsSUFBSSxFQUFFLDJCQUEyQjtJQUNqQyxJQUFJLEVBQUUsMkJBQTJCO0lBQ2pDLElBQUksRUFBRSwyQkFBMkI7SUFDakMsSUFBSSxFQUFFLDJCQUEyQjtJQUNqQyxJQUFJLEVBQUUsMkJBQTJCO0lBQ2pDLElBQUksRUFBRSwyQkFBMkI7SUFDakMsSUFBSSxFQUFFLDJCQUEyQjtDQUNsQyxDQUFDIn0=
|
@@ -1,21 +0,0 @@
|
|
1
|
-
declare const _exports: {
|
2
|
-
"0": string;
|
3
|
-
"1": string;
|
4
|
-
"2": string;
|
5
|
-
"3": string;
|
6
|
-
"4": string;
|
7
|
-
"5": string;
|
8
|
-
"6": string;
|
9
|
-
"7": string;
|
10
|
-
"8": string;
|
11
|
-
"9": string;
|
12
|
-
"1px": string;
|
13
|
-
l1: string;
|
14
|
-
l2: string;
|
15
|
-
l3: string;
|
16
|
-
l4: string;
|
17
|
-
l5: string;
|
18
|
-
l6: string;
|
19
|
-
l7: string;
|
20
|
-
};
|
21
|
-
export = _exports;
|
@@ -1,22 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
module.exports = {
|
3
|
-
"0": "var(--aquarium-spacing-0)",
|
4
|
-
"1": "var(--aquarium-spacing-1)",
|
5
|
-
"2": "var(--aquarium-spacing-2)",
|
6
|
-
"3": "var(--aquarium-spacing-3)",
|
7
|
-
"4": "var(--aquarium-spacing-4)",
|
8
|
-
"5": "var(--aquarium-spacing-5)",
|
9
|
-
"6": "var(--aquarium-spacing-6)",
|
10
|
-
"7": "var(--aquarium-spacing-7)",
|
11
|
-
"8": "var(--aquarium-spacing-8)",
|
12
|
-
"9": "var(--aquarium-spacing-9)",
|
13
|
-
"1px": "var(--aquarium-spacing-1px)",
|
14
|
-
"l1": "var(--aquarium-spacing-l1)",
|
15
|
-
"l2": "var(--aquarium-spacing-l2)",
|
16
|
-
"l3": "var(--aquarium-spacing-l3)",
|
17
|
-
"l4": "var(--aquarium-spacing-l4)",
|
18
|
-
"l5": "var(--aquarium-spacing-l5)",
|
19
|
-
"l6": "var(--aquarium-spacing-l6)",
|
20
|
-
"l7": "var(--aquarium-spacing-l7)"
|
21
|
-
};
|
22
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGFpbHdpbmQuc3BhY2luZy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL3RhaWx3aW5kL3RhaWx3aW5kLnNwYWNpbmcuanMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IjtBQUFBLE1BQU0sQ0FBQyxPQUFPLEdBQUc7SUFDZixHQUFHLEVBQUUsMkJBQTJCO0lBQ2hDLEdBQUcsRUFBRSwyQkFBMkI7SUFDaEMsR0FBRyxFQUFFLDJCQUEyQjtJQUNoQyxHQUFHLEVBQUUsMkJBQTJCO0lBQ2hDLEdBQUcsRUFBRSwyQkFBMkI7SUFDaEMsR0FBRyxFQUFFLDJCQUEyQjtJQUNoQyxHQUFHLEVBQUUsMkJBQTJCO0lBQ2hDLEdBQUcsRUFBRSwyQkFBMkI7SUFDaEMsR0FBRyxFQUFFLDJCQUEyQjtJQUNoQyxHQUFHLEVBQUUsMkJBQTJCO0lBQ2hDLEtBQUssRUFBRSw2QkFBNkI7SUFDcEMsSUFBSSxFQUFFLDRCQUE0QjtJQUNsQyxJQUFJLEVBQUUsNEJBQTRCO0lBQ2xDLElBQUksRUFBRSw0QkFBNEI7SUFDbEMsSUFBSSxFQUFFLDRCQUE0QjtJQUNsQyxJQUFJLEVBQUUsNEJBQTRCO0lBQ2xDLElBQUksRUFBRSw0QkFBNEI7SUFDbEMsSUFBSSxFQUFFLDRCQUE0QjtDQUNuQyxDQUFDIn0=
|