cloud-ide-element 1.1.159 → 1.1.161
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/fesm2022/cloud-ide-element.mjs +216 -47
- package/fesm2022/cloud-ide-element.mjs.map +1 -1
- package/index.d.ts +2 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -452,9 +452,6 @@ declare class CideSelectComponent implements ControlValueAccessor, Validator, On
|
|
|
452
452
|
};
|
|
453
453
|
private debugId;
|
|
454
454
|
private timeoutIds;
|
|
455
|
-
private el;
|
|
456
|
-
private cdr;
|
|
457
|
-
private ngControl;
|
|
458
455
|
private interactionCount;
|
|
459
456
|
private maxInteractionCount;
|
|
460
457
|
constructor(elementRef: ElementRef);
|
|
@@ -476,9 +473,10 @@ declare class CideSelectComponent implements ControlValueAccessor, Validator, On
|
|
|
476
473
|
private openDropdown;
|
|
477
474
|
private closeDropdown;
|
|
478
475
|
ngOnDestroy(): void;
|
|
479
|
-
portalContext: any;
|
|
480
476
|
private createDropdownPortal;
|
|
481
477
|
private destroyDropdownPortal;
|
|
478
|
+
private updatePortalContext;
|
|
479
|
+
private updateOptionsInDOM;
|
|
482
480
|
private setupDebouncedSearch;
|
|
483
481
|
private performSearch;
|
|
484
482
|
private cleanupOrphanedPortals;
|