@sytechui/theme 2.6.3 → 2.6.4
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/{chunk-Z4ZQGUPY.mjs → chunk-T6HDMOJB.mjs} +10 -51
- package/dist/components/accordion.mjs +1 -1
- package/dist/components/avatar.mjs +1 -1
- package/dist/components/badge.mjs +1 -1
- package/dist/components/bottom-bar.mjs +1 -1
- package/dist/components/breadcrumbs.mjs +1 -1
- package/dist/components/button.mjs +1 -1
- package/dist/components/calendar.mjs +1 -1
- package/dist/components/card.mjs +1 -1
- package/dist/components/checkbox.mjs +1 -1
- package/dist/components/chip.mjs +1 -1
- package/dist/components/code.mjs +1 -1
- package/dist/components/drop-zone.mjs +1 -1
- package/dist/components/dropdown.mjs +1 -1
- package/dist/components/index.js +10 -51
- package/dist/components/index.mjs +1 -1
- package/dist/components/input-otp.mjs +1 -1
- package/dist/components/input.mjs +1 -1
- package/dist/components/link.mjs +1 -1
- package/dist/components/listbox.mjs +1 -1
- package/dist/components/menu.mjs +1 -1
- package/dist/components/modal.mjs +1 -1
- package/dist/components/navbar.mjs +1 -1
- package/dist/components/number-input.mjs +1 -1
- package/dist/components/pagination.mjs +1 -1
- package/dist/components/popover.mjs +1 -1
- package/dist/components/radio.mjs +1 -1
- package/dist/components/select.mjs +1 -1
- package/dist/components/slider.mjs +1 -1
- package/dist/components/snippet.mjs +1 -1
- package/dist/components/stepper.mjs +1 -1
- package/dist/components/table.d.mts +18 -18
- package/dist/components/table.d.ts +18 -18
- package/dist/components/table.js +8 -50
- package/dist/components/table.mjs +1 -1
- package/dist/components/tabs.js +2 -1
- package/dist/components/tabs.mjs +1 -1
- package/dist/components/toast.mjs +1 -1
- package/dist/components/toggle.mjs +1 -1
- package/dist/components/user.mjs +1 -1
- package/dist/index.js +10 -51
- package/dist/index.mjs +1 -1
- package/dist/utils/index.mjs +1 -1
- package/dist/utils/merge-classes.mjs +1 -1
- package/package.json +1 -1
|
@@ -6558,22 +6558,22 @@ var table = tv({
|
|
|
6558
6558
|
variants: {
|
|
6559
6559
|
color: {
|
|
6560
6560
|
default: {
|
|
6561
|
-
td: "before:bg-default-300"
|
|
6561
|
+
td: ["before:bg-default-300", "group-aria-[selected=true]/tr:before:!bg-default-300"]
|
|
6562
6562
|
},
|
|
6563
6563
|
primary: {
|
|
6564
|
-
td: "before:bg-primary/20"
|
|
6564
|
+
td: ["before:bg-primary/20", "group-aria-[selected=true]/tr:before:!bg-primary/20"]
|
|
6565
6565
|
},
|
|
6566
6566
|
secondary: {
|
|
6567
|
-
td: "before:bg-secondary/20"
|
|
6567
|
+
td: ["before:bg-secondary/20", "group-aria-[selected=true]/tr:before:!bg-secondary/20"]
|
|
6568
6568
|
},
|
|
6569
6569
|
success: {
|
|
6570
|
-
td: "before:bg-success/20"
|
|
6570
|
+
td: ["before:bg-success/20", "group-aria-[selected=true]/tr:before:!bg-success/20"]
|
|
6571
6571
|
},
|
|
6572
6572
|
warning: {
|
|
6573
|
-
td: "before:bg-warning/20"
|
|
6573
|
+
td: ["before:bg-warning/20", "group-aria-[selected=true]/tr:before:!bg-warning/20"]
|
|
6574
6574
|
},
|
|
6575
6575
|
danger: {
|
|
6576
|
-
td: "before:bg-danger/20"
|
|
6576
|
+
td: ["before:bg-danger/20", "group-aria-[selected=true]/tr:before:!bg-danger/20"]
|
|
6577
6577
|
}
|
|
6578
6578
|
},
|
|
6579
6579
|
layout: {
|
|
@@ -6658,8 +6658,8 @@ var table = tv({
|
|
|
6658
6658
|
true: {
|
|
6659
6659
|
tr: "cursor-default",
|
|
6660
6660
|
td: [
|
|
6661
|
-
"group-aria-[selected=false]/tr:group-data-[hovered]/tr:before
|
|
6662
|
-
"group-aria-[selected=false]/tr:group-data-[hovered]/tr:before
|
|
6661
|
+
"group-aria-[selected=false]/tr:group-data-[hovered]/tr:before:!bg-default-100",
|
|
6662
|
+
"group-aria-[selected=false]/tr:group-data-[hovered]/tr:before:!opacity-70"
|
|
6663
6663
|
]
|
|
6664
6664
|
}
|
|
6665
6665
|
},
|
|
@@ -6776,48 +6776,6 @@ var table = tv({
|
|
|
6776
6776
|
class: {
|
|
6777
6777
|
tfoot: "bg-default-100/80 backdrop-blur-sm"
|
|
6778
6778
|
}
|
|
6779
|
-
},
|
|
6780
|
-
{
|
|
6781
|
-
isStriped: true,
|
|
6782
|
-
color: "default",
|
|
6783
|
-
class: {
|
|
6784
|
-
td: "group-even/tr:data-[selected=true]:before:bg-default/60"
|
|
6785
|
-
}
|
|
6786
|
-
},
|
|
6787
|
-
{
|
|
6788
|
-
isStriped: true,
|
|
6789
|
-
color: "primary",
|
|
6790
|
-
class: {
|
|
6791
|
-
td: "group-even/tr:data-[selected=true]:before:bg-primary/20"
|
|
6792
|
-
}
|
|
6793
|
-
},
|
|
6794
|
-
{
|
|
6795
|
-
isStriped: true,
|
|
6796
|
-
color: "secondary",
|
|
6797
|
-
class: {
|
|
6798
|
-
td: "group-even/tr:data-[selected=true]:before:bg-secondary/20"
|
|
6799
|
-
}
|
|
6800
|
-
},
|
|
6801
|
-
{
|
|
6802
|
-
isStriped: true,
|
|
6803
|
-
color: "success",
|
|
6804
|
-
class: {
|
|
6805
|
-
td: "group-even/tr:data-[selected=true]:before:bg-success/20"
|
|
6806
|
-
}
|
|
6807
|
-
},
|
|
6808
|
-
{
|
|
6809
|
-
isStriped: true,
|
|
6810
|
-
color: "warning",
|
|
6811
|
-
class: {
|
|
6812
|
-
td: "group-even/tr:data-[selected=true]:before:bg-warning/20"
|
|
6813
|
-
}
|
|
6814
|
-
},
|
|
6815
|
-
{
|
|
6816
|
-
isStriped: true,
|
|
6817
|
-
color: "danger",
|
|
6818
|
-
class: {
|
|
6819
|
-
td: "group-even/tr:data-[selected=true]:before:bg-danger/20"
|
|
6820
|
-
}
|
|
6821
6779
|
}
|
|
6822
6780
|
]
|
|
6823
6781
|
});
|
|
@@ -6911,7 +6869,8 @@ var tabs = tv({
|
|
|
6911
6869
|
"absolute",
|
|
6912
6870
|
"z-0",
|
|
6913
6871
|
"bg-white",
|
|
6914
|
-
|
|
6872
|
+
// WebKit can drop nested tab title content when a composited cursor is inside ScrollShadow.
|
|
6873
|
+
"will-change-auto",
|
|
6915
6874
|
"invisible",
|
|
6916
6875
|
"data-[initialized=true]:visible",
|
|
6917
6876
|
"data-[animated=true]:transition-[left,top,width,height]",
|
package/dist/components/card.mjs
CHANGED
package/dist/components/chip.mjs
CHANGED
package/dist/components/code.mjs
CHANGED
package/dist/components/index.js
CHANGED
|
@@ -7718,22 +7718,22 @@ var table = tv({
|
|
|
7718
7718
|
variants: {
|
|
7719
7719
|
color: {
|
|
7720
7720
|
default: {
|
|
7721
|
-
td: "before:bg-default-300"
|
|
7721
|
+
td: ["before:bg-default-300", "group-aria-[selected=true]/tr:before:!bg-default-300"]
|
|
7722
7722
|
},
|
|
7723
7723
|
primary: {
|
|
7724
|
-
td: "before:bg-primary/20"
|
|
7724
|
+
td: ["before:bg-primary/20", "group-aria-[selected=true]/tr:before:!bg-primary/20"]
|
|
7725
7725
|
},
|
|
7726
7726
|
secondary: {
|
|
7727
|
-
td: "before:bg-secondary/20"
|
|
7727
|
+
td: ["before:bg-secondary/20", "group-aria-[selected=true]/tr:before:!bg-secondary/20"]
|
|
7728
7728
|
},
|
|
7729
7729
|
success: {
|
|
7730
|
-
td: "before:bg-success/20"
|
|
7730
|
+
td: ["before:bg-success/20", "group-aria-[selected=true]/tr:before:!bg-success/20"]
|
|
7731
7731
|
},
|
|
7732
7732
|
warning: {
|
|
7733
|
-
td: "before:bg-warning/20"
|
|
7733
|
+
td: ["before:bg-warning/20", "group-aria-[selected=true]/tr:before:!bg-warning/20"]
|
|
7734
7734
|
},
|
|
7735
7735
|
danger: {
|
|
7736
|
-
td: "before:bg-danger/20"
|
|
7736
|
+
td: ["before:bg-danger/20", "group-aria-[selected=true]/tr:before:!bg-danger/20"]
|
|
7737
7737
|
}
|
|
7738
7738
|
},
|
|
7739
7739
|
layout: {
|
|
@@ -7818,8 +7818,8 @@ var table = tv({
|
|
|
7818
7818
|
true: {
|
|
7819
7819
|
tr: "cursor-default",
|
|
7820
7820
|
td: [
|
|
7821
|
-
"group-aria-[selected=false]/tr:group-data-[hovered]/tr:before
|
|
7822
|
-
"group-aria-[selected=false]/tr:group-data-[hovered]/tr:before
|
|
7821
|
+
"group-aria-[selected=false]/tr:group-data-[hovered]/tr:before:!bg-default-100",
|
|
7822
|
+
"group-aria-[selected=false]/tr:group-data-[hovered]/tr:before:!opacity-70"
|
|
7823
7823
|
]
|
|
7824
7824
|
}
|
|
7825
7825
|
},
|
|
@@ -7936,48 +7936,6 @@ var table = tv({
|
|
|
7936
7936
|
class: {
|
|
7937
7937
|
tfoot: "bg-default-100/80 backdrop-blur-sm"
|
|
7938
7938
|
}
|
|
7939
|
-
},
|
|
7940
|
-
{
|
|
7941
|
-
isStriped: true,
|
|
7942
|
-
color: "default",
|
|
7943
|
-
class: {
|
|
7944
|
-
td: "group-even/tr:data-[selected=true]:before:bg-default/60"
|
|
7945
|
-
}
|
|
7946
|
-
},
|
|
7947
|
-
{
|
|
7948
|
-
isStriped: true,
|
|
7949
|
-
color: "primary",
|
|
7950
|
-
class: {
|
|
7951
|
-
td: "group-even/tr:data-[selected=true]:before:bg-primary/20"
|
|
7952
|
-
}
|
|
7953
|
-
},
|
|
7954
|
-
{
|
|
7955
|
-
isStriped: true,
|
|
7956
|
-
color: "secondary",
|
|
7957
|
-
class: {
|
|
7958
|
-
td: "group-even/tr:data-[selected=true]:before:bg-secondary/20"
|
|
7959
|
-
}
|
|
7960
|
-
},
|
|
7961
|
-
{
|
|
7962
|
-
isStriped: true,
|
|
7963
|
-
color: "success",
|
|
7964
|
-
class: {
|
|
7965
|
-
td: "group-even/tr:data-[selected=true]:before:bg-success/20"
|
|
7966
|
-
}
|
|
7967
|
-
},
|
|
7968
|
-
{
|
|
7969
|
-
isStriped: true,
|
|
7970
|
-
color: "warning",
|
|
7971
|
-
class: {
|
|
7972
|
-
td: "group-even/tr:data-[selected=true]:before:bg-warning/20"
|
|
7973
|
-
}
|
|
7974
|
-
},
|
|
7975
|
-
{
|
|
7976
|
-
isStriped: true,
|
|
7977
|
-
color: "danger",
|
|
7978
|
-
class: {
|
|
7979
|
-
td: "group-even/tr:data-[selected=true]:before:bg-danger/20"
|
|
7980
|
-
}
|
|
7981
7939
|
}
|
|
7982
7940
|
]
|
|
7983
7941
|
});
|
|
@@ -8132,7 +8090,8 @@ var tabs = tv({
|
|
|
8132
8090
|
"absolute",
|
|
8133
8091
|
"z-0",
|
|
8134
8092
|
"bg-white",
|
|
8135
|
-
|
|
8093
|
+
// WebKit can drop nested tab title content when a composited cursor is inside ScrollShadow.
|
|
8094
|
+
"will-change-auto",
|
|
8136
8095
|
"invisible",
|
|
8137
8096
|
"data-[initialized=true]:visible",
|
|
8138
8097
|
"data-[animated=true]:transition-[left,top,width,height]",
|
package/dist/components/link.mjs
CHANGED
package/dist/components/menu.mjs
CHANGED
|
@@ -39,22 +39,22 @@ import { VariantProps } from 'tailwind-variants';
|
|
|
39
39
|
declare const table: tailwind_variants.TVReturnType<{
|
|
40
40
|
color: {
|
|
41
41
|
default: {
|
|
42
|
-
td: string;
|
|
42
|
+
td: string[];
|
|
43
43
|
};
|
|
44
44
|
primary: {
|
|
45
|
-
td: string;
|
|
45
|
+
td: string[];
|
|
46
46
|
};
|
|
47
47
|
secondary: {
|
|
48
|
-
td: string;
|
|
48
|
+
td: string[];
|
|
49
49
|
};
|
|
50
50
|
success: {
|
|
51
|
-
td: string;
|
|
51
|
+
td: string[];
|
|
52
52
|
};
|
|
53
53
|
warning: {
|
|
54
|
-
td: string;
|
|
54
|
+
td: string[];
|
|
55
55
|
};
|
|
56
56
|
danger: {
|
|
57
|
-
td: string;
|
|
57
|
+
td: string[];
|
|
58
58
|
};
|
|
59
59
|
};
|
|
60
60
|
layout: {
|
|
@@ -194,22 +194,22 @@ declare const table: tailwind_variants.TVReturnType<{
|
|
|
194
194
|
}, undefined, {
|
|
195
195
|
color: {
|
|
196
196
|
default: {
|
|
197
|
-
td: string;
|
|
197
|
+
td: string[];
|
|
198
198
|
};
|
|
199
199
|
primary: {
|
|
200
|
-
td: string;
|
|
200
|
+
td: string[];
|
|
201
201
|
};
|
|
202
202
|
secondary: {
|
|
203
|
-
td: string;
|
|
203
|
+
td: string[];
|
|
204
204
|
};
|
|
205
205
|
success: {
|
|
206
|
-
td: string;
|
|
206
|
+
td: string[];
|
|
207
207
|
};
|
|
208
208
|
warning: {
|
|
209
|
-
td: string;
|
|
209
|
+
td: string[];
|
|
210
210
|
};
|
|
211
211
|
danger: {
|
|
212
|
-
td: string;
|
|
212
|
+
td: string[];
|
|
213
213
|
};
|
|
214
214
|
};
|
|
215
215
|
layout: {
|
|
@@ -349,22 +349,22 @@ declare const table: tailwind_variants.TVReturnType<{
|
|
|
349
349
|
}, tailwind_variants.TVReturnType<{
|
|
350
350
|
color: {
|
|
351
351
|
default: {
|
|
352
|
-
td: string;
|
|
352
|
+
td: string[];
|
|
353
353
|
};
|
|
354
354
|
primary: {
|
|
355
|
-
td: string;
|
|
355
|
+
td: string[];
|
|
356
356
|
};
|
|
357
357
|
secondary: {
|
|
358
|
-
td: string;
|
|
358
|
+
td: string[];
|
|
359
359
|
};
|
|
360
360
|
success: {
|
|
361
|
-
td: string;
|
|
361
|
+
td: string[];
|
|
362
362
|
};
|
|
363
363
|
warning: {
|
|
364
|
-
td: string;
|
|
364
|
+
td: string[];
|
|
365
365
|
};
|
|
366
366
|
danger: {
|
|
367
|
-
td: string;
|
|
367
|
+
td: string[];
|
|
368
368
|
};
|
|
369
369
|
};
|
|
370
370
|
layout: {
|
|
@@ -39,22 +39,22 @@ import { VariantProps } from 'tailwind-variants';
|
|
|
39
39
|
declare const table: tailwind_variants.TVReturnType<{
|
|
40
40
|
color: {
|
|
41
41
|
default: {
|
|
42
|
-
td: string;
|
|
42
|
+
td: string[];
|
|
43
43
|
};
|
|
44
44
|
primary: {
|
|
45
|
-
td: string;
|
|
45
|
+
td: string[];
|
|
46
46
|
};
|
|
47
47
|
secondary: {
|
|
48
|
-
td: string;
|
|
48
|
+
td: string[];
|
|
49
49
|
};
|
|
50
50
|
success: {
|
|
51
|
-
td: string;
|
|
51
|
+
td: string[];
|
|
52
52
|
};
|
|
53
53
|
warning: {
|
|
54
|
-
td: string;
|
|
54
|
+
td: string[];
|
|
55
55
|
};
|
|
56
56
|
danger: {
|
|
57
|
-
td: string;
|
|
57
|
+
td: string[];
|
|
58
58
|
};
|
|
59
59
|
};
|
|
60
60
|
layout: {
|
|
@@ -194,22 +194,22 @@ declare const table: tailwind_variants.TVReturnType<{
|
|
|
194
194
|
}, undefined, {
|
|
195
195
|
color: {
|
|
196
196
|
default: {
|
|
197
|
-
td: string;
|
|
197
|
+
td: string[];
|
|
198
198
|
};
|
|
199
199
|
primary: {
|
|
200
|
-
td: string;
|
|
200
|
+
td: string[];
|
|
201
201
|
};
|
|
202
202
|
secondary: {
|
|
203
|
-
td: string;
|
|
203
|
+
td: string[];
|
|
204
204
|
};
|
|
205
205
|
success: {
|
|
206
|
-
td: string;
|
|
206
|
+
td: string[];
|
|
207
207
|
};
|
|
208
208
|
warning: {
|
|
209
|
-
td: string;
|
|
209
|
+
td: string[];
|
|
210
210
|
};
|
|
211
211
|
danger: {
|
|
212
|
-
td: string;
|
|
212
|
+
td: string[];
|
|
213
213
|
};
|
|
214
214
|
};
|
|
215
215
|
layout: {
|
|
@@ -349,22 +349,22 @@ declare const table: tailwind_variants.TVReturnType<{
|
|
|
349
349
|
}, tailwind_variants.TVReturnType<{
|
|
350
350
|
color: {
|
|
351
351
|
default: {
|
|
352
|
-
td: string;
|
|
352
|
+
td: string[];
|
|
353
353
|
};
|
|
354
354
|
primary: {
|
|
355
|
-
td: string;
|
|
355
|
+
td: string[];
|
|
356
356
|
};
|
|
357
357
|
secondary: {
|
|
358
|
-
td: string;
|
|
358
|
+
td: string[];
|
|
359
359
|
};
|
|
360
360
|
success: {
|
|
361
|
-
td: string;
|
|
361
|
+
td: string[];
|
|
362
362
|
};
|
|
363
363
|
warning: {
|
|
364
|
-
td: string;
|
|
364
|
+
td: string[];
|
|
365
365
|
};
|
|
366
366
|
danger: {
|
|
367
|
-
td: string;
|
|
367
|
+
td: string[];
|
|
368
368
|
};
|
|
369
369
|
};
|
|
370
370
|
layout: {
|
package/dist/components/table.js
CHANGED
|
@@ -444,22 +444,22 @@ var table = tv({
|
|
|
444
444
|
variants: {
|
|
445
445
|
color: {
|
|
446
446
|
default: {
|
|
447
|
-
td: "before:bg-default-300"
|
|
447
|
+
td: ["before:bg-default-300", "group-aria-[selected=true]/tr:before:!bg-default-300"]
|
|
448
448
|
},
|
|
449
449
|
primary: {
|
|
450
|
-
td: "before:bg-primary/20"
|
|
450
|
+
td: ["before:bg-primary/20", "group-aria-[selected=true]/tr:before:!bg-primary/20"]
|
|
451
451
|
},
|
|
452
452
|
secondary: {
|
|
453
|
-
td: "before:bg-secondary/20"
|
|
453
|
+
td: ["before:bg-secondary/20", "group-aria-[selected=true]/tr:before:!bg-secondary/20"]
|
|
454
454
|
},
|
|
455
455
|
success: {
|
|
456
|
-
td: "before:bg-success/20"
|
|
456
|
+
td: ["before:bg-success/20", "group-aria-[selected=true]/tr:before:!bg-success/20"]
|
|
457
457
|
},
|
|
458
458
|
warning: {
|
|
459
|
-
td: "before:bg-warning/20"
|
|
459
|
+
td: ["before:bg-warning/20", "group-aria-[selected=true]/tr:before:!bg-warning/20"]
|
|
460
460
|
},
|
|
461
461
|
danger: {
|
|
462
|
-
td: "before:bg-danger/20"
|
|
462
|
+
td: ["before:bg-danger/20", "group-aria-[selected=true]/tr:before:!bg-danger/20"]
|
|
463
463
|
}
|
|
464
464
|
},
|
|
465
465
|
layout: {
|
|
@@ -544,8 +544,8 @@ var table = tv({
|
|
|
544
544
|
true: {
|
|
545
545
|
tr: "cursor-default",
|
|
546
546
|
td: [
|
|
547
|
-
"group-aria-[selected=false]/tr:group-data-[hovered]/tr:before
|
|
548
|
-
"group-aria-[selected=false]/tr:group-data-[hovered]/tr:before
|
|
547
|
+
"group-aria-[selected=false]/tr:group-data-[hovered]/tr:before:!bg-default-100",
|
|
548
|
+
"group-aria-[selected=false]/tr:group-data-[hovered]/tr:before:!opacity-70"
|
|
549
549
|
]
|
|
550
550
|
}
|
|
551
551
|
},
|
|
@@ -662,48 +662,6 @@ var table = tv({
|
|
|
662
662
|
class: {
|
|
663
663
|
tfoot: "bg-default-100/80 backdrop-blur-sm"
|
|
664
664
|
}
|
|
665
|
-
},
|
|
666
|
-
{
|
|
667
|
-
isStriped: true,
|
|
668
|
-
color: "default",
|
|
669
|
-
class: {
|
|
670
|
-
td: "group-even/tr:data-[selected=true]:before:bg-default/60"
|
|
671
|
-
}
|
|
672
|
-
},
|
|
673
|
-
{
|
|
674
|
-
isStriped: true,
|
|
675
|
-
color: "primary",
|
|
676
|
-
class: {
|
|
677
|
-
td: "group-even/tr:data-[selected=true]:before:bg-primary/20"
|
|
678
|
-
}
|
|
679
|
-
},
|
|
680
|
-
{
|
|
681
|
-
isStriped: true,
|
|
682
|
-
color: "secondary",
|
|
683
|
-
class: {
|
|
684
|
-
td: "group-even/tr:data-[selected=true]:before:bg-secondary/20"
|
|
685
|
-
}
|
|
686
|
-
},
|
|
687
|
-
{
|
|
688
|
-
isStriped: true,
|
|
689
|
-
color: "success",
|
|
690
|
-
class: {
|
|
691
|
-
td: "group-even/tr:data-[selected=true]:before:bg-success/20"
|
|
692
|
-
}
|
|
693
|
-
},
|
|
694
|
-
{
|
|
695
|
-
isStriped: true,
|
|
696
|
-
color: "warning",
|
|
697
|
-
class: {
|
|
698
|
-
td: "group-even/tr:data-[selected=true]:before:bg-warning/20"
|
|
699
|
-
}
|
|
700
|
-
},
|
|
701
|
-
{
|
|
702
|
-
isStriped: true,
|
|
703
|
-
color: "danger",
|
|
704
|
-
class: {
|
|
705
|
-
td: "group-even/tr:data-[selected=true]:before:bg-danger/20"
|
|
706
|
-
}
|
|
707
665
|
}
|
|
708
666
|
]
|
|
709
667
|
});
|
package/dist/components/tabs.js
CHANGED
|
@@ -465,7 +465,8 @@ var tabs = tv({
|
|
|
465
465
|
"absolute",
|
|
466
466
|
"z-0",
|
|
467
467
|
"bg-white",
|
|
468
|
-
|
|
468
|
+
// WebKit can drop nested tab title content when a composited cursor is inside ScrollShadow.
|
|
469
|
+
"will-change-auto",
|
|
469
470
|
"invisible",
|
|
470
471
|
"data-[initialized=true]:visible",
|
|
471
472
|
"data-[animated=true]:transition-[left,top,width,height]",
|
package/dist/components/tabs.mjs
CHANGED
package/dist/components/user.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -7798,22 +7798,22 @@ var table = tv({
|
|
|
7798
7798
|
variants: {
|
|
7799
7799
|
color: {
|
|
7800
7800
|
default: {
|
|
7801
|
-
td: "before:bg-default-300"
|
|
7801
|
+
td: ["before:bg-default-300", "group-aria-[selected=true]/tr:before:!bg-default-300"]
|
|
7802
7802
|
},
|
|
7803
7803
|
primary: {
|
|
7804
|
-
td: "before:bg-primary/20"
|
|
7804
|
+
td: ["before:bg-primary/20", "group-aria-[selected=true]/tr:before:!bg-primary/20"]
|
|
7805
7805
|
},
|
|
7806
7806
|
secondary: {
|
|
7807
|
-
td: "before:bg-secondary/20"
|
|
7807
|
+
td: ["before:bg-secondary/20", "group-aria-[selected=true]/tr:before:!bg-secondary/20"]
|
|
7808
7808
|
},
|
|
7809
7809
|
success: {
|
|
7810
|
-
td: "before:bg-success/20"
|
|
7810
|
+
td: ["before:bg-success/20", "group-aria-[selected=true]/tr:before:!bg-success/20"]
|
|
7811
7811
|
},
|
|
7812
7812
|
warning: {
|
|
7813
|
-
td: "before:bg-warning/20"
|
|
7813
|
+
td: ["before:bg-warning/20", "group-aria-[selected=true]/tr:before:!bg-warning/20"]
|
|
7814
7814
|
},
|
|
7815
7815
|
danger: {
|
|
7816
|
-
td: "before:bg-danger/20"
|
|
7816
|
+
td: ["before:bg-danger/20", "group-aria-[selected=true]/tr:before:!bg-danger/20"]
|
|
7817
7817
|
}
|
|
7818
7818
|
},
|
|
7819
7819
|
layout: {
|
|
@@ -7898,8 +7898,8 @@ var table = tv({
|
|
|
7898
7898
|
true: {
|
|
7899
7899
|
tr: "cursor-default",
|
|
7900
7900
|
td: [
|
|
7901
|
-
"group-aria-[selected=false]/tr:group-data-[hovered]/tr:before
|
|
7902
|
-
"group-aria-[selected=false]/tr:group-data-[hovered]/tr:before
|
|
7901
|
+
"group-aria-[selected=false]/tr:group-data-[hovered]/tr:before:!bg-default-100",
|
|
7902
|
+
"group-aria-[selected=false]/tr:group-data-[hovered]/tr:before:!opacity-70"
|
|
7903
7903
|
]
|
|
7904
7904
|
}
|
|
7905
7905
|
},
|
|
@@ -8016,48 +8016,6 @@ var table = tv({
|
|
|
8016
8016
|
class: {
|
|
8017
8017
|
tfoot: "bg-default-100/80 backdrop-blur-sm"
|
|
8018
8018
|
}
|
|
8019
|
-
},
|
|
8020
|
-
{
|
|
8021
|
-
isStriped: true,
|
|
8022
|
-
color: "default",
|
|
8023
|
-
class: {
|
|
8024
|
-
td: "group-even/tr:data-[selected=true]:before:bg-default/60"
|
|
8025
|
-
}
|
|
8026
|
-
},
|
|
8027
|
-
{
|
|
8028
|
-
isStriped: true,
|
|
8029
|
-
color: "primary",
|
|
8030
|
-
class: {
|
|
8031
|
-
td: "group-even/tr:data-[selected=true]:before:bg-primary/20"
|
|
8032
|
-
}
|
|
8033
|
-
},
|
|
8034
|
-
{
|
|
8035
|
-
isStriped: true,
|
|
8036
|
-
color: "secondary",
|
|
8037
|
-
class: {
|
|
8038
|
-
td: "group-even/tr:data-[selected=true]:before:bg-secondary/20"
|
|
8039
|
-
}
|
|
8040
|
-
},
|
|
8041
|
-
{
|
|
8042
|
-
isStriped: true,
|
|
8043
|
-
color: "success",
|
|
8044
|
-
class: {
|
|
8045
|
-
td: "group-even/tr:data-[selected=true]:before:bg-success/20"
|
|
8046
|
-
}
|
|
8047
|
-
},
|
|
8048
|
-
{
|
|
8049
|
-
isStriped: true,
|
|
8050
|
-
color: "warning",
|
|
8051
|
-
class: {
|
|
8052
|
-
td: "group-even/tr:data-[selected=true]:before:bg-warning/20"
|
|
8053
|
-
}
|
|
8054
|
-
},
|
|
8055
|
-
{
|
|
8056
|
-
isStriped: true,
|
|
8057
|
-
color: "danger",
|
|
8058
|
-
class: {
|
|
8059
|
-
td: "group-even/tr:data-[selected=true]:before:bg-danger/20"
|
|
8060
|
-
}
|
|
8061
8019
|
}
|
|
8062
8020
|
]
|
|
8063
8021
|
});
|
|
@@ -8212,7 +8170,8 @@ var tabs = tv({
|
|
|
8212
8170
|
"absolute",
|
|
8213
8171
|
"z-0",
|
|
8214
8172
|
"bg-white",
|
|
8215
|
-
|
|
8173
|
+
// WebKit can drop nested tab title content when a composited cursor is inside ScrollShadow.
|
|
8174
|
+
"will-change-auto",
|
|
8216
8175
|
"invisible",
|
|
8217
8176
|
"data-[initialized=true]:visible",
|
|
8218
8177
|
"data-[animated=true]:transition-[left,top,width,height]",
|
package/dist/index.mjs
CHANGED
package/dist/utils/index.mjs
CHANGED