igniteui-webcomponents-grids 6.1.0 → 6.1.2-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 +28 -0
- package/grids/lib/igc-by-level-tree-grid-merge-strategy.d.ts +14 -0
- package/grids/lib/igc-default-merge-strategy.d.ts +17 -0
- package/grids/lib/igc-default-tree-grid-merge-strategy.d.ts +15 -0
- package/grids/lib/igc-exporter-options.d.ts +14 -0
- package/grids/lib/index.d.ts +4 -0
- package/package.json +1 -1
package/custom-elements.json
CHANGED
|
@@ -22123,6 +22123,27 @@
|
|
|
22123
22123
|
"name": "IgcGroupByRecord"
|
|
22124
22124
|
}
|
|
22125
22125
|
},
|
|
22126
|
+
{
|
|
22127
|
+
"kind": "js",
|
|
22128
|
+
"name": "IgcDefaultTreeGridMergeStrategy",
|
|
22129
|
+
"declaration": {
|
|
22130
|
+
"name": "IgcDefaultTreeGridMergeStrategy"
|
|
22131
|
+
}
|
|
22132
|
+
},
|
|
22133
|
+
{
|
|
22134
|
+
"kind": "js",
|
|
22135
|
+
"name": "IgcDefaultMergeStrategy",
|
|
22136
|
+
"declaration": {
|
|
22137
|
+
"name": "IgcDefaultMergeStrategy"
|
|
22138
|
+
}
|
|
22139
|
+
},
|
|
22140
|
+
{
|
|
22141
|
+
"kind": "js",
|
|
22142
|
+
"name": "IgcByLevelTreeGridMergeStrategy",
|
|
22143
|
+
"declaration": {
|
|
22144
|
+
"name": "IgcByLevelTreeGridMergeStrategy"
|
|
22145
|
+
}
|
|
22146
|
+
},
|
|
22126
22147
|
{
|
|
22127
22148
|
"kind": "js",
|
|
22128
22149
|
"name": "IgcNoopPivotDimensionsStrategy",
|
|
@@ -23222,6 +23243,13 @@
|
|
|
23222
23243
|
"name": "IgcBaseExporter"
|
|
23223
23244
|
}
|
|
23224
23245
|
},
|
|
23246
|
+
{
|
|
23247
|
+
"kind": "js",
|
|
23248
|
+
"name": "IgcExporterOptions",
|
|
23249
|
+
"declaration": {
|
|
23250
|
+
"name": "IgcExporterOptions"
|
|
23251
|
+
}
|
|
23252
|
+
},
|
|
23225
23253
|
{
|
|
23226
23254
|
"kind": "js",
|
|
23227
23255
|
"name": "IgcCancelableBrowserEventArgs",
|
package/grids/lib/index.d.ts
CHANGED
|
@@ -22,6 +22,9 @@ export type { IgcBaseFilteringStrategy } from "./igc-base-filtering-strategy";
|
|
|
22
22
|
export { IgcFilteringExpressionsTree } from "./igc-filtering-expressions-tree";
|
|
23
23
|
export type { IgcGroupByResult } from "./igc-group-by-result";
|
|
24
24
|
export type { IgcGroupByRecord } from "./igc-group-by-record";
|
|
25
|
+
export type { IgcDefaultTreeGridMergeStrategy } from "./igc-default-tree-grid-merge-strategy";
|
|
26
|
+
export type { IgcDefaultMergeStrategy } from "./igc-default-merge-strategy";
|
|
27
|
+
export { IgcByLevelTreeGridMergeStrategy } from "./igc-by-level-tree-grid-merge-strategy";
|
|
25
28
|
export { IgcNoopPivotDimensionsStrategy } from "./igc-noop-pivot-dimensions-strategy";
|
|
26
29
|
export type { IgcPivotDimension } from "./igc-pivot-dimension";
|
|
27
30
|
export type { IgcPivotValue } from "./igc-pivot-value";
|
|
@@ -179,6 +182,7 @@ export type { PivotSummaryPosition } from "./pivot-summary-position";
|
|
|
179
182
|
export type { IgcPositionStrategy } from "./igc-position-strategy";
|
|
180
183
|
export type { IgcScrollStrategy } from "./igc-scroll-strategy";
|
|
181
184
|
export type { IgcBaseExporterEventMap, IgcBaseExporter } from "./igc-base-exporter";
|
|
185
|
+
export type { IgcExporterOptions } from "./igc-exporter-options";
|
|
182
186
|
export type { IgcCancelableBrowserEventArgs } from "./igc-cancelable-browser-event-args";
|
|
183
187
|
export { RowPinningPosition } from "./row-pinning-position";
|
|
184
188
|
export type { PivotAggregationType } from "./pivot-aggregation-type";
|
package/package.json
CHANGED