@excalidraw/excalidraw 0.17.0-a528769 → 0.17.0-c7ee46e
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/excalidraw-assets/locales/{gl-ES-json-d11c7966c3c2f95756e0.js → gl-ES-json-95041caf90ef2a7e8a53.js} +1 -1
- package/dist/excalidraw-assets-dev/{vendor-18203854dd3b1fb2cc41.js → vendor-37ba5d021227533892ee.js} +2 -2
- package/dist/excalidraw-with-preact.development.js +182 -50
- package/dist/excalidraw-with-preact.production.min.js +1 -1
- package/dist/excalidraw.development.js +182 -50
- package/dist/excalidraw.production.min.js +1 -1
- package/package.json +1 -1
- package/types/actions/actionAddToLibrary.d.ts +6 -6
- package/types/actions/actionBoundText.d.ts +4 -4
- package/types/actions/actionCanvas.d.ts +22 -22
- package/types/actions/actionClipboard.d.ts +14 -14
- package/types/actions/actionDeleteSelected.d.ts +6 -6
- package/types/actions/actionElementLock.d.ts +4 -4
- package/types/actions/actionExport.d.ts +22 -22
- package/types/actions/actionFinalize.d.ts +4 -4
- package/types/actions/actionFrame.d.ts +6 -6
- package/types/actions/actionGroup.d.ts +4 -4
- package/types/actions/actionLinearEditor.d.ts +2 -2
- package/types/actions/actionMenu.d.ts +5 -5
- package/types/actions/actionProperties.d.ts +26 -26
- package/types/actions/actionSelectAll.d.ts +2 -2
- package/types/actions/actionStyles.d.ts +2 -2
- package/types/actions/actionToggleGridMode.d.ts +2 -2
- package/types/actions/actionToggleObjectsSnapMode.d.ts +2 -2
- package/types/actions/actionToggleStats.d.ts +2 -2
- package/types/actions/actionToggleViewMode.d.ts +2 -2
- package/types/actions/actionToggleZenMode.d.ts +2 -2
- package/types/appState.d.ts +2 -2
- package/types/components/App.d.ts +27 -6
- package/types/components/LayerUI.d.ts +5 -1
- package/types/components/MagicButton.d.ts +9 -0
- package/types/components/MagicSettings.d.ts +8 -0
- package/types/components/TextField.d.ts +16 -0
- package/types/components/icons.d.ts +5 -0
- package/types/constants.d.ts +24 -2
- package/types/data/EditorLocalStorage.d.ts +8 -0
- package/types/data/ai/types.d.ts +242 -0
- package/types/data/index.d.ts +3 -3
- package/types/data/magic.d.ts +23 -0
- package/types/data/transform.d.ts +11 -7
- package/types/element/ElementCanvasButtons.d.ts +6 -0
- package/types/element/Hyperlink.d.ts +2 -2
- package/types/element/collision.d.ts +2 -2
- package/types/element/embeddable.d.ts +8 -21
- package/types/element/index.d.ts +3 -4
- package/types/element/linearElementEditor.d.ts +3 -3
- package/types/element/newElement.d.ts +7 -1
- package/types/element/textElement.d.ts +2 -2
- package/types/element/typeChecks.d.ts +9 -6
- package/types/element/types.d.ts +29 -2
- package/types/frame.d.ts +21 -20
- package/types/packages/utils.d.ts +2 -2
- package/types/scene/Scene.d.ts +4 -4
- package/types/scene/ShapeCache.d.ts +1 -1
- package/types/scene/comparisons.d.ts +7 -6
- package/types/scene/export.d.ts +3 -3
- package/types/scene/types.d.ts +2 -0
- package/types/shapes.d.ts +1 -1
- package/types/types.d.ts +16 -10
- package/types/utils.d.ts +1 -2
- /package/types/packages/excalidraw/dist/excalidraw-assets/locales/{gl-ES-json-d11c7966c3c2f95756e0.d.ts → gl-ES-json-95041caf90ef2a7e8a53.d.ts} +0 -0
- /package/types/packages/excalidraw/dist/excalidraw-assets-dev/{vendor-18203854dd3b1fb2cc41.d.ts → vendor-37ba5d021227533892ee.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -28,7 +28,7 @@ export declare const actionAddToLibrary: {
|
|
|
28
28
|
isBindingEnabled: boolean;
|
|
29
29
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
30
30
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
31
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
31
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
32
32
|
frameRendering: {
|
|
33
33
|
enabled: boolean;
|
|
34
34
|
name: boolean;
|
|
@@ -79,7 +79,7 @@ export declare const actionAddToLibrary: {
|
|
|
79
79
|
name: string;
|
|
80
80
|
tab?: string | undefined;
|
|
81
81
|
} | null;
|
|
82
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
82
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
83
83
|
defaultSidebarDockedPreference: boolean;
|
|
84
84
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
85
85
|
selectedElementIds: Readonly<{
|
|
@@ -145,7 +145,7 @@ export declare const actionAddToLibrary: {
|
|
|
145
145
|
isBindingEnabled: boolean;
|
|
146
146
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
147
147
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
148
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
148
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
149
149
|
frameRendering: {
|
|
150
150
|
enabled: boolean;
|
|
151
151
|
name: boolean;
|
|
@@ -196,7 +196,7 @@ export declare const actionAddToLibrary: {
|
|
|
196
196
|
name: string;
|
|
197
197
|
tab?: string | undefined;
|
|
198
198
|
} | null;
|
|
199
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
199
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
200
200
|
defaultSidebarDockedPreference: boolean;
|
|
201
201
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
202
202
|
selectedElementIds: Readonly<{
|
|
@@ -267,7 +267,7 @@ export declare const actionAddToLibrary: {
|
|
|
267
267
|
isBindingEnabled: boolean;
|
|
268
268
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
269
269
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
270
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
270
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
271
271
|
frameRendering: {
|
|
272
272
|
enabled: boolean;
|
|
273
273
|
name: boolean;
|
|
@@ -318,7 +318,7 @@ export declare const actionAddToLibrary: {
|
|
|
318
318
|
name: string;
|
|
319
319
|
tab?: string | undefined;
|
|
320
320
|
} | null;
|
|
321
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
321
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
322
322
|
defaultSidebarDockedPreference: boolean;
|
|
323
323
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
324
324
|
selectedElementIds: Readonly<{
|
|
@@ -48,7 +48,7 @@ export declare const actionBindText: {
|
|
|
48
48
|
isBindingEnabled: boolean;
|
|
49
49
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
50
50
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
51
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
51
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
52
52
|
frameRendering: {
|
|
53
53
|
enabled: boolean;
|
|
54
54
|
name: boolean;
|
|
@@ -99,7 +99,7 @@ export declare const actionBindText: {
|
|
|
99
99
|
name: string;
|
|
100
100
|
tab?: string | undefined;
|
|
101
101
|
} | null;
|
|
102
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
102
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
103
103
|
defaultSidebarDockedPreference: boolean;
|
|
104
104
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
105
105
|
previousSelectedElementIds: {
|
|
@@ -182,7 +182,7 @@ export declare const actionWrapTextInContainer: {
|
|
|
182
182
|
isBindingEnabled: boolean;
|
|
183
183
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
184
184
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
185
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
185
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
186
186
|
frameRendering: {
|
|
187
187
|
enabled: boolean;
|
|
188
188
|
name: boolean;
|
|
@@ -233,7 +233,7 @@ export declare const actionWrapTextInContainer: {
|
|
|
233
233
|
name: string;
|
|
234
234
|
tab?: string | undefined;
|
|
235
235
|
} | null;
|
|
236
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
236
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
237
237
|
defaultSidebarDockedPreference: boolean;
|
|
238
238
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
239
239
|
previousSelectedElementIds: {
|
|
@@ -59,7 +59,7 @@ export declare const actionClearCanvas: {
|
|
|
59
59
|
isBindingEnabled: boolean;
|
|
60
60
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
61
61
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
62
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
62
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
63
63
|
frameRendering: {
|
|
64
64
|
enabled: boolean;
|
|
65
65
|
name: boolean;
|
|
@@ -102,7 +102,7 @@ export declare const actionClearCanvas: {
|
|
|
102
102
|
name: string;
|
|
103
103
|
tab?: string | undefined;
|
|
104
104
|
} | null;
|
|
105
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
105
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
106
106
|
defaultSidebarDockedPreference: boolean;
|
|
107
107
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
108
108
|
selectedElementIds: Readonly<{
|
|
@@ -174,7 +174,7 @@ export declare const actionZoomIn: {
|
|
|
174
174
|
isBindingEnabled: boolean;
|
|
175
175
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
176
176
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
177
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
177
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
178
178
|
frameRendering: {
|
|
179
179
|
enabled: boolean;
|
|
180
180
|
name: boolean;
|
|
@@ -220,7 +220,7 @@ export declare const actionZoomIn: {
|
|
|
220
220
|
name: string;
|
|
221
221
|
tab?: string | undefined;
|
|
222
222
|
} | null;
|
|
223
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
223
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
224
224
|
defaultSidebarDockedPreference: boolean;
|
|
225
225
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
226
226
|
selectedElementIds: Readonly<{
|
|
@@ -308,7 +308,7 @@ export declare const actionZoomOut: {
|
|
|
308
308
|
isBindingEnabled: boolean;
|
|
309
309
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
310
310
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
311
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
311
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
312
312
|
frameRendering: {
|
|
313
313
|
enabled: boolean;
|
|
314
314
|
name: boolean;
|
|
@@ -354,7 +354,7 @@ export declare const actionZoomOut: {
|
|
|
354
354
|
name: string;
|
|
355
355
|
tab?: string | undefined;
|
|
356
356
|
} | null;
|
|
357
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
357
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
358
358
|
defaultSidebarDockedPreference: boolean;
|
|
359
359
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
360
360
|
selectedElementIds: Readonly<{
|
|
@@ -442,7 +442,7 @@ export declare const actionResetZoom: {
|
|
|
442
442
|
isBindingEnabled: boolean;
|
|
443
443
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
444
444
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
445
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
445
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
446
446
|
frameRendering: {
|
|
447
447
|
enabled: boolean;
|
|
448
448
|
name: boolean;
|
|
@@ -488,7 +488,7 @@ export declare const actionResetZoom: {
|
|
|
488
488
|
name: string;
|
|
489
489
|
tab?: string | undefined;
|
|
490
490
|
} | null;
|
|
491
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
491
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
492
492
|
defaultSidebarDockedPreference: boolean;
|
|
493
493
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
494
494
|
selectedElementIds: Readonly<{
|
|
@@ -577,7 +577,7 @@ export declare const zoomToFit: ({ targetElements, appState, fitToViewport, view
|
|
|
577
577
|
isBindingEnabled: boolean;
|
|
578
578
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
579
579
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
580
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
580
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
581
581
|
frameRendering: {
|
|
582
582
|
enabled: boolean;
|
|
583
583
|
name: boolean;
|
|
@@ -623,7 +623,7 @@ export declare const zoomToFit: ({ targetElements, appState, fitToViewport, view
|
|
|
623
623
|
name: string;
|
|
624
624
|
tab?: string | undefined;
|
|
625
625
|
} | null;
|
|
626
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
626
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
627
627
|
defaultSidebarDockedPreference: boolean;
|
|
628
628
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
629
629
|
selectedElementIds: Readonly<{
|
|
@@ -705,7 +705,7 @@ export declare const actionZoomToFitSelectionInViewport: {
|
|
|
705
705
|
isBindingEnabled: boolean;
|
|
706
706
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
707
707
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
708
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
708
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
709
709
|
frameRendering: {
|
|
710
710
|
enabled: boolean;
|
|
711
711
|
name: boolean;
|
|
@@ -751,7 +751,7 @@ export declare const actionZoomToFitSelectionInViewport: {
|
|
|
751
751
|
name: string;
|
|
752
752
|
tab?: string | undefined;
|
|
753
753
|
} | null;
|
|
754
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
754
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
755
755
|
defaultSidebarDockedPreference: boolean;
|
|
756
756
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
757
757
|
selectedElementIds: Readonly<{
|
|
@@ -837,7 +837,7 @@ export declare const actionZoomToFitSelection: {
|
|
|
837
837
|
isBindingEnabled: boolean;
|
|
838
838
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
839
839
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
840
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
840
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
841
841
|
frameRendering: {
|
|
842
842
|
enabled: boolean;
|
|
843
843
|
name: boolean;
|
|
@@ -883,7 +883,7 @@ export declare const actionZoomToFitSelection: {
|
|
|
883
883
|
name: string;
|
|
884
884
|
tab?: string | undefined;
|
|
885
885
|
} | null;
|
|
886
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
886
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
887
887
|
defaultSidebarDockedPreference: boolean;
|
|
888
888
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
889
889
|
selectedElementIds: Readonly<{
|
|
@@ -970,7 +970,7 @@ export declare const actionZoomToFit: {
|
|
|
970
970
|
isBindingEnabled: boolean;
|
|
971
971
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
972
972
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
973
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
973
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
974
974
|
frameRendering: {
|
|
975
975
|
enabled: boolean;
|
|
976
976
|
name: boolean;
|
|
@@ -1016,7 +1016,7 @@ export declare const actionZoomToFit: {
|
|
|
1016
1016
|
name: string;
|
|
1017
1017
|
tab?: string | undefined;
|
|
1018
1018
|
} | null;
|
|
1019
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
1019
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
1020
1020
|
defaultSidebarDockedPreference: boolean;
|
|
1021
1021
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
1022
1022
|
selectedElementIds: Readonly<{
|
|
@@ -1099,7 +1099,7 @@ export declare const actionToggleTheme: {
|
|
|
1099
1099
|
isBindingEnabled: boolean;
|
|
1100
1100
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
1101
1101
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
1102
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
1102
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
1103
1103
|
frameRendering: {
|
|
1104
1104
|
enabled: boolean;
|
|
1105
1105
|
name: boolean;
|
|
@@ -1150,7 +1150,7 @@ export declare const actionToggleTheme: {
|
|
|
1150
1150
|
name: string;
|
|
1151
1151
|
tab?: string | undefined;
|
|
1152
1152
|
} | null;
|
|
1153
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
1153
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
1154
1154
|
defaultSidebarDockedPreference: boolean;
|
|
1155
1155
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
1156
1156
|
selectedElementIds: Readonly<{
|
|
@@ -1234,7 +1234,7 @@ export declare const actionToggleEraserTool: {
|
|
|
1234
1234
|
isBindingEnabled: boolean;
|
|
1235
1235
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
1236
1236
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
1237
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
1237
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
1238
1238
|
frameRendering: {
|
|
1239
1239
|
enabled: boolean;
|
|
1240
1240
|
name: boolean;
|
|
@@ -1281,7 +1281,7 @@ export declare const actionToggleEraserTool: {
|
|
|
1281
1281
|
name: string;
|
|
1282
1282
|
tab?: string | undefined;
|
|
1283
1283
|
} | null;
|
|
1284
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
1284
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
1285
1285
|
defaultSidebarDockedPreference: boolean;
|
|
1286
1286
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
1287
1287
|
previousSelectedElementIds: {
|
|
@@ -1359,7 +1359,7 @@ export declare const actionToggleHandTool: {
|
|
|
1359
1359
|
isBindingEnabled: boolean;
|
|
1360
1360
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
1361
1361
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
1362
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
1362
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
1363
1363
|
frameRendering: {
|
|
1364
1364
|
enabled: boolean;
|
|
1365
1365
|
name: boolean;
|
|
@@ -1406,7 +1406,7 @@ export declare const actionToggleHandTool: {
|
|
|
1406
1406
|
name: string;
|
|
1407
1407
|
tab?: string | undefined;
|
|
1408
1408
|
} | null;
|
|
1409
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
1409
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
1410
1410
|
defaultSidebarDockedPreference: boolean;
|
|
1411
1411
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
1412
1412
|
previousSelectedElementIds: {
|
|
@@ -25,7 +25,7 @@ export declare const actionCopy: {
|
|
|
25
25
|
isBindingEnabled: boolean;
|
|
26
26
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
27
27
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
28
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
28
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
29
29
|
frameRendering: {
|
|
30
30
|
enabled: boolean;
|
|
31
31
|
name: boolean;
|
|
@@ -76,7 +76,7 @@ export declare const actionCopy: {
|
|
|
76
76
|
name: string;
|
|
77
77
|
tab?: string | undefined;
|
|
78
78
|
} | null;
|
|
79
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
79
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
80
80
|
defaultSidebarDockedPreference: boolean;
|
|
81
81
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
82
82
|
selectedElementIds: Readonly<{
|
|
@@ -161,7 +161,7 @@ export declare const actionPaste: {
|
|
|
161
161
|
isBindingEnabled: boolean;
|
|
162
162
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
163
163
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
164
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
164
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
165
165
|
frameRendering: {
|
|
166
166
|
enabled: boolean;
|
|
167
167
|
name: boolean;
|
|
@@ -212,7 +212,7 @@ export declare const actionPaste: {
|
|
|
212
212
|
name: string;
|
|
213
213
|
tab?: string | undefined;
|
|
214
214
|
} | null;
|
|
215
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
215
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
216
216
|
defaultSidebarDockedPreference: boolean;
|
|
217
217
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
218
218
|
selectedElementIds: Readonly<{
|
|
@@ -298,7 +298,7 @@ export declare const actionCut: {
|
|
|
298
298
|
isBindingEnabled: boolean;
|
|
299
299
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
300
300
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
301
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
301
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
302
302
|
frameRendering: {
|
|
303
303
|
enabled: boolean;
|
|
304
304
|
name: boolean;
|
|
@@ -348,7 +348,7 @@ export declare const actionCut: {
|
|
|
348
348
|
name: string;
|
|
349
349
|
tab?: string | undefined;
|
|
350
350
|
} | null;
|
|
351
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
351
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
352
352
|
defaultSidebarDockedPreference: boolean;
|
|
353
353
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
354
354
|
selectedElementIds: Readonly<{
|
|
@@ -449,7 +449,7 @@ export declare const actionCut: {
|
|
|
449
449
|
isBindingEnabled: boolean;
|
|
450
450
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
451
451
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
452
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
452
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
453
453
|
frameRendering: {
|
|
454
454
|
enabled: boolean;
|
|
455
455
|
name: boolean;
|
|
@@ -499,7 +499,7 @@ export declare const actionCut: {
|
|
|
499
499
|
name: string;
|
|
500
500
|
tab?: string | undefined;
|
|
501
501
|
} | null;
|
|
502
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
502
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
503
503
|
defaultSidebarDockedPreference: boolean;
|
|
504
504
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
505
505
|
selectedElementIds: Readonly<{
|
|
@@ -574,7 +574,7 @@ export declare const actionCut: {
|
|
|
574
574
|
isBindingEnabled: boolean;
|
|
575
575
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
576
576
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
577
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
577
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
578
578
|
frameRendering: {
|
|
579
579
|
enabled: boolean;
|
|
580
580
|
name: boolean;
|
|
@@ -621,7 +621,7 @@ export declare const actionCut: {
|
|
|
621
621
|
name: string;
|
|
622
622
|
tab?: string | undefined;
|
|
623
623
|
} | null;
|
|
624
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
624
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
625
625
|
defaultSidebarDockedPreference: boolean;
|
|
626
626
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
627
627
|
previousSelectedElementIds: {
|
|
@@ -700,7 +700,7 @@ export declare const actionCopyAsSvg: {
|
|
|
700
700
|
isBindingEnabled: boolean;
|
|
701
701
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
702
702
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
703
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
703
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
704
704
|
frameRendering: {
|
|
705
705
|
enabled: boolean;
|
|
706
706
|
name: boolean;
|
|
@@ -751,7 +751,7 @@ export declare const actionCopyAsSvg: {
|
|
|
751
751
|
name: string;
|
|
752
752
|
tab?: string | undefined;
|
|
753
753
|
} | null;
|
|
754
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
754
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
755
755
|
defaultSidebarDockedPreference: boolean;
|
|
756
756
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
757
757
|
selectedElementIds: Readonly<{
|
|
@@ -836,7 +836,7 @@ export declare const actionCopyAsPng: {
|
|
|
836
836
|
isBindingEnabled: boolean;
|
|
837
837
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
838
838
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
839
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
839
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
840
840
|
frameRendering: {
|
|
841
841
|
enabled: boolean;
|
|
842
842
|
name: boolean;
|
|
@@ -887,7 +887,7 @@ export declare const actionCopyAsPng: {
|
|
|
887
887
|
name: string;
|
|
888
888
|
tab?: string | undefined;
|
|
889
889
|
} | null;
|
|
890
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
890
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
891
891
|
defaultSidebarDockedPreference: boolean;
|
|
892
892
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
893
893
|
selectedElementIds: Readonly<{
|
|
@@ -30,7 +30,7 @@ export declare const actionDeleteSelected: {
|
|
|
30
30
|
isBindingEnabled: boolean;
|
|
31
31
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
32
32
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
33
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
33
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
34
34
|
frameRendering: {
|
|
35
35
|
enabled: boolean;
|
|
36
36
|
name: boolean;
|
|
@@ -80,7 +80,7 @@ export declare const actionDeleteSelected: {
|
|
|
80
80
|
name: string;
|
|
81
81
|
tab?: string | undefined;
|
|
82
82
|
} | null;
|
|
83
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
83
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
84
84
|
defaultSidebarDockedPreference: boolean;
|
|
85
85
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
86
86
|
selectedElementIds: Readonly<{
|
|
@@ -181,7 +181,7 @@ export declare const actionDeleteSelected: {
|
|
|
181
181
|
isBindingEnabled: boolean;
|
|
182
182
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
183
183
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
184
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
184
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
185
185
|
frameRendering: {
|
|
186
186
|
enabled: boolean;
|
|
187
187
|
name: boolean;
|
|
@@ -231,7 +231,7 @@ export declare const actionDeleteSelected: {
|
|
|
231
231
|
name: string;
|
|
232
232
|
tab?: string | undefined;
|
|
233
233
|
} | null;
|
|
234
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
234
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
235
235
|
defaultSidebarDockedPreference: boolean;
|
|
236
236
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
237
237
|
selectedElementIds: Readonly<{
|
|
@@ -306,7 +306,7 @@ export declare const actionDeleteSelected: {
|
|
|
306
306
|
isBindingEnabled: boolean;
|
|
307
307
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
308
308
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
309
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
309
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
310
310
|
frameRendering: {
|
|
311
311
|
enabled: boolean;
|
|
312
312
|
name: boolean;
|
|
@@ -353,7 +353,7 @@ export declare const actionDeleteSelected: {
|
|
|
353
353
|
name: string;
|
|
354
354
|
tab?: string | undefined;
|
|
355
355
|
} | null;
|
|
356
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
356
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
357
357
|
defaultSidebarDockedPreference: boolean;
|
|
358
358
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
359
359
|
previousSelectedElementIds: {
|
|
@@ -28,7 +28,7 @@ export declare const actionToggleElementLock: {
|
|
|
28
28
|
isBindingEnabled: boolean;
|
|
29
29
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
30
30
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
31
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
31
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
32
32
|
frameRendering: {
|
|
33
33
|
enabled: boolean;
|
|
34
34
|
name: boolean;
|
|
@@ -79,7 +79,7 @@ export declare const actionToggleElementLock: {
|
|
|
79
79
|
name: string;
|
|
80
80
|
tab?: string | undefined;
|
|
81
81
|
} | null;
|
|
82
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
82
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
83
83
|
defaultSidebarDockedPreference: boolean;
|
|
84
84
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
85
85
|
selectedElementIds: Readonly<{
|
|
@@ -166,7 +166,7 @@ export declare const actionUnlockAllElements: {
|
|
|
166
166
|
isBindingEnabled: boolean;
|
|
167
167
|
startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
|
|
168
168
|
suggestedBindings: import("../element/binding").SuggestedBinding[];
|
|
169
|
-
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").
|
|
169
|
+
frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
|
|
170
170
|
frameRendering: {
|
|
171
171
|
enabled: boolean;
|
|
172
172
|
name: boolean;
|
|
@@ -217,7 +217,7 @@ export declare const actionUnlockAllElements: {
|
|
|
217
217
|
name: string;
|
|
218
218
|
tab?: string | undefined;
|
|
219
219
|
} | null;
|
|
220
|
-
openDialog: "mermaid" | "imageExport" | "help" | "jsonExport" | null;
|
|
220
|
+
openDialog: "mermaid" | "magicSettings" | "imageExport" | "help" | "jsonExport" | null;
|
|
221
221
|
defaultSidebarDockedPreference: boolean;
|
|
222
222
|
lastPointerDownWith: import("../element/types").PointerType;
|
|
223
223
|
previousSelectedElementIds: {
|