slick-components 17.0.87 → 17.0.89

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "slick-components",
3
- "version": "17.0.87",
3
+ "version": "17.0.89",
4
4
  "dependencies": {
5
5
  "bootstrap": "5.3.3",
6
6
  "moment": "2.30.1",
@@ -24,6 +24,7 @@ export declare class SlickAutoCompleteComponent implements OnInit, OnDestroy, On
24
24
  listItemTemplateRef: SlickAutoCompleteListItemTemplateDirective;
25
25
  fnDocumentClick: (e: any) => void;
26
26
  fnKeyDown: (e: any) => Promise<boolean>;
27
+ private fnInputFocus;
27
28
  private selectedItem;
28
29
  private delayTimeout;
29
30
  private waitForItemsInterval;
@@ -43,6 +44,7 @@ export declare class SlickAutoCompleteComponent implements OnInit, OnDestroy, On
43
44
  ngOnInit(): Promise<void>;
44
45
  ngOnDestroy(): void;
45
46
  ngOnChanges(changes: SimpleChanges): void;
47
+ private onInputFocus;
46
48
  private documentClick;
47
49
  onItemClick(index: any): void;
48
50
  private keyDown;