igniteui-angular 21.1.5 → 21.1.6
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 +5 -0
- package/fesm2022/igniteui-angular-grids-core.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-grid.mjs +9 -3
- package/fesm2022/igniteui-angular-grids-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-pivot-grid.mjs +4 -0
- package/fesm2022/igniteui-angular-grids-pivot-grid.mjs.map +1 -1
- package/package.json +1 -1
- package/types/igniteui-angular-grids-grid.d.ts +1 -0
- package/types/igniteui-angular-grids-pivot-grid.d.ts +1 -0
package/package.json
CHANGED
|
@@ -3633,6 +3633,7 @@ declare abstract class IgxGridBaseDirective implements GridType, OnInit, DoCheck
|
|
|
3633
3633
|
private configureRowEditingOverlay;
|
|
3634
3634
|
private handleColumnPinningForGroups;
|
|
3635
3635
|
protected shouldRecreateColumns(oldData: any[] | null | undefined, newData: any[] | null | undefined): boolean;
|
|
3636
|
+
protected onContentSizeChange(): void;
|
|
3636
3637
|
/**
|
|
3637
3638
|
* Clears the current navigation service active node
|
|
3638
3639
|
*/
|
|
@@ -1451,6 +1451,7 @@ declare class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIn
|
|
|
1451
1451
|
get headerRowActiveDescendant(): string;
|
|
1452
1452
|
protected resolveToggle(groupColumn: ColumnType, state: boolean): void;
|
|
1453
1453
|
protected buildDataView(data: any[]): void;
|
|
1454
|
+
protected onContentSizeChange(): void;
|
|
1454
1455
|
/**
|
|
1455
1456
|
* @hidden @internal
|
|
1456
1457
|
*/
|