@inweb/markup 25.9.6 → 25.9.7

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.
@@ -1022,7 +1022,7 @@ class KonvaMarkup {
1022
1022
  x: (pointer.x - this._konvaStage.x()) / oldScale,
1023
1023
  y: (pointer.y - this._konvaStage.y()) / oldScale
1024
1024
  };
1025
- let direction = event.data > 0 ? 1 : -1;
1025
+ const direction = event.data > 0 ? 1 : -1;
1026
1026
  const newScale = direction > 0 ? oldScale * event.data : oldScale / event.data;
1027
1027
  this._konvaStage.scale({
1028
1028
  x: newScale,