@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.
@@ -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.2",
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.59",
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
@@ -69,5 +69,5 @@
69
69
  "publishConfig": {
70
70
  "access": "public"
71
71
  },
72
- "version": "6.0.157"
72
+ "version": "6.0.159"
73
73
  }