@xjur-ui/react 1.0.0 → 1.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.
Files changed (115) hide show
  1. package/.turbo/turbo-build.log +61 -57
  2. package/CHANGELOG.md +11 -0
  3. package/dist/components/avatar.d.ts +11 -0
  4. package/dist/components/avatar.js +58 -0
  5. package/dist/components/{ui/button.d.ts → button.d.ts} +2 -2
  6. package/dist/components/{ui/button.js → button.js} +9 -6
  7. package/dist/components/calendar.d.ts +11 -0
  8. package/dist/components/calendar.js +751 -0
  9. package/dist/components/checkbox.d.ts +8 -0
  10. package/dist/components/{ui/input/root.js → checkbox.js} +69 -79
  11. package/dist/components/chip.d.ts +24 -0
  12. package/dist/components/chip.js +255 -0
  13. package/dist/components/collapsible.d.ts +8 -0
  14. package/dist/components/collapsible.js +41 -0
  15. package/dist/components/date-picker.d.ts +20 -0
  16. package/dist/components/date-picker.js +230 -0
  17. package/dist/components/divider.d.ts +7 -0
  18. package/dist/components/divider.js +28 -0
  19. package/dist/components/dropdown-menu.d.ts +22 -0
  20. package/dist/components/dropdown-menu.js +294 -0
  21. package/dist/components/{resources/icons.d.ts → icon.d.ts} +11 -2
  22. package/dist/components/{ui/icon.js → icon.js} +18 -5
  23. package/dist/components/input.d.ts +32 -0
  24. package/dist/components/input.js +299 -0
  25. package/dist/components/list.d.ts +25 -0
  26. package/dist/components/{ui/input/content.js → list.js} +83 -87
  27. package/dist/components/{ui/logo.d.ts → logo.d.ts} +2 -2
  28. package/dist/components/{ui/logo.js → logo.js} +5 -5
  29. package/dist/components/{ui/otp-input.js → otp-input.js} +1 -1
  30. package/dist/components/radio.d.ts +10 -0
  31. package/dist/components/{ui/input/label.js → radio.js} +68 -77
  32. package/dist/components/search-input.d.ts +17 -0
  33. package/dist/components/search-input.js +274 -0
  34. package/dist/components/select.d.ts +33 -0
  35. package/dist/components/select.js +548 -0
  36. package/dist/components/sheet.d.ts +19 -0
  37. package/dist/components/sheet.js +251 -0
  38. package/dist/components/switch.d.ts +7 -0
  39. package/dist/components/switch.js +36 -0
  40. package/dist/components/tabs.d.ts +11 -0
  41. package/dist/components/tabs.js +54 -0
  42. package/dist/components/tag.d.ts +18 -0
  43. package/dist/components/tag.js +189 -0
  44. package/dist/components/{ui/typography.d.ts → typography.d.ts} +3 -3
  45. package/dist/components/{ui/typography.js → typography.js} +1 -1
  46. package/dist/index.css +1156 -62
  47. package/dist/index.d.ts +2 -17
  48. package/dist/index.js +0 -788
  49. package/eslint.config.js +8 -1
  50. package/package.json +40 -10
  51. package/src/components/avatar.tsx +53 -0
  52. package/src/components/{ui/button.tsx → button.tsx} +7 -5
  53. package/src/components/calendar.tsx +123 -0
  54. package/src/components/checkbox.tsx +57 -0
  55. package/src/components/chip.tsx +109 -0
  56. package/src/components/collapsible.tsx +35 -0
  57. package/src/components/date-picker.tsx +154 -0
  58. package/src/components/divider.tsx +23 -0
  59. package/src/components/dropdown-menu.tsx +101 -0
  60. package/src/components/{ui/icon.tsx → icon.tsx} +1 -1
  61. package/src/components/input.tsx +241 -0
  62. package/src/components/list.tsx +111 -0
  63. package/src/components/radio.tsx +74 -0
  64. package/src/components/search-input.tsx +112 -0
  65. package/src/components/select.tsx +234 -0
  66. package/src/components/sheet.tsx +141 -0
  67. package/src/components/switch.tsx +31 -0
  68. package/src/components/tabs.tsx +53 -0
  69. package/src/components/tag.tsx +91 -0
  70. package/src/index.css +4 -1
  71. package/src/index.ts +0 -1
  72. package/src/{components/resources → resources}/icons.ts +14 -1
  73. package/src/resources/input-mask.ts +91 -0
  74. package/dist/components/resources/icons.js +0 -133
  75. package/dist/components/resources/logo/horizontal.d.ts +0 -12
  76. package/dist/components/resources/logo/horizontal.js +0 -107
  77. package/dist/components/resources/logo/icon.d.ts +0 -12
  78. package/dist/components/resources/logo/icon.js +0 -79
  79. package/dist/components/resources/logo/index.d.ts +0 -4
  80. package/dist/components/resources/logo/index.js +0 -291
  81. package/dist/components/resources/logo/vertical.d.ts +0 -12
  82. package/dist/components/resources/logo/vertical.js +0 -107
  83. package/dist/components/ui/accordion.d.ts +0 -5
  84. package/dist/components/ui/accordion.js +0 -8
  85. package/dist/components/ui/icon.d.ts +0 -12
  86. package/dist/components/ui/index.d.ts +0 -17
  87. package/dist/components/ui/index.js +0 -788
  88. package/dist/components/ui/input/content.d.ts +0 -9
  89. package/dist/components/ui/input/index.d.ts +0 -12
  90. package/dist/components/ui/input/index.js +0 -335
  91. package/dist/components/ui/input/label.d.ts +0 -12
  92. package/dist/components/ui/input/message.d.ts +0 -10
  93. package/dist/components/ui/input/message.js +0 -128
  94. package/dist/components/ui/input/root.d.ts +0 -18
  95. package/dist/components/ui/input/slot.d.ts +0 -10
  96. package/dist/components/ui/input/slot.js +0 -20
  97. package/dist/components/ui/input/text.d.ts +0 -10
  98. package/dist/components/ui/input/text.js +0 -195
  99. package/src/components/ui/accordion.tsx +0 -3
  100. package/src/components/ui/index.ts +0 -13
  101. package/src/components/ui/input/content.tsx +0 -59
  102. package/src/components/ui/input/index.ts +0 -6
  103. package/src/components/ui/input/label.tsx +0 -41
  104. package/src/components/ui/input/message.tsx +0 -37
  105. package/src/components/ui/input/root.tsx +0 -57
  106. package/src/components/ui/input/slot.tsx +0 -21
  107. package/src/components/ui/input/text.tsx +0 -69
  108. /package/dist/components/{ui/otp-input.d.ts → otp-input.d.ts} +0 -0
  109. /package/src/components/{ui/logo.tsx → logo.tsx} +0 -0
  110. /package/src/components/{ui/otp-input.tsx → otp-input.tsx} +0 -0
  111. /package/src/components/{ui/typography.tsx → typography.tsx} +0 -0
  112. /package/src/{components/resources → resources}/logo/horizontal.tsx +0 -0
  113. /package/src/{components/resources → resources}/logo/icon.tsx +0 -0
  114. /package/src/{components/resources → resources}/logo/index.ts +0 -0
  115. /package/src/{components/resources → resources}/logo/vertical.tsx +0 -0
package/dist/index.css CHANGED
@@ -21,6 +21,10 @@
21
21
  "Liberation Mono",
22
22
  "Courier New",
23
23
  monospace;
24
+ --color-black: #000;
25
+ --color-white: #fff;
26
+ --spacing: 0.25rem;
27
+ --container-sm: 24rem;
24
28
  --font-weight-thin: 100;
25
29
  --font-weight-extralight: 200;
26
30
  --font-weight-light: 300;
@@ -30,22 +34,50 @@
30
34
  --font-weight-bold: 700;
31
35
  --font-weight-extrabold: 800;
32
36
  --font-weight-black: 900;
37
+ --ease-out: cubic-bezier(0, 0, 0.2, 1);
38
+ --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
33
39
  --default-transition-duration: 150ms;
34
40
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
35
41
  --default-font-family: var(--font-sans);
36
42
  --default-mono-font-family: var(--font-mono);
