igniteui-angular 14.2.30 → 14.2.31
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/grids/grid/grid-validation.service.mjs +19 -3
- package/esm2020/lib/grids/grid/grid.component.mjs +4 -1
- package/esm2020/lib/grids/hierarchical-grid/hierarchical-grid.component.mjs +4 -1
- package/esm2020/lib/grids/tree-grid/tree-grid.component.mjs +4 -1
- package/esm2020/lib/simple-combo/simple-combo.component.mjs +2 -2
- package/fesm2015/igniteui-angular.mjs +28 -3
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +28 -3
- package/fesm2020/igniteui-angular.mjs.map +1 -1
- package/lib/grids/grid/grid-validation.service.d.ts +6 -0
- package/package.json +1 -1
|
@@ -51,6 +51,12 @@ export declare class IgxGridValidationService {
|
|
|
51
51
|
* @internal
|
|
52
52
|
*/
|
|
53
53
|
update(rowId: any, rowData: any): void;
|
|
54
|
+
/**
|
|
55
|
+
* @hidden
|
|
56
|
+
* @internal
|
|
57
|
+
* Update validity based on new data.
|
|
58
|
+
*/
|
|
59
|
+
updateAll(newData: any): void;
|
|
54
60
|
/** Marks the associated record or field as touched.
|
|
55
61
|
* @param key The id of the record that will be marked as touched.
|
|
56
62
|
* @param field Optional. The field from the record that will be marked as touched. If not provided all fields will be touched.
|
package/package.json
CHANGED