@markerjs/markerjs3 3.3.0 → 3.4.0

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
@@ -2186,8 +2186,10 @@ declare class MarkerArea extends HTMLElement {
2186
2186
  */
2187
2187
  deselectEditor(editor?: MarkerBaseEditor): void;
2188
2188
  private touchPoints;
2189
+ private leadPointerId?;
2189
2190
  private isDragging;
2190
2191
  private isSelecting;
2192
+ private isPanning;
2191
2193
  private _marqueeSelectOutline;
2192
2194
  private _marqueeSelectRect;
2193
2195
  private _manipulationStartX;
@@ -3060,6 +3062,7 @@ declare class MarkerView extends HTMLElement {
3060
3062
  private _isInitialized;
3061
3063
  private _defsElement?;
3062
3064
  private _defs;
3065
+ private prevPanPoint;
3063
3066
  constructor();
3064
3067
  private connectedCallback;
3065
3068
  private disconnectedCallback;
@@ -3076,6 +3079,12 @@ declare class MarkerView extends HTMLElement {
3076
3079
  private attachWindowEvents;
3077
3080
  private detachEvents;
3078
3081
  private detachWindowEvents;
3082
+ private touchPoints;
3083
+ private leadPointerId?;
3084
+ private onCanvasPointerDown;
3085
+ private onPointerMove;
3086
+ private onPointerUp;
3087
+ private onPointerOut;
3079
3088
  private getMarkerTypeByName;
3080
3089
  /**
3081
3090
  * Adds a new marker type to be available in the viewer.
@@ -3089,6 +3098,7 @@ declare class MarkerView extends HTMLElement {
3089
3098
  */
3090
3099
  show(state: AnnotationState): void;
3091
3100
  private scaleMarkers;
3101
+ private panTo;
3092
3102
  /**
3093
3103
  * NOTE:
3094
3104
  *