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.
- package/fesm2022/igniteui-angular.mjs +111 -41
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/lib/drop-down/drop-down-item.base.d.ts +2 -2
- package/lib/drop-down/drop-down-navigation.directive.d.ts +1 -0
- package/lib/drop-down/drop-down.base.d.ts +7 -0
- package/lib/drop-down/drop-down.common.d.ts +1 -0
- package/lib/grids/grid/grid-validation.service.d.ts +12 -1
- package/lib/grids/headers/grid-header-group.component.d.ts +4 -0
- package/lib/grids/headers/grid-header-row.component.d.ts +11 -0
- package/lib/grids/pivot-grid/pivot-header-row.component.d.ts +5 -0
- package/package.json +1 -1
|
@@ -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
|
|
@@ -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
|
|
@@ -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