@acorex/components 21.0.0-next.35 → 21.0.0-next.36
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/fesm2022/acorex-components-accordion.mjs +1 -1
- package/fesm2022/acorex-components-accordion.mjs.map +1 -1
- package/fesm2022/acorex-components-conversation2.mjs +2 -2
- package/fesm2022/acorex-components-conversation2.mjs.map +1 -1
- package/fesm2022/acorex-components-image-editor.mjs +2 -1
- package/fesm2022/acorex-components-image-editor.mjs.map +1 -1
- package/fesm2022/acorex-components-map.mjs +276 -18
- package/fesm2022/acorex-components-map.mjs.map +1 -1
- package/map/index.d.ts +28 -1
- package/package.json +7 -7
|
@@ -255,7 +255,6 @@ class AXImageEditorCropperWindowComponent {
|
|
|
255
255
|
this.mouseDownEvent = this.renderer.listen(host, 'pointerdown', this.panDown.bind(this));
|
|
256
256
|
this.mouseMoveEvent2 = this.renderer.listen(host, 'pointermove', this.panMove.bind(this));
|
|
257
257
|
this.mouseUpEvent2 = this.renderer.listen(host, 'pointerup', this.panUp.bind(this));
|
|
258
|
-
this.mouseLeaveEvent = this.renderer.listen(host, 'pointerleave', this.panUp.bind(this));
|
|
259
258
|
});
|
|
260
259
|
});
|
|
261
260
|
this.#positionChange = effect(() => {
|
|
@@ -286,6 +285,8 @@ class AXImageEditorCropperWindowComponent {
|
|
|
286
285
|
}
|
|
287
286
|
#positionChange;
|
|
288
287
|
panMove(e) {
|
|
288
|
+
if (!this.isMousePressed())
|
|
289
|
+
return;
|
|
289
290
|
if (this.selectedHandle())
|
|
290
291
|
return;
|
|
291
292
|
if (!this.panState())
|