@aivenio/aquarium 1.80.1 → 2.1.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/README.md +10 -2
- package/dist/atoms.cjs +150 -41
- package/dist/atoms.mjs +149 -41
- package/dist/src/atoms/DataList/DataList.d.ts +1 -0
- package/dist/src/atoms/DataList/DataList.js +4 -3
- package/dist/src/atoms/Modal/Modal.d.ts +287 -3
- package/dist/src/atoms/Modal/Modal.js +121 -31
- package/dist/src/atoms/Select/Select.js +3 -2
- package/dist/src/icons/disasterRecovery.d.ts +9 -0
- package/dist/src/icons/disasterRecovery.js +11 -0
- package/dist/src/icons/index.d.ts +1 -0
- package/dist/src/icons/index.js +2 -1
- package/dist/src/molecules/DataList/DataList.d.ts +11 -11
- package/dist/src/molecules/DataList/DataList.js +41 -21
- package/dist/src/molecules/DataList/DataListComponents.d.ts +8 -1
- package/dist/src/molecules/DataList/DataListComponents.js +13 -5
- package/dist/src/molecules/DataList/DataListGroup.d.ts +5 -4
- package/dist/src/molecules/DataList/DataListGroup.js +24 -20
- package/dist/src/molecules/DataList/DataListSkeleton.js +2 -2
- package/dist/src/molecules/Drawer/Drawer.d.ts +1 -1
- package/dist/src/molecules/Drawer/Drawer.js +37 -53
- package/dist/src/molecules/Modal/Modal.d.ts +3 -8
- package/dist/src/molecules/Modal/Modal.js +31 -50
- package/dist/src/molecules/Modal/ModalTitle.d.ts +5 -0
- package/dist/src/molecules/Modal/ModalTitle.js +20 -0
- package/dist/styles.css +25 -4
- package/dist/system.cjs +780 -647
- package/dist/system.mjs +745 -612
- package/dist/tsconfig.module.tsbuildinfo +1 -1
- package/dist/types/tailwindGenerated.d.ts +1 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
@@ -1077,6 +1077,9 @@ input[type='number'].no-arrows {
|
|
1077
1077
|
.mb-5{
|
1078
1078
|
margin-bottom: 16px;
|
1079
1079
|
}
|
1080
|
+
.mb-6{
|
1081
|
+
margin-bottom: 24px;
|
1082
|
+
}
|
1080
1083
|
.mb-\[-20px\]{
|
1081
1084
|
margin-bottom: -20px;
|
1082
1085
|
}
|
@@ -1260,6 +1263,9 @@ input[type='number'].no-arrows {
|
|
1260
1263
|
.h-auto{
|
1261
1264
|
height: auto;
|
1262
1265
|
}
|
1266
|
+
.h-dvh{
|
1267
|
+
height: 100dvh;
|
1268
|
+
}
|
1263
1269
|
.h-full{
|
1264
1270
|
height: 100%;
|
1265
1271
|
}
|
@@ -1335,6 +1341,9 @@ input[type='number'].no-arrows {
|
|
1335
1341
|
.w-auto{
|
1336
1342
|
width: auto;
|
1337
1343
|
}
|
1344
|
+
.w-dvw{
|
1345
|
+
width: 100dvw;
|
1346
|
+
}
|
1338
1347
|
.w-full{
|
1339
1348
|
width: 100%;
|
1340
1349
|
}
|
@@ -1669,6 +1678,10 @@ input[type='number'].no-arrows {
|
|
1669
1678
|
border-radius: 9999px;
|
1670
1679
|
border-radius: var(--aquarium-border-radius-full);
|
1671
1680
|
}
|
1681
|
+
.rounded-none{
|
1682
|
+
border-radius: 0px;
|
1683
|
+
border-radius: var(--aquarium-border-radius-none);
|
1684
|
+
}
|
1672
1685
|
.rounded-sm{
|
1673
1686
|
border-radius: 0.125rem;
|
1674
1687
|
border-radius: var(--aquarium-border-radius-sm);
|
@@ -2141,6 +2154,10 @@ input[type='number'].no-arrows {
|
|
2141
2154
|
border-color: white;
|
2142
2155
|
border-color: var(--aquarium-colors-white);
|
2143
2156
|
}
|
2157
|
+
.border-b-transparent{
|
2158
|
+
border-bottom-color: transparent;
|
2159
|
+
border-bottom-color: var(--aquarium-colors-transparent);
|
2160
|
+
}
|
2144
2161
|
.bg-black{
|
2145
2162
|
background-color: black;
|
2146
2163
|
background-color: var(--aquarium-colors-black);
|
@@ -2757,6 +2774,10 @@ input[type='number'].no-arrows {
|
|
2757
2774
|
padding-left: 24px;
|
2758
2775
|
padding-right: 24px;
|
2759
2776
|
}
|
2777
|
+
.py-0{
|
2778
|
+
padding-top: 0px;
|
2779
|
+
padding-bottom: 0px;
|
2780
|
+
}
|
2760
2781
|
.py-1{
|
2761
2782
|
padding-top: 2px;
|
2762
2783
|
padding-bottom: 2px;
|
@@ -3746,10 +3767,6 @@ input[type='number'].no-arrows {
|
|
3746
3767
|
.active\:ring-primary-default:active{
|
3747
3768
|
--tw-ring-color: var(--aquarium-border-color-primary-default);
|
3748
3769
|
}
|
3749
|
-
.group:last-of-type .group-last-of-type\:border-b-0{
|
3750
|
-
border-bottom-width: 0px;
|
3751
|
-
border-bottom-width: var(--aquarium-border-width-0);
|
3752
|
-
}
|
3753
3770
|
.peer\/switch:checked~.peer-checked\/switch\:left-1{
|
3754
3771
|
left: 2px;
|
3755
3772
|
}
|
@@ -4398,6 +4415,10 @@ input[type='number'].no-arrows {
|
|
4398
4415
|
.\[\&\>\*\:not\(\:first-child\)\]\:-ml-3>*:not(:first-child){
|
4399
4416
|
margin-left: -8px;
|
4400
4417
|
}
|
4418
|
+
.\[\&\>\*\]\:border-b-transparent>*{
|
4419
|
+
border-bottom-color: transparent;
|
4420
|
+
border-bottom-color: var(--aquarium-colors-transparent);
|
4421
|
+
}
|
4401
4422
|
.\[\&\>\*\]\:bg-primary-active>*{
|
4402
4423
|
background-color: rgba(243,246,255,1);
|
4403
4424
|
background-color: var(--aquarium-background-color-primary-active);
|