@geomak/ui 7.7.4 → 7.9.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 +1270 -317
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +148 -1
- package/dist/index.d.ts +148 -1
- package/dist/index.js +975 -25
- package/dist/index.js.map +1 -1
- package/dist/styles.css +19 -0
- package/package.json +5 -2
package/dist/styles.css
CHANGED
|
@@ -1072,6 +1072,10 @@ input:autofill,
|
|
|
1072
1072
|
margin-left: -0.25rem;
|
|
1073
1073
|
margin-right: -0.25rem;
|
|
1074
1074
|
}
|
|
1075
|
+
.mx-1 {
|
|
1076
|
+
margin-left: 0.25rem;
|
|
1077
|
+
margin-right: 0.25rem;
|
|
1078
|
+
}
|
|
1075
1079
|
.mx-auto {
|
|
1076
1080
|
margin-left: auto;
|
|
1077
1081
|
margin-right: auto;
|
|
@@ -1367,6 +1371,9 @@ input:autofill,
|
|
|
1367
1371
|
.max-h-\[calc\(100vh-2rem\)\] {
|
|
1368
1372
|
max-height: calc(100vh - 2rem);
|
|
1369
1373
|
}
|
|
1374
|
+
.min-h-0 {
|
|
1375
|
+
min-height: 0px;
|
|
1376
|
+
}
|
|
1370
1377
|
.min-h-\[200px\] {
|
|
1371
1378
|
min-height: 200px;
|
|
1372
1379
|
}
|
|
@@ -1537,6 +1544,9 @@ input:autofill,
|
|
|
1537
1544
|
width: -moz-max-content;
|
|
1538
1545
|
width: max-content;
|
|
1539
1546
|
}
|
|
1547
|
+
.w-px {
|
|
1548
|
+
width: 1px;
|
|
1549
|
+
}
|
|
1540
1550
|
.min-w-0 {
|
|
1541
1551
|
min-width: 0px;
|
|
1542
1552
|
}
|
|
@@ -2060,6 +2070,9 @@ input:autofill,
|
|
|
2060
2070
|
.break-words {
|
|
2061
2071
|
overflow-wrap: break-word;
|
|
2062
2072
|
}
|
|
2073
|
+
.\!rounded-none {
|
|
2074
|
+
border-radius: 0px !important;
|
|
2075
|
+
}
|
|
2063
2076
|
.rounded {
|
|
2064
2077
|
border-radius: 0.25rem;
|
|
2065
2078
|
}
|
|
@@ -2106,6 +2119,9 @@ input:autofill,
|
|
|
2106
2119
|
.rounded-br-md {
|
|
2107
2120
|
border-bottom-right-radius: var(--radius-md);
|
|
2108
2121
|
}
|
|
2122
|
+
.\!border-0 {
|
|
2123
|
+
border-width: 0px !important;
|
|
2124
|
+
}
|
|
2109
2125
|
.border {
|
|
2110
2126
|
border-width: 1px;
|
|
2111
2127
|
}
|
|
@@ -3412,6 +3428,9 @@ input:autofill,
|
|
|
3412
3428
|
.sm\:right-4 {
|
|
3413
3429
|
right: 1rem;
|
|
3414
3430
|
}
|
|
3431
|
+
.sm\:inline {
|
|
3432
|
+
display: inline;
|
|
3433
|
+
}
|
|
3415
3434
|
.sm\:max-w-md {
|
|
3416
3435
|
max-width: 28rem;
|
|
3417
3436
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geomak/ui",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.9.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",
|