@geomak/ui 6.26.0 → 6.27.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/index.cjs +87 -52
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +87 -52
- package/dist/index.js.map +1 -1
- package/dist/styles.css +36 -3
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1050,6 +1050,9 @@ video {
|
|
|
1050
1050
|
.mr-2 {
|
|
1051
1051
|
margin-right: 0.5rem;
|
|
1052
1052
|
}
|
|
1053
|
+
.mr-auto {
|
|
1054
|
+
margin-right: auto;
|
|
1055
|
+
}
|
|
1053
1056
|
.mt-0\.5 {
|
|
1054
1057
|
margin-top: 0.125rem;
|
|
1055
1058
|
}
|
|
@@ -1234,6 +1237,9 @@ video {
|
|
|
1234
1237
|
.max-h-\[90dvh\] {
|
|
1235
1238
|
max-height: 90dvh;
|
|
1236
1239
|
}
|
|
1240
|
+
.max-h-\[calc\(100vh-2rem\)\] {
|
|
1241
|
+
max-height: calc(100vh - 2rem);
|
|
1242
|
+
}
|
|
1237
1243
|
.min-h-\[200px\] {
|
|
1238
1244
|
min-height: 200px;
|
|
1239
1245
|
}
|
|
@@ -1449,6 +1455,9 @@ video {
|
|
|
1449
1455
|
.max-w-\[40ch\] {
|
|
1450
1456
|
max-width: 40ch;
|
|
1451
1457
|
}
|
|
1458
|
+
.max-w-\[calc\(100vw-1rem\)\] {
|
|
1459
|
+
max-width: calc(100vw - 1rem);
|
|
1460
|
+
}
|
|
1452
1461
|
.max-w-full {
|
|
1453
1462
|
max-width: 100%;
|
|
1454
1463
|
}
|
|
@@ -1526,6 +1535,14 @@ video {
|
|
|
1526
1535
|
.animate-check-pop {
|
|
1527
1536
|
animation: check-pop 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
1528
1537
|
}
|
|
1538
|
+
@keyframes pulse {
|
|
1539
|
+
50% {
|
|
1540
|
+
opacity: .5;
|
|
1541
|
+
}
|
|
1542
|
+
}
|
|
1543
|
+
.animate-pulse {
|
|
1544
|
+
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
|
1545
|
+
}
|
|
1529
1546
|
@keyframes spin {
|
|
1530
1547
|
to {
|
|
1531
1548
|
transform: rotate(360deg);
|
|
@@ -1740,9 +1757,16 @@ video {
|
|
|
1740
1757
|
.gap-8 {
|
|
1741
1758
|
gap: 2rem;
|
|
1742
1759
|
}
|
|
1760
|
+
.gap-x-4 {
|
|
1761
|
+
-moz-column-gap: 1rem;
|
|
1762
|
+
column-gap: 1rem;
|
|
1763
|
+
}
|
|
1743
1764
|
.gap-y-1 {
|
|
1744
1765
|
row-gap: 0.25rem;
|
|
1745
1766
|
}
|
|
1767
|
+
.gap-y-3 {
|
|
1768
|
+
row-gap: 0.75rem;
|
|
1769
|
+
}
|
|
1746
1770
|
.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) {
|
|
1747
1771
|
--tw-space-y-reverse: 0;
|
|
1748
1772
|
margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -2188,9 +2212,6 @@ video {
|
|
|
2188
2212
|
.pr-2\.5 {
|
|
2189
2213
|
padding-right: 0.625rem;
|
|
2190
2214
|
}
|
|
2191
|
-
.pr-3 {
|
|
2192
|
-
padding-right: 0.75rem;
|
|
2193
|
-
}
|
|
2194
2215
|
.pr-8 {
|
|
2195
2216
|
padding-right: 2rem;
|
|
2196
2217
|
}
|
|
@@ -2977,6 +2998,18 @@ video {
|
|
|
2977
2998
|
.sm\:grid-cols-2 {
|
|
2978
2999
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2979
3000
|
}
|
|
3001
|
+
.sm\:flex-row {
|
|
3002
|
+
flex-direction: row;
|
|
3003
|
+
}
|
|
3004
|
+
.sm\:border-r {
|
|
3005
|
+
border-right-width: 1px;
|
|
3006
|
+
}
|
|
3007
|
+
.sm\:border-border {
|
|
3008
|
+
border-color: var(--color-border);
|
|
3009
|
+
}
|
|
3010
|
+
.sm\:pr-3 {
|
|
3011
|
+
padding-right: 0.75rem;
|
|
3012
|
+
}
|
|
2980
3013
|
}
|
|
2981
3014
|
@media (min-width: 768px) {
|
|
2982
3015
|
.md\:flex {
|
package/package.json
CHANGED