43
+ --font-inter:
44
+ Inter,
45
+ ui-sans-serif,
46
+ system-ui,
47
+ sans-serif,
48
+ "Apple Color Emoji",
49
+ "Segoe UI Emoji",
50
+ "Segoe UI Symbol",
51
+ "Noto Color Emoji";
52
+ --spacing-none: 0;
37
53
  --spacing-small-1x: 4px;
38
54
  --spacing-small_1x-alt: 6px;
39
55
  --spacing-small: 8px;
40
56
  --spacing-medium: 12px;
57
+ --spacing-large: 16px;
58
+ --spacing-large-alt: 18px;
59
+ --spacing-large-1x: 20px;
60
+ --spacing-large-2x: 24px;
61
+ --spacing-large-3x: 28px;
62
+ --spacing-large-4x: 32px;
41
63
  --spacing-large-6x: 40px;
64
+ --spacing-large-7x: 44px;
65
+ --spacing-large-8x: 48px;
66
+ --radius-none: 0;
42
67
  --radius-small-1x: 4px;
68
+ --radius-small: 8px;
43
69
  --radius-circle: 999px;
70
+ --shadow-2x-small: 1px;
71
+ --shadow-1x-small: 2px;
44
72
  --shadow-medium: 4px;
45
- --color-title-neutral: #17171A;
73
+ --shadow-large-1x: 8px;
74
+ --color-shadow-lightest: #0000000A;
75
+ --color-shadow-light: #0000000F;
46
76
  --color-neutral-dark: #3D3D47;
77
+ --color-neutral-placeholder: #9C9CAD;
47
78
  --color-neutral-label: #FFFFFF;
48
79
  --color-icon-neutral-3: #69697A;
80
+ --color-layer-1-idle: #F7F7FA;
49
81
  --color-layer-1-hover: #F0F0F2;
50
82
  --color-layer-1-pressed: #E7E7EB;
51
83
  --color-layer-1-active: #DEDEE3;
@@ -53,20 +85,28 @@
53
85
  --color-layer-2-hover: #F8F8FA;
54
86
  --color-layer-2-pressed: #F0F0F2;
55
87
  --color-layer-2-active: #E7E7EB;
88
+ --color-alt-1: #17171A;
89
+ --color-alt-4: #9C9CAD;
90
+ --color-border-layer-1: #D6D6DC;
56
91
  --color-border-layer-2: #DEDEE3;
57
92
  --color-border-layer-3: #9C9CAD;
58
93
  --color-primary-idle: #E87D30;
59
94
  --color-primary-hover: #C7631C;
60
95
  --color-primary-pressed: #AE5413;
96
+ --color-primary-active: #E87D30;
61
97
  --color-primary-alt-idle: #F9EEE6;
98
+ --color-primary-alt-hover: #F7E6D9;
62
99
  --color-primary-alt-pressed: #F4DCCD;
100
+ --color-primary-alt-active: #F9EEE6;
101
+ --color-primary-label-idle: #E87D30;
102
+ --color-primary-label-active: #E87D30;
63
103
  --color-danger-idle: #E83040;
64
104
  --color-danger-hover: #C71C2B;
65
105
  --color-danger-pressed: #AE1320;
66
106
  --color-danger-alt-idle: #F9E6E8;
107
+ --color-danger-alt-hover: #F7D9DC;
67
108
  --color-danger-alt-pressed: #F4CDCD;
68
109
  --color-danger-label-idle: #E83040;
69
- --color-danger-label-active: #E83040;
70
110
  --text-size-body-sm-1x: 12px;
71
111
  --text-size-body-sm-1x--line-height: 16px;
72
112
  --text-size-body-sm: 13px;
@@ -286,105 +326,414 @@
286
326
  }
287
327
  }
