igniteui-angular 20.1.28 → 20.1.31
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 +27 -4
- package/fesm2022/igniteui-angular.mjs.map +1 -1
- package/index.d.ts +10 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -36157,6 +36157,7 @@ declare class IgxPivotGridComponent extends IgxGridBaseDirective implements OnIn
|
|
|
36157
36157
|
protected rowDimensionByName(memberName: string): IPivotDimension;
|
|
36158
36158
|
protected calculateResizerTop(): any;
|
|
36159
36159
|
protected updateDefaultRowHeight(): void;
|
|
36160
|
+
protected trackHorizontalRowGroup: (_index: number, rowGroup: IPivotGridRecord[]) => number;
|
|
36160
36161
|
/**
|
|
36161
36162
|
* @hidden @internal
|
|
36162
36163
|
*/
|
|
@@ -39195,6 +39196,15 @@ declare class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirect
|
|
|
39195
39196
|
* ```
|
|
39196
39197
|
*/
|
|
39197
39198
|
get selectedCells(): CellType[];
|
|
39199
|
+
/**
|
|
39200
|
+
*
|
|
39201
|
+
* Returns an array of the current cell selection in the form of `[{ column.field: cell.value }, ...]`.
|
|
39202
|
+
*
|
|
39203
|
+
* @remarks
|
|
39204
|
+
* If `formatters` is enabled, the cell value will be formatted by its respective column formatter (if any).
|
|
39205
|
+
* If `headers` is enabled, it will use the column header (if any) instead of the column field.
|
|
39206
|
+
*/
|
|
39207
|
+
getSelectedData(formatters?: boolean, headers?: boolean): any[];
|
|
39198
39208
|
/**
|
|
39199
39209
|
* Returns a `CellType` object that matches the conditions.
|
|
39200
39210
|
*
|
package/package.json
CHANGED