@geomak/ui 5.5.3 → 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 +830 -127
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +629 -188
- package/dist/index.d.ts +629 -188
- package/dist/index.js +819 -129
- package/dist/index.js.map +1 -1
- package/dist/styles.css +34 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -734,6 +734,9 @@ video {
|
|
|
734
734
|
.visible {
|
|
735
735
|
visibility: visible;
|
|
736
736
|
}
|
|
737
|
+
.invisible {
|
|
738
|
+
visibility: hidden;
|
|
739
|
+
}
|
|
737
740
|
.collapse {
|
|
738
741
|
visibility: collapse;
|
|
739
742
|
}
|
|
@@ -813,6 +816,9 @@ video {
|
|
|
813
816
|
.top-4 {
|
|
814
817
|
top: 1rem;
|
|
815
818
|
}
|
|
819
|
+
.isolate {
|
|
820
|
+
isolation: isolate;
|
|
821
|
+
}
|
|
816
822
|
.z-10 {
|
|
817
823
|
z-index: 10;
|
|
818
824
|
}
|
|
@@ -932,6 +938,9 @@ video {
|
|
|
932
938
|
.mt-6 {
|
|
933
939
|
margin-top: 1.5rem;
|
|
934
940
|
}
|
|
941
|
+
.mt-7 {
|
|
942
|
+
margin-top: 1.75rem;
|
|
943
|
+
}
|
|
935
944
|
.block {
|
|
936
945
|
display: block;
|
|
937
946
|
}
|
|
@@ -1182,6 +1191,9 @@ video {
|
|
|
1182
1191
|
.w-\[316px\] {
|
|
1183
1192
|
width: 316px;
|
|
1184
1193
|
}
|
|
1194
|
+
.w-\[34rem\] {
|
|
1195
|
+
width: 34rem;
|
|
1196
|
+
}
|
|
1185
1197
|
.w-\[3px\] {
|
|
1186
1198
|
width: 3px;
|
|
1187
1199
|
}
|
|
@@ -1191,6 +1203,10 @@ video {
|
|
|
1191
1203
|
.w-\[calc\(100\%-2rem\)\] {
|
|
1192
1204
|
width: calc(100% - 2rem);
|
|
1193
1205
|
}
|
|
1206
|
+
.w-fit {
|
|
1207
|
+
width: -moz-fit-content;
|
|
1208
|
+
width: fit-content;
|
|
1209
|
+
}
|
|
1194
1210
|
.w-full {
|
|
1195
1211
|
width: 100%;
|
|
1196
1212
|
}
|
|
@@ -1252,6 +1268,9 @@ video {
|
|
|
1252
1268
|
.flex-shrink-0 {
|
|
1253
1269
|
flex-shrink: 0;
|
|
1254
1270
|
}
|
|
1271
|
+
.shrink {
|
|
1272
|
+
flex-shrink: 1;
|
|
1273
|
+
}
|
|
1255
1274
|
.grow {
|
|
1256
1275
|
flex-grow: 1;
|
|
1257
1276
|
}
|
|
@@ -1385,6 +1404,9 @@ video {
|
|
|
1385
1404
|
.grid-cols-9 {
|
|
1386
1405
|
grid-template-columns: repeat(9, minmax(0, 1fr));
|
|
1387
1406
|
}
|
|
1407
|
+
.grid-cols-\[1fr_auto\] {
|
|
1408
|
+
grid-template-columns: 1fr auto;
|
|
1409
|
+
}
|
|
1388
1410
|
.grid-rows-1 {
|
|
1389
1411
|
grid-template-rows: repeat(1, minmax(0, 1fr));
|
|
1390
1412
|
}
|
|
@@ -1544,9 +1566,15 @@ video {
|
|
|
1544
1566
|
margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
1545
1567
|
margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
|
|
1546
1568
|
}
|
|
1569
|
+
.self-start {
|
|
1570
|
+
align-self: flex-start;
|
|
1571
|
+
}
|
|
1547
1572
|
.self-stretch {
|
|
1548
1573
|
align-self: stretch;
|
|
1549
1574
|
}
|
|
1575
|
+
.overflow-auto {
|
|
1576
|
+
overflow: auto;
|
|
1577
|
+
}
|
|
1550
1578
|
.overflow-hidden {
|
|
1551
1579
|
overflow: hidden;
|
|
1552
1580
|
}
|
|
@@ -2302,6 +2330,9 @@ video {
|
|
|
2302
2330
|
.hover\:border-border-strong:hover {
|
|
2303
2331
|
border-color: var(--color-border-strong);
|
|
2304
2332
|
}
|
|
2333
|
+
.hover\:border-status-error:hover {
|
|
2334
|
+
border-color: var(--color-error);
|
|
2335
|
+
}
|
|
2305
2336
|
.hover\:bg-accent:hover {
|
|
2306
2337
|
background-color: var(--color-accent);
|
|
2307
2338
|
}
|
|
@@ -2353,6 +2384,9 @@ video {
|
|
|
2353
2384
|
.focus-visible\:border-accent:focus-visible {
|
|
2354
2385
|
border-color: var(--color-accent);
|
|
2355
2386
|
}
|
|
2387
|
+
.focus-visible\:text-accent:focus-visible {
|
|
2388
|
+
color: var(--color-accent);
|
|
2389
|
+
}
|
|
2356
2390
|
.focus-visible\:ring-1:focus-visible {
|
|
2357
2391
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2358
2392
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|