@aivenio/aquarium 1.4.1 → 1.5.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.
Files changed (33) hide show
  1. package/dist/_variables.scss +1 -1
  2. package/dist/_variables_timescale.scss +1 -1
  3. package/dist/atoms.cjs +380 -142
  4. package/dist/atoms.mjs +379 -142
  5. package/dist/src/common/Card/Card.d.ts +35 -0
  6. package/dist/src/common/Card/Card.js +50 -0
  7. package/dist/src/common/Select/Select.js +4 -4
  8. package/dist/src/common/index.d.ts +1 -0
  9. package/dist/src/common/index.js +2 -1
  10. package/dist/src/components/Avatar/Avatar.js +2 -2
  11. package/dist/src/components/Banner/Banner.js +2 -2
  12. package/dist/src/components/Card/Card.d.ts +8 -47
  13. package/dist/src/components/Card/Card.js +15 -27
  14. package/dist/src/components/Card/Compact.d.ts +36 -0
  15. package/dist/src/components/Card/Compact.js +33 -0
  16. package/dist/src/components/Card/types.d.ts +44 -0
  17. package/dist/src/components/Card/types.js +2 -0
  18. package/dist/src/components/Carousel/Carousel.js +4 -2
  19. package/dist/src/components/Chip/Chip.d.ts +1 -1
  20. package/dist/src/components/Chip/Chip.js +2 -2
  21. package/dist/src/components/Combobox/Combobox.js +4 -6
  22. package/dist/src/components/MultiSelect/MultiSelect.d.ts +1 -1
  23. package/dist/src/components/MultiSelect/MultiSelect.js +13 -8
  24. package/dist/src/components/Select/Select.js +2 -2
  25. package/dist/src/components/Tabs/Tabs.js +54 -18
  26. package/dist/src/components/Timeline/Timeline.js +2 -2
  27. package/dist/styles.css +39 -23
  28. package/dist/styles_timescaledb.css +39 -23
  29. package/dist/system.cjs +908 -742
  30. package/dist/system.mjs +875 -709
  31. package/dist/tsconfig.module.tsbuildinfo +1 -1
  32. package/dist/types/tailwindGenerated.d.ts +1 -1
  33. package/package.json +1 -1
