@zsviczian/excalidraw 0.17.1-obsidian-26 → 0.17.1-obsidian-29

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.
Files changed (54) hide show
  1. package/dist/excalidraw.development.js +184 -30
  2. package/dist/excalidraw.production.min.js +1 -1
  3. package/dist/excalidraw.production.min.js.LICENSE.txt +9 -0
  4. package/dist/styles.development.css +139 -41
  5. package/dist/styles.production.css +3 -3
  6. package/package.json +1 -1
  7. package/types/excalidraw/actions/actionAddToLibrary.d.ts +12 -3
  8. package/types/excalidraw/actions/actionBoundText.d.ts +8 -2
  9. package/types/excalidraw/actions/actionCanvas.d.ts +56 -14
  10. package/types/excalidraw/actions/actionClipboard.d.ts +28 -7
  11. package/types/excalidraw/actions/actionDeleteSelected.d.ts +12 -3
  12. package/types/excalidraw/actions/actionElementLock.d.ts +8 -2
  13. package/types/excalidraw/actions/actionExport.d.ts +36 -9
  14. package/types/excalidraw/actions/actionFinalize.d.ts +8 -2
  15. package/types/excalidraw/actions/actionFrame.d.ts +16 -4
  16. package/types/excalidraw/actions/actionGroup.d.ts +8 -2
  17. package/types/excalidraw/actions/actionLinearEditor.d.ts +4 -1
  18. package/types/excalidraw/actions/actionLink.d.ts +4 -1
  19. package/types/excalidraw/actions/actionMenu.d.ts +12 -3
  20. package/types/excalidraw/actions/actionNavigate.d.ts +8 -2
  21. package/types/excalidraw/actions/actionProperties.d.ts +52 -13
  22. package/types/excalidraw/actions/actionSelectAll.d.ts +4 -1
  23. package/types/excalidraw/actions/actionStyles.d.ts +4 -1
  24. package/types/excalidraw/actions/actionToggleGridMode.d.ts +4 -1
  25. package/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +4 -1
  26. package/types/excalidraw/actions/actionToggleStats.d.ts +5 -1
  27. package/types/excalidraw/actions/actionToggleViewMode.d.ts +4 -1
  28. package/types/excalidraw/actions/actionToggleZenMode.d.ts +4 -1
  29. package/types/excalidraw/actions/types.d.ts +1 -1
  30. package/types/excalidraw/appState.d.ts +4 -1
  31. package/types/excalidraw/components/App.d.ts +3 -1
  32. package/types/excalidraw/components/Stats/Angle.d.ts +7 -0
  33. package/types/excalidraw/components/Stats/Collapsible.d.ts +8 -0
  34. package/types/excalidraw/components/Stats/Dimension.d.ts +8 -0
  35. package/types/excalidraw/components/Stats/DragInput.d.ts +22 -0
  36. package/types/excalidraw/components/Stats/FontSize.d.ts +7 -0
  37. package/types/excalidraw/components/Stats/MultiAngle.d.ts +9 -0
  38. package/types/excalidraw/components/Stats/MultiDimension.d.ts +12 -0
  39. package/types/excalidraw/components/Stats/MultiFontSize.d.ts +9 -0
  40. package/types/excalidraw/components/Stats/MultiPosition.d.ts +12 -0
  41. package/types/excalidraw/components/Stats/Position.d.ts +8 -0
  42. package/types/excalidraw/components/Stats/index.d.ts +15 -0
  43. package/types/excalidraw/components/Stats/utils.d.ts +15 -0
  44. package/types/excalidraw/components/icons.d.ts +3 -0
  45. package/types/excalidraw/constants.d.ts +5 -0
  46. package/types/excalidraw/element/embeddable.d.ts +4 -1
  47. package/types/excalidraw/element/linearElementEditor.d.ts +4 -1
  48. package/types/excalidraw/element/resizeElements.d.ts +9 -1
  49. package/types/excalidraw/element/typeChecks.d.ts +1 -1
  50. package/types/excalidraw/groups.d.ts +1 -1
  51. package/types/excalidraw/math.d.ts +2 -0
  52. package/types/excalidraw/mermaid.d.ts +2 -0
  53. package/types/excalidraw/scene/Scene.d.ts +3 -0
  54. package/types/excalidraw/types.d.ts +6 -1
