igniteui-angular 21.2.6 → 21.2.7
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-date-picker.mjs +2 -0
- package/fesm2022/igniteui-angular-date-picker.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-grid.mjs +1 -1
- package/fesm2022/igniteui-angular-grids-grid.mjs.map +1 -1
- package/fesm2022/igniteui-angular-grids-hierarchical-grid.mjs +20 -0
- package/fesm2022/igniteui-angular-grids-hierarchical-grid.mjs.map +1 -1
- package/package.json +1 -1
- package/types/igniteui-angular-grids-hierarchical-grid.d.ts +9 -0
package/package.json
CHANGED
|
@@ -765,6 +765,15 @@ declare class IgxHierarchicalGridComponent extends IgxHierarchicalGridBaseDirect
|
|
|
765
765
|
* ```
|
|
766
766
|
*/
|
|
767
767
|
get selectedCells(): CellType[];
|
|
768
|
+
/**
|
|
769
|
+
*
|
|
770
|
+
* Returns an array of the current cell selection in the form of `[{ column.field: cell.value }, ...]`.
|
|
771
|
+
*
|
|
772
|
+
* @remarks
|
|
773
|
+
* If `formatters` is enabled, the cell value will be formatted by its respective column formatter (if any).
|
|
774
|
+
* If `headers` is enabled, it will use the column header (if any) instead of the column field.
|
|
775
|
+
*/
|
|
776
|
+
getSelectedData(formatters?: boolean, headers?: boolean): any[];
|
|
768
777
|
/**
|
|
769
778
|
* Returns a `CellType` object that matches the conditions.
|
|
770
779
|
*
|