@xjur-ui/react 1.0.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.
Files changed (70) hide show
  1. package/.turbo/turbo-build.log +57 -0
  2. package/dist/components/resources/icons.d.ts +4 -0
  3. package/dist/components/resources/icons.js +133 -0
  4. package/dist/components/resources/logo/horizontal.d.ts +12 -0
  5. package/dist/components/resources/logo/horizontal.js +107 -0
  6. package/dist/components/resources/logo/icon.d.ts +12 -0
  7. package/dist/components/resources/logo/icon.js +79 -0
  8. package/dist/components/resources/logo/index.d.ts +4 -0
  9. package/dist/components/resources/logo/index.js +291 -0
  10. package/dist/components/resources/logo/vertical.d.ts +12 -0
  11. package/dist/components/resources/logo/vertical.js +107 -0
  12. package/dist/components/ui/accordion.d.ts +5 -0
  13. package/dist/components/ui/accordion.js +8 -0
  14. package/dist/components/ui/button.d.ts +16 -0
  15. package/dist/components/ui/button.js +95 -0
  16. package/dist/components/ui/icon.d.ts +12 -0
  17. package/dist/components/ui/icon.js +158 -0
  18. package/dist/components/ui/index.d.ts +17 -0
  19. package/dist/components/ui/index.js +788 -0
  20. package/dist/components/ui/input/content.d.ts +9 -0
  21. package/dist/components/ui/input/content.js +183 -0
  22. package/dist/components/ui/input/index.d.ts +12 -0
  23. package/dist/components/ui/input/index.js +335 -0
  24. package/dist/components/ui/input/label.d.ts +12 -0
  25. package/dist/components/ui/input/label.js +165 -0
  26. package/dist/components/ui/input/message.d.ts +10 -0
  27. package/dist/components/ui/input/message.js +128 -0
  28. package/dist/components/ui/input/root.d.ts +18 -0
  29. package/dist/components/ui/input/root.js +163 -0
  30. package/dist/components/ui/input/slot.d.ts +10 -0
  31. package/dist/components/ui/input/slot.js +20 -0
  32. package/dist/components/ui/input/text.d.ts +10 -0
  33. package/dist/components/ui/input/text.js +195 -0
  34. package/dist/components/ui/logo.d.ts +10 -0
  35. package/dist/components/ui/logo.js +324 -0
  36. package/dist/components/ui/otp-input.d.ts +13 -0
  37. package/dist/components/ui/otp-input.js +47 -0
  38. package/dist/components/ui/typography.d.ts +17 -0
  39. package/dist/components/ui/typography.js +78 -0
  40. package/dist/index.css +770 -0
  41. package/dist/index.d.ts +17 -0
  42. package/dist/index.js +788 -0
  43. package/eslint.config.js +3 -0
  44. package/package.json +41 -0
  45. package/postcss.config.js +5 -0
  46. package/prettier.config.js +7 -0
  47. package/src/components/resources/icons.ts +131 -0
  48. package/src/components/resources/logo/horizontal.tsx +70 -0
  49. package/src/components/resources/logo/icon.tsx +54 -0
  50. package/src/components/resources/logo/index.ts +3 -0
  51. package/src/components/resources/logo/vertical.tsx +70 -0
  52. package/src/components/ui/accordion.tsx +3 -0
  53. package/src/components/ui/button.tsx +105 -0
  54. package/src/components/ui/icon.tsx +29 -0
  55. package/src/components/ui/index.ts +13 -0
  56. package/src/components/ui/input/content.tsx +59 -0
  57. package/src/components/ui/input/index.ts +6 -0
  58. package/src/components/ui/input/label.tsx +41 -0
  59. package/src/components/ui/input/message.tsx +37 -0
  60. package/src/components/ui/input/root.tsx +57 -0
  61. package/src/components/ui/input/slot.tsx +21 -0
  62. package/src/components/ui/input/text.tsx +69 -0
  63. package/src/components/ui/logo.tsx +39 -0
  64. package/src/components/ui/otp-input.tsx +45 -0
  65. package/src/components/ui/typography.tsx +85 -0
  66. package/src/index.css +2 -0
  67. package/src/index.ts +2 -0
  68. package/src/types.d.ts +4 -0
  69. package/tsconfig.json +4 -0
  70. package/tsup.config.ts +12 -0
