@moontra/moonui-pro 3.3.23 → 3.3.25

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
@@ -79191,7 +79191,9 @@ function NavbarInternal({
79191
79191
  }
79192
79192
  };
79193
79193
  const navClasses = cn(
79194
- "moonui-pro w-full transition-all duration-300 ease-in-out",
79194
+ "moonui-pro transition-all duration-300 ease-in-out",
79195
+ // w-full sadece floating-centered overlay olmadığında
79196
+ !(variant === "floating-centered" && overlayMode) && "w-full",
79195
79197
  // Base variant styles
79196
79198
  variant === "default" && "border-b bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60",
79197
79199
  variant === "floating" && "mx-4 mt-4 rounded-lg border bg-background/95 backdrop-blur shadow-lg",
@@ -79240,7 +79242,8 @@ function NavbarInternal({
79240
79242
  className: cn(
79241
79243
  "flex items-center transition-[height] duration-300 ease-in-out",
79242
79244
  getHeight(),
79243
- 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"
79245
+ // floating-centered için özel logic - outer nav zaten max-width kontrol ediyor
79246
+ variant === "floating-centered" ? "w-full px-6" : 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"
79244
79247
  ),
79245
79248
  children: [
79246
79249
  branding && /* @__PURE__ */ jsxs(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moontra/moonui-pro",
3
- "version": "3.3.23",
3
+ "version": "3.3.25",
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",