@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
|
@@ -4009,9 +4009,9 @@ function HeadbarNavMenuItem({
|
|
|
4009
4009
|
onMouseEnter: openMenu,
|
|
4010
4010
|
onMouseLeave: scheduleCloseMenu,
|
|
4011
4011
|
className: cn2(
|
|
4012
|
-
"h-9 max-w-[12rem] border-transparent
|
|
4012
|
+
"h-9 max-w-[12rem] border-transparent px-3 text-sm font-medium shadow-none",
|
|
4013
4013
|
menuButtonRadiusClass,
|
|
4014
|
-
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))]"
|
|
4014
|
+
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))]"
|
|
4015
4015
|
)
|
|
4016
4016
|
}
|
|
4017
4017
|
) }),
|
|
@@ -4089,9 +4089,9 @@ function HeadbarNav({
|
|
|
4089
4089
|
label: /* @__PURE__ */ jsxRuntime.jsx("span", { className: "truncate whitespace-nowrap", children: label }),
|
|
4090
4090
|
onClick: () => onNavigate?.(item.id),
|
|
4091
4091
|
className: cn2(
|
|
4092
|
-
"h-9 max-w-[12rem] border-transparent
|
|
4092
|
+
"h-9 max-w-[12rem] border-transparent px-3 text-sm font-medium shadow-none",
|
|
4093
4093
|
menuButtonRadiusClass,
|
|
4094
|
-
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))]"
|
|
4094
|
+
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))]"
|
|
4095
4095
|
)
|
|
4096
4096
|
},
|
|
4097
4097
|
item.id
|