@refinitiv-ui/efx-grid 6.0.52 → 6.0.54

Sign up to get free protection for your applications and to get access to all the features.
@@ -562,7 +562,7 @@ Core.prototype._batches = null;
562
562
  * @return {string}
563
563
  */
564
564
  Core.getVersion = function () {
565
- return "5.1.70";
565
+ return "5.1.71";
566
566
  };
567
567
  /** {@link ElementWrapper#dispose}
568
568
  * @override
@@ -4489,7 +4489,14 @@ Core.prototype.stopBatch = function (batchType) {
4489
4489
  if(!batchType){
4490
4490
  return false;
4491
4491
  }
4492
+ // 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.
4493
+ if(batchType === "reset") {
4494
+ this._disableEvent("columnVisibilityChanged", true);
4495
+ }
4492
4496
  this._dispatch("afterBatchOperation", { batches: this._batches, batchType: batchType });
4497
+ if(batchType === "reset") {
4498
+ this._disableEvent("columnVisibilityChanged", false);
4499
+ }
4493
4500
 
4494
4501
  delete this._batches[batchType];
4495
4502
  if(isEmptyObject(this._batches)){
package/lib/grid/index.js CHANGED
@@ -1,3 +1,3 @@
1
1
  import {Grid} from "./lib/efx-grid.js";
2
2
  export {Grid}
3
- window.EFX_GRID = { version: "6.0.52" };
3
+ window.EFX_GRID = { version: "6.0.54" };