@aivenio/aquarium 1.22.0-rc1 → 1.23.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 +14 -14
- package/dist/_variables_timescale.scss +2 -2
- package/dist/atoms.cjs +54 -51
- package/dist/atoms.mjs +54 -51
- package/dist/src/atoms/Alert/Alert.js +2 -2
- package/dist/src/atoms/Banner/Banner.js +3 -3
- package/dist/src/atoms/Checkbox/Checkbox.js +6 -6
- package/dist/src/atoms/RadioButton/RadioButton.js +4 -4
- package/dist/src/atoms/Switch/Switch.js +3 -3
- package/dist/src/molecules/Alert/Alert.js +2 -2
- package/dist/src/molecules/Banner/Banner.d.ts +3 -3
- package/dist/src/molecules/Banner/Banner.js +5 -3
- package/dist/src/molecules/Breadcrumbs/Breadcrumbs.js +2 -2
- package/dist/src/molecules/Button/Button.js +6 -7
- package/dist/src/molecules/DataList/DataList.d.ts +8 -2
- package/dist/src/molecules/DataList/DataList.js +5 -3
- package/dist/src/molecules/DataList/DataListSkeleton.d.ts +8 -0
- package/dist/src/molecules/DataList/DataListSkeleton.js +15 -0
- package/dist/src/molecules/DataTable/DataTable.d.ts +8 -2
- package/dist/src/molecules/DataTable/DataTable.js +5 -3
- package/dist/src/molecules/EmptyState/EmptyState.d.ts +5 -3
- package/dist/src/molecules/EmptyState/EmptyState.js +8 -3
- package/dist/src/molecules/Link/Link.js +1 -1
- package/dist/src/molecules/Navigation/Navigation.js +2 -2
- package/dist/src/molecules/PageHeader/PageHeader.d.ts +5 -3
- package/dist/src/molecules/PageHeader/PageHeader.js +6 -17
- package/dist/src/molecules/Section/Section.d.ts +3 -2
- package/dist/src/molecules/Section/Section.js +4 -16
- package/dist/src/molecules/Tabs/Tabs.js +3 -3
- package/dist/src/utils/ContrastRatio.d.ts +11 -0
- package/dist/src/utils/ContrastRatio.js +54 -0
- package/dist/src/utils/constants.js +3 -3
- package/dist/src/utils/link.d.ts +2 -0
- package/dist/src/utils/link.js +2 -0
- package/dist/src/utils/table/types.d.ts +4 -0
- package/dist/styles.css +133 -156
- package/dist/styles_timescaledb.css +112 -135
- package/dist/system.cjs +592 -533
- package/dist/system.mjs +552 -493
- package/dist/tailwind.config.js +0 -3
- package/dist/tailwind.theme.json +14 -14
- package/dist/tokens.json +16 -14
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/dist/types/tailwindGenerated.d.ts +1 -1
- package/package.json +4 -4
package/dist/tailwind.config.js
CHANGED
package/dist/tailwind.theme.json
CHANGED
@@ -341,24 +341,24 @@
|
|
341
341
|
"secondary-10": "var(--aquarium-colors-secondary-10, #fee8d0)",
|
342
342
|
"secondary-5": "var(--aquarium-colors-secondary-5, #fff3e8)",
|
343
343
|
"secondary-0": "var(--aquarium-colors-secondary-0, #fffbf8)",
|
344
|
-
"primary-100": "var(--aquarium-colors-primary-100,
|
345
|
-
"primary-90": "var(--aquarium-colors-primary-90, #
|
346
|
-
"primary-80": "var(--aquarium-colors-primary-80, #
|
347
|
-
"primary-70": "var(--aquarium-colors-primary-70, #
|
348
|
-
"primary-60": "var(--aquarium-colors-primary-60, #
|
349
|
-
"primary-50": "var(--aquarium-colors-primary-50, #
|
350
|
-
"primary-40": "var(--aquarium-colors-primary-40, #
|
351
|
-
"primary-30": "var(--aquarium-colors-primary-30, #
|
352
|
-
"primary-20": "var(--aquarium-colors-primary-20, #
|
353
|
-
"primary-10": "var(--aquarium-colors-primary-10, #
|
354
|
-
"primary-5": "var(--aquarium-colors-primary-5, #
|
355
|
-
"primary-0": "var(--aquarium-colors-primary-0, #
|
344
|
+
"primary-100": "var(--aquarium-colors-primary-100, #a70045)",
|
345
|
+
"primary-90": "var(--aquarium-colors-primary-90, #c60443)",
|
346
|
+
"primary-80": "var(--aquarium-colors-primary-80, #e41a4a)",
|
347
|
+
"primary-70": "var(--aquarium-colors-primary-70, #ff3554)",
|
348
|
+
"primary-60": "var(--aquarium-colors-primary-60, #ff5275)",
|
349
|
+
"primary-50": "var(--aquarium-colors-primary-50, #ff6f94)",
|
350
|
+
"primary-40": "var(--aquarium-colors-primary-40, #ff8db0)",
|
351
|
+
"primary-30": "var(--aquarium-colors-primary-30, #ffa9c9)",
|
352
|
+
"primary-20": "var(--aquarium-colors-primary-20, #ffc4de)",
|
353
|
+
"primary-10": "var(--aquarium-colors-primary-10, #ffdeef)",
|
354
|
+
"primary-5": "var(--aquarium-colors-primary-5, #ffe8f4)",
|
355
|
+
"primary-0": "var(--aquarium-colors-primary-0, #fff9fc)",
|
356
356
|
"grey-20": "var(--aquarium-colors-grey-20, #d2d2d6)",
|
357
|
+
"navyBlue-100": "var(--aquarium-colors-navyBlue-100, #30375e)",
|
357
358
|
"transparent": "var(--aquarium-colors-transparent, transparent)",
|
358
359
|
"white": "var(--aquarium-colors-white, white)",
|
359
360
|
"black": "var(--aquarium-colors-black, black)",
|
360
|
-
"current": "var(--aquarium-colors-current, currentColor)"
|
361
|
-
"navyBlue-100": "#30375E"
|
361
|
+
"current": "var(--aquarium-colors-current, currentColor)"
|
362
362
|
},
|
363
363
|
"gap": {
|
364
364
|
"0": "0",
|
package/dist/tokens.json
CHANGED
@@ -85,7 +85,8 @@
|
|
85
85
|
"primary-20": "#b4e5fb",
|
86
86
|
"primary-10": "#e0f5fe",
|
87
87
|
"primary-5": "#effaff",
|
88
|
-
"primary-0": "#f9fdff"
|
88
|
+
"primary-0": "#f9fdff",
|
89
|
+
"navyBlue-100": "#30375e"
|
89
90
|
},
|
90
91
|
"typography": {
|
91
92
|
"sizes": [
|
@@ -633,19 +634,20 @@
|
|
633
634
|
"secondary-10": "#fee8d0",
|
634
635
|
"secondary-5": "#fff3e8",
|
635
636
|
"secondary-0": "#fffbf8",
|
636
|
-
"primary-100": "
|
637
|
-
"primary-90": "#
|
638
|
-
"primary-80": "#
|
639
|
-
"primary-70": "#
|
640
|
-
"primary-60": "#
|
641
|
-
"primary-50": "#
|
642
|
-
"primary-40": "#
|
643
|
-
"primary-30": "#
|
644
|
-
"primary-20": "#
|
645
|
-
"primary-10": "#
|
646
|
-
"primary-5": "#
|
647
|
-
"primary-0": "#
|
648
|
-
"grey-20": "#d2d2d6"
|
637
|
+
"primary-100": "#a70045",
|
638
|
+
"primary-90": "#c60443",
|
639
|
+
"primary-80": "#e41a4a",
|
640
|
+
"primary-70": "#ff3554",
|
641
|
+
"primary-60": "#ff5275",
|
642
|
+
"primary-50": "#ff6f94",
|
643
|
+
"primary-40": "#ff8db0",
|
644
|
+
"primary-30": "#ffa9c9",
|
645
|
+
"primary-20": "#ffc4de",
|
646
|
+
"primary-10": "#ffdeef",
|
647
|
+
"primary-5": "#ffe8f4",
|
648
|
+
"primary-0": "#fff9fc",
|
649
|
+
"grey-20": "#d2d2d6",
|
650
|
+
"navyBlue-100": "#30375e"
|
649
651
|
},
|
650
652
|
"typography": {
|
651
653
|
"sizes": [
|