najm-kit 0.0.11 → 0.0.12
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.ts +11 -11
- package/dist/index.mjs +17 -16
- package/dist/styles.css +37 -28
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -872,7 +872,7 @@ interface StatusPillProps extends React$1.HTMLAttributes<HTMLSpanElement> {
|
|
|
872
872
|
}
|
|
873
873
|
declare const StatusPill: React$1.ForwardRefExoticComponent<StatusPillProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
874
874
|
|
|
875
|
-
declare function Toaster({ ...props }: ToasterProps): react_jsx_runtime.JSX.Element;
|
|
875
|
+
declare function Toaster({ toastOptions, ...props }: ToasterProps): react_jsx_runtime.JSX.Element;
|
|
876
876
|
|
|
877
877
|
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
|
|
878
878
|
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime.JSX.Element;
|
|
@@ -2314,28 +2314,28 @@ declare const HEADER_COLORS: {
|
|
|
2314
2314
|
readonly row: "hover:bg-primary/5";
|
|
2315
2315
|
};
|
|
2316
2316
|
readonly violet: {
|
|
2317
|
-
readonly bg: "bg-violet-600/
|
|
2318
|
-
readonly text: "[&_th]:text-violet-
|
|
2317
|
+
readonly bg: "bg-violet-600/30";
|
|
2318
|
+
readonly text: "[&_th]:text-violet-800 dark:[&_th]:text-violet-200";
|
|
2319
2319
|
readonly row: "hover:bg-violet-500/5";
|
|
2320
2320
|
};
|
|
2321
2321
|
readonly blue: {
|
|
2322
|
-
readonly bg: "bg-blue-600/
|
|
2323
|
-
readonly text: "[&_th]:text-blue-
|
|
2322
|
+
readonly bg: "bg-blue-600/30";
|
|
2323
|
+
readonly text: "[&_th]:text-blue-800 dark:[&_th]:text-blue-200";
|
|
2324
2324
|
readonly row: "hover:bg-blue-500/5";
|
|
2325
2325
|
};
|
|
2326
2326
|
readonly emerald: {
|
|
2327
|
-
readonly bg: "bg-emerald-600/
|
|
2328
|
-
readonly text: "[&_th]:text-emerald-
|
|
2327
|
+
readonly bg: "bg-emerald-600/30";
|
|
2328
|
+
readonly text: "[&_th]:text-emerald-800 dark:[&_th]:text-emerald-200";
|
|
2329
2329
|
readonly row: "hover:bg-emerald-500/5";
|
|
2330
2330
|
};
|
|
2331
2331
|
readonly amber: {
|
|
2332
|
-
readonly bg: "bg-amber-500/
|
|
2333
|
-
readonly text: "[&_th]:text-amber-
|
|
2332
|
+
readonly bg: "bg-amber-500/30";
|
|
2333
|
+
readonly text: "[&_th]:text-amber-800 dark:[&_th]:text-amber-200";
|
|
2334
2334
|
readonly row: "hover:bg-amber-500/5";
|
|
2335
2335
|
};
|
|
2336
2336
|
readonly rose: {
|
|
2337
|
-
readonly bg: "bg-rose-600/
|
|
2338
|
-
readonly text: "[&_th]:text-rose-
|
|
2337
|
+
readonly bg: "bg-rose-600/30";
|
|
2338
|
+
readonly text: "[&_th]:text-rose-800 dark:[&_th]:text-rose-200";
|
|
2339
2339
|
readonly row: "hover:bg-rose-500/5";
|
|
2340
2340
|
};
|
|
2341
2341
|
readonly slate: {
|
package/dist/index.mjs
CHANGED
|
@@ -2176,7 +2176,7 @@ function DropdownMenuSubTrigger({ className, inset, children, ...props }) {
|
|
|
2176
2176
|
{
|
|
2177
2177
|
"data-slot": "dropdown-menu-sub-trigger",
|
|
2178
2178
|
"data-inset": inset,
|
|
2179
|
-
className: cn("focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground flex cursor-
|
|
2179
|
+
className: cn("focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground flex cursor-pointer items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 [&>svg]:opacity-50 data-[inset]:pl-8", className),
|
|
2180
2180
|
...props,
|
|
2181
2181
|
children: [
|
|
2182
2182
|
children,
|
|
@@ -2225,7 +2225,7 @@ function DropdownMenuItem({ className, inset, variant = "default", ...props }) {
|
|
|
2225
2225
|
"data-inset": inset,
|
|
2226
2226
|
"data-variant": variant,
|
|
2227
2227
|
className: cn(
|
|
2228
|
-
"focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/20 data-[variant=destructive]:focus:text-destructive relative flex cursor-
|
|
2228
|
+
"focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/20 data-[variant=destructive]:focus:text-destructive relative flex cursor-pointer items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none transition-colors data-[disabled]:pointer-events-none data-[disabled]:cursor-not-allowed data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 data-[inset]:pl-8",
|
|
2229
2229
|
className
|
|
2230
2230
|
),
|
|
2231
2231
|
...props
|
|
@@ -2237,7 +2237,7 @@ function DropdownMenuCheckboxItem({ className, children, checked, ...props }) {
|
|
|
2237
2237
|
DropdownMenuPrimitive.CheckboxItem,
|
|
2238
2238
|
{
|
|
2239
2239
|
"data-slot": "dropdown-menu-checkbox-item",
|
|
2240
|
-
className: cn("focus:bg-accent focus:text-accent-foreground relative flex cursor-
|
|
2240
|
+
className: cn("focus:bg-accent focus:text-accent-foreground relative flex cursor-pointer items-center gap-2 rounded-sm py-1.5 pr-2 pl-8 text-sm outline-none transition-colors data-[disabled]:pointer-events-none data-[disabled]:cursor-not-allowed data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4", className),
|
|
2241
2241
|
checked,
|
|
2242
2242
|
...props,
|
|
2243
2243
|
children: [
|
|
@@ -2252,7 +2252,7 @@ function DropdownMenuRadioItem({ className, children, ...props }) {
|
|
|
2252
2252
|
DropdownMenuPrimitive.RadioItem,
|
|
2253
2253
|
{
|
|
2254
2254
|
"data-slot": "dropdown-menu-radio-item",
|
|
2255
|
-
className: cn("focus:bg-accent focus:text-accent-foreground relative flex cursor-
|
|
2255
|
+
className: cn("focus:bg-accent focus:text-accent-foreground relative flex cursor-pointer items-center gap-2 rounded-sm py-1.5 pr-2 pl-8 text-sm outline-none transition-colors data-[disabled]:pointer-events-none data-[disabled]:cursor-not-allowed data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4", className),
|
|
2256
2256
|
...props,
|
|
2257
2257
|
children: [
|
|
2258
2258
|
/* @__PURE__ */ jsx("span", { className: "pointer-events-none absolute left-2 flex size-3.5 items-center justify-center", children: /* @__PURE__ */ jsx(DropdownMenuPrimitive.ItemIndicator, { children: /* @__PURE__ */ jsx(CircleIcon, { className: "size-2 fill-current" }) }) }),
|
|
@@ -2360,7 +2360,7 @@ function SelectItem({ className, children, ...props }) {
|
|
|
2360
2360
|
SelectPrimitive.Item,
|
|
2361
2361
|
{
|
|
2362
2362
|
"data-slot": "select-item",
|
|
2363
|
-
className: cn("focus:bg-accent focus:text-accent-foreground [&_svg:not([class*='text-'])]:text-muted-foreground relative flex w-full cursor-
|
|
2363
|
+
className: cn("focus:bg-accent focus:text-accent-foreground [&_svg:not([class*='text-'])]:text-muted-foreground relative flex w-full cursor-pointer items-center gap-2 rounded-sm py-1.5 pr-8 pl-2 text-sm outline-none select-none data-[disabled]:pointer-events-none data-[disabled]:cursor-not-allowed data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 *:[span]:last:flex *:[span]:last:items-center *:[span]:last:gap-2", className),
|
|
2364
2364
|
...props,
|
|
2365
2365
|
children: [
|
|
2366
2366
|
/* @__PURE__ */ jsx("span", { className: "absolute right-2 flex size-3.5 items-center justify-center", children: /* @__PURE__ */ jsx(SelectPrimitive.ItemIndicator, { children: /* @__PURE__ */ jsx(CheckIcon, { className: "size-4" }) }) }),
|
|
@@ -3301,7 +3301,7 @@ function CommandItem({ className, ...props }) {
|
|
|
3301
3301
|
Command$1.Item,
|
|
3302
3302
|
{
|
|
3303
3303
|
"data-slot": "command-item",
|
|
3304
|
-
className: cn("data-[selected=true]:bg-accent data-[selected=true]:text-accent-foreground [&_svg:not([class*='text-'])]:text-muted-foreground relative flex cursor-
|
|
3304
|
+
className: cn("data-[selected=true]:bg-accent data-[selected=true]:text-accent-foreground [&_svg:not([class*='text-'])]:text-muted-foreground relative flex cursor-pointer items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none data-[disabled=true]:pointer-events-none data-[disabled=true]:cursor-not-allowed data-[disabled=true]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4", className),
|
|
3305
3305
|
...props
|
|
3306
3306
|
}
|
|
3307
3307
|
);
|
|
@@ -3499,13 +3499,13 @@ var StatusPill = React.forwardRef(
|
|
|
3499
3499
|
}
|
|
3500
3500
|
);
|
|
3501
3501
|
StatusPill.displayName = "StatusPill";
|
|
3502
|
-
function Toaster({ ...props }) {
|
|
3502
|
+
function Toaster({ toastOptions, ...props }) {
|
|
3503
3503
|
return /* @__PURE__ */ jsx(
|
|
3504
3504
|
Toaster$1,
|
|
3505
3505
|
{
|
|
3506
3506
|
className: "toaster group",
|
|
3507
|
-
richColors: false,
|
|
3508
3507
|
toastOptions: {
|
|
3508
|
+
...toastOptions,
|
|
3509
3509
|
classNames: {
|
|
3510
3510
|
toast: "group toast group-[.toaster]:bg-background group-[.toaster]:text-foreground group-[.toaster]:border-border group-[.toaster]:shadow-lg",
|
|
3511
3511
|
description: "group-[.toast]:text-muted-foreground",
|
|
@@ -3514,7 +3514,8 @@ function Toaster({ ...props }) {
|
|
|
3514
3514
|
success: "!border-emerald-500/40 !bg-emerald-600 !text-white [&_[data-description]]:!text-white/80",
|
|
3515
3515
|
error: "!border-red-500/40 !bg-red-600 !text-white [&_[data-description]]:!text-white/80",
|
|
3516
3516
|
warning: "!border-amber-500/40 !bg-amber-500 !text-white [&_[data-description]]:!text-white/80",
|
|
3517
|
-
info: "!border-cyan-500/40 !bg-cyan-600 !text-white [&_[data-description]]:!text-white/80"
|
|
3517
|
+
info: "!border-cyan-500/40 !bg-cyan-600 !text-white [&_[data-description]]:!text-white/80",
|
|
3518
|
+
...toastOptions?.classNames
|
|
3518
3519
|
}
|
|
3519
3520
|
},
|
|
3520
3521
|
...props
|
|
@@ -3572,7 +3573,7 @@ function TableRow({ className, ...props }) {
|
|
|
3572
3573
|
return /* @__PURE__ */ jsx("tr", { "data-slot": "table-row", className: cn("border-b border-border/30 transition-colors hover:bg-muted/30 data-[state=selected]:bg-muted", className), ...props });
|
|
3573
3574
|
}
|
|
3574
3575
|
function TableHead({ className, ...props }) {
|
|
3575
|
-
return /* @__PURE__ */ jsx("th", { "data-slot": "table-head", className: cn("text-
|
|
3576
|
+
return /* @__PURE__ */ jsx("th", { "data-slot": "table-head", className: cn("text-foreground h-9 px-3 text-left align-middle text-xs font-medium uppercase tracking-wide whitespace-nowrap [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]", className), ...props });
|
|
3576
3577
|
}
|
|
3577
3578
|
function TableCell({ className, ...props }) {
|
|
3578
3579
|
return /* @__PURE__ */ jsx("td", { "data-slot": "table-cell", className: cn("p-2 align-middle whitespace-nowrap [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]", className), ...props });
|
|
@@ -7678,11 +7679,11 @@ function useTableKeyboard(options = {}) {
|
|
|
7678
7679
|
// src/components/table/tableColors.ts
|
|
7679
7680
|
var HEADER_COLORS = {
|
|
7680
7681
|
primary: { bg: "bg-primary/15", text: "[&_th]:text-primary", row: "hover:bg-primary/5" },
|
|
7681
|
-
violet: { bg: "bg-violet-600/
|
|
7682
|
-
blue: { bg: "bg-blue-600/
|
|
7683
|
-
emerald: { bg: "bg-emerald-600/
|
|
7684
|
-
amber: { bg: "bg-amber-500/
|
|
7685
|
-
rose: { bg: "bg-rose-600/
|
|
7682
|
+
violet: { bg: "bg-violet-600/30", text: "[&_th]:text-violet-800 dark:[&_th]:text-violet-200", row: "hover:bg-violet-500/5" },
|
|
7683
|
+
blue: { bg: "bg-blue-600/30", text: "[&_th]:text-blue-800 dark:[&_th]:text-blue-200", row: "hover:bg-blue-500/5" },
|
|
7684
|
+
emerald: { bg: "bg-emerald-600/30", text: "[&_th]:text-emerald-800 dark:[&_th]:text-emerald-200", row: "hover:bg-emerald-500/5" },
|
|
7685
|
+
amber: { bg: "bg-amber-500/30", text: "[&_th]:text-amber-800 dark:[&_th]:text-amber-200", row: "hover:bg-amber-500/5" },
|
|
7686
|
+
rose: { bg: "bg-rose-600/30", text: "[&_th]:text-rose-800 dark:[&_th]:text-rose-200", row: "hover:bg-rose-500/5" },
|
|
7686
7687
|
slate: { bg: "bg-slate-700/60", text: "[&_th]:text-slate-100 dark:[&_th]:text-slate-300", row: "hover:bg-slate-500/5" }
|
|
7687
7688
|
};
|
|
7688
7689
|
var HEADER_HEX = {
|
|
@@ -7795,7 +7796,7 @@ function NTableContent({ effectiveMode }) {
|
|
|
7795
7796
|
const dir = column.getIsSorted();
|
|
7796
7797
|
if (dir === "asc") return /* @__PURE__ */ jsx(ArrowUp, { className: "h-4 w-4" });
|
|
7797
7798
|
if (dir === "desc") return /* @__PURE__ */ jsx(ArrowDown, { className: "h-4 w-4" });
|
|
7798
|
-
return /* @__PURE__ */ jsx(ArrowUpDown, { className: "h-4 w-4
|
|
7799
|
+
return /* @__PURE__ */ jsx(ArrowUpDown, { className: "h-4 w-4" });
|
|
7799
7800
|
};
|
|
7800
7801
|
return /* @__PURE__ */ jsx(
|
|
7801
7802
|
NajmScroll,
|
package/dist/styles.css
CHANGED
|
@@ -2555,6 +2555,9 @@ video {
|
|
|
2555
2555
|
.bg-amber-500\/20 {
|
|
2556
2556
|
background-color: rgb(245 158 11 / 0.2);
|
|
2557
2557
|
}
|
|
2558
|
+
.bg-amber-500\/30 {
|
|
2559
|
+
background-color: rgb(245 158 11 / 0.3);
|
|
2560
|
+
}
|
|
2558
2561
|
.bg-background {
|
|
2559
2562
|
background-color: hsl(var(--najm-background));
|
|
2560
2563
|
}
|
|
@@ -2573,8 +2576,8 @@ video {
|
|
|
2573
2576
|
.bg-black\/50 {
|
|
2574
2577
|
background-color: rgb(0 0 0 / 0.5);
|
|
2575
2578
|
}
|
|
2576
|
-
.bg-blue-600\/
|
|
2577
|
-
background-color: rgb(37 99 235 / 0.
|
|
2579
|
+
.bg-blue-600\/30 {
|
|
2580
|
+
background-color: rgb(37 99 235 / 0.3);
|
|
2578
2581
|
}
|
|
2579
2582
|
.bg-border {
|
|
2580
2583
|
background-color: hsl(var(--najm-border));
|
|
@@ -2608,8 +2611,8 @@ video {
|
|
|
2608
2611
|
--tw-bg-opacity: 1;
|
|
2609
2612
|
background-color: rgb(5 150 105 / var(--tw-bg-opacity, 1));
|
|
2610
2613
|
}
|
|
2611
|
-
.bg-emerald-600\/
|
|
2612
|
-
background-color: rgb(5 150 105 / 0.
|
|
2614
|
+
.bg-emerald-600\/30 {
|
|
2615
|
+
background-color: rgb(5 150 105 / 0.3);
|
|
2613
2616
|
}
|
|
2614
2617
|
.bg-foreground {
|
|
2615
2618
|
background-color: hsl(var(--najm-foreground));
|
|
@@ -2688,8 +2691,8 @@ video {
|
|
|
2688
2691
|
--tw-bg-opacity: 1;
|
|
2689
2692
|
background-color: rgb(244 63 94 / var(--tw-bg-opacity, 1));
|
|
2690
2693
|
}
|
|
2691
|
-
.bg-rose-600\/
|
|
2692
|
-
background-color: rgb(225 29 72 / 0.
|
|
2694
|
+
.bg-rose-600\/30 {
|
|
2695
|
+
background-color: rgb(225 29 72 / 0.3);
|
|
2693
2696
|
}
|
|
2694
2697
|
.bg-secondary {
|
|
2695
2698
|
background-color: hsl(var(--najm-secondary));
|
|
@@ -2734,8 +2737,8 @@ video {
|
|
|
2734
2737
|
.bg-transparent {
|
|
2735
2738
|
background-color: transparent;
|
|
2736
2739
|
}
|
|
2737
|
-
.bg-violet-600\/
|
|
2738
|
-
background-color: rgb(124 58 237 / 0.
|
|
2740
|
+
.bg-violet-600\/30 {
|
|
2741
|
+
background-color: rgb(124 58 237 / 0.3);
|
|
2739
2742
|
}
|
|
2740
2743
|
.bg-white\/5 {
|
|
2741
2744
|
background-color: rgb(255 255 255 / 0.05);
|
|
@@ -3979,6 +3982,12 @@ video {
|
|
|
3979
3982
|
--tw-translate-x: -2px;
|
|
3980
3983
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
3981
3984
|
}
|
|
3985
|
+
.data-\[disabled\=true\]\:cursor-not-allowed[data-disabled="true"] {
|
|
3986
|
+
cursor: not-allowed;
|
|
3987
|
+
}
|
|
3988
|
+
.data-\[disabled\]\:cursor-not-allowed[data-disabled] {
|
|
3989
|
+
cursor: not-allowed;
|
|
3990
|
+
}
|
|
3982
3991
|
.data-\[state\=active\]\:border-border[data-state="active"] {
|
|
3983
3992
|
border-color: hsl(var(--najm-border));
|
|
3984
3993
|
}
|
|
@@ -4980,56 +4989,56 @@ video {
|
|
|
4980
4989
|
.\[\&_svg\]\:shrink-0 svg {
|
|
4981
4990
|
flex-shrink: 0;
|
|
4982
4991
|
}
|
|
4983
|
-
.\[\&_th\]\:text-amber-
|
|
4992
|
+
.\[\&_th\]\:text-amber-800 th {
|
|
4984
4993
|
--tw-text-opacity: 1;
|
|
4985
|
-
color: rgb(
|
|
4994
|
+
color: rgb(146 64 14 / var(--tw-text-opacity, 1));
|
|
4986
4995
|
}
|
|
4987
|
-
.\[\&_th\]\:text-blue-
|
|
4996
|
+
.\[\&_th\]\:text-blue-800 th {
|
|
4988
4997
|
--tw-text-opacity: 1;
|
|
4989
|
-
color: rgb(
|
|
4998
|
+
color: rgb(30 64 175 / var(--tw-text-opacity, 1));
|
|
4990
4999
|
}
|
|
4991
|
-
.\[\&_th\]\:text-emerald-
|
|
5000
|
+
.\[\&_th\]\:text-emerald-800 th {
|
|
4992
5001
|
--tw-text-opacity: 1;
|
|
4993
|
-
color: rgb(
|
|
5002
|
+
color: rgb(6 95 70 / var(--tw-text-opacity, 1));
|
|
4994
5003
|
}
|
|
4995
5004
|
.\[\&_th\]\:text-primary th {
|
|
4996
5005
|
color: hsl(var(--najm-primary));
|
|
4997
5006
|
}
|
|
4998
|
-
.\[\&_th\]\:text-rose-
|
|
5007
|
+
.\[\&_th\]\:text-rose-800 th {
|
|
4999
5008
|
--tw-text-opacity: 1;
|
|
5000
|
-
color: rgb(
|
|
5009
|
+
color: rgb(159 18 57 / var(--tw-text-opacity, 1));
|
|
5001
5010
|
}
|
|
5002
5011
|
.\[\&_th\]\:text-slate-100 th {
|
|
5003
5012
|
--tw-text-opacity: 1;
|
|
5004
5013
|
color: rgb(241 245 249 / var(--tw-text-opacity, 1));
|
|
5005
5014
|
}
|
|
5006
|
-
.\[\&_th\]\:text-violet-
|
|
5015
|
+
.\[\&_th\]\:text-violet-800 th {
|
|
5007
5016
|
--tw-text-opacity: 1;
|
|
5008
|
-
color: rgb(
|
|
5017
|
+
color: rgb(91 33 182 / var(--tw-text-opacity, 1));
|
|
5009
5018
|
}
|
|
5010
|
-
.dark\:\[\&_th\]\:text-amber-
|
|
5019
|
+
.dark\:\[\&_th\]\:text-amber-200 th:is(.dark *) {
|
|
5011
5020
|
--tw-text-opacity: 1;
|
|
5012
|
-
color: rgb(
|
|
5021
|
+
color: rgb(253 230 138 / var(--tw-text-opacity, 1));
|
|
5013
5022
|
}
|
|
5014
|
-
.dark\:\[\&_th\]\:text-blue-
|
|
5023
|
+
.dark\:\[\&_th\]\:text-blue-200 th:is(.dark *) {
|
|
5015
5024
|
--tw-text-opacity: 1;
|
|
5016
|
-
color: rgb(
|
|
5025
|
+
color: rgb(191 219 254 / var(--tw-text-opacity, 1));
|
|
5017
5026
|
}
|
|
5018
|
-
.dark\:\[\&_th\]\:text-emerald-
|
|
5027
|
+
.dark\:\[\&_th\]\:text-emerald-200 th:is(.dark *) {
|
|
5019
5028
|
--tw-text-opacity: 1;
|
|
5020
|
-
color: rgb(
|
|
5029
|
+
color: rgb(167 243 208 / var(--tw-text-opacity, 1));
|
|
5021
5030
|
}
|
|
5022
|
-
.dark\:\[\&_th\]\:text-rose-
|
|
5031
|
+
.dark\:\[\&_th\]\:text-rose-200 th:is(.dark *) {
|
|
5023
5032
|
--tw-text-opacity: 1;
|
|
5024
|
-
color: rgb(
|
|
5033
|
+
color: rgb(254 205 211 / var(--tw-text-opacity, 1));
|
|
5025
5034
|
}
|
|
5026
5035
|
.dark\:\[\&_th\]\:text-slate-300 th:is(.dark *) {
|
|
5027
5036
|
--tw-text-opacity: 1;
|
|
5028
5037
|
color: rgb(203 213 225 / var(--tw-text-opacity, 1));
|
|
5029
5038
|
}
|
|
5030
|
-
.dark\:\[\&_th\]\:text-violet-
|
|
5039
|
+
.dark\:\[\&_th\]\:text-violet-200 th:is(.dark *) {
|
|
5031
5040
|
--tw-text-opacity: 1;
|
|
5032
|
-
color: rgb(
|
|
5041
|
+
color: rgb(221 214 254 / var(--tw-text-opacity, 1));
|
|
5033
5042
|
}
|
|
5034
5043
|
.\[\&_tr\:last-child\]\:border-0 tr:last-child {
|
|
5035
5044
|
border-width: 0px;
|