@geomak/ui 7.7.3 → 7.8.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 +1088 -327
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +171 -27
- package/dist/index.d.ts +171 -27
- package/dist/index.js +793 -35
- package/dist/index.js.map +1 -1
- package/dist/styles.css +23 -3
- package/package.json +5 -2
package/dist/styles.css
CHANGED
|
@@ -1367,6 +1367,9 @@ input:autofill,
|
|
|
1367
1367
|
.max-h-\[calc\(100vh-2rem\)\] {
|
|
1368
1368
|
max-height: calc(100vh - 2rem);
|
|
1369
1369
|
}
|
|
1370
|
+
.min-h-0 {
|
|
1371
|
+
min-height: 0px;
|
|
1372
|
+
}
|
|
1370
1373
|
.min-h-\[200px\] {
|
|
1371
1374
|
min-height: 200px;
|
|
1372
1375
|
}
|
|
@@ -1520,6 +1523,12 @@ input:autofill,
|
|
|
1520
1523
|
.w-\[calc\(100\%-2rem\)\] {
|
|
1521
1524
|
width: calc(100% - 2rem);
|
|
1522
1525
|
}
|
|
1526
|
+
.w-\[calc\(50\%-6px\)\] {
|
|
1527
|
+
width: calc(50% - 6px);
|
|
1528
|
+
}
|
|
1529
|
+
.w-\[\2026\] {
|
|
1530
|
+
width: …;
|
|
1531
|
+
}
|
|
1523
1532
|
.w-fit {
|
|
1524
1533
|
width: -moz-fit-content;
|
|
1525
1534
|
width: fit-content;
|
|
@@ -1630,9 +1639,6 @@ input:autofill,
|
|
|
1630
1639
|
.flex-1 {
|
|
1631
1640
|
flex: 1 1 0%;
|
|
1632
1641
|
}
|
|
1633
|
-
.flex-none {
|
|
1634
|
-
flex: none;
|
|
1635
|
-
}
|
|
1636
1642
|
.flex-shrink-0 {
|
|
1637
1643
|
flex-shrink: 0;
|
|
1638
1644
|
}
|
|
@@ -2863,6 +2869,11 @@ input:autofill,
|
|
|
2863
2869
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2864
2870
|
transition-duration: 150ms;
|
|
2865
2871
|
}
|
|
2872
|
+
.transition-\[width\2c height\2c box-shadow\] {
|
|
2873
|
+
transition-property: width,height,box-shadow;
|
|
2874
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2875
|
+
transition-duration: 150ms;
|
|
2876
|
+
}
|
|
2866
2877
|
.transition-all {
|
|
2867
2878
|
transition-property: all;
|
|
2868
2879
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -2900,6 +2911,9 @@ input:autofill,
|
|
|
2900
2911
|
.duration-300 {
|
|
2901
2912
|
transition-duration: 300ms;
|
|
2902
2913
|
}
|
|
2914
|
+
.duration-\[320ms\] {
|
|
2915
|
+
transition-duration: 320ms;
|
|
2916
|
+
}
|
|
2903
2917
|
.duration-fast {
|
|
2904
2918
|
transition-duration: var(--duration-fast);
|
|
2905
2919
|
}
|
|
@@ -2915,6 +2929,9 @@ input:autofill,
|
|
|
2915
2929
|
.duration-slow {
|
|
2916
2930
|
transition-duration: var(--duration-slow);
|
|
2917
2931
|
}
|
|
2932
|
+
.ease-\[cubic-bezier\(0\.16\2c 1\2c 0\.3\2c 1\)\] {
|
|
2933
|
+
transition-timing-function: cubic-bezier(0.16,1,0.3,1);
|
|
2934
|
+
}
|
|
2918
2935
|
.ease-in {
|
|
2919
2936
|
transition-timing-function: var(--ease-in);
|
|
2920
2937
|
}
|
|
@@ -3487,6 +3504,9 @@ input:autofill,
|
|
|
3487
3504
|
margin-top: -0.5rem;
|
|
3488
3505
|
margin-bottom: -0.5rem;
|
|
3489
3506
|
}
|
|
3507
|
+
.lg\:w-\[calc\(50\%-6px\)\] {
|
|
3508
|
+
width: calc(50% - 6px);
|
|
3509
|
+
}
|
|
3490
3510
|
.lg\:grid-cols-2 {
|
|
3491
3511
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
3492
3512
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geomak/ui",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.8.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",
|
|
@@ -70,7 +70,10 @@
|
|
|
70
70
|
"@radix-ui/react-toggle": "^1.1.9",
|
|
71
71
|
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
72
72
|
"@radix-ui/react-tooltip": "^1.2.7",
|
|
73
|
-
"framer-motion": "^12.40.0"
|
|
73
|
+
"framer-motion": "^12.40.0",
|
|
74
|
+
"jspdf": "^4.2.1",
|
|
75
|
+
"pdfjs-dist": "^6.0.227",
|
|
76
|
+
"xlsx": "^0.18.5"
|
|
74
77
|
},
|
|
75
78
|
"peerDependencies": {
|
|
76
79
|
"react": "^19.0.0",
|