@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.mjs
CHANGED
|
@@ -21838,9 +21838,9 @@ function HeadbarNavMenuItem({
|
|
|
21838
21838
|
onMouseEnter: openMenu,
|
|
21839
21839
|
onMouseLeave: scheduleCloseMenu,
|
|
21840
21840
|
className: cn3(
|
|
21841
|
-
"h-9 max-w-[12rem] border-transparent
|
|
21841
|
+
"h-9 max-w-[12rem] border-transparent px-3 text-sm font-medium shadow-none",
|
|
21842
21842
|
menuButtonRadiusClass,
|
|
21843
|
-
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))]"
|
|
21843
|
+
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))]"
|
|
21844
21844
|
)
|
|
21845
21845
|
}
|
|
21846
21846
|
) }),
|
|
@@ -21918,9 +21918,9 @@ function HeadbarNav({
|
|
|
21918
21918
|
label: /* @__PURE__ */ jsx("span", { className: "truncate whitespace-nowrap", children: label }),
|
|
21919
21919
|
onClick: () => onNavigate?.(item.id),
|
|
21920
21920
|
className: cn3(
|
|
21921
|
-
"h-9 max-w-[12rem] border-transparent
|
|
21921
|
+
"h-9 max-w-[12rem] border-transparent px-3 text-sm font-medium shadow-none",
|
|
21922
21922
|
menuButtonRadiusClass,
|
|
21923
|
-
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))]"
|
|
21923
|
+
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))]"
|
|
21924
21924
|
)
|
|
21925
21925
|
},
|
|
21926
21926
|
item.id
|