@refinitiv-ui/efx-grid 6.0.94 → 6.0.95

Sign up to get free protection for your applications and to get access to all the features.
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.94" };
3
+ window.EFX_GRID = { version: "6.0.95" };
@@ -1357,6 +1357,7 @@ CheckboxPlugin.prototype._onCheckboxChanged = function (e, toggling) {
1357
1357
  if(toggling) {
1358
1358
  newState = CheckboxPlugin._toggleState(newState);
1359
1359
  }
1360
+ let checked = newState !== "unchecked";
1360
1361
 
1361
1362
  let host = this._hosts[0];
1362
1363
  let pos = host.getRelativePosition(e); // Getting row index
@@ -1394,7 +1395,6 @@ CheckboxPlugin.prototype._onCheckboxChanged = function (e, toggling) {
1394
1395
  }
1395
1396
  }
1396
1397
 
1397
- let checked = newState !== "unchecked";
1398
1398
  if(changeRange) {
1399
1399
  this.setCheckStates(changeRange, !e.altKey);
1400
1400
  } else {