288
328
  @layer utilities {
329
+ .pointer-events-none {
330
+ pointer-events: none;
331
+ }
332
+ .invisible {
333
+ visibility: hidden;
334
+ }
335
+ .absolute {
336
+ position: absolute;
337
+ }
338
+ .fixed {
339
+ position: fixed;
340
+ }
289
341
  .relative {
290
342
  position: relative;
291
343
  }
344
+ .inset-0 {
345
+ inset: calc(var(--spacing) * 0);
346
+ }
347
+ .inset-x-0 {
348
+ inset-inline: calc(var(--spacing) * 0);
349
+ }
350
+ .inset-y-0 {
351
+ inset-block: calc(var(--spacing) * 0);
352
+ }
353
+ .-top-\[22px\] {
354
+ top: calc(22px * -1);
355
+ }
356
+ .top-0 {
357
+ top: calc(var(--spacing) * 0);
358
+ }
359
+ .top-1\/2 {
360
+ top: calc(1/2 * 100%);
361
+ }
362
+ .top-\[50\%\] {
363
+ top: 50%;
364
+ }
365
+ .right-0 {
366
+ right: calc(var(--spacing) * 0);
367
+ }
368
+ .right-small {
369
+ right: var(--spacing-small);
370
+ }
371
+ .bottom-0 {
372
+ bottom: calc(var(--spacing) * 0);
373
+ }
374
+ .left-0 {
375
+ left: calc(var(--spacing) * 0);
376
+ }
377
+ .left-auto {
378
+ left: auto;
379
+ }
380
+ .left-small {
381
+ left: var(--spacing-small);
382
+ }
383
+ .z-10 {
384
+ z-index: 10;
385
+ }
386
+ .z-50 {
387
+ z-index: 50;
388
+ }
389
+ .mt-auto {
390
+ margin-top: auto;
391
+ }
392
+ .mt-small {
393
+ margin-top: var(--spacing-small);
394
+ }
395
+ .ml-small-1x {
396
+ margin-left: var(--spacing-small-1x);
397
+ }
398
+ .scrollbar-hide {
399
+ -ms-overflow-style: none;
400
+ scrollbar-width: none;
401
+ &::-webkit-scrollbar {
402
+ display: none;
403
+ }
404
+ }
292
405
  .flex {
293
406
  display: flex;
294
407
  }
408
+ .hidden {
409
+ display: none;
410
+ }
295
411
  .inline-flex {
296
412
  display: inline-flex;
297
413
  }
414
+ .aspect-square {
415
+ aspect-ratio: 1 / 1;
416
+ }
417
+ .size-full {
418
+ width: 100%;
419
+ height: 100%;
420
+ }
421
+ .size-large {
422
+ width: var(--spacing-large);
423
+ height: var(--spacing-large);
424
+ }
425
+ .size-large-alt {
426
+ width: var(--spacing-large-alt);
427
+ height: var(--spacing-large-alt);
428
+ }
429
+ .size-medium {
430
+ width: var(--spacing-medium);
431
+ height: var(--spacing-medium);
432
+ }
433
+ .h-auto {
434
+ height: auto;
435
+ }
298
436
  .h-full {
299
437
  height: 100%;
300
438
  }
439
+ .h-large {
440
+ height: var(--spacing-large);
441
+ }
442
+ .h-large-2x {
443
+ height: var(--spacing-large-2x);
444
+ }
445
+ .h-large-4x {
446
+ height: var(--spacing-large-4x);
447
+ }
301
448
  .h-large-6x {
302
449
  height: var(--spacing-large-6x);
303
450
  }
451
+ .h-large-7x {
452
+ height: var(--spacing-large-7x);
453
+ }
454
+ .max-h-\[400px\] {
455
+ max-height: 400px;
456
+ }
457
+ .max-h-\[var\(--radix-popover-content-available-height\)\] {
458
+ max-height: var(--radix-popover-content-available-height);
459
+ }
460
+ .w-3\/4 {
461
+ width: calc(3/4 * 100%);
462
+ }
463
+ .w-\[var\(--radix-popover-trigger-width\)\] {
464
+ width: var(--radix-popover-trigger-width);
465
+ }
304
466
  .w-fit {
305
467
  width: fit-content;
306
468
  }
307
469
  .w-full {
308
470
  width: 100%;
309
471
  }
472
+ .w-large-2x {
473
+ width: var(--spacing-large-2x);
474
+ }
475
+ .w-large-3x {
476
+ width: var(--spacing-large-3x);
477
+ }
478
+ .w-large-4x {
479
+ width: var(--spacing-large-4x);
480
+ }
481
+ .max-w-\[var\(--radix-popover-trigger-width\)\] {
482
+ max-width: var(--radix-popover-trigger-width);
483
+ }
484
+ .min-w-\[240px\] {
485
+ min-width: 240px;
486
+ }
487
+ .flex-1 {
488
+ flex: 1;
489
+ }
490
+ .shrink-0 {
491
+ flex-shrink: 0;
492
+ }
493
+ .-translate-y-1\/2 {
494
+ --tw-translate-y: calc(calc(1/2 * 100%) * -1);
495
+ translate: var(--tw-translate-x) var(--tw-translate-y);
496
+ }
497
+ .animate-in {
498
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
499
+ }
310
500
  .cursor-pointer {
311
501
  cursor: pointer;
312
502
  }
503
+ .list-none {
504
+ list-style-type: none;
505
+ }
313
506
  .flex-col {
314
507
  flex-direction: column;
315
508
  }
316
509
  .items-center {
317
510
  align-items: center;
318
511
  }
512
+ .justify-between {
513
+ justify-content: space-between;
514
+ }
319
515
  .justify-center {
320
516
  justify-content: center;
321
517
  }
518
+ .gap-4 {
519
+ gap: calc(var(--spacing) * 4);
520
+ }
322
521
  .gap-small {
323
522
  gap: var(--spacing-small);
324
523
  }
524
+ .gap-small-1x {
525
+ gap: var(--spacing-small-1x);
526
+ }
527
+ .gap-small_1x-alt {
528
+ gap: var(--spacing-small_1x-alt);
529
+ }
530
+ .truncate {
531
+ overflow: hidden;
532
+ text-overflow: ellipsis;
533
+ white-space: nowrap;
534
+ }
325
535
  .overflow-hidden {
326
536
  overflow: hidden;
327
537
  }
328
- .rounded {
329
- border-radius: 0.25rem;
538
+ .overflow-x-auto {
539
+ overflow-x: auto;
540
+ }
541
+ .overflow-y-auto {
542
+ overflow-y: auto;
543
+ }
544
+ .rounded-\[6px\] {
545
+ border-radius: 6px;
330
546
  }
331
547
  .rounded-circle {
332
548
  border-radius: var(--radius-circle);
333
549
  }
550
+ .rounded-full {
551
+ border-radius: calc(infinity * 1px);
552
+ }
553
+ .rounded-none {
554
+ border-radius: 0;
555
+ }
556
+ .rounded-none {
557
+ border-radius: var(--radius-none);
558
+ }
559
+ .rounded-small {
560
+ border-radius: var(--radius-small);
561
+ }
334
562
  .rounded-small-1x {
335
563
  border-radius: var(--radius-small-1x);
336
564
  }
565
+ .rounded-tr-circle {
566
+ border-top-right-radius: var(--radius-circle);
567
+ }
568
+ .rounded-tr-none {
569
+ border-top-right-radius: 0;
570
+ }
571
+ .rounded-tr-none {
572
+ border-top-right-radius: var(--radius-none);
573
+ }
574
+ .rounded-br-circle {
575
+ border-bottom-right-radius: var(--radius-circle);
576
+ }
577
+ .rounded-br-none {
578
+ border-bottom-right-radius: 0;
579
+ }
580
+ .rounded-br-none {
581
+ border-bottom-right-radius: var(--radius-none);
582
+ }
583
+ .rounded-bl-none {
584
+ border-bottom-left-radius: 0;
585
+ }
586
+ .rounded-bl-none {
587
+ border-bottom-left-radius: var(--radius-none);
588
+ }
337
589
  .border {
338
590
  border-style: var(--tw-border-style);
339
591
  border-width: 1px;
340
592
  }
341
- .border-1 {
593
+ .border-2 {
342
594
  border-style: var(--tw-border-style);
343
- border-width: 1px;
595
+ border-width: 2px;
596
+ }
597
+ .border-x-0 {
598
+ border-inline-style: var(--tw-border-style);
599
+ border-inline-width: 0px;
600
+ }
601
+ .border-t {
602
+ border-top-style: var(--tw-border-style);
603
+ border-top-width: 1px;
344
604
  }
345
- .border-hidden {
346
- --tw-border-style: hidden;
347
- border-style: hidden;
605
+ .border-t-0 {
606
+ border-top-style: var(--tw-border-style);
607
+ border-top-width: 0px;
608
+ }
609
+ .border-r {
610
+ border-right-style: var(--tw-border-style);
611
+ border-right-width: 1px;
612
+ }
613
+ .border-r-0 {
614
+ border-right-style: var(--tw-border-style);
615
+ border-right-width: 0px;
616
+ }
617
+ .border-b {
618
+ border-bottom-style: var(--tw-border-style);
619
+ border-bottom-width: 1px;
620
+ }
621
+ .border-b-1 {
622
+ border-bottom-style: var(--tw-border-style);
623
+ border-bottom-width: 1px;
624
+ }
625
+ .border-l {
626
+ border-left-style: var(--tw-border-style);
627
+ border-left-width: 1px;
348
628
  }
349
629
  .border-border-layer-2 {
350
630
  border-color: var(--color-border-layer-2);
351
631
  }
352
- .border-danger-idle {
353
- border-color: var(--color-danger-idle);
632
+ .border-transparent {
633
+ border-color: transparent;
634
+ }
635
+ .border-t-border-layer-2 {
636
+ border-top-color: var(--color-border-layer-2);
637
+ }
638
+ .border-b-border-layer-2 {
639
+ border-bottom-color: var(--color-border-layer-2);
640
+ }
641
+ .\!bg-layer-2-hover {
642
+ background-color: var(--color-layer-2-hover) !important;
643
+ }
644
+ .bg-alt-1 {
645
+ background-color: var(--color-alt-1);
646
+ }
647
+ .bg-black\/50 {
648
+ background-color: color-mix(in srgb, #000 50%, transparent);
649
+ @supports (color: color-mix(in lab, red, red)) {
650
+ background-color: color-mix(in oklab, var(--color-black) 50%, transparent);
651
+ }
652
+ }
653
+ .bg-border-layer-2 {
654
+ background-color: var(--color-border-layer-2);
655
+ }
656
+ .bg-danger-alt-idle {
657
+ background-color: var(--color-danger-alt-idle);
354
658
  }
355
659
  .bg-danger-idle {
356
660
  background-color: var(--color-danger-idle);
357
661
  }
662
+ .bg-inherit {
663
+ background-color: inherit;
664
+ }
358
665
  .bg-layer-1-hover {
359
666
  background-color: var(--color-layer-1-hover);
360
667
  }
668
+ .bg-layer-1-idle {
669
+ background-color: var(--color-layer-1-idle);
670
+ }
361
671
  .bg-layer-2-hover {
362
672
  background-color: var(--color-layer-2-hover);
363
673
  }
364
674
  .bg-layer-2-idle {
365
675
  background-color: var(--color-layer-2-idle);
366
676
  }
677
+ .bg-primary-alt-active {
678
+ background-color: var(--color-primary-alt-active);
679
+ }
680
+ .bg-primary-alt-idle {
681
+ background-color: var(--color-primary-alt-idle);
682
+ }
367
683
  .bg-primary-idle {
368
684
  background-color: var(--color-primary-idle);
369
685
  }
370
686
  .bg-transparent {
371
687
  background-color: transparent;
372
688
  }
689
+ .p-\[2px\] {
690
+ padding: 2px;
691
+ }
692
+ .p-small {
693
+ padding: var(--spacing-small);
694
+ }
695
+ .p-small-1x {
696
+ padding: var(--spacing-small-1x);
697
+ }
698
+ .px-large {
699
+ padding-inline: var(--spacing-large);
700
+ }
701
+ .px-large-2x {
702
+ padding-inline: var(--spacing-large-2x);
703
+ }
373
704
  .px-medium {
374
705
  padding-inline: var(--spacing-medium);
375
706
  }
376
707
  .px-small {
377
708
  padding-inline: var(--spacing-small);
378
709
  }
710
+ .py-large {
711
+ padding-block: var(--spacing-large);
712
+ }
713
+ .py-medium {
714
+ padding-block: var(--spacing-medium);
715
+ }
716
+ .py-none {
717
+ padding-block: var(--spacing-none);
718
+ }
719
+ .py-small {
720
+ padding-block: var(--spacing-small);
721
+ }
379
722
  .py-small-1x {
380
723
  padding-block: var(--spacing-small-1x);
381
724
  }
382
725
  .py-small_1x-alt {
383
726
  padding-block: var(--spacing-small_1x-alt);
384
727
  }
728
+ .pt-small-1x {
729
+ padding-top: var(--spacing-small-1x);
730
+ }
385
731
  .text-center {
386
732
  text-align: center;
387
733
  }
734
+ .font-inter {
735
+ font-family: var(--font-inter);
736
+ }
388
737
  .text-size-body-lg {
389
738
  font-size: var(--text-size-body-lg);
390
739
  line-height: var(--tw-leading, var(--text-size-body-lg--line-height));
@@ -481,8 +830,8 @@
481
830
  --tw-font-weight: var(--font-weight-thin);
482
831
  font-weight: var(--font-weight-thin);
483
832
  }
484
- .text-ellipsis {
485
- text-overflow: ellipsis;
833
+ .\!text-primary-label-active {
834
+ color: var(--color-primary-label-active) !important;
486
835
  }
487
836
  .text-danger-label-idle {
488
837
  color: var(--color-danger-label-idle);
@@ -496,26 +845,102 @@
496
845
  .text-neutral-label {
497
846
  color: var(--color-neutral-label);
498
847
  }
848
+ .text-neutral-placeholder {
849
+ color: var(--color-neutral-placeholder);
850
+ }
499
851
  .text-primary-idle {
500
852
  color: var(--color-primary-idle);
501
853
  }
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
- }
854
+ .text-primary-label-active {
855
+ color: var(--color-primary-label-active);
856
+ }
857
+ .text-primary-label-idle {
858
+ color: var(--color-primary-label-idle);
859
+ }
860
+ .text-white {
861
+ color: var(--color-white);
862
+ }
863
+ .opacity-60 {
864
+ opacity: 60%;
865
+ }
866
+ .shadow-elevation-2 {
867
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, var(--color-shadow-light, #0000000F)), 0 4px 8px 0 var(--tw-shadow-color, var(--color-shadow-light, #0000000F));
868
+ box-shadow:
869
+ var(--tw-inset-shadow),
870
+ var(--tw-inset-ring-shadow),
871
+ var(--tw-ring-offset-shadow),
872
+ var(--tw-ring-shadow),
873
+ var(--tw-shadow);
874
+ }
875
+ .shadow-elevation-3 {
876
+ --tw-shadow:
877
+ 0 var(--shadow-2x-small, 1px) var(--shadow-1x-small, 2px) var(--color-shadow-lightest, #0000000A),
878
+ 0 var(--shadow-medium, 4px) var(--shadow-large-1x, 8px) var(--color-shadow-lightest, #0000000A),
879
+ 0 var(--shadow-large-1x, 4px) var(--shadow-large3x, 16px) var(--color-shadow-lightest, #0000000A);
880
+ box-shadow:
881
+ var(--tw-inset-shadow),
882
+ var(--tw-inset-ring-shadow),
883
+ var(--tw-ring-offset-shadow),
884
+ var(--tw-ring-shadow),
885
+ var(--tw-shadow);
886
+ }
887
+ .ring-0 {
888
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
889
+ box-shadow:
890
+ var(--tw-inset-shadow),
891
+ var(--tw-inset-ring-shadow),
892
+ var(--tw-ring-offset-shadow),
893
+ var(--tw-ring-shadow),
894
+ var(--tw-shadow);
512
895
  }
513
896
  .outline-0 {
514
897
  outline-style: var(--tw-outline-style);
515
898
  outline-width: 0px;
516
899
  }
517
- .transition-\[border-color\] {
518
- transition-property: border-color;
900
+ .transition {
901
+ transition-property:
902
+ color,
903
+ background-color,
904
+ border-color,
905
+ outline-color,
906
+ text-decoration-color,
907
+ fill,
908
+ stroke,
909
+ --tw-gradient-from,
910
+ --tw-gradient-via,
911
+ --tw-gradient-to,
912
+ opacity,
913
+ box-shadow,
914
+ transform,
915
+ translate,
916
+ scale,
917
+ rotate,
918
+ filter,
919
+ -webkit-backdrop-filter,
920
+ backdrop-filter,
921
+ display,
922
+ visibility,
923
+ content-visibility,
924
+ overlay,
925
+ pointer-events;
926
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
927
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
928
+ }
929
+ .transition-\[border-color\,box-shadow\,background-color\] {
930
+ transition-property:
931
+ border-color,
932
+ box-shadow,
933
+ background-color;
934
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
935
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
936
+ }
937
+ .transition-\[visibility\] {
938
+ transition-property: visibility;
939
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
940
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
941
+ }
942
+ .transition-all {
943
+ transition-property: all;
519
944
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
520
945
  transition-duration: var(--tw-duration, var(--default-transition-duration));
521
946
  }
@@ -534,10 +959,90 @@
534
959
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
535
960
  transition-duration: var(--tw-duration, var(--default-transition-duration));
536
961
  }
962
+ .transition-transform {
963
+ transition-property:
964
+ transform,
965
+ translate,
966
+ scale,
967
+ rotate;
968
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
969
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
970
+ }
537
971
  .duration-100 {
538
972
  --tw-duration: 100ms;
539
973
  transition-duration: 100ms;
540
974
  }
975
+ .duration-150 {
976
+ --tw-duration: 150ms;
977
+ transition-duration: 150ms;
978
+ }
979
+ .duration-200 {
980
+ --tw-duration: 200ms;
981
+ transition-duration: 200ms;
982
+ }
983
+ .duration-250 {
984
+ --tw-duration: 250ms;
985
+ transition-duration: 250ms;
986
+ }
987
+ .ease-in-out {
988
+ --tw-ease: var(--ease-in-out);
989
+ transition-timing-function: var(--ease-in-out);
990
+ }
991
+ .ease-out {
992
+ --tw-ease: var(--ease-out);
993
+ transition-timing-function: var(--ease-out);
994
+ }
995
+ .outline-none {
996
+ --tw-outline-style: none;
997
+ outline-style: none;
998
+ }
999
+ .group-focus-within\:-top-\[3px\] {
1000
+ &:is(:where(.group):focus-within *) {
1001
+ top: calc(3px * -1);
1002
+ }
1003
+ }
1004
+ .group-focus-within\:animate-in {
1005
+ &:is(:where(.group):focus-within *) {
1006
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
1007
+ }
1008
+ }
1009
+ .group-focus-within\:bg-layer-2-hover {
1010
+ &:is(:where(.group):focus-within *) {
1011
+ background-color: var(--color-layer-2-hover);
1012
+ }
1013
+ }
1014
+ .group-focus-within\:text-size-label-sm-1x {
1015
+ &:is(:where(.group):focus-within *) {
1016
+ font-size: var(--text-size-label-sm-1x);
1017
+ line-height: var(--tw-leading, var(--text-size-label-sm-1x--line-height));
1018
+ }
1019
+ }
1020
+ .group-focus-within\:font-medium {
1021
+ &:is(:where(.group):focus-within *) {
1022
+ --tw-font-weight: var(--font-weight-medium);
1023
+ font-weight: var(--font-weight-medium);
1024
+ }
1025
+ }
1026
+ .group-focus-within\:text-primary-idle {
1027
+ &:is(:where(.group):focus-within *) {
1028
+ color: var(--color-primary-idle);
1029
+ }
1030
+ }
1031
+ .group-hover\:border-1 {
1032
+ &:is(:where(.group):hover *) {
1033
+ @media (hover: hover) {
1034
+ border-style: var(--tw-border-style);
1035
+ border-width: 1px;
1036
+ }
1037
+ }
1038
+ }
1039
+ .group-hover\:border-border-layer-1 {
1040
+ &:is(:where(.group):hover *) {
1041
+ @media (hover: hover) {
1042
+ border-color: var(--color-border-layer-1);
1043
+ }
1044
+ }
1045
+ }
541
1046
  .group-hover\:border-border-layer-3 {
542
1047
  &:is(:where(.group):hover *) {
543
1048
  @media (hover: hover) {
@@ -545,10 +1050,204 @@
545
1050
  }
546
1051
  }
547
1052
  }
548
- .group-hover\:border-danger-idle {
549
- &:is(:where(.group):hover *) {
1053
+ .group-hover\/chip\:visible {
1054
+ &:is(:where(.group\/chip):hover *) {
1055
+ @media (hover: hover) {
1056
+ visibility: visible;
1057
+ }
1058
+ }
1059
+ }
1060
+ .group-hover\/tag\:visible {
1061
+ &:is(:where(.group\/tag):hover *) {
550
1062
  @media (hover: hover) {
551
- border-color: var(--color-danger-idle);
1063
+ visibility: visible;
1064
+ }
1065
+ }
1066
+ }
1067
+ .group-has-\[div\[data-slot\=date-picker-left-slot\]\]\:left-large-4x {
1068
+ &:is(:where(.group):has(*:is(div[data-slot=date-picker-left-slot])) *) {
1069
+ left: var(--spacing-large-4x);
1070
+ }
1071
+ }
1072
+ .group-has-\[div\[data-slot\=date-picker-left-slot\]\]\:pl-large-1x {
1073
+ &:is(:where(.group):has(*:is(div[data-slot=date-picker-left-slot])) *) {
1074
+ padding-left: var(--spacing-large-1x);
1075
+ }
1076
+ }
1077
+ .group-has-\[div\[data-slot\=input-left-action-slot\]\]\:rounded-l-none {
1078
+ &:is(:where(.group):has(*:is(div[data-slot=input-left-action-slot])) *) {
1079
+ border-top-left-radius: 0;
1080
+ border-bottom-left-radius: 0;
1081
+ }
1082
+ }
1083
+ .group-has-\[div\[data-slot\=input-left-action-slot\]\]\:rounded-l-none {
1084
+ &:is(:where(.group):has(*:is(div[data-slot=input-left-action-slot])) *) {
1085
+ border-top-left-radius: var(--radius-none);
1086
+ border-bottom-left-radius: var(--radius-none);
1087
+ }
1088
+ }
1089
+ .group-has-\[div\[data-slot\=input-left-slot\]\]\:left-large-4x {
1090
+ &:is(:where(.group):has(*:is(div[data-slot=input-left-slot])) *) {
1091
+ left: var(--spacing-large-4x);
1092
+ }
1093
+ }
1094
+ .group-has-\[div\[data-slot\=input-left-slot\]\]\:pl-large-1x {
1095
+ &:is(:where(.group):has(*:is(div[data-slot=input-left-slot])) *) {
1096
+ padding-left: var(--spacing-large-1x);
1097
+ }
1098
+ }
1099
+ .group-has-\[div\[data-slot\=input-left-slot\]\]\:group-focus-within\:left-auto {
1100
+ &:is(:where(.group):has(*:is(div[data-slot=input-left-slot])) *) {
1101
+ &:is(:where(.group):focus-within *) {
1102
+ left: auto;
1103
+ }
1104
+ }
1105
+ }
1106
+ .group-has-\[div\[data-slot\=input-right-action-slot\]\]\:rounded-r-none {
1107
+ &:is(:where(.group):has(*:is(div[data-slot=input-right-action-slot])) *) {
1108
+ border-top-right-radius: 0;
1109
+ border-bottom-right-radius: 0;
1110
+ }
1111
+ }
1112
+ .group-has-\[div\[data-slot\=input-right-action-slot\]\]\:rounded-r-none {
1113
+ &:is(:where(.group):has(*:is(div[data-slot=input-right-action-slot])) *) {
1114
+ border-top-right-radius: var(--radius-none);
1115
+ border-bottom-right-radius: var(--radius-none);
1116
+ }
1117
+ }
1118
+ .group-has-\[div\[data-slot\=select-left-slot\]\]\:left-large-4x {
1119
+ &:is(:where(.group):has(*:is(div[data-slot=select-left-slot])) *) {
1120
+ left: var(--spacing-large-4x);
1121
+ }
1122
+ }
1123
+ .group-has-\[div\[data-slot\=select-left-slot\]\]\:pl-large-1x {
1124
+ &:is(:where(.group):has(*:is(div[data-slot=select-left-slot])) *) {
1125
+ padding-left: var(--spacing-large-1x);
1126
+ }
1127
+ }
1128
+ .group-has-\[input\:not\(\:placeholder-shown\)\]\:-top-\[3px\] {
1129
+ &:is(:where(.group):has(*:is(input:not(:placeholder-shown))) *) {
1130
+ top: calc(3px * -1);
1131
+ }
1132
+ }
1133
+ .group-has-\[input\:not\(\:placeholder-shown\)\]\:animate-out {
1134
+ &:is(:where(.group):has(*:is(input:not(:placeholder-shown))) *) {
1135
+ animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
1136
+ }
1137
+ }
1138
+ .group-has-\[input\:not\(\:placeholder-shown\)\]\:bg-layer-2-idle {
1139
+ &:is(:where(.group):has(*:is(input:not(:placeholder-shown))) *) {
1140
+ background-color: var(--color-layer-2-idle);
1141
+ }
1142
+ }
1143
+ .group-has-\[input\:not\(\:placeholder-shown\)\]\:text-size-label-sm-1x {
1144
+ &:is(:where(.group):has(*:is(input:not(:placeholder-shown))) *) {
1145
+ font-size: var(--text-size-label-sm-1x);
1146
+ line-height: var(--tw-leading, var(--text-size-label-sm-1x--line-height));
1147
+ }
1148
+ }
1149
+ .group-has-\[input\:not\(\:placeholder-shown\)\]\:font-medium {
1150
+ &:is(:where(.group):has(*:is(input:not(:placeholder-shown))) *) {
1151
+ --tw-font-weight: var(--font-weight-medium);
1152
+ font-weight: var(--font-weight-medium);
1153
+ }
1154
+ }
1155
+ .group-has-\[input\:not\(\:placeholder-shown\)\]\:text-primary-idle {
1156
+ &:is(:where(.group):has(*:is(input:not(:placeholder-shown))) *) {
1157
+ color: var(--color-primary-idle);
1158
+ }
1159
+ }
1160
+ .group-has-\[div\[data-slot\=date-picker-left-slot\]\]\:group-has-\[input\:not\(\:placeholder-shown\)\]\:left-auto {
1161
+ &:is(:where(.group):has(*:is(div[data-slot=date-picker-left-slot])) *) {
1162
+ &:is(:where(.group):has(*:is(input:not(:placeholder-shown))) *) {
1163
+ left: auto;
1164
+ }
1165
+ }
1166
+ }
1167
+ .group-has-\[div\[data-slot\=input-left-slot\]\]\:group-has-\[input\:not\(\:placeholder-shown\)\]\:left-auto {
1168
+ &:is(:where(.group):has(*:is(div[data-slot=input-left-slot])) *) {
1169
+ &:is(:where(.group):has(*:is(input:not(:placeholder-shown))) *) {
1170
+ left: auto;
1171
+ }
1172
+ }
1173
+ }
1174
+ .group-has-\[div\[data-slot\=select-left-slot\]\]\:group-has-\[input\:not\(\:placeholder-shown\)\]\:left-auto {
1175
+ &:is(:where(.group):has(*:is(div[data-slot=select-left-slot])) *) {
1176
+ &:is(:where(.group):has(*:is(input:not(:placeholder-shown))) *) {
1177
+ left: auto;
1178
+ }
1179
+ }
1180
+ }
1181
+ .group-data-\[state\=closed\]\:animate-out {
1182
+ &:is(:where(.group)[data-state=closed] *) {
1183
+ animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
1184
+ }
1185
+ }
1186
+ .group-data-\[state\=open\]\:-top-\[3px\] {
1187
+ &:is(:where(.group)[data-state=open] *) {
1188
+ top: calc(3px * -1);
1189
+ }
1190
+ }
1191
+ .group-data-\[state\=open\]\:animate-in {
1192
+ &:is(:where(.group)[data-state=open] *) {
1193
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
1194
+ }
1195
+ }
1196
+ .group-data-\[state\=open\]\:bg-layer-2-idle {
1197
+ &:is(:where(.group)[data-state=open] *) {
1198
+ background-color: var(--color-layer-2-idle);
1199
+ }
1200
+ }
1201
+ .group-data-\[state\=open\]\:text-size-label-sm-1x {
1202
+ &:is(:where(.group)[data-state=open] *) {
1203
+ font-size: var(--text-size-label-sm-1x);
1204
+ line-height: var(--tw-leading, var(--text-size-label-sm-1x--line-height));
1205
+ }
1206
+ }
1207
+ .group-data-\[state\=open\]\:font-medium {
1208
+ &:is(:where(.group)[data-state=open] *) {
1209
+ --tw-font-weight: var(--font-weight-medium);
1210
+ font-weight: var(--font-weight-medium);
1211
+ }
1212
+ }
1213
+ .group-data-\[state\=open\]\:text-primary-idle {
1214
+ &:is(:where(.group)[data-state=open] *) {
1215
+ color: var(--color-primary-idle);
1216
+ }
1217
+ }
1218
+ .group-has-\[div\[data-slot\=date-picker-left-slot\]\]\:group-data-\[state\=open\]\:left-auto {
1219
+ &:is(:where(.group):has(*:is(div[data-slot=date-picker-left-slot])) *) {
1220
+ &:is(:where(.group)[data-state=open] *) {
1221
+ left: auto;
1222
+ }
1223
+ }
1224
+ }
1225
+ .group-has-\[div\[data-slot\=select-left-slot\]\]\:group-data-\[state\=open\]\:left-auto {
1226
+ &:is(:where(.group):has(*:is(div[data-slot=select-left-slot])) *) {
1227
+ &:is(:where(.group)[data-state=open] *) {
1228
+ left: auto;
1229
+ }
1230
+ }
1231
+ }
1232
+ .group-data-\[variant\=danger\]\:text-danger-label-idle {
1233
+ &:is(:where(.group)[data-variant=danger] *) {
1234
+ color: var(--color-danger-label-idle);
1235
+ }
1236
+ }
1237
+ .group-data-\[variant\=neutral\]\:text-icon-neutral-3 {
1238
+ &:is(:where(.group)[data-variant=neutral] *) {
1239
+ color: var(--color-icon-neutral-3);
1240
+ }
1241
+ }
1242
+ .group-data-\[variant\=primary\]\:text-primary-label-idle {
1243
+ &:is(:where(.group)[data-variant=primary] *) {
1244
+ color: var(--color-primary-label-idle);
1245
+ }
1246
+ }
1247
+ .placeholder\:placeholder-neutral-placeholder {
1248
+ &::placeholder {
1249
+ &::placeholder {
1250
+ color: var(--color-neutral-placeholder);
552
1251
  }
553
1252
  }
554
1253
  }
@@ -558,27 +1257,11 @@
558
1257
  border-width: 1px;
559
1258
  }
560
1259
  }
561
- .focus-within\:border-danger-idle {
562
- &:focus-within {
563
- border-color: var(--color-danger-idle);
564
- }
565
- }
566
1260
  .focus-within\:border-primary-idle {
567
1261
  &:focus-within {
568
1262
  border-color: var(--color-primary-idle);
569
1263
  }
570
1264
  }
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
1265
  .focus-within\:shadow-focus-primary {
583
1266
  &:focus-within {
584
1267
  --tw-shadow: 0 0 0 var(--tw-shadow-color, var(--shadow-medium, 4px)) rgba(232, 125, 48, 0.16);
@@ -590,6 +1273,27 @@
590
1273
  var(--tw-shadow);
591
1274
  }
592
1275
  }
1276
+ .hover\:border-border-layer-3 {
1277
+ &:hover {
1278
+ @media (hover: hover) {
1279
+ border-color: var(--color-border-layer-3);
1280
+ }
1281
+ }
1282
+ }
1283
+ .hover\:border-primary-idle {
1284
+ &:hover {
1285
+ @media (hover: hover) {
1286
+ border-color: var(--color-primary-idle);
1287
+ }
1288
+ }
1289
+ }
1290
+ .hover\:bg-danger-alt-hover {
1291
+ &:hover {
1292
+ @media (hover: hover) {
1293
+ background-color: var(--color-danger-alt-hover);
1294
+ }
1295
+ }
1296
+ }
593
1297
  .hover\:bg-danger-alt-idle {
594
1298
  &:hover {
595
1299
  @media (hover: hover) {
@@ -632,6 +1336,20 @@
632
1336
  }
633
1337
  }
634
1338
  }
1339
+ .hover\:bg-primary-alt-active {
1340
+ &:hover {
1341
+ @media (hover: hover) {
1342
+ background-color: var(--color-primary-alt-active);
1343
+ }
1344
+ }
1345
+ }
1346
+ .hover\:bg-primary-alt-hover {
1347
+ &:hover {
1348
+ @media (hover: hover) {
1349
+ background-color: var(--color-primary-alt-hover);
1350
+ }
1351
+ }
1352
+ }
635
1353
  .hover\:bg-primary-alt-idle {
636
1354
  &:hover {
637
1355
  @media (hover: hover) {
@@ -646,6 +1364,35 @@
646
1364
  }
647
1365
  }
648
1366
  }
1367
+ .hover\:shadow-focus-primary {
1368
+ &:hover {
1369
+ @media (hover: hover) {
1370
+ --tw-shadow: 0 0 0 var(--tw-shadow-color, var(--shadow-medium, 4px)) rgba(232, 125, 48, 0.16);
1371
+ box-shadow:
1372
+ var(--tw-inset-shadow),
1373
+ var(--tw-inset-ring-shadow),
1374
+ var(--tw-ring-offset-shadow),
1375
+ var(--tw-ring-shadow),
1376
+ var(--tw-shadow);
1377
+ }
1378
+ }
1379
+ }
1380
+ .focus\:border-primary-idle {
1381
+ &:focus {
1382
+ border-color: var(--color-primary-idle);
1383
+ }
1384
+ }
1385
+ .focus\:shadow-focus-primary {
1386
+ &:focus {
1387
+ --tw-shadow: 0 0 0 var(--tw-shadow-color, var(--shadow-medium, 4px)) rgba(232, 125, 48, 0.16);
1388
+ box-shadow:
1389
+ var(--tw-inset-shadow),
1390
+ var(--tw-inset-ring-shadow),
1391
+ var(--tw-ring-offset-shadow),
1392
+ var(--tw-ring-shadow),
1393
+ var(--tw-shadow);
1394
+ }
1395
+ }
649
1396
  .active\:bg-danger-alt-pressed {
650
1397
  &:active {
651
1398
  background-color: var(--color-danger-alt-pressed);
@@ -691,41 +1438,334 @@
691
1438
  pointer-events: none;
692
1439
  }
693
1440
  }
1441
+ .disabled\:cursor-not-allowed {
1442
+ &:disabled {
1443
+ cursor: not-allowed;
1444
+ }
1445
+ }
694
1446
  .disabled\:opacity-38 {
695
1447
  &:disabled {
696
1448
  opacity: 38%;
697
1449
  }
698
1450
  }
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);
1451
+ .disabled\:opacity-50 {
1452
+ &:disabled {
1453
+ opacity: 50%;
702
1454
  }
703
1455
  }
704
- .data-\[disabled\=true\]\:pointer-events-none {
705
- &[data-disabled=true] {
706
- pointer-events: none;
1456
+ .disabled\:opacity-60 {
1457
+ &:disabled {
1458
+ opacity: 60%;
1459
+ }
1460
+ }
1461
+ .disabled\:opacity-\[38\%\] {
1462
+ &:disabled {
1463
+ opacity: 38%;
1464
+ }
1465
+ }
1466
+ .disabled\:hover\:border-border-layer-2 {
1467
+ &:disabled {
1468
+ &:hover {
1469
+ @media (hover: hover) {
1470
+ border-color: var(--color-border-layer-2);
1471
+ }
1472
+ }
707
1473
  }
708
1474
  }
709
- .data-\[disabled\=true\]\:opacity-60 {
1475
+ .has-\[input\:not\(\:placeholder-shown\)\]\:border-primary-idle {
1476
+ &:has(*:is(input:not(:placeholder-shown))) {
1477
+ border-color: var(--color-primary-idle);
1478
+ }
1479
+ }
1480
+ .has-\[input\:not\(\:placeholder-shown\)\]\:text-primary-idle {
1481
+ &:has(*:is(input:not(:placeholder-shown))) {
1482
+ color: var(--color-primary-idle);
1483
+ }
1484
+ }
1485
+ .data-\[disabled\=true\]\:opacity-38 {
710
1486
  &[data-disabled=true] {
711
- opacity: 60%;
1487
+ opacity: 38%;
1488
+ }
1489
+ }
1490
+ .data-\[orientation\=horizontal\]\:h-px {
1491
+ &[data-orientation=horizontal] {
1492
+ height: 1px;
1493
+ }
1494
+ }
1495
+ .data-\[orientation\=horizontal\]\:w-full {
1496
+ &[data-orientation=horizontal] {
1497
+ width: 100%;
1498
+ }
1499
+ }
1500
+ .data-\[orientation\=horizontal\]\:flex-row {
1501
+ &[data-orientation=horizontal] {
1502
+ flex-direction: row;
1503
+ }
1504
+ }
1505
+ .data-\[orientation\=vertical\]\:h-full {
1506
+ &[data-orientation=vertical] {
1507
+ height: 100%;
1508
+ }
1509
+ }
1510
+ .data-\[orientation\=vertical\]\:w-px {
1511
+ &[data-orientation=vertical] {
1512
+ width: 1px;
1513
+ }
1514
+ }
1515
+ .data-\[orientation\=vertical\]\:flex-col {
1516
+ &[data-orientation=vertical] {
1517
+ flex-direction: column;
1518
+ }
1519
+ }
1520
+ .data-\[size\=lg\]\:size-large-8x {
1521
+ &[data-size=lg] {
1522
+ width: var(--spacing-large-8x);
1523
+ height: var(--spacing-large-8x);
1524
+ }
1525
+ }
1526
+ .data-\[size\=md\]\:size-large-4x {
1527
+ &[data-size=md] {
1528
+ width: var(--spacing-large-4x);
1529
+ height: var(--spacing-large-4x);
1530
+ }
1531
+ }
1532
+ .data-\[size\=sm\]\:size-large-2x {
1533
+ &[data-size=sm] {
1534
+ width: var(--spacing-large-2x);
1535
+ height: var(--spacing-large-2x);
1536
+ }
1537
+ }
1538
+ .data-\[size\=xs\]\:size-large-1x {
1539
+ &[data-size=xs] {
1540
+ width: var(--spacing-large-1x);
1541
+ height: var(--spacing-large-1x);
1542
+ }
1543
+ }
1544
+ .data-\[state\=active\]\:rounded-none {
1545
+ &[data-state=active] {
1546
+ border-radius: 0;
1547
+ }
1548
+ }
1549
+ .data-\[state\=active\]\:rounded-none {
1550
+ &[data-state=active] {
1551
+ border-radius: var(--radius-none);
1552
+ }
1553
+ }
1554
+ .data-\[state\=active\]\:border-b-\[3px\] {
1555
+ &[data-state=active] {
1556
+ border-bottom-style: var(--tw-border-style);
1557
+ border-bottom-width: 3px;
1558
+ }
1559
+ }
1560
+ .data-\[state\=active\]\:border-b-primary-active {
1561
+ &[data-state=active] {
1562
+ border-bottom-color: var(--color-primary-active);
1563
+ }
1564
+ }
1565
+ .data-\[state\=active\]\:bg-layer-2-idle {
1566
+ &[data-state=active] {
1567
+ background-color: var(--color-layer-2-idle);
1568
+ }
1569
+ }
1570
+ .data-\[state\=active\]\:text-primary-label-active {
1571
+ &[data-state=active] {
1572
+ color: var(--color-primary-label-active);
1573
+ }
1574
+ }
1575
+ .data-\[state\=checked\]\:translate-x-\[calc\(100\%-2px\)\] {
1576
+ &[data-state=checked] {
1577
+ --tw-translate-x: calc(100% - 2px);
1578
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1579
+ }
1580
+ }
1581
+ .data-\[state\=checked\]\:border-primary-active {
1582
+ &[data-state=checked] {
1583
+ border-color: var(--color-primary-active);
712
1584
  }
713
1585
  }
714
- .data-\[error\=true\]\:text-danger-idle {
715
- &[data-error=true] {
716
- color: var(--color-danger-idle);
1586
+ .data-\[state\=checked\]\:bg-primary-active {
1587
+ &[data-state=checked] {
1588
+ background-color: var(--color-primary-active);
717
1589
  }
718
1590
  }
719
- .data-\[error\=true\]\:text-danger-label-active {
720
- &[data-error=true] {
721
- color: var(--color-danger-label-active);
1591
+ .data-\[state\=checked\]\:bg-primary-idle {
1592
+ &[data-state=checked] {
1593
+ background-color: var(--color-primary-idle);
722
1594
  }
723
1595
  }
1596
+ .data-\[state\=checked\]\:hover\:border-primary-idle {
1597
+ &[data-state=checked] {
1598
+ &:hover {
1599
+ @media (hover: hover) {
1600
+ border-color: var(--color-primary-idle);
1601
+ }
1602
+ }
1603
+ }
1604
+ }
1605
+ .data-\[state\=closed\]\:animate-collapsible-up {
1606
+ &[data-state=closed] {
1607
+ animation: collapsible-up var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
1608
+ }
1609
+ }
1610
+ .data-\[state\=closed\]\:animate-out {
1611
+ &[data-state=closed] {
1612
+ animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
1613
+ }
1614
+ }
1615
+ .data-\[state\=closed\]\:duration-300 {
1616
+ &[data-state=closed] {
1617
+ --tw-duration: 300ms;
1618
+ transition-duration: 300ms;
1619
+ }
1620
+ }
1621
+ .data-\[state\=closed\]\:fade-out-0 {
1622
+ &[data-state=closed] {
1623
+ --tw-exit-opacity: calc(0/100);
1624
+ --tw-exit-opacity: 0;
1625
+ }
1626
+ }
1627
+ .data-\[state\=closed\]\:slide-out-to-bottom {
1628
+ &[data-state=closed] {
1629
+ --tw-exit-translate-y: 100%;
1630
+ }
1631
+ }
1632
+ .data-\[state\=closed\]\:slide-out-to-left {
1633
+ &[data-state=closed] {
1634
+ --tw-exit-translate-x: -100%;
1635
+ }
1636
+ }
1637
+ .data-\[state\=closed\]\:slide-out-to-right {
1638
+ &[data-state=closed] {
1639
+ --tw-exit-translate-x: 100%;
1640
+ }
1641
+ }
1642
+ .data-\[state\=closed\]\:slide-out-to-top {
1643
+ &[data-state=closed] {
1644
+ --tw-exit-translate-y: -100%;
1645
+ }
1646
+ }
1647
+ .data-\[state\=open\]\:animate-collapsible-down {
1648
+ &[data-state=open] {
1649
+ animation: collapsible-down var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
1650
+ }
1651
+ }
1652
+ .data-\[state\=open\]\:animate-in {
1653
+ &[data-state=open] {
1654
+ animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
1655
+ }
1656
+ }
1657
+ .data-\[state\=open\]\:border-primary-idle {
1658
+ &[data-state=open] {
1659
+ border-color: var(--color-primary-idle);
1660
+ }
1661
+ }
1662
+ .data-\[state\=open\]\:shadow-focus-primary {
1663
+ &[data-state=open] {
1664
+ --tw-shadow: 0 0 0 var(--tw-shadow-color, var(--shadow-medium, 4px)) rgba(232, 125, 48, 0.16);
1665
+ box-shadow:
1666
+ var(--tw-inset-shadow),
1667
+ var(--tw-inset-ring-shadow),
1668
+ var(--tw-ring-offset-shadow),
1669
+ var(--tw-ring-shadow),
1670
+ var(--tw-shadow);
1671
+ }
1672
+ }
1673
+ .data-\[state\=open\]\:duration-500 {
1674
+ &[data-state=open] {
1675
+ --tw-duration: 500ms;
1676
+ transition-duration: 500ms;
1677
+ }
1678
+ }
1679
+ .data-\[state\=open\]\:fade-in-0 {
1680
+ &[data-state=open] {
1681
+ --tw-enter-opacity: calc(0/100);
1682
+ --tw-enter-opacity: 0;
1683
+ }
1684
+ }
1685
+ .data-\[state\=open\]\:slide-in-from-bottom {
1686
+ &[data-state=open] {
1687
+ --tw-enter-translate-y: 100%;
1688
+ }
1689
+ }
1690
+ .data-\[state\=open\]\:slide-in-from-left {
1691
+ &[data-state=open] {
1692
+ --tw-enter-translate-x: -100%;
1693
+ }
1694
+ }
1695
+ .data-\[state\=open\]\:slide-in-from-right {
1696
+ &[data-state=open] {
1697
+ --tw-enter-translate-x: 100%;
1698
+ }
1699
+ }
1700
+ .data-\[state\=open\]\:slide-in-from-top {
1701
+ &[data-state=open] {
1702
+ --tw-enter-translate-y: -100%;
1703
+ }
1704
+ }
1705
+ .data-\[state\=unchecked\]\:translate-x-0 {
1706
+ &[data-state=unchecked] {
1707
+ --tw-translate-x: calc(var(--spacing) * 0);
1708
+ translate: var(--tw-translate-x) var(--tw-translate-y);
1709
+ }
1710
+ }
1711
+ .data-\[state\=unchecked\]\:bg-alt-4 {
1712
+ &[data-state=unchecked] {
1713
+ background-color: var(--color-alt-4);
1714
+ }
1715
+ }
1716
+ .data-\[variant\=outlined\]\:bg-layer-2-idle {
1717
+ &[data-variant=outlined] {
1718
+ background-color: var(--color-layer-2-idle);
1719
+ }
1720
+ }
1721
+ .data-\[variant\=outlined\]\:group-focus-within\:bg-layer-2-idle {
1722
+ &[data-variant=outlined] {
1723
+ &:is(:where(.group):focus-within *) {
1724
+ background-color: var(--color-layer-2-idle);
1725
+ }
1726
+ }
1727
+ }
1728
+ .data-\[variant\=outlined\]\:group-has-\[input\:not\(\:placeholder-shown\)\]\:text-primary-idle {
1729
+ &[data-variant=outlined] {
1730
+ &:is(:where(.group):has(*:is(input:not(:placeholder-shown))) *) {
1731
+ color: var(--color-primary-idle);
1732
+ }
1733
+ }
1734
+ }
1735
+ .sm\:max-w-sm {
1736
+ @media (width >= 40rem) {
1737
+ max-width: var(--container-sm);
1738
+ }
1739
+ }
1740
+ }
1741
+ @property --tw-animation-delay { syntax: "*"; inherits: false; initial-value: 0s; }
1742
+ @property --tw-animation-direction { syntax: "*"; inherits: false; initial-value: normal; }
1743
+ @property --tw-animation-duration { syntax: "*"; inherits: false; }
1744
+ @property --tw-animation-fill-mode { syntax: "*"; inherits: false; initial-value: none; }
1745
+ @property --tw-animation-iteration-count { syntax: "*"; inherits: false; initial-value: 1; }
1746
+ @property --tw-enter-blur { syntax: "*"; inherits: false; initial-value: 0; }
1747
+ @property --tw-enter-opacity { syntax: "*"; inherits: false; initial-value: 1; }
1748
+ @property --tw-enter-rotate { syntax: "*"; inherits: false; initial-value: 0; }
1749
+ @property --tw-enter-scale { syntax: "*"; inherits: false; initial-value: 1; }
1750
+ @property --tw-enter-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1751
+ @property --tw-enter-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
1752
+ @property --tw-exit-blur { syntax: "*"; inherits: false; initial-value: 0; }
1753
+ @property --tw-exit-opacity { syntax: "*"; inherits: false; initial-value: 1; }
1754
+ @property --tw-exit-rotate { syntax: "*"; inherits: false; initial-value: 0; }
1755
+ @property --tw-exit-scale { syntax: "*"; inherits: false; initial-value: 1; }
1756
+ @property --tw-exit-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1757
+ @property --tw-exit-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
1758
+ @layer base {
1759
+ * {
1760
+ scrollbar-color: initial;
1761
+ scrollbar-width: initial;
1762
+ }
724
1763
  }
1764
+ @property --tw-translate-x { syntax: "*"; inherits: false; initial-value: 0; }
1765
+ @property --tw-translate-y { syntax: "*"; inherits: false; initial-value: 0; }
1766
+ @property --tw-translate-z { syntax: "*"; inherits: false; initial-value: 0; }
725
1767
  @property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
726
1768
  @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
1769
  @property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
730
1770
  @property --tw-shadow-color { syntax: "*"; inherits: false; }
731
1771
  @property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@@ -740,16 +1780,50 @@
740
1780
  @property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
741
1781
  @property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
742
1782
  @property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
1783
+ @property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
1784
+ @property --tw-duration { syntax: "*"; inherits: false; }
1785
+ @property --tw-ease { syntax: "*"; inherits: false; }
1786
+ @keyframes enter {
1787
+ from {
1788
+ opacity: var(--tw-enter-opacity,1);
1789
+ transform: translate3d(var(--tw-enter-translate-x,0), var(--tw-enter-translate-y,0), 0)scale3d(var(--tw-enter-scale,1), var(--tw-enter-scale,1), var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0));
1790
+ filter: blur(var(--tw-enter-blur,0));
1791
+ }
1792
+ }
1793
+ @keyframes exit {
1794
+ to {
1795
+ opacity: var(--tw-exit-opacity,1);
1796
+ transform: translate3d(var(--tw-exit-translate-x,0), var(--tw-exit-translate-y,0), 0)scale3d(var(--tw-exit-scale,1), var(--tw-exit-scale,1), var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0));
1797
+ filter: blur(var(--tw-exit-blur,0));
1798
+ }
1799
+ }
1800
+ @keyframes collapsible-down {
1801
+ from {
1802
+ height: 0;
1803
+ }
1804
+ to {
1805
+ height: var(--radix-collapsible-content-height,var(--bits-collapsible-content-height,var(--reka-collapsible-content-height,var(--kb-collapsible-content-height,auto))));
1806
+ }
1807
+ }
1808
+ @keyframes collapsible-up {
1809
+ from {
1810
+ height: var(--radix-collapsible-content-height,var(--bits-collapsible-content-height,var(--reka-collapsible-content-height,var(--kb-collapsible-content-height,auto))));
1811
+ }
1812
+ to {
1813
+ height: 0;
1814
+ }
1815
+ }
743
1816
  @layer properties {
744
1817
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
745
1818
  *,
746
1819
  ::before,
747
1820
  ::after,
748
1821
  ::backdrop {
1822
+ --tw-translate-x: 0;
1823
+ --tw-translate-y: 0;
1824
+ --tw-translate-z: 0;
749
1825
  --tw-border-style: solid;
750
1826
  --tw-font-weight: initial;
751
- --tw-outline-style: solid;
752
- --tw-duration: initial;
753
1827
  --tw-shadow: 0 0 #0000;
754
1828
  --tw-shadow-color: initial;
755
1829
  --tw-shadow-alpha: 100%;
@@ -764,6 +1838,26 @@
764
1838
  --tw-ring-offset-width: 0px;
765
1839
  --tw-ring-offset-color: #fff;
766
1840
  --tw-ring-offset-shadow: 0 0 #0000;
1841
+ --tw-outline-style: solid;
1842
+ --tw-duration: initial;
1843
+ --tw-ease: initial;
1844
+ --tw-animation-delay: 0s;
1845
+ --tw-animation-direction: normal;
1846
+ --tw-animation-duration: initial;
1847
+ --tw-animation-fill-mode: none;
1848
+ --tw-animation-iteration-count: 1;
1849
+ --tw-enter-blur: 0;
1850
+ --tw-enter-opacity: 1;
1851
+ --tw-enter-rotate: 0;
1852
+ --tw-enter-scale: 1;
1853
+ --tw-enter-translate-x: 0;
1854
+ --tw-enter-translate-y: 0;
1855
+ --tw-exit-blur: 0;
1856
+ --tw-exit-opacity: 1;
1857
+ --tw-exit-rotate: 0;
1858
+ --tw-exit-scale: 1;
1859
+ --tw-exit-translate-x: 0;
1860
+ --tw-exit-translate-y: 0;
767
1861
  }
768
1862
  }
769
1863
  }