@excalidraw/excalidraw 0.17.0-c7ee46e → 0.17.0-dd220bc
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/CHANGELOG.md +6 -0
- package/dist/excalidraw-assets/locales/{gl-ES-json-95041caf90ef2a7e8a53.js → gl-ES-json-d11c7966c3c2f95756e0.js} +1 -1
- package/dist/excalidraw-assets-dev/{vendor-37ba5d021227533892ee.js → vendor-0aa6bd65c58be7c84e9c.js} +2 -2
- package/dist/excalidraw-with-preact.development.js +223 -58
- package/dist/excalidraw-with-preact.production.min.js +1 -1
- package/dist/excalidraw.development.js +223 -58
- package/dist/excalidraw.production.min.js +1 -1
- package/package.json +1 -1
- package/types/actions/actionAddToLibrary.d.ts +30 -3
- package/types/actions/actionBoundText.d.ts +20 -2
- package/types/actions/actionCanvas.d.ts +110 -11
- package/types/actions/actionClipboard.d.ts +70 -7
- package/types/actions/actionDeleteSelected.d.ts +30 -3
- package/types/actions/actionElementLock.d.ts +20 -2
- package/types/actions/actionExport.d.ts +80 -8
- package/types/actions/actionFinalize.d.ts +20 -2
- package/types/actions/actionFrame.d.ts +30 -3
- package/types/actions/actionGroup.d.ts +20 -2
- package/types/actions/actionLinearEditor.d.ts +10 -1
- package/types/actions/actionMenu.d.ts +23 -3
- package/types/actions/actionProperties.d.ts +130 -13
- package/types/actions/actionSelectAll.d.ts +10 -1
- package/types/actions/actionStyles.d.ts +10 -1
- package/types/actions/actionToggleGridMode.d.ts +10 -1
- package/types/actions/actionToggleObjectsSnapMode.d.ts +10 -1
- package/types/actions/actionToggleStats.d.ts +10 -1
- package/types/actions/actionToggleViewMode.d.ts +10 -1
- package/types/actions/actionToggleZenMode.d.ts +10 -1
- package/types/components/App.d.ts +1 -1
- package/types/components/Button.d.ts +1 -1
- package/types/components/InlineIcon.d.ts +3 -0
- package/types/components/LayerUI.d.ts +1 -1
- package/types/components/MagicSettings.d.ts +1 -1
- package/types/components/Paragraph.d.ts +4 -0
- package/types/components/TTDDialog/MermaidToExcalidraw.d.ts +6 -0
- package/types/components/TTDDialog/TTDDialog.d.ts +29 -0
- package/types/components/TTDDialog/TTDDialogInput.d.ts +9 -0
- package/types/components/TTDDialog/TTDDialogOutput.d.ts +7 -0
- package/types/components/TTDDialog/TTDDialogPanel.d.ts +16 -0
- package/types/components/TTDDialog/TTDDialogPanels.d.ts +4 -0
- package/types/components/TTDDialog/TTDDialogTab.d.ts +7 -0
- package/types/components/TTDDialog/TTDDialogTabTrigger.d.ts +8 -0
- package/types/components/TTDDialog/TTDDialogTabTriggers.d.ts +6 -0
- package/types/components/TTDDialog/TTDDialogTabs.d.ts +14 -0
- package/types/components/TTDDialog/TTDDialogTrigger.d.ts +8 -0
- package/types/components/TTDDialog/common.d.ts +33 -0
- package/types/components/TextField.d.ts +1 -1
- package/types/components/dropdownMenu/DropdownMenu.d.ts +6 -0
- package/types/components/dropdownMenu/DropdownMenuItem.d.ts +12 -0
- package/types/components/icons.d.ts +1 -0
- package/types/components/main-menu/MainMenu.d.ts +6 -0
- package/types/context/tunnels.d.ts +1 -0
- package/types/element/Hyperlink.d.ts +10 -1
- package/types/element/embeddable.d.ts +10 -1
- package/types/element/linearElementEditor.d.ts +10 -1
- package/types/packages/excalidraw/index.d.ts +2 -0
- package/types/types.d.ts +11 -2
- package/types/utils.d.ts +1 -0
- package/types/components/MermaidToExcalidraw.d.ts +0 -3
- /package/types/packages/excalidraw/dist/excalidraw-assets/locales/{gl-ES-json-95041caf90ef2a7e8a53.d.ts → gl-ES-json-d11c7966c3c2f95756e0.d.ts} +0 -0
- /package/types/packages/excalidraw/dist/excalidraw-assets-dev/{vendor-37ba5d021227533892ee.d.ts → vendor-0aa6bd65c58be7c84e9c.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -79,7 +79,16 @@ export declare const actionAddToLibrary: {
|
|
|
79
79
|
name: string;
|
|
80
80
|
tab?: string | undefined;
|
|
81
81
|
} | null;
|
|
82
|
-
openDialog:
|
|
82
|
+
openDialog: {
|
|
83
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
84
|
+
} | {
|
|
85
|
+
name: "settings";
|
|
86
|
+
source: "settings" | "tool" | "generation";
|
|
87
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
88
|
+
} | {
|
|
89
|
+
name: "ttd";
|
|
90
|
+
tab: "mermaid" | "text-to-diagram";
|
|
91
|
+
} | null;
|
|
83
92
|
defaultSidebarDockedPreference: boolean;
|
|
84
93
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
85
94
|
selectedElementIds: Readonly<{
|
|
@@ -196,7 +205,16 @@ export declare const actionAddToLibrary: {
|
|
|
196
205
|
name: string;
|
|
197
206
|
tab?: string | undefined;
|
|
198
207
|
} | null;
|
|
199
|
-
openDialog:
|
|
208
|
+
openDialog: {
|
|
209
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
210
|
+
} | {
|
|
211
|
+
name: "settings";
|
|
212
|
+
source: "settings" | "tool" | "generation";
|
|
213
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
214
|
+
} | {
|
|
215
|
+
name: "ttd";
|
|
216
|
+
tab: "mermaid" | "text-to-diagram";
|
|
217
|
+
} | null;
|
|
200
218
|
defaultSidebarDockedPreference: boolean;
|
|
201
219
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
202
220
|
selectedElementIds: Readonly<{
|
|
@@ -318,7 +336,16 @@ export declare const actionAddToLibrary: {
|
|
|
318
336
|
name: string;
|
|
319
337
|
tab?: string | undefined;
|
|
320
338
|
} | null;
|
|
321
|
-
openDialog:
|
|
339
|
+
openDialog: {
|
|
340
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
341
|
+
} | {
|
|
342
|
+
name: "settings";
|
|
343
|
+
source: "settings" | "tool" | "generation";
|
|
344
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
345
|
+
} | {
|
|
346
|
+
name: "ttd";
|
|
347
|
+
tab: "mermaid" | "text-to-diagram";
|
|
348
|
+
} | null;
|
|
322
349
|
defaultSidebarDockedPreference: boolean;
|
|
323
350
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
324
351
|
selectedElementIds: Readonly<{
|
|
@@ -99,7 +99,16 @@ export declare const actionBindText: {
|
|
|
99
99
|
name: string;
|
|
100
100
|
tab?: string | undefined;
|
|
101
101
|
} | null;
|
|
102
|
-
openDialog:
|
|
102
|
+
openDialog: {
|
|
103
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
104
|
+
} | {
|
|
105
|
+
name: "settings";
|
|
106
|
+
source: "settings" | "tool" | "generation";
|
|
107
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
108
|
+
} | {
|
|
109
|
+
name: "ttd";
|
|
110
|
+
tab: "mermaid" | "text-to-diagram";
|
|
111
|
+
} | null;
|
|
103
112
|
defaultSidebarDockedPreference: boolean;
|
|
104
113
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
105
114
|
previousSelectedElementIds: {
|
|
@@ -233,7 +242,16 @@ export declare const actionWrapTextInContainer: {
|
|
|
233
242
|
name: string;
|
|
234
243
|
tab?: string | undefined;
|
|
235
244
|
} | null;
|
|
236
|
-
openDialog:
|
|
245
|
+
openDialog: {
|
|
246
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
247
|
+
} | {
|
|
248
|
+
name: "settings";
|
|
249
|
+
source: "settings" | "tool" | "generation";
|
|
250
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
251
|
+
} | {
|
|
252
|
+
name: "ttd";
|
|
253
|
+
tab: "mermaid" | "text-to-diagram";
|
|
254
|
+
} | null;
|
|
237
255
|
defaultSidebarDockedPreference: boolean;
|
|
238
256
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
239
257
|
previousSelectedElementIds: {
|
|
@@ -102,7 +102,16 @@ export declare const actionClearCanvas: {
|
|
|
102
102
|
name: string;
|
|
103
103
|
tab?: string | undefined;
|
|
104
104
|
} | null;
|
|
105
|
-
openDialog:
|
|
105
|
+
openDialog: {
|
|
106
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
107
|
+
} | {
|
|
108
|
+
name: "settings";
|
|
109
|
+
source: "settings" | "tool" | "generation";
|
|
110
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
111
|
+
} | {
|
|
112
|
+
name: "ttd";
|
|
113
|
+
tab: "mermaid" | "text-to-diagram";
|
|
114
|
+
} | null;
|
|
106
115
|
defaultSidebarDockedPreference: boolean;
|
|
107
116
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
108
117
|
selectedElementIds: Readonly<{
|
|
@@ -220,7 +229,16 @@ export declare const actionZoomIn: {
|
|
|
220
229
|
name: string;
|
|
221
230
|
tab?: string | undefined;
|
|
222
231
|
} | null;
|
|
223
|
-
openDialog:
|
|
232
|
+
openDialog: {
|
|
233
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
234
|
+
} | {
|
|
235
|
+
name: "settings";
|
|
236
|
+
source: "settings" | "tool" | "generation";
|
|
237
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
238
|
+
} | {
|
|
239
|
+
name: "ttd";
|
|
240
|
+
tab: "mermaid" | "text-to-diagram";
|
|
241
|
+
} | null;
|
|
224
242
|
defaultSidebarDockedPreference: boolean;
|
|
225
243
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
226
244
|
selectedElementIds: Readonly<{
|
|
@@ -354,7 +372,16 @@ export declare const actionZoomOut: {
|
|
|
354
372
|
name: string;
|
|
355
373
|
tab?: string | undefined;
|
|
356
374
|
} | null;
|
|
357
|
-
openDialog:
|
|
375
|
+
openDialog: {
|
|
376
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
377
|
+
} | {
|
|
378
|
+
name: "settings";
|
|
379
|
+
source: "settings" | "tool" | "generation";
|
|
380
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
381
|
+
} | {
|
|
382
|
+
name: "ttd";
|
|
383
|
+
tab: "mermaid" | "text-to-diagram";
|
|
384
|
+
} | null;
|
|
358
385
|
defaultSidebarDockedPreference: boolean;
|
|
359
386
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
360
387
|
selectedElementIds: Readonly<{
|
|
@@ -488,7 +515,16 @@ export declare const actionResetZoom: {
|
|
|
488
515
|
name: string;
|
|
489
516
|
tab?: string | undefined;
|
|
490
517
|
} | null;
|
|
491
|
-
openDialog:
|
|
518
|
+
openDialog: {
|
|
519
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
520
|
+
} | {
|
|
521
|
+
name: "settings";
|
|
522
|
+
source: "settings" | "tool" | "generation";
|
|
523
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
524
|
+
} | {
|
|
525
|
+
name: "ttd";
|
|
526
|
+
tab: "mermaid" | "text-to-diagram";
|
|
527
|
+
} | null;
|
|
492
528
|
defaultSidebarDockedPreference: boolean;
|
|
493
529
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
494
530
|
selectedElementIds: Readonly<{
|
|
@@ -623,7 +659,16 @@ export declare const zoomToFit: ({ targetElements, appState, fitToViewport, view
|
|
|
623
659
|
name: string;
|
|
624
660
|
tab?: string | undefined;
|
|
625
661
|
} | null;
|
|
626
|
-
openDialog:
|
|
662
|
+
openDialog: {
|
|
663
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
664
|
+
} | {
|
|
665
|
+
name: "settings";
|
|
666
|
+
source: "settings" | "tool" | "generation";
|
|
667
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
668
|
+
} | {
|
|
669
|
+
name: "ttd";
|
|
670
|
+
tab: "mermaid" | "text-to-diagram";
|
|
671
|
+
} | null;
|
|
627
672
|
defaultSidebarDockedPreference: boolean;
|
|
628
673
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
629
674
|
selectedElementIds: Readonly<{
|
|
@@ -751,7 +796,16 @@ export declare const actionZoomToFitSelectionInViewport: {
|
|
|
751
796
|
name: string;
|
|
752
797
|
tab?: string | undefined;
|
|
753
798
|
} | null;
|
|
754
|
-
openDialog:
|
|
799
|
+
openDialog: {
|
|
800
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
801
|
+
} | {
|
|
802
|
+
name: "settings";
|
|
803
|
+
source: "settings" | "tool" | "generation";
|
|
804
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
805
|
+
} | {
|
|
806
|
+
name: "ttd";
|
|
807
|
+
tab: "mermaid" | "text-to-diagram";
|
|
808
|
+
} | null;
|
|
755
809
|
defaultSidebarDockedPreference: boolean;
|
|
756
810
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
757
811
|
selectedElementIds: Readonly<{
|
|
@@ -883,7 +937,16 @@ export declare const actionZoomToFitSelection: {
|
|
|
883
937
|
name: string;
|
|
884
938
|
tab?: string | undefined;
|
|
885
939
|
} | null;
|
|
886
|
-
openDialog:
|
|
940
|
+
openDialog: {
|
|
941
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
942
|
+
} | {
|
|
943
|
+
name: "settings";
|
|
944
|
+
source: "settings" | "tool" | "generation";
|
|
945
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
946
|
+
} | {
|
|
947
|
+
name: "ttd";
|
|
948
|
+
tab: "mermaid" | "text-to-diagram";
|
|
949
|
+
} | null;
|
|
887
950
|
defaultSidebarDockedPreference: boolean;
|
|
888
951
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
889
952
|
selectedElementIds: Readonly<{
|
|
@@ -1016,7 +1079,16 @@ export declare const actionZoomToFit: {
|
|
|
1016
1079
|
name: string;
|
|
1017
1080
|
tab?: string | undefined;
|
|
1018
1081
|
} | null;
|
|
1019
|
-
openDialog:
|
|
1082
|
+
openDialog: {
|
|
1083
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
1084
|
+
} | {
|
|
1085
|
+
name: "settings";
|
|
1086
|
+
source: "settings" | "tool" | "generation";
|
|
1087
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
1088
|
+
} | {
|
|
1089
|
+
name: "ttd";
|
|
1090
|
+
tab: "mermaid" | "text-to-diagram";
|
|
1091
|
+
} | null;
|
|
1020
1092
|
defaultSidebarDockedPreference: boolean;
|
|
1021
1093
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
1022
1094
|
selectedElementIds: Readonly<{
|
|
@@ -1150,7 +1222,16 @@ export declare const actionToggleTheme: {
|
|
|
1150
1222
|
name: string;
|
|
1151
1223
|
tab?: string | undefined;
|
|
1152
1224
|
} | null;
|
|
1153
|
-
openDialog:
|
|
1225
|
+
openDialog: {
|
|
1226
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
1227
|
+
} | {
|
|
1228
|
+
name: "settings";
|
|
1229
|
+
source: "settings" | "tool" | "generation";
|
|
1230
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
1231
|
+
} | {
|
|
1232
|
+
name: "ttd";
|
|
1233
|
+
tab: "mermaid" | "text-to-diagram";
|
|
1234
|
+
} | null;
|
|
1154
1235
|
defaultSidebarDockedPreference: boolean;
|
|
1155
1236
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
1156
1237
|
selectedElementIds: Readonly<{
|
|
@@ -1281,7 +1362,16 @@ export declare const actionToggleEraserTool: {
|
|
|
1281
1362
|
name: string;
|
|
1282
1363
|
tab?: string | undefined;
|
|
1283
1364
|
} | null;
|
|
1284
|
-
openDialog:
|
|
1365
|
+
openDialog: {
|
|
1366
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
1367
|
+
} | {
|
|
1368
|
+
name: "settings";
|
|
1369
|
+
source: "settings" | "tool" | "generation";
|
|
1370
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
1371
|
+
} | {
|
|
1372
|
+
name: "ttd";
|
|
1373
|
+
tab: "mermaid" | "text-to-diagram";
|
|
1374
|
+
} | null;
|
|
1285
1375
|
defaultSidebarDockedPreference: boolean;
|
|
1286
1376
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
1287
1377
|
previousSelectedElementIds: {
|
|
@@ -1406,7 +1496,16 @@ export declare const actionToggleHandTool: {
|
|
|
1406
1496
|
name: string;
|
|
1407
1497
|
tab?: string | undefined;
|
|
1408
1498
|
} | null;
|
|
1409
|
-
openDialog:
|
|
1499
|
+
openDialog: {
|
|
1500
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
1501
|
+
} | {
|
|
1502
|
+
name: "settings";
|
|
1503
|
+
source: "settings" | "tool" | "generation";
|
|
1504
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
1505
|
+
} | {
|
|
1506
|
+
name: "ttd";
|
|
1507
|
+
tab: "mermaid" | "text-to-diagram";
|
|
1508
|
+
} | null;
|
|
1410
1509
|
defaultSidebarDockedPreference: boolean;
|
|
1411
1510
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
1412
1511
|
previousSelectedElementIds: {
|
|
@@ -76,7 +76,16 @@ export declare const actionCopy: {
|
|
|
76
76
|
name: string;
|
|
77
77
|
tab?: string | undefined;
|
|
78
78
|
} | null;
|
|
79
|
-
openDialog:
|
|
79
|
+
openDialog: {
|
|
80
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
81
|
+
} | {
|
|
82
|
+
name: "settings";
|
|
83
|
+
source: "settings" | "tool" | "generation";
|
|
84
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
85
|
+
} | {
|
|
86
|
+
name: "ttd";
|
|
87
|
+
tab: "mermaid" | "text-to-diagram";
|
|
88
|
+
} | null;
|
|
80
89
|
defaultSidebarDockedPreference: boolean;
|
|
81
90
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
82
91
|
selectedElementIds: Readonly<{
|
|
@@ -212,7 +221,16 @@ export declare const actionPaste: {
|
|
|
212
221
|
name: string;
|
|
213
222
|
tab?: string | undefined;
|
|
214
223
|
} | null;
|
|
215
|
-
openDialog:
|
|
224
|
+
openDialog: {
|
|
225
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
226
|
+
} | {
|
|
227
|
+
name: "settings";
|
|
228
|
+
source: "settings" | "tool" | "generation";
|
|
229
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
230
|
+
} | {
|
|
231
|
+
name: "ttd";
|
|
232
|
+
tab: "mermaid" | "text-to-diagram";
|
|
233
|
+
} | null;
|
|
216
234
|
defaultSidebarDockedPreference: boolean;
|
|
217
235
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
218
236
|
selectedElementIds: Readonly<{
|
|
@@ -348,7 +366,16 @@ export declare const actionCut: {
|
|
|
348
366
|
name: string;
|
|
349
367
|
tab?: string | undefined;
|
|
350
368
|
} | null;
|
|
351
|
-
openDialog:
|
|
369
|
+
openDialog: {
|
|
370
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
371
|
+
} | {
|
|
372
|
+
name: "settings";
|
|
373
|
+
source: "settings" | "tool" | "generation";
|
|
374
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
375
|
+
} | {
|
|
376
|
+
name: "ttd";
|
|
377
|
+
tab: "mermaid" | "text-to-diagram";
|
|
378
|
+
} | null;
|
|
352
379
|
defaultSidebarDockedPreference: boolean;
|
|
353
380
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
354
381
|
selectedElementIds: Readonly<{
|
|
@@ -499,7 +526,16 @@ export declare const actionCut: {
|
|
|
499
526
|
name: string;
|
|
500
527
|
tab?: string | undefined;
|
|
501
528
|
} | null;
|
|
502
|
-
openDialog:
|
|
529
|
+
openDialog: {
|
|
530
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
531
|
+
} | {
|
|
532
|
+
name: "settings";
|
|
533
|
+
source: "settings" | "tool" | "generation";
|
|
534
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
535
|
+
} | {
|
|
536
|
+
name: "ttd";
|
|
537
|
+
tab: "mermaid" | "text-to-diagram";
|
|
538
|
+
} | null;
|
|
503
539
|
defaultSidebarDockedPreference: boolean;
|
|
504
540
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
505
541
|
selectedElementIds: Readonly<{
|
|
@@ -621,7 +657,16 @@ export declare const actionCut: {
|
|
|
621
657
|
name: string;
|
|
622
658
|
tab?: string | undefined;
|
|
623
659
|
} | null;
|
|
624
|
-
openDialog:
|
|
660
|
+
openDialog: {
|
|
661
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
662
|
+
} | {
|
|
663
|
+
name: "settings";
|
|
664
|
+
source: "settings" | "tool" | "generation";
|
|
665
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
666
|
+
} | {
|
|
667
|
+
name: "ttd";
|
|
668
|
+
tab: "mermaid" | "text-to-diagram";
|
|
669
|
+
} | null;
|
|
625
670
|
defaultSidebarDockedPreference: boolean;
|
|
626
671
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
627
672
|
previousSelectedElementIds: {
|
|
@@ -751,7 +796,16 @@ export declare const actionCopyAsSvg: {
|
|
|
751
796
|
name: string;
|
|
752
797
|
tab?: string | undefined;
|
|
753
798
|
} | null;
|
|
754
|
-
openDialog:
|
|
799
|
+
openDialog: {
|
|
800
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
801
|
+
} | {
|
|
802
|
+
name: "settings";
|
|
803
|
+
source: "settings" | "tool" | "generation";
|
|
804
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
805
|
+
} | {
|
|
806
|
+
name: "ttd";
|
|
807
|
+
tab: "mermaid" | "text-to-diagram";
|
|
808
|
+
} | null;
|
|
755
809
|
defaultSidebarDockedPreference: boolean;
|
|
756
810
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
757
811
|
selectedElementIds: Readonly<{
|
|
@@ -887,7 +941,16 @@ export declare const actionCopyAsPng: {
|
|
|
887
941
|
name: string;
|
|
888
942
|
tab?: string | undefined;
|
|
889
943
|
} | null;
|
|
890
|
-
openDialog:
|
|
944
|
+
openDialog: {
|
|
945
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
946
|
+
} | {
|
|
947
|
+
name: "settings";
|
|
948
|
+
source: "settings" | "tool" | "generation";
|
|
949
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
950
|
+
} | {
|
|
951
|
+
name: "ttd";
|
|
952
|
+
tab: "mermaid" | "text-to-diagram";
|
|
953
|
+
} | null;
|
|
891
954
|
defaultSidebarDockedPreference: boolean;
|
|
892
955
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
893
956
|
selectedElementIds: Readonly<{
|
|
@@ -80,7 +80,16 @@ export declare const actionDeleteSelected: {
|
|
|
80
80
|
name: string;
|
|
81
81
|
tab?: string | undefined;
|
|
82
82
|
} | null;
|
|
83
|
-
openDialog:
|
|
83
|
+
openDialog: {
|
|
84
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
85
|
+
} | {
|
|
86
|
+
name: "settings";
|
|
87
|
+
source: "settings" | "tool" | "generation";
|
|
88
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
89
|
+
} | {
|
|
90
|
+
name: "ttd";
|
|
91
|
+
tab: "mermaid" | "text-to-diagram";
|
|
92
|
+
} | null;
|
|
84
93
|
defaultSidebarDockedPreference: boolean;
|
|
85
94
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
86
95
|
selectedElementIds: Readonly<{
|
|
@@ -231,7 +240,16 @@ export declare const actionDeleteSelected: {
|
|
|
231
240
|
name: string;
|
|
232
241
|
tab?: string | undefined;
|
|
233
242
|
} | null;
|
|
234
|
-
openDialog:
|
|
243
|
+
openDialog: {
|
|
244
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
245
|
+
} | {
|
|
246
|
+
name: "settings";
|
|
247
|
+
source: "settings" | "tool" | "generation";
|
|
248
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
249
|
+
} | {
|
|
250
|
+
name: "ttd";
|
|
251
|
+
tab: "mermaid" | "text-to-diagram";
|
|
252
|
+
} | null;
|
|
235
253
|
defaultSidebarDockedPreference: boolean;
|
|
236
254
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
237
255
|
selectedElementIds: Readonly<{
|
|
@@ -353,7 +371,16 @@ export declare const actionDeleteSelected: {
|
|
|
353
371
|
name: string;
|
|
354
372
|
tab?: string | undefined;
|
|
355
373
|
} | null;
|
|
356
|
-
openDialog:
|
|
374
|
+
openDialog: {
|
|
375
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
376
|
+
} | {
|
|
377
|
+
name: "settings";
|
|
378
|
+
source: "settings" | "tool" | "generation";
|
|
379
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
380
|
+
} | {
|
|
381
|
+
name: "ttd";
|
|
382
|
+
tab: "mermaid" | "text-to-diagram";
|
|
383
|
+
} | null;
|
|
357
384
|
defaultSidebarDockedPreference: boolean;
|
|
358
385
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
359
386
|
previousSelectedElementIds: {
|
|
@@ -79,7 +79,16 @@ export declare const actionToggleElementLock: {
|
|
|
79
79
|
name: string;
|
|
80
80
|
tab?: string | undefined;
|
|
81
81
|
} | null;
|
|
82
|
-
openDialog:
|
|
82
|
+
openDialog: {
|
|
83
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
84
|
+
} | {
|
|
85
|
+
name: "settings";
|
|
86
|
+
source: "settings" | "tool" | "generation";
|
|
87
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
88
|
+
} | {
|
|
89
|
+
name: "ttd";
|
|
90
|
+
tab: "mermaid" | "text-to-diagram";
|
|
91
|
+
} | null;
|
|
83
92
|
defaultSidebarDockedPreference: boolean;
|
|
84
93
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
85
94
|
selectedElementIds: Readonly<{
|
|
@@ -217,7 +226,16 @@ export declare const actionUnlockAllElements: {
|
|
|
217
226
|
name: string;
|
|
218
227
|
tab?: string | undefined;
|
|
219
228
|
} | null;
|
|
220
|
-
openDialog:
|
|
229
|
+
openDialog: {
|
|
230
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
231
|
+
} | {
|
|
232
|
+
name: "settings";
|
|
233
|
+
source: "settings" | "tool" | "generation";
|
|
234
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
235
|
+
} | {
|
|
236
|
+
name: "ttd";
|
|
237
|
+
tab: "mermaid" | "text-to-diagram";
|
|
238
|
+
} | null;
|
|
221
239
|
defaultSidebarDockedPreference: boolean;
|
|
222
240
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
223
241
|
previousSelectedElementIds: {
|
|
@@ -75,7 +75,16 @@ export declare const actionChangeProjectName: {
|
|
|
75
75
|
name: string;
|
|
76
76
|
tab?: string | undefined;
|
|
77
77
|
} | null;
|
|
78
|
-
openDialog:
|
|
78
|
+
openDialog: {
|
|
79
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
80
|
+
} | {
|
|
81
|
+
name: "settings";
|
|
82
|
+
source: "settings" | "tool" | "generation";
|
|
83
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
84
|
+
} | {
|
|
85
|
+
name: "ttd";
|
|
86
|
+
tab: "mermaid" | "text-to-diagram";
|
|
87
|
+
} | null;
|
|
79
88
|
defaultSidebarDockedPreference: boolean;
|
|
80
89
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
81
90
|
selectedElementIds: Readonly<{
|
|
@@ -208,7 +217,16 @@ export declare const actionChangeExportScale: {
|
|
|
208
217
|
name: string;
|
|
209
218
|
tab?: string | undefined;
|
|
210
219
|
} | null;
|
|
211
|
-
openDialog:
|
|
220
|
+
openDialog: {
|
|
221
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
222
|
+
} | {
|
|
223
|
+
name: "settings";
|
|
224
|
+
source: "settings" | "tool" | "generation";
|
|
225
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
226
|
+
} | {
|
|
227
|
+
name: "ttd";
|
|
228
|
+
tab: "mermaid" | "text-to-diagram";
|
|
229
|
+
} | null;
|
|
212
230
|
defaultSidebarDockedPreference: boolean;
|
|
213
231
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
214
232
|
selectedElementIds: Readonly<{
|
|
@@ -341,7 +359,16 @@ export declare const actionChangeExportBackground: {
|
|
|
341
359
|
name: string;
|
|
342
360
|
tab?: string | undefined;
|
|
343
361
|
} | null;
|
|
344
|
-
openDialog:
|
|
362
|
+
openDialog: {
|
|
363
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
364
|
+
} | {
|
|
365
|
+
name: "settings";
|
|
366
|
+
source: "settings" | "tool" | "generation";
|
|
367
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
368
|
+
} | {
|
|
369
|
+
name: "ttd";
|
|
370
|
+
tab: "mermaid" | "text-to-diagram";
|
|
371
|
+
} | null;
|
|
345
372
|
defaultSidebarDockedPreference: boolean;
|
|
346
373
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
347
374
|
selectedElementIds: Readonly<{
|
|
@@ -474,7 +501,16 @@ export declare const actionChangeExportEmbedScene: {
|
|
|
474
501
|
name: string;
|
|
475
502
|
tab?: string | undefined;
|
|
476
503
|
} | null;
|
|
477
|
-
openDialog:
|
|
504
|
+
openDialog: {
|
|
505
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
506
|
+
} | {
|
|
507
|
+
name: "settings";
|
|
508
|
+
source: "settings" | "tool" | "generation";
|
|
509
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
510
|
+
} | {
|
|
511
|
+
name: "ttd";
|
|
512
|
+
tab: "mermaid" | "text-to-diagram";
|
|
513
|
+
} | null;
|
|
478
514
|
defaultSidebarDockedPreference: boolean;
|
|
479
515
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
480
516
|
selectedElementIds: Readonly<{
|
|
@@ -612,7 +648,16 @@ export declare const actionSaveToActiveFile: {
|
|
|
612
648
|
name: string;
|
|
613
649
|
tab?: string | undefined;
|
|
614
650
|
} | null;
|
|
615
|
-
openDialog:
|
|
651
|
+
openDialog: {
|
|
652
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
653
|
+
} | {
|
|
654
|
+
name: "settings";
|
|
655
|
+
source: "settings" | "tool" | "generation";
|
|
656
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
657
|
+
} | {
|
|
658
|
+
name: "ttd";
|
|
659
|
+
tab: "mermaid" | "text-to-diagram";
|
|
660
|
+
} | null;
|
|
616
661
|
defaultSidebarDockedPreference: boolean;
|
|
617
662
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
618
663
|
selectedElementIds: Readonly<{
|
|
@@ -878,7 +923,16 @@ export declare const actionLoadScene: {
|
|
|
878
923
|
name: string;
|
|
879
924
|
tab?: string | undefined;
|
|
880
925
|
} | null;
|
|
881
|
-
openDialog:
|
|
926
|
+
openDialog: {
|
|
927
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
928
|
+
} | {
|
|
929
|
+
name: "settings";
|
|
930
|
+
source: "settings" | "tool" | "generation";
|
|
931
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
932
|
+
} | {
|
|
933
|
+
name: "ttd";
|
|
934
|
+
tab: "mermaid" | "text-to-diagram";
|
|
935
|
+
} | null;
|
|
882
936
|
defaultSidebarDockedPreference: boolean;
|
|
883
937
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
884
938
|
selectedElementIds: Readonly<{
|
|
@@ -997,7 +1051,16 @@ export declare const actionLoadScene: {
|
|
|
997
1051
|
name: string;
|
|
998
1052
|
tab?: string | undefined;
|
|
999
1053
|
} | null;
|
|
1000
|
-
openDialog:
|
|
1054
|
+
openDialog: {
|
|
1055
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
1056
|
+
} | {
|
|
1057
|
+
name: "settings";
|
|
1058
|
+
source: "settings" | "tool" | "generation";
|
|
1059
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
1060
|
+
} | {
|
|
1061
|
+
name: "ttd";
|
|
1062
|
+
tab: "mermaid" | "text-to-diagram";
|
|
1063
|
+
} | null;
|
|
1001
1064
|
defaultSidebarDockedPreference: boolean;
|
|
1002
1065
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
1003
1066
|
selectedElementIds: Readonly<{
|
|
@@ -1131,7 +1194,16 @@ export declare const actionExportWithDarkMode: {
|
|
|
1131
1194
|
name: string;
|
|
1132
1195
|
tab?: string | undefined;
|
|
1133
1196
|
} | null;
|
|
1134
|
-
openDialog:
|
|
1197
|
+
openDialog: {
|
|
1198
|
+
name: "imageExport" | "help" | "jsonExport";
|
|
1199
|
+
} | {
|
|
1200
|
+
name: "settings";
|
|
1201
|
+
source: "settings" | "tool" | "generation";
|
|
1202
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
1203
|
+
} | {
|
|
1204
|
+
name: "ttd";
|
|
1205
|
+
tab: "mermaid" | "text-to-diagram";
|
|
1206
|
+
} | null;
|
|
1135
1207
|
defaultSidebarDockedPreference: boolean;
|
|
1136
1208
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
1137
1209
|
selectedElementIds: Readonly<{
|