igniteui-angular 12.3.44 → 12.3.45
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/bundles/igniteui-angular.umd.js +14 -2
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/directives/autocomplete/autocomplete.directive.js +14 -2
- package/esm2015/lib/grids/tree-grid/tree-grid-row.component.js +2 -2
- package/fesm2015/igniteui-angular.js +14 -2
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.metadata.json +1 -1
- package/lib/directives/autocomplete/autocomplete.directive.d.ts +5 -0
- package/package.json +1 -1
|
@@ -127,6 +127,7 @@ export declare class IgxAutocompleteDirective extends IgxDropDownItemNavigationD
|
|
|
127
127
|
get ariaActiveDescendant(): string;
|
|
128
128
|
/** @hidden @internal */
|
|
129
129
|
get ariaAutocomplete(): string;
|
|
130
|
+
protected _composing: boolean;
|
|
130
131
|
protected id: string;
|
|
131
132
|
protected get model(): FormControlName | NgModel;
|
|
132
133
|
private _shouldBeOpen;
|
|
@@ -135,6 +136,10 @@ export declare class IgxAutocompleteDirective extends IgxDropDownItemNavigationD
|
|
|
135
136
|
constructor(ngModel: NgModel, formControl: FormControlName, group: IgxInputGroupComponent, elementRef: ElementRef, cdr: ChangeDetectorRef);
|
|
136
137
|
/** @hidden @internal */
|
|
137
138
|
onInput(): void;
|
|
139
|
+
/** @hidden @internal */
|
|
140
|
+
onCompositionStart(): void;
|
|
141
|
+
/** @hidden @internal */
|
|
142
|
+
onCompositionEnd(): void;
|
|
138
143
|
/** @hidden @internal */
|
|
139
144
|
onArrowDown(event: Event): void;
|
|
140
145
|
/** @hidden @internal */
|
package/package.json
CHANGED