@refinitiv-ui/efx-grid 6.0.109 → 6.0.111
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 +61 -1
- package/lib/core/dist/core.min.js +1 -1
- package/lib/core/es6/grid/Core.d.ts +4 -0
- package/lib/core/es6/grid/Core.js +61 -1
- package/lib/grid/index.js +1 -1
- package/lib/rt-grid/dist/rt-grid.js +100 -27
- package/lib/rt-grid/dist/rt-grid.min.js +1 -1
- package/lib/rt-grid/es6/ColumnDefinition.d.ts +6 -1
- package/lib/rt-grid/es6/ColumnDefinition.js +19 -0
- package/lib/rt-grid/es6/Grid.d.ts +4 -0
- package/lib/rt-grid/es6/Grid.js +21 -0
- package/lib/tr-grid-filter-input/es6/FilterInput.js +26 -19
- package/lib/tr-grid-util/es6/CellPainter.d.ts +1 -1
- package/lib/tr-grid-util/es6/CellPainter.js +15 -65
- package/lib/tr-grid-util/es6/Color.d.ts +40 -0
- package/lib/tr-grid-util/es6/Color.js +210 -0
- package/lib/tr-grid-util/es6/Util.d.ts +1 -3
- package/lib/tr-grid-util/es6/Util.js +2 -37
- package/lib/types/es6/Core/grid/Core.d.ts +4 -0
- package/lib/types/es6/RealtimeGrid/ColumnDefinition.d.ts +6 -1
- package/lib/types/es6/RealtimeGrid/Grid.d.ts +4 -0
- package/lib/versions.json +2 -2
- package/package.json +2 -1
@@ -46,7 +46,8 @@ declare namespace ColumnDefinition {
|
|
46
46
|
leftPinned?: boolean|null,
|
47
47
|
rightPinned?: boolean|null,
|
48
48
|
info?: any,
|
49
|
-
focusable?: boolean|null
|
49
|
+
focusable?: boolean|null,
|
50
|
+
backgroundColor?: string|null
|
50
51
|
};
|
51
52
|
|
52
53
|
}
|
@@ -163,6 +164,10 @@ declare class ColumnDefinition {
|
|
163
164
|
|
164
165
|
public isFocusable(): boolean;
|
165
166
|
|
167
|
+
public getBackgroundColor(): string;
|
168
|
+
|
169
|
+
public setBackgroundColor(color: string): void;
|
170
|
+
|
166
171
|
}
|
167
172
|
|
168
173
|
declare const COL_DEF: string;
|
@@ -211,6 +211,10 @@ declare class Grid extends EventDispatcher {
|
|
211
211
|
|
212
212
|
public setColumnName(colIndex: number, str: string): void;
|
213
213
|
|
214
|
+
public getColumnBackgroundColor(colRef: Grid.ColumnReference|null): string;
|
215
|
+
|
216
|
+
public setColumnBackgroundColor(colRef: Grid.ColumnReference|null, color: string): void;
|
217
|
+
|
214
218
|
public setColumnRenderer(colRef: Grid.ColumnReference|null, func?: ((...params: any[]) => any)|null): void;
|
215
219
|
|
216
220
|
public activateColumnRenderer(colRef: Grid.ColumnReference|null, id?: string|null, func?: ((...params: any[]) => any)|null): void;
|
package/lib/versions.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
{
|
2
|
-
"tr-grid-util": "1.3.
|
2
|
+
"tr-grid-util": "1.3.154",
|
3
3
|
"tr-grid-printer": "1.0.18",
|
4
4
|
"@grid/column-dragging": "1.0.20",
|
5
5
|
"@grid/row-segmenting": "1.0.31",
|
@@ -17,7 +17,7 @@
|
|
17
17
|
"tr-grid-conditional-coloring": "1.0.70",
|
18
18
|
"tr-grid-content-wrap": "1.0.20",
|
19
19
|
"tr-grid-contextmenu": "1.0.41",
|
20
|
-
"tr-grid-filter-input": "0.9.
|
20
|
+
"tr-grid-filter-input": "0.9.41",
|
21
21
|
"tr-grid-heat-map": "1.0.29",
|
22
22
|
"tr-grid-in-cell-editing": "1.0.87",
|
23
23
|
"tr-grid-pagination": "1.0.24",
|
package/package.json
CHANGED
@@ -56,6 +56,7 @@
|
|
56
56
|
"./extensions": "./lib/index.js",
|
57
57
|
"./window-exporter": "./lib/window-exporter.js",
|
58
58
|
"./grid": "./lib/grid/lib/efx-grid.js",
|
59
|
+
"./formatters": "./lib/formatters/es6/index.js",
|
59
60
|
"./formatters/*": "./lib/formatters/es6/*.js",
|
60
61
|
"./utils": "./lib/utils/index.js",
|
61
62
|
"./types": "./lib/types/index.d.ts"
|
@@ -67,5 +68,5 @@
|
|
67
68
|
"publishConfig": {
|
68
69
|
"access": "public"
|
69
70
|
},
|
70
|
-
"version": "6.0.
|
71
|
+
"version": "6.0.111"
|
71
72
|
}
|