@@ -34,7 +34,10 @@ export declare const actionClearCanvas: {
34
34
  exportBackground: boolean;
35
35
  exportEmbedScene: boolean;
36
36
  gridSize: number | null;
37
- showStats: boolean;
37
+ stats: {
38
+ open: boolean;
39
+ panels: number;
40
+ };
38
41
  pasteDialog: {
39
42
  shown: false;
40
43
  data: null;
@@ -355,7 +358,10 @@ export declare const actionZoomIn: {
355
358
  isSpeaking?: boolean | undefined;
356
359
  isMuted?: boolean | undefined;
357
360
  }>>;
358
- showStats: boolean;
361
+ stats: {
362
+ open: boolean;
363
+ panels: number;
364
+ };
359
365
  currentChartType: import("../element/types").ChartType;
360
366
  pasteDialog: {
361
367
  shown: false;
@@ -556,7 +562,10 @@ export declare const actionZoomOut: {
556
562
  isSpeaking?: boolean | undefined;
557
563
  isMuted?: boolean | undefined;
558
564
  }>>;
559
- showStats: boolean;
565
+ stats: {
566
+ open: boolean;
567
+ panels: number;
568
+ };
560
569
  currentChartType: import("../element/types").ChartType;
561
570
  pasteDialog: {
562
571
  shown: false;
@@ -757,7 +766,10 @@ export declare const actionResetZoom: {
757
766
  isSpeaking?: boolean | undefined;
758
767
  isMuted?: boolean | undefined;
759
768
  }>>;
760
- showStats: boolean;
769
+ stats: {
770
+ open: boolean;
771
+ panels: number;
772
+ };
761
773
  currentChartType: import("../element/types").ChartType;
762
774
  pasteDialog: {
763
775
  shown: false;
@@ -956,7 +968,10 @@ export declare const zoomToFitBounds: ({ bounds, appState, fitToViewport, viewpo
956
968
  isSpeaking?: boolean | undefined;
957
969
  isMuted?: boolean | undefined;
958
970
  }>>;
959
- showStats: boolean;
971
+ stats: {
972
+ open: boolean;
973
+ panels: number;
974
+ };
960
975
  currentChartType: import("../element/types").ChartType;
961
976
  pasteDialog: {
962
977
  shown: false;
@@ -1151,7 +1166,10 @@ export declare const zoomToFit: ({ targetElements, appState, fitToViewport, view
1151
1166
  isSpeaking?: boolean | undefined;
1152
1167
  isMuted?: boolean | undefined;
1153
1168
  }>>;
1154
- showStats: boolean;
1169
+ stats: {
1170
+ open: boolean;
1171
+ panels: number;
1172
+ };
1155
1173
  currentChartType: import("../element/types").ChartType;
1156
1174
  pasteDialog: {
1157
1175
  shown: false;
@@ -1346,7 +1364,10 @@ export declare const actionZoomToFitSelectionInViewport: {
1346
1364
  isSpeaking?: boolean | undefined;
1347
1365
  isMuted?: boolean | undefined;
1348
1366
  }>>;
1349
- showStats: boolean;
1367
+ stats: {
1368
+ open: boolean;
1369
+ panels: number;
1370
+ };
1350
1371
  currentChartType: import("../element/types").ChartType;
1351
1372
  pasteDialog: {
1352
1373
  shown: false;
@@ -1545,7 +1566,10 @@ export declare const actionZoomToFitSelection: {
1545
1566
  isSpeaking?: boolean | undefined;
1546
1567
  isMuted?: boolean | undefined;
1547
1568
  }>>;
1548
- showStats: boolean;
1569
+ stats: {
1570
+ open: boolean;
1571
+ panels: number;
1572
+ };
1549
1573
  currentChartType: import("../element/types").ChartType;
1550
1574
  pasteDialog: {
1551
1575
  shown: false;
@@ -1745,7 +1769,10 @@ export declare const actionZoomToFit: {
1745
1769
  isSpeaking?: boolean | undefined;
1746
1770
  isMuted?: boolean | undefined;
1747
1771
  }>>;
1748
- showStats: boolean;
1772
+ stats: {
1773
+ open: boolean;
1774
+ panels: number;
1775
+ };
1749
1776
  currentChartType: import("../element/types").ChartType;
1750
1777
  pasteDialog: {
1751
1778
  shown: false;
@@ -1946,7 +1973,10 @@ export declare const actionToggleTheme: {
1946
1973
  isSpeaking?: boolean | undefined;
1947
1974
  isMuted?: boolean | undefined;
1948
1975
  }>>;
1949
- showStats: boolean;
1976
+ stats: {
1977
+ open: boolean;
1978
+ panels: number;
1979
+ };
1950
1980
  currentChartType: import("../element/types").ChartType;
1951
1981
  pasteDialog: {
1952
1982
  shown: false;
@@ -2138,7 +2168,10 @@ export declare const actionToggleEraserTool: {
2138
2168
  isSpeaking?: boolean | undefined;
2139
2169
  isMuted?: boolean | undefined;
2140
2170
  }>>;
2141
- showStats: boolean;
2171
+ stats: {
2172
+ open: boolean;
2173
+ panels: number;
2174
+ };
2142
2175
  currentChartType: import("../element/types").ChartType;
2143
2176
  pasteDialog: {
2144
2177
  shown: false;
@@ -2332,7 +2365,10 @@ export declare const actionToggleHandTool: {
2332
2365
  isSpeaking?: boolean | undefined;
2333
2366
  isMuted?: boolean | undefined;
2334
2367
  }>>;
2335
- showStats: boolean;
2368
+ stats: {
2369
+ open: boolean;
2370
+ panels: number;
2371
+ };
2336
2372
  currentChartType: import("../element/types").ChartType;
2337
2373
  pasteDialog: {
2338
2374
  shown: false;
@@ -2523,7 +2559,10 @@ export declare const actionToggleLaserPointer: {
2523
2559
  isSpeaking?: boolean | undefined;
2524
2560
  isMuted?: boolean | undefined;
2525
2561
  }>>;
2526
- showStats: boolean;
2562
+ stats: {
2563
+ open: boolean;
2564
+ panels: number;
2565
+ };
2527
2566
  currentChartType: import("../element/types").ChartType;
2528
2567
  pasteDialog: {
2529
2568
  shown: false;
@@ -2717,7 +2756,10 @@ export declare const zoomToFitElements: (elements: readonly ExcalidrawElement[],
2717
2756
  isSpeaking?: boolean | undefined;
2718
2757
  isMuted?: boolean | undefined;
2719
2758
  }>>;
2720
- showStats: boolean;
2759
+ stats: {
2760
+ open: boolean;
2761
+ panels: number;
2762
+ };
2721
2763
  currentChartType: import("../element/types").ChartType;
2722
2764
  pasteDialog: {
2723
2765
  shown: false;
@@ -139,7 +139,10 @@ export declare const actionCopy: {
139
139
  isSpeaking?: boolean | undefined;
140
140
  isMuted?: boolean | undefined;
141
141
  }>>;
142
- showStats: boolean;
142
+ stats: {
143
+ open: boolean;
144
+ panels: number;
145
+ };
143
146
  currentChartType: import("../element/types").ChartType;
144
147
  pasteDialog: {
145
148
  shown: false;
@@ -340,7 +343,10 @@ export declare const actionPaste: {
340
343
  isSpeaking?: boolean | undefined;
341
344
  isMuted?: boolean | undefined;
342
345
  }>>;
343
- showStats: boolean;
346
+ stats: {
347
+ open: boolean;
348
+ panels: number;
349
+ };
344
350
  currentChartType: import("../element/types").ChartType;
345
351
  pasteDialog: {
346
352
  shown: false;
@@ -542,7 +548,10 @@ export declare const actionCut: {
542
548
  isSpeaking?: boolean | undefined;
543
549
  isMuted?: boolean | undefined;
544
550
  }>>;
545
- showStats: boolean;
551
+ stats: {
552
+ open: boolean;
553
+ panels: number;
554
+ };
546
555
  currentChartType: import("../element/types").ChartType;
547
556
  pasteDialog: {
548
557
  shown: false;
@@ -758,7 +767,10 @@ export declare const actionCut: {
758
767
  isSpeaking?: boolean | undefined;
759
768
  isMuted?: boolean | undefined;
760
769
  }>>;
761
- showStats: boolean;
770
+ stats: {
771
+ open: boolean;
772
+ panels: number;
773
+ };
762
774
  currentChartType: import("../element/types").ChartType;
763
775
  pasteDialog: {
764
776
  shown: false;
@@ -939,7 +951,10 @@ export declare const actionCut: {
939
951
  isSpeaking?: boolean | undefined;
940
952
  isMuted?: boolean | undefined;
941
953
  }>>;
942
- showStats: boolean;
954
+ stats: {
955
+ open: boolean;
956
+ panels: number;
957
+ };
943
958
  currentChartType: import("../element/types").ChartType;
944
959
  pasteDialog: {
945
960
  shown: false;
@@ -1141,7 +1156,10 @@ export declare const actionCopyAsSvg: {
1141
1156
  isSpeaking?: boolean | undefined;
1142
1157
  isMuted?: boolean | undefined;
1143
1158
  }>>;
1144
- showStats: boolean;
1159
+ stats: {
1160
+ open: boolean;
1161
+ panels: number;
1162
+ };
1145
1163
  currentChartType: import("../element/types").ChartType;
1146
1164
  pasteDialog: {
1147
1165
  shown: false;
@@ -1344,7 +1362,10 @@ export declare const actionCopyAsPng: {
1344
1362
  isSpeaking?: boolean | undefined;
1345
1363
  isMuted?: boolean | undefined;
1346
1364
  }>>;
1347
- showStats: boolean;
1365
+ stats: {
1366
+ open: boolean;
1367
+ panels: number;
1368
+ };
1348
1369
  currentChartType: import("../element/types").ChartType;
1349
1370
  pasteDialog: {
1350
1371
  shown: false;
@@ -143,7 +143,10 @@ export declare const actionDeleteSelected: {
143
143
  isSpeaking?: boolean | undefined;
144
144
  isMuted?: boolean | undefined;
145
145
  }>>;
146
- showStats: boolean;
146
+ stats: {
147
+ open: boolean;
148
+ panels: number;
149
+ };
147
150
  currentChartType: import("../element/types").ChartType;
148
151
  pasteDialog: {
149
152
  shown: false;
@@ -359,7 +362,10 @@ export declare const actionDeleteSelected: {
359
362
  isSpeaking?: boolean | undefined;
360
363
  isMuted?: boolean | undefined;
361
364
  }>>;
362
- showStats: boolean;
365
+ stats: {
366
+ open: boolean;
367
+ panels: number;
368
+ };
363
369
  currentChartType: import("../element/types").ChartType;
364
370
  pasteDialog: {
365
371
  shown: false;
@@ -540,7 +546,10 @@ export declare const actionDeleteSelected: {
540
546
  isSpeaking?: boolean | undefined;
541
547
  isMuted?: boolean | undefined;
542
548
  }>>;
543
- showStats: boolean;
549
+ stats: {
550
+ open: boolean;
551
+ panels: number;
552
+ };
544
553
  currentChartType: import("../element/types").ChartType;
545
554
  pasteDialog: {
546
555
  shown: false;
@@ -142,7 +142,10 @@ export declare const actionToggleElementLock: {
142
142
  isSpeaking?: boolean | undefined;
143
143
  isMuted?: boolean | undefined;
144
144
  }>>;
145
- showStats: boolean;
145
+ stats: {
146
+ open: boolean;
147
+ panels: number;
148
+ };
146
149
  currentChartType: import("../element/types").ChartType;
147
150
  pasteDialog: {
148
151
  shown: false;
@@ -343,7 +346,10 @@ export declare const actionUnlockAllElements: {
343
346
  isSpeaking?: boolean | undefined;
344
347
  isMuted?: boolean | undefined;
345
348
  }>>;
346
- showStats: boolean;
349
+ stats: {
350
+ open: boolean;
351
+ panels: number;
352
+ };
347
353
  currentChartType: import("../element/types").ChartType;
348
354
  pasteDialog: {
349
355
  shown: false;
@@ -137,7 +137,10 @@ export declare const actionChangeProjectName: {
137
137
  isSpeaking?: boolean | undefined;
138
138
  isMuted?: boolean | undefined;
139
139
  }>>;
140
- showStats: boolean;
140
+ stats: {
141
+ open: boolean;
142
+ panels: number;
143
+ };
141
144
  currentChartType: import("../element/types").ChartType;
142
145
  pasteDialog: {
143
146
  shown: false;
@@ -336,7 +339,10 @@ export declare const actionChangeExportScale: {
336
339
  isSpeaking?: boolean | undefined;
337
340
  isMuted?: boolean | undefined;
338
341
  }>>;
339
- showStats: boolean;
342
+ stats: {
343
+ open: boolean;
344
+ panels: number;
345
+ };
340
346
  currentChartType: import("../element/types").ChartType;
341
347
  pasteDialog: {
342
348
  shown: false;
@@ -535,7 +541,10 @@ export declare const actionChangeExportBackground: {
535
541
  isSpeaking?: boolean | undefined;
536
542
  isMuted?: boolean | undefined;
537
543
  }>>;
538
- showStats: boolean;
544
+ stats: {
545
+ open: boolean;
546
+ panels: number;
547
+ };
539
548
  currentChartType: import("../element/types").ChartType;
540
549
  pasteDialog: {
541
550
  shown: false;
@@ -734,7 +743,10 @@ export declare const actionChangeExportEmbedScene: {
734
743
  isSpeaking?: boolean | undefined;
735
744
  isMuted?: boolean | undefined;
736
745
  }>>;
737
- showStats: boolean;
746
+ stats: {
747
+ open: boolean;
748
+ panels: number;
749
+ };
738
750
  currentChartType: import("../element/types").ChartType;
739
751
  pasteDialog: {
740
752
  shown: false;
@@ -933,7 +945,10 @@ export declare const actionSaveToActiveFile: {
933
945
  isSpeaking?: boolean | undefined;
934
946
  isMuted?: boolean | undefined;
935
947
  }>>;
936
- showStats: boolean;
948
+ stats: {
949
+ open: boolean;
950
+ panels: number;
951
+ };
937
952
  currentChartType: import("../element/types").ChartType;
938
953
  pasteDialog: {
939
954
  shown: false;
@@ -1123,7 +1138,10 @@ export declare const actionSaveFileToDisk: {
1123
1138
  isSpeaking?: boolean | undefined;
1124
1139
  isMuted?: boolean | undefined;
1125
1140
  }>>;
1126
- showStats: boolean;
1141
+ stats: {
1142
+ open: boolean;
1143
+ panels: number;
1144
+ };
1127
1145
  currentChartType: import("../element/types").ChartType;
1128
1146
  pasteDialog: {
1129
1147
  shown: false;
@@ -1323,7 +1341,10 @@ export declare const actionLoadScene: {
1323
1341
  isSpeaking?: boolean | undefined;
1324
1342
  isMuted?: boolean | undefined;
1325
1343
  }>>;
1326
- showStats: boolean;
1344
+ stats: {
1345
+ open: boolean;
1346
+ panels: number;
1347
+ };
1327
1348
  currentChartType: import("../element/types").ChartType;
1328
1349
  pasteDialog: {
1329
1350
  shown: false;
@@ -1511,7 +1532,10 @@ export declare const actionLoadScene: {
1511
1532
  isSpeaking?: boolean | undefined;
1512
1533
  isMuted?: boolean | undefined;
1513
1534
  }>>;
1514
- showStats: boolean;
1535
+ stats: {
1536
+ open: boolean;
1537
+ panels: number;
1538
+ };
1515
1539
  currentChartType: import("../element/types").ChartType;
1516
1540
  pasteDialog: {
1517
1541
  shown: false;
@@ -1711,7 +1735,10 @@ export declare const actionExportWithDarkMode: {
1711
1735
  isSpeaking?: boolean | undefined;
1712
1736
  isMuted?: boolean | undefined;
1713
1737
  }>>;
1714
- showStats: boolean;
1738
+ stats: {
1739
+ open: boolean;
1740
+ panels: number;
1741
+ };
1715
1742
  currentChartType: import("../element/types").ChartType;
1716
1743
  pasteDialog: {
1717
1744
  shown: false;
@@ -139,7 +139,10 @@ export declare const actionFinalize: {
139
139
  isSpeaking?: boolean | undefined;
140
140
  isMuted?: boolean | undefined;
141
141
  }>>;
142
- showStats: boolean;
142
+ stats: {
143
+ open: boolean;
144
+ panels: number;
145
+ };
143
146
  currentChartType: import("../element/types").ChartType;
144
147
  pasteDialog: {
145
148
  shown: false;
@@ -325,7 +328,10 @@ export declare const actionFinalize: {
325
328
  isSpeaking?: boolean | undefined;
326
329
  isMuted?: boolean | undefined;
327
330
  }>>;
328
- showStats: boolean;
331
+ stats: {
332
+ open: boolean;
333
+ panels: number;
334
+ };
329
335
  currentChartType: import("../element/types").ChartType;
330
336
  pasteDialog: {
331
337
  shown: false;
@@ -138,7 +138,10 @@ export declare const actionSelectAllElementsInFrame: {
138
138
  isSpeaking?: boolean | undefined;
139
139
  isMuted?: boolean | undefined;
140
140
  }>>;
141
- showStats: boolean;
141
+ stats: {
142
+ open: boolean;
143
+ panels: number;
144
+ };
142
145
  currentChartType: import("../element/types").ChartType;
143
146
  pasteDialog: {
144
147
  shown: false;
@@ -341,7 +344,10 @@ export declare const actionRemoveAllElementsFromFrame: {
341
344
  isSpeaking?: boolean | undefined;
342
345
  isMuted?: boolean | undefined;
343
346
  }>>;
344
- showStats: boolean;
347
+ stats: {
348
+ open: boolean;
349
+ panels: number;
350
+ };
345
351
  currentChartType: import("../element/types").ChartType;
346
352
  pasteDialog: {
347
353
  shown: false;
@@ -545,7 +551,10 @@ export declare const actionupdateFrameRendering: {
545
551
  isSpeaking?: boolean | undefined;
546
552
  isMuted?: boolean | undefined;
547
553
  }>>;
548
- showStats: boolean;
554
+ stats: {
555
+ open: boolean;
556
+ panels: number;
557
+ };
549
558
  currentChartType: import("../element/types").ChartType;
550
559
  pasteDialog: {
551
560
  shown: false;
@@ -746,7 +755,10 @@ export declare const actionSetFrameAsActiveTool: {
746
755
  isSpeaking?: boolean | undefined;
747
756
  isMuted?: boolean | undefined;
748
757
  }>>;
749
- showStats: boolean;
758
+ stats: {
759
+ open: boolean;
760
+ panels: number;
761
+ };
750
762
  currentChartType: import("../element/types").ChartType;
751
763
  pasteDialog: {
752
764
  shown: false;
@@ -144,7 +144,10 @@ export declare const actionGroup: {
144
144
  isSpeaking?: boolean | undefined;
145
145
  isMuted?: boolean | undefined;
146
146
  }>>;
147
- showStats: boolean;
147
+ stats: {
148
+ open: boolean;
149
+ panels: number;
150
+ };
148
151
  currentChartType: import("../element/types").ChartType;
149
152
  pasteDialog: {
150
153
  shown: false;
@@ -350,7 +353,10 @@ export declare const actionUngroup: {
350
353
  isSpeaking?: boolean | undefined;
351
354
  isMuted?: boolean | undefined;
352
355
  }>>;
353
- showStats: boolean;
356
+ stats: {
357
+ open: boolean;
358
+ panels: number;
359
+ };
354
360
  currentChartType: import("../element/types").ChartType;
355
361
  pasteDialog: {
356
362
  shown: false;
@@ -142,7 +142,10 @@ export declare const actionToggleLinearEditor: {
142
142
  isSpeaking?: boolean | undefined;
143
143
  isMuted?: boolean | undefined;
144
144
  }>>;
145
- showStats: boolean;
145
+ stats: {
146
+ open: boolean;
147
+ panels: number;
148
+ };
146
149
  currentChartType: import("../element/types").ChartType;
147
150
  pasteDialog: {
148
151
  shown: false;
@@ -137,7 +137,10 @@ export declare const actionLink: {
137
137
  isSpeaking?: boolean | undefined;
138
138
  isMuted?: boolean | undefined;
139
139
  }>>;
140
- showStats: boolean;
140
+ stats: {
141
+ open: boolean;
142
+ panels: number;
143
+ };
141
144
  currentChartType: import("../element/types").ChartType;
142
145
  pasteDialog: {
143
146
  shown: false;
@@ -137,7 +137,10 @@ export declare const actionToggleCanvasMenu: {
137
137
  isSpeaking?: boolean | undefined;
138
138
  isMuted?: boolean | undefined;
139
139
  }>>;
140
- showStats: boolean;
140
+ stats: {
141
+ open: boolean;
142
+ panels: number;
143
+ };
141
144
  currentChartType: import("../element/types").ChartType;
142
145
  pasteDialog: {
143
146
  shown: false;
@@ -335,7 +338,10 @@ export declare const actionToggleEditMenu: {
335
338
  isSpeaking?: boolean | undefined;
336
339
  isMuted?: boolean | undefined;
337
340
  }>>;
338
- showStats: boolean;
341
+ stats: {
342
+ open: boolean;
343
+ panels: number;
344
+ };
339
345
  currentChartType: import("../element/types").ChartType;
340
346
  pasteDialog: {
341
347
  shown: false;
@@ -527,7 +533,10 @@ export declare const actionShortcuts: {
527
533
  isSpeaking?: boolean | undefined;
528
534
  isMuted?: boolean | undefined;
529
535
  }>>;
530
- showStats: boolean;
536
+ stats: {
537
+ open: boolean;
538
+ panels: number;
539
+ };
531
540
  currentChartType: import("../element/types").ChartType;
532
541
  pasteDialog: {
533
542
  shown: false;
@@ -140,7 +140,10 @@ export declare const actionGoToCollaborator: {
140
140
  isSpeaking?: boolean | undefined;
141
141
  isMuted?: boolean | undefined;
142
142
  }>>;
143
- showStats: boolean;
143
+ stats: {
144
+ open: boolean;
145
+ panels: number;
146
+ };
144
147
  currentChartType: import("../element/types").ChartType;
145
148
  pasteDialog: {
146
149
  shown: false;
@@ -330,7 +333,10 @@ export declare const actionGoToCollaborator: {
330
333
  isSpeaking?: boolean | undefined;
331
334
  isMuted?: boolean | undefined;
332
335
  }>>;
333
- showStats: boolean;
336
+ stats: {
337
+ open: boolean;
338
+ panels: number;
339
+ };
334
340
  currentChartType: import("../element/types").ChartType;
335
341
  pasteDialog: {
336
342
  shown: false;