igniteui-angular 13.2.18 → 13.2.19
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/esm2020/lib/combo/combo-dropdown.component.mjs +2 -2
- package/esm2020/lib/combo/combo.api.mjs +4 -1
- package/esm2020/lib/combo/combo.common.mjs +16 -2
- package/esm2020/lib/combo/combo.component.mjs +7 -4
- package/esm2020/lib/combo/combo.pipes.mjs +4 -3
- package/esm2020/lib/simple-combo/simple-combo.component.mjs +20 -13
- package/fesm2015/igniteui-angular.mjs +48 -19
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +47 -19
- package/fesm2020/igniteui-angular.mjs.map +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
|
@@ -764,6 +764,7 @@ export declare abstract class IgxComboBaseDirective extends DisplayDensityBase i
|
|
|
764
764
|
[x: string]: any;
|
|
765
765
|
}[];
|
|
766
766
|
protected getRemoteSelection(newSelection: any[], oldSelection: any[]): string;
|
|
767
|
+
protected get required(): boolean;
|
|
767
768
|
abstract get filteredData(): any[] | null;
|
|
768
769
|
abstract set filteredData(val: any[] | null);
|
|
769
770
|
abstract handleOpened(): any;
|
|
@@ -142,6 +142,7 @@ export declare class IgxSimpleComboComponent extends IgxComboBaseDirective imple
|
|
|
142
142
|
private getElementKey;
|
|
143
143
|
private getElementVal;
|
|
144
144
|
private clearAndClose;
|
|
145
|
+
private isValid;
|
|
145
146
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxSimpleComboComponent, [null, null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
146
147
|
static ɵcmp: i0.ɵɵComponentDeclaration<IgxSimpleComboComponent, "igx-simple-combo", never, {}, { "selectionChanging": "selectionChanging"; }, never, ["[igxLabel]", "igx-prefix", "igx-hint, [igxHint]", "igx-suffix"]>;
|
|
147
148
|
}
|
package/package.json
CHANGED