jvs-draw 1.0.2 → 1.0.4
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/dist/config.d.ts +8 -0
- package/dist/index.d.ts +2 -1
- package/dist/jvs-draw.css +1 -1
- package/dist/jvs-draw.es.js +1024 -1011
- package/dist/jvs-draw.umd.js +5 -5
- package/dist/store/index.d.ts +18 -0
- package/package.json +1 -1
package/dist/store/index.d.ts
CHANGED
|
@@ -3,6 +3,12 @@ export declare const useExcalidrawStore: import('pinia').StoreDefinition<"excali
|
|
|
3
3
|
elements: ExcalidrawElement[];
|
|
4
4
|
history: ExcalidrawElement[][];
|
|
5
5
|
historyStep: number;
|
|
6
|
+
appConfig: {
|
|
7
|
+
showToolbar?: boolean;
|
|
8
|
+
showBoardName?: boolean;
|
|
9
|
+
showFooter?: boolean;
|
|
10
|
+
showPropertiesPanel?: boolean;
|
|
11
|
+
};
|
|
6
12
|
appState: {
|
|
7
13
|
lockedTool: boolean;
|
|
8
14
|
viewBackgroundColor: string;
|
|
@@ -1374,6 +1380,12 @@ export declare const useExcalidrawStore: import('pinia').StoreDefinition<"excali
|
|
|
1374
1380
|
frameId: string | null;
|
|
1375
1381
|
})[][];
|
|
1376
1382
|
historyStep: number;
|
|
1383
|
+
appConfig: {
|
|
1384
|
+
showToolbar?: boolean | undefined;
|
|
1385
|
+
showBoardName?: boolean | undefined;
|
|
1386
|
+
showFooter?: boolean | undefined;
|
|
1387
|
+
showPropertiesPanel?: boolean | undefined;
|
|
1388
|
+
};
|
|
1377
1389
|
appState: {
|
|
1378
1390
|
lockedTool: boolean;
|
|
1379
1391
|
viewBackgroundColor: string;
|
|
@@ -1428,6 +1440,12 @@ export declare const useExcalidrawStore: import('pinia').StoreDefinition<"excali
|
|
|
1428
1440
|
elements: ExcalidrawElement[];
|
|
1429
1441
|
history: ExcalidrawElement[][];
|
|
1430
1442
|
historyStep: number;
|
|
1443
|
+
appConfig: {
|
|
1444
|
+
showToolbar?: boolean;
|
|
1445
|
+
showBoardName?: boolean;
|
|
1446
|
+
showFooter?: boolean;
|
|
1447
|
+
showPropertiesPanel?: boolean;
|
|
1448
|
+
};
|
|
1431
1449
|
appState: {
|
|
1432
1450
|
lockedTool: boolean;
|
|
1433
1451
|
viewBackgroundColor: string;
|