@html-graph/html-graph 7.5.0 → 7.6.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.
@@ -1049,6 +1049,8 @@ export declare class Viewport {
1049
1049
  getViewportMatrix(): TransformState;
1050
1050
  getContentMatrix(): TransformState;
1051
1051
  getDimensions(): Dimensions;
1052
+ createContentCoords(viewportCoords: Point): Point;
1053
+ createViewportCoords(contentCoords: Point): Point;
1052
1054
  }
1053
1055
 
1054
1056
  declare class ViewportStore {
@@ -1068,6 +1070,8 @@ declare class ViewportStore {
1068
1070
  patchViewportMatrix(matrix: PatchTransformRequest): void;
1069
1071
  patchContentMatrix(matrix: PatchTransformRequest): void;
1070
1072
  getDimensions(): Dimensions;
1073
+ createContentCoords(viewportCoords: Point): Point;
1074
+ createViewportCoords(contentCoords: Point): Point;
1071
1075
  destroy(): void;
1072
1076
  }
1073
1077