@moontra/moonui-pro 3.3.26 → 3.3.28

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
@@ -79700,28 +79700,31 @@ function NavbarInternal({
79700
79700
  "div",
79701
79701
  {
79702
79702
  className: cn(
79703
- "absolute left-0 w-full h-0.5 bg-muted transition-all",
79703
+ "absolute h-0.5 bg-muted transition-all",
79704
79704
  // progressBarInset kontrolü - border-radius içinde mi dışında mı
79705
79705
  progressBarInset ? cn(
79706
- "bottom-1 mx-2",
79707
- // İçeriden margin
79706
+ "bottom-1 overflow-hidden",
79707
+ // İçerideki progress bar taşmasın
79708
+ // Variant'a göre positioning - navbar padding ile uyumlu
79709
+ variant === "floating-centered" && "left-6 right-6",
79710
+ // px-6 ile uyumlu
79711
+ variant === "floating" && "left-4 right-4",
79712
+ // mx-4 margin ile uyumlu
79713
+ (!variant || variant === "default") && "left-2 right-2",
79714
+ // minimal padding
79715
+ variant === "minimal" && "left-2 right-2",
79716
+ variant === "transparent" && "left-2 right-2",
79708
79717
  // Border-radius uyumu
79709
79718
  rounded && "rounded-b-lg",
79710
79719
  variant === "floating-centered" && "rounded-b-2xl",
79711
79720
  variant === "floating" && "rounded-b-lg"
79712
- ) : "bottom-0"
79721
+ ) : "bottom-0 left-0 right-0"
79713
79722
  // Dışarıdan (backward compat)
79714
79723
  ),
79715
79724
  children: /* @__PURE__ */ jsx(
79716
79725
  "div",
79717
79726
  {
79718
- className: cn(
79719
- "h-full bg-primary transition-all duration-150",
79720
- // Progress bar'ın sağ köşesi border-radius ile uyumlu
79721
- progressBarInset && rounded && "rounded-br-lg",
79722
- progressBarInset && variant === "floating-centered" && "rounded-br-2xl",
79723
- progressBarInset && variant === "floating" && "rounded-br-lg"
79724
- ),
79727
+ className: "h-full bg-primary transition-all duration-150",
79725
79728
  style: { width: `${scrollProgress}%` }
79726
79729
  }
79727
79730
  )
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moontra/moonui-pro",
3
- "version": "3.3.26",
3
+ "version": "3.3.28",
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",