nexheal-lib 0.0.48 → 0.0.50
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/nexheal-lib.mjs +33 -10
- package/fesm2022/nexheal-lib.mjs.map +1 -1
- package/index.d.ts +3 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -508,6 +508,8 @@ declare class PaginatedAutocompleteControl implements ControlValueAccessor, OnIn
|
|
|
508
508
|
private valueBuffer;
|
|
509
509
|
private popperInstance;
|
|
510
510
|
private preventClearOnBlur;
|
|
511
|
+
private searchInput$;
|
|
512
|
+
private cancelPendingSearch;
|
|
511
513
|
private onChange;
|
|
512
514
|
private onTouched;
|
|
513
515
|
inputElement: ElementRef;
|
|
@@ -541,6 +543,7 @@ declare class PaginatedAutocompleteControl implements ControlValueAccessor, OnIn
|
|
|
541
543
|
retryLoad(event: MouseEvent): void;
|
|
542
544
|
private openDropdown;
|
|
543
545
|
selectSuggestion(suggestion: any): void;
|
|
546
|
+
onUserType(event: Event): void;
|
|
544
547
|
onFocus(): void;
|
|
545
548
|
onInputClick(): void;
|
|
546
549
|
/** Text to search with when the dropdown opens: if the input just holds the
|