@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/components/layout/index.js +4 -1
- package/dist/components/layout/index.js.map +1 -1
- package/dist/components/layout/index.mjs +4 -1
- package/dist/components/layout/index.mjs.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -22032,7 +22032,10 @@ function NavigationLayout({
|
|
|
22032
22032
|
const sidebar = isHeadbarMode ? null : /* @__PURE__ */ jsxRuntime.jsx(
|
|
22033
22033
|
"div",
|
|
22034
22034
|
{
|
|
22035
|
-
className:
|
|
22035
|
+
className: cn3(
|
|
22036
|
+
"relative h-full min-h-0 shrink-0 transition-[width] duration-260",
|
|
22037
|
+
sidebarCollapsed ? "z-20 overflow-visible" : "z-10 overflow-hidden"
|
|
22038
|
+
),
|
|
22036
22039
|
style: { width: sidebarWidth, transitionTimingFunction: NAVIGATION_LAYOUT_TRANSITION_TIMING },
|
|
22037
22040
|
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
22038
22041
|
Sidebar,
|