@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.
- package/lib/column-dragging/es6/ColumnDragging.js +6 -5
- package/lib/core/dist/core.js +2 -2
- package/lib/core/dist/core.min.js +1 -1
- package/lib/core/es6/grid/Core.js +1 -1
- package/lib/core/es6/grid/components/Scrollbar.js +1 -1
- package/lib/grid/index.js +1 -1
- package/lib/versions.json +2 -2
- package/package.json +1 -1
@@ -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
|
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
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.
|
4
|
+
"@grid/column-dragging": "1.0.15",
|
5
5
|
"@grid/row-segmenting": "1.0.30",
|
6
|
-
"@grid/statistics-row": "1.0.
|
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