nexheal-lib 0.0.49 → 0.0.51
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 +53 -4
- package/fesm2022/nexheal-lib.mjs.map +1 -1
- package/index.d.ts +4 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -483,8 +483,8 @@ declare class PaginatedAutocompleteControl implements ControlValueAccessor, OnIn
|
|
|
483
483
|
inputLoader: boolean;
|
|
484
484
|
readonly: boolean;
|
|
485
485
|
optionDisplayProperty: string;
|
|
486
|
-
/** 'scroll' = infinite scroll, 'click' = "Load more" button */
|
|
487
|
-
paginationType: 'scroll' | 'click';
|
|
486
|
+
/** 'scroll' = infinite scroll, 'click' = "Load more" button, 'arrow' = ←/→ keys */
|
|
487
|
+
paginationType: 'scroll' | 'click' | 'arrow';
|
|
488
488
|
pageSize: number;
|
|
489
489
|
searchDebounce: number;
|
|
490
490
|
/** Re-fetch page 1 every time the dropdown opens, instead of reusing cached results */
|
|
@@ -510,6 +510,8 @@ declare class PaginatedAutocompleteControl implements ControlValueAccessor, OnIn
|
|
|
510
510
|
private preventClearOnBlur;
|
|
511
511
|
private searchInput$;
|
|
512
512
|
private cancelPendingSearch;
|
|
513
|
+
/** When set, the highlight jumps to this index after the next page appends */
|
|
514
|
+
private pendingHighlightIndex;
|
|
513
515
|
private onChange;
|
|
514
516
|
private onTouched;
|
|
515
517
|
inputElement: ElementRef;
|