@moontra/moonui-pro 2.32.19 → 2.32.21

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
@@ -178,7 +178,8 @@ var init_cli_token_reader = __esm({
178
178
  if (this.cachedToken && now - this.lastCheck < this.CACHE_DURATION) {
179
179
  return this.cachedToken;
180
180
  }
181
- {
181
+ const isDevelopment = typeof window !== "undefined" && (window.location.hostname === "localhost" || window.location.hostname === "127.0.0.1" || window.location.hostname.includes(".local") || window.location.port === "3000" || window.location.port === "3001");
182
+ if (isDevelopment) {
182
183
  const encryptedToken = process.env.NEXT_PUBLIC_MOONUI_DEV_TOKEN;
183
184
  if (encryptedToken) {
184
185
  const tokenData = this.decryptToken(encryptedToken);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moontra/moonui-pro",
3
- "version": "2.32.19",
3
+ "version": "2.32.21",
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",