@zsviczian/excalidraw 0.17.1-obsidian-31 → 0.17.1-obsidian-32

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zsviczian/excalidraw",
3
- "version": "0.17.1-obsidian-31",
3
+ "version": "0.17.1-obsidian-32",
4
4
  "main": "main.js",
5
5
  "types": "types/excalidraw/index.d.ts",
6
6
  "files": [
@@ -14,6 +14,7 @@ export interface ExcalidrawElementWithCanvas {
14
14
  canvasOffsetY: number;
15
15
  boundTextElementVersion: number | null;
16
16
  containingFrameOpacity: number;
17
+ boundTextCanvas: HTMLCanvasElement;
17
18
  }
18
19
  export declare const DEFAULT_LINK_SIZE = 14;
19
20
  export declare const elementWithCanvasCache: WeakMap<ExcalidrawElement, ExcalidrawElementWithCanvas>;
@@ -120,6 +120,7 @@ export type StaticCanvasAppState = Readonly<_CommonCanvasAppState & {
120
120
  selectedElementsAreBeingDragged: AppState["selectedElementsAreBeingDragged"];
121
121
  gridSize: AppState["gridSize"];
122
122
  frameRendering: AppState["frameRendering"];
123
+ isRotating: AppState["isRotating"];
123
124
  linkOpacity: AppState["linkOpacity"];
124
125
  gridColor: AppState["gridColor"];
125
126
  frameColor: AppState["frameColor"];