@moontra/moonui-pro 3.4.28 → 3.4.30

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
@@ -79613,6 +79613,7 @@ function NavbarInternal({
79613
79613
  duration: 0.2,
79614
79614
  ease: "easeInOut"
79615
79615
  },
79616
+ suppressHydrationWarning: true,
79616
79617
  children: getActiveLogo()
79617
79618
  },
79618
79619
  `logo-${framerScroll.isScrolled ? "scrolled" : "default"}-${isDarkMode ? "dark" : "light"}`
@@ -79821,10 +79822,12 @@ function NavbarInternal({
79821
79822
  transition: {
79822
79823
  duration: 0.2
79823
79824
  },
79825
+ suppressHydrationWarning: true,
79824
79826
  children: /* @__PURE__ */ jsx(
79825
79827
  Moon,
79826
79828
  {
79827
- className: getSizeClasses().iconSize
79829
+ className: getSizeClasses().iconSize,
79830
+ suppressHydrationWarning: true
79828
79831
  }
79829
79832
  )
79830
79833
  },
@@ -79850,10 +79853,12 @@ function NavbarInternal({
79850
79853
  transition: {
79851
79854
  duration: 0.2
79852
79855
  },
79856
+ suppressHydrationWarning: true,
79853
79857
  children: /* @__PURE__ */ jsx(
79854
79858
  Sun,
79855
79859
  {
79856
- className: getSizeClasses().iconSize
79860
+ className: getSizeClasses().iconSize,
79861
+ suppressHydrationWarning: true
79857
79862
  }
79858
79863
  )
79859
79864
  },
@@ -79870,9 +79875,9 @@ function NavbarInternal({
79870
79875
  size: "icon",
79871
79876
  suppressHydrationWarning: true,
79872
79877
  children: [
79873
- currentTheme === "light" && /* @__PURE__ */ jsx(Sun, { className: "h-5 w-5" }),
79874
- currentTheme === "dark" && /* @__PURE__ */ jsx(Moon, { className: "h-5 w-5" }),
79875
- currentTheme === "system" && /* @__PURE__ */ jsx(Monitor, { className: "h-5 w-5" })
79878
+ currentTheme === "light" && /* @__PURE__ */ jsx(Sun, { className: "h-5 w-5", suppressHydrationWarning: true }),
79879
+ currentTheme === "dark" && /* @__PURE__ */ jsx(Moon, { className: "h-5 w-5", suppressHydrationWarning: true }),
79880
+ currentTheme === "system" && /* @__PURE__ */ jsx(Monitor, { className: "h-5 w-5", suppressHydrationWarning: true })
79876
79881
  ]
79877
79882
  }
79878
79883
  ) }),
@@ -80383,10 +80388,12 @@ function NavbarInternal({
80383
80388
  transition: {
80384
80389
  duration: 0.2
80385
80390
  },
80391
+ suppressHydrationWarning: true,
80386
80392
  children: /* @__PURE__ */ jsx(
80387
80393
  Moon,
80388
80394
  {
80389
- className: getSizeClasses().iconSize
80395
+ className: getSizeClasses().iconSize,
80396
+ suppressHydrationWarning: true
80390
80397
  }
80391
80398
  )
80392
80399
  },
@@ -80412,10 +80419,12 @@ function NavbarInternal({
80412
80419
  transition: {
80413
80420
  duration: 0.2
80414
80421
  },
80422
+ suppressHydrationWarning: true,
80415
80423
  children: /* @__PURE__ */ jsx(
80416
80424
  Sun,
80417
80425
  {
80418
- className: getSizeClasses().iconSize
80426
+ className: getSizeClasses().iconSize,
80427
+ suppressHydrationWarning: true
80419
80428
  }
80420
80429
  )
80421
80430
  },
@@ -80426,9 +80435,9 @@ function NavbarInternal({
80426
80435
  }
80427
80436
  ) : /* @__PURE__ */ jsxs(MoonUIDropdownMenuPro, { children: [
80428
80437
  /* @__PURE__ */ jsx(MoonUIDropdownMenuTriggerPro, { asChild: true, children: /* @__PURE__ */ jsxs(MoonUIButtonPro, { variant: "ghost", size: "icon", suppressHydrationWarning: true, children: [
80429
- currentTheme === "light" && /* @__PURE__ */ jsx(Sun, { className: "h-5 w-5" }),
80430
- currentTheme === "dark" && /* @__PURE__ */ jsx(Moon, { className: "h-5 w-5" }),
80431
- currentTheme === "system" && /* @__PURE__ */ jsx(Monitor, { className: "h-5 w-5" })
80438
+ currentTheme === "light" && /* @__PURE__ */ jsx(Sun, { className: "h-5 w-5", suppressHydrationWarning: true }),
80439
+ currentTheme === "dark" && /* @__PURE__ */ jsx(Moon, { className: "h-5 w-5", suppressHydrationWarning: true }),
80440
+ currentTheme === "system" && /* @__PURE__ */ jsx(Monitor, { className: "h-5 w-5", suppressHydrationWarning: true })
80432
80441
  ] }) }),
80433
80442
  /* @__PURE__ */ jsxs(MoonUIDropdownMenuContentPro, { align: "end", children: [
80434
80443
  /* @__PURE__ */ jsxs(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moontra/moonui-pro",
3
- "version": "3.4.28",
3
+ "version": "3.4.30",
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",