jvs-draw 1.0.0 → 1.0.2
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/README.md +113 -64
- package/dist/jvs-draw.css +1 -1
- package/dist/jvs-draw.es.js +2940 -2927
- package/dist/jvs-draw.umd.js +6 -6
- package/dist/store/index.d.ts +3 -0
- package/package.json +1 -1
package/dist/store/index.d.ts
CHANGED
|
@@ -37,6 +37,7 @@ export declare const useExcalidrawStore: import('pinia').StoreDefinition<"excali
|
|
|
37
37
|
viewLocked: boolean;
|
|
38
38
|
lastActiveTool: string | null;
|
|
39
39
|
name: string;
|
|
40
|
+
isPanningCanvas: boolean;
|
|
40
41
|
isDraggingElement: boolean;
|
|
41
42
|
isBoxSelecting: boolean;
|
|
42
43
|
showGrid: boolean;
|
|
@@ -1407,6 +1408,7 @@ export declare const useExcalidrawStore: import('pinia').StoreDefinition<"excali
|
|
|
1407
1408
|
viewLocked: boolean;
|
|
1408
1409
|
lastActiveTool: string | null;
|
|
1409
1410
|
name: string;
|
|
1411
|
+
isPanningCanvas: boolean;
|
|
1410
1412
|
isDraggingElement: boolean;
|
|
1411
1413
|
isBoxSelecting: boolean;
|
|
1412
1414
|
showGrid: boolean;
|
|
@@ -1460,6 +1462,7 @@ export declare const useExcalidrawStore: import('pinia').StoreDefinition<"excali
|
|
|
1460
1462
|
viewLocked: boolean;
|
|
1461
1463
|
lastActiveTool: string | null;
|
|
1462
1464
|
name: string;
|
|
1465
|
+
isPanningCanvas: boolean;
|
|
1463
1466
|
isDraggingElement: boolean;
|
|
1464
1467
|
isBoxSelecting: boolean;
|
|
1465
1468
|
showGrid: boolean;
|