@refinitiv-ui/efx-grid 6.0.65 → 6.0.66
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/core/dist/core.js +5 -5
- package/lib/core/dist/core.min.js +1 -1
- package/lib/core/es6/grid/Core.js +5 -5
- package/lib/grid/index.js +1 -1
- package/lib/rt-grid/dist/rt-grid.js +176 -72
- package/lib/rt-grid/dist/rt-grid.min.js +1 -1
- package/lib/rt-grid/es6/ColumnDefinition.d.ts +0 -2
- package/lib/rt-grid/es6/ColumnDefinition.js +1 -1
- package/lib/rt-grid/es6/Grid.d.ts +0 -2
- package/lib/rt-grid/es6/Grid.js +2 -2
- package/lib/tr-grid-column-formatting/es6/ColumnFormatting.js +4 -3
- package/lib/tr-grid-column-stack/es6/ColumnStack.d.ts +1 -1
- package/lib/tr-grid-column-stack/es6/ColumnStack.js +17 -26
- package/lib/tr-grid-conditional-coloring/es6/ConditionalColoring.d.ts +8 -5
- package/lib/tr-grid-conditional-coloring/es6/ConditionalColoring.js +121 -51
- package/lib/tr-grid-util/es6/CellPainter.d.ts +4 -2
- package/lib/tr-grid-util/es6/CellPainter.js +18 -8
- package/lib/tr-grid-util/es6/FilterOperators.js +13 -0
- package/lib/types/es6/ColumnStack.d.ts +1 -1
- package/lib/types/es6/ConditionalColoring.d.ts +8 -5
- package/lib/types/es6/RealtimeGrid/ColumnDefinition.d.ts +0 -2
- package/lib/types/es6/RealtimeGrid/Grid.d.ts +0 -2
- package/lib/versions.json +4 -4
- package/package.json +1 -1
package/lib/core/dist/core.js
CHANGED
@@ -26072,7 +26072,7 @@ Core_Core.prototype._batches = null;
|
|
26072
26072
|
* @return {string}
|
26073
26073
|
*/
|
26074
26074
|
Core_Core.getVersion = function () {
|
26075
|
-
return "5.1.
|
26075
|
+
return "5.1.76";
|
26076
26076
|
};
|
26077
26077
|
/** {@link ElementWrapper#dispose}
|
26078
26078
|
* @override
|
@@ -29992,6 +29992,10 @@ Core_Core.prototype.startBatch = function (batchType) {
|
|
29992
29992
|
this._batches = {};
|
29993
29993
|
}
|
29994
29994
|
this._batches[batchType] = batchType;
|
29995
|
+
// The "columnVisibilityChanged" event is blocked while the "reset" batch operation is in progress, so this event will not be fired until the batch operation succeeds.
|
29996
|
+
if(batchType === "reset") {
|
29997
|
+
this._disableEvent("columnVisibilityChanged", true);
|
29998
|
+
}
|
29995
29999
|
this._dispatch("beforeBatchOperation", { batches: this._batches, batchType: batchType });
|
29996
30000
|
return true;
|
29997
30001
|
};
|
@@ -30004,10 +30008,6 @@ Core_Core.prototype.stopBatch = function (batchType) {
|
|
30004
30008
|
if(!batchType){
|
30005
30009
|
return false;
|
30006
30010
|
}
|
30007
|
-
// The "columnVisibilityChanged" event is blocked while the "reset" batch operation is in progress, so this event will not be fired until the batch operation succeeds.
|
30008
|
-
if(batchType === "reset") {
|
30009
|
-
this._disableEvent("columnVisibilityChanged", true);
|
30010
|
-
}
|
30011
30011
|
this._dispatch("afterBatchOperation", { batches: this._batches, batchType: batchType });
|
30012
30012
|
if(batchType === "reset") {
|
30013
30013
|
this._disableEvent("columnVisibilityChanged", false);
|