@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.
- package/dist/index.d.mts +559 -126
- package/dist/index.d.ts +559 -126
- package/dist/index.js +5940 -1674
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5916 -1612
- package/dist/index.mjs.map +1 -1
- package/dist/styles/globals.css +385 -118
- package/dist/styles/globals.css.map +1 -1
- package/dist/styles.css +386 -114
- package/package.json +1 -2
package/dist/styles.css
CHANGED
|
@@ -20,14 +20,20 @@
|
|
|
20
20
|
--color-sky-50: oklch(97.7% 0.013 236.62);
|
|
21
21
|
--color-sky-500: oklch(68.5% 0.169 237.323);
|
|
22
22
|
--color-fuchsia-600: oklch(59.1% 0.293 322.896);
|
|
23
|
+
--color-rose-400: oklch(71.2% 0.194 13.428);
|
|
24
|
+
--color-rose-500: oklch(64.5% 0.246 16.439);
|
|
23
25
|
--color-gray-200: oklch(92.8% 0.006 264.531);
|
|
24
26
|
--color-zinc-200: oklch(92% 0.004 286.32);
|
|
27
|
+
--color-zinc-300: oklch(87.1% 0.006 286.286);
|
|
28
|
+
--color-zinc-400: oklch(70.5% 0.015 286.067);
|
|
29
|
+
--color-zinc-500: oklch(55.2% 0.016 285.938);
|
|
30
|
+
--color-zinc-600: oklch(44.2% 0.017 285.786);
|
|
31
|
+
--color-zinc-700: oklch(37% 0.013 285.805);
|
|
25
32
|
--color-black: #000;
|
|
26
33
|
--color-white: #fff;
|
|
27
34
|
--spacing: 0.25rem;
|
|
28
35
|
--container-sm: 24rem;
|
|
29
36
|
--container-md: 28rem;
|
|
30
|
-
--container-lg: 32rem;
|
|
31
37
|
--container-xl: 36rem;
|
|
32
38
|
--container-2xl: 42rem;
|
|
33
39
|
--text-xs: 0.75rem;
|
|
@@ -40,6 +46,8 @@
|
|
|
40
46
|
--text-lg--line-height: calc(1.75 / 1.125);
|
|
41
47
|
--text-xl: 1.25rem;
|
|
42
48
|
--text-xl--line-height: calc(1.75 / 1.25);
|
|
49
|
+
--text-2xl: 1.5rem;
|
|
50
|
+
--text-2xl--line-height: calc(2 / 1.5);
|
|
43
51
|
--font-weight-medium: 500;
|
|
44
52
|
--font-weight-semibold: 600;
|
|
45
53
|
--font-weight-bold: 700;
|
|
@@ -356,11 +364,11 @@
|
|
|
356
364
|
.-right-0\.5 {
|
|
357
365
|
right: calc(var(--spacing) * -0.5);
|
|
358
366
|
}
|
|
359
|
-
.-right
|
|
360
|
-
right: -
|
|
367
|
+
.-right-\[5\.5px\] {
|
|
368
|
+
right: calc(5.5px * -1);
|
|
361
369
|
}
|
|
362
|
-
.right-\(--
|
|
363
|
-
right: var(--
|
|
370
|
+
.right-\(--right-sidebar-width\) {
|
|
371
|
+
right: var(--right-sidebar-width);
|
|
364
372
|
}
|
|
365
373
|
.right-0 {
|
|
366
374
|
right: calc(var(--spacing) * 0);
|
|
@@ -368,6 +376,9 @@
|
|
|
368
376
|
.right-1 {
|
|
369
377
|
right: calc(var(--spacing) * 1);
|
|
370
378
|
}
|
|
379
|
+
.right-1\.5 {
|
|
380
|
+
right: calc(var(--spacing) * 1.5);
|
|
381
|
+
}
|
|
371
382
|
.right-2 {
|
|
372
383
|
right: calc(var(--spacing) * 2);
|
|
373
384
|
}
|
|
@@ -386,15 +397,27 @@
|
|
|
386
397
|
.-bottom-0\.5 {
|
|
387
398
|
bottom: calc(var(--spacing) * -0.5);
|
|
388
399
|
}
|
|
400
|
+
.-bottom-3 {
|
|
401
|
+
bottom: calc(var(--spacing) * -3);
|
|
402
|
+
}
|
|
389
403
|
.bottom-0 {
|
|
390
404
|
bottom: calc(var(--spacing) * 0);
|
|
391
405
|
}
|
|
392
406
|
.bottom-1\/2 {
|
|
393
407
|
bottom: calc(1 / 2 * 100%);
|
|
394
408
|
}
|
|
409
|
+
.-left-\[5\.5px\] {
|
|
410
|
+
left: calc(5.5px * -1);
|
|
411
|
+
}
|
|
412
|
+
.left-\(--left-sidebar-width\) {
|
|
413
|
+
left: var(--left-sidebar-width);
|
|
414
|
+
}
|
|
395
415
|
.left-0 {
|
|
396
416
|
left: calc(var(--spacing) * 0);
|
|
397
417
|
}
|
|
418
|
+
.left-1\.5 {
|
|
419
|
+
left: calc(var(--spacing) * 1.5);
|
|
420
|
+
}
|
|
398
421
|
.left-1\/2 {
|
|
399
422
|
left: calc(1 / 2 * 100%);
|
|
400
423
|
}
|
|
@@ -461,6 +484,9 @@
|
|
|
461
484
|
max-width: 96rem;
|
|
462
485
|
}
|
|
463
486
|
}
|
|
487
|
+
.\!m-0 {
|
|
488
|
+
margin: calc(var(--spacing) * 0) !important;
|
|
489
|
+
}
|
|
464
490
|
.m-0 {
|
|
465
491
|
margin: calc(var(--spacing) * 0);
|
|
466
492
|
}
|
|
@@ -601,6 +627,9 @@
|
|
|
601
627
|
.table {
|
|
602
628
|
display: table;
|
|
603
629
|
}
|
|
630
|
+
.aspect-auto {
|
|
631
|
+
aspect-ratio: auto;
|
|
632
|
+
}
|
|
604
633
|
.aspect-square {
|
|
605
634
|
aspect-ratio: 1 / 1;
|
|
606
635
|
}
|
|
@@ -733,9 +762,18 @@
|
|
|
733
762
|
.h-72 {
|
|
734
763
|
height: calc(var(--spacing) * 72);
|
|
735
764
|
}
|
|
765
|
+
.h-80 {
|
|
766
|
+
height: calc(var(--spacing) * 80);
|
|
767
|
+
}
|
|
768
|
+
.h-96 {
|
|
769
|
+
height: calc(var(--spacing) * 96);
|
|
770
|
+
}
|
|
736
771
|
.h-\[0\.5px\] {
|
|
737
772
|
height: 0.5px;
|
|
738
773
|
}
|
|
774
|
+
.h-\[2px\] {
|
|
775
|
+
height: 2px;
|
|
776
|
+
}
|
|
739
777
|
.h-\[70vh\] {
|
|
740
778
|
height: 70vh;
|
|
741
779
|
}
|
|
@@ -803,6 +841,9 @@
|
|
|
803
841
|
.min-h-9 {
|
|
804
842
|
min-height: calc(var(--spacing) * 9);
|
|
805
843
|
}
|
|
844
|
+
.min-h-10 {
|
|
845
|
+
min-height: calc(var(--spacing) * 10);
|
|
846
|
+
}
|
|
806
847
|
.min-h-12 {
|
|
807
848
|
min-height: calc(var(--spacing) * 12);
|
|
808
849
|
}
|
|
@@ -836,9 +877,6 @@
|
|
|
836
877
|
.min-h-\[100px\] {
|
|
837
878
|
min-height: 100px;
|
|
838
879
|
}
|
|
839
|
-
.min-h-\[300px\] {
|
|
840
|
-
min-height: 300px;
|
|
841
|
-
}
|
|
842
880
|
.min-h-\[500px\] {
|
|
843
881
|
min-height: 500px;
|
|
844
882
|
}
|
|
@@ -863,8 +901,11 @@
|
|
|
863
901
|
.w-\(--anchor-width\) {
|
|
864
902
|
width: var(--anchor-width);
|
|
865
903
|
}
|
|
866
|
-
.w-\(--
|
|
867
|
-
width: var(--
|
|
904
|
+
.w-\(--left-sidebar-width\) {
|
|
905
|
+
width: var(--left-sidebar-width);
|
|
906
|
+
}
|
|
907
|
+
.w-\(--right-sidebar-width\) {
|
|
908
|
+
width: var(--right-sidebar-width);
|
|
868
909
|
}
|
|
869
910
|
.w-\(--sidebar-width\) {
|
|
870
911
|
width: var(--sidebar-width);
|
|
@@ -878,6 +919,9 @@
|
|
|
878
919
|
.w-1 {
|
|
879
920
|
width: calc(var(--spacing) * 1);
|
|
880
921
|
}
|
|
922
|
+
.w-1\.5 {
|
|
923
|
+
width: calc(var(--spacing) * 1.5);
|
|
924
|
+
}
|
|
881
925
|
.w-1\/2 {
|
|
882
926
|
width: calc(1 / 2 * 100%);
|
|
883
927
|
}
|
|
@@ -890,6 +934,9 @@
|
|
|
890
934
|
.w-2\.5 {
|
|
891
935
|
width: calc(var(--spacing) * 2.5);
|
|
892
936
|
}
|
|
937
|
+
.w-3 {
|
|
938
|
+
width: calc(var(--spacing) * 3);
|
|
939
|
+
}
|
|
893
940
|
.w-3\.5 {
|
|
894
941
|
width: calc(var(--spacing) * 3.5);
|
|
895
942
|
}
|
|
@@ -950,6 +997,9 @@
|
|
|
950
997
|
.w-96 {
|
|
951
998
|
width: calc(var(--spacing) * 96);
|
|
952
999
|
}
|
|
1000
|
+
.w-\[2px\] {
|
|
1001
|
+
width: 2px;
|
|
1002
|
+
}
|
|
953
1003
|
.w-\[42rem\] {
|
|
954
1004
|
width: 42rem;
|
|
955
1005
|
}
|
|
@@ -1009,9 +1059,6 @@
|
|
|
1009
1059
|
.max-w-full {
|
|
1010
1060
|
max-width: 100%;
|
|
1011
1061
|
}
|
|
1012
|
-
.max-w-lg {
|
|
1013
|
-
max-width: var(--container-lg);
|
|
1014
|
-
}
|
|
1015
1062
|
.max-w-md {
|
|
1016
1063
|
max-width: var(--container-md);
|
|
1017
1064
|
}
|
|
@@ -1070,6 +1117,9 @@
|
|
|
1070
1117
|
.shrink-0 {
|
|
1071
1118
|
flex-shrink: 0;
|
|
1072
1119
|
}
|
|
1120
|
+
.grow {
|
|
1121
|
+
flex-grow: 1;
|
|
1122
|
+
}
|
|
1073
1123
|
.caption-bottom {
|
|
1074
1124
|
caption-side: bottom;
|
|
1075
1125
|
}
|
|
@@ -1080,18 +1130,14 @@
|
|
|
1080
1130
|
--tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
|
|
1081
1131
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1082
1132
|
}
|
|
1083
|
-
.-translate-x-
|
|
1084
|
-
--tw-translate-x: -
|
|
1133
|
+
.-translate-x-full {
|
|
1134
|
+
--tw-translate-x: -100%;
|
|
1085
1135
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1086
1136
|
}
|
|
1087
|
-
|
|
1088
|
-
--tw-translate-x:
|
|
1137
|
+
.-translate-x-px {
|
|
1138
|
+
--tw-translate-x: -1px;
|
|
1089
1139
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
1090
1140
|
}
|
|
1091
|
-
.translate-x-1\! {
|
|
1092
|
-
--tw-translate-x: calc(var(--spacing) * 1) !important;
|
|
1093
|
-
translate: var(--tw-translate-x) var(--tw-translate-y) !important;
|
|
1094
|
-
}
|
|
1095
1141
|
.translate-x-1\/2 {
|
|
1096
1142
|
--tw-translate-x: calc(1 / 2 * 100%);
|
|
1097
1143
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
@@ -1148,6 +1194,12 @@
|
|
|
1148
1194
|
.cursor-default {
|
|
1149
1195
|
cursor: default;
|
|
1150
1196
|
}
|
|
1197
|
+
.cursor-ew-resize {
|
|
1198
|
+
cursor: ew-resize;
|
|
1199
|
+
}
|
|
1200
|
+
.cursor-grab {
|
|
1201
|
+
cursor: grab;
|
|
1202
|
+
}
|
|
1151
1203
|
.cursor-not-allowed {
|
|
1152
1204
|
cursor: not-allowed;
|
|
1153
1205
|
}
|
|
@@ -1262,6 +1314,9 @@
|
|
|
1262
1314
|
.gap-8 {
|
|
1263
1315
|
gap: calc(var(--spacing) * 8);
|
|
1264
1316
|
}
|
|
1317
|
+
.gap-\[2px\] {
|
|
1318
|
+
gap: 2px;
|
|
1319
|
+
}
|
|
1265
1320
|
.space-y-1 {
|
|
1266
1321
|
:where(& > :not(:last-child)) {
|
|
1267
1322
|
--tw-space-y-reverse: 0;
|
|
@@ -1387,6 +1442,9 @@
|
|
|
1387
1442
|
.rounded-\[2px\] {
|
|
1388
1443
|
border-radius: 2px;
|
|
1389
1444
|
}
|
|
1445
|
+
.rounded-\[3px\] {
|
|
1446
|
+
border-radius: 3px;
|
|
1447
|
+
}
|
|
1390
1448
|
.rounded-\[4px\] {
|
|
1391
1449
|
border-radius: 4px;
|
|
1392
1450
|
}
|
|
@@ -1425,6 +1483,10 @@
|
|
|
1425
1483
|
border-top-left-radius: var(--radius-xl);
|
|
1426
1484
|
border-top-right-radius: var(--radius-xl);
|
|
1427
1485
|
}
|
|
1486
|
+
.rounded-l-md {
|
|
1487
|
+
border-top-left-radius: var(--radius-md);
|
|
1488
|
+
border-bottom-left-radius: var(--radius-md);
|
|
1489
|
+
}
|
|
1428
1490
|
.rounded-l-none {
|
|
1429
1491
|
border-top-left-radius: 0;
|
|
1430
1492
|
border-bottom-left-radius: 0;
|
|
@@ -1433,16 +1495,28 @@
|
|
|
1433
1495
|
border-top-left-radius: 0 !important;
|
|
1434
1496
|
border-bottom-left-radius: 0 !important;
|
|
1435
1497
|
}
|
|
1498
|
+
.rounded-l-xl {
|
|
1499
|
+
border-top-left-radius: var(--radius-xl);
|
|
1500
|
+
border-bottom-left-radius: var(--radius-xl);
|
|
1501
|
+
}
|
|
1436
1502
|
.rounded-tl-sm {
|
|
1437
1503
|
border-top-left-radius: var(--radius-sm);
|
|
1438
1504
|
}
|
|
1439
1505
|
.rounded-tl-xs {
|
|
1440
1506
|
border-top-left-radius: var(--radius-xs);
|
|
1441
1507
|
}
|
|
1508
|
+
.rounded-r-md {
|
|
1509
|
+
border-top-right-radius: var(--radius-md);
|
|
1510
|
+
border-bottom-right-radius: var(--radius-md);
|
|
1511
|
+
}
|
|
1442
1512
|
.rounded-r-none {
|
|
1443
1513
|
border-top-right-radius: 0;
|
|
1444
1514
|
border-bottom-right-radius: 0;
|
|
1445
1515
|
}
|
|
1516
|
+
.rounded-r-xl {
|
|
1517
|
+
border-top-right-radius: var(--radius-xl);
|
|
1518
|
+
border-bottom-right-radius: var(--radius-xl);
|
|
1519
|
+
}
|
|
1446
1520
|
.rounded-tr-sm {
|
|
1447
1521
|
border-top-right-radius: var(--radius-sm);
|
|
1448
1522
|
}
|
|
@@ -1528,9 +1602,6 @@
|
|
|
1528
1602
|
--tw-border-style: none;
|
|
1529
1603
|
border-style: none;
|
|
1530
1604
|
}
|
|
1531
|
-
.border-\(--color-border\) {
|
|
1532
|
-
border-color: var(--color-border);
|
|
1533
|
-
}
|
|
1534
1605
|
.border-\(--success-drop\) {
|
|
1535
1606
|
border-color: var(--success-drop);
|
|
1536
1607
|
}
|
|
@@ -1630,9 +1701,6 @@
|
|
|
1630
1701
|
.bg-\(--color\) {
|
|
1631
1702
|
background-color: var(--color);
|
|
1632
1703
|
}
|
|
1633
|
-
.bg-\(--color-bg\) {
|
|
1634
|
-
background-color: var(--color-bg);
|
|
1635
|
-
}
|
|
1636
1704
|
.bg-\(--content-background\) {
|
|
1637
1705
|
background-color: var(--content-background);
|
|
1638
1706
|
}
|
|
@@ -1669,6 +1737,12 @@
|
|
|
1669
1737
|
.bg-background {
|
|
1670
1738
|
background-color: var(--color-background);
|
|
1671
1739
|
}
|
|
1740
|
+
.bg-background\/70 {
|
|
1741
|
+
background-color: var(--color-background);
|
|
1742
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1743
|
+
background-color: color-mix(in oklab, var(--color-background) 70%, transparent);
|
|
1744
|
+
}
|
|
1745
|
+
}
|
|
1672
1746
|
.bg-black\/5 {
|
|
1673
1747
|
background-color: color-mix(in srgb, #000 5%, transparent);
|
|
1674
1748
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1804,6 +1878,9 @@
|
|
|
1804
1878
|
.bg-primary {
|
|
1805
1879
|
background-color: var(--color-primary);
|
|
1806
1880
|
}
|
|
1881
|
+
.bg-primary-foreground {
|
|
1882
|
+
background-color: var(--color-primary-foreground);
|
|
1883
|
+
}
|
|
1807
1884
|
.bg-primary\/5 {
|
|
1808
1885
|
background-color: var(--color-primary);
|
|
1809
1886
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -2006,9 +2083,6 @@
|
|
|
2006
2083
|
.fill-current {
|
|
2007
2084
|
fill: currentcolor;
|
|
2008
2085
|
}
|
|
2009
|
-
.fill-foreground {
|
|
2010
|
-
fill: var(--color-foreground);
|
|
2011
|
-
}
|
|
2012
2086
|
.fill-popover {
|
|
2013
2087
|
fill: var(--color-popover);
|
|
2014
2088
|
}
|
|
@@ -2021,6 +2095,9 @@
|
|
|
2021
2095
|
.fill-white {
|
|
2022
2096
|
fill: var(--color-white);
|
|
2023
2097
|
}
|
|
2098
|
+
.stroke-border {
|
|
2099
|
+
stroke: var(--color-border);
|
|
2100
|
+
}
|
|
2024
2101
|
.object-contain {
|
|
2025
2102
|
-o-object-fit: contain;
|
|
2026
2103
|
object-fit: contain;
|
|
@@ -2071,6 +2148,9 @@
|
|
|
2071
2148
|
.p-24 {
|
|
2072
2149
|
padding: calc(var(--spacing) * 24);
|
|
2073
2150
|
}
|
|
2151
|
+
.p-\[1\.5px\] {
|
|
2152
|
+
padding: 1.5px;
|
|
2153
|
+
}
|
|
2074
2154
|
.p-px {
|
|
2075
2155
|
padding: 1px;
|
|
2076
2156
|
}
|
|
@@ -2215,6 +2295,10 @@
|
|
|
2215
2295
|
.font-mono {
|
|
2216
2296
|
font-family: var(--font-mono);
|
|
2217
2297
|
}
|
|
2298
|
+
.text-2xl {
|
|
2299
|
+
font-size: var(--text-2xl);
|
|
2300
|
+
line-height: var(--tw-leading, var(--text-2xl--line-height));
|
|
2301
|
+
}
|
|
2218
2302
|
.text-base {
|
|
2219
2303
|
font-size: var(--text-base);
|
|
2220
2304
|
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
@@ -2238,12 +2322,18 @@
|
|
|
2238
2322
|
.text-\[0\.8em\] {
|
|
2239
2323
|
font-size: 0.8em;
|
|
2240
2324
|
}
|
|
2325
|
+
.text-\[8px\] {
|
|
2326
|
+
font-size: 8px;
|
|
2327
|
+
}
|
|
2241
2328
|
.text-\[9px\] {
|
|
2242
2329
|
font-size: 9px;
|
|
2243
2330
|
}
|
|
2244
2331
|
.text-\[10px\] {
|
|
2245
2332
|
font-size: 10px;
|
|
2246
2333
|
}
|
|
2334
|
+
.text-\[11px\] {
|
|
2335
|
+
font-size: 11px;
|
|
2336
|
+
}
|
|
2247
2337
|
.leading-\[11px\] {
|
|
2248
2338
|
--tw-leading: 11px;
|
|
2249
2339
|
line-height: 11px;
|
|
@@ -2323,6 +2413,15 @@
|
|
|
2323
2413
|
.text-black {
|
|
2324
2414
|
color: var(--color-black);
|
|
2325
2415
|
}
|
|
2416
|
+
.text-border {
|
|
2417
|
+
color: var(--color-border);
|
|
2418
|
+
}
|
|
2419
|
+
.text-border\/60 {
|
|
2420
|
+
color: var(--color-border);
|
|
2421
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
2422
|
+
color: color-mix(in oklab, var(--color-border) 60%, transparent);
|
|
2423
|
+
}
|
|
2424
|
+
}
|
|
2326
2425
|
.text-card-foreground {
|
|
2327
2426
|
color: var(--color-card-foreground);
|
|
2328
2427
|
}
|
|
@@ -2441,6 +2540,9 @@
|
|
|
2441
2540
|
.opacity-15 {
|
|
2442
2541
|
opacity: 15%;
|
|
2443
2542
|
}
|
|
2543
|
+
.opacity-30 {
|
|
2544
|
+
opacity: 30%;
|
|
2545
|
+
}
|
|
2444
2546
|
.opacity-50 {
|
|
2445
2547
|
opacity: 50%;
|
|
2446
2548
|
}
|
|
@@ -2547,6 +2649,10 @@
|
|
|
2547
2649
|
outline-style: var(--tw-outline-style);
|
|
2548
2650
|
outline-width: 2px;
|
|
2549
2651
|
}
|
|
2652
|
+
.blur {
|
|
2653
|
+
--tw-blur: blur(8px);
|
|
2654
|
+
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,);
|
|
2655
|
+
}
|
|
2550
2656
|
.drop-shadow-\[0_1px_0_var\(--border\)\] {
|
|
2551
2657
|
--tw-drop-shadow-size: drop-shadow(0 1px 0 var(--tw-drop-shadow-color, var(--border)));
|
|
2552
2658
|
--tw-drop-shadow: var(--tw-drop-shadow-size);
|
|
@@ -2589,6 +2695,11 @@
|
|
|
2589
2695
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2590
2696
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2591
2697
|
}
|
|
2698
|
+
.transition-\[left\,transform\] {
|
|
2699
|
+
transition-property: left,transform;
|
|
2700
|
+
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2701
|
+
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2702
|
+
}
|
|
2592
2703
|
.transition-\[margin\,opacity\] {
|
|
2593
2704
|
transition-property: margin,opacity;
|
|
2594
2705
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -2624,11 +2735,6 @@
|
|
|
2624
2735
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2625
2736
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2626
2737
|
}
|
|
2627
|
-
.transition-\[transform\,scale\,opacity\,filter\] {
|
|
2628
|
-
transition-property: transform,scale,opacity,filter;
|
|
2629
|
-
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
2630
|
-
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
2631
|
-
}
|
|
2632
2738
|
.transition-\[transform\,scale\,opacity\] {
|
|
2633
2739
|
transition-property: transform,scale,opacity;
|
|
2634
2740
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -2831,6 +2937,13 @@
|
|
|
2831
2937
|
opacity: 100%;
|
|
2832
2938
|
}
|
|
2833
2939
|
}
|
|
2940
|
+
.group-hover\:bg-foreground {
|
|
2941
|
+
&:is(:where(.group):hover *) {
|
|
2942
|
+
@media (hover: hover) {
|
|
2943
|
+
background-color: var(--color-foreground);
|
|
2944
|
+
}
|
|
2945
|
+
}
|
|
2946
|
+
}
|
|
2834
2947
|
.group-hover\:opacity-100 {
|
|
2835
2948
|
&:is(:where(.group):hover *) {
|
|
2836
2949
|
@media (hover: hover) {
|
|
@@ -2966,6 +3079,11 @@
|
|
|
2966
3079
|
left: calc(var(--sidebar-width) * -1);
|
|
2967
3080
|
}
|
|
2968
3081
|
}
|
|
3082
|
+
.group-data-\[collapsible\=offcanvas\]\:left-0 {
|
|
3083
|
+
&:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
3084
|
+
left: calc(var(--spacing) * 0);
|
|
3085
|
+
}
|
|
3086
|
+
}
|
|
2969
3087
|
.group-data-\[collapsible\=offcanvas\]\:w-0 {
|
|
2970
3088
|
&:is(:where(.group)[data-collapsible="offcanvas"] *) {
|
|
2971
3089
|
width: calc(var(--spacing) * 0);
|
|
@@ -3035,11 +3153,47 @@
|
|
|
3035
3153
|
display: block;
|
|
3036
3154
|
}
|
|
3037
3155
|
}
|
|
3156
|
+
.group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:rounded-t-lg {
|
|
3157
|
+
&:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="bottom"] *) {
|
|
3158
|
+
border-top-left-radius: var(--radius-lg);
|
|
3159
|
+
border-top-right-radius: var(--radius-lg);
|
|
3160
|
+
}
|
|
3161
|
+
}
|
|
3162
|
+
.group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:border-t {
|
|
3163
|
+
&:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="bottom"] *) {
|
|
3164
|
+
border-top-style: var(--tw-border-style);
|
|
3165
|
+
border-top-width: 1px;
|
|
3166
|
+
}
|
|
3167
|
+
}
|
|
3038
3168
|
.group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:text-center {
|
|
3039
3169
|
&:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="bottom"] *) {
|
|
3040
3170
|
text-align: center;
|
|
3041
3171
|
}
|
|
3042
3172
|
}
|
|
3173
|
+
.group-data-\[vaul-drawer-direction\=left\]\/drawer-content\:border-r {
|
|
3174
|
+
&:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="left"] *) {
|
|
3175
|
+
border-right-style: var(--tw-border-style);
|
|
3176
|
+
border-right-width: 1px;
|
|
3177
|
+
}
|
|
3178
|
+
}
|
|
3179
|
+
.group-data-\[vaul-drawer-direction\=right\]\/drawer-content\:border-l {
|
|
3180
|
+
&:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="right"] *) {
|
|
3181
|
+
border-left-style: var(--tw-border-style);
|
|
3182
|
+
border-left-width: 1px;
|
|
3183
|
+
}
|
|
3184
|
+
}
|
|
3185
|
+
.group-data-\[vaul-drawer-direction\=top\]\/drawer-content\:rounded-b-lg {
|
|
3186
|
+
&:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="top"] *) {
|
|
3187
|
+
border-bottom-right-radius: var(--radius-lg);
|
|
3188
|
+
border-bottom-left-radius: var(--radius-lg);
|
|
3189
|
+
}
|
|
3190
|
+
}
|
|
3191
|
+
.group-data-\[vaul-drawer-direction\=top\]\/drawer-content\:border-b {
|
|
3192
|
+
&:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="top"] *) {
|
|
3193
|
+
border-bottom-style: var(--tw-border-style);
|
|
3194
|
+
border-bottom-width: 1px;
|
|
3195
|
+
}
|
|
3196
|
+
}
|
|
3043
3197
|
.group-data-\[vaul-drawer-direction\=top\]\/drawer-content\:text-center {
|
|
3044
3198
|
&:is(:where(.group\/drawer-content)[data-vaul-drawer-direction="top"] *) {
|
|
3045
3199
|
text-align: center;
|
|
@@ -3297,6 +3451,12 @@
|
|
|
3297
3451
|
right: calc(1 / 2 * 100%);
|
|
3298
3452
|
}
|
|
3299
3453
|
}
|
|
3454
|
+
.after\:-left-4 {
|
|
3455
|
+
&::after {
|
|
3456
|
+
content: var(--tw-content);
|
|
3457
|
+
left: calc(var(--spacing) * -4);
|
|
3458
|
+
}
|
|
3459
|
+
}
|
|
3300
3460
|
.after\:left-1\/2 {
|
|
3301
3461
|
&::after {
|
|
3302
3462
|
content: var(--tw-content);
|
|
@@ -3309,6 +3469,12 @@
|
|
|
3309
3469
|
width: calc(var(--spacing) * 1);
|
|
3310
3470
|
}
|
|
3311
3471
|
}
|
|
3472
|
+
.after\:w-11 {
|
|
3473
|
+
&::after {
|
|
3474
|
+
content: var(--tw-content);
|
|
3475
|
+
width: calc(var(--spacing) * 11);
|
|
3476
|
+
}
|
|
3477
|
+
}
|
|
3312
3478
|
.after\:w-\[2px\] {
|
|
3313
3479
|
&::after {
|
|
3314
3480
|
content: var(--tw-content);
|
|
@@ -3342,12 +3508,6 @@
|
|
|
3342
3508
|
border-radius: calc(infinity * 1px);
|
|
3343
3509
|
}
|
|
3344
3510
|
}
|
|
3345
|
-
.after\:bg-accent {
|
|
3346
|
-
&::after {
|
|
3347
|
-
content: var(--tw-content);
|
|
3348
|
-
background-color: var(--color-accent);
|
|
3349
|
-
}
|
|
3350
|
-
}
|
|
3351
3511
|
.after\:bg-sidebar-border {
|
|
3352
3512
|
&::after {
|
|
3353
3513
|
content: var(--tw-content);
|
|
@@ -3362,6 +3522,12 @@
|
|
|
3362
3522
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
|
3363
3523
|
}
|
|
3364
3524
|
}
|
|
3525
|
+
.after\:content-\[\'\'\] {
|
|
3526
|
+
&::after {
|
|
3527
|
+
--tw-content: '';
|
|
3528
|
+
content: var(--tw-content);
|
|
3529
|
+
}
|
|
3530
|
+
}
|
|
3365
3531
|
.\*\:after\:pointer-events-none {
|
|
3366
3532
|
:is(& > *) {
|
|
3367
3533
|
&::after {
|
|
@@ -4104,6 +4270,11 @@
|
|
|
4104
4270
|
scale: 99.35%;
|
|
4105
4271
|
}
|
|
4106
4272
|
}
|
|
4273
|
+
.active\:cursor-grabbing {
|
|
4274
|
+
&:active {
|
|
4275
|
+
cursor: grabbing;
|
|
4276
|
+
}
|
|
4277
|
+
}
|
|
4107
4278
|
.active\:bg-accent {
|
|
4108
4279
|
&:active {
|
|
4109
4280
|
background-color: var(--color-accent);
|
|
@@ -4190,6 +4361,11 @@
|
|
|
4190
4361
|
background-color: var(--color-sidebar);
|
|
4191
4362
|
}
|
|
4192
4363
|
}
|
|
4364
|
+
.has-\[\>\[data-slot\=button-group\]\]\:gap-2 {
|
|
4365
|
+
&:has(>[data-slot=button-group]) {
|
|
4366
|
+
gap: calc(var(--spacing) * 2);
|
|
4367
|
+
}
|
|
4368
|
+
}
|
|
4193
4369
|
.has-\[\>svg\]\:grid-cols-\[calc\(var\(--spacing\)\*4\)_1fr\] {
|
|
4194
4370
|
&:has(>svg) {
|
|
4195
4371
|
grid-template-columns: calc(var(--spacing) * 4) 1fr;
|
|
@@ -4390,12 +4566,6 @@
|
|
|
4390
4566
|
opacity: 0%;
|
|
4391
4567
|
}
|
|
4392
4568
|
}
|
|
4393
|
-
.data-ending-style\:blur-\[2px\] {
|
|
4394
|
-
&[data-ending-style] {
|
|
4395
|
-
--tw-blur: blur(2px);
|
|
4396
|
-
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,);
|
|
4397
|
-
}
|
|
4398
|
-
}
|
|
4399
4569
|
.data-ending-style\:duration-100 {
|
|
4400
4570
|
&[data-ending-style] {
|
|
4401
4571
|
--tw-duration: 100ms;
|
|
@@ -4449,11 +4619,6 @@
|
|
|
4449
4619
|
color: var(--color-foreground);
|
|
4450
4620
|
}
|
|
4451
4621
|
}
|
|
4452
|
-
.data-inset\:pl-8 {
|
|
4453
|
-
&[data-inset] {
|
|
4454
|
-
padding-left: calc(var(--spacing) * 8);
|
|
4455
|
-
}
|
|
4456
|
-
}
|
|
4457
4622
|
.data-open\:animate-in {
|
|
4458
4623
|
&[data-open] {
|
|
4459
4624
|
animation-name: enter;
|
|
@@ -4584,12 +4749,6 @@
|
|
|
4584
4749
|
opacity: 0%;
|
|
4585
4750
|
}
|
|
4586
4751
|
}
|
|
4587
|
-
.data-starting-style\:blur-\[2px\] {
|
|
4588
|
-
&[data-starting-style] {
|
|
4589
|
-
--tw-blur: blur(2px);
|
|
4590
|
-
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,);
|
|
4591
|
-
}
|
|
4592
|
-
}
|
|
4593
4752
|
.data-unchecked\:hidden {
|
|
4594
4753
|
&[data-unchecked] {
|
|
4595
4754
|
display: none;
|
|
@@ -4647,11 +4806,6 @@
|
|
|
4647
4806
|
opacity: 50%;
|
|
4648
4807
|
}
|
|
4649
4808
|
}
|
|
4650
|
-
.data-\[inset\]\:pl-8 {
|
|
4651
|
-
&[data-inset] {
|
|
4652
|
-
padding-left: calc(var(--spacing) * 8);
|
|
4653
|
-
}
|
|
4654
|
-
}
|
|
4655
4809
|
.data-\[loading\=true\]\:w-8\! {
|
|
4656
4810
|
&[data-loading="true"] {
|
|
4657
4811
|
width: calc(var(--spacing) * 8) !important;
|
|
@@ -4682,6 +4836,11 @@
|
|
|
4682
4836
|
width: 100%;
|
|
4683
4837
|
}
|
|
4684
4838
|
}
|
|
4839
|
+
.data-\[orientation\=vertical\]\:h-auto {
|
|
4840
|
+
&[data-orientation="vertical"] {
|
|
4841
|
+
height: auto;
|
|
4842
|
+
}
|
|
4843
|
+
}
|
|
4685
4844
|
.data-\[orientation\=vertical\]\:h-full {
|
|
4686
4845
|
&[data-orientation="vertical"] {
|
|
4687
4846
|
height: 100%;
|
|
@@ -4999,18 +5158,6 @@
|
|
|
4999
5158
|
max-height: 80vh;
|
|
5000
5159
|
}
|
|
5001
5160
|
}
|
|
5002
|
-
.data-\[vaul-drawer-direction\=bottom\]\:rounded-t-lg {
|
|
5003
|
-
&[data-vaul-drawer-direction="bottom"] {
|
|
5004
|
-
border-top-left-radius: var(--radius-lg);
|
|
5005
|
-
border-top-right-radius: var(--radius-lg);
|
|
5006
|
-
}
|
|
5007
|
-
}
|
|
5008
|
-
.data-\[vaul-drawer-direction\=bottom\]\:border-t {
|
|
5009
|
-
&[data-vaul-drawer-direction="bottom"] {
|
|
5010
|
-
border-top-style: var(--tw-border-style);
|
|
5011
|
-
border-top-width: 1px;
|
|
5012
|
-
}
|
|
5013
|
-
}
|
|
5014
5161
|
.data-\[vaul-drawer-direction\=left\]\:inset-y-0 {
|
|
5015
5162
|
&[data-vaul-drawer-direction="left"] {
|
|
5016
5163
|
inset-block: calc(var(--spacing) * 0);
|
|
@@ -5026,12 +5173,6 @@
|
|
|
5026
5173
|
width: calc(3 / 4 * 100%);
|
|
5027
5174
|
}
|
|
5028
5175
|
}
|
|
5029
|
-
.data-\[vaul-drawer-direction\=left\]\:border-r {
|
|
5030
|
-
&[data-vaul-drawer-direction="left"] {
|
|
5031
|
-
border-right-style: var(--tw-border-style);
|
|
5032
|
-
border-right-width: 1px;
|
|
5033
|
-
}
|
|
5034
|
-
}
|
|
5035
5176
|
.data-\[vaul-drawer-direction\=right\]\:inset-y-0 {
|
|
5036
5177
|
&[data-vaul-drawer-direction="right"] {
|
|
5037
5178
|
inset-block: calc(var(--spacing) * 0);
|
|
@@ -5047,12 +5188,6 @@
|
|
|
5047
5188
|
width: calc(3 / 4 * 100%);
|
|
5048
5189
|
}
|
|
5049
5190
|
}
|
|
5050
|
-
.data-\[vaul-drawer-direction\=right\]\:border-l {
|
|
5051
|
-
&[data-vaul-drawer-direction="right"] {
|
|
5052
|
-
border-left-style: var(--tw-border-style);
|
|
5053
|
-
border-left-width: 1px;
|
|
5054
|
-
}
|
|
5055
|
-
}
|
|
5056
5191
|
.data-\[vaul-drawer-direction\=top\]\:inset-x-0 {
|
|
5057
5192
|
&[data-vaul-drawer-direction="top"] {
|
|
5058
5193
|
inset-inline: calc(var(--spacing) * 0);
|
|
@@ -5073,18 +5208,6 @@
|
|
|
5073
5208
|
max-height: 80vh;
|
|
5074
5209
|
}
|
|
5075
5210
|
}
|
|
5076
|
-
.data-\[vaul-drawer-direction\=top\]\:rounded-b-lg {
|
|
5077
|
-
&[data-vaul-drawer-direction="top"] {
|
|
5078
|
-
border-bottom-right-radius: var(--radius-lg);
|
|
5079
|
-
border-bottom-left-radius: var(--radius-lg);
|
|
5080
|
-
}
|
|
5081
|
-
}
|
|
5082
|
-
.data-\[vaul-drawer-direction\=top\]\:border-b {
|
|
5083
|
-
&[data-vaul-drawer-direction="top"] {
|
|
5084
|
-
border-bottom-style: var(--tw-border-style);
|
|
5085
|
-
border-bottom-width: 1px;
|
|
5086
|
-
}
|
|
5087
|
-
}
|
|
5088
5211
|
.max-lg\:sticky {
|
|
5089
5212
|
@media (width < 64rem) {
|
|
5090
5213
|
position: sticky;
|
|
@@ -5129,9 +5252,14 @@
|
|
|
5129
5252
|
padding-bottom: var(--calculated-spacing);
|
|
5130
5253
|
}
|
|
5131
5254
|
}
|
|
5132
|
-
.max-lg\:\[--
|
|
5255
|
+
.max-lg\:\[--left-sidebar-width\:0px\] {
|
|
5256
|
+
@media (width < 64rem) {
|
|
5257
|
+
--left-sidebar-width: 0px;
|
|
5258
|
+
}
|
|
5259
|
+
}
|
|
5260
|
+
.max-lg\:\[--right-sidebar-width\:0px\] {
|
|
5133
5261
|
@media (width < 64rem) {
|
|
5134
|
-
--
|
|
5262
|
+
--right-sidebar-width: 0px;
|
|
5135
5263
|
}
|
|
5136
5264
|
}
|
|
5137
5265
|
.max-md\:hidden {
|
|
@@ -5351,10 +5479,9 @@
|
|
|
5351
5479
|
line-height: var(--tw-leading, var(--text-base--line-height));
|
|
5352
5480
|
}
|
|
5353
5481
|
}
|
|
5354
|
-
.
|
|
5355
|
-
@media (width >=
|
|
5356
|
-
|
|
5357
|
-
line-height: var(--tw-leading, var(--text-sm--line-height));
|
|
5482
|
+
.lg\:m-2 {
|
|
5483
|
+
@media (width >= 64rem) {
|
|
5484
|
+
margin: calc(var(--spacing) * 2);
|
|
5358
5485
|
}
|
|
5359
5486
|
}
|
|
5360
5487
|
.lg\:-mx-1 {
|
|
@@ -5367,6 +5494,16 @@
|
|
|
5367
5494
|
margin-block: calc(var(--spacing) * 1);
|
|
5368
5495
|
}
|
|
5369
5496
|
}
|
|
5497
|
+
.lg\:mr-0 {
|
|
5498
|
+
@media (width >= 64rem) {
|
|
5499
|
+
margin-right: calc(var(--spacing) * 0);
|
|
5500
|
+
}
|
|
5501
|
+
}
|
|
5502
|
+
.lg\:ml-0 {
|
|
5503
|
+
@media (width >= 64rem) {
|
|
5504
|
+
margin-left: calc(var(--spacing) * 0);
|
|
5505
|
+
}
|
|
5506
|
+
}
|
|
5370
5507
|
.lg\:block {
|
|
5371
5508
|
@media (width >= 64rem) {
|
|
5372
5509
|
display: block;
|
|
@@ -5427,6 +5564,11 @@
|
|
|
5427
5564
|
border-radius: var(--card-radius);
|
|
5428
5565
|
}
|
|
5429
5566
|
}
|
|
5567
|
+
.lg\:rounded-2xl {
|
|
5568
|
+
@media (width >= 64rem) {
|
|
5569
|
+
border-radius: var(--radius-2xl);
|
|
5570
|
+
}
|
|
5571
|
+
}
|
|
5430
5572
|
.lg\:rounded-t-2xl {
|
|
5431
5573
|
@media (width >= 64rem) {
|
|
5432
5574
|
border-top-left-radius: var(--radius-2xl);
|
|
@@ -5490,13 +5632,6 @@
|
|
|
5490
5632
|
}
|
|
5491
5633
|
}
|
|
5492
5634
|
}
|
|
5493
|
-
.lg\:peer-data-\[variant\=inset\]\:mr-0 {
|
|
5494
|
-
@media (width >= 64rem) {
|
|
5495
|
-
&:is(:where(.peer)[data-variant="inset"] ~ *) {
|
|
5496
|
-
margin-right: calc(var(--spacing) * 0);
|
|
5497
|
-
}
|
|
5498
|
-
}
|
|
5499
|
-
}
|
|
5500
5635
|
.lg\:peer-data-\[variant\=inset\]\:ml-0 {
|
|
5501
5636
|
@media (width >= 64rem) {
|
|
5502
5637
|
&:is(:where(.peer)[data-variant="inset"] ~ *) {
|
|
@@ -5644,6 +5779,19 @@
|
|
|
5644
5779
|
}
|
|
5645
5780
|
}
|
|
5646
5781
|
}
|
|
5782
|
+
.dark\:text-border {
|
|
5783
|
+
&:is(.dark *) {
|
|
5784
|
+
color: var(--color-border);
|
|
5785
|
+
}
|
|
5786
|
+
}
|
|
5787
|
+
.dark\:text-border\/50 {
|
|
5788
|
+
&:is(.dark *) {
|
|
5789
|
+
color: var(--color-border);
|
|
5790
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
5791
|
+
color: color-mix(in oklab, var(--color-border) 50%, transparent);
|
|
5792
|
+
}
|
|
5793
|
+
}
|
|
5794
|
+
}
|
|
5647
5795
|
.dark\:text-white {
|
|
5648
5796
|
&:is(.dark *) {
|
|
5649
5797
|
color: var(--color-white);
|
|
@@ -5976,11 +6124,21 @@
|
|
|
5976
6124
|
padding-right: calc(var(--spacing) * 10);
|
|
5977
6125
|
}
|
|
5978
6126
|
}
|
|
6127
|
+
.\[\&\:has\(\[data-align\=\"inline-end\"\]\[data-variant\=\"filled\"\]\)_\[data-slot\=\"input-group-control\"\]\]\:pr-12 {
|
|
6128
|
+
&:has([data-align="inline-end"][data-variant="filled"]) [data-slot="input-group-control"] {
|
|
6129
|
+
padding-right: calc(var(--spacing) * 12);
|
|
6130
|
+
}
|
|
6131
|
+
}
|
|
5979
6132
|
.\[\&\:has\(\[data-align\=\"inline-start\"\]\)_\[data-slot\=\"input-group-control\"\]\]\:pl-10 {
|
|
5980
6133
|
&:has([data-align="inline-start"]) [data-slot="input-group-control"] {
|
|
5981
6134
|
padding-left: calc(var(--spacing) * 10);
|
|
5982
6135
|
}
|
|
5983
6136
|
}
|
|
6137
|
+
.\[\&\:has\(\[data-align\=\"inline-start\"\]\[data-variant\=\"filled\"\]\)_\[data-slot\=\"input-group-control\"\]\]\:pl-12 {
|
|
6138
|
+
&:has([data-align="inline-start"][data-variant="filled"]) [data-slot="input-group-control"] {
|
|
6139
|
+
padding-left: calc(var(--spacing) * 12);
|
|
6140
|
+
}
|
|
6141
|
+
}
|
|
5984
6142
|
.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0 {
|
|
5985
6143
|
&:has([role=checkbox]) {
|
|
5986
6144
|
padding-right: calc(var(--spacing) * 0);
|
|
@@ -6054,10 +6212,10 @@
|
|
|
6054
6212
|
}
|
|
6055
6213
|
}
|
|
6056
6214
|
}
|
|
6057
|
-
.\*\*\:\[\[cmdk-input\]\]\:h-
|
|
6215
|
+
.\*\*\:\[\[cmdk-input\]\]\:h-10 {
|
|
6058
6216
|
:is(& *) {
|
|
6059
6217
|
&:is([cmdk-input]) {
|
|
6060
|
-
height: calc(var(--spacing) *
|
|
6218
|
+
height: calc(var(--spacing) * 10);
|
|
6061
6219
|
}
|
|
6062
6220
|
}
|
|
6063
6221
|
}
|
|
@@ -6136,11 +6294,125 @@
|
|
|
6136
6294
|
}
|
|
6137
6295
|
}
|
|
6138
6296
|
}
|
|
6297
|
+
.\[\&\>\*\]\:focus-visible\:relative {
|
|
6298
|
+
&>* {
|
|
6299
|
+
&:focus-visible {
|
|
6300
|
+
position: relative;
|
|
6301
|
+
}
|
|
6302
|
+
}
|
|
6303
|
+
}
|
|
6304
|
+
.\[\&\>\*\]\:focus-visible\:z-10 {
|
|
6305
|
+
&>* {
|
|
6306
|
+
&:focus-visible {
|
|
6307
|
+
z-index: 10;
|
|
6308
|
+
}
|
|
6309
|
+
}
|
|
6310
|
+
}
|
|
6311
|
+
.\[\&\>\*\:not\(\:nth-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)\]\:rounded-t-none {
|
|
6312
|
+
&>*:not(:nth-child(1 of :not([data-base-ui-focus-guard],span[aria-owns],select[aria-hidden=true]))) {
|
|
6313
|
+
border-top-left-radius: 0;
|
|
6314
|
+
border-top-right-radius: 0;
|
|
6315
|
+
}
|
|
6316
|
+
}
|
|
6317
|
+
.\[\&\>\*\:not\(\:nth-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)\]\:rounded-l-none {
|
|
6318
|
+
&>*:not(:nth-child(1 of :not([data-base-ui-focus-guard],span[aria-owns],select[aria-hidden=true]))) {
|
|
6319
|
+
border-top-left-radius: 0;
|
|
6320
|
+
border-bottom-left-radius: 0;
|
|
6321
|
+
}
|
|
6322
|
+
}
|
|
6323
|
+
.\[\&\>\*\:not\(\:nth-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)\]\:border-t-0 {
|
|
6324
|
+
&>*:not(:nth-child(1 of :not([data-base-ui-focus-guard],span[aria-owns],select[aria-hidden=true]))) {
|
|
6325
|
+
border-top-style: var(--tw-border-style);
|
|
6326
|
+
border-top-width: 0px;
|
|
6327
|
+
}
|
|
6328
|
+
}
|
|
6329
|
+
.\[\&\>\*\:not\(\:nth-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)\]\:border-l-0 {
|
|
6330
|
+
&>*:not(:nth-child(1 of :not([data-base-ui-focus-guard],span[aria-owns],select[aria-hidden=true]))) {
|
|
6331
|
+
border-left-style: var(--tw-border-style);
|
|
6332
|
+
border-left-width: 0px;
|
|
6333
|
+
}
|
|
6334
|
+
}
|
|
6335
|
+
.\[\&\>\*\: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 {
|
|
6336
|
+
&>*:not(:nth-child(1 of :not([data-base-ui-focus-guard],span[aria-owns],select[aria-hidden=true]))) [data-slot=dropdown-menu-trigger] {
|
|
6337
|
+
border-top-left-radius: 0;
|
|
6338
|
+
border-top-right-radius: 0;
|
|
6339
|
+
}
|
|
6340
|
+
}
|
|
6341
|
+
.\[\&\>\*\: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 {
|
|
6342
|
+
&>*:not(:nth-child(1 of :not([data-base-ui-focus-guard],span[aria-owns],select[aria-hidden=true]))) [data-slot=dropdown-menu-trigger] {
|
|
6343
|
+
border-top-left-radius: 0;
|
|
6344
|
+
border-bottom-left-radius: 0;
|
|
6345
|
+
}
|
|
6346
|
+
}
|
|
6347
|
+
.\[\&\>\*\: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 {
|
|
6348
|
+
&>*:not(:nth-child(1 of :not([data-base-ui-focus-guard],span[aria-owns],select[aria-hidden=true]))) [data-slot=input-group-control] {
|
|
6349
|
+
border-top-left-radius: 0;
|
|
6350
|
+
border-top-right-radius: 0;
|
|
6351
|
+
}
|
|
6352
|
+
}
|
|
6353
|
+
.\[\&\>\*\: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 {
|
|
6354
|
+
&>*:not(:nth-child(1 of :not([data-base-ui-focus-guard],span[aria-owns],select[aria-hidden=true]))) [data-slot=input-group-control] {
|
|
6355
|
+
border-top-left-radius: 0;
|
|
6356
|
+
border-bottom-left-radius: 0;
|
|
6357
|
+
}
|
|
6358
|
+
}
|
|
6359
|
+
.\[\&\>\*\:not\(\:nth-last-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)\]\:rounded-r-none {
|
|
6360
|
+
&>*:not(:nth-last-child(1 of :not([data-base-ui-focus-guard],span[aria-owns],select[aria-hidden=true]))) {
|
|
6361
|
+
border-top-right-radius: 0;
|
|
6362
|
+
border-bottom-right-radius: 0;
|
|
6363
|
+
}
|
|
6364
|
+
}
|
|
6365
|
+
.\[\&\>\*\:not\(\:nth-last-child\(1_of_\:not\(\[data-base-ui-focus-guard\]\,span\[aria-owns\]\,select\[aria-hidden\=true\]\)\)\)\]\:rounded-b-none {
|
|
6366
|
+
&>*:not(:nth-last-child(1 of :not([data-base-ui-focus-guard],span[aria-owns],select[aria-hidden=true]))) {
|
|
6367
|
+
border-bottom-right-radius: 0;
|
|
6368
|
+
border-bottom-left-radius: 0;
|
|
6369
|
+
}
|
|
6370
|
+
}
|
|
6371
|
+
.\[\&\>\*\: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 {
|
|
6372
|
+
&>*:not(:nth-last-child(1 of :not([data-base-ui-focus-guard],span[aria-owns],select[aria-hidden=true]))) [data-slot=dropdown-menu-trigger] {
|
|
6373
|
+
border-top-right-radius: 0;
|
|
6374
|
+
border-bottom-right-radius: 0;
|
|
6375
|
+
}
|
|
6376
|
+
}
|
|
6377
|
+
.\[\&\>\*\: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 {
|
|
6378
|
+
&>*:not(:nth-last-child(1 of :not([data-base-ui-focus-guard],span[aria-owns],select[aria-hidden=true]))) [data-slot=dropdown-menu-trigger] {
|
|
6379
|
+
border-bottom-right-radius: 0;
|
|
6380
|
+
border-bottom-left-radius: 0;
|
|
6381
|
+
}
|
|
6382
|
+
}
|
|
6383
|
+
.\[\&\>\*\: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 {
|
|
6384
|
+
&>*:not(:nth-last-child(1 of :not([data-base-ui-focus-guard],span[aria-owns],select[aria-hidden=true]))) [data-slot=input-group-control] {
|
|
6385
|
+
border-top-right-radius: 0;
|
|
6386
|
+
border-bottom-right-radius: 0;
|
|
6387
|
+
}
|
|
6388
|
+
}
|
|
6389
|
+
.\[\&\>\*\: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 {
|
|
6390
|
+
&>*:not(:nth-last-child(1 of :not([data-base-ui-focus-guard],span[aria-owns],select[aria-hidden=true]))) [data-slot=input-group-control] {
|
|
6391
|
+
border-bottom-right-radius: 0;
|
|
6392
|
+
border-bottom-left-radius: 0;
|
|
6393
|
+
}
|
|
6394
|
+
}
|
|
6395
|
+
.\[\&\>\[data-slot\=input-group\]\]\:flex-1 {
|
|
6396
|
+
&>[data-slot=input-group] {
|
|
6397
|
+
flex: 1;
|
|
6398
|
+
}
|
|
6399
|
+
}
|
|
6400
|
+
.\[\&\>\[data-slot\=select-trigger\]\:not\(\[class\*\=\'w-\'\]\)\]\:w-fit {
|
|
6401
|
+
&>[data-slot=select-trigger]:not([class*='w-']) {
|
|
6402
|
+
width: -moz-fit-content;
|
|
6403
|
+
width: fit-content;
|
|
6404
|
+
}
|
|
6405
|
+
}
|
|
6139
6406
|
.\[\&\>button\]\:hidden {
|
|
6140
6407
|
&>button {
|
|
6141
6408
|
display: none;
|
|
6142
6409
|
}
|
|
6143
6410
|
}
|
|
6411
|
+
.\[\&\>input\]\:flex-1 {
|
|
6412
|
+
&>input {
|
|
6413
|
+
flex: 1;
|
|
6414
|
+
}
|
|
6415
|
+
}
|
|
6144
6416
|
.\[\&\>span\:last-child\]\:truncate {
|
|
6145
6417
|
&>span:last-child {
|
|
6146
6418
|
overflow: hidden;
|