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.
- package/custom-elements.json +34 -0
- package/grids/3rdpartylicenses.txt +158 -524
- package/grids/combined.js +63810 -63937
- package/grids/lib/igc-hierarchical-grid-component.d.ts +12 -0
- package/grids/lib/igc-pivot-aggregation.d.ts +11 -0
- package/grids/lib/igc-pivot-aggregator.d.ts +2 -1
- package/grids/lib/index.d.ts +1 -0
- package/grids/themes/dark/bootstrap.css +1 -1
- package/grids/themes/dark/fluent.css +1 -1
- package/grids/themes/dark/indigo.css +1 -1
- package/grids/themes/dark/material.css +1 -1
- package/grids/themes/light/bootstrap.css +1 -1
- package/grids/themes/light/fluent.css +1 -1
- package/grids/themes/light/indigo.css +1 -1
- package/grids/themes/light/material.css +1 -1
- package/package.json +1 -1
|
@@ -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
|
*
|
|
@@ -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?:
|
|
43
|
+
public aggregator?: IgcPivotAggregation;
|
|
43
44
|
|
|
44
45
|
}
|
|
45
46
|
|
package/grids/lib/index.d.ts
CHANGED
|
@@ -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";
|