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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "21.2.6",
3
+ "version": "21.2.7",
4
4
  "description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
5
5
  "author": "Infragistics",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -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
  *