@geomak/ui 5.6.0 → 5.7.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 +447 -2
- 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 +436 -4
- package/dist/index.js.map +1 -1
- package/dist/styles.css +18 -0
- 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
|
}
|
|
@@ -1557,9 +1566,15 @@ video {
|
|
|
1557
1566
|
margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1558
1567
|
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
|
|
1559
1568
|
}
|
|
1569
|
+
.self-start {
|
|
1570
|
+
align-self: flex-start;
|
|
1571
|
+
}
|
|
1560
1572
|
.self-stretch {
|
|
1561
1573
|
align-self: stretch;
|
|
1562
1574
|
}
|
|
1575
|
+
.overflow-auto {
|
|
1576
|
+
overflow: auto;
|
|
1577
|
+
}
|
|
1563
1578
|
.overflow-hidden {
|
|
1564
1579
|
overflow: hidden;
|
|
1565
1580
|
}
|
|
@@ -2315,6 +2330,9 @@ video {
|
|
|
2315
2330
|
.hover\:border-border-strong:hover {
|
|
2316
2331
|
border-color: var(--color-border-strong);
|
|
2317
2332
|
}
|
|
2333
|
+
.hover\:border-status-error:hover {
|
|
2334
|
+
border-color: var(--color-error);
|
|
2335
|
+
}
|
|
2318
2336
|
.hover\:bg-accent:hover {
|
|
2319
2337
|
background-color: var(--color-accent);
|
|
2320
2338
|
}
|