igniteui-angular 12.3.40 → 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 +50 -17
- 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 +16 -2
- package/esm2015/lib/combo/combo.component.js +6 -3
- package/esm2015/lib/combo/combo.pipes.js +4 -3
- package/esm2015/lib/simple-combo/simple-combo.component.js +20 -12
- package/fesm2015/igniteui-angular.js +46 -17
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.metadata.json +1 -1
- package/lib/combo/combo.common.d.ts +1 -0
- package/lib/simple-combo/simple-combo.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -755,6 +755,7 @@ export declare abstract class IgxComboBaseDirective extends DisplayDensityBase i
|
|
|
755
755
|
[x: string]: any;
|
|
756
756
|
}[];
|
|
757
757
|
protected getRemoteSelection(newSelection: any[], oldSelection: any[]): string;
|
|
758
|
+
protected get required(): boolean;
|
|
758
759
|
abstract get filteredData(): any[] | null;
|
|
759
760
|
abstract set filteredData(val: any[] | null);
|
|
760
761
|
abstract handleOpened(): any;
|
package/package.json
CHANGED