igniteui-webcomponents-grids 6.1.2-alpha.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.
@@ -0,0 +1,14 @@
1
+
2
+ import { IgcDefaultMergeStrategy } from './igc-default-merge-strategy';
3
+
4
+
5
+
6
+
7
+
8
+ export declare class IgcByLevelTreeGridMergeStrategy extends IgcDefaultMergeStrategy
9
+ {
10
+
11
+ }
12
+
13
+
14
+
@@ -0,0 +1,17 @@
1
+
2
+
3
+
4
+
5
+
6
+
7
+ export declare class IgcDefaultMergeStrategy
8
+ {
9
+
10
+
11
+
12
+ public static instance(): IgcDefaultMergeStrategy;
13
+
14
+ }
15
+
16
+
17
+
@@ -0,0 +1,15 @@
1
+
2
+ import { IgcDefaultMergeStrategy } from './igc-default-merge-strategy';
3
+
4
+
5
+
6
+
7
+
8
+
9
+ export declare class IgcDefaultTreeGridMergeStrategy extends IgcDefaultMergeStrategy
10
+ {
11
+
12
+ }
13
+
14
+
15
+
@@ -1,6 +1,4 @@
1
1
 
2
- import { number[] } from './number-[]';
3
- import { IgcGridBaseDirective } from './igc-grid-base-directive';
4
2
 
5
3
 
6
4
  /* jsonAPIPlainObject */
@@ -14,14 +12,6 @@ import { IgcGridBaseDirective } from './igc-grid-base-directive';
14
12
  {
15
13
 
16
14
 
17
- /* blazorCSSuppress */
18
- /**
19
- * Function that processes merging of the whole data per merged field.
20
- * Returns collection where object has reference to the original record and map of the cell merge metadata per field.
21
- */
22
- public merge(data: any[], field: string, comparer: any, result: any[], activeRowIndexes: number[], isDate?: boolean, isTime?: boolean, grid?: IgcGridBaseDirective): any[];
23
-
24
-
25
15
  /**
26
16
  * Function that compares values for merging. Returns true if same, false if different.
27
17
  */
@@ -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";