@smilodon/core 1.1.7 → 1.1.8

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.umd.js CHANGED
@@ -3383,8 +3383,15 @@
3383
3383
  }
3384
3384
  }
3385
3385
  // Register the custom element
3386
+ console.log('[AngularEnhancedSelect] Attempting to register custom element...');
3387
+ console.log('[AngularEnhancedSelect] customElements available:', typeof customElements !== 'undefined');
3388
+ console.log('[AngularEnhancedSelect] Already registered:', customElements?.get('angular-enhanced-select'));
3386
3389
  if (typeof customElements !== 'undefined' && !customElements.get('angular-enhanced-select')) {
3387
3390
  customElements.define('angular-enhanced-select', AngularEnhancedSelect);
3391
+ console.log('[AngularEnhancedSelect] Successfully registered custom element');
3392
+ }
3393
+ else if (customElements?.get('angular-enhanced-select')) {
3394
+ console.log('[AngularEnhancedSelect] Custom element already registered');
3388
3395
  }
3389
3396
 
3390
3397
  /**