igniteui-webcomponents-grids 7.1.0 → 7.2.0-beta.0

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.
@@ -190,6 +190,18 @@ import { IgcHierarchicalGridBaseDirectiveEventMap } from './igc-hierarchical-gri
190
190
 
191
191
 
192
192
 
193
+ /**
194
+ *
195
+ * Returns an array of the current cell selection in the form of `[{ column.field: cell.value }, ...]`.
196
+ *
197
+ * @remarks
198
+ * If `formatters` is enabled, the cell value will be formatted by its respective column formatter (if any).
199
+ * If `headers` is enabled, it will use the column header (if any) instead of the column field.
200
+ */
201
+ public getSelectedData(formatters?: boolean, headers?: boolean): any[];
202
+
203
+
204
+
193
205
  /**
194
206
  * Returns a `CellType` object that matches the conditions.
195
207
  *
@@ -0,0 +1,11 @@
1
+
2
+
3
+
4
+
5
+ export declare class IgcPivotAggregation
6
+ {
7
+
8
+ }
9
+
10
+
11
+
@@ -1,5 +1,6 @@
1
1
 
2
2
  import { PivotAggregationType } from './pivot-aggregation-type';
3
+ import { IgcPivotAggregation } from './igc-pivot-aggregation';
3
4
 
4
5
 
5
6
  /* jsonAPIPlainObject */
@@ -39,7 +40,7 @@ import { PivotAggregationType } from './pivot-aggregation-type';
39
40
  * Aggregator function can be a custom implementation of `PivotAggregation`, or
40
41
  * use predefined ones from `IgxPivotAggregate` and its variants.
41
42
  */
42
- public aggregator?: any;
43
+ public aggregator?: IgcPivotAggregation;
43
44
 
44
45
  }
45
46
 
@@ -205,6 +205,7 @@ export { RowPinningPosition } from "./row-pinning-position";
205
205
  export type { IgcFieldPipeArgs } from "./igc-field-pipe-args";
206
206
  export type { IgcFieldEditorOptions } from "./igc-field-editor-options";
207
207
  export type { PivotAggregationType } from "./pivot-aggregation-type";
208
+ export type { IgcPivotAggregation } from "./igc-pivot-aggregation";
208
209
  export type { IgcPositionSettings } from "./igc-position-settings";
209
210
  export type { IgcCancelableEventArgs } from "./igc-cancelable-event-args";
210
211
  export type { ValidationStatus } from "./validation-status";