@moontra/moonui-pro 3.3.27 → 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
@@ -79703,10 +79703,17 @@ function NavbarInternal({
79703
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 left-2 right-2",
79707
- // İçeriden positioning (mx-2 yerine)
79708
- "overflow-hidden",
79706
+ "bottom-1 overflow-hidden",
79709
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",
79710
79717
  // Border-radius uyumu
79711
79718
  rounded && "rounded-b-lg",
79712
79719
  variant === "floating-centered" && "rounded-b-2xl",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moontra/moonui-pro",
3
- "version": "3.3.27",
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",