@geomak/ui 5.5.3 → 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/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
  }
@@ -2353,6 +2366,9 @@ video {
2353
2366
  .focus-visible\:border-accent:focus-visible {
2354
2367
  border-color: var(--color-accent);
2355
2368
  }
2369
+ .focus-visible\:text-accent:focus-visible {
2370
+ color: var(--color-accent);
2371
+ }
2356
2372
  .focus-visible\:ring-1:focus-visible {
2357
2373
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
2358
2374
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geomak/ui",
3
- "version": "5.5.3",
3
+ "version": "5.6.0",
4
4
  "description": "Oxygen Design System — reusable UI primitives built with Radix UI behaviours and Tailwind CSS styling",
5
5
  "author": "G-MAKROGLOU",
6
6
  "license": "MIT",