igniteui-angular 19.2.17 → 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
@@ -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.17",
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",