package/dist/index.css ADDED
@@ -0,0 +1,770 @@
1
+ /* src/index.css */
2
+ @layer properties;
3
+ @layer theme, base, components, utilities;
4
+ @layer theme {
5
+ :root,
6
+ :host {
7
+ --font-sans:
8
+ ui-sans-serif,
9
+ system-ui,
10
+ sans-serif,
11
+ "Apple Color Emoji",
12
+ "Segoe UI Emoji",
13
+ "Segoe UI Symbol",
14
+ "Noto Color Emoji";
15
+ --font-mono:
16
+ ui-monospace,
17
+ SFMono-Regular,
18
+ Menlo,
19
+ Monaco,
20
+ Consolas,
21
+ "Liberation Mono",
22
+ "Courier New",
23
+ monospace;
24
+ --font-weight-thin: 100;
25
+ --font-weight-extralight: 200;
26
+ --font-weight-light: 300;
27
+ --font-weight-normal: 400;
28
+ --font-weight-medium: 500;
29
+ --font-weight-semibold: 600;
30
+ --font-weight-bold: 700;
31
+ --font-weight-extrabold: 800;
32
+ --font-weight-black: 900;
33
+ --default-transition-duration: 150ms;
34
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
35
+ --default-font-family: var(--font-sans);
36
+ --default-mono-font-family: var(--font-mono);
37
+ --spacing-small-1x: 4px;
38
+ --spacing-small_1x-alt: 6px;
39
+ --spacing-small: 8px;
40
+ --spacing-medium: 12px;
41
+ --spacing-large-6x: 40px;
42
+ --radius-small-1x: 4px;
43
+ --radius-circle: 999px;
44
+ --shadow-medium: 4px;
45
+ --color-title-neutral: #17171A;
46
+ --color-neutral-dark: #3D3D47;
47
+ --color-neutral-label: #FFFFFF;
48
+ --color-icon-neutral-3: #69697A;
49
+ --color-layer-1-hover: #F0F0F2;
50
+ --color-layer-1-pressed: #E7E7EB;
51
+ --color-layer-1-active: #DEDEE3;
52
+ --color-layer-2-idle: #FFFFFF;
53
+ --color-layer-2-hover: #F8F8FA;
54
+ --color-layer-2-pressed: #F0F0F2;
55
+ --color-layer-2-active: #E7E7EB;
56
+ --color-border-layer-2: #DEDEE3;
57
+ --color-border-layer-3: #9C9CAD;
58
+ --color-primary-idle: #E87D30;
59
+ --color-primary-hover: #C7631C;
60
+ --color-primary-pressed: #AE5413;
61
+ --color-primary-alt-idle: #F9EEE6;
62
+ --color-primary-alt-pressed: #F4DCCD;
63
+ --color-danger-idle: #E83040;
64
+ --color-danger-hover: #C71C2B;
65
+ --color-danger-pressed: #AE1320;
66
+ --color-danger-alt-idle: #F9E6E8;
67
+ --color-danger-alt-pressed: #F4CDCD;
68
+ --color-danger-label-idle: #E83040;
69
+ --color-danger-label-active: #E83040;
70
+ --text-size-body-sm-1x: 12px;
71
+ --text-size-body-sm-1x--line-height: 16px;
72
+ --text-size-body-sm: 13px;
73
+ --text-size-body-sm--line-height: 16px;
74
+ --text-size-body-md: 14px;
75
+ --text-size-body-md--line-height: 20px;
76
+ --text-size-body-lg: 16px;
77
+ --text-size-body-lg--line-height: 24px;
78
+ --text-size-label-sm-2x: 10px;
79
+ --text-size-label-sm-2x--line-height: 14px;
80
+ --text-size-label-sm-1x: 12px;
81
+ --text-size-label-sm-1x--line-height: 16px;
82
+ --text-size-label-sm: 13px;
83
+ --text-size-label-sm--line-height: 16px;
84
+ --text-size-label-md: 14px;
85
+ --text-size-label-md--line-height: 20px;
86
+ --text-size-label-lg: 16px;
87
+ --text-size-label-lg--line-height: 24px;
88
+ --text-size-title-sm: 14px;
89
+ --text-size-title-sm--line-height: 20px;
90
+ --text-size-title-md: 16px;
91
+ --text-size-title-md--line-height: 24px;
92
+ --text-size-title-lg: 20px;
93
+ --text-size-title-lg--line-height: 28px;
94
+ --text-size-headline-sm: 24px;
95
+ --text-size-headline-sm--line-height: 32px;
96
+ --text-size-headline-md: 28px;
97
+ --text-size-headline-md--line-height: 40px;
98
+ --text-size-headline-lg: 32px;
99
+ --text-size-headline-lg--line-height: 48px;
100
+ }
101
+ }
102
+ @layer base {
103
+ *,
104
+ ::after,
105
+ ::before,
106
+ ::backdrop,
107
+ ::file-selector-button {
108
+ box-sizing: border-box;
109
+ margin: 0;
110
+ padding: 0;
111
+ border: 0 solid;
112
+ }
113
+ html,
114
+ :host {
115
+ line-height: 1.5;
116
+ -webkit-text-size-adjust: 100%;
117
+ tab-size: 4;
118
+ font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
119
+ font-feature-settings: var(--default-font-feature-settings, normal);
120
+ font-variation-settings: var(--default-font-variation-settings, normal);
121
+ -webkit-tap-highlight-color: transparent;
122
+ }
123
+ hr {
124
+ height: 0;
125
+ color: inherit;
126
+ border-top-width: 1px;
127
+ }
128
+ abbr:where([title]) {
129
+ -webkit-text-decoration: underline dotted;
130
+ text-decoration: underline dotted;
131
+ }
132
+ h1,
133
+ h2,
134
+ h3,
135
+ h4,
136
+ h5,
137
+ h6 {
138
+ font-size: inherit;
139
+ font-weight: inherit;
140
+ }
141
+ a {
142
+ color: inherit;
143
+ -webkit-text-decoration: inherit;
144
+ text-decoration: inherit;
145
+ }
146
+ b,
147
+ strong {
148
+ font-weight: bolder;
149
+ }
150
+ code,
151
+ kbd,
152
+ samp,
153
+ pre {
154
+ font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
155
+ font-feature-settings: var(--default-mono-font-feature-settings, normal);
156
+ font-variation-settings: var(--default-mono-font-variation-settings, normal);
157
+ font-size: 1em;
158
+ }
159
+ small {
160
+ font-size: 80%;
161
+ }
162
+ sub,
163
+ sup {
164
+ font-size: 75%;
165
+ line-height: 0;
166
+ position: relative;
167
+ vertical-align: baseline;
168
+ }
169
+ sub {
170
+ bottom: -0.25em;
171
+ }
172
+ sup {
173
+ top: -0.5em;
174
+ }
175
+ table {
176
+ text-indent: 0;
177
+ border-color: inherit;
178
+ border-collapse: collapse;
179
+ }
180
+ :-moz-focusring {
181
+ outline: auto;
182
+ }
183
+ progress {
184
+ vertical-align: baseline;
185
+ }
186
+ summary {
187
+ display: list-item;
188
+ }
189
+ ol,
190
+ ul,
191
+ menu {
192
+ list-style: none;
193
+ }
194
+ img,
195
+ svg,
196
+ video,
197
+ canvas,
198
+ audio,
199
+ iframe,
200
+ embed,
201
+ object {
202
+ display: block;
203
+ vertical-align: middle;
204
+ }
205
+ img,
206
+ video {
207
+ max-width: 100%;
208
+ height: auto;
209
+ }
210
+ button,
211
+ input,
212
+ select,
213
+ optgroup,
214
+ textarea,
215
+ ::file-selector-button {
216
+ font: inherit;
217
+ font-feature-settings: inherit;
218
+ font-variation-settings: inherit;
219
+ letter-spacing: inherit;
220
+ color: inherit;
221
+ border-radius: 0;
222
+ background-color: transparent;
223
+ opacity: 1;
224
+ }
225
+ :where(select:is([multiple], [size])) optgroup {
226
+ font-weight: bolder;
227
+ }
228
+ :where(select:is([multiple], [size])) optgroup option {
229
+ padding-inline-start: 20px;
230
+ }
231
+ ::file-selector-button {
232
+ margin-inline-end: 4px;
233
+ }
234
+ ::placeholder {
235
+ opacity: 1;
236
+ }
237
+ @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
238
+ ::placeholder {
239
+ color: currentcolor;
240
+ @supports (color: color-mix(in lab, red, red)) {
241
+ color: color-mix(in oklab, currentcolor 50%, transparent);
242
+ }
243
+ }
244
+ }
245
+ textarea {
246
+ resize: vertical;
247
+ }
248
+ ::-webkit-search-decoration {
249
+ -webkit-appearance: none;
250
+ }
251
+ ::-webkit-date-and-time-value {
252
+ min-height: 1lh;
253
+ text-align: inherit;
254
+ }
255
+ ::-webkit-datetime-edit {
256
+ display: inline-flex;
257
+ }
258
+ ::-webkit-datetime-edit-fields-wrapper {
259
+ padding: 0;
260
+ }
261
+ ::-webkit-datetime-edit,
262
+ ::-webkit-datetime-edit-year-field,
263
+ ::-webkit-datetime-edit-month-field,
264
+ ::-webkit-datetime-edit-day-field,
265
+ ::-webkit-datetime-edit-hour-field,
266
+ ::-webkit-datetime-edit-minute-field,
267
+ ::-webkit-datetime-edit-second-field,
268
+ ::-webkit-datetime-edit-millisecond-field,
269
+ ::-webkit-datetime-edit-meridiem-field {
270
+ padding-block: 0;
271
+ }
272
+ :-moz-ui-invalid {
273
+ box-shadow: none;
274
+ }
275
+ button,
276
+ input:where([type=button], [type=reset], [type=submit]),
277
+ ::file-selector-button {
278
+ appearance: button;
279
+ }
280
+ ::-webkit-inner-spin-button,
281
+ ::-webkit-outer-spin-button {
282
+ height: auto;
283
+ }
284
+ [hidden]:where(:not([hidden=until-found])) {
285
+ display: none !important;
286
+ }
287
+ }
288
+ @layer utilities {
289
+ .relative {
290
+ position: relative;
291
+ }
292
+ .flex {
293
+ display: flex;
294
+ }
295
+ .inline-flex {
296
+ display: inline-flex;
297
+ }
298
+ .h-full {
299
+ height: 100%;
300
+ }
301
+ .h-large-6x {
302
+ height: var(--spacing-large-6x);
303
+ }
304
+ .w-fit {
305
+ width: fit-content;
306
+ }
307
+ .w-full {
308
+ width: 100%;
309
+ }
310
+ .cursor-pointer {
311
+ cursor: pointer;
312
+ }
313
+ .flex-col {
314
+ flex-direction: column;
315
+ }
316
+ .items-center {
317
+ align-items: center;
318
+ }
319
+ .justify-center {
320
+ justify-content: center;
321
+ }
322
+ .gap-small {
323
+ gap: var(--spacing-small);
324
+ }
325
+ .overflow-hidden {
326
+ overflow: hidden;
327
+ }
328
+ .rounded {
329
+ border-radius: 0.25rem;
330
+ }
331
+ .rounded-circle {
332
+ border-radius: var(--radius-circle);
333
+ }
334
+ .rounded-small-1x {
335
+ border-radius: var(--radius-small-1x);
336
+ }
337
+ .border {
338
+ border-style: var(--tw-border-style);
339
+ border-width: 1px;
340
+ }
341
+ .border-1 {
342
+ border-style: var(--tw-border-style);
343
+ border-width: 1px;
344
+ }
345
+ .border-hidden {
346
+ --tw-border-style: hidden;
347
+ border-style: hidden;
348
+ }
349
+ .border-border-layer-2 {
350
+ border-color: var(--color-border-layer-2);
351
+ }
352
+ .border-danger-idle {
353
+ border-color: var(--color-danger-idle);
354
+ }
355
+ .bg-danger-idle {
356
+ background-color: var(--color-danger-idle);
357
+ }
358
+ .bg-layer-1-hover {
359
+ background-color: var(--color-layer-1-hover);
360
+ }
361
+ .bg-layer-2-hover {
362
+ background-color: var(--color-layer-2-hover);
363
+ }
364
+ .bg-layer-2-idle {
365
+ background-color: var(--color-layer-2-idle);
366
+ }
367
+ .bg-primary-idle {
368
+ background-color: var(--color-primary-idle);
369
+ }
370
+ .bg-transparent {
371
+ background-color: transparent;
372
+ }
373
+ .px-medium {
374
+ padding-inline: var(--spacing-medium);
375
+ }
376
+ .px-small {
377
+ padding-inline: var(--spacing-small);
378
+ }
379
+ .py-small-1x {
380
+ padding-block: var(--spacing-small-1x);
381
+ }
382
+ .py-small_1x-alt {
383
+ padding-block: var(--spacing-small_1x-alt);
384
+ }
385
+ .text-center {
386
+ text-align: center;
387
+ }
388
+ .text-size-body-lg {
389
+ font-size: var(--text-size-body-lg);
390
+ line-height: var(--tw-leading, var(--text-size-body-lg--line-height));
391
+ }
392
+ .text-size-body-md {
393
+ font-size: var(--text-size-body-md);
394
+ line-height: var(--tw-leading, var(--text-size-body-md--line-height));
395
+ }
396
+ .text-size-body-sm {
397
+ font-size: var(--text-size-body-sm);
398
+ line-height: var(--tw-leading, var(--text-size-body-sm--line-height));
399
+ }
400
+ .text-size-body-sm-1x {
401
+ font-size: var(--text-size-body-sm-1x);
402
+ line-height: var(--tw-leading, var(--text-size-body-sm-1x--line-height));
403
+ }
404
+ .text-size-headline-lg {
405
+ font-size: var(--text-size-headline-lg);
406
+ line-height: var(--tw-leading, var(--text-size-headline-lg--line-height));
407
+ }
408
+ .text-size-headline-md {
409
+ font-size: var(--text-size-headline-md);
410
+ line-height: var(--tw-leading, var(--text-size-headline-md--line-height));
411
+ }
412
+ .text-size-headline-sm {
413
+ font-size: var(--text-size-headline-sm);
414
+ line-height: var(--tw-leading, var(--text-size-headline-sm--line-height));
415
+ }
416
+ .text-size-label-lg {
417
+ font-size: var(--text-size-label-lg);
418
+ line-height: var(--tw-leading, var(--text-size-label-lg--line-height));
419
+ }
420
+ .text-size-label-md {
421
+ font-size: var(--text-size-label-md);
422
+ line-height: var(--tw-leading, var(--text-size-label-md--line-height));
423
+ }
424
+ .text-size-label-sm {
425
+ font-size: var(--text-size-label-sm);
426
+ line-height: var(--tw-leading, var(--text-size-label-sm--line-height));
427
+ }
428
+ .text-size-label-sm-1x {
429
+ font-size: var(--text-size-label-sm-1x);
430
+ line-height: var(--tw-leading, var(--text-size-label-sm-1x--line-height));
431
+ }
432
+ .text-size-label-sm-2x {
433
+ font-size: var(--text-size-label-sm-2x);
434
+ line-height: var(--tw-leading, var(--text-size-label-sm-2x--line-height));
435
+ }
436
+ .text-size-title-lg {
437
+ font-size: var(--text-size-title-lg);
438
+ line-height: var(--tw-leading, var(--text-size-title-lg--line-height));
439
+ }
440
+ .text-size-title-md {
441
+ font-size: var(--text-size-title-md);
442
+ line-height: var(--tw-leading, var(--text-size-title-md--line-height));
443
+ }
444
+ .text-size-title-sm {
445
+ font-size: var(--text-size-title-sm);
446
+ line-height: var(--tw-leading, var(--text-size-title-sm--line-height));
447
+ }
448
+ .font-black {
449
+ --tw-font-weight: var(--font-weight-black);
450
+ font-weight: var(--font-weight-black);
451
+ }
452
+ .font-bold {
453
+ --tw-font-weight: var(--font-weight-bold);
454
+ font-weight: var(--font-weight-bold);
455
+ }
456
+ .font-extrabold {
457
+ --tw-font-weight: var(--font-weight-extrabold);
458
+ font-weight: var(--font-weight-extrabold);
459
+ }
460
+ .font-extralight {
461
+ --tw-font-weight: var(--font-weight-extralight);
462
+ font-weight: var(--font-weight-extralight);
463
+ }
464
+ .font-light {
465
+ --tw-font-weight: var(--font-weight-light);
466
+ font-weight: var(--font-weight-light);
467
+ }
468
+ .font-medium {
469
+ --tw-font-weight: var(--font-weight-medium);
470
+ font-weight: var(--font-weight-medium);
471
+ }
472
+ .font-normal {
473
+ --tw-font-weight: var(--font-weight-normal);
474
+ font-weight: var(--font-weight-normal);
475
+ }
476
+ .font-semibold {
477
+ --tw-font-weight: var(--font-weight-semibold);
478
+ font-weight: var(--font-weight-semibold);
479
+ }
480
+ .font-thin {
481
+ --tw-font-weight: var(--font-weight-thin);
482
+ font-weight: var(--font-weight-thin);
483
+ }
484
+ .text-ellipsis {
485
+ text-overflow: ellipsis;
486
+ }
487
+ .text-danger-label-idle {
488
+ color: var(--color-danger-label-idle);
489
+ }
490
+ .text-icon-neutral-3 {
491
+ color: var(--color-icon-neutral-3);
492
+ }
493
+ .text-neutral-dark {
494
+ color: var(--color-neutral-dark);
495
+ }
496
+ .text-neutral-label {
497
+ color: var(--color-neutral-label);
498
+ }
499
+ .text-primary-idle {
500
+ color: var(--color-primary-idle);
501
+ }
502
+ .text-title-neutral {
503
+ color: var(--color-title-neutral);
504
+ }
505
+ .outline-hidden {
506
+ --tw-outline-style: none;
507
+ outline-style: none;
508
+ @media (forced-colors: active) {
509
+ outline: 2px solid transparent;
510
+ outline-offset: 2px;
511
+ }
512
+ }
513
+ .outline-0 {
514
+ outline-style: var(--tw-outline-style);
515
+ outline-width: 0px;
516
+ }
517
+ .transition-\[border-color\] {
518
+ transition-property: border-color;
519
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
520
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
521
+ }
522
+ .transition-colors {
523
+ transition-property:
524
+ color,
525
+ background-color,
526
+ border-color,
527
+ outline-color,
528
+ text-decoration-color,
529
+ fill,
530
+ stroke,
531
+ --tw-gradient-from,
532
+ --tw-gradient-via,
533
+ --tw-gradient-to;
534
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
535
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
536
+ }
537
+ .duration-100 {
538
+ --tw-duration: 100ms;
539
+ transition-duration: 100ms;
540
+ }
541
+ .group-hover\:border-border-layer-3 {
542
+ &:is(:where(.group):hover *) {
543
+ @media (hover: hover) {
544
+ border-color: var(--color-border-layer-3);
545
+ }
546
+ }
547
+ }
548
+ .group-hover\:border-danger-idle {
549
+ &:is(:where(.group):hover *) {
550
+ @media (hover: hover) {
551
+ border-color: var(--color-danger-idle);
552
+ }
553
+ }
554
+ }
555
+ .focus-within\:border {
556
+ &:focus-within {
557
+ border-style: var(--tw-border-style);
558
+ border-width: 1px;
559
+ }
560
+ }
561
+ .focus-within\:border-danger-idle {
562
+ &:focus-within {
563
+ border-color: var(--color-danger-idle);
564
+ }
565
+ }
566
+ .focus-within\:border-primary-idle {
567
+ &:focus-within {
568
+ border-color: var(--color-primary-idle);
569
+ }
570
+ }
571
+ .focus-within\:shadow-focus-danger {
572
+ &:focus-within {
573
+ --tw-shadow: 0 0 0 var(--tw-shadow-color, var(--shadow-medium, 4px)) rgba(232, 48, 64, 0.16);
574
+ box-shadow:
575
+ var(--tw-inset-shadow),
576
+ var(--tw-inset-ring-shadow),
577
+ var(--tw-ring-offset-shadow),
578
+ var(--tw-ring-shadow),
579
+ var(--tw-shadow);
580
+ }
581
+ }
582
+ .focus-within\:shadow-focus-primary {
583
+ &:focus-within {
584
+ --tw-shadow: 0 0 0 var(--tw-shadow-color, var(--shadow-medium, 4px)) rgba(232, 125, 48, 0.16);
585
+ box-shadow:
586
+ var(--tw-inset-shadow),
587
+ var(--tw-inset-ring-shadow),
588
+ var(--tw-ring-offset-shadow),
589
+ var(--tw-ring-shadow),
590
+ var(--tw-shadow);
591
+ }
592
+ }
593
+ .hover\:bg-danger-alt-idle {
594
+ &:hover {
595
+ @media (hover: hover) {
596
+ background-color: var(--color-danger-alt-idle);
597
+ }
598
+ }
599
+ }
600
+ .hover\:bg-danger-hover {
601
+ &:hover {
602
+ @media (hover: hover) {
603
+ background-color: var(--color-danger-hover);
604
+ }
605
+ }
606
+ }
607
+ .hover\:bg-layer-1-hover {
608
+ &:hover {
609
+ @media (hover: hover) {
610
+ background-color: var(--color-layer-1-hover);
611
+ }
612
+ }
613
+ }
614
+ .hover\:bg-layer-1-pressed {
615
+ &:hover {
616
+ @media (hover: hover) {
617
+ background-color: var(--color-layer-1-pressed);
618
+ }
619
+ }
620
+ }
621
+ .hover\:bg-layer-2-hover {
622
+ &:hover {
623
+ @media (hover: hover) {
624
+ background-color: var(--color-layer-2-hover);
625
+ }
626
+ }
627
+ }
628
+ .hover\:bg-layer-2-pressed {
629
+ &:hover {
630
+ @media (hover: hover) {
631
+ background-color: var(--color-layer-2-pressed);
632
+ }
633
+ }
634
+ }
635
+ .hover\:bg-primary-alt-idle {
636
+ &:hover {
637
+ @media (hover: hover) {
638
+ background-color: var(--color-primary-alt-idle);
639
+ }
640
+ }
641
+ }
642
+ .hover\:bg-primary-hover {
643
+ &:hover {
644
+ @media (hover: hover) {
645
+ background-color: var(--color-primary-hover);
646
+ }
647
+ }
648
+ }
649
+ .active\:bg-danger-alt-pressed {
650
+ &:active {
651
+ background-color: var(--color-danger-alt-pressed);
652
+ }
653
+ }
654
+ .active\:bg-danger-pressed {
655
+ &:active {
656
+ background-color: var(--color-danger-pressed);
657
+ }
658
+ }
659
+ .active\:bg-layer-1-active {
660
+ &:active {
661
+ background-color: var(--color-layer-1-active);
662
+ }
663
+ }
664
+ .active\:bg-layer-1-pressed {
665
+ &:active {
666
+ background-color: var(--color-layer-1-pressed);
667
+ }
668
+ }
669
+ .active\:bg-layer-2-active {
670
+ &:active {
671
+ background-color: var(--color-layer-2-active);
672
+ }
673
+ }
674
+ .active\:bg-layer-2-pressed {
675
+ &:active {
676
+ background-color: var(--color-layer-2-pressed);
677
+ }
678
+ }
679
+ .active\:bg-primary-alt-pressed {
680
+ &:active {
681
+ background-color: var(--color-primary-alt-pressed);
682
+ }
683
+ }
684
+ .active\:bg-primary-pressed {
685
+ &:active {
686
+ background-color: var(--color-primary-pressed);
687
+ }
688
+ }
689
+ .disabled\:pointer-events-none {
690
+ &:disabled {
691
+ pointer-events: none;
692
+ }
693
+ }
694
+ .disabled\:opacity-38 {
695
+ &:disabled {
696
+ opacity: 38%;
697
+ }
698
+ }
699
+ .has-\[input\[data-filled\=true\]\]\:bg-layer-2-hover {
700
+ &:has(*:is(input[data-filled=true])) {
701
+ background-color: var(--color-layer-2-hover);
702
+ }
703
+ }
704
+ .data-\[disabled\=true\]\:pointer-events-none {
705
+ &[data-disabled=true] {
706
+ pointer-events: none;
707
+ }
708
+ }
709
+ .data-\[disabled\=true\]\:opacity-60 {
710
+ &[data-disabled=true] {
711
+ opacity: 60%;
712
+ }
713
+ }
714
+ .data-\[error\=true\]\:text-danger-idle {
715
+ &[data-error=true] {
716
+ color: var(--color-danger-idle);
717
+ }
718
+ }
719
+ .data-\[error\=true\]\:text-danger-label-active {
720
+ &[data-error=true] {
721
+ color: var(--color-danger-label-active);
722
+ }
723
+ }
724
+ }
725
+ @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
726
+ @property --tw-font-weight { syntax: "*"; inherits: false; }
727
+ @property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
728
+ @property --tw-duration { syntax: "*"; inherits: false; }
729
+ @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
730
+ @property --tw-shadow-color { syntax: "*"; inherits: false; }
731
+ @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
732
+ @property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
733
+ @property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
734
+ @property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
735
+ @property --tw-ring-color { syntax: "*"; inherits: false; }
736
+ @property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
737
+ @property --tw-inset-ring-color { syntax: "*"; inherits: false; }
738
+ @property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
739
+ @property --tw-ring-inset { syntax: "*"; inherits: false; }
740
+ @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
741
+ @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
742
+ @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
743
+ @layer properties {
744
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
745
+ *,
746
+ ::before,
747
+ ::after,
748
+ ::backdrop {
749
+ --tw-border-style: solid;
750
+ --tw-font-weight: initial;
751
+ --tw-outline-style: solid;
752
+ --tw-duration: initial;
753
+ --tw-shadow: 0 0 #0000;
754
+ --tw-shadow-color: initial;
755
+ --tw-shadow-alpha: 100%;
756
+ --tw-inset-shadow: 0 0 #0000;
757
+ --tw-inset-shadow-color: initial;
758
+ --tw-inset-shadow-alpha: 100%;
759
+ --tw-ring-color: initial;
760
+ --tw-ring-shadow: 0 0 #0000;
761
+ --tw-inset-ring-color: initial;
762
+ --tw-inset-ring-shadow: 0 0 #0000;
763
+ --tw-ring-inset: initial;
764
+ --tw-ring-offset-width: 0px;
765
+ --tw-ring-offset-color: #fff;
766
+ --tw-ring-offset-shadow: 0 0 #0000;
767
+ }
768
+ }
769
+ }
770
+ /*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */