@marigold/theme-rui 1.4.1 → 2.0.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.js +256 -190
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +256 -190
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +258 -121
- package/dist/theme.css +46 -1
- package/dist/utils.css +26 -3
- package/package.json +7 -7
package/dist/styles.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! tailwindcss v4.1.
|
|
1
|
+
/*! tailwindcss v4.1.12 | MIT License | https://tailwindcss.com */
|
|
2
2
|
@layer properties;
|
|
3
3
|
@layer theme, base, components, utilities;
|
|
4
4
|
@layer theme {
|
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
--color-orange-900: #7c3712;
|
|
25
25
|
--color-orange-950: #431a07;
|
|
26
26
|
--color-yellow-100: oklch(97.3% 0.071 103.193);
|
|
27
|
-
--color-yellow-200: oklch(94.5% 0.129 101.54);
|
|
28
27
|
--color-yellow-300: oklch(90.5% 0.182 98.111);
|
|
29
28
|
--color-yellow-400: oklch(85.2% 0.199 91.936);
|
|
30
29
|
--color-yellow-500: oklch(79.5% 0.184 86.047);
|
|
@@ -42,13 +41,11 @@
|
|
|
42
41
|
--color-green-700: oklch(52.7% 0.154 150.069);
|
|
43
42
|
--color-green-800: oklch(44.8% 0.119 151.328);
|
|
44
43
|
--color-green-950: oklch(26.6% 0.065 152.934);
|
|
45
|
-
--color-teal-300: oklch(85.5% 0.138 181.071);
|
|
46
44
|
--color-blue-100: oklch(93.2% 0.032 255.585);
|
|
47
45
|
--color-blue-500: oklch(62.3% 0.214 259.815);
|
|
48
46
|
--color-blue-600: oklch(54.6% 0.245 262.881);
|
|
49
47
|
--color-blue-700: oklch(48.8% 0.243 264.376);
|
|
50
48
|
--color-blue-800: oklch(42.4% 0.199 265.638);
|
|
51
|
-
--color-blue-900: oklch(37.9% 0.146 265.522);
|
|
52
49
|
--color-blue-950: oklch(28.2% 0.091 267.935);
|
|
53
50
|
--color-violet-500: oklch(60.6% 0.25 292.717);
|
|
54
51
|
--color-purple-100: oklch(94.6% 0.033 307.174);
|
|
@@ -223,6 +220,15 @@
|
|
|
223
220
|
--animate-slide-in-right: slide-in-right var(--slide-in-duration)
|
|
224
221
|
var(--ease-out-expo);
|
|
225
222
|
--animate-slide-out-right: slide-in-right var(--slide-out-duration) reverse;
|
|
223
|
+
--animate-slide-in-left: slide-in-left var(--slide-in-duration)
|
|
224
|
+
var(--ease-out-expo);
|
|
225
|
+
--animate-slide-out-left: slide-in-left var(--slide-out-duration) reverse;
|
|
226
|
+
--animate-slide-in-top: slide-in-top var(--slide-in-duration)
|
|
227
|
+
var(--ease-out-expo);
|
|
228
|
+
--animate-slide-out-top: slide-in-top var(--slide-out-duration) reverse;
|
|
229
|
+
--animate-slide-in-bottom: slide-in-bottom var(--slide-in-duration)
|
|
230
|
+
var(--ease-out-expo);
|
|
231
|
+
--animate-slide-out-bottom: slide-in-bottom var(--slide-out-duration) reverse;
|
|
226
232
|
--animate-rotate-spinner: rotate-spinner 2s linear infinite;
|
|
227
233
|
--animate-progress-cycle: progress-cycle 1.5s linear infinite;
|
|
228
234
|
}
|
|
@@ -359,6 +365,9 @@
|
|
|
359
365
|
[data-theme="rui"] ::-webkit-datetime-edit, [data-theme="rui"] ::-webkit-datetime-edit-year-field, [data-theme="rui"] ::-webkit-datetime-edit-month-field, [data-theme="rui"] ::-webkit-datetime-edit-day-field, [data-theme="rui"] ::-webkit-datetime-edit-hour-field, [data-theme="rui"] ::-webkit-datetime-edit-minute-field, [data-theme="rui"] ::-webkit-datetime-edit-second-field, [data-theme="rui"] ::-webkit-datetime-edit-millisecond-field, [data-theme="rui"] ::-webkit-datetime-edit-meridiem-field {
|
|
360
366
|
padding-block: 0;
|
|
361
367
|
}
|
|
368
|
+
[data-theme="rui"] ::-webkit-calendar-picker-indicator {
|
|
369
|
+
line-height: 1;
|
|
370
|
+
}
|
|
362
371
|
[data-theme="rui"] :-moz-ui-invalid {
|
|
363
372
|
box-shadow: none;
|
|
364
373
|
}
|
|
@@ -391,6 +400,22 @@
|
|
|
391
400
|
[data-theme="rui"] .visible\! {
|
|
392
401
|
visibility: visible !important;
|
|
393
402
|
}
|
|
403
|
+
[data-theme="rui"] .util-touch-hitbox {
|
|
404
|
+
position: relative;
|
|
405
|
+
[data-theme="rui"] &:before {
|
|
406
|
+
content: '';
|
|
407
|
+
position: absolute;
|
|
408
|
+
display: block;
|
|
409
|
+
top: 50%;
|
|
410
|
+
left: 50%;
|
|
411
|
+
transform: translate(-50%, -50%);
|
|
412
|
+
width: 100%;
|
|
413
|
+
height: 100%;
|
|
414
|
+
min-height: 24px;
|
|
415
|
+
min-width: 24px;
|
|
416
|
+
z-index: 9999;
|
|
417
|
+
}
|
|
418
|
+
}
|
|
394
419
|
[data-theme="rui"] .absolute {
|
|
395
420
|
position: absolute;
|
|
396
421
|
}
|
|
@@ -457,9 +482,6 @@
|
|
|
457
482
|
[data-theme="rui"] .right-auto {
|
|
458
483
|
right: auto;
|
|
459
484
|
}
|
|
460
|
-
[data-theme="rui"] .bottom-0 {
|
|
461
|
-
bottom: calc(var(--spacing) * 0);
|
|
462
|
-
}
|
|
463
485
|
[data-theme="rui"] .bottom-0\! {
|
|
464
486
|
bottom: calc(var(--spacing) * 0) !important;
|
|
465
487
|
}
|
|
@@ -964,6 +986,9 @@
|
|
|
964
986
|
[data-theme="rui"] .min-h-\[350px\] {
|
|
965
987
|
min-height: 350px;
|
|
966
988
|
}
|
|
989
|
+
[data-theme="rui"] .min-h-button-small {
|
|
990
|
+
min-height: 2rem;
|
|
991
|
+
}
|
|
967
992
|
[data-theme="rui"] .min-h-input {
|
|
968
993
|
min-height: 2.25rem;
|
|
969
994
|
}
|
|
@@ -1168,9 +1193,6 @@
|
|
|
1168
1193
|
[data-theme="rui"] .w-\[900px\] {
|
|
1169
1194
|
width: 900px;
|
|
1170
1195
|
}
|
|
1171
|
-
[data-theme="rui"] .w-\[1000px\] {
|
|
1172
|
-
width: 1000px;
|
|
1173
|
-
}
|
|
1174
1196
|
[data-theme="rui"] .w-\[min\(100\%_-_3rem\,60ch\)\] {
|
|
1175
1197
|
width: min(100% - 3rem, 60ch);
|
|
1176
1198
|
}
|
|
@@ -1876,9 +1898,6 @@
|
|
|
1876
1898
|
[data-theme="rui"] .overflow-y-auto {
|
|
1877
1899
|
overflow-y: auto;
|
|
1878
1900
|
}
|
|
1879
|
-
[data-theme="rui"] .overflow-y-scroll {
|
|
1880
|
-
overflow-y: scroll;
|
|
1881
|
-
}
|
|
1882
1901
|
[data-theme="rui"] .overscroll-none {
|
|
1883
1902
|
overscroll-behavior: none;
|
|
1884
1903
|
}
|
|
@@ -1888,9 +1907,6 @@
|
|
|
1888
1907
|
[data-theme="rui"] .rounded-2xl {
|
|
1889
1908
|
border-radius: var(--radius-2xl);
|
|
1890
1909
|
}
|
|
1891
|
-
[data-theme="rui"] .rounded-\[2\] {
|
|
1892
|
-
border-radius: 2;
|
|
1893
|
-
}
|
|
1894
1910
|
[data-theme="rui"] .rounded-\[3px\] {
|
|
1895
1911
|
border-radius: 3px;
|
|
1896
1912
|
}
|
|
@@ -1934,22 +1950,10 @@
|
|
|
1934
1950
|
border-style: var(--tw-border-style);
|
|
1935
1951
|
border-width: 3px;
|
|
1936
1952
|
}
|
|
1937
|
-
[data-theme="rui"] .border-4 {
|
|
1938
|
-
border-style: var(--tw-border-style);
|
|
1939
|
-
border-width: 4px;
|
|
1940
|
-
}
|
|
1941
|
-
[data-theme="rui"] .border-y-0\! {
|
|
1942
|
-
border-block-style: var(--tw-border-style) !important;
|
|
1943
|
-
border-block-width: 0px !important;
|
|
1944
|
-
}
|
|
1945
1953
|
[data-theme="rui"] .border-t {
|
|
1946
1954
|
border-top-style: var(--tw-border-style);
|
|
1947
1955
|
border-top-width: 1px;
|
|
1948
1956
|
}
|
|
1949
|
-
[data-theme="rui"] .border-r-0\! {
|
|
1950
|
-
border-right-style: var(--tw-border-style) !important;
|
|
1951
|
-
border-right-width: 0px !important;
|
|
1952
|
-
}
|
|
1953
1957
|
[data-theme="rui"] .border-b {
|
|
1954
1958
|
border-bottom-style: var(--tw-border-style);
|
|
1955
1959
|
border-bottom-width: 1px;
|
|
@@ -1995,9 +1999,6 @@
|
|
|
1995
1999
|
[data-theme="rui"] .border-gray-200 {
|
|
1996
2000
|
border-color: var(--color-gray-200);
|
|
1997
2001
|
}
|
|
1998
|
-
[data-theme="rui"] .border-gray-500 {
|
|
1999
|
-
border-color: var(--color-gray-500);
|
|
2000
|
-
}
|
|
2001
2002
|
[data-theme="rui"] .border-gray-700 {
|
|
2002
2003
|
border-color: var(--color-gray-700);
|
|
2003
2004
|
}
|
|
@@ -2067,12 +2068,6 @@
|
|
|
2067
2068
|
background-color: color-mix(in oklab, var(--color-black) 80%, transparent);
|
|
2068
2069
|
}
|
|
2069
2070
|
}
|
|
2070
|
-
[data-theme="rui"] .bg-blue-100 {
|
|
2071
|
-
background-color: var(--color-blue-100);
|
|
2072
|
-
}
|
|
2073
|
-
[data-theme="rui"] .bg-blue-600 {
|
|
2074
|
-
background-color: var(--color-blue-600);
|
|
2075
|
-
}
|
|
2076
2071
|
[data-theme="rui"] .bg-blue-700 {
|
|
2077
2072
|
background-color: var(--color-blue-700);
|
|
2078
2073
|
}
|
|
@@ -2127,9 +2122,6 @@
|
|
|
2127
2122
|
[data-theme="rui"] .bg-red-300 {
|
|
2128
2123
|
background-color: var(--color-red-300);
|
|
2129
2124
|
}
|
|
2130
|
-
[data-theme="rui"] .bg-red-500 {
|
|
2131
|
-
background-color: var(--color-red-500);
|
|
2132
|
-
}
|
|
2133
2125
|
[data-theme="rui"] .bg-slate-100 {
|
|
2134
2126
|
background-color: var(--color-slate-100);
|
|
2135
2127
|
}
|
|
@@ -2187,9 +2179,6 @@
|
|
|
2187
2179
|
[data-theme="rui"] .bg-white {
|
|
2188
2180
|
background-color: var(--color-white);
|
|
2189
2181
|
}
|
|
2190
|
-
[data-theme="rui"] .bg-yellow-200 {
|
|
2191
|
-
background-color: var(--color-yellow-200);
|
|
2192
|
-
}
|
|
2193
2182
|
[data-theme="rui"] .bg-yellow-300 {
|
|
2194
2183
|
background-color: var(--color-yellow-300);
|
|
2195
2184
|
}
|
|
@@ -2232,48 +2221,21 @@
|
|
|
2232
2221
|
[data-theme="rui"] .stroke-transparent {
|
|
2233
2222
|
stroke: transparent;
|
|
2234
2223
|
}
|
|
2235
|
-
[data-theme="rui"] .object-contain {
|
|
2236
|
-
object-fit: contain;
|
|
2237
|
-
}
|
|
2238
2224
|
[data-theme="rui"] .object-cover {
|
|
2239
2225
|
object-fit: cover;
|
|
2240
2226
|
}
|
|
2241
|
-
[data-theme="rui"] .object-fill {
|
|
2242
|
-
object-fit: fill;
|
|
2243
|
-
}
|
|
2244
2227
|
[data-theme="rui"] .object-none {
|
|
2245
2228
|
object-fit: none;
|
|
2246
2229
|
}
|
|
2247
2230
|
[data-theme="rui"] .object-scale-down {
|
|
2248
2231
|
object-fit: scale-down;
|
|
2249
2232
|
}
|
|
2250
|
-
[data-theme="rui"] .object-bottom {
|
|
2251
|
-
object-position: bottom;
|
|
2252
|
-
}
|
|
2253
2233
|
[data-theme="rui"] .object-center {
|
|
2254
2234
|
object-position: center;
|
|
2255
2235
|
}
|
|
2256
|
-
[data-theme="rui"] .object-left {
|
|
2257
|
-
object-position: left;
|
|
2258
|
-
}
|
|
2259
|
-
[data-theme="rui"] .object-left-bottom {
|
|
2260
|
-
object-position: left bottom;
|
|
2261
|
-
}
|
|
2262
2236
|
[data-theme="rui"] .object-left-top {
|
|
2263
2237
|
object-position: left top;
|
|
2264
2238
|
}
|
|
2265
|
-
[data-theme="rui"] .object-right {
|
|
2266
|
-
object-position: right;
|
|
2267
|
-
}
|
|
2268
|
-
[data-theme="rui"] .object-right-bottom {
|
|
2269
|
-
object-position: right bottom;
|
|
2270
|
-
}
|
|
2271
|
-
[data-theme="rui"] .object-right-top {
|
|
2272
|
-
object-position: right top;
|
|
2273
|
-
}
|
|
2274
|
-
[data-theme="rui"] .object-top {
|
|
2275
|
-
object-position: top;
|
|
2276
|
-
}
|
|
2277
2239
|
[data-theme="rui"] .p-0 {
|
|
2278
2240
|
padding: calc(var(--spacing) * 0);
|
|
2279
2241
|
}
|
|
@@ -3088,10 +3050,6 @@
|
|
|
3088
3050
|
--tw-leading: calc(var(--spacing) * 6);
|
|
3089
3051
|
line-height: calc(var(--spacing) * 6);
|
|
3090
3052
|
}
|
|
3091
|
-
[data-theme="rui"] .leading-\[1\.125\] {
|
|
3092
|
-
--tw-leading: 1.125;
|
|
3093
|
-
line-height: 1.125;
|
|
3094
|
-
}
|
|
3095
3053
|
[data-theme="rui"] .leading-loose {
|
|
3096
3054
|
--tw-leading: var(--leading-loose);
|
|
3097
3055
|
line-height: var(--leading-loose);
|
|
@@ -3170,9 +3128,6 @@
|
|
|
3170
3128
|
[data-theme="rui"] .text-blue-700 {
|
|
3171
3129
|
color: var(--color-blue-700);
|
|
3172
3130
|
}
|
|
3173
|
-
[data-theme="rui"] .text-blue-900 {
|
|
3174
|
-
color: var(--color-blue-900);
|
|
3175
|
-
}
|
|
3176
3131
|
[data-theme="rui"] .text-brand {
|
|
3177
3132
|
color: var(--color-stone-950);
|
|
3178
3133
|
}
|
|
@@ -3254,12 +3209,6 @@
|
|
|
3254
3209
|
[data-theme="rui"] .text-success-muted-foreground {
|
|
3255
3210
|
color: var(--color-green-950);
|
|
3256
3211
|
}
|
|
3257
|
-
[data-theme="rui"] .text-teal-300 {
|
|
3258
|
-
color: var(--color-teal-300);
|
|
3259
|
-
}
|
|
3260
|
-
[data-theme="rui"] .text-transparent {
|
|
3261
|
-
color: transparent;
|
|
3262
|
-
}
|
|
3263
3212
|
[data-theme="rui"] .text-violet-500 {
|
|
3264
3213
|
color: var(--color-violet-500);
|
|
3265
3214
|
}
|
|
@@ -3300,6 +3249,9 @@
|
|
|
3300
3249
|
[data-theme="rui"] .opacity-5 {
|
|
3301
3250
|
opacity: 5%;
|
|
3302
3251
|
}
|
|
3252
|
+
[data-theme="rui"] .opacity-50 {
|
|
3253
|
+
opacity: 50%;
|
|
3254
|
+
}
|
|
3303
3255
|
[data-theme="rui"] .opacity-60 {
|
|
3304
3256
|
opacity: 60%;
|
|
3305
3257
|
}
|
|
@@ -3398,6 +3350,11 @@
|
|
|
3398
3350
|
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
3399
3351
|
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
3400
3352
|
}
|
|
3353
|
+
[data-theme="rui"] .transition-\[color\,box-shadow\,transform\] {
|
|
3354
|
+
transition-property: color,box-shadow,transform;
|
|
3355
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
3356
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
3357
|
+
}
|
|
3401
3358
|
[data-theme="rui"] .transition-\[color\,box-shadow\] {
|
|
3402
3359
|
transition-property: color,box-shadow;
|
|
3403
3360
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -4371,6 +4328,14 @@
|
|
|
4371
4328
|
outline-width: 2px;
|
|
4372
4329
|
}
|
|
4373
4330
|
}
|
|
4331
|
+
[data-theme="rui"] .active\:scale-\[0\.98\] {
|
|
4332
|
+
[data-theme="rui"] &:where([data-rac])[data-active] {
|
|
4333
|
+
scale: 0.98;
|
|
4334
|
+
}
|
|
4335
|
+
[data-theme="rui"] &:where(:not([data-rac])):active {
|
|
4336
|
+
scale: 0.98;
|
|
4337
|
+
}
|
|
4338
|
+
}
|
|
4374
4339
|
[data-theme="rui"] .disabled\:pointer-events-none {
|
|
4375
4340
|
[data-theme="rui"] &:where([data-rac])[data-disabled] {
|
|
4376
4341
|
pointer-events: none;
|
|
@@ -4578,24 +4543,24 @@
|
|
|
4578
4543
|
}
|
|
4579
4544
|
}
|
|
4580
4545
|
}
|
|
4581
|
-
[data-theme="rui"] .aria
|
|
4582
|
-
[data-theme="rui"] &[aria-
|
|
4546
|
+
[data-theme="rui"] .aria-selected\:bg-brand {
|
|
4547
|
+
[data-theme="rui"] &[aria-selected="true"] {
|
|
4583
4548
|
background-color: var(--color-stone-950);
|
|
4584
4549
|
}
|
|
4585
4550
|
}
|
|
4586
|
-
[data-theme="rui"] .aria
|
|
4587
|
-
[data-theme="rui"] &[aria-
|
|
4551
|
+
[data-theme="rui"] .aria-selected\:text-brand-foreground {
|
|
4552
|
+
[data-theme="rui"] &[aria-selected="true"] {
|
|
4588
4553
|
color: var(--color-stone-50);
|
|
4589
4554
|
}
|
|
4590
4555
|
}
|
|
4591
|
-
[data-theme="rui"] .aria
|
|
4592
|
-
[data-theme="rui"] &[aria-
|
|
4556
|
+
[data-theme="rui"] .aria-selected\:shadow-xs {
|
|
4557
|
+
[data-theme="rui"] &[aria-selected="true"] {
|
|
4593
4558
|
--tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
|
|
4594
4559
|
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
4595
4560
|
}
|
|
4596
4561
|
}
|
|
4597
|
-
[data-theme="rui"] .aria
|
|
4598
|
-
[data-theme="rui"] &[aria-
|
|
4562
|
+
[data-theme="rui"] .aria-selected\:hover\:bg-brand\/90 {
|
|
4563
|
+
[data-theme="rui"] &[aria-selected="true"] {
|
|
4599
4564
|
[data-theme="rui"] &:where([data-rac])[data-hovered] {
|
|
4600
4565
|
background-color: color-mix(in srgb, oklch(14.7% 0.004 49.25) 90%, transparent);
|
|
4601
4566
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -4622,38 +4587,16 @@
|
|
|
4622
4587
|
background-color: var(--color-stone-100);
|
|
4623
4588
|
}
|
|
4624
4589
|
}
|
|
4625
|
-
[data-theme="rui"] .data-checked\:text-white {
|
|
4626
|
-
[data-theme="rui"] &[data-checked] {
|
|
4627
|
-
color: var(--color-white);
|
|
4628
|
-
}
|
|
4629
|
-
}
|
|
4630
4590
|
[data-theme="rui"] .data-disabled\:cursor-not-allowed {
|
|
4631
4591
|
[data-theme="rui"] &[data-disabled] {
|
|
4632
4592
|
cursor: not-allowed;
|
|
4633
4593
|
}
|
|
4634
4594
|
}
|
|
4635
|
-
[data-theme="rui"] .data-focus\:outline {
|
|
4636
|
-
[data-theme="rui"] &[data-focus] {
|
|
4637
|
-
outline-style: var(--tw-outline-style);
|
|
4638
|
-
outline-width: 1px;
|
|
4639
|
-
}
|
|
4640
|
-
}
|
|
4641
|
-
[data-theme="rui"] .data-focus\:outline-2 {
|
|
4642
|
-
[data-theme="rui"] &[data-focus] {
|
|
4643
|
-
outline-style: var(--tw-outline-style);
|
|
4644
|
-
outline-width: 2px;
|
|
4645
|
-
}
|
|
4646
|
-
}
|
|
4647
4595
|
[data-theme="rui"] .data-focus-visible\:z-10 {
|
|
4648
4596
|
[data-theme="rui"] &[data-focus-visible] {
|
|
4649
4597
|
z-index: 10;
|
|
4650
4598
|
}
|
|
4651
4599
|
}
|
|
4652
|
-
[data-theme="rui"] .data-indeterminate\:text-white {
|
|
4653
|
-
[data-theme="rui"] &[data-indeterminate] {
|
|
4654
|
-
color: var(--color-white);
|
|
4655
|
-
}
|
|
4656
|
-
}
|
|
4657
4600
|
[data-theme="rui"] .\*\:data-placeholder\:text-placeholder {
|
|
4658
4601
|
[data-theme="rui"] :is(& > *) {
|
|
4659
4602
|
[data-theme="rui"] &[data-placeholder] {
|
|
@@ -4868,6 +4811,86 @@
|
|
|
4868
4811
|
}
|
|
4869
4812
|
}
|
|
4870
4813
|
}
|
|
4814
|
+
[data-theme="rui"] .data-\[placement\=bottom\]\:bottom-0 {
|
|
4815
|
+
[data-theme="rui"] &[data-placement="bottom"] {
|
|
4816
|
+
bottom: calc(var(--spacing) * 0);
|
|
4817
|
+
}
|
|
4818
|
+
}
|
|
4819
|
+
[data-theme="rui"] .data-\[placement\=bottom\]\:left-0 {
|
|
4820
|
+
[data-theme="rui"] &[data-placement="bottom"] {
|
|
4821
|
+
left: calc(var(--spacing) * 0);
|
|
4822
|
+
}
|
|
4823
|
+
}
|
|
4824
|
+
[data-theme="rui"] .data-\[placement\=bottom\]\:h-48 {
|
|
4825
|
+
[data-theme="rui"] &[data-placement="bottom"] {
|
|
4826
|
+
height: calc(var(--spacing) * 48);
|
|
4827
|
+
}
|
|
4828
|
+
}
|
|
4829
|
+
[data-theme="rui"] .data-\[placement\=bottom\]\:h-64 {
|
|
4830
|
+
[data-theme="rui"] &[data-placement="bottom"] {
|
|
4831
|
+
height: calc(var(--spacing) * 64);
|
|
4832
|
+
}
|
|
4833
|
+
}
|
|
4834
|
+
[data-theme="rui"] .data-\[placement\=bottom\]\:h-80 {
|
|
4835
|
+
[data-theme="rui"] &[data-placement="bottom"] {
|
|
4836
|
+
height: calc(var(--spacing) * 80);
|
|
4837
|
+
}
|
|
4838
|
+
}
|
|
4839
|
+
[data-theme="rui"] .data-\[placement\=bottom\]\:w-full {
|
|
4840
|
+
[data-theme="rui"] &[data-placement="bottom"] {
|
|
4841
|
+
width: 100%;
|
|
4842
|
+
}
|
|
4843
|
+
}
|
|
4844
|
+
[data-theme="rui"] .data-\[placement\=left\]\:top-0 {
|
|
4845
|
+
[data-theme="rui"] &[data-placement="left"] {
|
|
4846
|
+
top: calc(var(--spacing) * 0);
|
|
4847
|
+
}
|
|
4848
|
+
}
|
|
4849
|
+
[data-theme="rui"] .data-\[placement\=left\]\:left-0 {
|
|
4850
|
+
[data-theme="rui"] &[data-placement="left"] {
|
|
4851
|
+
left: calc(var(--spacing) * 0);
|
|
4852
|
+
}
|
|
4853
|
+
}
|
|
4854
|
+
[data-theme="rui"] .data-\[placement\=right\]\:top-0 {
|
|
4855
|
+
[data-theme="rui"] &[data-placement="right"] {
|
|
4856
|
+
top: calc(var(--spacing) * 0);
|
|
4857
|
+
}
|
|
4858
|
+
}
|
|
4859
|
+
[data-theme="rui"] .data-\[placement\=right\]\:right-0 {
|
|
4860
|
+
[data-theme="rui"] &[data-placement="right"] {
|
|
4861
|
+
right: calc(var(--spacing) * 0);
|
|
4862
|
+
}
|
|
4863
|
+
}
|
|
4864
|
+
[data-theme="rui"] .data-\[placement\=top\]\:top-0 {
|
|
4865
|
+
[data-theme="rui"] &[data-placement="top"] {
|
|
4866
|
+
top: calc(var(--spacing) * 0);
|
|
4867
|
+
}
|
|
4868
|
+
}
|
|
4869
|
+
[data-theme="rui"] .data-\[placement\=top\]\:left-0 {
|
|
4870
|
+
[data-theme="rui"] &[data-placement="top"] {
|
|
4871
|
+
left: calc(var(--spacing) * 0);
|
|
4872
|
+
}
|
|
4873
|
+
}
|
|
4874
|
+
[data-theme="rui"] .data-\[placement\=top\]\:h-48 {
|
|
4875
|
+
[data-theme="rui"] &[data-placement="top"] {
|
|
4876
|
+
height: calc(var(--spacing) * 48);
|
|
4877
|
+
}
|
|
4878
|
+
}
|
|
4879
|
+
[data-theme="rui"] .data-\[placement\=top\]\:h-64 {
|
|
4880
|
+
[data-theme="rui"] &[data-placement="top"] {
|
|
4881
|
+
height: calc(var(--spacing) * 64);
|
|
4882
|
+
}
|
|
4883
|
+
}
|
|
4884
|
+
[data-theme="rui"] .data-\[placement\=top\]\:h-80 {
|
|
4885
|
+
[data-theme="rui"] &[data-placement="top"] {
|
|
4886
|
+
height: calc(var(--spacing) * 80);
|
|
4887
|
+
}
|
|
4888
|
+
}
|
|
4889
|
+
[data-theme="rui"] .data-\[placement\=top\]\:w-full {
|
|
4890
|
+
[data-theme="rui"] &[data-placement="top"] {
|
|
4891
|
+
width: 100%;
|
|
4892
|
+
}
|
|
4893
|
+
}
|
|
4871
4894
|
[data-theme="rui"] .data-\[selected\=true\]\:border {
|
|
4872
4895
|
[data-theme="rui"] &[data-selected="true"] {
|
|
4873
4896
|
border-style: var(--tw-border-style);
|
|
@@ -5023,6 +5046,14 @@
|
|
|
5023
5046
|
margin-top: calc(var(--spacing) * 2);
|
|
5024
5047
|
}
|
|
5025
5048
|
}
|
|
5049
|
+
[data-theme="rui"] .expanded\:contents {
|
|
5050
|
+
[data-theme="rui"] &:where([data-rac])[data-expanded] {
|
|
5051
|
+
display: contents;
|
|
5052
|
+
}
|
|
5053
|
+
[data-theme="rui"] &:where(:not([data-rac]))[expanded] {
|
|
5054
|
+
display: contents;
|
|
5055
|
+
}
|
|
5056
|
+
}
|
|
5026
5057
|
[data-theme="rui"] .expanded\:bg-hover {
|
|
5027
5058
|
[data-theme="rui"] &:where([data-rac])[data-expanded] {
|
|
5028
5059
|
background-color: var(--color-stone-100);
|
|
@@ -5031,15 +5062,75 @@
|
|
|
5031
5062
|
background-color: var(--color-stone-100);
|
|
5032
5063
|
}
|
|
5033
5064
|
}
|
|
5034
|
-
[data-theme="rui"] .entering\:animate-slide-in-
|
|
5065
|
+
[data-theme="rui"] .entering\:animate-slide-in-left {
|
|
5035
5066
|
[data-theme="rui"] &[data-entering] {
|
|
5036
|
-
animation: slide-in-
|
|
5067
|
+
animation: slide-in-left var(--slide-in-duration)
|
|
5068
|
+
var(--ease-out-expo);
|
|
5069
|
+
}
|
|
5070
|
+
}
|
|
5071
|
+
[data-theme="rui"] .data-\[placement\=bottom\]\:entering\:animate-slide-in-bottom {
|
|
5072
|
+
[data-theme="rui"] &[data-placement="bottom"] {
|
|
5073
|
+
[data-theme="rui"] &[data-entering] {
|
|
5074
|
+
animation: slide-in-bottom var(--slide-in-duration)
|
|
5075
|
+
var(--ease-out-expo);
|
|
5076
|
+
}
|
|
5077
|
+
}
|
|
5078
|
+
}
|
|
5079
|
+
[data-theme="rui"] .data-\[placement\=left\]\:entering\:animate-slide-in-left {
|
|
5080
|
+
[data-theme="rui"] &[data-placement="left"] {
|
|
5081
|
+
[data-theme="rui"] &[data-entering] {
|
|
5082
|
+
animation: slide-in-left var(--slide-in-duration)
|
|
5083
|
+
var(--ease-out-expo);
|
|
5084
|
+
}
|
|
5085
|
+
}
|
|
5086
|
+
}
|
|
5087
|
+
[data-theme="rui"] .data-\[placement\=right\]\:entering\:animate-slide-in-right {
|
|
5088
|
+
[data-theme="rui"] &[data-placement="right"] {
|
|
5089
|
+
[data-theme="rui"] &[data-entering] {
|
|
5090
|
+
animation: slide-in-right var(--slide-in-duration)
|
|
5037
5091
|
var(--ease-out-expo);
|
|
5092
|
+
}
|
|
5038
5093
|
}
|
|
5039
5094
|
}
|
|
5040
|
-
[data-theme="rui"] .
|
|
5095
|
+
[data-theme="rui"] .data-\[placement\=top\]\:entering\:animate-slide-in-top {
|
|
5096
|
+
[data-theme="rui"] &[data-placement="top"] {
|
|
5097
|
+
[data-theme="rui"] &[data-entering] {
|
|
5098
|
+
animation: slide-in-top var(--slide-in-duration)
|
|
5099
|
+
var(--ease-out-expo);
|
|
5100
|
+
}
|
|
5101
|
+
}
|
|
5102
|
+
}
|
|
5103
|
+
[data-theme="rui"] .exiting\:animate-slide-out-left {
|
|
5041
5104
|
[data-theme="rui"] &[data-exiting] {
|
|
5042
|
-
animation: slide-in-
|
|
5105
|
+
animation: slide-in-left var(--slide-out-duration) reverse;
|
|
5106
|
+
}
|
|
5107
|
+
}
|
|
5108
|
+
[data-theme="rui"] .data-\[placement\=bottom\]\:exiting\:animate-slide-out-bottom {
|
|
5109
|
+
[data-theme="rui"] &[data-placement="bottom"] {
|
|
5110
|
+
[data-theme="rui"] &[data-exiting] {
|
|
5111
|
+
animation: slide-in-bottom var(--slide-out-duration) reverse;
|
|
5112
|
+
}
|
|
5113
|
+
}
|
|
5114
|
+
}
|
|
5115
|
+
[data-theme="rui"] .data-\[placement\=left\]\:exiting\:animate-slide-out-left {
|
|
5116
|
+
[data-theme="rui"] &[data-placement="left"] {
|
|
5117
|
+
[data-theme="rui"] &[data-exiting] {
|
|
5118
|
+
animation: slide-in-left var(--slide-out-duration) reverse;
|
|
5119
|
+
}
|
|
5120
|
+
}
|
|
5121
|
+
}
|
|
5122
|
+
[data-theme="rui"] .data-\[placement\=right\]\:exiting\:animate-slide-out-right {
|
|
5123
|
+
[data-theme="rui"] &[data-placement="right"] {
|
|
5124
|
+
[data-theme="rui"] &[data-exiting] {
|
|
5125
|
+
animation: slide-in-right var(--slide-out-duration) reverse;
|
|
5126
|
+
}
|
|
5127
|
+
}
|
|
5128
|
+
}
|
|
5129
|
+
[data-theme="rui"] .data-\[placement\=top\]\:exiting\:animate-slide-out-top {
|
|
5130
|
+
[data-theme="rui"] &[data-placement="top"] {
|
|
5131
|
+
[data-theme="rui"] &[data-exiting] {
|
|
5132
|
+
animation: slide-in-top var(--slide-out-duration) reverse;
|
|
5133
|
+
}
|
|
5043
5134
|
}
|
|
5044
5135
|
}
|
|
5045
5136
|
[data-theme="rui"] .pending\:cursor-not-allowed {
|
|
@@ -5063,6 +5154,11 @@
|
|
|
5063
5154
|
color: var(--color-stone-400);
|
|
5064
5155
|
}
|
|
5065
5156
|
}
|
|
5157
|
+
[data-theme="rui"] .pressed\:scale-\[0\.98\] {
|
|
5158
|
+
[data-theme="rui"] &[data-pressed] {
|
|
5159
|
+
scale: 0.98;
|
|
5160
|
+
}
|
|
5161
|
+
}
|
|
5066
5162
|
[data-theme="rui"] .selected\:border-b-8 {
|
|
5067
5163
|
[data-theme="rui"] &[data-selected] {
|
|
5068
5164
|
border-bottom-style: var(--tw-border-style);
|
|
@@ -5112,6 +5208,18 @@
|
|
|
5112
5208
|
}
|
|
5113
5209
|
}
|
|
5114
5210
|
}
|
|
5211
|
+
[data-theme="rui"] .expanded\:\[\&_\[role\=group\]\]\:contents {
|
|
5212
|
+
[data-theme="rui"] &:where([data-rac])[data-expanded] {
|
|
5213
|
+
[data-theme="rui"] & [role=group] {
|
|
5214
|
+
display: contents;
|
|
5215
|
+
}
|
|
5216
|
+
}
|
|
5217
|
+
[data-theme="rui"] &:where(:not([data-rac]))[expanded] {
|
|
5218
|
+
[data-theme="rui"] & [role=group] {
|
|
5219
|
+
display: contents;
|
|
5220
|
+
}
|
|
5221
|
+
}
|
|
5222
|
+
}
|
|
5115
5223
|
[data-theme="rui"] .\[\&_button\]\:px-2 {
|
|
5116
5224
|
[data-theme="rui"] & button {
|
|
5117
5225
|
padding-inline: calc(var(--spacing) * 2);
|
|
@@ -5355,14 +5463,19 @@
|
|
|
5355
5463
|
display: none;
|
|
5356
5464
|
}
|
|
5357
5465
|
}
|
|
5358
|
-
[data-theme="rui"] .\[\&\:has\(\[slot\=description\]\)\]\:items-
|
|
5466
|
+
[data-theme="rui"] .\[\&\:has\(\[slot\=description\]\)\]\:items-end {
|
|
5359
5467
|
[data-theme="rui"] &:has([slot=description]) {
|
|
5360
|
-
align-items:
|
|
5468
|
+
align-items: flex-end;
|
|
5361
5469
|
}
|
|
5362
5470
|
}
|
|
5363
|
-
[data-theme="rui"] .\[\&\:has\(\[slot\=
|
|
5471
|
+
[data-theme="rui"] .\[\&\:has\(\[slot\=description\]\)_button\]\:mb-6 {
|
|
5472
|
+
[data-theme="rui"] &:has([slot=description]) button {
|
|
5473
|
+
margin-bottom: calc(var(--spacing) * 6);
|
|
5474
|
+
}
|
|
5475
|
+
}
|
|
5476
|
+
[data-theme="rui"] .\[\&\:has\(\[slot\=errorMessage\]\)\]\:mb-6 {
|
|
5364
5477
|
[data-theme="rui"] &:has([slot=errorMessage]) {
|
|
5365
|
-
|
|
5478
|
+
margin-bottom: calc(var(--spacing) * 6);
|
|
5366
5479
|
}
|
|
5367
5480
|
}
|
|
5368
5481
|
[data-theme="rui"] .\[\&\:has\(\[type\=checkbox\]\)\]\:pr-0 {
|
|
@@ -5767,6 +5880,30 @@
|
|
|
5767
5880
|
transform: translateX(0);
|
|
5768
5881
|
}
|
|
5769
5882
|
}
|
|
5883
|
+
@keyframes slide-in-left {
|
|
5884
|
+
from {
|
|
5885
|
+
transform: translateX(-100%);
|
|
5886
|
+
}
|
|
5887
|
+
to {
|
|
5888
|
+
transform: translateX(0);
|
|
5889
|
+
}
|
|
5890
|
+
}
|
|
5891
|
+
@keyframes slide-in-top {
|
|
5892
|
+
from {
|
|
5893
|
+
transform: translateY(-100%);
|
|
5894
|
+
}
|
|
5895
|
+
to {
|
|
5896
|
+
transform: translateY(0);
|
|
5897
|
+
}
|
|
5898
|
+
}
|
|
5899
|
+
@keyframes slide-in-bottom {
|
|
5900
|
+
from {
|
|
5901
|
+
transform: translateY(100%);
|
|
5902
|
+
}
|
|
5903
|
+
to {
|
|
5904
|
+
transform: translateY(0);
|
|
5905
|
+
}
|
|
5906
|
+
}
|
|
5770
5907
|
@keyframes rotate-spinner {
|
|
5771
5908
|
0% {
|
|
5772
5909
|
transform: rotate(0deg);
|
package/dist/theme.css
CHANGED
|
@@ -211,7 +211,7 @@
|
|
|
211
211
|
}
|
|
212
212
|
}
|
|
213
213
|
|
|
214
|
-
/* animation slide in */
|
|
214
|
+
/* animation slide in right*/
|
|
215
215
|
--slide-in-duration: 0.3s;
|
|
216
216
|
--slide-out-duration: 0.15s;
|
|
217
217
|
|
|
@@ -229,6 +229,51 @@
|
|
|
229
229
|
}
|
|
230
230
|
}
|
|
231
231
|
|
|
232
|
+
/* animation slide in left*/
|
|
233
|
+
--animate-slide-in-left: slide-in-left var(--slide-in-duration)
|
|
234
|
+
var(--ease-out-expo);
|
|
235
|
+
--animate-slide-out-left: slide-in-left var(--slide-out-duration) reverse;
|
|
236
|
+
|
|
237
|
+
@keyframes slide-in-left {
|
|
238
|
+
from {
|
|
239
|
+
transform: translateX(-100%);
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
to {
|
|
243
|
+
transform: translateX(0);
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
/* animation slide in top*/
|
|
248
|
+
--animate-slide-in-top: slide-in-top var(--slide-in-duration)
|
|
249
|
+
var(--ease-out-expo);
|
|
250
|
+
--animate-slide-out-top: slide-in-top var(--slide-out-duration) reverse;
|
|
251
|
+
|
|
252
|
+
@keyframes slide-in-top {
|
|
253
|
+
from {
|
|
254
|
+
transform: translateY(-100%);
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
to {
|
|
258
|
+
transform: translateY(0);
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
/* animation slide in bottom*/
|
|
263
|
+
--animate-slide-in-bottom: slide-in-bottom var(--slide-in-duration)
|
|
264
|
+
var(--ease-out-expo);
|
|
265
|
+
--animate-slide-out-bottom: slide-in-bottom var(--slide-out-duration) reverse;
|
|
266
|
+
|
|
267
|
+
@keyframes slide-in-bottom {
|
|
268
|
+
from {
|
|
269
|
+
transform: translateY(100%);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
to {
|
|
273
|
+
transform: translateY(0);
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
|
|
232
277
|
/* animation and keyframes */
|
|
233
278
|
--animate-rotate-spinner: rotate-spinner 2s linear infinite;
|
|
234
279
|
--animate-progress-cycle: progress-cycle 1.5s linear infinite;
|