@refinitiv-ui/efx-grid 6.0.107 → 6.0.108
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/lib/core/dist/core.js +157 -56
- package/lib/core/dist/core.min.js +1 -1
- package/lib/core/es6/grid/Core.d.ts +2 -2
- package/lib/core/es6/grid/Core.js +156 -55
- package/lib/core/es6/grid/components/Scrollbar.js +1 -1
- package/lib/formatters/es6/index.d.ts +22 -1
- package/lib/formatters/es6/index.js +22 -1
- package/lib/grid/index.js +1 -1
- package/lib/tr-grid-column-grouping/es6/ColumnGrouping.js +1452 -1304
- package/lib/tr-grid-util/es6/GroupDefinitions.js +3 -3
- package/lib/types/es6/Core/grid/Core.d.ts +2 -2
- package/lib/types/es6/RowFiltering.d.ts +2 -0
- package/lib/versions.json +3 -3
- package/package.json +1 -1
@@ -400,9 +400,9 @@ GroupDefinitions.prototype.setGroup = function (groupId, groupDef) {
|
|
400
400
|
if(curDef) { // Replace
|
401
401
|
this.removeAllChildren(groupId);
|
402
402
|
}
|
403
|
-
let
|
404
|
-
if(
|
405
|
-
newDef.parentId =
|
403
|
+
let parentId = this._childToParent[groupId];
|
404
|
+
if(parentId) {
|
405
|
+
newDef.parentId = parentId;
|
406
406
|
}
|
407
407
|
this._groupMap[groupId] = newDef;
|
408
408
|
|
@@ -371,8 +371,6 @@ declare class Core extends ElementWrapper {
|
|
371
371
|
|
372
372
|
public reserveRightSpace(size: number): boolean;
|
373
373
|
|
374
|
-
public getHiddenInput(): Element|null;
|
375
|
-
|
376
374
|
public focus(): void;
|
377
375
|
|
378
376
|
public isBinding(): boolean;
|
@@ -391,6 +389,8 @@ declare class Core extends ElementWrapper {
|
|
391
389
|
|
392
390
|
public isSelectedColumn(colIndex: number): boolean;
|
393
391
|
|
392
|
+
public updateColumnBounds(): void;
|
393
|
+
|
394
394
|
public getColumnRect(startColIndex: number, endColIndex: number): any;
|
395
395
|
|
396
396
|
public getRowRect(startRowIndex: number, endRowIndex: number): any;
|
@@ -26,6 +26,7 @@ declare namespace RowFilteringPlugin {
|
|
26
26
|
type FilterDialogOptions = {
|
27
27
|
sortUI?: boolean|null,
|
28
28
|
filterUI?: boolean|null,
|
29
|
+
advancedFilter?: boolean|null,
|
29
30
|
fieldDataType?: string|null,
|
30
31
|
lang?: string|null,
|
31
32
|
rawDataAccessor?: ((...params: any[]) => any)|null,
|
@@ -33,6 +34,7 @@ declare namespace RowFilteringPlugin {
|
|
33
34
|
sortLogic?: ((...params: any[]) => any)|null,
|
34
35
|
itemList?: any[]|null,
|
35
36
|
additionalItems?: any[]|null,
|
37
|
+
compactMode?: boolean|null,
|
36
38
|
blankValues?: (boolean|string)|null
|
37
39
|
};
|
38
40
|
|
package/lib/versions.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
{
|
2
|
-
"tr-grid-util": "1.3.
|
2
|
+
"tr-grid-util": "1.3.153",
|
3
3
|
"tr-grid-printer": "1.0.18",
|
4
4
|
"@grid/column-dragging": "1.0.20",
|
5
5
|
"@grid/row-segmenting": "1.0.31",
|
@@ -10,7 +10,7 @@
|
|
10
10
|
"tr-grid-checkbox": "1.0.67",
|
11
11
|
"tr-grid-column-fitter": "1.0.41",
|
12
12
|
"tr-grid-column-formatting": "0.9.36",
|
13
|
-
"tr-grid-column-grouping": "1.0.
|
13
|
+
"tr-grid-column-grouping": "1.0.62",
|
14
14
|
"tr-grid-column-resizing": "1.0.29",
|
15
15
|
"tr-grid-column-selection": "1.0.33",
|
16
16
|
"tr-grid-column-stack": "1.0.75",
|
@@ -30,7 +30,7 @@
|
|
30
30
|
"tr-grid-rowcoloring": "1.0.25",
|
31
31
|
"tr-grid-textformatting": "1.0.48",
|
32
32
|
"tr-grid-titlewrap": "1.0.22",
|
33
|
-
"@grid/formatters": "1.0.
|
33
|
+
"@grid/formatters": "1.0.55",
|
34
34
|
"@grid/column-selection-dialog": "4.0.57",
|
35
35
|
"@grid/filter-dialog": "4.0.65",
|
36
36
|
"@grid/column-format-dialog": "4.0.45"
|
package/package.json
CHANGED