@markerjs/markerjs3 3.7.1 → 3.7.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/markerjs3.d.ts +3 -3
- package/markerjs3.js +1 -1
- package/markerjs3.js.map +1 -1
- package/package.json +1 -1
- package/umd/markerjs3.js +1 -1
- package/umd/markerjs3.js.map +1 -1
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
|
|
1759
|
+
protected _controlBox?: SVGGElement;
|
|
1760
1760
|
/**
|
|
1761
1761
|
* Method called when marker creation is finished.
|
|
1762
1762
|
*/
|
|
@@ -2725,7 +2725,7 @@ declare class PolygonMarkerEditor<TMarkerType extends PolygonMarker = PolygonMar
|
|
|
2725
2725
|
/**
|
|
2726
2726
|
* Container for control elements.
|
|
2727
2727
|
*/
|
|
2728
|
-
protected controlBox
|
|
2728
|
+
protected controlBox?: SVGGElement;
|
|
2729
2729
|
/**
|
|
2730
2730
|
* Container for manipulation grips.
|
|
2731
2731
|
*/
|
|
@@ -2795,7 +2795,7 @@ declare class FreehandMarkerEditor<TMarkerType extends FreehandMarker = Freehand
|
|
|
2795
2795
|
/**
|
|
2796
2796
|
* Container for control elements.
|
|
2797
2797
|
*/
|
|
2798
|
-
protected controlBox
|
|
2798
|
+
protected controlBox?: SVGGElement;
|
|
2799
2799
|
private controlRect?;
|
|
2800
2800
|
constructor(properties: MarkerEditorProperties<TMarkerType>);
|
|
2801
2801
|
ownsTarget(el: EventTarget): boolean;
|