@moontra/moonui-pro 2.27.9 → 2.28.0
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.d.ts +1 -0
- package/dist/index.global.js +60 -60
- package/dist/index.global.js.map +1 -1
- package/dist/index.mjs +2 -6
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -75778,6 +75778,7 @@ function NavbarInternal({
|
|
|
75778
75778
|
hideOnScroll = false,
|
|
75779
75779
|
showScrollProgress = false,
|
|
75780
75780
|
maxWidth = "2xl",
|
|
75781
|
+
fullWidth = false,
|
|
75781
75782
|
enableNProgress = true,
|
|
75782
75783
|
className,
|
|
75783
75784
|
activePath,
|
|
@@ -76058,12 +76059,7 @@ function NavbarInternal({
|
|
|
76058
76059
|
className: cn(
|
|
76059
76060
|
"flex items-center",
|
|
76060
76061
|
getHeight(),
|
|
76061
|
-
maxWidth === "sm" && "container max-w-screen-sm"
|
|
76062
|
-
maxWidth === "md" && "container max-w-screen-md",
|
|
76063
|
-
maxWidth === "lg" && "container max-w-screen-lg",
|
|
76064
|
-
maxWidth === "xl" && "container max-w-screen-xl",
|
|
76065
|
-
maxWidth === "2xl" && "container max-w-screen-2xl",
|
|
76066
|
-
maxWidth === "full" && "w-full px-4 sm:px-6 lg:px-8"
|
|
76062
|
+
fullWidth ? "w-full px-4 sm:px-6 lg:px-8" : maxWidth === "sm" && "container max-w-screen-sm" || maxWidth === "md" && "container max-w-screen-md" || maxWidth === "lg" && "container max-w-screen-lg" || maxWidth === "xl" && "container max-w-screen-xl" || maxWidth === "2xl" && "container max-w-screen-2xl" || maxWidth === "full" && "w-full px-4 sm:px-6 lg:px-8"
|
|
76067
76063
|
),
|
|
76068
76064
|
children: [
|
|
76069
76065
|
branding && /* @__PURE__ */ jsxs(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moontra/moonui-pro",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.28.0",
|
|
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",
|
|
@@ -81,8 +81,8 @@
|
|
|
81
81
|
"react-dom": ">=18.0.0 || ^19.0.0"
|
|
82
82
|
},
|
|
83
83
|
"dependencies": {
|
|
84
|
-
"@moontra/moonui": "^2.3.
|
|
85
|
-
"@moontra/moonui-pro": "^2.27.
|
|
84
|
+
"@moontra/moonui": "^2.3.8",
|
|
85
|
+
"@moontra/moonui-pro": "^2.27.9",
|
|
86
86
|
"@radix-ui/react-accordion": "^1.2.11",
|
|
87
87
|
"@radix-ui/react-avatar": "^1.1.10",
|
|
88
88
|
"@radix-ui/react-checkbox": "^1.3.2",
|