@onnechat/ui 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -34,14 +34,20 @@
34
34
  --color-sky-50: oklch(97.7% 0.013 236.62);
35
35
  --color-sky-500: oklch(68.5% 0.169 237.323);
36
36
  --color-fuchsia-600: oklch(59.1% 0.293 322.896);
37
+ --color-rose-400: oklch(71.2% 0.194 13.428);
38
+ --color-rose-500: oklch(64.5% 0.246 16.439);
37
39
  --color-gray-200: oklch(92.8% 0.006 264.531);
38
40
  --color-zinc-200: oklch(92% 0.004 286.32);
41
+ --color-zinc-300: oklch(87.1% 0.006 286.286);
42
+ --color-zinc-400: oklch(70.5% 0.015 286.067);
43
+ --color-zinc-500: oklch(55.2% 0.016 285.938);
44
+ --color-zinc-600: oklch(44.2% 0.017 285.786);
45
+ --color-zinc-700: oklch(37% 0.013 285.805);
39
46
  --color-black: #000;
40
47
  --color-white: #fff;
41
48
  --spacing: 0.25rem;
42
49
  --container-sm: 24rem;
43
50
  --container-md: 28rem;
44
- --container-lg: 32rem;
45
51
  --container-xl: 36rem;
46
52
  --container-2xl: 42rem;
47
53
  --text-xs: 0.75rem;
@@ -54,6 +60,8 @@
54
60
  --text-lg--line-height: calc(1.75 / 1.125);
55
61
  --text-xl: 1.25rem;
56
62
  --text-xl--line-height: calc(1.75 / 1.25);
63
+ --text-2xl: 1.5rem;
64
+ --text-2xl--line-height: calc(2 / 1.5);
57
65
  --font-weight-medium: 500;
58
66
  --font-weight-semibold: 600;
59
67
  --font-weight-bold: 700;
@@ -398,11 +406,11 @@
398
406
  .-right-0\.5 {
399
407
  right: calc(var(--spacing) * -0.5);
400
408
  }
