igniteui-angular 12.3.38 → 12.3.40
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 +17 -13
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/combo/combo.common.js +11 -2
- package/esm2015/lib/grids/toolbar/grid-toolbar.base.js +3 -6
- package/esm2015/lib/simple-combo/simple-combo.component.js +6 -8
- package/fesm2015/igniteui-angular.js +17 -13
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.metadata.json +1 -1
- package/lib/combo/combo.common.d.ts +2 -0
- package/lib/simple-combo/simple-combo.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -659,6 +659,8 @@ export declare abstract class IgxComboBaseDirective extends DisplayDensityBase i
|
|
|
659
659
|
/** @hidden @internal */
|
|
660
660
|
ngAfterViewInit(): void;
|
|
661
661
|
/** @hidden @internal */
|
|
662
|
+
ngDoCheck(): void;
|
|
663
|
+
/** @hidden @internal */
|
|
662
664
|
ngOnDestroy(): void;
|
|
663
665
|
/**
|
|
664
666
|
* A method that opens/closes the combo.
|
|
@@ -126,7 +126,7 @@ export declare class IgxSimpleComboComponent extends IgxComboBaseDirective imple
|
|
|
126
126
|
protected createDisplayText(newSelection: any[], oldSelection: any[]): string;
|
|
127
127
|
private clearSelection;
|
|
128
128
|
private clearOnBlur;
|
|
129
|
-
private
|
|
129
|
+
private getElementKey;
|
|
130
130
|
private getElementVal;
|
|
131
131
|
private clearAndClose;
|
|
132
132
|
}
|
package/package.json
CHANGED