@refinitiv-ui/efx-grid 6.0.76 → 6.0.77

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.
@@ -570,7 +570,7 @@ Core.prototype._firstRendered = false;
570
570
  * @return {string}
571
571
  */
572
572
  Core.getVersion = function () {
573
- return "5.1.82";
573
+ return "5.1.83";
574
574
  };
575
575
  /** {@link ElementWrapper#dispose}
576
576
  * @override
@@ -1345,7 +1345,7 @@ Scrollbar.prototype._onMouseWheel = function (e) {
1345
1345
  Util._preventDefault(e);
1346
1346
  return;
1347
1347
  }
1348
- if(e.ctrlKey || e.altKey || e.shiftKey) { return; }
1348
+ if(e.ctrlKey || e.altKey ) { return; }
1349
1349
  if (!this.isActive()) { return; }
1350
1350
 
1351
1351
  var delta = (this._vertical) ? e["deltaY"] : e["deltaX"];
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.76" };
3
+ window.EFX_GRID = { version: "6.0.77" };
package/lib/versions.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "tr-grid-util": "1.3.134",
3
3
  "tr-grid-printer": "1.0.17",
4
- "@grid/column-dragging": "1.0.14",
4
+ "@grid/column-dragging": "1.0.15",
5
5
  "@grid/row-segmenting": "1.0.30",
6
- "@grid/statistics-row": "1.0.15",
6
+ "@grid/statistics-row": "1.0.16",
7
7
  "@grid/zoom": "1.0.11",
8
8
  "tr-grid-auto-tooltip": "1.1.6",
9
9
  "tr-grid-cell-selection": "1.0.34",
package/package.json CHANGED
@@ -66,5 +66,5 @@
66
66
  "publishConfig": {
67
67
  "access": "public"
68
68
  },
69
- "version": "6.0.76"
69
+ "version": "6.0.77"
70
70
  }