@excalidraw/excalidraw 0.17.0-fe75f29 → 0.17.1-4bdeaf9
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 +20 -0
- package/dist/excalidraw-assets/{vendor-0452b0f95a04b9622103.js → vendor-94b72f67bbf2d6c0da4f.js} +2 -2
- package/dist/excalidraw-assets-dev/{vendor-2466bf62a35e940e8f28.js → vendor-4b7e1a9df5f218d0a300.js} +2 -2
- package/dist/excalidraw-with-preact.development.js +30 -19
- package/dist/excalidraw-with-preact.production.min.js +1 -1
- package/dist/excalidraw.development.js +178 -156
- package/dist/excalidraw.production.min.js +1 -1
- package/dist/excalidraw.production.min.js.LICENSE.txt +10 -0
- package/package.json +1 -1
- package/types/actions/actionAddToLibrary.d.ts +12 -9
- package/types/actions/actionBoundText.d.ts +8 -6
- package/types/actions/actionCanvas.d.ts +44 -33
- package/types/actions/actionClipboard.d.ts +28 -21
- package/types/actions/actionDeleteSelected.d.ts +12 -9
- package/types/actions/actionElementLock.d.ts +8 -6
- package/types/actions/actionExport.d.ts +32 -24
- package/types/actions/actionFinalize.d.ts +8 -6
- package/types/actions/actionFrame.d.ts +12 -9
- package/types/actions/actionGroup.d.ts +8 -6
- package/types/actions/actionLinearEditor.d.ts +4 -3
- package/types/actions/actionMenu.d.ts +8 -6
- package/types/actions/actionProperties.d.ts +52 -39
- package/types/actions/actionSelectAll.d.ts +4 -3
- package/types/actions/actionStyles.d.ts +4 -3
- package/types/actions/actionToggleGridMode.d.ts +4 -3
- package/types/actions/actionToggleObjectsSnapMode.d.ts +4 -3
- package/types/actions/actionToggleStats.d.ts +4 -3
- package/types/actions/actionToggleViewMode.d.ts +4 -3
- package/types/actions/actionToggleZenMode.d.ts +4 -3
- package/types/components/MagicSettings.d.ts +1 -1
- package/types/components/TTDDialog/TTDDialog.d.ts +1 -1
- package/types/components/TTDDialog/TTDDialogPanel.d.ts +2 -1
- package/types/components/TTDDialog/TTDDialogSubmitShortcut.d.ts +1 -0
- package/types/components/TTDDialog/TTDDialogTabs.d.ts +8 -3
- package/types/components/TTDDialog/common.d.ts +3 -4
- package/types/constants.d.ts +1 -0
- package/types/element/Hyperlink.d.ts +4 -3
- package/types/element/embeddable.d.ts +4 -3
- package/types/element/linearElementEditor.d.ts +4 -3
- package/types/packages/excalidraw/dist/excalidraw.development.d.ts +2 -2
- package/types/packages/excalidraw/webpack.preact.config.d.ts +127 -23
- package/types/types.d.ts +3 -2
- /package/dist/excalidraw-assets/{vendor-0452b0f95a04b9622103.js.LICENSE.txt → vendor-94b72f67bbf2d6c0da4f.js.LICENSE.txt} +0 -0
- /package/types/packages/excalidraw/dist/excalidraw-assets/{vendor-0452b0f95a04b9622103.d.ts → vendor-94b72f67bbf2d6c0da4f.d.ts} +0 -0
- /package/types/packages/excalidraw/dist/excalidraw-assets-dev/{vendor-2466bf62a35e940e8f28.d.ts → vendor-4b7e1a9df5f218d0a300.d.ts} +0 -0
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* @license React
|
|
5
|
+
* react-jsx-runtime.production.min.js
|
|
6
|
+
*
|
|
7
|
+
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
8
|
+
*
|
|
9
|
+
* This source code is licensed under the MIT license found in the
|
|
10
|
+
* LICENSE file in the root directory of this source tree.
|
|
11
|
+
*/
|
|
12
|
+
|
|
3
13
|
/**
|
|
4
14
|
* @license React
|
|
5
15
|
* use-sync-external-store-shim.production.min.js
|
package/package.json
CHANGED
|
@@ -82,11 +82,12 @@ export declare const actionAddToLibrary: {
|
|
|
82
82
|
openDialog: {
|
|
83
83
|
name: "imageExport" | "help" | "jsonExport";
|
|
84
84
|
} | {
|
|
85
|
-
name: "
|
|
86
|
-
source: "
|
|
85
|
+
name: "settings";
|
|
86
|
+
source: "settings" | "tool" | "generation";
|
|
87
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
87
88
|
} | {
|
|
88
89
|
name: "ttd";
|
|
89
|
-
tab:
|
|
90
|
+
tab: "mermaid" | "text-to-diagram";
|
|
90
91
|
} | null;
|
|
91
92
|
defaultSidebarDockedPreference: boolean;
|
|
92
93
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -207,11 +208,12 @@ export declare const actionAddToLibrary: {
|
|
|
207
208
|
openDialog: {
|
|
208
209
|
name: "imageExport" | "help" | "jsonExport";
|
|
209
210
|
} | {
|
|
210
|
-
name: "
|
|
211
|
-
source: "
|
|
211
|
+
name: "settings";
|
|
212
|
+
source: "settings" | "tool" | "generation";
|
|
213
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
212
214
|
} | {
|
|
213
215
|
name: "ttd";
|
|
214
|
-
tab:
|
|
216
|
+
tab: "mermaid" | "text-to-diagram";
|
|
215
217
|
} | null;
|
|
216
218
|
defaultSidebarDockedPreference: boolean;
|
|
217
219
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -337,11 +339,12 @@ export declare const actionAddToLibrary: {
|
|
|
337
339
|
openDialog: {
|
|
338
340
|
name: "imageExport" | "help" | "jsonExport";
|
|
339
341
|
} | {
|
|
340
|
-
name: "
|
|
341
|
-
source: "
|
|
342
|
+
name: "settings";
|
|
343
|
+
source: "settings" | "tool" | "generation";
|
|
344
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
342
345
|
} | {
|
|
343
346
|
name: "ttd";
|
|
344
|
-
tab:
|
|
347
|
+
tab: "mermaid" | "text-to-diagram";
|
|
345
348
|
} | null;
|
|
346
349
|
defaultSidebarDockedPreference: boolean;
|
|
347
350
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -102,11 +102,12 @@ export declare const actionBindText: {
|
|
|
102
102
|
openDialog: {
|
|
103
103
|
name: "imageExport" | "help" | "jsonExport";
|
|
104
104
|
} | {
|
|
105
|
-
name: "
|
|
106
|
-
source: "
|
|
105
|
+
name: "settings";
|
|
106
|
+
source: "settings" | "tool" | "generation";
|
|
107
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
107
108
|
} | {
|
|
108
109
|
name: "ttd";
|
|
109
|
-
tab:
|
|
110
|
+
tab: "mermaid" | "text-to-diagram";
|
|
110
111
|
} | null;
|
|
111
112
|
defaultSidebarDockedPreference: boolean;
|
|
112
113
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -244,11 +245,12 @@ export declare const actionWrapTextInContainer: {
|
|
|
244
245
|
openDialog: {
|
|
245
246
|
name: "imageExport" | "help" | "jsonExport";
|
|
246
247
|
} | {
|
|
247
|
-
name: "
|
|
248
|
-
source: "
|
|
248
|
+
name: "settings";
|
|
249
|
+
source: "settings" | "tool" | "generation";
|
|
250
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
249
251
|
} | {
|
|
250
252
|
name: "ttd";
|
|
251
|
-
tab:
|
|
253
|
+
tab: "mermaid" | "text-to-diagram";
|
|
252
254
|
} | null;
|
|
253
255
|
defaultSidebarDockedPreference: boolean;
|
|
254
256
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -105,11 +105,12 @@ export declare const actionClearCanvas: {
|
|
|
105
105
|
openDialog: {
|
|
106
106
|
name: "imageExport" | "help" | "jsonExport";
|
|
107
107
|
} | {
|
|
108
|
-
name: "
|
|
109
|
-
source: "
|
|
108
|
+
name: "settings";
|
|
109
|
+
source: "settings" | "tool" | "generation";
|
|
110
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
110
111
|
} | {
|
|
111
112
|
name: "ttd";
|
|
112
|
-
tab:
|
|
113
|
+
tab: "mermaid" | "text-to-diagram";
|
|
113
114
|
} | null;
|
|
114
115
|
defaultSidebarDockedPreference: boolean;
|
|
115
116
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -231,11 +232,12 @@ export declare const actionZoomIn: {
|
|
|
231
232
|
openDialog: {
|
|
232
233
|
name: "imageExport" | "help" | "jsonExport";
|
|
233
234
|
} | {
|
|
234
|
-
name: "
|
|
235
|
-
source: "
|
|
235
|
+
name: "settings";
|
|
236
|
+
source: "settings" | "tool" | "generation";
|
|
237
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
236
238
|
} | {
|
|
237
239
|
name: "ttd";
|
|
238
|
-
tab:
|
|
240
|
+
tab: "mermaid" | "text-to-diagram";
|
|
239
241
|
} | null;
|
|
240
242
|
defaultSidebarDockedPreference: boolean;
|
|
241
243
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -373,11 +375,12 @@ export declare const actionZoomOut: {
|
|
|
373
375
|
openDialog: {
|
|
374
376
|
name: "imageExport" | "help" | "jsonExport";
|
|
375
377
|
} | {
|
|
376
|
-
name: "
|
|
377
|
-
source: "
|
|
378
|
+
name: "settings";
|
|
379
|
+
source: "settings" | "tool" | "generation";
|
|
380
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
378
381
|
} | {
|
|
379
382
|
name: "ttd";
|
|
380
|
-
tab:
|
|
383
|
+
tab: "mermaid" | "text-to-diagram";
|
|
381
384
|
} | null;
|
|
382
385
|
defaultSidebarDockedPreference: boolean;
|
|
383
386
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -515,11 +518,12 @@ export declare const actionResetZoom: {
|
|
|
515
518
|
openDialog: {
|
|
516
519
|
name: "imageExport" | "help" | "jsonExport";
|
|
517
520
|
} | {
|
|
518
|
-
name: "
|
|
519
|
-
source: "
|
|
521
|
+
name: "settings";
|
|
522
|
+
source: "settings" | "tool" | "generation";
|
|
523
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
520
524
|
} | {
|
|
521
525
|
name: "ttd";
|
|
522
|
-
tab:
|
|
526
|
+
tab: "mermaid" | "text-to-diagram";
|
|
523
527
|
} | null;
|
|
524
528
|
defaultSidebarDockedPreference: boolean;
|
|
525
529
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -658,11 +662,12 @@ export declare const zoomToFit: ({ targetElements, appState, fitToViewport, view
|
|
|
658
662
|
openDialog: {
|
|
659
663
|
name: "imageExport" | "help" | "jsonExport";
|
|
660
664
|
} | {
|
|
661
|
-
name: "
|
|
662
|
-
source: "
|
|
665
|
+
name: "settings";
|
|
666
|
+
source: "settings" | "tool" | "generation";
|
|
667
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
663
668
|
} | {
|
|
664
669
|
name: "ttd";
|
|
665
|
-
tab:
|
|
670
|
+
tab: "mermaid" | "text-to-diagram";
|
|
666
671
|
} | null;
|
|
667
672
|
defaultSidebarDockedPreference: boolean;
|
|
668
673
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -794,11 +799,12 @@ export declare const actionZoomToFitSelectionInViewport: {
|
|
|
794
799
|
openDialog: {
|
|
795
800
|
name: "imageExport" | "help" | "jsonExport";
|
|
796
801
|
} | {
|
|
797
|
-
name: "
|
|
798
|
-
source: "
|
|
802
|
+
name: "settings";
|
|
803
|
+
source: "settings" | "tool" | "generation";
|
|
804
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
799
805
|
} | {
|
|
800
806
|
name: "ttd";
|
|
801
|
-
tab:
|
|
807
|
+
tab: "mermaid" | "text-to-diagram";
|
|
802
808
|
} | null;
|
|
803
809
|
defaultSidebarDockedPreference: boolean;
|
|
804
810
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -934,11 +940,12 @@ export declare const actionZoomToFitSelection: {
|
|
|
934
940
|
openDialog: {
|
|
935
941
|
name: "imageExport" | "help" | "jsonExport";
|
|
936
942
|
} | {
|
|
937
|
-
name: "
|
|
938
|
-
source: "
|
|
943
|
+
name: "settings";
|
|
944
|
+
source: "settings" | "tool" | "generation";
|
|
945
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
939
946
|
} | {
|
|
940
947
|
name: "ttd";
|
|
941
|
-
tab:
|
|
948
|
+
tab: "mermaid" | "text-to-diagram";
|
|
942
949
|
} | null;
|
|
943
950
|
defaultSidebarDockedPreference: boolean;
|
|
944
951
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -1075,11 +1082,12 @@ export declare const actionZoomToFit: {
|
|
|
1075
1082
|
openDialog: {
|
|
1076
1083
|
name: "imageExport" | "help" | "jsonExport";
|
|
1077
1084
|
} | {
|
|
1078
|
-
name: "
|
|
1079
|
-
source: "
|
|
1085
|
+
name: "settings";
|
|
1086
|
+
source: "settings" | "tool" | "generation";
|
|
1087
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
1080
1088
|
} | {
|
|
1081
1089
|
name: "ttd";
|
|
1082
|
-
tab:
|
|
1090
|
+
tab: "mermaid" | "text-to-diagram";
|
|
1083
1091
|
} | null;
|
|
1084
1092
|
defaultSidebarDockedPreference: boolean;
|
|
1085
1093
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -1217,11 +1225,12 @@ export declare const actionToggleTheme: {
|
|
|
1217
1225
|
openDialog: {
|
|
1218
1226
|
name: "imageExport" | "help" | "jsonExport";
|
|
1219
1227
|
} | {
|
|
1220
|
-
name: "
|
|
1221
|
-
source: "
|
|
1228
|
+
name: "settings";
|
|
1229
|
+
source: "settings" | "tool" | "generation";
|
|
1230
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
1222
1231
|
} | {
|
|
1223
1232
|
name: "ttd";
|
|
1224
|
-
tab:
|
|
1233
|
+
tab: "mermaid" | "text-to-diagram";
|
|
1225
1234
|
} | null;
|
|
1226
1235
|
defaultSidebarDockedPreference: boolean;
|
|
1227
1236
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -1356,11 +1365,12 @@ export declare const actionToggleEraserTool: {
|
|
|
1356
1365
|
openDialog: {
|
|
1357
1366
|
name: "imageExport" | "help" | "jsonExport";
|
|
1358
1367
|
} | {
|
|
1359
|
-
name: "
|
|
1360
|
-
source: "
|
|
1368
|
+
name: "settings";
|
|
1369
|
+
source: "settings" | "tool" | "generation";
|
|
1370
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
1361
1371
|
} | {
|
|
1362
1372
|
name: "ttd";
|
|
1363
|
-
tab:
|
|
1373
|
+
tab: "mermaid" | "text-to-diagram";
|
|
1364
1374
|
} | null;
|
|
1365
1375
|
defaultSidebarDockedPreference: boolean;
|
|
1366
1376
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -1489,11 +1499,12 @@ export declare const actionToggleHandTool: {
|
|
|
1489
1499
|
openDialog: {
|
|
1490
1500
|
name: "imageExport" | "help" | "jsonExport";
|
|
1491
1501
|
} | {
|
|
1492
|
-
name: "
|
|
1493
|
-
source: "
|
|
1502
|
+
name: "settings";
|
|
1503
|
+
source: "settings" | "tool" | "generation";
|
|
1504
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
1494
1505
|
} | {
|
|
1495
1506
|
name: "ttd";
|
|
1496
|
-
tab:
|
|
1507
|
+
tab: "mermaid" | "text-to-diagram";
|
|
1497
1508
|
} | null;
|
|
1498
1509
|
defaultSidebarDockedPreference: boolean;
|
|
1499
1510
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -79,11 +79,12 @@ export declare const actionCopy: {
|
|
|
79
79
|
openDialog: {
|
|
80
80
|
name: "imageExport" | "help" | "jsonExport";
|
|
81
81
|
} | {
|
|
82
|
-
name: "
|
|
83
|
-
source: "
|
|
82
|
+
name: "settings";
|
|
83
|
+
source: "settings" | "tool" | "generation";
|
|
84
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
84
85
|
} | {
|
|
85
86
|
name: "ttd";
|
|
86
|
-
tab:
|
|
87
|
+
tab: "mermaid" | "text-to-diagram";
|
|
87
88
|
} | null;
|
|
88
89
|
defaultSidebarDockedPreference: boolean;
|
|
89
90
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -223,11 +224,12 @@ export declare const actionPaste: {
|
|
|
223
224
|
openDialog: {
|
|
224
225
|
name: "imageExport" | "help" | "jsonExport";
|
|
225
226
|
} | {
|
|
226
|
-
name: "
|
|
227
|
-
source: "
|
|
227
|
+
name: "settings";
|
|
228
|
+
source: "settings" | "tool" | "generation";
|
|
229
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
228
230
|
} | {
|
|
229
231
|
name: "ttd";
|
|
230
|
-
tab:
|
|
232
|
+
tab: "mermaid" | "text-to-diagram";
|
|
231
233
|
} | null;
|
|
232
234
|
defaultSidebarDockedPreference: boolean;
|
|
233
235
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -367,11 +369,12 @@ export declare const actionCut: {
|
|
|
367
369
|
openDialog: {
|
|
368
370
|
name: "imageExport" | "help" | "jsonExport";
|
|
369
371
|
} | {
|
|
370
|
-
name: "
|
|
371
|
-
source: "
|
|
372
|
+
name: "settings";
|
|
373
|
+
source: "settings" | "tool" | "generation";
|
|
374
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
372
375
|
} | {
|
|
373
376
|
name: "ttd";
|
|
374
|
-
tab:
|
|
377
|
+
tab: "mermaid" | "text-to-diagram";
|
|
375
378
|
} | null;
|
|
376
379
|
defaultSidebarDockedPreference: boolean;
|
|
377
380
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -526,11 +529,12 @@ export declare const actionCut: {
|
|
|
526
529
|
openDialog: {
|
|
527
530
|
name: "imageExport" | "help" | "jsonExport";
|
|
528
531
|
} | {
|
|
529
|
-
name: "
|
|
530
|
-
source: "
|
|
532
|
+
name: "settings";
|
|
533
|
+
source: "settings" | "tool" | "generation";
|
|
534
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
531
535
|
} | {
|
|
532
536
|
name: "ttd";
|
|
533
|
-
tab:
|
|
537
|
+
tab: "mermaid" | "text-to-diagram";
|
|
534
538
|
} | null;
|
|
535
539
|
defaultSidebarDockedPreference: boolean;
|
|
536
540
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -656,11 +660,12 @@ export declare const actionCut: {
|
|
|
656
660
|
openDialog: {
|
|
657
661
|
name: "imageExport" | "help" | "jsonExport";
|
|
658
662
|
} | {
|
|
659
|
-
name: "
|
|
660
|
-
source: "
|
|
663
|
+
name: "settings";
|
|
664
|
+
source: "settings" | "tool" | "generation";
|
|
665
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
661
666
|
} | {
|
|
662
667
|
name: "ttd";
|
|
663
|
-
tab:
|
|
668
|
+
tab: "mermaid" | "text-to-diagram";
|
|
664
669
|
} | null;
|
|
665
670
|
defaultSidebarDockedPreference: boolean;
|
|
666
671
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -794,11 +799,12 @@ export declare const actionCopyAsSvg: {
|
|
|
794
799
|
openDialog: {
|
|
795
800
|
name: "imageExport" | "help" | "jsonExport";
|
|
796
801
|
} | {
|
|
797
|
-
name: "
|
|
798
|
-
source: "
|
|
802
|
+
name: "settings";
|
|
803
|
+
source: "settings" | "tool" | "generation";
|
|
804
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
799
805
|
} | {
|
|
800
806
|
name: "ttd";
|
|
801
|
-
tab:
|
|
807
|
+
tab: "mermaid" | "text-to-diagram";
|
|
802
808
|
} | null;
|
|
803
809
|
defaultSidebarDockedPreference: boolean;
|
|
804
810
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -938,11 +944,12 @@ export declare const actionCopyAsPng: {
|
|
|
938
944
|
openDialog: {
|
|
939
945
|
name: "imageExport" | "help" | "jsonExport";
|
|
940
946
|
} | {
|
|
941
|
-
name: "
|
|
942
|
-
source: "
|
|
947
|
+
name: "settings";
|
|
948
|
+
source: "settings" | "tool" | "generation";
|
|
949
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
943
950
|
} | {
|
|
944
951
|
name: "ttd";
|
|
945
|
-
tab:
|
|
952
|
+
tab: "mermaid" | "text-to-diagram";
|
|
946
953
|
} | null;
|
|
947
954
|
defaultSidebarDockedPreference: boolean;
|
|
948
955
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -83,11 +83,12 @@ export declare const actionDeleteSelected: {
|
|
|
83
83
|
openDialog: {
|
|
84
84
|
name: "imageExport" | "help" | "jsonExport";
|
|
85
85
|
} | {
|
|
86
|
-
name: "
|
|
87
|
-
source: "
|
|
86
|
+
name: "settings";
|
|
87
|
+
source: "settings" | "tool" | "generation";
|
|
88
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
88
89
|
} | {
|
|
89
90
|
name: "ttd";
|
|
90
|
-
tab:
|
|
91
|
+
tab: "mermaid" | "text-to-diagram";
|
|
91
92
|
} | null;
|
|
92
93
|
defaultSidebarDockedPreference: boolean;
|
|
93
94
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -242,11 +243,12 @@ export declare const actionDeleteSelected: {
|
|
|
242
243
|
openDialog: {
|
|
243
244
|
name: "imageExport" | "help" | "jsonExport";
|
|
244
245
|
} | {
|
|
245
|
-
name: "
|
|
246
|
-
source: "
|
|
246
|
+
name: "settings";
|
|
247
|
+
source: "settings" | "tool" | "generation";
|
|
248
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
247
249
|
} | {
|
|
248
250
|
name: "ttd";
|
|
249
|
-
tab:
|
|
251
|
+
tab: "mermaid" | "text-to-diagram";
|
|
250
252
|
} | null;
|
|
251
253
|
defaultSidebarDockedPreference: boolean;
|
|
252
254
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -372,11 +374,12 @@ export declare const actionDeleteSelected: {
|
|
|
372
374
|
openDialog: {
|
|
373
375
|
name: "imageExport" | "help" | "jsonExport";
|
|
374
376
|
} | {
|
|
375
|
-
name: "
|
|
376
|
-
source: "
|
|
377
|
+
name: "settings";
|
|
378
|
+
source: "settings" | "tool" | "generation";
|
|
379
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
377
380
|
} | {
|
|
378
381
|
name: "ttd";
|
|
379
|
-
tab:
|
|
382
|
+
tab: "mermaid" | "text-to-diagram";
|
|
380
383
|
} | null;
|
|
381
384
|
defaultSidebarDockedPreference: boolean;
|
|
382
385
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -82,11 +82,12 @@ export declare const actionToggleElementLock: {
|
|
|
82
82
|
openDialog: {
|
|
83
83
|
name: "imageExport" | "help" | "jsonExport";
|
|
84
84
|
} | {
|
|
85
|
-
name: "
|
|
86
|
-
source: "
|
|
85
|
+
name: "settings";
|
|
86
|
+
source: "settings" | "tool" | "generation";
|
|
87
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
87
88
|
} | {
|
|
88
89
|
name: "ttd";
|
|
89
|
-
tab:
|
|
90
|
+
tab: "mermaid" | "text-to-diagram";
|
|
90
91
|
} | null;
|
|
91
92
|
defaultSidebarDockedPreference: boolean;
|
|
92
93
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -228,11 +229,12 @@ export declare const actionUnlockAllElements: {
|
|
|
228
229
|
openDialog: {
|
|
229
230
|
name: "imageExport" | "help" | "jsonExport";
|
|
230
231
|
} | {
|
|
231
|
-
name: "
|
|
232
|
-
source: "
|
|
232
|
+
name: "settings";
|
|
233
|
+
source: "settings" | "tool" | "generation";
|
|
234
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
233
235
|
} | {
|
|
234
236
|
name: "ttd";
|
|
235
|
-
tab:
|
|
237
|
+
tab: "mermaid" | "text-to-diagram";
|
|
236
238
|
} | null;
|
|
237
239
|
defaultSidebarDockedPreference: boolean;
|
|
238
240
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -78,11 +78,12 @@ export declare const actionChangeProjectName: {
|
|
|
78
78
|
openDialog: {
|
|
79
79
|
name: "imageExport" | "help" | "jsonExport";
|
|
80
80
|
} | {
|
|
81
|
-
name: "
|
|
82
|
-
source: "
|
|
81
|
+
name: "settings";
|
|
82
|
+
source: "settings" | "tool" | "generation";
|
|
83
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
83
84
|
} | {
|
|
84
85
|
name: "ttd";
|
|
85
|
-
tab:
|
|
86
|
+
tab: "mermaid" | "text-to-diagram";
|
|
86
87
|
} | null;
|
|
87
88
|
defaultSidebarDockedPreference: boolean;
|
|
88
89
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -219,11 +220,12 @@ export declare const actionChangeExportScale: {
|
|
|
219
220
|
openDialog: {
|
|
220
221
|
name: "imageExport" | "help" | "jsonExport";
|
|
221
222
|
} | {
|
|
222
|
-
name: "
|
|
223
|
-
source: "
|
|
223
|
+
name: "settings";
|
|
224
|
+
source: "settings" | "tool" | "generation";
|
|
225
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
224
226
|
} | {
|
|
225
227
|
name: "ttd";
|
|
226
|
-
tab:
|
|
228
|
+
tab: "mermaid" | "text-to-diagram";
|
|
227
229
|
} | null;
|
|
228
230
|
defaultSidebarDockedPreference: boolean;
|
|
229
231
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -360,11 +362,12 @@ export declare const actionChangeExportBackground: {
|
|
|
360
362
|
openDialog: {
|
|
361
363
|
name: "imageExport" | "help" | "jsonExport";
|
|
362
364
|
} | {
|
|
363
|
-
name: "
|
|
364
|
-
source: "
|
|
365
|
+
name: "settings";
|
|
366
|
+
source: "settings" | "tool" | "generation";
|
|
367
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
365
368
|
} | {
|
|
366
369
|
name: "ttd";
|
|
367
|
-
tab:
|
|
370
|
+
tab: "mermaid" | "text-to-diagram";
|
|
368
371
|
} | null;
|
|
369
372
|
defaultSidebarDockedPreference: boolean;
|
|
370
373
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -501,11 +504,12 @@ export declare const actionChangeExportEmbedScene: {
|
|
|
501
504
|
openDialog: {
|
|
502
505
|
name: "imageExport" | "help" | "jsonExport";
|
|
503
506
|
} | {
|
|
504
|
-
name: "
|
|
505
|
-
source: "
|
|
507
|
+
name: "settings";
|
|
508
|
+
source: "settings" | "tool" | "generation";
|
|
509
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
506
510
|
} | {
|
|
507
511
|
name: "ttd";
|
|
508
|
-
tab:
|
|
512
|
+
tab: "mermaid" | "text-to-diagram";
|
|
509
513
|
} | null;
|
|
510
514
|
defaultSidebarDockedPreference: boolean;
|
|
511
515
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -647,11 +651,12 @@ export declare const actionSaveToActiveFile: {
|
|
|
647
651
|
openDialog: {
|
|
648
652
|
name: "imageExport" | "help" | "jsonExport";
|
|
649
653
|
} | {
|
|
650
|
-
name: "
|
|
651
|
-
source: "
|
|
654
|
+
name: "settings";
|
|
655
|
+
source: "settings" | "tool" | "generation";
|
|
656
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
652
657
|
} | {
|
|
653
658
|
name: "ttd";
|
|
654
|
-
tab:
|
|
659
|
+
tab: "mermaid" | "text-to-diagram";
|
|
655
660
|
} | null;
|
|
656
661
|
defaultSidebarDockedPreference: boolean;
|
|
657
662
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -921,11 +926,12 @@ export declare const actionLoadScene: {
|
|
|
921
926
|
openDialog: {
|
|
922
927
|
name: "imageExport" | "help" | "jsonExport";
|
|
923
928
|
} | {
|
|
924
|
-
name: "
|
|
925
|
-
source: "
|
|
929
|
+
name: "settings";
|
|
930
|
+
source: "settings" | "tool" | "generation";
|
|
931
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
926
932
|
} | {
|
|
927
933
|
name: "ttd";
|
|
928
|
-
tab:
|
|
934
|
+
tab: "mermaid" | "text-to-diagram";
|
|
929
935
|
} | null;
|
|
930
936
|
defaultSidebarDockedPreference: boolean;
|
|
931
937
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -1048,11 +1054,12 @@ export declare const actionLoadScene: {
|
|
|
1048
1054
|
openDialog: {
|
|
1049
1055
|
name: "imageExport" | "help" | "jsonExport";
|
|
1050
1056
|
} | {
|
|
1051
|
-
name: "
|
|
1052
|
-
source: "
|
|
1057
|
+
name: "settings";
|
|
1058
|
+
source: "settings" | "tool" | "generation";
|
|
1059
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
1053
1060
|
} | {
|
|
1054
1061
|
name: "ttd";
|
|
1055
|
-
tab:
|
|
1062
|
+
tab: "mermaid" | "text-to-diagram";
|
|
1056
1063
|
} | null;
|
|
1057
1064
|
defaultSidebarDockedPreference: boolean;
|
|
1058
1065
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -1190,11 +1197,12 @@ export declare const actionExportWithDarkMode: {
|
|
|
1190
1197
|
openDialog: {
|
|
1191
1198
|
name: "imageExport" | "help" | "jsonExport";
|
|
1192
1199
|
} | {
|
|
1193
|
-
name: "
|
|
1194
|
-
source: "
|
|
1200
|
+
name: "settings";
|
|
1201
|
+
source: "settings" | "tool" | "generation";
|
|
1202
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
1195
1203
|
} | {
|
|
1196
1204
|
name: "ttd";
|
|
1197
|
-
tab:
|
|
1205
|
+
tab: "mermaid" | "text-to-diagram";
|
|
1198
1206
|
} | null;
|
|
1199
1207
|
defaultSidebarDockedPreference: boolean;
|
|
1200
1208
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -79,11 +79,12 @@ export declare const actionFinalize: {
|
|
|
79
79
|
openDialog: {
|
|
80
80
|
name: "imageExport" | "help" | "jsonExport";
|
|
81
81
|
} | {
|
|
82
|
-
name: "
|
|
83
|
-
source: "
|
|
82
|
+
name: "settings";
|
|
83
|
+
source: "settings" | "tool" | "generation";
|
|
84
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
84
85
|
} | {
|
|
85
86
|
name: "ttd";
|
|
86
|
-
tab:
|
|
87
|
+
tab: "mermaid" | "text-to-diagram";
|
|
87
88
|
} | null;
|
|
88
89
|
defaultSidebarDockedPreference: boolean;
|
|
89
90
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
@@ -212,11 +213,12 @@ export declare const actionFinalize: {
|
|
|
212
213
|
openDialog: {
|
|
213
214
|
name: "imageExport" | "help" | "jsonExport";
|
|
214
215
|
} | {
|
|
215
|
-
name: "
|
|
216
|
-
source: "
|
|
216
|
+
name: "settings";
|
|
217
|
+
source: "settings" | "tool" | "generation";
|
|
218
|
+
tab: "text-to-diagram" | "diagram-to-code";
|
|
217
219
|
} | {
|
|
218
220
|
name: "ttd";
|
|
219
|
-
tab:
|
|
221
|
+
tab: "mermaid" | "text-to-diagram";
|
|
220
222
|
} | null;
|
|
221
223
|
defaultSidebarDockedPreference: boolean;
|
|
222
224
|
lastPointerDownWith: import("../element/types").PointerType;
|