@aivenio/aquarium 1.37.0 → 1.38.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/README.md +18 -0
- package/dist/_variables.scss +1 -1
- package/dist/_variables_timescale.scss +1 -1
- package/dist/atoms.cjs +90 -8
- package/dist/atoms.mjs +90 -8
- package/dist/src/atoms/Banner/Banner.js +2 -2
- package/dist/src/atoms/Section/Section.js +3 -3
- package/dist/src/atoms/Switch/Switch.js +8 -6
- package/dist/src/atoms/Typography/Typography.js +1 -1
- package/dist/src/icons/ban.d.ts +9 -0
- package/dist/src/icons/ban.js +11 -0
- package/dist/src/icons/index.d.ts +1 -0
- package/dist/src/icons/index.js +2 -1
- package/dist/src/molecules/Combobox/Combobox.d.ts +10 -3
- package/dist/src/molecules/Combobox/Combobox.js +5 -5
- package/dist/src/molecules/ControlLabel/ControlLabel.js +2 -2
- package/dist/src/molecules/DataList/DataList.d.ts +3 -8
- package/dist/src/molecules/DataList/DataList.js +16 -32
- package/dist/src/molecules/DataTable/DataTable.d.ts +3 -8
- package/dist/src/molecules/DataTable/DataTable.js +24 -29
- package/dist/src/molecules/Dialog/Dialog.js +6 -4
- package/dist/src/molecules/EmptyState/EmptyState.js +2 -2
- package/dist/src/molecules/Grid/Grid.d.ts +25 -2
- package/dist/src/molecules/Grid/Grid.js +43 -2
- package/dist/src/molecules/Grid/GridItem.d.ts +3 -0
- package/dist/src/molecules/Grid/GridItem.js +4 -1
- package/dist/src/molecules/Input/Input.js +2 -1
- package/dist/src/molecules/List/List.d.ts +11 -1
- package/dist/src/molecules/List/List.js +13 -3
- package/dist/src/molecules/MultiSelect/MultiSelect.d.ts +2 -2
- package/dist/src/molecules/MultiSelect/MultiSelect.js +5 -5
- package/dist/src/molecules/Section/Section.d.ts +20 -8
- package/dist/src/molecules/Section/Section.js +25 -14
- package/dist/src/test/config.js +2 -2
- package/dist/src/utils/form/Label/Label.js +1 -1
- package/dist/src/utils/table/types.d.ts +18 -5
- package/dist/src/utils/table/types.js +1 -1
- package/dist/styles.css +22 -15
- package/dist/styles_timescaledb.css +22 -15
- package/dist/system.cjs +418 -284
- package/dist/system.mjs +410 -276
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/dist/types/tailwindGenerated.d.ts +1 -1
- package/package.json +1 -1
@@ -1163,6 +1163,9 @@ input[type='number'].no-arrows {
|
|
1163
1163
|
.h-2{
|
1164
1164
|
height: 4px;
|
1165
1165
|
}
|
1166
|
+
.h-\[72px\]{
|
1167
|
+
height: 72px;
|
1168
|
+
}
|
1166
1169
|
.h-\[2px\]{
|
1167
1170
|
height: 2px;
|
1168
1171
|
}
|
@@ -1696,6 +1699,10 @@ input[type='number'].no-arrows {
|
|
1696
1699
|
background-color: #292a31;
|
1697
1700
|
background-color: var(--aquarium-colors-grey-90, #292a31);
|
1698
1701
|
}
|
1702
|
+
.bg-primary-70{
|
1703
|
+
background-color: #5865cd;
|
1704
|
+
background-color: var(--aquarium-colors-primary-70, #0399e3);
|
1705
|
+
}
|
1699
1706
|
.bg-grey-30{
|
1700
1707
|
background-color: #b4b4bb;
|
1701
1708
|
background-color: var(--aquarium-colors-grey-30, #b4b4bb);
|
@@ -1882,6 +1889,9 @@ input[type='number'].no-arrows {
|
|
1882
1889
|
.pl-7{
|
1883
1890
|
padding-left: 32px;
|
1884
1891
|
}
|
1892
|
+
.pr-7{
|
1893
|
+
padding-right: 32px;
|
1894
|
+
}
|
1885
1895
|
.pb-3{
|
1886
1896
|
padding-bottom: 8px;
|
1887
1897
|
}
|
@@ -2449,8 +2459,8 @@ input[type='number'].no-arrows {
|
|
2449
2459
|
.checked\:bg-opacity-40:checked{
|
2450
2460
|
--tw-bg-opacity: 0.4;
|
2451
2461
|
}
|
2452
|
-
.checked\:opacity-
|
2453
|
-
opacity: 0.
|
2462
|
+
.checked\:opacity-50:checked{
|
2463
|
+
opacity: 0.5;
|
2454
2464
|
}
|
2455
2465
|
.checked\:shadow-whiteInset:checked{
|
2456
2466
|
--tw-shadow: var(--aquarium-box-shadow-white-inset, inset 0 0 0 3px rgba(255,255,255,1));
|
@@ -2477,9 +2487,9 @@ input[type='number'].no-arrows {
|
|
2477
2487
|
background-color: #ededf0;
|
2478
2488
|
background-color: var(--aquarium-colors-grey-5, #ededf0);
|
2479
2489
|
}
|
2480
|
-
.hover\:bg-grey-
|
2481
|
-
background-color: #
|
2482
|
-
background-color: var(--aquarium-colors-grey-
|
2490
|
+
.hover\:bg-grey-20:hover{
|
2491
|
+
background-color: #d2d2d6;
|
2492
|
+
background-color: var(--aquarium-colors-grey-20, #d2d2d6);
|
2483
2493
|
}
|
2484
2494
|
.hover\:bg-primary-90:hover{
|
2485
2495
|
background-color: #222f95;
|
@@ -2524,12 +2534,9 @@ input[type='number'].no-arrows {
|
|
2524
2534
|
.hover\:ring-primary-90:hover{
|
2525
2535
|
--tw-ring-color: var(--aquarium-colors-primary-90, #0174ba);
|
2526
2536
|
}
|
2527
|
-
.hover\:checked\:bg-primary-
|
2528
|
-
background-color: #
|
2529
|
-
background-color: var(--aquarium-colors-primary-
|
2530
|
-
}
|
2531
|
-
.focus\:border:focus{
|
2532
|
-
border-width: 1px;
|
2537
|
+
.hover\:checked\:bg-primary-70:checked:hover{
|
2538
|
+
background-color: #5865cd;
|
2539
|
+
background-color: var(--aquarium-colors-primary-70, #0399e3);
|
2533
2540
|
}
|
2534
2541
|
.focus\:border-info-70:focus{
|
2535
2542
|
border-color: #0399e3;
|
@@ -2797,6 +2804,10 @@ input[type='number'].no-arrows {
|
|
2797
2804
|
color: #e3e9ff;
|
2798
2805
|
color: var(--aquarium-colors-primary-10, #e0f5fe);
|
2799
2806
|
}
|
2807
|
+
.peer\/switch:checked~.peer-checked\/switch\:text-primary-60{
|
2808
|
+
color: #818eec;
|
2809
|
+
color: var(--aquarium-colors-primary-60, #02a8f3);
|
2810
|
+
}
|
2800
2811
|
.peer:hover~.peer-hover\:border-grey-50{
|
2801
2812
|
border-color: #787885;
|
2802
2813
|
border-color: var(--aquarium-colors-grey-50, #787885);
|
@@ -2805,10 +2816,6 @@ input[type='number'].no-arrows {
|
|
2805
2816
|
border-color: #0399e3;
|
2806
2817
|
border-color: var(--aquarium-colors-info-70, #0399e3);
|
2807
2818
|
}
|
2808
|
-
.peer\/switch:disabled~.peer-disabled\/switch\:bg-grey-0{
|
2809
|
-
background-color: #f7f7fa;
|
2810
|
-
background-color: var(--aquarium-colors-grey-0, #f7f7fa);
|
2811
|
-
}
|
2812
2819
|
.children\:inline-block>*{
|
2813
2820
|
display: inline-block;
|
2814
2821
|
}
|