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.
@@ -12,6 +12,7 @@ export declare const DropDownActionKey: {
12
12
  ESCAPE: "escape";
13
13
  ENTER: "enter";
14
14
  SPACE: "space";
15
+ TAB: "tab";
15
16
  };
16
17
  export type DropDownActionKey = (typeof DropDownActionKey)[keyof typeof DropDownActionKey];
17
18
  /**
@@ -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 getFieldKey;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "19.2.16",
3
+ "version": "19.2.17",
4
4
  "description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
5
5
  "author": "Infragistics",
6
6
  "license": "SEE LICENSE IN LICENSE",