401
- .-right-full {
402
- right: -100%;
409
+ .-right-\[5\.5px\] {
410
+ right: calc(5.5px * -1);
403
411
  }
404
- .right-\(--context-sidebar-width\) {
405
- right: var(--context-sidebar-width);
412
+ .right-\(--right-sidebar-width\) {
413
+ right: var(--right-sidebar-width);
406
414
  }
407
415
  .right-0 {
408
416
  right: calc(var(--spacing) * 0);
@@ -410,6 +418,9 @@
410
418
  .right-1 {
411
419
  right: calc(var(--spacing) * 1);
412
420
  }
421
+ .right-1\.5 {
422
+ right: calc(var(--spacing) * 1.5);
423
+ }
413
424
  .right-2 {
414
425
  right: calc(var(--spacing) * 2);
415
426
  }
@@ -428,15 +439,27 @@
428
439
  .-bottom-0\.5 {
429
440
  bottom: calc(var(--spacing) * -0.5);
430
441
  }
442
+ .-bottom-3 {
443
+ bottom: calc(var(--spacing) * -3);
444
+ }
431
445
  .bottom-0 {
432
446
  bottom: calc(var(--spacing) * 0);
433
447
  }
434
448
  .bottom-1\/2 {
435
449
  bottom: calc(1 / 2 * 100%);
436
450
  }
451
+ .-left-\[5\.5px\] {
452
+ left: calc(5.5px * -1);
453
+ }
454
+ .left-\(--left-sidebar-width\) {
455
+ left: var(--left-sidebar-width);
456
+ }
437
457
  .left-0 {
438
458
  left: calc(var(--spacing) * 0);
439
459
  }
460
+ .left-1\.5 {
461
+ left: calc(var(--spacing) * 1.5);
462
+ }
440
463
  .left-1\/2 {
441
464
  left: calc(1 / 2 * 100%);
442
465
  }
@@ -503,6 +526,9 @@
503
526
  max-width: 96rem;
504
527
  }
505
528
  }
529
+ .\!m-0 {
530
+ margin: calc(var(--spacing) * 0) !important;
531
+ }
506
532
  .m-0 {
507
533
  margin: calc(var(--spacing) * 0);
508
534
  }
@@ -655,6 +681,9 @@
655
681
  .table {
656
682
  display: table;
657
683
  }
684
+ .aspect-auto {
685
+ aspect-ratio: auto;
686
+ }
658
687
  .aspect-square {
659
688
  aspect-ratio: 1 / 1;
660
689
  }
@@ -787,9 +816,18 @@
787
816
  .h-72 {
788
817
  height: calc(var(--spacing) * 72);
789
818
  }
819
+ .h-80 {
820
+ height: calc(var(--spacing) * 80);
821
+ }
822
+ .h-96 {
823
+ height: calc(var(--spacing) * 96);
824
+ }
790
825
  .h-\[0\.5px\] {
791
826
  height: 0.5px;
792
827
  }
828
+ .h-\[2px\] {
829
+ height: 2px;
830
+ }
793
831
  .h-\[70vh\] {
794
832
  height: 70vh;
795
833
  }
@@ -856,6 +894,9 @@
856
894
  .min-h-9 {
857
895
  min-height: calc(var(--spacing) * 9);
858
896
  }
897
+ .min-h-10 {
898
+ min-height: calc(var(--spacing) * 10);
899
+ }
859
900
  .min-h-12 {
860
901
  min-height: calc(var(--spacing) * 12);
861
902
  }
@@ -889,9 +930,6 @@
889
930
  .min-h-\[100px\] {
890
931
  min-height: 100px;
891
932
  }
892
- .min-h-\[300px\] {
893
- min-height: 300px;
894
- }
895
933
  .min-h-\[500px\] {
896
934
  min-height: 500px;
897
935
  }
@@ -916,8 +954,11 @@
916
954
  .w-\(--anchor-width\) {
917
955
  width: var(--anchor-width);
918
956
  }
919
- .w-\(--context-sidebar-width\) {
920
- width: var(--context-sidebar-width);
957
+ .w-\(--left-sidebar-width\) {
958
+ width: var(--left-sidebar-width);
959
+ }
960
+ .w-\(--right-sidebar-width\) {
961
+ width: var(--right-sidebar-width);
921
962
  }
922
963
  .w-\(--sidebar-width\) {
923
964
  width: var(--sidebar-width);
@@ -931,6 +972,9 @@
931
972
  .w-1 {
932
973
  width: calc(var(--spacing) * 1);
933
974
  }
975
+ .w-1\.5 {
976
+ width: calc(var(--spacing) * 1.5);
977
+ }
934
978
  .w-1\/2 {
935
979
  width: calc(1 / 2 * 100%);
936
980
  }
@@ -943,6 +987,9 @@
943
987
  .w-2\.5 {
944
988
  width: calc(var(--spacing) * 2.5);
945
989
  }
990
+ .w-3 {
991
+ width: calc(var(--spacing) * 3);
992
+ }
946
993
  .w-3\.5 {
947
994
  width: calc(var(--spacing) * 3.5);
948
995
  }
@@ -1003,6 +1050,9 @@
1003
1050
  .w-96 {
1004
1051
  width: calc(var(--spacing) * 96);
1005
1052
  }
1053
+ .w-\[2px\] {
1054
+ width: 2px;
1055
+ }
1006
1056
  .w-\[42rem\] {
1007
1057
  width: 42rem;
1008
1058
  }
@@ -1060,9 +1110,6 @@
1060
1110
  .max-w-full {
1061
1111
  max-width: 100%;
1062
1112
  }
1063
- .max-w-lg {
1064
- max-width: var(--container-lg);
1065
- }
1066
1113
  .max-w-md {
1067
1114
  max-width: var(--container-md);
1068
1115
  }
@@ -1120,6 +1167,9 @@
1120
1167
  .shrink-0 {
1121
1168
  flex-shrink: 0;
1122
1169
  }
1170
+ .grow {
1171
+ flex-grow: 1;
1172
+ }
1123
1173
  .caption-bottom {
1124
1174
  caption-side: bottom;
1125
1175
  }
@@ -1130,18 +1180,14 @@
1130
1180
  --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
1131
1181
  translate: var(--tw-translate-x) var(--tw-translate-y);
1132
1182
  }
1133
- .-translate-x-px {
1134
- --tw-translate-x: -1px;
1183
+ .-translate-x-full {
1184
+ --tw-translate-x: -100%;
1135
1185
  translate: var(--tw-translate-x) var(--tw-translate-y);
1136
1186
  }
1137
- .translate-x-1 {
1138
- --tw-translate-x: calc(var(--spacing) * 1);
1187
+ .-translate-x-px {
1188
+ --tw-translate-x: -1px;
1139
1189
  translate: var(--tw-translate-x) var(--tw-translate-y);
1140
1190
  }
1141
- .translate-x-1\! {
1142
- --tw-translate-x: calc(var(--spacing) * 1) !important;
1143
- translate: var(--tw-translate-x) var(--tw-translate-y) !important;
1144
- }
1145
1191
  .translate-x-1\/2 {
1146
1192
  --tw-translate-x: calc(1 / 2 * 100%);
1147
1193
  translate: var(--tw-translate-x) var(--tw-translate-y);
@@ -1198,6 +1244,12 @@
1198
1244
  .cursor-default {
1199
1245
  cursor: default;
1200
1246
  }
1247
+ .cursor-ew-resize {
1248
+ cursor: ew-resize;
1249
+ }
1250
+ .cursor-grab {
1251
+ cursor: grab;
1252
+ }
1201
1253
  .cursor-not-allowed {
1202
1254
  cursor: not-allowed;
1203
1255
  }
@@ -1312,6 +1364,9 @@
1312
1364
  .gap-8 {
1313
1365
  gap: calc(var(--spacing) * 8);
1314
1366
  }
1367
+ .gap-\[2px\] {
1368
+ gap: 2px;
1369
+ }
1315
1370
  .space-y-1 {
1316
1371
  :where(& > :not(:last-child)) {
1317
1372
  --tw-space-y-reverse: 0;
@@ -1437,6 +1492,9 @@
1437
1492
  .rounded-\[2px\] {
1438
1493
  border-radius: 2px;
1439
1494
  }
1495
+ .rounded-\[3px\] {
1496
+ border-radius: 3px;
1497
+ }
1440
1498
  .rounded-\[4px\] {
1441
1499
  border-radius: 4px;
1442
1500
  }
@@ -1475,6 +1533,10 @@
1475
1533
  border-top-left-radius: var(--radius-xl);
1476
1534
  border-top-right-radius: var(--radius-xl);
1477
1535
  }
1536
+ .rounded-l-md {
1537
+ border-top-left-radius: var(--radius-md);
1538
+ border-bottom-left-radius: var(--radius-md);
1539
+ }
1478
1540
  .rounded-l-none {
1479
1541
  border-top-left-radius: 0;
1480
1542
  border-bottom-left-radius: 0;
@@ -1483,16 +1545,28 @@
1483
1545
  border-top-left-radius: 0 !important;
1484
1546
  border-bottom-left-radius: 0 !important;
1485
1547
  }
1548
+ .rounded-l-xl {
1549
+ border-top-left-radius: var(--radius-xl);
1550
+ border-bottom-left-radius: var(--radius-xl);
1551
+ }
1486
1552
  .rounded-tl-sm {
1487
1553
  border-top-left-radius: var(--radius-sm);
1488
1554
  }
1489
1555
  .rounded-tl-xs {
1490
1556
  border-top-left-radius: var(--radius-xs);
1491
1557
  }
1558
+ .rounded-r-md {
1559
+ border-top-right-radius: var(--radius-md);
1560
+ border-bottom-right-radius: var(--radius-md);
1561
+ }
1492
1562
  .rounded-r-none {
1493
1563
  border-top-right-radius: 0;
1494
1564
  border-bottom-right-radius: 0;
1495
1565
  }
1566
+ .rounded-r-xl {
1567
+ border-top-right-radius: var(--radius-xl);
1568
+ border-bottom-right-radius: var(--radius-xl);
1569
+ }
1496
1570
  .rounded-tr-sm {
1497
1571
  border-top-right-radius: var(--radius-sm);
1498
1572
  }
@@ -1578,9 +1652,6 @@
1578
1652
  --tw-border-style: none;
1579
1653
  border-style: none;
1580
1654
  }
1581
- .border-\(--color-border\) {
1582
- border-color: var(--color-border);
1583
- }
1584
1655
  .border-\(--success-drop\) {
1585
1656
  border-color: var(--success-drop);
1586
1657
  }
@@ -1680,9 +1751,6 @@
1680
1751
  .bg-\(--color\) {
1681
1752
  background-color: var(--color);
1682
1753
  }
1683
- .bg-\(--color-bg\) {
1684
- background-color: var(--color-bg);
1685
- }
1686
1754
  .bg-\(--content-background\) {
1687
1755
  background-color: var(--content-background);
1688
1756
  }
@@ -1719,6 +1787,12 @@
1719
1787
  .bg-background {
1720
1788
  background-color: var(--color-background);
1721
1789
  }
1790
+ .bg-background\/70 {
1791
+ background-color: var(--color-background);
1792
+ @supports (color: color-mix(in lab, red, red)) {
1793
+ background-color: color-mix(in oklab, var(--color-background) 70%, transparent);
1794
+ }
1795
+ }
1722
1796
  .bg-black\/5 {
1723
1797
  background-color: color-mix(in srgb, #000 5%, transparent);
1724
1798
  @supports (color: color-mix(in lab, red, red)) {
@@ -1854,6 +1928,9 @@
1854
1928
  .bg-primary {
1855
1929
  background-color: var(--color-primary);
1856
1930
  }
1931
+ .bg-primary-foreground {
1932
+ background-color: var(--color-primary-foreground);
1933
+ }
1857
1934
  .bg-primary\/5 {
1858
1935
  background-color: var(--color-primary);
1859
1936
  @supports (color: color-mix(in lab, red, red)) {
@@ -2082,9 +2159,6 @@
2082
2159
  .fill-current {
2083
2160
  fill: currentcolor;
2084
2161
  }
2085
- .fill-foreground {
2086
- fill: var(--color-foreground);
2087
- }
2088
2162
  .fill-popover {
2089
2163
  fill: var(--color-popover);
2090
2164
  }
@@ -2097,6 +2171,9 @@
2097
2171
  .fill-white {
2098
2172
  fill: var(--color-white);
2099
2173
  }
2174
+ .stroke-border {
2175
+ stroke: var(--color-border);
2176
+ }
2100
2177
  .object-contain {
2101
2178
  object-fit: contain;
2102
2179
  }
@@ -2145,6 +2222,9 @@
2145
2222
  .p-24 {
2146
2223
  padding: calc(var(--spacing) * 24);
2147
2224
  }
2225
+ .p-\[1\.5px\] {
2226
+ padding: 1.5px;
2227
+ }
2148
2228
  .p-px {
2149
2229
  padding: 1px;
2150
2230
  }
@@ -2289,6 +2369,10 @@
2289
2369
  .font-mono {
2290
2370
  font-family: var(--font-mono);
2291
2371
  }
2372
+ .text-2xl {
2373
+ font-size: var(--text-2xl);
2374
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
2375
+ }
2292
2376
  .text-base {
2293
2377
  font-size: var(--text-base);
2294
2378
  line-height: var(--tw-leading, var(--text-base--line-height));
@@ -2312,12 +2396,18 @@
2312
2396
  .text-\[0\.8em\] {
2313
2397
  font-size: 0.8em;
2314
2398
  }
2399
+ .text-\[8px\] {
2400
+ font-size: 8px;
2401
+ }
2315
2402
  .text-\[9px\] {
2316
2403
  font-size: 9px;
2317
2404
  }
2318
2405
  .text-\[10px\] {
2319
2406
  font-size: 10px;
2320
2407
  }
2408
+ .text-\[11px\] {
2409
+ font-size: 11px;
2410
+ }
2321
2411
  .leading-\[11px\] {
2322
2412
  --tw-leading: 11px;
2323
2413
  line-height: 11px;
@@ -2397,6 +2487,15 @@
2397
2487
  .text-black {
2398
2488
  color: var(--color-black);
2399
2489
  }
2490
+ .text-border {
2491
+ color: var(--color-border);
2492
+ }
2493
+ .text-border\/60 {
2494
+ color: var(--color-border);
2495
+ @supports (color: color-mix(in lab, red, red)) {
2496
+ color: color-mix(in oklab, var(--color-border) 60%, transparent);
2497
+ }
2498
+ }
2400
2499
  .text-card-foreground {
2401
2500
  color: var(--color-card-foreground);
2402
2501
  }
@@ -2515,6 +2614,9 @@
2515
2614
  .opacity-15 {
2516
2615
  opacity: 15%;
2517
2616
  }
2617
+ .opacity-30 {
2618
+ opacity: 30%;
2619
+ }
2518
2620
  .opacity-50 {
2519
2621
  opacity: 50%;
2520
2622
  }
@@ -2696,6 +2798,10 @@
2696
2798
  outline-style: var(--tw-outline-style);
2697
2799
  outline-width: 2px;
2698
2800
  }
2801
+ .blur {
2802
+ --tw-blur: blur(8px);
2803
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
2804
+ }
2699
2805
  .drop-shadow-\[0_1px_0_var\(--border\)\] {
2700
2806
  --tw-drop-shadow-size: drop-shadow(0 1px 0 var(--tw-drop-shadow-color, var(--border)));
2701
2807
  --tw-drop-shadow: var(--tw-drop-shadow-size);
@@ -2764,6 +2870,11 @@
2764
2870
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2765
2871
  transition-duration: var(--tw-duration, var(--default-transition-duration));
2766
2872
  }
2873
+ .transition-\[left\,transform\] {
2874
+ transition-property: left, transform;
2875
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2876
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
2877
+ }
2767
2878
  .transition-\[margin\,opacity\] {
2768
2879
  transition-property: margin, opacity;
2769
2880
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
@@ -2804,15 +2915,6 @@
2804
2915
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2805
2916
  transition-duration: var(--tw-duration, var(--default-transition-duration));
2806
2917
  }
2807
- .transition-\[transform\,scale\,opacity\,filter\] {
2808
- transition-property:
2809
- transform,
2810
- scale,
2811
- opacity,
2812
- filter;
2813
- transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
2814
- transition-duration: var(--tw-duration, var(--default-transition-duration));
2815
- }
2816
2918
  .transition-\[transform\,scale\,opacity\] {
2817
2919
  transition-property:
2818
2920
  transform,
@@ -3036,6 +3138,13 @@
3036
3138
  opacity: 100%;
3037
3139
  }
3038
3140
  }
3141
+ .group-hover\:bg-foreground {
3142
+ &:is(:where(.group):hover *) {
3143
+ @media (hover: hover) {
3144
+ background-color: var(--color-foreground);
3145
+ }
3146
+ }
3147
+ }
3039
3148
  .group-hover\:opacity-100 {
3040
3149
  &:is(:where(.group):hover *) {
3041
3150
  @media (hover: hover) {
@@ -3171,6 +3280,11 @@
3171
3280
  left: calc(var(--sidebar-width) * -1);
3172
3281
  }
3173
3282
  }
3283
+ .group-data-\[collapsible\=offcanvas\]\:left-0 {
3284
+ &:is(:where(.group)[data-collapsible=offcanvas] *) {
3285
+ left: calc(var(--spacing) * 0);
3286
+ }
3287
+ }
3174
3288
  .group-data-\[collapsible\=offcanvas\]\:w-0 {
3175
3289
  &:is(:where(.group)[data-collapsible=offcanvas] *) {
3176
3290
  width: calc(var(--spacing) * 0);
@@ -3240,11 +3354,47 @@
3240
3354
  display: block;
3241
3355
  }
3242
3356
  }
3357
+ .group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:rounded-t-lg {
3358
+ &:is(:where(.group\/drawer-content)[data-vaul-drawer-direction=bottom] *) {
3359
+ border-top-left-radius: var(--radius-lg);
3360
+ border-top-right-radius: var(--radius-lg);
3361
+ }
3362
+ }
3363
+ .group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:border-t {
3364
+ &:is(:where(.group\/drawer-content)[data-vaul-drawer-direction=bottom] *) {
3365
+ border-top-style: var(--tw-border-style);
3366
+ border-top-width: 1px;
3367
+ }
3368
+ }
3243
3369
  .group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:text-center {
3244
3370
  &:is(:where(.group\/drawer-content)[data-vaul-drawer-direction=bottom] *) {
3245
3371
  text-align: center;
3246
3372
  }
3247
3373
  }
3374
+ .group-data-\[vaul-drawer-direction\=left\]\/drawer-content\:border-r {
3375
+ &:is(:where(.group\/drawer-content)[data-vaul-drawer-direction=left] *) {
3376
+ border-right-style: var(--tw-border-style);
3377
+ border-right-width: 1px;
3378
+ }
3379
+ }
3380
+ .group-data-\[vaul-drawer-direction\=right\]\/drawer-content\:border-l {
3381
+ &:is(:where(.group\/drawer-content)[data-vaul-drawer-direction=right] *) {
3382
+ border-left-style: var(--tw-border-style);
3383
+ border-left-width: 1px;
3384
+ }
3385
+ }
3386
+ .group-data-\[vaul-drawer-direction\=top\]\/drawer-content\:rounded-b-lg {
3387
+ &:is(:where(.group\/drawer-content)[data-vaul-drawer-direction=top] *) {
3388
+ border-bottom-right-radius: var(--radius-lg);
3389
+ border-bottom-left-radius: var(--radius-lg);
3390
+ }
3391
+ }
3392
+ .group-data-\[vaul-drawer-direction\=top\]\/drawer-content\:border-b {
3393
+ &:is(:where(.group\/drawer-content)[data-vaul-drawer-direction=top] *) {
3394
+ border-bottom-style: var(--tw-border-style);
3395
+ border-bottom-width: 1px;
3396
+ }
3397
+ }
3248
3398
  .group-data-\[vaul-drawer-direction\=top\]\/drawer-content\:text-center {
3249
3399
  &:is(:where(.group\/drawer-content)[data-vaul-drawer-direction=top] *) {
3250
3400
  text-align: center;
@@ -3482,6 +3632,12 @@
3482
3632
  right: calc(1 / 2 * 100%);
3483
3633
  }
3484
3634
  }
3635
+ .after\:-left-4 {
3636
+ &::after {
3637
+ content: var(--tw-content);
3638
+ left: calc(var(--spacing) * -4);
3639
+ }
3640
+ }
3485
3641
  .after\:left-1\/2 {
3486
3642
  &::after {
3487
3643
  content: var(--tw-content);
@@ -3494,6 +3650,12 @@
3494
3650
  width: calc(var(--spacing) * 1);
3495
3651
  }
3496
3652
  }
3653
+ .after\:w-11 {
3654
+ &::after {
3655
+ content: var(--tw-content);
3656
+ width: calc(var(--spacing) * 11);
3657
+ }
3658
+ }
3497
3659
  .after\:w-\[2px\] {
3498
3660
  &::after {
3499
3661
  content: var(--tw-content);
@@ -3527,12 +3689,6 @@
3527
3689
  border-radius: calc(infinity * 1px);
3528
3690
  }
3529
3691
  }
3530
- .after\:bg-accent {
3531
- &::after {
3532
- content: var(--tw-content);
3533
- background-color: var(--color-accent);
3534
- }
3535
- }
3536
3692
  .after\:bg-sidebar-border {
3537
3693
  &::after {
3538
3694
  content: var(--tw-content);
@@ -3551,6 +3707,12 @@
3551
3707
  transition-duration: var(--tw-duration, var(--default-transition-duration));
3552
3708
  }
3553
3709
  }
3710
+ .after\:content-\[\'\'\] {
3711
+ &::after {
3712
+ --tw-content: "";
3713
+ content: var(--tw-content);
3714
+ }
3715
+ }
3554
3716
  .\*\:after\:pointer-events-none {
3555
3717
  :is(& > *) {
3556
3718
  &::after {
@@ -4323,6 +4485,11 @@
4323
4485
  scale: 99.35%;
4324
4486
  }
4325
4487
  }
4488
+ .active\:cursor-grabbing {
4489
+ &:active {
4490
+ cursor: grabbing;
4491
+ }
4492
+ }
4326
4493
  .active\:bg-accent {
4327
4494
  &:active {
4328
4495
  background-color: var(--color-accent);
@@ -4409,6 +4576,11 @@
4409
4576
  background-color: var(--color-sidebar);
4410
4577
  }
4411
4578
  }
4579
+ .has-\[\>\[data-slot\=button-group\]\]\:gap-2 {
4580
+ &:has(> [data-slot=button-group]) {
4581
+ gap: calc(var(--spacing) * 2);
4582
+ }
4583
+ }
4412
4584
  .has-\[\>svg\]\:grid-cols-\[calc\(var\(--spacing\)\*4\)_1fr\] {
4413
4585
  &:has(> svg) {
4414
4586
  grid-template-columns: calc(var(--spacing) * 4) 1fr;
@@ -4614,12 +4786,6 @@
4614
4786
  opacity: 0%;
4615
4787
  }
4616
4788
  }
4617
- .data-ending-style\:blur-\[2px\] {
4618
- &[data-ending-style] {
4619
- --tw-blur: blur(2px);
4620
- filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
4621
- }
4622
- }
4623
4789
  .data-ending-style\:duration-100 {
4624
4790
  &[data-ending-style] {
4625
4791
  --tw-duration: 100ms;
@@ -4673,11 +4839,6 @@
4673
4839
  color: var(--color-foreground);
4674
4840
  }
4675
4841
  }
4676
- .data-inset\:pl-8 {
4677
- &[data-inset] {
4678
- padding-left: calc(var(--spacing) * 8);
4679
- }
4680
- }
4681
4842
  .data-open\:animate-in {
4682
4843
  &[data-open] {
4683
4844
  animation-name: enter;
@@ -4808,12 +4969,6 @@
4808
4969
  opacity: 0%;
4809
4970
  }
4810
4971
  }
4811
- .data-starting-style\:blur-\[2px\] {
4812
- &[data-starting-style] {
4813
- --tw-blur: blur(2px);
4814
- filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
4815
- }
4816
- }
4817
4972
  .data-unchecked\:hidden {
4818
4973
  &[data-unchecked] {
4819
4974
  display: none;
@@ -4871,11 +5026,6 @@
4871
5026
  opacity: 50%;
4872
5027
  }
4873
5028
  }
4874
- .data-\[inset\]\:pl-8 {
4875
- &[data-inset] {
4876
- padding-left: calc(var(--spacing) * 8);
4877
- }
4878
- }
4879
5029
  .data-\[loading\=true\]\:w-8\! {
4880
5030
  &[data-loading=true] {
4881
5031
  width: calc(var(--spacing) * 8) !important;
@@ -4906,6 +5056,11 @@
4906
5056
  width: 100%;
4907
5057
  }
4908
5058
  }
5059
+ .data-\[orientation\=vertical\]\:h-auto {
5060
+ &[data-orientation=vertical] {
5061
+ height: auto;
5062
+ }
5063
+ }
4909
5064
  .data-\[orientation\=vertical\]\:h-full {
4910
5065
  &[data-orientation=vertical] {
4911
5066
  height: 100%;
@@ -5222,18 +5377,6 @@
5222
5377
  max-height: 80vh;
5223
5378
  }
5224
5379
  }
5225
- .data-\[vaul-drawer-direction\=bottom\]\:rounded-t-lg {
5226
- &[data-vaul-drawer-direction=bottom] {
5227
- border-top-left-radius: var(--radius-lg);
5228
- border-top-right-radius: var(--radius-lg);
5229
- }
5230
- }
5231
- .data-\[vaul-drawer-direction\=bottom\]\:border-t {
5232
- &[data-vaul-drawer-direction=bottom] {
5233
- border-top-style: var(--tw-border-style);
5234
- border-top-width: 1px;
5235
- }
5236
- }
5237
5380
  .data-\[vaul-drawer-direction\=left\]\:inset-y-0 {
5238
5381
  &[data-vaul-drawer-direction=left] {
5239
5382
  inset-block: calc(var(--spacing) * 0);
@@ -5249,12 +5392,6 @@
5249
5392
  width: calc(3 / 4 * 100%);
5250
5393
  }
5251
5394
  }
5252
- .data-\[vaul-drawer-direction\=left\]\:border-r {
5253
- &[data-vaul-drawer-direction=left] {
5254
- border-right-style: var(--tw-border-style);
5255
- border-right-width: 1px;
5256
- }
5257
- }
5258
5395
  .data-\[vaul-drawer-direction\=right\]\:inset-y-0 {
5259
5396
  &[data-vaul-drawer-direction=right] {
5260
5397
  inset-block: calc(var(--spacing) * 0);
@@ -5270,12 +5407,6 @@
5270
5407
  width: calc(3 / 4 * 100%);
5271
5408
  }
5272
5409
  }
5273
- .data-\[vaul-drawer-direction\=right\]\:border-l {
5274
- &[data-vaul-drawer-direction=right] {
5275
- border-left-style: var(--tw-border-style);
5276
- border-left-width: 1px;
5277
- }
5278
- }
5279
5410
  .data-\[vaul-drawer-direction\=top\]\:inset-x-0 {
5280
5411
  &[data-vaul-drawer-direction=top] {
5281
5412
  inset-inline: calc(var(--spacing) * 0);
@@ -5296,18 +5427,6 @@
5296
5427
  max-height: 80vh;
5297
5428
  }
5298
5429
  }
5299
- .data-\[vaul-drawer-direction\=top\]\:rounded-b-lg {
5300
- &[data-vaul-drawer-direction=top] {
5301
- border-bottom-right-radius: var(--radius-lg);
5302
- border-bottom-left-radius: var(--radius-lg);
5303
- }
5304
- }
5305
- .data-\[vaul-drawer-direction\=top\]\:border-b {
5306
- &[data-vaul-drawer-direction=top] {
5307
- border-bottom-style: var(--tw-border-style);
5308
- border-bottom-width: 1px;
5309
- }
5310
- }
5311
5430
  .max-lg\:sticky {
5312
5431
  @media (width < 64rem) {
5313
5432
  position: sticky;
@@ -5352,9 +5471,14 @@
5352
5471
  padding-bottom: var(--calculated-spacing);
5353
5472
  }
5354
5473
  }
5355
- .max-lg\:\[--context-sidebar-width\:0px\] {
5474
+ .max-lg\:\[--left-sidebar-width\:0px\] {
5356
5475
  @media (width < 64rem) {
5357
- --context-sidebar-width: 0px;
5476
+ --left-sidebar-width: 0px;
5477
+ }
5478
+ }
5479
+ .max-lg\:\[--right-sidebar-width\:0px\] {
5480
+ @media (width < 64rem) {
5481
+ --right-sidebar-width: 0px;
5358
5482
  }
5359
5483
  }
5360
5484
  .max-md\:hidden {
@@ -5574,10 +5698,9 @@
5574
5698
  line-height: var(--tw-leading, var(--text-base--line-height));
5575
5699
  }
5576
5700
  }
5577
- .md\:text-sm {
5578
- @media (width >= 48rem) {
5579
- font-size: var(--text-sm);
5580
- line-height: var(--tw-leading, var(--text-sm--line-height));
5701
+ .lg\:m-2 {
5702
+ @media (width >= 64rem) {
5703
+ margin: calc(var(--spacing) * 2);
5581
5704
  }
5582
5705
  }
5583
5706
  .lg\:-mx-1 {
@@ -5590,6 +5713,16 @@
5590
5713
  margin-block: calc(var(--spacing) * 1);
5591
5714
  }
5592
5715
  }
5716
+ .lg\:mr-0 {
5717
+ @media (width >= 64rem) {
5718
+ margin-right: calc(var(--spacing) * 0);
5719
+ }
5720
+ }
5721
+ .lg\:ml-0 {
5722
+ @media (width >= 64rem) {
5723
+ margin-left: calc(var(--spacing) * 0);
5724
+ }
5725
+ }
5593
5726
  .lg\:block {
5594
5727
  @media (width >= 64rem) {
5595
5728
  display: block;
@@ -5650,6 +5783,11 @@
5650
5783
  border-radius: var(--card-radius);
5651
5784
  }
5652
5785
  }
5786
+ .lg\:rounded-2xl {
5787
+ @media (width >= 64rem) {
5788
+ border-radius: var(--radius-2xl);
5789
+ }
5790
+ }
5653
5791
  .lg\:rounded-t-2xl {
5654
5792
  @media (width >= 64rem) {
5655
5793
  border-top-left-radius: var(--radius-2xl);
@@ -5713,13 +5851,6 @@
5713
5851
  }
5714
5852
  }
5715
5853
  }
5716
- .lg\:peer-data-\[variant\=inset\]\:mr-0 {
5717
- @media (width >= 64rem) {
5718
- &:is(:where(.peer)[data-variant=inset] ~ *) {
5719
- margin-right: calc(var(--spacing) * 0);
5720
- }
5721
- }
5722
- }
5723
5854
  .lg\:peer-data-\[variant\=inset\]\:ml-0 {
5724
5855
  @media (width >= 64rem) {
5725
5856
  &:is(:where(.peer)[data-variant=inset] ~ *) {
@@ -5867,6 +5998,19 @@
5867
5998
  }
5868
5999
  }
5869
6000
  }
6001
+ .dark\:text-border {
6002
+ &:is(.dark *) {
6003
+ color: var(--color-border);
6004
+ }
6005
+ }
6006
+ .dark\:text-border\/50 {
6007
+ &:is(.dark *) {
6008
+ color: var(--color-border);
6009
+ @supports (color: color-mix(in lab, red, red)) {
6010
+ color: color-mix(in oklab, var(--color-border) 50%, transparent);
6011
+ }
6012
+ }
6013
+ }
5870
6014
  .dark\:text-white {
5871
6015
  &:is(.dark *) {
5872
6016
  color: var(--color-white);
@@ -6194,11 +6338,21 @@
6194
6338
  padding-right: calc(var(--spacing) * 10);
6195
6339
  }
6196
6340
  }
6341
+ .\[\&\:has\(\[data-align\=\"inline-end\"\]\[data-variant\=\"filled\"\]\)_\[data-slot\=\"input-group-control\"\]\]\:pr-12 {
6342
+ &:has([data-align=inline-end][data-variant=filled]) [data-slot=input-group-control] {
6343
+ padding-right: calc(var(--spacing) * 12);
6344
+ }
6345
+ }
6197
6346
  .\[\&\:has\(\[data-align\=\"inline-start\"\]\)_\[data-slot\=\"input-group-control\"\]\]\:pl-10 {
6198
6347
  &:has([data-align=inline-start]) [data-slot=input-group-control] {
6199
6348
  padding-left: calc(var(--spacing) * 10);
6200
6349
  }
6201
6350
  }
6351
+ .\[\&\:has\(\[data-align\=\"inline-start\"\]\[data-variant\=\"filled\"\]\)_\[data-slot\=\"input-group-control\"\]\]\:pl-12 {
6352
+ &:has([data-align=inline-start][data-variant=filled]) [data-slot=input-group-control] {
6353
+ padding-left: calc(var(--spacing) * 12);
6354
+ }
6355
+ }
6202
6356
  .\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0 {
6203
6357
  &:has([role=checkbox]) {
6204
6358
  padding-right: calc(var(--spacing) * 0);
@@ -6272,10 +6426,10 @@
6272
6426
  }
6273
6427
  }
6274
6428
  }
6275
- .\*\*\:\[\[cmdk-input\]\]\:h-12 {
6429
+ .\*\*\:\[\[cmdk-input\]\]\:h-10 {
6276
6430
  :is(& *) {
6277
6431
  &:is([cmdk-input]) {
6278
- height: calc(var(--spacing) * 12);
6432
+ height: calc(var(--spacing) * 10);
6279
6433
  }
6280
6434
  }
6281
6435
  }
@@ -6354,11 +6508,124 @@
6354
6508
  }
6355
6509
  }
6356
6510
  }
6511
+ .\[\&\>\*\]\:focus-visible\:relative {
6512
+ & > * {
6513
+ &:focus-visible {
6514
+ position: relative;
6515
+ }
6516
+ }
6517
+ }
6518
+ .\[\&\>\*\]\:focus-visible\:z-10 {
6519
+ & > * {
6520
+ &:focus-visible {
6521
+ z-index: 10;
6522
+ }
6523
+ }
6524
+ }
6525
+ .\[\&\>\*\:not\(\:nth-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)\]\:rounded-t-none {
6526
+ & > *:not(:nth-child(1 of :not([data-base-ui-focus-guard], span[aria-owns], select[aria-hidden=true]))) {
6527
+ border-top-left-radius: 0;
6528
+ border-top-right-radius: 0;
6529
+ }
6530
+ }
6531
+ .\[\&\>\*\:not\(\:nth-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)\]\:rounded-l-none {
6532
+ & > *:not(:nth-child(1 of :not([data-base-ui-focus-guard], span[aria-owns], select[aria-hidden=true]))) {
6533
+ border-top-left-radius: 0;
6534
+ border-bottom-left-radius: 0;
6535
+ }
6536
+ }
6537
+ .\[\&\>\*\:not\(\:nth-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)\]\:border-t-0 {
6538
+ & > *:not(:nth-child(1 of :not([data-base-ui-focus-guard], span[aria-owns], select[aria-hidden=true]))) {
6539
+ border-top-style: var(--tw-border-style);
6540
+ border-top-width: 0px;
6541
+ }
6542
+ }
6543
+ .\[\&\>\*\:not\(\:nth-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)\]\:border-l-0 {
6544
+ & > *:not(:nth-child(1 of :not([data-base-ui-focus-guard], span[aria-owns], select[aria-hidden=true]))) {
6545
+ border-left-style: var(--tw-border-style);
6546
+ border-left-width: 0px;
6547
+ }
6548
+ }
6549
+ .\[\&\>\*\:not\(\:nth-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)_\[data-slot\=dropdown-menu-trigger\]\]\:rounded-t-none {
6550
+ & > *:not(:nth-child(1 of :not([data-base-ui-focus-guard], span[aria-owns], select[aria-hidden=true]))) [data-slot=dropdown-menu-trigger] {
6551
+ border-top-left-radius: 0;
6552
+ border-top-right-radius: 0;
6553
+ }
6554
+ }
6555
+ .\[\&\>\*\:not\(\:nth-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)_\[data-slot\=dropdown-menu-trigger\]\]\:rounded-l-none {
6556
+ & > *:not(:nth-child(1 of :not([data-base-ui-focus-guard], span[aria-owns], select[aria-hidden=true]))) [data-slot=dropdown-menu-trigger] {
6557
+ border-top-left-radius: 0;
6558
+ border-bottom-left-radius: 0;
6559
+ }
6560
+ }
6561
+ .\[\&\>\*\:not\(\:nth-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)_\[data-slot\=input-group-control\]\]\:rounded-t-none {
6562
+ & > *:not(:nth-child(1 of :not([data-base-ui-focus-guard], span[aria-owns], select[aria-hidden=true]))) [data-slot=input-group-control] {
6563
+ border-top-left-radius: 0;
6564
+ border-top-right-radius: 0;
6565
+ }
6566
+ }
6567
+ .\[\&\>\*\:not\(\:nth-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)_\[data-slot\=input-group-control\]\]\:rounded-l-none {
6568
+ & > *:not(:nth-child(1 of :not([data-base-ui-focus-guard], span[aria-owns], select[aria-hidden=true]))) [data-slot=input-group-control] {
6569
+ border-top-left-radius: 0;
6570
+ border-bottom-left-radius: 0;
6571
+ }
6572
+ }
6573
+ .\[\&\>\*\:not\(\:nth-last-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)\]\:rounded-r-none {
6574
+ & > *:not(:nth-last-child(1 of :not([data-base-ui-focus-guard], span[aria-owns], select[aria-hidden=true]))) {
6575
+ border-top-right-radius: 0;
6576
+ border-bottom-right-radius: 0;
6577
+ }
6578
+ }
6579
+ .\[\&\>\*\:not\(\:nth-last-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)\]\:rounded-b-none {
6580
+ & > *:not(:nth-last-child(1 of :not([data-base-ui-focus-guard], span[aria-owns], select[aria-hidden=true]))) {
6581
+ border-bottom-right-radius: 0;
6582
+ border-bottom-left-radius: 0;
6583
+ }
6584
+ }
6585
+ .\[\&\>\*\:not\(\:nth-last-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)_\[data-slot\=dropdown-menu-trigger\]\]\:rounded-r-none {
6586
+ & > *:not(:nth-last-child(1 of :not([data-base-ui-focus-guard], span[aria-owns], select[aria-hidden=true]))) [data-slot=dropdown-menu-trigger] {
6587
+ border-top-right-radius: 0;
6588
+ border-bottom-right-radius: 0;
6589
+ }
6590
+ }
6591
+ .\[\&\>\*\:not\(\:nth-last-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)_\[data-slot\=dropdown-menu-trigger\]\]\:rounded-b-none {
6592
+ & > *:not(:nth-last-child(1 of :not([data-base-ui-focus-guard], span[aria-owns], select[aria-hidden=true]))) [data-slot=dropdown-menu-trigger] {
6593
+ border-bottom-right-radius: 0;
6594
+ border-bottom-left-radius: 0;
6595
+ }
6596
+ }
6597
+ .\[\&\>\*\:not\(\:nth-last-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)_\[data-slot\=input-group-control\]\]\:rounded-r-none {
6598
+ & > *:not(:nth-last-child(1 of :not([data-base-ui-focus-guard], span[aria-owns], select[aria-hidden=true]))) [data-slot=input-group-control] {
6599
+ border-top-right-radius: 0;
6600
+ border-bottom-right-radius: 0;
6601
+ }
6602
+ }
6603
+ .\[\&\>\*\:not\(\:nth-last-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)_\[data-slot\=input-group-control\]\]\:rounded-b-none {
6604
+ & > *:not(:nth-last-child(1 of :not([data-base-ui-focus-guard], span[aria-owns], select[aria-hidden=true]))) [data-slot=input-group-control] {
6605
+ border-bottom-right-radius: 0;
6606
+ border-bottom-left-radius: 0;
6607
+ }
6608
+ }
6609
+ .\[\&\>\[data-slot\=input-group\]\]\:flex-1 {
6610
+ & > [data-slot=input-group] {
6611
+ flex: 1;
6612
+ }
6613
+ }
6614
+ .\[\&\>\[data-slot\=select-trigger\]\:not\(\[class\*\=\'w-\'\]\)\]\:w-fit {
6615
+ & > [data-slot=select-trigger]:not([class*=w-]) {
6616
+ width: fit-content;
6617
+ }
6618
+ }
6357
6619
  .\[\&\>button\]\:hidden {
6358
6620
  & > button {
6359
6621
  display: none;
6360
6622
  }
6361
6623
  }
6624
+ .\[\&\>input\]\:flex-1 {
6625
+ & > input {
6626
+ flex: 1;
6627
+ }
6628
+ }
6362
6629
  .\[\&\>span\:last-child\]\:truncate {
6363
6630
  & > span:last-child {
6364
6631
  overflow: hidden;