@inf-monkeys-tech/monkeys-design 0.4.50 → 0.4.51
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/components/layout/index.js +4 -4
- package/dist/components/layout/index.js.map +1 -1
- package/dist/components/layout/index.mjs +4 -4
- package/dist/components/layout/index.mjs.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -21865,9 +21865,9 @@ function HeadbarNavMenuItem({
|
|
|
21865
21865
|
onMouseEnter: openMenu,
|
|
21866
21866
|
onMouseLeave: scheduleCloseMenu,
|
|
21867
21867
|
className: cn3(
|
|
21868
|
-
"h-9 max-w-[12rem] border-transparent
|
|
21868
|
+
"h-9 max-w-[12rem] border-transparent px-3 text-sm font-medium shadow-none",
|
|
21869
21869
|
menuButtonRadiusClass,
|
|
21870
|
-
isActive || open ? "!bg-[hsl(var(--muted))] text-[hsl(var(--foreground))]" : "text-[hsl(var(--muted-foreground))] hover:!bg-[hsl(var(--muted))]/60 hover:text-[hsl(var(--foreground))]"
|
|
21870
|
+
isActive || open ? "!bg-[hsl(var(--muted))] text-[hsl(var(--foreground))]" : "!bg-transparent text-[hsl(var(--muted-foreground))] hover:!bg-[hsl(var(--muted))]/60 hover:text-[hsl(var(--foreground))]"
|
|
21871
21871
|
)
|
|
21872
21872
|
}
|
|
21873
21873
|
) }),
|
|
@@ -21945,9 +21945,9 @@ function HeadbarNav({
|
|
|
21945
21945
|
label: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "truncate whitespace-nowrap", children: label }),
|
|
21946
21946
|
onClick: () => onNavigate?.(item.id),
|
|
21947
21947
|
className: cn3(
|
|
21948
|
-
"h-9 max-w-[12rem] border-transparent
|
|
21948
|
+
"h-9 max-w-[12rem] border-transparent px-3 text-sm font-medium shadow-none",
|
|
21949
21949
|
menuButtonRadiusClass,
|
|
21950
|
-
isActive ? "!bg-[hsl(var(--muted))] text-[hsl(var(--foreground))]" : "text-[hsl(var(--muted-foreground))] hover:!bg-[hsl(var(--muted))]/60 hover:text-[hsl(var(--foreground))]"
|
|
21950
|
+
isActive ? "!bg-[hsl(var(--muted))] text-[hsl(var(--foreground))]" : "!bg-transparent text-[hsl(var(--muted-foreground))] hover:!bg-[hsl(var(--muted))]/60 hover:text-[hsl(var(--foreground))]"
|
|
21951
21951
|
)
|
|
21952
21952
|
},
|
|
21953
21953
|
item.id
|