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