@geomak/ui 5.2.0 → 5.3.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 +470 -255
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +228 -23
- package/dist/index.d.ts +228 -23
- package/dist/index.js +467 -256
- package/dist/index.js.map +1 -1
- package/dist/styles.css +96 -44
- package/package.json +2 -1
package/dist/styles.css
CHANGED
|
@@ -798,9 +798,6 @@ video {
|
|
|
798
798
|
.right-4 {
|
|
799
799
|
right: 1rem;
|
|
800
800
|
}
|
|
801
|
-
.right-\[-5px\] {
|
|
802
|
-
right: -5px;
|
|
803
|
-
}
|
|
804
801
|
.top-0 {
|
|
805
802
|
top: 0px;
|
|
806
803
|
}
|
|
@@ -813,9 +810,6 @@ video {
|
|
|
813
810
|
.top-4 {
|
|
814
811
|
top: 1rem;
|
|
815
812
|
}
|
|
816
|
-
.top-\[-5px\] {
|
|
817
|
-
top: -5px;
|
|
818
|
-
}
|
|
819
813
|
.z-10 {
|
|
820
814
|
z-index: 10;
|
|
821
815
|
}
|
|
@@ -895,6 +889,9 @@ video {
|
|
|
895
889
|
.mb-4 {
|
|
896
890
|
margin-bottom: 1rem;
|
|
897
891
|
}
|
|
892
|
+
.ml-0\.5 {
|
|
893
|
+
margin-left: 0.125rem;
|
|
894
|
+
}
|
|
898
895
|
.ml-1 {
|
|
899
896
|
margin-left: 0.25rem;
|
|
900
897
|
}
|
|
@@ -919,6 +916,9 @@ video {
|
|
|
919
916
|
.mt-2 {
|
|
920
917
|
margin-top: 0.5rem;
|
|
921
918
|
}
|
|
919
|
+
.mt-3 {
|
|
920
|
+
margin-top: 0.75rem;
|
|
921
|
+
}
|
|
922
922
|
.mt-4 {
|
|
923
923
|
margin-top: 1rem;
|
|
924
924
|
}
|
|
@@ -958,6 +958,9 @@ video {
|
|
|
958
958
|
.h-1\.5 {
|
|
959
959
|
height: 0.375rem;
|
|
960
960
|
}
|
|
961
|
+
.h-1\/2 {
|
|
962
|
+
height: 50%;
|
|
963
|
+
}
|
|
961
964
|
.h-1\/4 {
|
|
962
965
|
height: 25%;
|
|
963
966
|
}
|
|
@@ -973,18 +976,12 @@ video {
|
|
|
973
976
|
.h-14 {
|
|
974
977
|
height: 3.5rem;
|
|
975
978
|
}
|
|
976
|
-
.h-16 {
|
|
977
|
-
height: 4rem;
|
|
978
|
-
}
|
|
979
979
|
.h-2 {
|
|
980
980
|
height: 0.5rem;
|
|
981
981
|
}
|
|
982
982
|
.h-20 {
|
|
983
983
|
height: 5rem;
|
|
984
984
|
}
|
|
985
|
-
.h-24 {
|
|
986
|
-
height: 6rem;
|
|
987
|
-
}
|
|
988
985
|
.h-3 {
|
|
989
986
|
height: 0.75rem;
|
|
990
987
|
}
|
|
@@ -1009,9 +1006,6 @@ video {
|
|
|
1009
1006
|
.h-6 {
|
|
1010
1007
|
height: 1.5rem;
|
|
1011
1008
|
}
|
|
1012
|
-
.h-60 {
|
|
1013
|
-
height: 15rem;
|
|
1014
|
-
}
|
|
1015
1009
|
.h-7 {
|
|
1016
1010
|
height: 1.75rem;
|
|
1017
1011
|
}
|
|
@@ -1036,6 +1030,15 @@ video {
|
|
|
1036
1030
|
.h-\[60\%\] {
|
|
1037
1031
|
height: 60%;
|
|
1038
1032
|
}
|
|
1033
|
+
.h-control-lg {
|
|
1034
|
+
height: var(--height-control-lg);
|
|
1035
|
+
}
|
|
1036
|
+
.h-control-md {
|
|
1037
|
+
height: var(--height-control-md);
|
|
1038
|
+
}
|
|
1039
|
+
.h-control-sm {
|
|
1040
|
+
height: var(--height-control-sm);
|
|
1041
|
+
}
|
|
1039
1042
|
.h-full {
|
|
1040
1043
|
height: 100%;
|
|
1041
1044
|
}
|
|
@@ -1085,6 +1088,9 @@ video {
|
|
|
1085
1088
|
.w-1\.5 {
|
|
1086
1089
|
width: 0.375rem;
|
|
1087
1090
|
}
|
|
1091
|
+
.w-1\/2 {
|
|
1092
|
+
width: 50%;
|
|
1093
|
+
}
|
|
1088
1094
|
.w-10 {
|
|
1089
1095
|
width: 2.5rem;
|
|
1090
1096
|
}
|
|
@@ -1097,9 +1103,6 @@ video {
|
|
|
1097
1103
|
.w-14 {
|
|
1098
1104
|
width: 3.5rem;
|
|
1099
1105
|
}
|
|
1100
|
-
.w-16 {
|
|
1101
|
-
width: 4rem;
|
|
1102
|
-
}
|
|
1103
1106
|
.w-2 {
|
|
1104
1107
|
width: 0.5rem;
|
|
1105
1108
|
}
|
|
@@ -1127,12 +1130,6 @@ video {
|
|
|
1127
1130
|
.w-5 {
|
|
1128
1131
|
width: 1.25rem;
|
|
1129
1132
|
}
|
|
1130
|
-
.w-52 {
|
|
1131
|
-
width: 13rem;
|
|
1132
|
-
}
|
|
1133
|
-
.w-56 {
|
|
1134
|
-
width: 14rem;
|
|
1135
|
-
}
|
|
1136
1133
|
.w-6 {
|
|
1137
1134
|
width: 1.5rem;
|
|
1138
1135
|
}
|
|
@@ -1154,6 +1151,9 @@ video {
|
|
|
1154
1151
|
.w-9 {
|
|
1155
1152
|
width: 2.25rem;
|
|
1156
1153
|
}
|
|
1154
|
+
.w-96 {
|
|
1155
|
+
width: 24rem;
|
|
1156
|
+
}
|
|
1157
1157
|
.w-\[18px\] {
|
|
1158
1158
|
width: 18px;
|
|
1159
1159
|
}
|
|
@@ -1280,6 +1280,9 @@ video {
|
|
|
1280
1280
|
.animate-spin {
|
|
1281
1281
|
animation: spin 1s linear infinite;
|
|
1282
1282
|
}
|
|
1283
|
+
.cursor-copy {
|
|
1284
|
+
cursor: copy;
|
|
1285
|
+
}
|
|
1283
1286
|
.cursor-not-allowed {
|
|
1284
1287
|
cursor: not-allowed;
|
|
1285
1288
|
}
|
|
@@ -1462,6 +1465,9 @@ video {
|
|
|
1462
1465
|
.gap-4 {
|
|
1463
1466
|
gap: 1rem;
|
|
1464
1467
|
}
|
|
1468
|
+
.gap-5 {
|
|
1469
|
+
gap: 1.25rem;
|
|
1470
|
+
}
|
|
1465
1471
|
.gap-6 {
|
|
1466
1472
|
gap: 1.5rem;
|
|
1467
1473
|
}
|
|
@@ -1757,6 +1763,10 @@ video {
|
|
|
1757
1763
|
padding-left: 0.75rem;
|
|
1758
1764
|
padding-right: 0.75rem;
|
|
1759
1765
|
}
|
|
1766
|
+
.px-3\.5 {
|
|
1767
|
+
padding-left: 0.875rem;
|
|
1768
|
+
padding-right: 0.875rem;
|
|
1769
|
+
}
|
|
1760
1770
|
.px-4 {
|
|
1761
1771
|
padding-left: 1rem;
|
|
1762
1772
|
padding-right: 1rem;
|
|
@@ -1765,6 +1775,10 @@ video {
|
|
|
1765
1775
|
padding-left: 1.25rem;
|
|
1766
1776
|
padding-right: 1.25rem;
|
|
1767
1777
|
}
|
|
1778
|
+
.px-6 {
|
|
1779
|
+
padding-left: 1.5rem;
|
|
1780
|
+
padding-right: 1.5rem;
|
|
1781
|
+
}
|
|
1768
1782
|
.py-0\.5 {
|
|
1769
1783
|
padding-top: 0.125rem;
|
|
1770
1784
|
padding-bottom: 0.125rem;
|
|
@@ -1793,6 +1807,10 @@ video {
|
|
|
1793
1807
|
padding-top: 1rem;
|
|
1794
1808
|
padding-bottom: 1rem;
|
|
1795
1809
|
}
|
|
1810
|
+
.py-8 {
|
|
1811
|
+
padding-top: 2rem;
|
|
1812
|
+
padding-bottom: 2rem;
|
|
1813
|
+
}
|
|
1796
1814
|
.pb-1 {
|
|
1797
1815
|
padding-bottom: 0.25rem;
|
|
1798
1816
|
}
|
|
@@ -1811,6 +1829,9 @@ video {
|
|
|
1811
1829
|
.pl-\[26px\] {
|
|
1812
1830
|
padding-left: 26px;
|
|
1813
1831
|
}
|
|
1832
|
+
.pr-0 {
|
|
1833
|
+
padding-right: 0px;
|
|
1834
|
+
}
|
|
1814
1835
|
.pr-2 {
|
|
1815
1836
|
padding-right: 0.5rem;
|
|
1816
1837
|
}
|
|
@@ -2096,6 +2117,11 @@ video {
|
|
|
2096
2117
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2097
2118
|
transition-duration: 150ms;
|
|
2098
2119
|
}
|
|
2120
|
+
.transition-\[color\2c box-shadow\2c border-color\] {
|
|
2121
|
+
transition-property: color,box-shadow,border-color;
|
|
2122
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
2123
|
+
transition-duration: 150ms;
|
|
2124
|
+
}
|
|
2099
2125
|
.transition-all {
|
|
2100
2126
|
transition-property: all;
|
|
2101
2127
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -2171,6 +2197,12 @@ video {
|
|
|
2171
2197
|
.\[transform-origin\:left\] {
|
|
2172
2198
|
transform-origin: left;
|
|
2173
2199
|
}
|
|
2200
|
+
.placeholder\:text-foreground-muted::-moz-placeholder {
|
|
2201
|
+
color: var(--color-foreground-muted);
|
|
2202
|
+
}
|
|
2203
|
+
.placeholder\:text-foreground-muted::placeholder {
|
|
2204
|
+
color: var(--color-foreground-muted);
|
|
2205
|
+
}
|
|
2174
2206
|
.before\:absolute::before {
|
|
2175
2207
|
content: var(--tw-content);
|
|
2176
2208
|
position: absolute;
|
|
@@ -2209,20 +2241,33 @@ video {
|
|
|
2209
2241
|
.last\:border-0:last-child {
|
|
2210
2242
|
border-width: 0px;
|
|
2211
2243
|
}
|
|
2212
|
-
.focus-within\:border-
|
|
2213
|
-
border-color:
|
|
2244
|
+
.focus-within\:border-accent:focus-within {
|
|
2245
|
+
border-color: var(--color-accent);
|
|
2214
2246
|
}
|
|
2215
|
-
.focus-within\:
|
|
2247
|
+
.focus-within\:border-status-error:focus-within {
|
|
2248
|
+
border-color: var(--color-error);
|
|
2249
|
+
}
|
|
2250
|
+
.focus-within\:outline-none:focus-within {
|
|
2251
|
+
outline: 2px solid transparent;
|
|
2252
|
+
outline-offset: 2px;
|
|
2253
|
+
}
|
|
2254
|
+
.focus-within\:ring-\[3px\]:focus-within {
|
|
2216
2255
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2217
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(
|
|
2256
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2218
2257
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2219
2258
|
}
|
|
2220
|
-
.focus-within\:ring-
|
|
2221
|
-
--tw-ring-color: var(--color-accent);
|
|
2259
|
+
.focus-within\:ring-focus-ring:focus-within {
|
|
2260
|
+
--tw-ring-color: color-mix(in oklab, var(--color-accent) 22%, transparent);
|
|
2261
|
+
}
|
|
2262
|
+
.focus-within\:ring-focus-ring-error:focus-within {
|
|
2263
|
+
--tw-ring-color: color-mix(in oklab, var(--color-error) 22%, transparent);
|
|
2222
2264
|
}
|
|
2223
2265
|
.hover\:border-accent:hover {
|
|
2224
2266
|
border-color: var(--color-accent);
|
|
2225
2267
|
}
|
|
2268
|
+
.hover\:border-border-strong:hover {
|
|
2269
|
+
border-color: var(--color-border-strong);
|
|
2270
|
+
}
|
|
2226
2271
|
.hover\:bg-accent:hover {
|
|
2227
2272
|
background-color: var(--color-accent);
|
|
2228
2273
|
}
|
|
@@ -2248,6 +2293,9 @@ video {
|
|
|
2248
2293
|
.hover\:text-foreground:hover {
|
|
2249
2294
|
color: var(--color-foreground);
|
|
2250
2295
|
}
|
|
2296
|
+
.hover\:text-status-error:hover {
|
|
2297
|
+
color: var(--color-error);
|
|
2298
|
+
}
|
|
2251
2299
|
.hover\:text-white:hover {
|
|
2252
2300
|
--tw-text-opacity: 1;
|
|
2253
2301
|
color: rgb(255 255 255 / var(--tw-text-opacity, 1));
|
|
@@ -2258,26 +2306,19 @@ video {
|
|
|
2258
2306
|
.hover\:opacity-90:hover {
|
|
2259
2307
|
opacity: 0.9;
|
|
2260
2308
|
}
|
|
2261
|
-
.focus\:border-transparent:focus {
|
|
2262
|
-
border-color: rgba(255, 255, 255, .0);
|
|
2263
|
-
}
|
|
2264
2309
|
.focus\:outline-none:focus {
|
|
2265
2310
|
outline: 2px solid transparent;
|
|
2266
2311
|
outline-offset: 2px;
|
|
2267
2312
|
}
|
|
2268
|
-
.focus\:
|
|
2269
|
-
|
|
2270
|
-
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2271
|
-
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2272
|
-
}
|
|
2273
|
-
.focus\:ring-accent:focus {
|
|
2274
|
-
--tw-ring-color: var(--color-accent);
|
|
2313
|
+
.focus-visible\:border-accent:focus-visible {
|
|
2314
|
+
border-color: var(--color-accent);
|
|
2275
2315
|
}
|
|
2276
|
-
.focus-visible\:border-
|
|
2277
|
-
border-color:
|
|
2316
|
+
.focus-visible\:border-status-error:focus-visible {
|
|
2317
|
+
border-color: var(--color-error);
|
|
2278
2318
|
}
|
|
2279
|
-
.focus-visible\:
|
|
2280
|
-
|
|
2319
|
+
.focus-visible\:outline-none:focus-visible {
|
|
2320
|
+
outline: 2px solid transparent;
|
|
2321
|
+
outline-offset: 2px;
|
|
2281
2322
|
}
|
|
2282
2323
|
.focus-visible\:ring-1:focus-visible {
|
|
2283
2324
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
@@ -2289,12 +2330,23 @@ video {
|
|
|
2289
2330
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2290
2331
|
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2291
2332
|
}
|
|
2333
|
+
.focus-visible\:ring-\[3px\]:focus-visible {
|
|
2334
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2335
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2336
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2337
|
+
}
|
|
2292
2338
|
.focus-visible\:ring-inset:focus-visible {
|
|
2293
2339
|
--tw-ring-inset: inset;
|
|
2294
2340
|
}
|
|
2295
2341
|
.focus-visible\:ring-accent:focus-visible {
|
|
2296
2342
|
--tw-ring-color: var(--color-accent);
|
|
2297
2343
|
}
|
|
2344
|
+
.focus-visible\:ring-focus-ring:focus-visible {
|
|
2345
|
+
--tw-ring-color: color-mix(in oklab, var(--color-accent) 22%, transparent);
|
|
2346
|
+
}
|
|
2347
|
+
.focus-visible\:ring-focus-ring-error:focus-visible {
|
|
2348
|
+
--tw-ring-color: color-mix(in oklab, var(--color-error) 22%, transparent);
|
|
2349
|
+
}
|
|
2298
2350
|
.focus-visible\:ring-status-error:focus-visible {
|
|
2299
2351
|
--tw-ring-color: var(--color-error);
|
|
2300
2352
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geomak/ui",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.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",
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"@radix-ui/react-dialog": "^1.1.14",
|
|
54
54
|
"@radix-ui/react-dropdown-menu": "^2.1.15",
|
|
55
55
|
"@radix-ui/react-popover": "^1.1.14",
|
|
56
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
56
57
|
"@radix-ui/react-scroll-area": "^1.2.9",
|
|
57
58
|
"@radix-ui/react-switch": "^1.2.5",
|
|
58
59
|
"@radix-ui/react-tabs": "^1.1.12",
|