@moontra/moonui-pro 3.3.24 → 3.3.26

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
@@ -79215,11 +79215,11 @@ function NavbarInternal({
79215
79215
  ),
79216
79216
  variant === "minimal" && "bg-background",
79217
79217
  variant === "transparent" && "bg-transparent",
79218
- // Positioning - sticky ve overlay bağımsız çalışır
79219
- sticky && "sticky z-50",
79220
- !sticky && overlayMode && "absolute",
79221
- sticky && !overlayMode && "top-0",
79222
- // normal sticky için top-0 (floating-centered zaten top-4 ekler)
79218
+ // Positioning - overlayMode absolute'a öncelik verir
79219
+ overlayMode && "absolute z-50",
79220
+ // overlayMode varsa HER ZAMAN absolute
79221
+ !overlayMode && sticky && "sticky top-0 z-50",
79222
+ // overlay yoksa ve sticky varsa sticky
79223
79223
  // Scroll states
79224
79224
  scrolled && sticky && variant !== "transparent" && "shadow-sm",
79225
79225
  scrolled && variant === "transparent" && "bg-background/95 backdrop-blur border-b",
@@ -79242,7 +79242,8 @@ function NavbarInternal({
79242
79242
  className: cn(
79243
79243
  "flex items-center transition-[height] duration-300 ease-in-out",
79244
79244
  getHeight(),
79245
- 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"
79246
79247
  ),
79247
79248
  children: [
79248
79249
  branding && /* @__PURE__ */ jsxs(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moontra/moonui-pro",
3
- "version": "3.3.24",
3
+ "version": "3.3.26",
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",