myoperator-mcp 0.2.189 → 0.2.191
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
|
@@ -817,7 +817,7 @@ import { Loader2 } from "lucide-react";
|
|
|
817
817
|
import { cn } from "@/lib/utils";
|
|
818
818
|
|
|
819
819
|
const buttonVariants = cva(
|
|
820
|
-
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded text-sm font-
|
|
820
|
+
"inline-flex items-center justify-center gap-2 whitespace-nowrap rounded text-sm font-semibold leading-none transition-all duration-200 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-semantic-primary focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0",
|
|
821
821
|
{
|
|
822
822
|
variants: {
|
|
823
823
|
variant: {
|
|
@@ -830,7 +830,7 @@ const buttonVariants = cva(
|
|
|
830
830
|
success:
|
|
831
831
|
"bg-semantic-success-primary text-semantic-text-inverted hover:bg-semantic-success-hover",
|
|
832
832
|
outline:
|
|
833
|
-
"border border-solid border-
|
|
833
|
+
"border border-solid border-semantic-border-layout bg-semantic-bg-primary text-semantic-text-secondary hover:bg-semantic-primary-surface",
|
|
834
834
|
secondary:
|
|
835
835
|
"bg-semantic-primary-surface text-semantic-text-secondary hover:bg-semantic-bg-hover",
|
|
836
836
|
ghost:
|
|
@@ -841,7 +841,7 @@ const buttonVariants = cva(
|
|
|
841
841
|
},
|
|
842
842
|
size: {
|
|
843
843
|
default: "min-w-20 py-2.5 px-4 [&_svg]:size-4",
|
|
844
|
-
sm: "min-w-16 py-2 px-
|
|
844
|
+
sm: "min-w-16 py-2.5 px-4 text-xs [&_svg]:size-[18px]",
|
|
845
845
|
lg: "min-w-24 py-3 px-6 [&_svg]:size-5",
|
|
846
846
|
icon: "h-8 w-8 rounded-md",
|
|
847
847
|
"icon-sm": "h-7 w-7 rounded-md",
|
package/package.json
CHANGED