@@ -700,6 +700,9 @@ input[type='number'].no-arrows {
700
700
  .top-0 {
701
701
  top: 0 !important;
702
702
  }
703
+ .left-0 {
704
+ left: 0 !important;
705
+ }
703
706
  .right-0 {
704
707
  right: 0 !important;
705
708
  }
@@ -727,9 +730,6 @@ input[type='number'].no-arrows {
727
730
  .bottom-0 {
728
731
  bottom: 0 !important;
729
732
  }
730
- .left-0 {
731
- left: 0 !important;
732
- }
733
733
  .z-modal {
734
734
  z-index: 100 !important;
735
735
  }
@@ -772,6 +772,10 @@ input[type='number'].no-arrows {
772
772
  .m-\[1px\] {
773
773
  margin: 1px !important;
774
774
  }
775
+ .-mx-4 {
776
+ margin-left: -12px !important;
777
+ margin-right: -12px !important;
778
+ }
775
779
  .mx-7 {
776
780
  margin-left: 32px !important;
777
781
  margin-right: 32px !important;
@@ -806,6 +810,9 @@ input[type='number'].no-arrows {
806
810
  .mt-5 {
807
811
  margin-top: 16px !important;
808
812
  }
813
+ .-mt-4 {
814
+ margin-top: -12px !important;
815
+ }
809
816
  .mt-1 {
810
817
  margin-top: 2px !important;
811
818
  }
@@ -884,6 +891,12 @@ input[type='number'].no-arrows {
884
891
  .h-\[20px\] {
885
892
  height: 20px !important;
886
893
  }
894
+ .h-\[174px\] {
895
+ height: 174px !important;
896
+ }
897
+ .h-\[225px\] {
898
+ height: 225px !important;
899
+ }
887
900
  .h-5 {
888
901
  height: 16px !important;
889
902
  }
@@ -920,12 +933,6 @@ input[type='number'].no-arrows {
920
933
  .h-\[6px\] {
921
934
  height: 6px !important;
922
935
  }
923
- .h-\[174px\] {
924
- height: 174px !important;
925
- }
926
- .h-\[225px\] {
927
- height: 225px !important;
928
- }
929
936
  .h-1px {
930
937
  height: 1px !important;
931
938
  }
@@ -956,6 +963,9 @@ input[type='number'].no-arrows {
956
963
  .w-full {
957
964
  width: 100% !important;
958
965
  }
966
+ .w-\[280px\] {
967
+ width: 280px !important;
968
+ }
959
969
  .w-5 {
960
970
  width: 16px !important;
961
971
  }
@@ -977,9 +987,6 @@ input[type='number'].no-arrows {
977
987
  .w-\[6px\] {
978
988
  width: 6px !important;
979
989
  }
980
- .w-\[280px\] {
981
- width: 280px !important;
982
- }
983
990
  .w-1px {
984
991
  width: 1px !important;
985
992
  }
@@ -995,15 +1002,15 @@ input[type='number'].no-arrows {
995
1002
  .w-\[56px\] {
996
1003
  width: 56px !important;
997
1004
  }
1005
+ .min-w-\[280px\] {
1006
+ min-width: 280px !important;
1007
+ }
998
1008
  .min-w-full {
999
1009
  min-width: 100% !important;
1000
1010
  }
1001
1011
  .min-w-0 {
1002
1012
  min-width: 0px !important;
1003
1013
  }
1004
- .min-w-\[280px\] {
1005
- min-width: 280px !important;
1006
- }
1007
1014
  .max-w-\[600px\] {
1008
1015
  max-width: 600px !important;
1009
1016
  }
@@ -1172,6 +1179,10 @@ input[type='number'].no-arrows {
1172
1179
  grid-gap: 32px !important;
1173
1180
  gap: 32px !important;
1174
1181
  }
1182
+ .gap-5 {
1183
+ grid-gap: 16px !important;
1184
+ gap: 16px !important;
1185
+ }
1175
1186
  .gap-3 {
1176
1187
  grid-gap: 8px !important;
1177
1188
  gap: 8px !important;
@@ -1180,10 +1191,6 @@ input[type='number'].no-arrows {
1180
1191
  grid-gap: 4px !important;
1181
1192
  gap: 4px !important;
1182
1193
  }
1183
- .gap-5 {
1184
- grid-gap: 16px !important;
1185
- gap: 16px !important;
1186
- }
1187
1194
  .gap-8 {
1188
1195
  grid-gap: 40px !important;
1189
1196
  gap: 40px !important;
@@ -1246,9 +1253,15 @@ input[type='number'].no-arrows {
1246
1253
  .rounded {
1247
1254
  border-radius: 4px !important;
1248
1255
  }
1256
+ .rounded-\[2px\] {
1257
+ border-radius: 2px !important;
1258
+ }
1249
1259
  .border {
1250
1260
  border-width: 1px !important;
1251
1261
  }
1262
+ .border-\[1px\] {
1263
+ border-width: 1px !important;
1264
+ }
1252
1265
  .border-0 {
1253
1266
  border-width: 0px !important;
1254
1267
  }
@@ -1546,6 +1559,9 @@ input[type='number'].no-arrows {
1546
1559
  padding-left: 0 !important;
1547
1560
  padding-right: 0 !important;
1548
1561
  }
1562
+ .pt-3 {
1563
+ padding-top: 8px !important;
1564
+ }
1549
1565
  .pb-6 {
1550
1566
  padding-bottom: 24px !important;
1551
1567
  }
@@ -2260,14 +2276,14 @@ input[type='number'].no-arrows {
2260
2276
  --tw-ring-opacity: 1 !important;
2261
2277
  --tw-ring-color: rgb(3 153 227 / var(--tw-ring-opacity)) !important;
2262
2278
  }
2263
- .active\:bg-primary-90:active {
2264
- --tw-bg-opacity: 1 !important;
2265
- background-color: rgb(1 116 186 / var(--tw-bg-opacity)) !important;
2266
- }
2267
2279
  .active\:bg-grey-5:active {
2268
2280
  --tw-bg-opacity: 1 !important;
2269
2281
  background-color: rgb(237 237 240 / var(--tw-bg-opacity)) !important;
2270
2282
  }
2283
+ .active\:bg-primary-90:active {
2284
+ --tw-bg-opacity: 1 !important;
2285
+ background-color: rgb(1 116 186 / var(--tw-bg-opacity)) !important;
2286
+ }
2271
2287
  .active\:bg-transparent:active {
2272
2288
  background-color: transparent !important;
2273
2289
  }