@moontra/moonui-pro 2.33.15 → 2.33.16

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
@@ -314,7 +314,9 @@ var init_cli_token_reader = __esm({
314
314
  return { compatible: false, requiresAPIValidation: false, reason: `Hostname mismatch: token=${tokenParts[1]}, current=${currentParts[1]}` };
315
315
  }
316
316
  if (!userHashMatch) {
317
- return { compatible: false, requiresAPIValidation: false, reason: `User hash mismatch: token=${tokenParts[2]}, current=${currentParts[2]}` };
317
+ console.log("[MoonUI Pro] User hash mismatch detected (CLI vs Browser) - this is normal");
318
+ console.log("[MoonUI Pro] Requiring API validation for security");
319
+ return { compatible: true, requiresAPIValidation: true, reason: `User hash difference expected: CLI=${tokenParts[2]}, Browser=${currentParts[2]}` };
318
320
  }
319
321
  const cliMachineHash = tokenParts[3] || "";
320
322
  const browserMachineHash = currentParts[3] || "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moontra/moonui-pro",
3
- "version": "2.33.15",
3
+ "version": "2.33.16",
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",