@geomak/ui 6.1.0 → 6.2.1
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 +103 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +94 -1
- package/dist/index.d.ts +94 -1
- package/dist/index.js +102 -1
- package/dist/index.js.map +1 -1
- package/dist/styles.css +46 -0
- package/package.json +2 -1
package/dist/styles.css
CHANGED
|
@@ -873,6 +873,9 @@ video {
|
|
|
873
873
|
.z-10 {
|
|
874
874
|
z-index: 10;
|
|
875
875
|
}
|
|
876
|
+
.z-20 {
|
|
877
|
+
z-index: 20;
|
|
878
|
+
}
|
|
876
879
|
.z-30 {
|
|
877
880
|
z-index: 30;
|
|
878
881
|
}
|
|
@@ -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
|
}
|
|
@@ -1313,6 +1319,9 @@ video {
|
|
|
1313
1319
|
.min-w-\[200px\] {
|
|
1314
1320
|
min-width: 200px;
|
|
1315
1321
|
}
|
|
1322
|
+
.min-w-\[220px\] {
|
|
1323
|
+
min-width: 220px;
|
|
1324
|
+
}
|
|
1316
1325
|
.min-w-\[224px\] {
|
|
1317
1326
|
min-width: 224px;
|
|
1318
1327
|
}
|
|
@@ -1570,6 +1579,9 @@ video {
|
|
|
1570
1579
|
.gap-0 {
|
|
1571
1580
|
gap: 0px;
|
|
1572
1581
|
}
|
|
1582
|
+
.gap-0\.5 {
|
|
1583
|
+
gap: 0.125rem;
|
|
1584
|
+
}
|
|
1573
1585
|
.gap-1 {
|
|
1574
1586
|
gap: 0.25rem;
|
|
1575
1587
|
}
|
|
@@ -1954,6 +1966,9 @@ video {
|
|
|
1954
1966
|
.pb-1 {
|
|
1955
1967
|
padding-bottom: 0.25rem;
|
|
1956
1968
|
}
|
|
1969
|
+
.pb-1\.5 {
|
|
1970
|
+
padding-bottom: 0.375rem;
|
|
1971
|
+
}
|
|
1957
1972
|
.pb-2 {
|
|
1958
1973
|
padding-bottom: 0.5rem;
|
|
1959
1974
|
}
|
|
@@ -1987,6 +2002,9 @@ video {
|
|
|
1987
2002
|
.pt-3 {
|
|
1988
2003
|
padding-top: 0.75rem;
|
|
1989
2004
|
}
|
|
2005
|
+
.pt-4 {
|
|
2006
|
+
padding-top: 1rem;
|
|
2007
|
+
}
|
|
1990
2008
|
.text-left {
|
|
1991
2009
|
text-align: left;
|
|
1992
2010
|
}
|
|
@@ -2403,6 +2421,9 @@ video {
|
|
|
2403
2421
|
.hover\:text-accent-fg:hover {
|
|
2404
2422
|
color: var(--color-accent-foreground);
|
|
2405
2423
|
}
|
|
2424
|
+
.hover\:text-accent-hover:hover {
|
|
2425
|
+
color: var(--color-accent-hover);
|
|
2426
|
+
}
|
|
2406
2427
|
.hover\:text-foreground:hover {
|
|
2407
2428
|
color: var(--color-foreground);
|
|
2408
2429
|
}
|
|
@@ -2519,6 +2540,9 @@ video {
|
|
|
2519
2540
|
.disabled\:hover\:bg-transparent:hover:disabled {
|
|
2520
2541
|
background-color: rgba(255, 255, 255, .0);
|
|
2521
2542
|
}
|
|
2543
|
+
.group\/link:hover .group-hover\/link\:bg-surface {
|
|
2544
|
+
background-color: var(--color-surface);
|
|
2545
|
+
}
|
|
2522
2546
|
.group:hover .group-hover\:bg-accent {
|
|
2523
2547
|
background-color: var(--color-accent);
|
|
2524
2548
|
}
|
|
@@ -2578,6 +2602,9 @@ video {
|
|
|
2578
2602
|
.data-\[state\=open\]\:border-status-error[data-state="open"] {
|
|
2579
2603
|
border-color: var(--color-error);
|
|
2580
2604
|
}
|
|
2605
|
+
.data-\[active\]\:bg-surface-raised[data-active] {
|
|
2606
|
+
background-color: var(--color-surface-raised);
|
|
2607
|
+
}
|
|
2581
2608
|
.data-\[disabled\]\:bg-transparent[data-disabled] {
|
|
2582
2609
|
background-color: rgba(255, 255, 255, .0);
|
|
2583
2610
|
}
|
|
@@ -2590,6 +2617,9 @@ video {
|
|
|
2590
2617
|
.data-\[state\=on\]\:bg-surface[data-state="on"] {
|
|
2591
2618
|
background-color: var(--color-surface);
|
|
2592
2619
|
}
|
|
2620
|
+
.data-\[active\]\:text-accent[data-active] {
|
|
2621
|
+
color: var(--color-accent);
|
|
2622
|
+
}
|
|
2593
2623
|
.data-\[disabled\]\:text-foreground-muted[data-disabled] {
|
|
2594
2624
|
color: var(--color-foreground-muted);
|
|
2595
2625
|
}
|
|
@@ -2602,6 +2632,9 @@ video {
|
|
|
2602
2632
|
.data-\[state\=on\]\:text-accent[data-state="on"] {
|
|
2603
2633
|
color: var(--color-accent);
|
|
2604
2634
|
}
|
|
2635
|
+
.data-\[state\=open\]\:text-accent[data-state="open"] {
|
|
2636
|
+
color: var(--color-accent);
|
|
2637
|
+
}
|
|
2605
2638
|
.data-\[disabled\]\:opacity-40[data-disabled] {
|
|
2606
2639
|
opacity: 0.4;
|
|
2607
2640
|
}
|
|
@@ -2614,10 +2647,23 @@ video {
|
|
|
2614
2647
|
--tw-rotate: -90deg;
|
|
2615
2648
|
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
2649
|
}
|
|
2650
|
+
.group\/top[data-state="open"] .group-data-\[state\=open\]\/top\:rotate-180 {
|
|
2651
|
+
--tw-rotate: 180deg;
|
|
2652
|
+
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));
|
|
2653
|
+
}
|
|
2617
2654
|
.group[data-state="open"] .group-data-\[state\=open\]\:rotate-0 {
|
|
2618
2655
|
--tw-rotate: 0deg;
|
|
2619
2656
|
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
2657
|
}
|
|
2658
|
+
.group\/link[data-active] .group-data-\[active\]\/link\:bg-surface {
|
|
2659
|
+
background-color: var(--color-surface);
|
|
2660
|
+
}
|
|
2661
|
+
.group\/link[data-active] .group-data-\[active\]\/link\:text-accent {
|
|
2662
|
+
color: var(--color-accent);
|
|
2663
|
+
}
|
|
2664
|
+
.group\/top[data-state="open"] .group-data-\[state\=open\]\/top\:text-accent {
|
|
2665
|
+
color: var(--color-accent);
|
|
2666
|
+
}
|
|
2621
2667
|
.dark\:bg-independence:is(.dark *) {
|
|
2622
2668
|
--tw-bg-opacity: 1;
|
|
2623
2669
|
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.1
|
|
3
|
+
"version": "6.2.1",
|
|
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",
|