@segmentify/ui 0.0.24 → 0.0.25
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/app.d.ts +12 -0
- package/dist/components/atoms/table.d.ts +5 -12
- package/dist/components/molecules/base-button.d.ts +7 -21
- package/dist/components/molecules/combobox-field.d.ts +15 -16
- package/dist/components/molecules/confirmation-dialog.d.ts +1 -1
- package/dist/components/molecules/debounced-input.d.ts +11 -3
- package/dist/components/molecules/select-field.d.ts +5 -4
- package/dist/components/organisms/data-table/actions.d.ts +12 -0
- package/dist/components/organisms/data-table/column-visibility.d.ts +7 -0
- package/dist/components/organisms/data-table/content.d.ts +18 -0
- package/dist/components/organisms/data-table/context.d.ts +10 -0
- package/dist/components/organisms/data-table/index.d.ts +16 -0
- package/dist/components/organisms/data-table/pagination.d.ts +6 -0
- package/dist/components/organisms/data-table/root.d.ts +13 -0
- package/dist/components/organisms/data-table/search.d.ts +7 -0
- package/dist/components/organisms/data-table/toolbar.d.ts +7 -0
- package/dist/components/organisms/form-checkbox.d.ts +5 -3
- package/dist/components/organisms/form-combobox.d.ts +5 -5
- package/dist/components/organisms/form-date-picker.d.ts +5 -3
- package/dist/hooks/use-data-table.d.ts +160 -0
- package/dist/index.d.ts +2 -1
- package/dist/mock/actions.d.ts +6 -0
- package/dist/mock/columns.d.ts +9 -0
- package/dist/segmentify-ui.cjs +85 -82
- package/dist/segmentify-ui.js +18468 -16099
- package/dist/ui.css +168 -39
- package/package.json +1 -1
package/dist/ui.css
CHANGED
|
@@ -20,9 +20,6 @@
|
|
|
20
20
|
--ui-color-gray-400: #9fa6b2;
|
|
21
21
|
--ui-color-gray-500: #6b7280;
|
|
22
22
|
--ui-color-gray-600: #4b5563;
|
|
23
|
-
--ui-color-zinc-700: oklch(37% 0.013 285.805);
|
|
24
|
-
--ui-color-neutral-200: oklch(92.2% 0 0);
|
|
25
|
-
--ui-color-neutral-300: oklch(87% 0 0);
|
|
26
23
|
--ui-color-neutral-500: oklch(55.6% 0 0);
|
|
27
24
|
--ui-color-neutral-700: oklch(37.1% 0 0);
|
|
28
25
|
--ui-color-neutral-800: oklch(26.9% 0 0);
|
|
@@ -35,6 +32,8 @@
|
|
|
35
32
|
--ui-container-lg: 32rem;
|
|
36
33
|
--ui-container-2xl: 42rem;
|
|
37
34
|
--ui-container-3xl: 48rem;
|
|
35
|
+
--ui-container-5xl: 64rem;
|
|
36
|
+
--ui-container-6xl: 72rem;
|
|
38
37
|
--ui-text-xs: 0.75rem;
|
|
39
38
|
--ui-text-xs--line-height: calc(1 / 0.75);
|
|
40
39
|
--ui-text-sm: 0.875rem;
|
|
@@ -51,7 +50,6 @@
|
|
|
51
50
|
--ui-text-4xl--line-height: calc(2.5 / 2.25);
|
|
52
51
|
--ui-text-7xl: 4.5rem;
|
|
53
52
|
--ui-text-7xl--line-height: 1;
|
|
54
|
-
--ui-font-weight-light: 300;
|
|
55
53
|
--ui-font-weight-normal: 400;
|
|
56
54
|
--ui-font-weight-medium: 500;
|
|
57
55
|
--ui-font-weight-semibold: 600;
|
|
@@ -287,6 +285,9 @@
|
|
|
287
285
|
.ui\:relative {
|
|
288
286
|
position: relative;
|
|
289
287
|
}
|
|
288
|
+
.ui\:sticky {
|
|
289
|
+
position: sticky;
|
|
290
|
+
}
|
|
290
291
|
.ui\:inset-0 {
|
|
291
292
|
inset: calc(var(--ui-spacing) * 0);
|
|
292
293
|
}
|
|
@@ -389,6 +390,9 @@
|
|
|
389
390
|
.ui\:-mx-1 {
|
|
390
391
|
margin-inline: calc(var(--ui-spacing) * -1);
|
|
391
392
|
}
|
|
393
|
+
.ui\:-mx-4 {
|
|
394
|
+
margin-inline: calc(var(--ui-spacing) * -4);
|
|
395
|
+
}
|
|
392
396
|
.ui\:mx-2 {
|
|
393
397
|
margin-inline: calc(var(--ui-spacing) * 2);
|
|
394
398
|
}
|
|
@@ -449,12 +453,21 @@
|
|
|
449
453
|
.ui\:mr-2 {
|
|
450
454
|
margin-right: calc(var(--ui-spacing) * 2);
|
|
451
455
|
}
|
|
456
|
+
.ui\:mb-0 {
|
|
457
|
+
margin-bottom: calc(var(--ui-spacing) * 0);
|
|
458
|
+
}
|
|
459
|
+
.ui\:mb-1 {
|
|
460
|
+
margin-bottom: calc(var(--ui-spacing) * 1);
|
|
461
|
+
}
|
|
452
462
|
.ui\:mb-2 {
|
|
453
463
|
margin-bottom: calc(var(--ui-spacing) * 2);
|
|
454
464
|
}
|
|
455
465
|
.ui\:mb-4 {
|
|
456
466
|
margin-bottom: calc(var(--ui-spacing) * 4);
|
|
457
467
|
}
|
|
468
|
+
.ui\:mb-6 {
|
|
469
|
+
margin-bottom: calc(var(--ui-spacing) * 6);
|
|
470
|
+
}
|
|
458
471
|
.ui\:-ml-4 {
|
|
459
472
|
margin-left: calc(var(--ui-spacing) * -4);
|
|
460
473
|
}
|
|
@@ -495,6 +508,10 @@
|
|
|
495
508
|
width: var(--cell-size);
|
|
496
509
|
height: var(--cell-size);
|
|
497
510
|
}
|
|
511
|
+
.ui\:size-1\.5 {
|
|
512
|
+
width: calc(var(--ui-spacing) * 1.5);
|
|
513
|
+
height: calc(var(--ui-spacing) * 1.5);
|
|
514
|
+
}
|
|
498
515
|
.ui\:size-2 {
|
|
499
516
|
width: calc(var(--ui-spacing) * 2);
|
|
500
517
|
height: calc(var(--ui-spacing) * 2);
|
|
@@ -609,8 +626,8 @@
|
|
|
609
626
|
.ui\:max-h-\(--radix-dropdown-menu-content-available-height\) {
|
|
610
627
|
max-height: var(--radix-dropdown-menu-content-available-height);
|
|
611
628
|
}
|
|
612
|
-
.ui\:max-h-
|
|
613
|
-
max-height: calc(var(--ui-spacing) *
|
|
629
|
+
.ui\:max-h-10 {
|
|
630
|
+
max-height: calc(var(--ui-spacing) * 10);
|
|
614
631
|
}
|
|
615
632
|
.ui\:max-h-24 {
|
|
616
633
|
max-height: calc(var(--ui-spacing) * 24);
|
|
@@ -621,6 +638,9 @@
|
|
|
621
638
|
.ui\:max-h-96 {
|
|
622
639
|
max-height: calc(var(--ui-spacing) * 96);
|
|
623
640
|
}
|
|
641
|
+
.ui\:max-h-\[50vh\] {
|
|
642
|
+
max-height: 50vh;
|
|
643
|
+
}
|
|
624
644
|
.ui\:max-h-\[80vh\] {
|
|
625
645
|
max-height: 80vh;
|
|
626
646
|
}
|
|
@@ -684,6 +704,12 @@
|
|
|
684
704
|
.ui\:w-10 {
|
|
685
705
|
width: calc(var(--ui-spacing) * 10);
|
|
686
706
|
}
|
|
707
|
+
.ui\:w-20 {
|
|
708
|
+
width: calc(var(--ui-spacing) * 20);
|
|
709
|
+
}
|
|
710
|
+
.ui\:w-32 {
|
|
711
|
+
width: calc(var(--ui-spacing) * 32);
|
|
712
|
+
}
|
|
687
713
|
.ui\:w-48 {
|
|
688
714
|
width: calc(var(--ui-spacing) * 48);
|
|
689
715
|
}
|
|
@@ -738,12 +764,24 @@
|
|
|
738
764
|
.ui\:max-w-3xl {
|
|
739
765
|
max-width: var(--ui-container-3xl);
|
|
740
766
|
}
|
|
767
|
+
.ui\:max-w-5xl {
|
|
768
|
+
max-width: var(--ui-container-5xl);
|
|
769
|
+
}
|
|
770
|
+
.ui\:max-w-6xl {
|
|
771
|
+
max-width: var(--ui-container-6xl);
|
|
772
|
+
}
|
|
773
|
+
.ui\:max-w-40 {
|
|
774
|
+
max-width: calc(var(--ui-spacing) * 40);
|
|
775
|
+
}
|
|
741
776
|
.ui\:max-w-80 {
|
|
742
777
|
max-width: calc(var(--ui-spacing) * 80);
|
|
743
778
|
}
|
|
744
779
|
.ui\:max-w-96 {
|
|
745
780
|
max-width: calc(var(--ui-spacing) * 96);
|
|
746
781
|
}
|
|
782
|
+
.ui\:max-w-\[200px\] {
|
|
783
|
+
max-width: 200px;
|
|
784
|
+
}
|
|
747
785
|
.ui\:max-w-\[calc\(100\%-2rem\)\] {
|
|
748
786
|
max-width: calc(100% - 2rem);
|
|
749
787
|
}
|
|
@@ -780,9 +818,6 @@
|
|
|
780
818
|
.ui\:min-w-\[8rem\] {
|
|
781
819
|
min-width: 8rem;
|
|
782
820
|
}
|
|
783
|
-
.ui\:min-w-full {
|
|
784
|
-
min-width: 100%;
|
|
785
|
-
}
|
|
786
821
|
.ui\:flex-1 {
|
|
787
822
|
flex: 1;
|
|
788
823
|
}
|
|
@@ -798,6 +833,9 @@
|
|
|
798
833
|
.ui\:basis-full {
|
|
799
834
|
flex-basis: 100%;
|
|
800
835
|
}
|
|
836
|
+
.ui\:caption-bottom {
|
|
837
|
+
caption-side: bottom;
|
|
838
|
+
}
|
|
801
839
|
.ui\:border-collapse {
|
|
802
840
|
border-collapse: collapse;
|
|
803
841
|
}
|
|
@@ -838,7 +876,7 @@
|
|
|
838
876
|
--tw-translate-y: -50%;
|
|
839
877
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
840
878
|
}
|
|
841
|
-
.ui\:translate-y-\[calc\(-50
|
|
879
|
+
.ui\:translate-y-\[calc\(-50\%-2px\)\] {
|
|
842
880
|
--tw-translate-y: calc(-50% - 2px);
|
|
843
881
|
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
844
882
|
}
|
|
@@ -941,6 +979,9 @@
|
|
|
941
979
|
.ui\:justify-center {
|
|
942
980
|
justify-content: center;
|
|
943
981
|
}
|
|
982
|
+
.ui\:justify-end {
|
|
983
|
+
justify-content: flex-end;
|
|
984
|
+
}
|
|
944
985
|
.ui\:justify-start {
|
|
945
986
|
justify-content: flex-start;
|
|
946
987
|
}
|
|
@@ -986,6 +1027,13 @@
|
|
|
986
1027
|
margin-block-end: calc(calc(var(--ui-spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
|
|
987
1028
|
}
|
|
988
1029
|
}
|
|
1030
|
+
.ui\:space-y-2\.5 {
|
|
1031
|
+
:where(& > :not(:last-child)) {
|
|
1032
|
+
--tw-space-y-reverse: 0;
|
|
1033
|
+
margin-block-start: calc(calc(var(--ui-spacing) * 2.5) * var(--tw-space-y-reverse));
|
|
1034
|
+
margin-block-end: calc(calc(var(--ui-spacing) * 2.5) * calc(1 - var(--tw-space-y-reverse)));
|
|
1035
|
+
}
|
|
1036
|
+
}
|
|
989
1037
|
.ui\:space-y-3 {
|
|
990
1038
|
:where(& > :not(:last-child)) {
|
|
991
1039
|
--tw-space-y-reverse: 0;
|
|
@@ -1120,6 +1168,10 @@
|
|
|
1120
1168
|
border-style: var(--tw-border-style);
|
|
1121
1169
|
border-width: 0px;
|
|
1122
1170
|
}
|
|
1171
|
+
.ui\:border-4 {
|
|
1172
|
+
border-style: var(--tw-border-style);
|
|
1173
|
+
border-width: 4px;
|
|
1174
|
+
}
|
|
1123
1175
|
.ui\:border-\[1\.5px\] {
|
|
1124
1176
|
border-style: var(--tw-border-style);
|
|
1125
1177
|
border-width: 1.5px;
|
|
@@ -1184,15 +1236,15 @@
|
|
|
1184
1236
|
.ui\:border-input {
|
|
1185
1237
|
border-color: var(--ui-color-input);
|
|
1186
1238
|
}
|
|
1187
|
-
.ui\:border-neutral-200 {
|
|
1188
|
-
border-color: var(--ui-color-neutral-200);
|
|
1189
|
-
}
|
|
1190
1239
|
.ui\:border-primary {
|
|
1191
1240
|
border-color: var(--ui-color-primary);
|
|
1192
1241
|
}
|
|
1193
1242
|
.ui\:border-primary\! {
|
|
1194
1243
|
border-color: var(--ui-color-primary) !important;
|
|
1195
1244
|
}
|
|
1245
|
+
.ui\:border-segmentify-200 {
|
|
1246
|
+
border-color: var(--ui-color-segmentify-200);
|
|
1247
|
+
}
|
|
1196
1248
|
.ui\:border-sidebar-border {
|
|
1197
1249
|
border-color: var(--ui-sidebar-border);
|
|
1198
1250
|
}
|
|
@@ -1259,6 +1311,12 @@
|
|
|
1259
1311
|
.ui\:bg-muted {
|
|
1260
1312
|
background-color: var(--ui-color-muted);
|
|
1261
1313
|
}
|
|
1314
|
+
.ui\:bg-muted-foreground\/50 {
|
|
1315
|
+
background-color: var(--ui-color-muted-foreground);
|
|
1316
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1317
|
+
background-color: color-mix(in oklab, var(--ui-color-muted-foreground) 50%, transparent);
|
|
1318
|
+
}
|
|
1319
|
+
}
|
|
1262
1320
|
.ui\:bg-muted\/30 {
|
|
1263
1321
|
background-color: var(--ui-color-muted);
|
|
1264
1322
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -1331,9 +1389,6 @@
|
|
|
1331
1389
|
.ui\:bg-yellow-500 {
|
|
1332
1390
|
background-color: var(--ui-color-yellow-500);
|
|
1333
1391
|
}
|
|
1334
|
-
.ui\:bg-zinc-700 {
|
|
1335
|
-
background-color: var(--ui-color-zinc-700);
|
|
1336
|
-
}
|
|
1337
1392
|
.ui\:fill-current {
|
|
1338
1393
|
fill: currentcolor;
|
|
1339
1394
|
}
|
|
@@ -1421,6 +1476,9 @@
|
|
|
1421
1476
|
.ui\:py-6 {
|
|
1422
1477
|
padding-block: calc(var(--ui-spacing) * 6);
|
|
1423
1478
|
}
|
|
1479
|
+
.ui\:py-8 {
|
|
1480
|
+
padding-block: calc(var(--ui-spacing) * 8);
|
|
1481
|
+
}
|
|
1424
1482
|
.ui\:pt-0 {
|
|
1425
1483
|
padding-top: calc(var(--ui-spacing) * 0);
|
|
1426
1484
|
}
|
|
@@ -1466,6 +1524,9 @@
|
|
|
1466
1524
|
.ui\:pl-4 {
|
|
1467
1525
|
padding-left: calc(var(--ui-spacing) * 4);
|
|
1468
1526
|
}
|
|
1527
|
+
.ui\:pl-6 {
|
|
1528
|
+
padding-left: calc(var(--ui-spacing) * 6);
|
|
1529
|
+
}
|
|
1469
1530
|
.ui\:pl-8 {
|
|
1470
1531
|
padding-left: calc(var(--ui-spacing) * 8);
|
|
1471
1532
|
}
|
|
@@ -1478,6 +1539,9 @@
|
|
|
1478
1539
|
.ui\:text-right {
|
|
1479
1540
|
text-align: right;
|
|
1480
1541
|
}
|
|
1542
|
+
.ui\:align-middle {
|
|
1543
|
+
vertical-align: middle;
|
|
1544
|
+
}
|
|
1481
1545
|
.ui\:font-mono {
|
|
1482
1546
|
font-family: var(--ui-font-mono);
|
|
1483
1547
|
}
|
|
@@ -1538,10 +1602,6 @@
|
|
|
1538
1602
|
--tw-font-weight: var(--ui-font-weight-bold);
|
|
1539
1603
|
font-weight: var(--ui-font-weight-bold);
|
|
1540
1604
|
}
|
|
1541
|
-
.ui\:font-light {
|
|
1542
|
-
--tw-font-weight: var(--ui-font-weight-light);
|
|
1543
|
-
font-weight: var(--ui-font-weight-light);
|
|
1544
|
-
}
|
|
1545
1605
|
.ui\:font-medium {
|
|
1546
1606
|
--tw-font-weight: var(--ui-font-weight-medium);
|
|
1547
1607
|
font-weight: var(--ui-font-weight-medium);
|
|
@@ -1578,6 +1638,9 @@
|
|
|
1578
1638
|
.ui\:text-accent-foreground {
|
|
1579
1639
|
color: var(--ui-color-accent-foreground);
|
|
1580
1640
|
}
|
|
1641
|
+
.ui\:text-background {
|
|
1642
|
+
color: var(--ui-color-background);
|
|
1643
|
+
}
|
|
1581
1644
|
.ui\:text-black-250 {
|
|
1582
1645
|
color: var(--ui-color-black-250);
|
|
1583
1646
|
}
|
|
@@ -2156,6 +2219,42 @@
|
|
|
2156
2219
|
color: var(--ui-color-muted-foreground);
|
|
2157
2220
|
}
|
|
2158
2221
|
}
|
|
2222
|
+
.ui\:before\:absolute {
|
|
2223
|
+
&::before {
|
|
2224
|
+
content: var(--tw-content);
|
|
2225
|
+
position: absolute;
|
|
2226
|
+
}
|
|
2227
|
+
}
|
|
2228
|
+
.ui\:before\:top-0 {
|
|
2229
|
+
&::before {
|
|
2230
|
+
content: var(--tw-content);
|
|
2231
|
+
top: calc(var(--ui-spacing) * 0);
|
|
2232
|
+
}
|
|
2233
|
+
}
|
|
2234
|
+
.ui\:before\:left-0 {
|
|
2235
|
+
&::before {
|
|
2236
|
+
content: var(--tw-content);
|
|
2237
|
+
left: calc(var(--ui-spacing) * 0);
|
|
2238
|
+
}
|
|
2239
|
+
}
|
|
2240
|
+
.ui\:before\:h-full {
|
|
2241
|
+
&::before {
|
|
2242
|
+
content: var(--tw-content);
|
|
2243
|
+
height: 100%;
|
|
2244
|
+
}
|
|
2245
|
+
}
|
|
2246
|
+
.ui\:before\:w-px {
|
|
2247
|
+
&::before {
|
|
2248
|
+
content: var(--tw-content);
|
|
2249
|
+
width: 1px;
|
|
2250
|
+
}
|
|
2251
|
+
}
|
|
2252
|
+
.ui\:before\:bg-border {
|
|
2253
|
+
&::before {
|
|
2254
|
+
content: var(--tw-content);
|
|
2255
|
+
background-color: var(--ui-color-border);
|
|
2256
|
+
}
|
|
2257
|
+
}
|
|
2159
2258
|
.ui\:after\:absolute {
|
|
2160
2259
|
&::after {
|
|
2161
2260
|
content: var(--tw-content);
|
|
@@ -2174,18 +2273,48 @@
|
|
|
2174
2273
|
inset-block: calc(var(--ui-spacing) * 0);
|
|
2175
2274
|
}
|
|
2176
2275
|
}
|
|
2276
|
+
.ui\:after\:top-0 {
|
|
2277
|
+
&::after {
|
|
2278
|
+
content: var(--tw-content);
|
|
2279
|
+
top: calc(var(--ui-spacing) * 0);
|
|
2280
|
+
}
|
|
2281
|
+
}
|
|
2282
|
+
.ui\:after\:right-0 {
|
|
2283
|
+
&::after {
|
|
2284
|
+
content: var(--tw-content);
|
|
2285
|
+
right: calc(var(--ui-spacing) * 0);
|
|
2286
|
+
}
|
|
2287
|
+
}
|
|
2177
2288
|
.ui\:after\:left-1\/2 {
|
|
2178
2289
|
&::after {
|
|
2179
2290
|
content: var(--tw-content);
|
|
2180
2291
|
left: calc(1/2 * 100%);
|
|
2181
2292
|
}
|
|
2182
2293
|
}
|
|
2294
|
+
.ui\:after\:h-full {
|
|
2295
|
+
&::after {
|
|
2296
|
+
content: var(--tw-content);
|
|
2297
|
+
height: 100%;
|
|
2298
|
+
}
|
|
2299
|
+
}
|
|
2183
2300
|
.ui\:after\:w-\[2px\] {
|
|
2184
2301
|
&::after {
|
|
2185
2302
|
content: var(--tw-content);
|
|
2186
2303
|
width: 2px;
|
|
2187
2304
|
}
|
|
2188
2305
|
}
|
|
2306
|
+
.ui\:after\:w-px {
|
|
2307
|
+
&::after {
|
|
2308
|
+
content: var(--tw-content);
|
|
2309
|
+
width: 1px;
|
|
2310
|
+
}
|
|
2311
|
+
}
|
|
2312
|
+
.ui\:after\:bg-border {
|
|
2313
|
+
&::after {
|
|
2314
|
+
content: var(--tw-content);
|
|
2315
|
+
background-color: var(--ui-color-border);
|
|
2316
|
+
}
|
|
2317
|
+
}
|
|
2189
2318
|
.ui\:group-data-\[collapsible\=offcanvas\]\:after\:left-full {
|
|
2190
2319
|
&:is(:where(.ui\:group)[data-collapsible="offcanvas"] *) {
|
|
2191
2320
|
&::after {
|
|
@@ -2306,13 +2435,6 @@
|
|
|
2306
2435
|
}
|
|
2307
2436
|
}
|
|
2308
2437
|
}
|
|
2309
|
-
.ui\:hover\:bg-neutral-300 {
|
|
2310
|
-
&:hover {
|
|
2311
|
-
@media (hover: hover) {
|
|
2312
|
-
background-color: var(--ui-color-neutral-300);
|
|
2313
|
-
}
|
|
2314
|
-
}
|
|
2315
|
-
}
|
|
2316
2438
|
.ui\:hover\:bg-neutral-800 {
|
|
2317
2439
|
&:hover {
|
|
2318
2440
|
@media (hover: hover) {
|
|
@@ -2361,13 +2483,6 @@
|
|
|
2361
2483
|
}
|
|
2362
2484
|
}
|
|
2363
2485
|
}
|
|
2364
|
-
.ui\:hover\:bg-zinc-700 {
|
|
2365
|
-
&:hover {
|
|
2366
|
-
@media (hover: hover) {
|
|
2367
|
-
background-color: var(--ui-color-zinc-700);
|
|
2368
|
-
}
|
|
2369
|
-
}
|
|
2370
|
-
}
|
|
2371
2486
|
.ui\:hover\:text-accent-foreground {
|
|
2372
2487
|
&:hover {
|
|
2373
2488
|
@media (hover: hover) {
|
|
@@ -3166,6 +3281,11 @@
|
|
|
3166
3281
|
}
|
|
3167
3282
|
}
|
|
3168
3283
|
}
|
|
3284
|
+
.ui\:data-\[state\=selected\]\:bg-muted {
|
|
3285
|
+
&[data-state="selected"] {
|
|
3286
|
+
background-color: var(--ui-color-muted);
|
|
3287
|
+
}
|
|
3288
|
+
}
|
|
3169
3289
|
.ui\:data-\[state\=unchecked\]\:translate-x-0 {
|
|
3170
3290
|
&[data-state="unchecked"] {
|
|
3171
3291
|
--tw-translate-x: calc(var(--ui-spacing) * 0);
|
|
@@ -3500,11 +3620,6 @@
|
|
|
3500
3620
|
color: var(--ui-color-muted-foreground);
|
|
3501
3621
|
}
|
|
3502
3622
|
}
|
|
3503
|
-
.ui\:dark\:text-white {
|
|
3504
|
-
&:is(.dark *) {
|
|
3505
|
-
color: var(--ui-color-white);
|
|
3506
|
-
}
|
|
3507
|
-
}
|
|
3508
3623
|
.ui\:dark\:hover\:bg-input\/50 {
|
|
3509
3624
|
&:is(.dark *) {
|
|
3510
3625
|
&:hover {
|
|
@@ -3786,6 +3901,12 @@
|
|
|
3786
3901
|
color: var(--ui-color-muted-foreground);
|
|
3787
3902
|
}
|
|
3788
3903
|
}
|
|
3904
|
+
.ui\:\[\&_tr\]\:border-b {
|
|
3905
|
+
& tr {
|
|
3906
|
+
border-bottom-style: var(--tw-border-style);
|
|
3907
|
+
border-bottom-width: 1px;
|
|
3908
|
+
}
|
|
3909
|
+
}
|
|
3789
3910
|
.ui\:\[\&_tr\:last-child\]\:border-0 {
|
|
3790
3911
|
& tr:last-child {
|
|
3791
3912
|
border-style: var(--tw-border-style);
|
|
@@ -3826,6 +3947,14 @@
|
|
|
3826
3947
|
}
|
|
3827
3948
|
}
|
|
3828
3949
|
}
|
|
3950
|
+
.ui\:\*\:\[\[role\=checkbox\]\]\:translate-y-\[2px\] {
|
|
3951
|
+
:is(& > *) {
|
|
3952
|
+
&:is([role=checkbox]) {
|
|
3953
|
+
--tw-translate-y: 2px;
|
|
3954
|
+
translate: var(--tw-translate-x) var(--tw-translate-y);
|
|
3955
|
+
}
|
|
3956
|
+
}
|
|
3957
|
+
}
|
|
3829
3958
|
.ui\:\*\:\[span\]\:last\:flex {
|
|
3830
3959
|
:is(& > *) {
|
|
3831
3960
|
&:is(span) {
|