@geomak/ui 5.5.2 → 5.6.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 +441 -179
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +134 -30
- package/dist/index.d.ts +134 -30
- package/dist/index.js +441 -179
- package/dist/index.js.map +1 -1
- package/dist/styles.css +19 -8
- 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
|
}
|
|
@@ -1191,6 +1194,10 @@ video {
|
|
|
1191
1194
|
.w-\[calc\(100\%-2rem\)\] {
|
|
1192
1195
|
width: calc(100% - 2rem);
|
|
1193
1196
|
}
|
|
1197
|
+
.w-fit {
|
|
1198
|
+
width: -moz-fit-content;
|
|
1199
|
+
width: fit-content;
|
|
1200
|
+
}
|
|
1194
1201
|
.w-full {
|
|
1195
1202
|
width: 100%;
|
|
1196
1203
|
}
|
|
@@ -1252,6 +1259,9 @@ video {
|
|
|
1252
1259
|
.flex-shrink-0 {
|
|
1253
1260
|
flex-shrink: 0;
|
|
1254
1261
|
}
|
|
1262
|
+
.shrink {
|
|
1263
|
+
flex-shrink: 1;
|
|
1264
|
+
}
|
|
1255
1265
|
.grow {
|
|
1256
1266
|
flex-grow: 1;
|
|
1257
1267
|
}
|
|
@@ -1385,6 +1395,9 @@ video {
|
|
|
1385
1395
|
.grid-cols-9 {
|
|
1386
1396
|
grid-template-columns: repeat(9, minmax(0, 1fr));
|
|
1387
1397
|
}
|
|
1398
|
+
.grid-cols-\[1fr_auto\] {
|
|
1399
|
+
grid-template-columns: 1fr auto;
|
|
1400
|
+
}
|
|
1388
1401
|
.grid-rows-1 {
|
|
1389
1402
|
grid-template-rows: repeat(1, minmax(0, 1fr));
|
|
1390
1403
|
}
|
|
@@ -2152,8 +2165,8 @@ video {
|
|
|
2152
2165
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2153
2166
|
transition-duration: 150ms;
|
|
2154
2167
|
}
|
|
2155
|
-
.transition-\[border-color\
|
|
2156
|
-
transition-property: border-color
|
|
2168
|
+
.transition-\[border-color\] {
|
|
2169
|
+
transition-property: border-color;
|
|
2157
2170
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2158
2171
|
transition-duration: 150ms;
|
|
2159
2172
|
}
|
|
@@ -2350,13 +2363,11 @@ video {
|
|
|
2350
2363
|
outline: 2px solid transparent;
|
|
2351
2364
|
outline-offset: 2px;
|
|
2352
2365
|
}
|
|
2353
|
-
.focus\:
|
|
2354
|
-
|
|
2355
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2356
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2366
|
+
.focus-visible\:border-accent:focus-visible {
|
|
2367
|
+
border-color: var(--color-accent);
|
|
2357
2368
|
}
|
|
2358
|
-
.focus\:
|
|
2359
|
-
|
|
2369
|
+
.focus-visible\:text-accent:focus-visible {
|
|
2370
|
+
color: var(--color-accent);
|
|
2360
2371
|
}
|
|
2361
2372
|
.focus-visible\:ring-1:focus-visible {
|
|
2362
2373
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|