@refinitiv-ui/efx-grid 6.0.103 → 6.0.105
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 +14 -137
- package/lib/core/dist/core.min.js +1 -1
- package/lib/core/es6/data/DataCache.d.ts +0 -8
- package/lib/core/es6/data/DataCache.js +13 -136
- package/lib/core/es6/grid/Core.js +1 -1
- package/lib/grid/index.js +1 -1
- package/lib/rt-grid/dist/rt-grid.js +356 -734
- package/lib/rt-grid/dist/rt-grid.min.js +1 -1
- package/lib/rt-grid/es6/FieldDefinition.js +4 -4
- package/lib/rt-grid/es6/Grid.d.ts +1 -1
- package/lib/rt-grid/es6/Grid.js +8 -49
- package/lib/rt-grid/es6/RowDefinition.d.ts +5 -3
- package/lib/rt-grid/es6/RowDefinition.js +49 -20
- package/lib/tr-grid-column-fitter/es6/ColumnFitter.js +523 -708
- package/lib/tr-grid-column-resizing/es6/ColumnResizing.d.ts +16 -16
- package/lib/tr-grid-column-resizing/es6/ColumnResizing.js +131 -109
- package/lib/types/es6/ColumnResizing.d.ts +16 -16
- package/lib/types/es6/Core/data/DataCache.d.ts +0 -8
- package/lib/types/es6/RealtimeGrid/FieldDefinition.d.ts +1 -1
- package/lib/types/es6/RealtimeGrid/Grid.d.ts +1 -1
- package/lib/types/es6/RealtimeGrid/RowDefinition.d.ts +5 -3
- package/lib/versions.json +2 -2
- package/package.json +3 -2
@@ -49,14 +49,6 @@ declare class DataCache extends EventDispatcher {
|
|
49
49
|
|
50
50
|
public cloneRowData(rid: string): any;
|
51
51
|
|
52
|
-
public addStaticFields(fields: (string)[]|null): void;
|
53
|
-
|
54
|
-
public removeStaticFields(fields: (string)[]|null): void;
|
55
|
-
|
56
|
-
public resetStaticFields(): void;
|
57
|
-
|
58
|
-
public getStaticFields(): { [key: string]: number }|null;
|
59
|
-
|
60
52
|
public dump(options?: any): (any)[];
|
61
53
|
|
62
54
|
public log(opt_options?: any): void;
|
@@ -12,7 +12,7 @@ declare namespace FieldDefinition {
|
|
12
12
|
|
13
13
|
function hasFieldInfo(field: string): boolean;
|
14
14
|
|
15
|
-
function getTimeSeriesChildren(field: string): any;
|
15
|
+
function getTimeSeriesChildren(field: string): any[]|null;
|
16
16
|
|
17
17
|
function addTimeSeriesChild(tsDef: string, childDef: any): void;
|
18
18
|
|
@@ -245,7 +245,7 @@ declare class Grid extends EventDispatcher {
|
|
245
245
|
|
246
246
|
public hasHiddenRow(): boolean;
|
247
247
|
|
248
|
-
public setRic(rowRef: Grid.RowReference|null, str: string, options?: RowDefinition.Options|null):
|
248
|
+
public setRic(rowRef: Grid.RowReference|null, str: string, options?: RowDefinition.Options|null): RowDefinition|null;
|
249
249
|
|
250
250
|
public unlinkChain(rowRef: Grid.RowReference|null): void;
|
251
251
|
|
@@ -56,12 +56,14 @@ declare class RowDefinition {
|
|
56
56
|
|
57
57
|
public getData(field: string): any;
|
58
58
|
|
59
|
-
public setStaticRowData(data: { [key: string]: any }|any[],
|
60
|
-
|
61
|
-
public updateRowData(data: { [key: string]: any }|any[], opt_fields?: (string)[]|null): void;
|
59
|
+
public setStaticRowData(data: { [key: string]: any }|any[], indexToFieldMap?: (string)[]|null): void;
|
62
60
|
|
63
61
|
public setStaticData(field: string, value: any): void;
|
64
62
|
|
63
|
+
public updateRowData(data: { [key: string]: any }|any[], indexToFieldMap?: (string)[]|null): void;
|
64
|
+
|
65
|
+
public copyRowData(srcRowDef: RowDefinition|null): void;
|
66
|
+
|
65
67
|
public setRowData(data: { [key: string]: any }): void;
|
66
68
|
|
67
69
|
public setData(field: string, value: any): void;
|
package/lib/versions.json
CHANGED
@@ -8,10 +8,10 @@
|
|
8
8
|
"tr-grid-auto-tooltip": "1.1.6",
|
9
9
|
"tr-grid-cell-selection": "1.0.38",
|
10
10
|
"tr-grid-checkbox": "1.0.67",
|
11
|
-
"tr-grid-column-fitter": "1.0.
|
11
|
+
"tr-grid-column-fitter": "1.0.41",
|
12
12
|
"tr-grid-column-formatting": "0.9.36",
|
13
13
|
"tr-grid-column-grouping": "1.0.61",
|
14
|
-
"tr-grid-column-resizing": "1.0.
|
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",
|
17
17
|
"tr-grid-conditional-coloring": "1.0.70",
|
package/package.json
CHANGED
@@ -57,7 +57,8 @@
|
|
57
57
|
"./window-exporter": "./lib/window-exporter.js",
|
58
58
|
"./grid": "./lib/grid/lib/efx-grid.js",
|
59
59
|
"./formatters/*": "./lib/formatters/es6/*.js",
|
60
|
-
"./utils": "./lib/utils/index.js"
|
60
|
+
"./utils": "./lib/utils/index.js",
|
61
|
+
"./types": "./lib/types/index.d.ts"
|
61
62
|
},
|
62
63
|
"peerDependencies": {
|
63
64
|
"@refinitiv-ui/core": "^6.2.0 || ^7.0.0",
|
@@ -66,5 +67,5 @@
|
|
66
67
|
"publishConfig": {
|
67
68
|
"access": "public"
|
68
69
|
},
|
69
|
-
"version": "6.0.
|
70
|
+
"version": "6.0.105"
|
70
71
|
}
|