@inf-monkeys-tech/monkeys-design 0.4.48 → 0.4.49

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/index.mjs CHANGED
@@ -22005,7 +22005,10 @@ function NavigationLayout({
22005
22005
  const sidebar = isHeadbarMode ? null : /* @__PURE__ */ jsx(
22006
22006
  "div",
22007
22007
  {
22008
- className: "relative h-full min-h-0 shrink-0 overflow-hidden transition-[width] duration-260",
22008
+ className: cn3(
22009
+ "relative h-full min-h-0 shrink-0 transition-[width] duration-260",
22010
+ sidebarCollapsed ? "z-20 overflow-visible" : "z-10 overflow-hidden"
22011
+ ),
22009
22012
  style: { width: sidebarWidth, transitionTimingFunction: NAVIGATION_LAYOUT_TRANSITION_TIMING },
22010
22013
  children: /* @__PURE__ */ jsx(
22011
22014
  Sidebar,