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