@oliasoft-open-source/charts-library 4.7.7-beta-14 → 4.7.7-beta-15

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
@@ -26622,10 +26622,21 @@ const handleAnnotationMouseUp = (isDragging2, activeAnnotation, chart2, canvas2,
26622
26622
  setAnnotationBorderWidth(chart2, annotationId, BORDER_WIDTH.ZERO);
26623
26623
  const { centerX = -1, centerY = -1 } = calculateAnnotationMetricsInValues(activeAnnotation) ?? {};
26624
26624
  if (!isNil(activeAnnotation == null ? void 0 : activeAnnotation.onDragEnd)) {
26625
- activeAnnotation == null ? void 0 : activeAnnotation.onDragEnd(
26626
- { x: centerX, y: centerY },
26627
- activeAnnotation
26628
- );
26625
+ try {
26626
+ console.log("Invoking onDragEnd:", {
26627
+ centerX,
26628
+ centerY,
26629
+ activeAnnotation
26630
+ });
26631
+ activeAnnotation.onDragEnd(
26632
+ { x: centerX, y: centerY },
26633
+ activeAnnotation
26634
+ );
26635
+ } catch (error) {
26636
+ console.error("Error in onDragEnd:", error, activeAnnotation);
26637
+ }
26638
+ } else {
26639
+ console.warn("onDragEnd is undefined or null:", activeAnnotation);
26629
26640
  }
26630
26641
  if (!isNil(canvas2) && !isNil(canvas2.style)) {
26631
26642
  canvas2.style.cursor = CursorStyle.Pointer;