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/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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nexheal-lib",
3
- "version": "0.0.49",
3
+ "version": "0.0.51",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^20.1.0",
6
6
  "@angular/core": "^20.1.0"