@refinitiv-ui/efx-grid 6.0.65 → 6.0.66

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.
@@ -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.75";
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);