@open-rlb/ng-bootstrap 3.0.2 → 3.0.4
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
|
@@ -1735,7 +1735,10 @@ declare abstract class AbstractAutocompleteComponent extends AbstractComponent<A
|
|
|
1735
1735
|
size?: 'small' | 'large' | undefined;
|
|
1736
1736
|
userDefinedId: string;
|
|
1737
1737
|
charsToSearch: number;
|
|
1738
|
-
|
|
1738
|
+
private _el;
|
|
1739
|
+
private _pendingValue;
|
|
1740
|
+
set el(value: ElementRef<HTMLInputElement>);
|
|
1741
|
+
get el(): ElementRef<HTMLInputElement>;
|
|
1739
1742
|
dropdown: ElementRef<HTMLElement>;
|
|
1740
1743
|
selected: EventEmitter<AutocompleteItem>;
|
|
1741
1744
|
protected abstract getSuggestions(query: string): void;
|
|
@@ -1743,6 +1746,7 @@ declare abstract class AbstractAutocompleteComponent extends AbstractComponent<A
|
|
|
1743
1746
|
protected constructor(idService: UniqueIdService, renderer: Renderer2, // protected, to gain access to child classes
|
|
1744
1747
|
control?: NgControl);
|
|
1745
1748
|
onWrite(data?: AutocompleteItem | string): void;
|
|
1749
|
+
private applyValueToInput;
|
|
1746
1750
|
update(ev: EventTarget | null): void;
|
|
1747
1751
|
onEnter(ev: EventTarget | null): void;
|
|
1748
1752
|
onKeyDown(event: KeyboardEvent): void;
|