@oliasoft-open-source/charts-library 4.4.2 → 4.4.3
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/dist/index.js +13 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -26302,16 +26302,20 @@ const annotationDraggerPlugin = {
|
|
|
26302
26302
|
);
|
|
26303
26303
|
});
|
|
26304
26304
|
canvas2.addEventListener(MouseEvents.MOUSEMOVE, (event) => {
|
|
26305
|
-
|
|
26306
|
-
|
|
26307
|
-
|
|
26308
|
-
|
|
26309
|
-
|
|
26310
|
-
|
|
26311
|
-
|
|
26312
|
-
|
|
26313
|
-
|
|
26305
|
+
const handleAnnotationMouseMoveDebounce = debounce$3(
|
|
26306
|
+
() => handleAnnotationMouseMove(
|
|
26307
|
+
event,
|
|
26308
|
+
canvas2,
|
|
26309
|
+
typedScales,
|
|
26310
|
+
isDragging2,
|
|
26311
|
+
activeAnnotation,
|
|
26312
|
+
dragStartX,
|
|
26313
|
+
dragStartY,
|
|
26314
|
+
chart2
|
|
26315
|
+
),
|
|
26316
|
+
5
|
|
26314
26317
|
);
|
|
26318
|
+
handleAnnotationMouseMoveDebounce();
|
|
26315
26319
|
});
|
|
26316
26320
|
canvas2.addEventListener(MouseEvents.MOUSEUP, () => {
|
|
26317
26321
|
handleAnnotationMouseUp(
|