@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.js
CHANGED
|
@@ -17347,7 +17347,7 @@ var buttonVariants = classVarianceAuthority.cva(
|
|
|
17347
17347
|
variant: {
|
|
17348
17348
|
default: "bg-primary text-primary-foreground shadow-sm hover:bg-primary/90",
|
|
17349
17349
|
destructive: "bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",
|
|
17350
|
-
outline: "border border-input bg-
|
|
17350
|
+
outline: "border border-input bg-control-surface shadow-sm ring-offset-control-surface hover:bg-accent hover:text-accent-foreground",
|
|
17351
17351
|
secondary: "bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",
|
|
17352
17352
|
ghost: "hover:bg-accent hover:text-accent-foreground",
|
|
17353
17353
|
link: "text-primary underline-offset-4 hover:underline"
|
|
@@ -17516,7 +17516,7 @@ var TooltipContent = React2__namespace.forwardRef(({ className, sideOffset = 4,
|
|
|
17516
17516
|
) }));
|
|
17517
17517
|
TooltipContent.displayName = "TooltipContent";
|
|
17518
17518
|
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";
|
|
17519
|
-
var menuContentClassName = "z-50 min-w-[8rem] overflow-hidden rounded-md border bg-
|
|
17519
|
+
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";
|
|
17520
17520
|
var DropdownMenu4 = DropdownMenu2__namespace.Root;
|
|
17521
17521
|
var DropdownMenuTrigger = DropdownMenu2__namespace.Trigger;
|
|
17522
17522
|
var DropdownMenuSubTrigger = React2__namespace.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(DropdownMenu2__namespace.SubTrigger, { ref, className: cn(menuItemClassName, "data-[state=open]:bg-accent", inset && "pl-8", className), ...props, children: [
|
|
@@ -17559,7 +17559,7 @@ var DropdownMenuSeparator = React2__namespace.forwardRef(
|
|
|
17559
17559
|
);
|
|
17560
17560
|
DropdownMenuSeparator.displayName = "DropdownMenuSeparator";
|
|
17561
17561
|
var SelectTrigger = React2__namespace.forwardRef(
|
|
17562
|
-
({ className, children, iconClassName, size = "default", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(SelectPrimitive__namespace.Trigger, { ref, className: cn("flex h-10 w-full items-center justify-between whitespace-nowrap rounded-md border border-input bg-
|
|
17562
|
+
({ className, children, iconClassName, size = "default", ...props }, ref) => /* @__PURE__ */ jsxRuntime.jsxs(SelectPrimitive__namespace.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: [
|
|
17563
17563
|
children,
|
|
17564
17564
|
/* @__PURE__ */ jsxRuntime.jsx(SelectPrimitive__namespace.Icon, { asChild: true, children: /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ChevronDown, { "aria-hidden": "true", className: cn("h-4 w-4 opacity-50", iconClassName) }) })
|
|
17565
17565
|
] })
|