@moontra/moonui-pro 2.5.1 → 2.5.2
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
|
@@ -56609,7 +56609,7 @@ function Sidebar({
|
|
|
56609
56609
|
] })
|
|
56610
56610
|
] });
|
|
56611
56611
|
const sidebarClasses = cn(
|
|
56612
|
-
"flex h-screen flex-col bg-background border-r sticky top-0",
|
|
56612
|
+
"flex h-full max-h-screen flex-col bg-background border-r sticky top-0",
|
|
56613
56613
|
glassmorphism && "bg-background/80 backdrop-blur-xl border-white/10",
|
|
56614
56614
|
collapsed && !isMobile && "w-16",
|
|
56615
56615
|
!collapsed && !isMobile && "w-64",
|
|
@@ -56642,7 +56642,7 @@ function Sidebar({
|
|
|
56642
56642
|
] }) }) })
|
|
56643
56643
|
] });
|
|
56644
56644
|
}
|
|
56645
|
-
return /* @__PURE__ */ jsxs("aside", { className: cn(sidebarClasses, "sidebar-container hidden md:flex"), children: [
|
|
56645
|
+
return /* @__PURE__ */ jsxs("aside", { className: cn(sidebarClasses, "sidebar-container hidden md:flex min-h-0"), children: [
|
|
56646
56646
|
animatedBackground && /* @__PURE__ */ jsx(
|
|
56647
56647
|
motion.div,
|
|
56648
56648
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moontra/moonui-pro",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.2",
|
|
4
4
|
"description": "Premium React components for MoonUI - Advanced UI library with 50+ pro components including performance, interactive, and gesture components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.mjs",
|
|
@@ -520,7 +520,7 @@ export function Sidebar({
|
|
|
520
520
|
)
|
|
521
521
|
|
|
522
522
|
const sidebarClasses = cn(
|
|
523
|
-
"flex h-screen flex-col bg-background border-r sticky top-0",
|
|
523
|
+
"flex h-full max-h-screen flex-col bg-background border-r sticky top-0",
|
|
524
524
|
glassmorphism && "bg-background/80 backdrop-blur-xl border-white/10",
|
|
525
525
|
collapsed && !isMobile && "w-16",
|
|
526
526
|
!collapsed && !isMobile && "w-64",
|
|
@@ -562,7 +562,7 @@ export function Sidebar({
|
|
|
562
562
|
}
|
|
563
563
|
|
|
564
564
|
return (
|
|
565
|
-
<aside className={cn(sidebarClasses, "sidebar-container hidden md:flex")}>
|
|
565
|
+
<aside className={cn(sidebarClasses, "sidebar-container hidden md:flex min-h-0")}>
|
|
566
566
|
{animatedBackground && (
|
|
567
567
|
<motion.div
|
|
568
568
|
className="absolute inset-0 opacity-30"
|