@refinitiv-ui/efx-grid 6.0.128 → 6.0.129

Sign up to get free protection for your applications and to get access to all the features.
@@ -2305,9 +2305,9 @@ RowFilteringPlugin.prototype._onDialogSortChanged = function(e) {
2305
2305
  let eDetail = e.detail.value ? e.detail.value : e.detail;
2306
2306
 
2307
2307
  if(stp.getSortOrder(colIndex) === eDetail) {
2308
- stp.sortColumn(colIndex, "n");
2308
+ stp.sortColumn(colIndex, "n", { "isUserAction": true });
2309
2309
  } else {
2310
- stp.sortColumn(colIndex, eDetail);
2310
+ stp.sortColumn(colIndex, eDetail, { "isUserAction": true } );
2311
2311
  }
2312
2312
  this._dispatch("dialogCommitted", {
2313
2313
  "sortOrder": e.detail.value,
@@ -2,7 +2,7 @@ import { Ext } from "../../tr-grid-util/es6/Ext.js";
2
2
  import { GridPlugin } from "../../tr-grid-util/es6/GridPlugin.js";
3
3
  import { MouseDownTrait } from "../../tr-grid-util/es6/MouseDownTrait.js";
4
4
  import { EventDispatcher } from "../../tr-grid-util/es6/EventDispatcher.js";
5
- import { isIE, cloneObject, prepareTSVContent } from "../../tr-grid-util/es6/Util.js";
5
+ import { cloneObject, prepareTSVContent } from "../../tr-grid-util/es6/Util.js";
6
6
  import { ElfUtil } from "../../tr-grid-util/es6/ElfUtil.js";
7
7
  import { injectCss, prettifyCss } from "../../tr-grid-util/es6/Util.js";
8
8
 
@@ -16,7 +16,8 @@ declare namespace CellSelectionPlugin {
16
16
  selectionChanged?: ((...params: any[]) => any)|null,
17
17
  copy?: ((...params: any[]) => any)|null,
18
18
  beforeMouseDown?: ((...params: any[]) => any)|null,
19
- selectableSections?: any[]|null
19
+ selectableSections?: any[]|null,
20
+ copyDisabled?: boolean|null
20
21
  };
21
22
 
22
23
  }
@@ -80,6 +80,8 @@ declare class DataTable extends DataCache {
80
80
 
81
81
  public isFrozen(): boolean;
82
82
 
83
+ public setSegmentSeparators(rids: (string)[]|null, enabled?: boolean|null): boolean;
84
+
83
85
  public setSegmentSeparator(rid: string, enabled?: boolean|null): boolean;
84
86
 
85
87
  public unsetAllSegmentSeparators(): boolean;
@@ -106,6 +108,8 @@ declare class DataTable extends DataCache {
106
108
 
107
109
  public addSegmentChildren(segmentId: string, rids: (string)[]|null, dataIds?: (string)[]|null): boolean;
108
110
 
111
+ public setSegmentChildren(segmentArr: (any)[]|null): boolean;
112
+
109
113
  public removeSegmentChild(segmentId: string, rid: string): boolean;
110
114
 
111
115
  public removeSegmentChildren(segmentId: string, rids: (string)[]|null): boolean;
@@ -246,6 +246,8 @@ declare class DataView extends EventDispatcher {
246
246
 
247
247
  public synchronizeRowOrder(): void;
248
248
 
249
+ public setSegmentSeparators(rowIds: (string)[]|null, enabled?: boolean|null): boolean;
250
+
249
251
  public setSegmentSeparator(rowRef: string|number|null, enabled?: boolean|null): boolean;
250
252
 
251
253
  public unsetAllSegmentSeparators(): boolean;
@@ -264,6 +266,8 @@ declare class DataView extends EventDispatcher {
264
266
 
265
267
  public collapseSegment(rowRef: string|number|null, collapsed?: boolean|null): boolean;
266
268
 
269
+ public collapseSegments(rowIds: (string|number)[]|null, collapsed?: boolean|null): boolean;
270
+
267
271
  public expandSegment(rowRef: string|number|null, expanded?: boolean|null): boolean;
268
272
 
269
273
  public expandAllSegments(): boolean;
@@ -278,6 +282,8 @@ declare class DataView extends EventDispatcher {
278
282
 
279
283
  public addSegmentChildren(segmentRef: string|number|null, rowRefs: (string|number)[]|null, dataIds?: (string)[]|null): boolean;
280
284
 
285
+ public setSegmentChildren(segmentArr: (any)[]|null): boolean;
286
+
281
287
  public removeSegmentChild(segmentRef: string|number|null, rowRef: string|number|null): boolean;
282
288
 
283
289
  public removeSegmentChildren(segmentRef: string|number|null, rowRefs: (string|number)[]|null): boolean;
@@ -30,6 +30,8 @@ declare class SegmentCollection extends EventDispatcher {
30
30
 
31
31
  public getSegmentIds(): (string)[];
32
32
 
33
+ public collapseSegments(segmentIds: (string)[]|null, bool?: boolean|null): boolean;
34
+
33
35
  public collapseSegment(segmentId: string, bool?: boolean|null): boolean;
34
36
 
35
37
  public expandSegment(segmentId: string, bool?: boolean|null): boolean;
@@ -51,6 +51,8 @@ declare class RowSegmentingPlugin extends GridPlugin {
51
51
 
52
52
  public _resolveDisplayColumn(): number;
53
53
 
54
+ public setSegmentSeparators(rowIds: (string)[]|null, enabled?: boolean|null): boolean;
55
+
54
56
  public setSegmentSeparator(rowRef: string|number|null, enabled?: boolean|null): boolean;
55
57
 
56
58
  public setSegmentClassification(rowRef: string|number|null, fields: string|(string)[]|null): boolean;
@@ -61,6 +63,8 @@ declare class RowSegmentingPlugin extends GridPlugin {
61
63
 
62
64
  public isSegmentSeparator(rowRef: string|number|null): boolean;
63
65
 
66
+ public collapseSegments(rowIds: (string )[]|null, collapsed: (string )[]|null): boolean;
67
+
64
68
  public collapseSegment(rowRef: string|number|null, collapsed?: boolean|null): boolean;
65
69
 
66
70
  public expandSegment(rowRef: string|number|null, expanded?: boolean|null): boolean;
@@ -77,6 +81,8 @@ declare class RowSegmentingPlugin extends GridPlugin {
77
81
 
78
82
  public addSegmentChild(segmentRef: string|number|null, rowRef: string|number|null): void;
79
83
 
84
+ public setSegmentChildren(segmentArr: (any)[]|null): void;
85
+
80
86
  public addSegmentChildren(segmentRef: string|number|null, rowRefs: (string|number)[]|null): void;
81
87
 
82
88
  public removeSegmentChild(segmentRef: string|number|null, rowRef: string|number|null): void;
package/lib/versions.json CHANGED
@@ -2,11 +2,11 @@
2
2
  "tr-grid-util": "1.3.161",
3
3
  "tr-grid-printer": "1.0.18",
4
4
  "@grid/column-dragging": "1.0.21",
5
- "@grid/row-segmenting": "1.0.34",
5
+ "@grid/row-segmenting": "1.0.35",
6
6
  "@grid/statistics-row": "1.0.17",
7
7
  "@grid/zoom": "1.0.11",
8
8
  "tr-grid-auto-tooltip": "1.1.8",
9
- "tr-grid-cell-selection": "1.0.38",
9
+ "tr-grid-cell-selection": "1.0.39",
10
10
  "tr-grid-checkbox": "1.0.70",
11
11
  "tr-grid-column-fitter": "1.0.41",
12
12
  "tr-grid-column-formatting": "0.9.36",
@@ -24,7 +24,7 @@
24
24
  "tr-grid-percent-bar": "1.0.24",
25
25
  "tr-grid-range-bar": "2.0.8",
26
26
  "tr-grid-row-dragging": "1.0.36",
27
- "tr-grid-row-filtering": "1.0.82",
27
+ "tr-grid-row-filtering": "1.0.83",
28
28
  "tr-grid-row-grouping": "1.0.88",
29
29
  "tr-grid-row-selection": "1.0.32",
30
30
  "tr-grid-rowcoloring": "1.0.25",
package/package.json CHANGED
@@ -69,5 +69,5 @@
69
69
  "publishConfig": {
70
70
  "access": "public"
71
71
  },
72
- "version": "6.0.128"
72
+ "version": "6.0.129"
73
73
  }