igniteui-angular 19.2.16 → 19.2.18

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.
@@ -27,8 +27,8 @@ export declare class IgxDropDownItemBaseDirective implements DoCheck {
27
27
  * @memberof IgxSelectItemComponent
28
28
  */
29
29
  id: string;
30
- get ariaLabel(): string;
31
- set ariaLabel(value: string);
30
+ get ariaLabel(): string | null;
31
+ set ariaLabel(value: string | null);
32
32
  /**
33
33
  * @hidden @internal
34
34
  */
@@ -37,6 +37,7 @@ export declare class IgxDropDownItemNavigationDirective implements IDropDownNavi
37
37
  * ```
38
38
  */
39
39
  set target(target: IgxDropDownBaseDirective);
40
+ get activeDescendant(): string;
40
41
  /**
41
42
  * Captures keydown events and calls the appropriate handlers on the target component
42
43
  */
@@ -109,6 +109,13 @@ export declare abstract class IgxDropDownBaseDirective implements IDropDownList,
109
109
  * Get dropdown's html element of its scroll container
110
110
  */
111
111
  get scrollContainer(): HTMLElement;
112
+ /**
113
+ * @hidden @internal
114
+ * Gets the id of the focused item during dropdown navigation.
115
+ * This is used to update the `aria-activedescendant` attribute of
116
+ * the IgxDropDownNavigationDirective host element.
117
+ */
118
+ get activeDescendant(): string;
112
119
  /**
113
120
  * @hidden
114
121
  * @internal
@@ -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
@@ -58,6 +58,10 @@ export declare class IgxGridHeaderGroupComponent implements DoCheck {
58
58
  * @hidden
59
59
  */
60
60
  get zIndex(): number;
61
+ /**
62
+ * @hidden
63
+ */
64
+ get ariaHidden(): boolean;
61
65
  /**
62
66
  * Gets whether the header group belongs to a column that is filtered.
63
67
  *
@@ -48,6 +48,17 @@ export declare class IgxGridHeaderRowComponent implements DoCheck {
48
48
  get headers(): IgxGridHeaderComponent[];
49
49
  /** Filtering cell components in the header row. */
50
50
  get filters(): IgxGridFilteringCellComponent[];
51
+ /**
52
+ * Gets a list of all visible leaf columns in the grid.
53
+ *
54
+ * @hidden @internal
55
+ */
56
+ get visibleLeafColumns(): ColumnType[];
57
+ /**
58
+ * @hidden
59
+ * @internal
60
+ */
61
+ get isLeafHeaderAriaHidden(): boolean;
51
62
  /** The virtualized part of the header row containing the unpinned header groups. */
52
63
  headerContainer: IgxGridForOfDirective<ColumnType, ColumnType[]>;
53
64
  get headerForOf(): IgxGridForOfDirective<ColumnType, ColumnType[]>;
@@ -93,6 +93,11 @@ export declare class IgxPivotHeaderRowComponent extends IgxGridHeaderRowComponen
93
93
  * @hidden
94
94
  * @internal
95
95
  */
96
+ get isLeafHeaderAriaHidden(): boolean;
97
+ /**
98
+ * @hidden
99
+ * @internal
100
+ */
96
101
  calcHeight(col: ColumnType, index: number): number;
97
102
  /**
98
103
  * @hidden
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "19.2.16",
3
+ "version": "19.2.18",
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",