@markerjs/markerjs3 3.7.0 → 3.7.2

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/markerjs3.d.ts CHANGED
@@ -1756,7 +1756,7 @@ declare class MarkerBaseEditor<TMarkerType extends MarkerBase = MarkerBase> {
1756
1756
  /**
1757
1757
  * SVG group holding editor's control box.
1758
1758
  */
1759
- protected _controlBox: SVGGElement;
1759
+ protected _controlBox?: SVGGElement;
1760
1760
  /**
1761
1761
  * Method called when marker creation is finished.
1762
1762
  */
@@ -2532,7 +2532,7 @@ declare class RectangularBoxMarkerBaseEditor<TMarkerType extends RectangularBoxM
2532
2532
  /**
2533
2533
  * Container for the marker's editing controls.
2534
2534
  */
2535
- protected controlBox: SVGGElement;
2535
+ protected controlBox?: SVGGElement;
2536
2536
  /**
2537
2537
  * Container for the marker's manipulation grips.
2538
2538
  */
@@ -2553,7 +2553,6 @@ declare class RectangularBoxMarkerBaseEditor<TMarkerType extends RectangularBoxM
2553
2553
  */
2554
2554
  protected activeGrip?: Grip;
2555
2555
  private disableRotation;
2556
- constructor(properties: MarkerEditorProperties<TMarkerType>);
2557
2556
  ownsTarget(el: EventTarget): boolean;
2558
2557
  pointerDown(point: IPoint, target?: EventTarget, ev?: PointerEvent): void;
2559
2558
  /**
@@ -2726,7 +2725,7 @@ declare class PolygonMarkerEditor<TMarkerType extends PolygonMarker = PolygonMar
2726
2725
  /**
2727
2726
  * Container for control elements.
2728
2727
  */
2729
- protected controlBox: SVGGElement;
2728
+ protected controlBox?: SVGGElement;
2730
2729
  /**
2731
2730
  * Container for manipulation grips.
2732
2731
  */
@@ -2796,7 +2795,7 @@ declare class FreehandMarkerEditor<TMarkerType extends FreehandMarker = Freehand
2796
2795
  /**
2797
2796
  * Container for control elements.
2798
2797
  */
2799
- protected controlBox: SVGGElement;
2798
+ protected controlBox?: SVGGElement;
2800
2799
  private controlRect?;
2801
2800
  constructor(properties: MarkerEditorProperties<TMarkerType>);
2802
2801
  ownsTarget(el: EventTarget): boolean;