myoperator-mcp 0.2.73 → 0.2.74
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
|
@@ -3701,7 +3701,7 @@ const TableHeader = React.forwardRef<
|
|
|
3701
3701
|
>(({ className, ...props }, ref) => (
|
|
3702
3702
|
<thead
|
|
3703
3703
|
ref={ref}
|
|
3704
|
-
className={cn("bg-[var(--color-neutral-
|
|
3704
|
+
className={cn("bg-[var(--color-neutral-100)] [&_tr]:border-b", className)}
|
|
3705
3705
|
{...props}
|
|
3706
3706
|
/>
|
|
3707
3707
|
));
|
|
@@ -3726,7 +3726,7 @@ const TableFooter = React.forwardRef<
|
|
|
3726
3726
|
<tfoot
|
|
3727
3727
|
ref={ref}
|
|
3728
3728
|
className={cn(
|
|
3729
|
-
"border-t bg-[var(--color-neutral-
|
|
3729
|
+
"border-t bg-[var(--color-neutral-100)] font-medium [&>tr]:last:border-b-0",
|
|
3730
3730
|
className
|
|
3731
3731
|
)}
|
|
3732
3732
|
{...props}
|
|
@@ -3774,7 +3774,7 @@ const TableHead = React.forwardRef<HTMLTableCellElement, TableHeadProps>(
|
|
|
3774
3774
|
ref={ref}
|
|
3775
3775
|
className={cn(
|
|
3776
3776
|
"h-12 px-4 text-left align-middle font-medium text-semantic-text-muted text-sm [&:has([role=checkbox])]:pr-0",
|
|
3777
|
-
sticky && "sticky left-0 bg-[var(--color-neutral-
|
|
3777
|
+
sticky && "sticky left-0 bg-[var(--color-neutral-100)] z-10",
|
|
3778
3778
|
sortDirection && "cursor-pointer select-none",
|
|
3779
3779
|
className
|
|
3780
3780
|
)}
|
package/package.json
CHANGED