igniteui-angular 19.2.16 → 19.2.17
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.
|
@@ -25,8 +25,11 @@ export declare class IgxGridValidationService {
|
|
|
25
25
|
/**
|
|
26
26
|
* @hidden
|
|
27
27
|
* @internal
|
|
28
|
+
Wraps the provided path into an array. This way FormGroup.get will return proper result.
|
|
29
|
+
Otherwise, if the path is a string (e.g. 'address.street'), FormGroup.get will treat it as there is a nested structure
|
|
30
|
+
and will look for control with a name of 'address' which returns undefined.
|
|
28
31
|
*/
|
|
29
|
-
private
|
|
32
|
+
private getFormControlPath;
|
|
30
33
|
/**
|
|
31
34
|
* @hidden
|
|
32
35
|
* @internal
|
|
@@ -42,6 +45,14 @@ export declare class IgxGridValidationService {
|
|
|
42
45
|
* @internal
|
|
43
46
|
*/
|
|
44
47
|
add(rowId: any, form: FormGroup): void;
|
|
48
|
+
/**
|
|
49
|
+
* Checks the validity of the native ngControl
|
|
50
|
+
*/
|
|
51
|
+
isFieldInvalid(formGroup: FormGroup, fieldName: string): boolean;
|
|
52
|
+
/**
|
|
53
|
+
* Checks the validity of the native ngControl after edit
|
|
54
|
+
*/
|
|
55
|
+
isFieldValidAfterEdit(formGroup: FormGroup, fieldName: string): boolean;
|
|
45
56
|
/**
|
|
46
57
|
* @hidden
|
|
47
58
|
* @internal
|
package/package.json
CHANGED