@smilodon/core 1.1.5 → 1.1.7
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.cjs +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.umd.js +3 -0
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/index.umd.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2505,6 +2505,7 @@ class AngularEnhancedSelect extends HTMLElement {
|
|
|
2505
2505
|
this._isReady = false;
|
|
2506
2506
|
// Unique class prefix to avoid conflicts
|
|
2507
2507
|
this.PREFIX = 'smilodon-ang-';
|
|
2508
|
+
console.log('[AngularEnhancedSelect] Constructor called');
|
|
2508
2509
|
this._uniqueId = `angular-select-${Math.random().toString(36).substr(2, 9)}`;
|
|
2509
2510
|
// Merge global config
|
|
2510
2511
|
this._config = selectConfig.getConfig();
|
|
@@ -2541,6 +2542,7 @@ class AngularEnhancedSelect extends HTMLElement {
|
|
|
2541
2542
|
this._initializeObservers();
|
|
2542
2543
|
}
|
|
2543
2544
|
connectedCallback() {
|
|
2545
|
+
console.log('[AngularEnhancedSelect] connectedCallback called');
|
|
2544
2546
|
// Ensure host has proper layout
|
|
2545
2547
|
if (!this.style.display) {
|
|
2546
2548
|
this.style.display = 'block';
|
|
@@ -2554,6 +2556,7 @@ class AngularEnhancedSelect extends HTMLElement {
|
|
|
2554
2556
|
}
|
|
2555
2557
|
// Mark element as ready
|
|
2556
2558
|
this._isReady = true;
|
|
2559
|
+
console.log('[AngularEnhancedSelect] Element is now ready');
|
|
2557
2560
|
}
|
|
2558
2561
|
disconnectedCallback() {
|
|
2559
2562
|
// Cleanup observers
|