@geomak/ui 6.1.0 → 6.2.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 +101 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +93 -1
- package/dist/index.d.ts +93 -1
- package/dist/index.js +100 -1
- package/dist/index.js.map +1 -1
- package/dist/styles.css +66 -0
- package/package.json +2 -1
package/dist/styles.css
CHANGED
|
@@ -1118,6 +1118,9 @@ video {
|
|
|
1118
1118
|
.h-\[60\%\] {
|
|
1119
1119
|
height: 60%;
|
|
1120
1120
|
}
|
|
1121
|
+
.h-\[var\(--radix-navigation-menu-viewport-height\)\] {
|
|
1122
|
+
height: var(--radix-navigation-menu-viewport-height);
|
|
1123
|
+
}
|
|
1121
1124
|
.h-control-lg {
|
|
1122
1125
|
height: var(--height-control-lg);
|
|
1123
1126
|
}
|
|
@@ -1161,6 +1164,9 @@ video {
|
|
|
1161
1164
|
.min-h-\[36px\] {
|
|
1162
1165
|
min-height: 36px;
|
|
1163
1166
|
}
|
|
1167
|
+
.min-h-\[460px\] {
|
|
1168
|
+
min-height: 460px;
|
|
1169
|
+
}
|
|
1164
1170
|
.min-h-\[80px\] {
|
|
1165
1171
|
min-height: 80px;
|
|
1166
1172
|
}
|
|
@@ -1281,6 +1287,9 @@ video {
|
|
|
1281
1287
|
.w-\[calc\(100\%-2rem\)\] {
|
|
1282
1288
|
width: calc(100% - 2rem);
|
|
1283
1289
|
}
|
|
1290
|
+
.w-\[var\(--radix-navigation-menu-viewport-width\)\] {
|
|
1291
|
+
width: var(--radix-navigation-menu-viewport-width);
|
|
1292
|
+
}
|
|
1284
1293
|
.w-fit {
|
|
1285
1294
|
width: -moz-fit-content;
|
|
1286
1295
|
width: fit-content;
|
|
@@ -1313,6 +1322,9 @@ video {
|
|
|
1313
1322
|
.min-w-\[200px\] {
|
|
1314
1323
|
min-width: 200px;
|
|
1315
1324
|
}
|
|
1325
|
+
.min-w-\[220px\] {
|
|
1326
|
+
min-width: 220px;
|
|
1327
|
+
}
|
|
1316
1328
|
.min-w-\[224px\] {
|
|
1317
1329
|
min-width: 224px;
|
|
1318
1330
|
}
|
|
@@ -1334,6 +1346,9 @@ video {
|
|
|
1334
1346
|
.max-w-\[220px\] {
|
|
1335
1347
|
max-width: 220px;
|
|
1336
1348
|
}
|
|
1349
|
+
.max-w-\[min\(92vw\2c 860px\)\] {
|
|
1350
|
+
max-width: min(92vw, 860px);
|
|
1351
|
+
}
|
|
1337
1352
|
.max-w-full {
|
|
1338
1353
|
max-width: 100%;
|
|
1339
1354
|
}
|
|
@@ -1369,6 +1384,9 @@ video {
|
|
|
1369
1384
|
--tw-border-spacing-y: 0px;
|
|
1370
1385
|
border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
|
|
1371
1386
|
}
|
|
1387
|
+
.origin-top {
|
|
1388
|
+
transform-origin: top;
|
|
1389
|
+
}
|
|
1372
1390
|
.-translate-x-1\/2 {
|
|
1373
1391
|
--tw-translate-x: -50%;
|
|
1374
1392
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
@@ -1444,6 +1462,12 @@ video {
|
|
|
1444
1462
|
.list-none {
|
|
1445
1463
|
list-style-type: none;
|
|
1446
1464
|
}
|
|
1465
|
+
.auto-cols-fr {
|
|
1466
|
+
grid-auto-columns: minmax(0, 1fr);
|
|
1467
|
+
}
|
|
1468
|
+
.grid-flow-col {
|
|
1469
|
+
grid-auto-flow: column;
|
|
1470
|
+
}
|
|
1447
1471
|
.grid-cols-1 {
|
|
1448
1472
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
1449
1473
|
}
|
|
@@ -1570,6 +1594,9 @@ video {
|
|
|
1570
1594
|
.gap-0 {
|
|
1571
1595
|
gap: 0px;
|
|
1572
1596
|
}
|
|
1597
|
+
.gap-0\.5 {
|
|
1598
|
+
gap: 0.125rem;
|
|
1599
|
+
}
|
|
1573
1600
|
.gap-1 {
|
|
1574
1601
|
gap: 0.25rem;
|
|
1575
1602
|
}
|
|
@@ -1954,6 +1981,9 @@ video {
|
|
|
1954
1981
|
.pb-1 {
|
|
1955
1982
|
padding-bottom: 0.25rem;
|
|
1956
1983
|
}
|
|
1984
|
+
.pb-1\.5 {
|
|
1985
|
+
padding-bottom: 0.375rem;
|
|
1986
|
+
}
|
|
1957
1987
|
.pb-2 {
|
|
1958
1988
|
padding-bottom: 0.5rem;
|
|
1959
1989
|
}
|
|
@@ -1987,6 +2017,9 @@ video {
|
|
|
1987
2017
|
.pt-3 {
|
|
1988
2018
|
padding-top: 0.75rem;
|
|
1989
2019
|
}
|
|
2020
|
+
.pt-4 {
|
|
2021
|
+
padding-top: 1rem;
|
|
2022
|
+
}
|
|
1990
2023
|
.text-left {
|
|
1991
2024
|
text-align: left;
|
|
1992
2025
|
}
|
|
@@ -2270,6 +2303,11 @@ video {
|
|
|
2270
2303
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2271
2304
|
transition-duration: 150ms;
|
|
2272
2305
|
}
|
|
2306
|
+
.transition-\[width\2c height\] {
|
|
2307
|
+
transition-property: width,height;
|
|
2308
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2309
|
+
transition-duration: 150ms;
|
|
2310
|
+
}
|
|
2273
2311
|
.transition-all {
|
|
2274
2312
|
transition-property: all;
|
|
2275
2313
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -2403,6 +2441,9 @@ video {
|
|
|
2403
2441
|
.hover\:text-accent-fg:hover {
|
|
2404
2442
|
color: var(--color-accent-foreground);
|
|
2405
2443
|
}
|
|
2444
|
+
.hover\:text-accent-hover:hover {
|
|
2445
|
+
color: var(--color-accent-hover);
|
|
2446
|
+
}
|
|
2406
2447
|
.hover\:text-foreground:hover {
|
|
2407
2448
|
color: var(--color-foreground);
|
|
2408
2449
|
}
|
|
@@ -2519,6 +2560,9 @@ video {
|
|
|
2519
2560
|
.disabled\:hover\:bg-transparent:hover:disabled {
|
|
2520
2561
|
background-color: rgba(255, 255, 255, .0);
|
|
2521
2562
|
}
|
|
2563
|
+
.group\/link:hover .group-hover\/link\:bg-surface {
|
|
2564
|
+
background-color: var(--color-surface);
|
|
2565
|
+
}
|
|
2522
2566
|
.group:hover .group-hover\:bg-accent {
|
|
2523
2567
|
background-color: var(--color-accent);
|
|
2524
2568
|
}
|
|
@@ -2578,6 +2622,9 @@ video {
|
|
|
2578
2622
|
.data-\[state\=open\]\:border-status-error[data-state="open"] {
|
|
2579
2623
|
border-color: var(--color-error);
|
|
2580
2624
|
}
|
|
2625
|
+
.data-\[active\]\:bg-surface-raised[data-active] {
|
|
2626
|
+
background-color: var(--color-surface-raised);
|
|
2627
|
+
}
|
|
2581
2628
|
.data-\[disabled\]\:bg-transparent[data-disabled] {
|
|
2582
2629
|
background-color: rgba(255, 255, 255, .0);
|
|
2583
2630
|
}
|
|
@@ -2590,6 +2637,9 @@ video {
|
|
|
2590
2637
|
.data-\[state\=on\]\:bg-surface[data-state="on"] {
|
|
2591
2638
|
background-color: var(--color-surface);
|
|
2592
2639
|
}
|
|
2640
|
+
.data-\[active\]\:text-accent[data-active] {
|
|
2641
|
+
color: var(--color-accent);
|
|
2642
|
+
}
|
|
2593
2643
|
.data-\[disabled\]\:text-foreground-muted[data-disabled] {
|
|
2594
2644
|
color: var(--color-foreground-muted);
|
|
2595
2645
|
}
|
|
@@ -2602,6 +2652,9 @@ video {
|
|
|
2602
2652
|
.data-\[state\=on\]\:text-accent[data-state="on"] {
|
|
2603
2653
|
color: var(--color-accent);
|
|
2604
2654
|
}
|
|
2655
|
+
.data-\[state\=open\]\:text-accent[data-state="open"] {
|
|
2656
|
+
color: var(--color-accent);
|
|
2657
|
+
}
|
|
2605
2658
|
.data-\[disabled\]\:opacity-40[data-disabled] {
|
|
2606
2659
|
opacity: 0.4;
|
|
2607
2660
|
}
|
|
@@ -2614,10 +2667,23 @@ video {
|
|
|
2614
2667
|
--tw-rotate: -90deg;
|
|
2615
2668
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2616
2669
|
}
|
|
2670
|
+
.group\/top[data-state="open"] .group-data-\[state\=open\]\/top\:rotate-180 {
|
|
2671
|
+
--tw-rotate: 180deg;
|
|
2672
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2673
|
+
}
|
|
2617
2674
|
.group[data-state="open"] .group-data-\[state\=open\]\:rotate-0 {
|
|
2618
2675
|
--tw-rotate: 0deg;
|
|
2619
2676
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2620
2677
|
}
|
|
2678
|
+
.group\/link[data-active] .group-data-\[active\]\/link\:bg-surface {
|
|
2679
|
+
background-color: var(--color-surface);
|
|
2680
|
+
}
|
|
2681
|
+
.group\/link[data-active] .group-data-\[active\]\/link\:text-accent {
|
|
2682
|
+
color: var(--color-accent);
|
|
2683
|
+
}
|
|
2684
|
+
.group\/top[data-state="open"] .group-data-\[state\=open\]\/top\:text-accent {
|
|
2685
|
+
color: var(--color-accent);
|
|
2686
|
+
}
|
|
2621
2687
|
.dark\:bg-independence:is(.dark *) {
|
|
2622
2688
|
--tw-bg-opacity: 1;
|
|
2623
2689
|
background-color: rgb(51 65 92 / var(--tw-bg-opacity, 1));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geomak/ui",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.2.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",
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
"@radix-ui/react-context-menu": "^2.2.16",
|
|
53
53
|
"@radix-ui/react-dialog": "^1.1.14",
|
|
54
54
|
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
55
|
+
"@radix-ui/react-navigation-menu": "^1.2.14",
|
|
55
56
|
"@radix-ui/react-popover": "^1.1.14",
|
|
56
57
|
"@radix-ui/react-radio-group": "^1.3.8",
|
|
57
58
|
"@radix-ui/react-scroll-area": "^1.2.9",
|