igniteui-angular 12.3.39 → 12.3.41
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 +59 -22
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/combo/combo-dropdown.component.js +2 -2
- package/esm2015/lib/combo/combo.api.js +4 -1
- package/esm2015/lib/combo/combo.common.js +23 -2
- package/esm2015/lib/combo/combo.component.js +6 -3
- package/esm2015/lib/combo/combo.pipes.js +4 -3
- package/esm2015/lib/grids/toolbar/grid-toolbar.base.js +3 -6
- package/esm2015/lib/simple-combo/simple-combo.component.js +20 -12
- package/fesm2015/igniteui-angular.js +55 -22
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.metadata.json +1 -1
- package/lib/combo/combo.common.d.ts +3 -0
- package/lib/simple-combo/simple-combo.component.d.ts +1 -0
- 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.
|
|
@@ -753,6 +755,7 @@ export declare abstract class IgxComboBaseDirective extends DisplayDensityBase i
|
|
|
753
755
|
[x: string]: any;
|
|
754
756
|
}[];
|
|
755
757
|
protected getRemoteSelection(newSelection: any[], oldSelection: any[]): string;
|
|
758
|
+
protected get required(): boolean;
|
|
756
759
|
abstract get filteredData(): any[] | null;
|
|
757
760
|
abstract set filteredData(val: any[] | null);
|
|
758
761
|
abstract handleOpened(): any;
|
package/package.json
CHANGED