myoperator-mcp 0.2.72 → 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 +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -696,7 +696,7 @@ const buttonVariants = cva(
|
|
|
696
696
|
destructive:
|
|
697
697
|
"bg-semantic-error-primary text-semantic-text-inverted hover:bg-semantic-error-hover",
|
|
698
698
|
outline:
|
|
699
|
-
"border border-semantic-border-
|
|
699
|
+
"border border-semantic-border-layout bg-semantic-bg-primary text-semantic-text-secondary hover:bg-semantic-primary-surface",
|
|
700
700
|
secondary:
|
|
701
701
|
"bg-semantic-primary-surface text-semantic-text-secondary hover:bg-semantic-bg-hover",
|
|
702
702
|
ghost:
|
|
@@ -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