@inf-monkeys-tech/monkeys-design 1.0.40 → 1.0.41
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/README.md +11 -0
- package/dist/components/agent-workbench/index.js +3 -3
- package/dist/components/agent-workbench/index.js.map +1 -1
- package/dist/components/agent-workbench/index.mjs +3 -3
- package/dist/components/agent-workbench/index.mjs.map +1 -1
- package/dist/components/primitives/index.js +8 -8
- package/dist/components/primitives/index.js.map +1 -1
- package/dist/components/primitives/index.mjs +8 -8
- package/dist/components/primitives/index.mjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +4 -2
package/dist/index.mjs
CHANGED
|
@@ -17312,7 +17312,7 @@ var buttonVariants = cva(
|
|
|
17312
17312
|
variant: {
|
|
17313
17313
|
default: "bg-primary text-primary-foreground shadow-sm hover:bg-primary/90",
|
|
17314
17314
|
destructive: "bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",
|
|
17315
|
-
outline: "border border-input bg-
|
|
17315
|
+
outline: "border border-input bg-control-surface shadow-sm ring-offset-control-surface hover:bg-accent hover:text-accent-foreground",
|
|
17316
17316
|
secondary: "bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",
|
|
17317
17317
|
ghost: "hover:bg-accent hover:text-accent-foreground",
|
|
17318
17318
|
link: "text-primary underline-offset-4 hover:underline"
|
|
@@ -17481,7 +17481,7 @@ var TooltipContent = React2.forwardRef(({ className, sideOffset = 4, ...props },
|
|
|
17481
17481
|
) }));
|
|
17482
17482
|
TooltipContent.displayName = "TooltipContent";
|
|
17483
17483
|
var menuItemClassName = "relative flex cursor-default select-none items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0";
|
|
17484
|
-
var menuContentClassName = "z-50 min-w-[8rem] overflow-hidden rounded-md border bg-
|
|
17484
|
+
var menuContentClassName = "z-50 min-w-[8rem] overflow-hidden rounded-md border bg-menu-surface p-1 text-popover-foreground shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2";
|
|
17485
17485
|
var DropdownMenu4 = DropdownMenu2.Root;
|
|
17486
17486
|
var DropdownMenuTrigger = DropdownMenu2.Trigger;
|
|
17487
17487
|
var DropdownMenuSubTrigger = React2.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxs(DropdownMenu2.SubTrigger, { ref, className: cn(menuItemClassName, "data-[state=open]:bg-accent", inset && "pl-8", className), ...props, children: [
|
|
@@ -17524,7 +17524,7 @@ var DropdownMenuSeparator = React2.forwardRef(
|
|
|
17524
17524
|
);
|
|
17525
17525
|
DropdownMenuSeparator.displayName = "DropdownMenuSeparator";
|
|
17526
17526
|
var SelectTrigger = React2.forwardRef(
|
|
17527
|
-
({ className, children, iconClassName, size = "default", ...props }, ref) => /* @__PURE__ */ jsxs(SelectPrimitive.Trigger, { ref, className: cn("flex h-10 w-full items-center justify-between whitespace-nowrap rounded-md border border-input bg-
|
|
17527
|
+
({ className, children, iconClassName, size = "default", ...props }, ref) => /* @__PURE__ */ jsxs(SelectPrimitive.Trigger, { ref, className: cn("flex h-10 w-full items-center justify-between whitespace-nowrap rounded-md border border-input bg-control-surface px-3 py-2 text-left text-sm shadow-sm ring-offset-control-surface data-[placeholder]:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50 [&>span]:line-clamp-1 [&>span]:min-w-0 [&>span]:flex-1 [&>span]:text-left", size === "sm" && "h-8 px-2 py-1 text-xs", className), ...props, children: [
|
|
17528
17528
|
children,
|
|
17529
17529
|
/* @__PURE__ */ jsx(SelectPrimitive.Icon, { asChild: true, children: /* @__PURE__ */ jsx(ChevronDown, { "aria-hidden": "true", className: cn("h-4 w-4 opacity-50", iconClassName) }) })
|
|
17530
17530
|
] })
|