@geomak/ui 5.6.0 → 5.7.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/dist/index.cjs +471 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +534 -188
- package/dist/index.d.ts +534 -188
- package/dist/index.js +460 -22
- package/dist/index.js.map +1 -1
- package/dist/styles.css +18 -3
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -816,6 +816,9 @@ video {
|
|
|
816
816
|
.top-4 {
|
|
817
817
|
top: 1rem;
|
|
818
818
|
}
|
|
819
|
+
.isolate {
|
|
820
|
+
isolation: isolate;
|
|
821
|
+
}
|
|
819
822
|
.z-10 {
|
|
820
823
|
z-index: 10;
|
|
821
824
|
}
|
|
@@ -935,6 +938,9 @@ video {
|
|
|
935
938
|
.mt-6 {
|
|
936
939
|
margin-top: 1.5rem;
|
|
937
940
|
}
|
|
941
|
+
.mt-7 {
|
|
942
|
+
margin-top: 1.75rem;
|
|
943
|
+
}
|
|
938
944
|
.block {
|
|
939
945
|
display: block;
|
|
940
946
|
}
|
|
@@ -1185,6 +1191,9 @@ video {
|
|
|
1185
1191
|
.w-\[316px\] {
|
|
1186
1192
|
width: 316px;
|
|
1187
1193
|
}
|
|
1194
|
+
.w-\[34rem\] {
|
|
1195
|
+
width: 34rem;
|
|
1196
|
+
}
|
|
1188
1197
|
.w-\[3px\] {
|
|
1189
1198
|
width: 3px;
|
|
1190
1199
|
}
|
|
@@ -1395,9 +1404,6 @@ video {
|
|
|
1395
1404
|
.grid-cols-9 {
|
|
1396
1405
|
grid-template-columns: repeat(9, minmax(0, 1fr));
|
|
1397
1406
|
}
|
|
1398
|
-
.grid-cols-\[1fr_auto\] {
|
|
1399
|
-
grid-template-columns: 1fr auto;
|
|
1400
|
-
}
|
|
1401
1407
|
.grid-rows-1 {
|
|
1402
1408
|
grid-template-rows: repeat(1, minmax(0, 1fr));
|
|
1403
1409
|
}
|
|
@@ -1557,9 +1563,15 @@ video {
|
|
|
1557
1563
|
margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1558
1564
|
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
|
|
1559
1565
|
}
|
|
1566
|
+
.self-start {
|
|
1567
|
+
align-self: flex-start;
|
|
1568
|
+
}
|
|
1560
1569
|
.self-stretch {
|
|
1561
1570
|
align-self: stretch;
|
|
1562
1571
|
}
|
|
1572
|
+
.overflow-auto {
|
|
1573
|
+
overflow: auto;
|
|
1574
|
+
}
|
|
1563
1575
|
.overflow-hidden {
|
|
1564
1576
|
overflow: hidden;
|
|
1565
1577
|
}
|
|
@@ -2315,6 +2327,9 @@ video {
|
|
|
2315
2327
|
.hover\:border-border-strong:hover {
|
|
2316
2328
|
border-color: var(--color-border-strong);
|
|
2317
2329
|
}
|
|
2330
|
+
.hover\:border-status-error:hover {
|
|
2331
|
+
border-color: var(--color-error);
|
|
2332
|
+
}
|
|
2318
2333
|
.hover\:bg-accent:hover {
|
|
2319
2334
|
background-color: var(--color-accent);
|
|
2320
2335
|
}
|