@xjur-ui/react 1.0.0 → 1.0.2

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