igniteui-angular 21.2.2 → 21.2.3
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-grids-core.mjs +31 -5
- package/fesm2022/igniteui-angular-grids-core.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-grid.mjs +13 -9
- package/fesm2022/igniteui-angular-grids-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-hierarchical-grid.mjs +4 -4
- package/fesm2022/igniteui-angular-grids-hierarchical-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-pivot-grid.mjs +2 -2
- package/fesm2022/igniteui-angular-grids-pivot-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-tree-grid.mjs +4 -4
- package/fesm2022/igniteui-angular-grids-tree-grid.mjs.map +1 -1
- package/package.json +1 -1
- package/types/igniteui-angular-grids-core.d.ts +14 -0
package/package.json
CHANGED
|
@@ -3389,6 +3389,7 @@ declare class IgxGridFilteringCellComponent implements AfterViewInit, OnInit, Do
|
|
|
3389
3389
|
get pinnedCss(): boolean;
|
|
3390
3390
|
get pinnedLastCss(): boolean;
|
|
3391
3391
|
get pinnedFirstCSS(): boolean;
|
|
3392
|
+
role: string;
|
|
3392
3393
|
private baseClass;
|
|
3393
3394
|
constructor();
|
|
3394
3395
|
ngOnInit(): void;
|
|
@@ -7554,6 +7555,10 @@ declare class IgxGridHeaderRowComponent implements DoCheck {
|
|
|
7554
7555
|
pinnedEndColumnCollection: ColumnType[];
|
|
7555
7556
|
/** Unpinned columns of the grid. */
|
|
7556
7557
|
unpinnedColumnCollection: ColumnType[];
|
|
7558
|
+
/**
|
|
7559
|
+
* @hidden @internal
|
|
7560
|
+
*/
|
|
7561
|
+
role: string;
|
|
7557
7562
|
get activeDescendant(): string;
|
|
7558
7563
|
hasMRL: boolean;
|
|
7559
7564
|
width: number;
|
|
@@ -8112,6 +8117,11 @@ declare class IgxGridToolbarComponent implements OnDestroy {
|
|
|
8112
8117
|
* @internal
|
|
8113
8118
|
*/
|
|
8114
8119
|
defaultStyle: boolean;
|
|
8120
|
+
/**
|
|
8121
|
+
* @hidden
|
|
8122
|
+
* @internal
|
|
8123
|
+
*/
|
|
8124
|
+
role: string;
|
|
8115
8125
|
protected _grid: GridType;
|
|
8116
8126
|
protected sub: Subscription;
|
|
8117
8127
|
constructor();
|
|
@@ -10367,6 +10377,10 @@ declare abstract class IgxGroupByAreaDirective {
|
|
|
10367
10377
|
*/
|
|
10368
10378
|
dropAreaTemplate: TemplateRef<void>;
|
|
10369
10379
|
defaultClass: boolean;
|
|
10380
|
+
/**
|
|
10381
|
+
* @hidden @internal
|
|
10382
|
+
*/
|
|
10383
|
+
role: string;
|
|
10370
10384
|
/** The parent grid containing the component. */
|
|
10371
10385
|
grid: FlatGridType | GridType;
|
|
10372
10386
|
/**
|