myoperator-ui 0.0.160 → 0.0.161
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.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2900,7 +2900,7 @@ const TableHeader = React.forwardRef<
|
|
|
2900
2900
|
>(({ className, ...props }, ref) => (
|
|
2901
2901
|
<thead
|
|
2902
2902
|
ref={ref}
|
|
2903
|
-
className={cn("bg-[var(--color-neutral-
|
|
2903
|
+
className={cn("bg-[var(--color-neutral-100)] [&_tr]:border-b", className)}
|
|
2904
2904
|
{...props}
|
|
2905
2905
|
/>
|
|
2906
2906
|
));
|
|
@@ -2925,7 +2925,7 @@ const TableFooter = React.forwardRef<
|
|
|
2925
2925
|
<tfoot
|
|
2926
2926
|
ref={ref}
|
|
2927
2927
|
className={cn(
|
|
2928
|
-
"border-t bg-[var(--color-neutral-
|
|
2928
|
+
"border-t bg-[var(--color-neutral-100)] font-medium [&>tr]:last:border-b-0",
|
|
2929
2929
|
className
|
|
2930
2930
|
)}
|
|
2931
2931
|
{...props}
|
|
@@ -2973,7 +2973,7 @@ const TableHead = React.forwardRef<HTMLTableCellElement, TableHeadProps>(
|
|
|
2973
2973
|
ref={ref}
|
|
2974
2974
|
className={cn(
|
|
2975
2975
|
"h-12 px-4 text-left align-middle font-medium text-semantic-text-muted text-sm [&:has([role=checkbox])]:pr-0",
|
|
2976
|
-
sticky && "sticky left-0 bg-[var(--color-neutral-
|
|
2976
|
+
sticky && "sticky left-0 bg-[var(--color-neutral-100)] z-10",
|
|
2977
2977
|
sortDirection && "cursor-pointer select-none",
|
|
2978
2978
|
className
|
|
2979
2979
|
)}
|