@aivenio/aquarium 1.13.0 → 1.15.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/_variables_timescale.scss +1 -1
- package/dist/atoms.cjs +190 -106
- package/dist/atoms.mjs +189 -106
- package/dist/src/atoms/DataList/DataList.d.ts +3 -1
- package/dist/src/atoms/DataList/DataList.js +5 -5
- package/dist/src/atoms/Navigation/Navigation.d.ts +20 -0
- package/dist/src/atoms/Navigation/Navigation.js +49 -0
- package/dist/src/atoms/PageHeader/PageHeader.d.ts +13 -0
- package/dist/src/atoms/PageHeader/PageHeader.js +43 -0
- package/dist/src/atoms/Table/Table.d.ts +4 -3
- package/dist/src/atoms/Table/Table.js +17 -7
- package/dist/src/atoms/index.d.ts +1 -0
- package/dist/src/atoms/index.js +2 -1
- package/dist/src/molecules/Button/Button.d.ts +1 -1
- package/dist/src/molecules/Button/Button.js +4 -4
- package/dist/src/molecules/DataList/DataList.d.ts +3 -3
- package/dist/src/molecules/DataList/DataList.js +19 -6
- package/dist/src/molecules/DataTable/DataTable.d.ts +3 -3
- package/dist/src/molecules/DataTable/DataTable.js +18 -6
- package/dist/src/molecules/DropdownMenu/DropdownMenu.d.ts +11 -5
- package/dist/src/molecules/DropdownMenu/DropdownMenu.js +2 -1
- package/dist/src/molecules/Modal/Modal.d.ts +5 -0
- package/dist/src/molecules/Modal/Modal.js +4 -3
- package/dist/src/molecules/Navigation/Navigation.d.ts +19 -0
- package/dist/src/molecules/Navigation/Navigation.js +27 -0
- package/dist/src/molecules/PageHeader/PageHeader.d.ts +2 -0
- package/dist/src/molecules/PageHeader/PageHeader.js +10 -9
- package/dist/src/molecules/Stepper/Stepper.js +2 -1
- package/dist/src/molecules/index.d.ts +1 -0
- package/dist/src/molecules/index.js +2 -1
- package/dist/src/utils/table/types.d.ts +19 -1
- package/dist/src/utils/table/types.js +2 -1
- package/dist/styles.css +29 -16
- package/dist/styles_timescaledb.css +29 -16
- package/dist/system.cjs +1661 -1453
- package/dist/system.mjs +1219 -1012
- package/dist/tokens.json +4 -4
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/dist/types/tailwindGenerated.d.ts +1 -1
- package/package.json +2 -2
package/dist/tokens.json
CHANGED
@@ -160,7 +160,7 @@
|
|
160
160
|
"style": {
|
161
161
|
"fontFamily": "Inter",
|
162
162
|
"fontSize": "16px",
|
163
|
-
"fontWeight":
|
163
|
+
"fontWeight": 500,
|
164
164
|
"fontStyle": "normal",
|
165
165
|
"lineHeight": 1.5,
|
166
166
|
"textTransform": "none"
|
@@ -186,7 +186,7 @@
|
|
186
186
|
"style": {
|
187
187
|
"fontFamily": "Inter",
|
188
188
|
"fontSize": "14px",
|
189
|
-
"fontWeight":
|
189
|
+
"fontWeight": 500,
|
190
190
|
"fontStyle": "normal",
|
191
191
|
"lineHeight": 1.42,
|
192
192
|
"textTransform": "none"
|
@@ -720,7 +720,7 @@
|
|
720
720
|
"style": {
|
721
721
|
"fontFamily": "Inter",
|
722
722
|
"fontSize": "16px",
|
723
|
-
"fontWeight":
|
723
|
+
"fontWeight": 500,
|
724
724
|
"fontStyle": "normal",
|
725
725
|
"lineHeight": 1.5,
|
726
726
|
"textTransform": "none"
|
@@ -746,7 +746,7 @@
|
|
746
746
|
"style": {
|
747
747
|
"fontFamily": "Inter",
|
748
748
|
"fontSize": "14px",
|
749
|
-
"fontWeight":
|
749
|
+
"fontWeight": 500,
|
750
750
|
"fontStyle": "normal",
|
751
751
|
"lineHeight": 1.42,
|
752
752
|
"textTransform": "none"
|