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.
@@ -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;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "jvs-draw",
3
3
  "private": false,
4
- "version": "1.0.2",
4
+ "version": "1.0.4",
5
5
  "type": "module",
6
6
  "main": "dist/jvs-draw.umd.js",
7
7
  "module": "dist/jvs-draw.es.js",