@refinitiv-ui/efx-grid 6.0.157 → 6.0.159
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/column-selection-dialog/lib/column-selection-dialog.d.ts +4 -1
- package/lib/column-selection-dialog/lib/column-selection-dialog.js +36 -25
- package/lib/core/dist/core.js +205 -195
- package/lib/core/dist/core.min.js +1 -1
- package/lib/core/es6/data/DataTable.js +31 -17
- package/lib/core/es6/data/DataView.js +1 -0
- package/lib/core/es6/data/Segment.d.ts +4 -4
- package/lib/core/es6/data/Segment.js +67 -95
- package/lib/core/es6/data/SegmentCollection.d.ts +5 -1
- package/lib/core/es6/data/SegmentCollection.js +65 -76
- package/lib/core/es6/grid/Core.js +4 -1
- package/lib/core/es6/grid/plugins/SortableTitlePlugin.js +37 -6
- package/lib/grid/index.js +1 -1
- package/lib/rt-grid/dist/rt-grid.js +205 -195
- package/lib/rt-grid/dist/rt-grid.min.js +1 -1
- package/lib/types/es6/Core/data/Segment.d.ts +4 -4
- package/lib/types/es6/Core/data/SegmentCollection.d.ts +5 -1
- package/lib/versions.json +2 -2
- package/package.json +1 -1
@@ -53,9 +53,7 @@ declare class Segment extends EventDispatcher {
|
|
53
53
|
|
54
54
|
public getAllSubSegments(out_ary?: (Segment)[]|null): (Segment)[]|null;
|
55
55
|
|
56
|
-
public updateTreeStructure(counter: number): number;
|
57
|
-
|
58
|
-
public calcSubSegmentOrder(counter: number): number;
|
56
|
+
public updateTreeStructure(counter: number, rootOrder: number, ridMap: any): number;
|
59
57
|
|
60
58
|
public getSegmentLevel(): number;
|
61
59
|
|
@@ -87,5 +85,7 @@ declare class Segment extends EventDispatcher {
|
|
87
85
|
|
88
86
|
}
|
89
87
|
|
88
|
+
declare const UNCATEGORY: string;
|
89
|
+
|
90
90
|
export default Segment;
|
91
|
-
export { Segment };
|
91
|
+
export { Segment, UNCATEGORY };
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import Ext from "../../../../tr-grid-util/es6/Ext.js";
|
2
2
|
import EventDispatcher from "../../../../tr-grid-util/es6/EventDispatcher.js";
|
3
|
-
import Segment from "./Segment.js";
|
3
|
+
import { Segment, UNCATEGORY } from "./Segment.js";
|
4
4
|
|
5
5
|
declare class SegmentCollection extends EventDispatcher {
|
6
6
|
|
@@ -44,6 +44,8 @@ declare class SegmentCollection extends EventDispatcher {
|
|
44
44
|
|
45
45
|
public getCollapsedRows(): any;
|
46
46
|
|
47
|
+
public invalidateSegmentOrder(): boolean;
|
48
|
+
|
47
49
|
public addSegmentChild(segmentId: string, rid: string, dataId?: string|null): boolean;
|
48
50
|
|
49
51
|
public addSegmentChildren(segmentId: string, rids: (string)[]|null, dataIds?: (string)[]|null): boolean;
|
@@ -62,6 +64,8 @@ declare class SegmentCollection extends EventDispatcher {
|
|
62
64
|
|
63
65
|
public calcSegmentOrder(rids: (string)[]|null, useCache?: boolean|null): void;
|
64
66
|
|
67
|
+
public getSegmentValues(rids: (string)[], partial?: boolean|null): (number)[]|null;
|
68
|
+
|
65
69
|
public logStructure(): string;
|
66
70
|
|
67
71
|
public logRowIdMap(): string;
|
package/lib/versions.json
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
"tr-grid-util": "1.3.175",
|
3
3
|
"tr-grid-printer": "1.0.18",
|
4
4
|
"@grid/column-dragging": "1.0.22",
|
5
|
-
"@grid/row-segmenting": "2.0.
|
5
|
+
"@grid/row-segmenting": "2.0.3",
|
6
6
|
"@grid/statistics-row": "1.0.17",
|
7
7
|
"@grid/zoom": "1.0.13",
|
8
8
|
"tr-grid-auto-tooltip": "1.1.9",
|
@@ -31,7 +31,7 @@
|
|
31
31
|
"tr-grid-textformatting": "1.0.49",
|
32
32
|
"tr-grid-titlewrap": "1.0.22",
|
33
33
|
"@grid/formatters": "1.0.56",
|
34
|
-
"@grid/column-selection-dialog": "4.0.
|
34
|
+
"@grid/column-selection-dialog": "4.0.61",
|
35
35
|
"@grid/filter-dialog": "4.0.79",
|
36
36
|
"@grid/column-format-dialog": "4.0.45"
|
37
37
|
}
|
package/package.json
CHANGED