@moontra/moonui-pro 2.33.16 → 2.33.18

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
@@ -124,7 +124,11 @@ var init_cli_token_reader = __esm({
124
124
  return fingerprint;
125
125
  } catch (error) {
126
126
  console.error("[MoonUI Pro] Device fingerprint generation failed:", error);
127
- return "browser-fallback-device";
127
+ const fallbackPlatform = this.detectBrowserPlatform() || "darwin";
128
+ const fallbackHostname = typeof window !== "undefined" ? window.location.hostname : "localhost";
129
+ const fallbackUserHash = "fallback";
130
+ const fallbackMachineHash = "000000";
131
+ return `${fallbackPlatform}-${fallbackHostname}-${fallbackUserHash}-${fallbackMachineHash}`;
128
132
  }
129
133
  }
130
134
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moontra/moonui-pro",
3
- "version": "2.33.16",
3
+ "version": "2.33.18",
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",