@refinitiv-ui/efx-grid 6.0.28 → 6.0.30

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. package/lib/core/dist/core.js +3 -2
  2. package/lib/core/dist/core.min.js +1 -1
  3. package/lib/core/es6/grid/Core.js +2 -2
  4. package/lib/core/es6/grid/LayoutGrid.js +1 -0
  5. package/lib/grid/index.js +1 -1
  6. package/lib/rt-grid/dist/rt-grid.js +142 -26
  7. package/lib/rt-grid/dist/rt-grid.min.js +1 -1
  8. package/lib/rt-grid/es6/ColumnDefinition.d.ts +2 -0
  9. package/lib/rt-grid/es6/ColumnDefinition.js +6 -0
  10. package/lib/rt-grid/es6/FieldDefinition.d.ts +4 -0
  11. package/lib/rt-grid/es6/FieldDefinition.js +27 -1
  12. package/lib/rt-grid/es6/Grid.d.ts +1 -0
  13. package/lib/rt-grid/es6/Grid.js +14 -0
  14. package/lib/rt-grid/es6/RowDefinition.d.ts +1 -1
  15. package/lib/rt-grid/es6/RowDefinition.js +7 -7
  16. package/lib/rt-grid/es6/SnapshotFiller.js +3 -0
  17. package/lib/tr-grid-column-stack/es6/ColumnStack.d.ts +6 -0
  18. package/lib/tr-grid-column-stack/es6/ColumnStack.js +70 -1
  19. package/lib/tr-grid-conditional-coloring/es6/ConditionalColoring.d.ts +30 -23
  20. package/lib/tr-grid-conditional-coloring/es6/ConditionalColoring.js +78 -3
  21. package/lib/tr-grid-in-cell-editing/es6/InCellEditing.js +24 -10
  22. package/lib/tr-grid-util/es6/CellPainter.d.ts +2 -1
  23. package/lib/tr-grid-util/es6/CellPainter.js +53 -15
  24. package/lib/tr-grid-util/es6/jet/mockDataAPI.js +29 -1
  25. package/lib/types/es6/ColumnStack.d.ts +6 -0
  26. package/lib/types/es6/ConditionalColoring.d.ts +30 -23
  27. package/lib/types/es6/ExtensionOptions.d.ts +2 -0
  28. package/lib/types/es6/RealtimeGrid/RowDefinition.d.ts +1 -1
  29. package/lib/utils/index.d.ts +3 -0
  30. package/lib/utils/index.js +3 -0
  31. package/lib/versions.json +4 -4
  32. package/package.json +6 -2
@@ -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.38";
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 ids from existing 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();