@markerjs/markerjs3 3.7.0 → 3.7.1
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 +1 -2
- 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
|
@@ -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
|
|
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
|
/**
|