@aivenio/aquarium 1.34.0 → 1.36.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 +2 -2
- package/dist/atoms.mjs +2 -2
- package/dist/src/atoms/Chip/Chip.js +2 -2
- package/dist/src/atoms/Section/Section.d.ts +9 -3
- package/dist/src/atoms/Section/Section.js +10 -7
- package/dist/src/icons/loading.js +1 -1
- package/dist/src/molecules/EmptyState/EmptyState.d.ts +37 -6
- package/dist/src/molecules/EmptyState/EmptyState.js +33 -18
- package/dist/src/molecules/Modal/Modal.d.ts +1 -1
- package/dist/src/molecules/Section/Section.d.ts +41 -5
- package/dist/src/molecules/Section/Section.js +72 -14
- package/dist/src/molecules/TagLabel/TagLabel.d.ts +6 -0
- package/dist/src/molecules/TagLabel/TagLabel.js +14 -3
- package/dist/src/utils/useMeasure.d.ts +7 -0
- package/dist/src/utils/useMeasure.js +27 -0
- package/dist/styles.css +23 -6
- package/dist/styles_timescaledb.css +23 -6
- package/dist/system.cjs +282 -171
- package/dist/system.mjs +279 -168
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/dist/types/tailwindGenerated.d.ts +1 -1
- package/package.json +2 -2
package/dist/styles.css
CHANGED
@@ -1006,6 +1006,9 @@ input[type='number'].no-arrows {
|
|
1006
1006
|
.row-start-1{
|
1007
1007
|
grid-row-start: 1;
|
1008
1008
|
}
|
1009
|
+
.row-start-2{
|
1010
|
+
grid-row-start: 2;
|
1011
|
+
}
|
1009
1012
|
.-m-2{
|
1010
1013
|
margin: -4px;
|
1011
1014
|
}
|
@@ -1389,15 +1392,15 @@ input[type='number'].no-arrows {
|
|
1389
1392
|
.grid-cols-3{
|
1390
1393
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
1391
1394
|
}
|
1395
|
+
.grid-cols-\[auto_1fr\]{
|
1396
|
+
grid-template-columns: auto 1fr;
|
1397
|
+
}
|
1392
1398
|
.grid-cols-\[16px_1fr\]{
|
1393
1399
|
grid-template-columns: 16px 1fr;
|
1394
1400
|
}
|
1395
1401
|
.grid-cols-\[1fr_auto\]{
|
1396
1402
|
grid-template-columns: 1fr auto;
|
1397
1403
|
}
|
1398
|
-
.grid-cols-\[auto_1fr\]{
|
1399
|
-
grid-template-columns: auto 1fr;
|
1400
|
-
}
|
1401
1404
|
.grid-cols-\[200px_1fr_200px\]{
|
1402
1405
|
grid-template-columns: 200px 1fr 200px;
|
1403
1406
|
}
|
@@ -1726,9 +1729,17 @@ input[type='number'].no-arrows {
|
|
1726
1729
|
background-color: #ffadb3;
|
1727
1730
|
background-color: var(--aquarium-colors-error-20, #ffadb3);
|
1728
1731
|
}
|
1729
|
-
.bg-
|
1730
|
-
background-color: #
|
1731
|
-
background-color: var(--aquarium-colors-
|
1732
|
+
.bg-secondary-90{
|
1733
|
+
background-color: #eb4610;
|
1734
|
+
background-color: var(--aquarium-colors-secondary-90, #eb4610);
|
1735
|
+
}
|
1736
|
+
.bg-success-90{
|
1737
|
+
background-color: #008e00;
|
1738
|
+
background-color: var(--aquarium-colors-success-90, #008e00);
|
1739
|
+
}
|
1740
|
+
.bg-primary-90{
|
1741
|
+
background-color: #222f95;
|
1742
|
+
background-color: var(--aquarium-colors-primary-90, #222f95);
|
1732
1743
|
}
|
1733
1744
|
.bg-gradient-to-r{
|
1734
1745
|
background-image: linear-gradient(to right, var(--tw-gradient-stops));
|
@@ -1773,6 +1784,9 @@ input[type='number'].no-arrows {
|
|
1773
1784
|
.p-2{
|
1774
1785
|
padding: 4px;
|
1775
1786
|
}
|
1787
|
+
.p-\[56px\]{
|
1788
|
+
padding: 56px;
|
1789
|
+
}
|
1776
1790
|
.p-1{
|
1777
1791
|
padding: 2px;
|
1778
1792
|
}
|
@@ -1908,6 +1922,9 @@ input[type='number'].no-arrows {
|
|
1908
1922
|
.italic{
|
1909
1923
|
font-style: italic;
|
1910
1924
|
}
|
1925
|
+
.leading-tight{
|
1926
|
+
line-height: 1.25;
|
1927
|
+
}
|
1911
1928
|
.leading-none{
|
1912
1929
|
line-height: 1;
|
1913
1930
|
}
|
@@ -1005,6 +1005,9 @@ input[type='number'].no-arrows {
|
|
1005
1005
|
.row-start-1{
|
1006
1006
|
grid-row-start: 1;
|
1007
1007
|
}
|
1008
|
+
.row-start-2{
|
1009
|
+
grid-row-start: 2;
|
1010
|
+
}
|
1008
1011
|
.-m-2{
|
1009
1012
|
margin: -4px;
|
1010
1013
|
}
|
@@ -1388,15 +1391,15 @@ input[type='number'].no-arrows {
|
|
1388
1391
|
.grid-cols-3{
|
1389
1392
|
grid-template-columns: repeat(3, minmax(0, 1fr));
|
1390
1393
|
}
|
1394
|
+
.grid-cols-\[auto_1fr\]{
|
1395
|
+
grid-template-columns: auto 1fr;
|
1396
|
+
}
|
1391
1397
|
.grid-cols-\[16px_1fr\]{
|
1392
1398
|
grid-template-columns: 16px 1fr;
|
1393
1399
|
}
|
1394
1400
|
.grid-cols-\[1fr_auto\]{
|
1395
1401
|
grid-template-columns: 1fr auto;
|
1396
1402
|
}
|
1397
|
-
.grid-cols-\[auto_1fr\]{
|
1398
|
-
grid-template-columns: auto 1fr;
|
1399
|
-
}
|
1400
1403
|
.grid-cols-\[200px_1fr_200px\]{
|
1401
1404
|
grid-template-columns: 200px 1fr 200px;
|
1402
1405
|
}
|
@@ -1725,9 +1728,17 @@ input[type='number'].no-arrows {
|
|
1725
1728
|
background-color: #ffadb3;
|
1726
1729
|
background-color: var(--aquarium-colors-error-20, #ffadb3);
|
1727
1730
|
}
|
1728
|
-
.bg-
|
1729
|
-
background-color: #
|
1730
|
-
background-color: var(--aquarium-colors-
|
1731
|
+
.bg-secondary-90{
|
1732
|
+
background-color: #eb4610;
|
1733
|
+
background-color: var(--aquarium-colors-secondary-90, #eb4610);
|
1734
|
+
}
|
1735
|
+
.bg-success-90{
|
1736
|
+
background-color: #008e00;
|
1737
|
+
background-color: var(--aquarium-colors-success-90, #008e00);
|
1738
|
+
}
|
1739
|
+
.bg-primary-90{
|
1740
|
+
background-color: #222f95;
|
1741
|
+
background-color: var(--aquarium-colors-primary-90, #0174ba);
|
1731
1742
|
}
|
1732
1743
|
.bg-gradient-to-r{
|
1733
1744
|
background-image: linear-gradient(to right, var(--tw-gradient-stops));
|
@@ -1772,6 +1783,9 @@ input[type='number'].no-arrows {
|
|
1772
1783
|
.p-2{
|
1773
1784
|
padding: 4px;
|
1774
1785
|
}
|
1786
|
+
.p-\[56px\]{
|
1787
|
+
padding: 56px;
|
1788
|
+
}
|
1775
1789
|
.p-1{
|
1776
1790
|
padding: 2px;
|
1777
1791
|
}
|
@@ -1907,6 +1921,9 @@ input[type='number'].no-arrows {
|
|
1907
1921
|
.italic{
|
1908
1922
|
font-style: italic;
|
1909
1923
|
}
|
1924
|
+
.leading-tight{
|
1925
|
+
line-height: 1.25;
|
1926
|
+
}
|
1910
1927
|
.leading-none{
|
1911
1928
|
line-height: 1;
|
1912
1929
|
}
|