@refinitiv-ui/efx-grid 6.0.28 → 6.0.29
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/core/dist/core.js +3 -2
- package/lib/core/dist/core.min.js +1 -1
- package/lib/core/es6/grid/Core.js +2 -2
- package/lib/core/es6/grid/LayoutGrid.js +1 -0
- package/lib/grid/index.js +1 -1
- package/lib/tr-grid-column-stack/es6/ColumnStack.d.ts +6 -0
- package/lib/tr-grid-column-stack/es6/ColumnStack.js +66 -1
- package/lib/tr-grid-conditional-coloring/es6/ConditionalColoring.d.ts +30 -23
- package/lib/tr-grid-conditional-coloring/es6/ConditionalColoring.js +78 -3
- package/lib/tr-grid-in-cell-editing/es6/InCellEditing.js +24 -10
- package/lib/tr-grid-util/es6/CellPainter.d.ts +2 -1
- package/lib/tr-grid-util/es6/CellPainter.js +53 -15
- package/lib/types/es6/ColumnStack.d.ts +6 -0
- package/lib/utils/index.d.ts +3 -0
- package/lib/utils/index.js +3 -0
- package/lib/versions.json +4 -4
- package/package.json +6 -2
package/lib/core/dist/core.js
CHANGED
@@ -10198,6 +10198,7 @@ LayoutGrid.prototype.setRowOffset = function (index) {
|
|
10198
10198
|
LayoutGrid.prototype.updateLayout = function () {
|
10199
10199
|
this._calculateViewSize(true); // Column bounds will be updated by trigger from Core
|
10200
10200
|
|
10201
|
+
this._stretchedCells.updateCells();
|
10201
10202
|
this._updateRightSpaceStyle();
|
10202
10203
|
};
|
10203
10204
|
|
@@ -25419,7 +25420,7 @@ Core_Core.prototype._groupDefs = null;
|
|
25419
25420
|
* @return {string}
|
25420
25421
|
*/
|
25421
25422
|
Core_Core.getVersion = function () {
|
25422
|
-
return "5.1.
|
25423
|
+
return "5.1.39";
|
25423
25424
|
};
|
25424
25425
|
/** {@link ElementWrapper#dispose}
|
25425
25426
|
* @override
|
@@ -29862,7 +29863,7 @@ Core_Core.prototype.getColumnField = function (colIndex) {
|
|
29862
29863
|
return "";
|
29863
29864
|
};
|
29864
29865
|
/** @public
|
29865
|
-
* @return {!Array.<string>} Return all column
|
29866
|
+
* @return {!Array.<string>} Return all column fields from existing columns
|
29866
29867
|
*/
|
29867
29868
|
Core_Core.prototype.getColumnFields = function () {
|
29868
29869
|
var colCount = this.getColumnCount();
|