Comparing version 7.2.3 to 7.2.4
@@ -6,2 +6,6 @@ # Change Log | ||
## 7.2.4 | ||
* Fix wrong `mouseleave` trigger for `Konva.Stage` | ||
## 7.2.3 | ||
@@ -8,0 +12,0 @@ |
@@ -52,3 +52,3 @@ "use strict"; | ||
_global: exports.glob, | ||
version: '7.2.3', | ||
version: '7.2.4', | ||
isBrowser: detectBrowser(), | ||
@@ -55,0 +55,0 @@ isUnminified: /param/.test(function (param) { }.toString()), |
@@ -30,3 +30,3 @@ "use strict"; | ||
MOUSEUP, | ||
MOUSEOUT, | ||
MOUSELEAVE, | ||
TOUCHSTART, | ||
@@ -279,3 +279,3 @@ TOUCHMOVE, | ||
}; | ||
Stage.prototype._mouseout = function (evt) { | ||
Stage.prototype._mouseleave = function (evt) { | ||
var _a; | ||
@@ -282,0 +282,0 @@ this.setPointersPositions(evt); |
{ | ||
"name": "konva", | ||
"version": "7.2.3", | ||
"version": "7.2.4", | ||
"author": "Anton Lavrenov", | ||
@@ -5,0 +5,0 @@ "files": [ |
@@ -58,3 +58,3 @@ import { Collection } from './Util'; | ||
_mouseover(evt: any): void; | ||
_mouseout(evt: any): void; | ||
_mouseleave(evt: any): void; | ||
_mousemove(evt: any): void; | ||
@@ -61,0 +61,0 @@ _mousedown(evt: any): void; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
1421407