igniteui-angular 19.2.17 → 19.2.19
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 +211 -50
- 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/grids/cell.component.d.ts +2 -0
- package/lib/grids/grid-base.directive.d.ts +4 -0
- package/lib/grids/headers/grid-header-group.component.d.ts +4 -0
- package/lib/grids/headers/grid-header-row.component.d.ts +13 -2
- package/lib/grids/headers/grid-header.component.d.ts +17 -1
- package/lib/grids/pivot-grid/pivot-grid.component.d.ts +6 -0
- package/lib/grids/pivot-grid/pivot-header-row.component.d.ts +8 -2
- package/lib/grids/pivot-grid/pivot-row-dimension-header-group.component.d.ts +4 -0
- package/lib/grids/pivot-grid/pivot-row-dimension-mrl-row.component.d.ts +1 -0
- package/lib/grids/pivot-grid/pivot-row-header-group.component.d.ts +4 -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
|
|
@@ -374,6 +374,8 @@ export declare class IgxGridCellComponent implements OnInit, OnChanges, OnDestro
|
|
|
374
374
|
*/
|
|
375
375
|
displayPinnedChip: boolean;
|
|
376
376
|
protected get minHeight(): number;
|
|
377
|
+
protected get ariaRowIndex(): number;
|
|
378
|
+
protected get ariaColIndex(): number;
|
|
377
379
|
protected defaultCellTemplate: TemplateRef<any>;
|
|
378
380
|
protected defaultPinnedIndicator: TemplateRef<any>;
|
|
379
381
|
protected inlineEditorTemplate: TemplateRef<any>;
|
|
@@ -1227,6 +1227,8 @@ export declare abstract class IgxGridBaseDirective implements GridType, OnInit,
|
|
|
1227
1227
|
private defaultRowEditTemplate;
|
|
1228
1228
|
private _dataRowList;
|
|
1229
1229
|
protected baseClass: string;
|
|
1230
|
+
protected get ariaColCount(): number;
|
|
1231
|
+
protected get ariaRowCount(): number;
|
|
1230
1232
|
/**
|
|
1231
1233
|
* Gets/Sets the resource strings.
|
|
1232
1234
|
*
|
|
@@ -2020,6 +2022,7 @@ export declare abstract class IgxGridBaseDirective implements GridType, OnInit,
|
|
|
2020
2022
|
private _sortDescendingHeaderIconTemplate;
|
|
2021
2023
|
private _gridSize;
|
|
2022
2024
|
private _defaultRowHeight;
|
|
2025
|
+
private _rowCount;
|
|
2023
2026
|
/**
|
|
2024
2027
|
* @hidden @internal
|
|
2025
2028
|
*/
|
|
@@ -3547,6 +3550,7 @@ export declare abstract class IgxGridBaseDirective implements GridType, OnInit,
|
|
|
3547
3550
|
*/
|
|
3548
3551
|
private clearActiveNode;
|
|
3549
3552
|
private getRecreatedTree;
|
|
3553
|
+
private _calculateRowCount;
|
|
3550
3554
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridBaseDirective, [null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, { optional: true; }]>;
|
|
3551
3555
|
static ɵdir: i0.ɵɵDirectiveDeclaration<IgxGridBaseDirective, never, never, { "snackbarDisplayTime": { "alias": "snackbarDisplayTime"; "required": false; }; "autoGenerate": { "alias": "autoGenerate"; "required": false; }; "autoGenerateExclude": { "alias": "autoGenerateExclude"; "required": false; }; "moving": { "alias": "moving"; "required": false; }; "emptyGridTemplate": { "alias": "emptyGridTemplate"; "required": false; }; "addRowEmptyTemplate": { "alias": "addRowEmptyTemplate"; "required": false; }; "loadingGridTemplate": { "alias": "loadingGridTemplate"; "required": false; }; "summaryRowHeight": { "alias": "summaryRowHeight"; "required": false; }; "dataCloneStrategy": { "alias": "dataCloneStrategy"; "required": false; }; "clipboardOptions": { "alias": "clipboardOptions"; "required": false; }; "rowClasses": { "alias": "rowClasses"; "required": false; }; "rowStyles": { "alias": "rowStyles"; "required": false; }; "primaryKey": { "alias": "primaryKey"; "required": false; }; "uniqueColumnValuesStrategy": { "alias": "uniqueColumnValuesStrategy"; "required": false; }; "dragGhostCustomTemplate": { "alias": "dragGhostCustomTemplate"; "required": false; }; "rowEditTextTemplate": { "alias": "rowEditTextTemplate"; "required": false; }; "rowAddTextTemplate": { "alias": "rowAddTextTemplate"; "required": false; }; "rowEditActionsTemplate": { "alias": "rowEditActionsTemplate"; "required": false; }; "rowExpandedIndicatorTemplate": { "alias": "rowExpandedIndicatorTemplate"; "required": false; }; "rowCollapsedIndicatorTemplate": { "alias": "rowCollapsedIndicatorTemplate"; "required": false; }; "headerExpandedIndicatorTemplate": { "alias": "headerExpandedIndicatorTemplate"; "required": false; }; "headerCollapsedIndicatorTemplate": { "alias": "headerCollapsedIndicatorTemplate"; "required": false; }; "excelStyleHeaderIconTemplate": { "alias": "excelStyleHeaderIconTemplate"; "required": false; }; "sortAscendingHeaderIconTemplate": { "alias": "sortAscendingHeaderIconTemplate"; "required": false; }; "sortDescendingHeaderIconTemplate": { "alias": "sortDescendingHeaderIconTemplate"; "required": false; }; "sortHeaderIconTemplate": { "alias": "sortHeaderIconTemplate"; "required": false; }; "resourceStrings": { "alias": "resourceStrings"; "required": false; }; "filteringLogic": { "alias": "filteringLogic"; "required": false; }; "filteringExpressionsTree": { "alias": "filteringExpressionsTree"; "required": false; }; "advancedFilteringExpressionsTree": { "alias": "advancedFilteringExpressionsTree"; "required": false; }; "locale": { "alias": "locale"; "required": false; }; "pagingMode": { "alias": "pagingMode"; "required": false; }; "hideRowSelectors": { "alias": "hideRowSelectors"; "required": false; }; "rowDraggable": { "alias": "rowDraggable"; "required": false; }; "validationTrigger": { "alias": "validationTrigger"; "required": false; }; "rowEditable": { "alias": "rowEditable"; "required": false; }; "height": { "alias": "height"; "required": false; }; "width": { "alias": "width"; "required": false; }; "rowHeight": { "alias": "rowHeight"; "required": false; }; "columnWidth": { "alias": "columnWidth"; "required": false; }; "emptyGridMessage": { "alias": "emptyGridMessage"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "emptyFilteredGridMessage": { "alias": "emptyFilteredGridMessage"; "required": false; }; "pinning": { "alias": "pinning"; "required": false; }; "allowFiltering": { "alias": "allowFiltering"; "required": false; }; "allowAdvancedFiltering": { "alias": "allowAdvancedFiltering"; "required": false; }; "filterMode": { "alias": "filterMode"; "required": false; }; "summaryPosition": { "alias": "summaryPosition"; "required": false; }; "summaryCalculationMode": { "alias": "summaryCalculationMode"; "required": false; }; "showSummaryOnCollapse": { "alias": "showSummaryOnCollapse"; "required": false; }; "filterStrategy": { "alias": "filterStrategy"; "required": false; }; "sortStrategy": { "alias": "sortStrategy"; "required": false; }; "sortingOptions": { "alias": "sortingOptions"; "required": false; }; "selectedRows": { "alias": "selectedRows"; "required": false; }; "headSelectorTemplate": { "alias": "headSelectorTemplate"; "required": false; }; "rowSelectorTemplate": { "alias": "rowSelectorTemplate"; "required": false; }; "dragIndicatorIconTemplate": { "alias": "dragIndicatorIconTemplate"; "required": false; }; "sortingExpressions": { "alias": "sortingExpressions"; "required": false; }; "batchEditing": { "alias": "batchEditing"; "required": false; }; "cellSelection": { "alias": "cellSelection"; "required": false; }; "rowSelection": { "alias": "rowSelection"; "required": false; }; "columnSelection": { "alias": "columnSelection"; "required": false; }; "expansionStates": { "alias": "expansionStates"; "required": false; }; "outlet": { "alias": "outlet"; "required": false; }; "totalRecords": { "alias": "totalRecords"; "required": false; }; "selectRowOnClick": { "alias": "selectRowOnClick"; "required": false; }; }, { "filteringExpressionsTreeChange": "filteringExpressionsTreeChange"; "advancedFilteringExpressionsTreeChange": "advancedFilteringExpressionsTreeChange"; "gridScroll": "gridScroll"; "cellClick": "cellClick"; "rowClick": "rowClick"; "formGroupCreated": "formGroupCreated"; "validationStatusChange": "validationStatusChange"; "selected": "selected"; "rowSelectionChanging": "rowSelectionChanging"; "columnSelectionChanging": "columnSelectionChanging"; "columnPin": "columnPin"; "columnPinned": "columnPinned"; "cellEditEnter": "cellEditEnter"; "cellEditExit": "cellEditExit"; "cellEdit": "cellEdit"; "cellEditDone": "cellEditDone"; "rowEditEnter": "rowEditEnter"; "rowEdit": "rowEdit"; "rowEditDone": "rowEditDone"; "rowEditExit": "rowEditExit"; "columnInit": "columnInit"; "columnsAutogenerated": "columnsAutogenerated"; "sorting": "sorting"; "sortingDone": "sortingDone"; "filtering": "filtering"; "filteringDone": "filteringDone"; "rowAdded": "rowAdded"; "rowDeleted": "rowDeleted"; "rowDelete": "rowDelete"; "rowAdd": "rowAdd"; "columnResized": "columnResized"; "contextMenu": "contextMenu"; "doubleClick": "doubleClick"; "columnVisibilityChanging": "columnVisibilityChanging"; "columnVisibilityChanged": "columnVisibilityChanged"; "columnMovingStart": "columnMovingStart"; "columnMoving": "columnMoving"; "columnMovingEnd": "columnMovingEnd"; "gridKeydown": "gridKeydown"; "rowDragStart": "rowDragStart"; "rowDragEnd": "rowDragEnd"; "gridCopy": "gridCopy"; "expansionStatesChange": "expansionStatesChange"; "selectedRowsChange": "selectedRowsChange"; "rowToggle": "rowToggle"; "rowPinning": "rowPinning"; "rowPinned": "rowPinned"; "activeNodeChange": "activeNodeChange"; "sortingExpressionsChange": "sortingExpressionsChange"; "toolbarExporting": "toolbarExporting"; "rangeSelected": "rangeSelected"; "rendered": "rendered"; "localeChange": "localeChange"; "dataChanging": "dataChanging"; "dataChanged": "dataChanged"; }, ["excelStyleLoadingValuesTemplateDirective", "rowAddText", "rowExpandedIndicatorDirectiveTemplate", "rowCollapsedIndicatorDirectiveTemplate", "headerExpandedIndicatorDirectiveTemplate", "headerCollapsedIndicatorDirectiveTemplate", "excelStyleHeaderIconDirectiveTemplate", "sortAscendingHeaderIconDirectiveTemplate", "sortDescendingHeaderIconDirectiveTemplate", "sortHeaderIconDirectiveTemplate", "excelStyleFilteringComponents", "columnList", "actionStripComponents", "headSelectorsTemplates", "rowSelectorsTemplates", "dragGhostCustomTemplates", "rowEditCustomDirectives", "rowEditTextDirectives", "rowEditActionsDirectives", "dragIndicatorIconTemplates", "rowEditTabsCUSTOM", "toolbar", "paginationComponents"], never, true, never>;
|
|
3552
3556
|
static ngAcceptInputType_autoGenerate: unknown;
|
|
@@ -24,7 +24,7 @@ export declare class IgxGridHeaderRowComponent implements DoCheck {
|
|
|
24
24
|
pinnedColumnCollection: ColumnType[];
|
|
25
25
|
/** Unpinned columns of the grid. */
|
|
26
26
|
unpinnedColumnCollection: ColumnType[];
|
|
27
|
-
activeDescendant: string;
|
|
27
|
+
get activeDescendant(): string;
|
|
28
28
|
hasMRL: boolean;
|
|
29
29
|
width: number;
|
|
30
30
|
/**
|
|
@@ -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[]>;
|
|
@@ -92,6 +103,6 @@ export declare class IgxGridHeaderRowComponent implements DoCheck {
|
|
|
92
103
|
/** state persistence switching all pinned columns resets collection */
|
|
93
104
|
protected trackPinnedColumn: typeof trackByIdentity;
|
|
94
105
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridHeaderRowComponent, never>;
|
|
95
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridHeaderRowComponent, "igx-grid-header-row", never, { "grid": { "alias": "grid"; "required": false; }; "pinnedColumnCollection": { "alias": "pinnedColumnCollection"; "required": false; }; "unpinnedColumnCollection": { "alias": "unpinnedColumnCollection"; "required": false; }; "
|
|
106
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridHeaderRowComponent, "igx-grid-header-row", never, { "grid": { "alias": "grid"; "required": false; }; "pinnedColumnCollection": { "alias": "pinnedColumnCollection"; "required": false; }; "unpinnedColumnCollection": { "alias": "unpinnedColumnCollection"; "required": false; }; "hasMRL": { "alias": "hasMRL"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>;
|
|
96
107
|
static ngAcceptInputType_hasMRL: unknown;
|
|
97
108
|
}
|
|
@@ -25,10 +25,26 @@ export declare class IgxGridHeaderComponent implements DoCheck, OnDestroy {
|
|
|
25
25
|
* @hidden
|
|
26
26
|
*/
|
|
27
27
|
protected sortIconContainer: ElementRef;
|
|
28
|
+
/**
|
|
29
|
+
* @hidden
|
|
30
|
+
*/
|
|
31
|
+
id: string;
|
|
28
32
|
/**
|
|
29
33
|
* Returns the `aria-selected` of the header.
|
|
30
34
|
*/
|
|
31
35
|
get ariaSelected(): boolean;
|
|
36
|
+
/**
|
|
37
|
+
* Returns the `aria-sort` of the header.
|
|
38
|
+
*/
|
|
39
|
+
get ariaSort(): "ascending" | "descending";
|
|
40
|
+
/**
|
|
41
|
+
* @hidden
|
|
42
|
+
*/
|
|
43
|
+
get ariaColIndx(): number;
|
|
44
|
+
/**
|
|
45
|
+
* @hidden
|
|
46
|
+
*/
|
|
47
|
+
get ariaRowIndx(): number;
|
|
32
48
|
get columnGroupStyle(): boolean;
|
|
33
49
|
get sortAscendingStyle(): boolean;
|
|
34
50
|
get sortDescendingStyle(): boolean;
|
|
@@ -92,5 +108,5 @@ export declare class IgxGridHeaderComponent implements DoCheck, OnDestroy {
|
|
|
92
108
|
protected isAdvancedFilterApplied(): boolean;
|
|
93
109
|
private triggerSort;
|
|
94
110
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridHeaderComponent, never>;
|
|
95
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridHeaderComponent, "igx-grid-header", never, { "column": { "alias": "column"; "required": false; }; }, {}, never, never, true, never>;
|
|
111
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridHeaderComponent, "igx-grid-header", never, { "column": { "alias": "column"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, true, never>;
|
|
96
112
|
}
|
|
@@ -201,6 +201,10 @@ export declare class IgxPivotGridComponent extends IgxGridBaseDirective implemen
|
|
|
201
201
|
* @hidden @internal
|
|
202
202
|
*/
|
|
203
203
|
recordTemplate: TemplateRef<any>;
|
|
204
|
+
/**
|
|
205
|
+
* @hidden @internal
|
|
206
|
+
*/
|
|
207
|
+
rowDimensionMrlComponent: IgxPivotRowDimensionMrlRowComponent;
|
|
204
208
|
/**
|
|
205
209
|
* @hidden @internal
|
|
206
210
|
*/
|
|
@@ -939,6 +943,8 @@ export declare class IgxPivotGridComponent extends IgxGridBaseDirective implemen
|
|
|
939
943
|
get excelStyleFilterMinHeight(): string;
|
|
940
944
|
/** @hidden @internal */
|
|
941
945
|
get activeDescendant(): string;
|
|
946
|
+
/** @hidden @internal */
|
|
947
|
+
get headerRowActiveDescendant(): string;
|
|
942
948
|
protected resolveToggle(groupColumn: IgxColumnComponent, state: boolean): void;
|
|
943
949
|
protected buildDataView(data: any[]): void;
|
|
944
950
|
/**
|
|
@@ -7,7 +7,7 @@ import { IgxDropDownComponent } from '../../drop-down/drop-down.component';
|
|
|
7
7
|
import { ColumnType, PivotGridType } from '../common/grid.interface';
|
|
8
8
|
import { IgxGridHeaderRowComponent } from '../headers/grid-header-row.component';
|
|
9
9
|
import { IPivotAggregator, IPivotDimension, IPivotValue, PivotDimensionType } from './pivot-grid.interface';
|
|
10
|
-
import {
|
|
10
|
+
import { IgxPivotRowHeaderGroupComponent } from './pivot-row-header-group.component';
|
|
11
11
|
import * as i0 from "@angular/core";
|
|
12
12
|
/**
|
|
13
13
|
*
|
|
@@ -66,8 +66,9 @@ export declare class IgxPivotHeaderRowComponent extends IgxGridHeaderRowComponen
|
|
|
66
66
|
* @hidden
|
|
67
67
|
* @internal
|
|
68
68
|
*/
|
|
69
|
-
rowDimensionHeaders: QueryList<
|
|
69
|
+
rowDimensionHeaders: QueryList<IgxPivotRowHeaderGroupComponent>;
|
|
70
70
|
get headerForOf(): IgxGridForOfDirective<ColumnType, ColumnType[]>;
|
|
71
|
+
get activeDescendant(): string;
|
|
71
72
|
constructor(grid: PivotGridType, ref: ElementRef<HTMLElement>, cdr: ChangeDetectorRef, renderer: Renderer2);
|
|
72
73
|
/**
|
|
73
74
|
* @hidden
|
|
@@ -93,6 +94,11 @@ export declare class IgxPivotHeaderRowComponent extends IgxGridHeaderRowComponen
|
|
|
93
94
|
* @hidden
|
|
94
95
|
* @internal
|
|
95
96
|
*/
|
|
97
|
+
get isLeafHeaderAriaHidden(): boolean;
|
|
98
|
+
/**
|
|
99
|
+
* @hidden
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
96
102
|
calcHeight(col: ColumnType, index: number): number;
|
|
97
103
|
/**
|
|
98
104
|
* @hidden
|
|
@@ -21,6 +21,10 @@ export declare class IgxPivotRowDimensionHeaderGroupComponent extends IgxGridHea
|
|
|
21
21
|
* @hidden
|
|
22
22
|
*/
|
|
23
23
|
userSelect: string;
|
|
24
|
+
/**
|
|
25
|
+
* @hidden
|
|
26
|
+
*/
|
|
27
|
+
get role(): string;
|
|
24
28
|
constructor(cdRef: ChangeDetectorRef, grid: PivotGridType, elementRef: ElementRef<HTMLElement>, colResizingService: IgxPivotColumnResizingService, filteringService: IgxFilteringService, platform: PlatformUtil, zone: NgZone);
|
|
25
29
|
/**
|
|
26
30
|
* @hidden
|
|
@@ -17,6 +17,7 @@ export declare class IgxPivotRowDimensionMrlRowComponent extends IgxGridHeaderRo
|
|
|
17
17
|
protected injector: Injector;
|
|
18
18
|
protected envInjector: EnvironmentInjector;
|
|
19
19
|
protected viewRef: ViewContainerRef;
|
|
20
|
+
rowDimensionContentCollection: QueryList<IgxPivotRowDimensionContentComponent>;
|
|
20
21
|
pivotDim: boolean;
|
|
21
22
|
mrlBlock: boolean;
|
|
22
23
|
get rowsTemplate(): string;
|
|
@@ -20,6 +20,10 @@ export declare class IgxPivotRowHeaderGroupComponent extends IgxGridHeaderGroupC
|
|
|
20
20
|
* @hidden
|
|
21
21
|
*/
|
|
22
22
|
userSelect: string;
|
|
23
|
+
/**
|
|
24
|
+
* @hidden
|
|
25
|
+
*/
|
|
26
|
+
get role(): string;
|
|
23
27
|
constructor(cdRef: ChangeDetectorRef, grid: PivotGridType, elementRef: ElementRef<HTMLElement>, colResizingService: IgxPivotColumnResizingService, filteringService: IgxFilteringService, platform: PlatformUtil, zone: NgZone);
|
|
24
28
|
/**
|
|
25
29
|
* @hidden
|
package/package.json
CHANGED