@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 CHANGED
@@ -26302,16 +26302,20 @@ const annotationDraggerPlugin = {
26302
26302
  );
26303
26303
  });
26304
26304
  canvas2.addEventListener(MouseEvents.MOUSEMOVE, (event) => {
26305
- handleAnnotationMouseMove(
26306
- event,
26307
- canvas2,
26308
- typedScales,
26309
- isDragging2,
26310
- activeAnnotation,
26311
- dragStartX,
26312
- dragStartY,
26313
- chart2
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(