@excalidraw/common 0.18.0-f0063e113 → 0.18.0-f29e9df
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/dev/index.js +9 -1
- package/dist/dev/index.js.map +2 -2
- package/dist/prod/index.js +3 -3
- package/dist/types/common/src/constants.d.ts +2 -0
- package/dist/types/element/src/Scene.d.ts +6 -2
- package/dist/types/element/src/align.d.ts +2 -1
- package/dist/types/element/src/delta.d.ts +16 -4
- package/dist/types/element/src/distribute.d.ts +2 -1
- package/dist/types/element/src/groups.d.ts +1 -0
- package/dist/types/element/src/linearElementEditor.d.ts +2 -1
- package/dist/types/element/src/store.d.ts +8 -2
- package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +0 -3
- package/dist/types/excalidraw/actions/actionBoundText.d.ts +0 -2
- package/dist/types/excalidraw/actions/actionCanvas.d.ts +15 -14
- package/dist/types/excalidraw/actions/actionClipboard.d.ts +3 -8
- package/dist/types/excalidraw/actions/actionCropEditor.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +3 -6
- package/dist/types/excalidraw/actions/actionElementLink.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +0 -2
- package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionExport.d.ts +0 -9
- package/dist/types/excalidraw/actions/actionFinalize.d.ts +2 -3
- package/dist/types/excalidraw/actions/actionFrame.d.ts +0 -4
- package/dist/types/excalidraw/actions/actionGroup.d.ts +0 -2
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +33 -3
- package/dist/types/excalidraw/actions/actionLink.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionMenu.d.ts +0 -3
- package/dist/types/excalidraw/actions/actionNavigate.d.ts +0 -2
- package/dist/types/excalidraw/actions/actionProperties.d.ts +0 -15
- package/dist/types/excalidraw/actions/actionSelectAll.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionStyles.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +0 -1
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +0 -1
- package/dist/types/excalidraw/components/Actions.d.ts +0 -4
- package/dist/types/excalidraw/components/App.d.ts +8 -2
- package/dist/types/excalidraw/components/Ellipsify.d.ts +4 -0
- package/dist/types/excalidraw/components/shapes.d.ts +129 -1
- package/dist/types/excalidraw/data/reconcile.d.ts +1 -0
- package/dist/types/excalidraw/data/restore.d.ts +6 -1
- package/dist/types/excalidraw/index.d.ts +2 -1
- package/dist/types/excalidraw/renderer/staticScene.d.ts +4 -1
- package/dist/types/excalidraw/types.d.ts +7 -4
- package/package.json +5 -2
|
@@ -85,7 +85,6 @@ export declare const actionClearCanvas: {
|
|
|
85
85
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
86
86
|
state: "active" | "hover";
|
|
87
87
|
} | null;
|
|
88
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
89
88
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
90
89
|
selectedGroupIds: {
|
|
91
90
|
[groupId: string]: boolean;
|
|
@@ -162,6 +161,7 @@ export declare const actionClearCanvas: {
|
|
|
162
161
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
163
162
|
openSidebar: {
|
|
164
163
|
name: string;
|
|
164
|
+
/** zoom content to cover X of the viewport, when fitToViewport=true */
|
|
165
165
|
tab?: string | undefined;
|
|
166
166
|
} | null;
|
|
167
167
|
defaultSidebarDockedPreference: boolean;
|
|
@@ -243,7 +243,6 @@ export declare const actionZoomIn: {
|
|
|
243
243
|
editingFrame: string | null;
|
|
244
244
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
245
245
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
246
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
247
246
|
activeTool: {
|
|
248
247
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
249
248
|
locked: boolean;
|
|
@@ -280,6 +279,7 @@ export declare const actionZoomIn: {
|
|
|
280
279
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
281
280
|
openSidebar: {
|
|
282
281
|
name: string;
|
|
282
|
+
/** zoom content to cover X of the viewport, when fitToViewport=true */
|
|
283
283
|
tab?: string | undefined;
|
|
284
284
|
} | null;
|
|
285
285
|
openDialog: {
|
|
@@ -430,7 +430,6 @@ export declare const actionZoomOut: {
|
|
|
430
430
|
editingFrame: string | null;
|
|
431
431
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
432
432
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
433
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
434
433
|
activeTool: {
|
|
435
434
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
436
435
|
locked: boolean;
|
|
@@ -467,6 +466,7 @@ export declare const actionZoomOut: {
|
|
|
467
466
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
468
467
|
openSidebar: {
|
|
469
468
|
name: string;
|
|
469
|
+
/** zoom content to cover X of the viewport, when fitToViewport=true */
|
|
470
470
|
tab?: string | undefined;
|
|
471
471
|
} | null;
|
|
472
472
|
openDialog: {
|
|
@@ -617,7 +617,6 @@ export declare const actionResetZoom: {
|
|
|
617
617
|
editingFrame: string | null;
|
|
618
618
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
619
619
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
620
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
621
620
|
activeTool: {
|
|
622
621
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
623
622
|
locked: boolean;
|
|
@@ -654,6 +653,7 @@ export declare const actionResetZoom: {
|
|
|
654
653
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
655
654
|
openSidebar: {
|
|
656
655
|
name: string;
|
|
656
|
+
/** zoom content to cover X of the viewport, when fitToViewport=true */
|
|
657
657
|
tab?: string | undefined;
|
|
658
658
|
} | null;
|
|
659
659
|
openDialog: {
|
|
@@ -810,7 +810,6 @@ export declare const zoomToFitBounds: ({ bounds, appState, canvasOffsets, fitToV
|
|
|
810
810
|
editingFrame: string | null;
|
|
811
811
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
812
812
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
813
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
814
813
|
activeTool: {
|
|
815
814
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
816
815
|
locked: boolean;
|
|
@@ -847,6 +846,7 @@ export declare const zoomToFitBounds: ({ bounds, appState, canvasOffsets, fitToV
|
|
|
847
846
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
848
847
|
openSidebar: {
|
|
849
848
|
name: string;
|
|
849
|
+
/** zoom content to cover X of the viewport, when fitToViewport=true */
|
|
850
850
|
tab?: string | undefined;
|
|
851
851
|
} | null;
|
|
852
852
|
openDialog: {
|
|
@@ -999,7 +999,6 @@ export declare const zoomToFit: ({ canvasOffsets, targetElements, appState, fitT
|
|
|
999
999
|
editingFrame: string | null;
|
|
1000
1000
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
1001
1001
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
1002
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
1003
1002
|
activeTool: {
|
|
1004
1003
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
1005
1004
|
locked: boolean;
|
|
@@ -1036,6 +1035,7 @@ export declare const zoomToFit: ({ canvasOffsets, targetElements, appState, fitT
|
|
|
1036
1035
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
1037
1036
|
openSidebar: {
|
|
1038
1037
|
name: string;
|
|
1038
|
+
/** zoom content to cover X of the viewport, when fitToViewport=true */
|
|
1039
1039
|
tab?: string | undefined;
|
|
1040
1040
|
} | null;
|
|
1041
1041
|
openDialog: {
|
|
@@ -1180,7 +1180,6 @@ export declare const actionZoomToFitSelectionInViewport: {
|
|
|
1180
1180
|
editingFrame: string | null;
|
|
1181
1181
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
1182
1182
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
1183
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
1184
1183
|
activeTool: {
|
|
1185
1184
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
1186
1185
|
locked: boolean;
|
|
@@ -1217,6 +1216,7 @@ export declare const actionZoomToFitSelectionInViewport: {
|
|
|
1217
1216
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
1218
1217
|
openSidebar: {
|
|
1219
1218
|
name: string;
|
|
1219
|
+
/** zoom content to cover X of the viewport, when fitToViewport=true */
|
|
1220
1220
|
tab?: string | undefined;
|
|
1221
1221
|
} | null;
|
|
1222
1222
|
openDialog: {
|
|
@@ -1365,7 +1365,6 @@ export declare const actionZoomToFitSelection: {
|
|
|
1365
1365
|
editingFrame: string | null;
|
|
1366
1366
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
1367
1367
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
1368
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
1369
1368
|
activeTool: {
|
|
1370
1369
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
1371
1370
|
locked: boolean;
|
|
@@ -1402,6 +1401,7 @@ export declare const actionZoomToFitSelection: {
|
|
|
1402
1401
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
1403
1402
|
openSidebar: {
|
|
1404
1403
|
name: string;
|
|
1404
|
+
/** zoom content to cover X of the viewport, when fitToViewport=true */
|
|
1405
1405
|
tab?: string | undefined;
|
|
1406
1406
|
} | null;
|
|
1407
1407
|
openDialog: {
|
|
@@ -1551,7 +1551,6 @@ export declare const actionZoomToFit: {
|
|
|
1551
1551
|
editingFrame: string | null;
|
|
1552
1552
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
1553
1553
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
1554
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
1555
1554
|
activeTool: {
|
|
1556
1555
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
1557
1556
|
locked: boolean;
|
|
@@ -1588,6 +1587,7 @@ export declare const actionZoomToFit: {
|
|
|
1588
1587
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
1589
1588
|
openSidebar: {
|
|
1590
1589
|
name: string;
|
|
1590
|
+
/** zoom content to cover X of the viewport, when fitToViewport=true */
|
|
1591
1591
|
tab?: string | undefined;
|
|
1592
1592
|
} | null;
|
|
1593
1593
|
openDialog: {
|
|
@@ -1734,7 +1734,6 @@ export declare const actionToggleTheme: {
|
|
|
1734
1734
|
editingFrame: string | null;
|
|
1735
1735
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
1736
1736
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
1737
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
1738
1737
|
activeTool: {
|
|
1739
1738
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
1740
1739
|
locked: boolean;
|
|
@@ -1776,6 +1775,7 @@ export declare const actionToggleTheme: {
|
|
|
1776
1775
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
1777
1776
|
openSidebar: {
|
|
1778
1777
|
name: string;
|
|
1778
|
+
/** zoom content to cover X of the viewport, when fitToViewport=true */
|
|
1779
1779
|
tab?: string | undefined;
|
|
1780
1780
|
} | null;
|
|
1781
1781
|
openDialog: {
|
|
@@ -1887,7 +1887,7 @@ export declare const actionToggleEraserTool: {
|
|
|
1887
1887
|
trackEvent: {
|
|
1888
1888
|
category: "toolbar";
|
|
1889
1889
|
};
|
|
1890
|
-
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState
|
|
1890
|
+
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: import("../types").AppClassProperties) => {
|
|
1891
1891
|
appState: {
|
|
1892
1892
|
selectedElementIds: {};
|
|
1893
1893
|
selectedGroupIds: {};
|
|
@@ -1922,7 +1922,6 @@ export declare const actionToggleEraserTool: {
|
|
|
1922
1922
|
editingFrame: string | null;
|
|
1923
1923
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
1924
1924
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
1925
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
1926
1925
|
penMode: boolean;
|
|
1927
1926
|
penDetected: boolean;
|
|
1928
1927
|
exportBackground: boolean;
|
|
@@ -1959,6 +1958,7 @@ export declare const actionToggleEraserTool: {
|
|
|
1959
1958
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
1960
1959
|
openSidebar: {
|
|
1961
1960
|
name: string;
|
|
1961
|
+
/** zoom content to cover X of the viewport, when fitToViewport=true */
|
|
1962
1962
|
tab?: string | undefined;
|
|
1963
1963
|
} | null;
|
|
1964
1964
|
openDialog: {
|
|
@@ -2065,6 +2065,7 @@ export declare const actionToggleLassoTool: {
|
|
|
2065
2065
|
trackEvent: {
|
|
2066
2066
|
category: "toolbar";
|
|
2067
2067
|
};
|
|
2068
|
+
predicate: (elements: readonly ExcalidrawElement[], appState: AppState, props: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
|
|
2068
2069
|
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: import("../types").AppClassProperties) => {
|
|
2069
2070
|
appState: {
|
|
2070
2071
|
selectedElementIds: {};
|
|
@@ -2100,7 +2101,6 @@ export declare const actionToggleLassoTool: {
|
|
|
2100
2101
|
editingFrame: string | null;
|
|
2101
2102
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
2102
2103
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
2103
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
2104
2104
|
penMode: boolean;
|
|
2105
2105
|
penDetected: boolean;
|
|
2106
2106
|
exportBackground: boolean;
|
|
@@ -2137,6 +2137,7 @@ export declare const actionToggleLassoTool: {
|
|
|
2137
2137
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
2138
2138
|
openSidebar: {
|
|
2139
2139
|
name: string;
|
|
2140
|
+
/** zoom content to cover X of the viewport, when fitToViewport=true */
|
|
2140
2141
|
tab?: string | undefined;
|
|
2141
2142
|
} | null;
|
|
2142
2143
|
openDialog: {
|
|
@@ -2278,7 +2279,6 @@ export declare const actionToggleHandTool: {
|
|
|
2278
2279
|
editingFrame: string | null;
|
|
2279
2280
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
2280
2281
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
2281
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
2282
2282
|
penMode: boolean;
|
|
2283
2283
|
penDetected: boolean;
|
|
2284
2284
|
exportBackground: boolean;
|
|
@@ -2315,6 +2315,7 @@ export declare const actionToggleHandTool: {
|
|
|
2315
2315
|
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
2316
2316
|
openSidebar: {
|
|
2317
2317
|
name: string;
|
|
2318
|
+
/** zoom content to cover X of the viewport, when fitToViewport=true */
|
|
2318
2319
|
tab?: string | undefined;
|
|
2319
2320
|
} | null;
|
|
2320
2321
|
openDialog: {
|
|
@@ -38,7 +38,6 @@ export declare const actionCopy: {
|
|
|
38
38
|
editingFrame: string | null;
|
|
39
39
|
elementsToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawElement>[] | null;
|
|
40
40
|
editingTextElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
|
|
41
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
42
41
|
activeTool: {
|
|
43
42
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
44
43
|
locked: boolean;
|
|
@@ -225,7 +224,6 @@ export declare const actionPaste: {
|
|
|
225
224
|
editingFrame: string | null;
|
|
226
225
|
elementsToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawElement>[] | null;
|
|
227
226
|
editingTextElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
|
|
228
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
229
227
|
activeTool: {
|
|
230
228
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
231
229
|
locked: boolean;
|
|
@@ -384,7 +382,7 @@ export declare const actionCut: {
|
|
|
384
382
|
perform: (elements: readonly import("../../element/src/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, event: ClipboardEvent | null, app: import("../types").AppClassProperties) => false | {
|
|
385
383
|
elements: import("../../element/src/types").OrderedExcalidrawElement[];
|
|
386
384
|
appState: {
|
|
387
|
-
|
|
385
|
+
selectedLinearElement: null;
|
|
388
386
|
contextMenu: {
|
|
389
387
|
items: import("../components/ContextMenu").ContextMenuItems;
|
|
390
388
|
top: number;
|
|
@@ -534,7 +532,6 @@ export declare const actionCut: {
|
|
|
534
532
|
data: import("../charts").Spreadsheet;
|
|
535
533
|
};
|
|
536
534
|
showHyperlinkPopup: false | "editor" | "info";
|
|
537
|
-
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
538
535
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
539
536
|
originSnapOffset: {
|
|
540
537
|
x: number;
|
|
@@ -558,7 +555,7 @@ export declare const actionCut: {
|
|
|
558
555
|
} | {
|
|
559
556
|
elements: readonly import("../../element/src/types").OrderedExcalidrawElement[];
|
|
560
557
|
appState: {
|
|
561
|
-
|
|
558
|
+
selectedLinearElement: {
|
|
562
559
|
selectedPointsIndices: number[];
|
|
563
560
|
startBindingElement: import("../../element/src/types").ExcalidrawBindableElement | "keep" | null;
|
|
564
561
|
endBindingElement: import("../../element/src/types").ExcalidrawBindableElement | "keep" | null;
|
|
@@ -589,6 +586,7 @@ export declare const actionCut: {
|
|
|
589
586
|
segmentMidPointHoveredCoords: import("../../math/src").GlobalPoint | null;
|
|
590
587
|
elbowed: boolean;
|
|
591
588
|
customLineAngle: number | null;
|
|
589
|
+
isEditing: boolean;
|
|
592
590
|
};
|
|
593
591
|
contextMenu: {
|
|
594
592
|
items: import("../components/ContextMenu").ContextMenuItems;
|
|
@@ -739,7 +737,6 @@ export declare const actionCut: {
|
|
|
739
737
|
data: import("../charts").Spreadsheet;
|
|
740
738
|
};
|
|
741
739
|
showHyperlinkPopup: false | "editor" | "info";
|
|
742
|
-
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
743
740
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
744
741
|
originSnapOffset: {
|
|
745
742
|
x: number;
|
|
@@ -802,7 +799,6 @@ export declare const actionCut: {
|
|
|
802
799
|
editingFrame: string | null;
|
|
803
800
|
elementsToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawElement>[] | null;
|
|
804
801
|
editingTextElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
|
|
805
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
806
802
|
penMode: boolean;
|
|
807
803
|
penDetected: boolean;
|
|
808
804
|
exportBackground: boolean;
|
|
@@ -1007,7 +1003,6 @@ export declare const actionCopyAsPng: {
|
|
|
1007
1003
|
editingFrame: string | null;
|
|
1008
1004
|
elementsToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawElement>[] | null;
|
|
1009
1005
|
editingTextElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
|
|
1010
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
1011
1006
|
activeTool: {
|
|
1012
1007
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
1013
1008
|
locked: boolean;
|
|
@@ -41,7 +41,6 @@ export declare const actionToggleCropEditor: {
|
|
|
41
41
|
editingFrame: string | null;
|
|
42
42
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
43
43
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
44
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
45
44
|
activeTool: {
|
|
46
45
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
47
46
|
locked: boolean;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { LinearElementEditor } from "@excalidraw/element";
|
|
3
2
|
import type { ExcalidrawElement } from "@excalidraw/element/types";
|
|
4
3
|
import type { AppClassProperties, AppState } from "../types";
|
|
5
4
|
export declare const actionDeleteSelected: {
|
|
@@ -13,7 +12,7 @@ export declare const actionDeleteSelected: {
|
|
|
13
12
|
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, formData: any, app: AppClassProperties) => false | {
|
|
14
13
|
elements: import("@excalidraw/element/types").OrderedExcalidrawElement[];
|
|
15
14
|
appState: {
|
|
16
|
-
|
|
15
|
+
selectedLinearElement: null;
|
|
17
16
|
contextMenu: {
|
|
18
17
|
items: import("../components/ContextMenu").ContextMenuItems;
|
|
19
18
|
top: number;
|
|
@@ -163,7 +162,6 @@ export declare const actionDeleteSelected: {
|
|
|
163
162
|
data: import("../charts").Spreadsheet;
|
|
164
163
|
};
|
|
165
164
|
showHyperlinkPopup: false | "editor" | "info";
|
|
166
|
-
selectedLinearElement: LinearElementEditor | null;
|
|
167
165
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
168
166
|
originSnapOffset: {
|
|
169
167
|
x: number;
|
|
@@ -187,7 +185,7 @@ export declare const actionDeleteSelected: {
|
|
|
187
185
|
} | {
|
|
188
186
|
elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[];
|
|
189
187
|
appState: {
|
|
190
|
-
|
|
188
|
+
selectedLinearElement: {
|
|
191
189
|
selectedPointsIndices: number[];
|
|
192
190
|
startBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
|
|
193
191
|
endBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
|
|
@@ -218,6 +216,7 @@ export declare const actionDeleteSelected: {
|
|
|
218
216
|
segmentMidPointHoveredCoords: import("../../math/src").GlobalPoint | null;
|
|
219
217
|
elbowed: boolean;
|
|
220
218
|
customLineAngle: number | null;
|
|
219
|
+
isEditing: boolean;
|
|
221
220
|
};
|
|
222
221
|
contextMenu: {
|
|
223
222
|
items: import("../components/ContextMenu").ContextMenuItems;
|
|
@@ -368,7 +367,6 @@ export declare const actionDeleteSelected: {
|
|
|
368
367
|
data: import("../charts").Spreadsheet;
|
|
369
368
|
};
|
|
370
369
|
showHyperlinkPopup: false | "editor" | "info";
|
|
371
|
-
selectedLinearElement: LinearElementEditor | null;
|
|
372
370
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
373
371
|
originSnapOffset: {
|
|
374
372
|
x: number;
|
|
@@ -431,7 +429,6 @@ export declare const actionDeleteSelected: {
|
|
|
431
429
|
editingFrame: string | null;
|
|
432
430
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
433
431
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
434
|
-
editingLinearElement: LinearElementEditor | null;
|
|
435
432
|
penMode: boolean;
|
|
436
433
|
penDetected: boolean;
|
|
437
434
|
exportBackground: boolean;
|
|
@@ -70,7 +70,6 @@ export declare const actionLinkToElement: {
|
|
|
70
70
|
editingFrame: string | null;
|
|
71
71
|
elementsToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawElement>[] | null;
|
|
72
72
|
editingTextElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
|
|
73
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
74
73
|
activeTool: {
|
|
75
74
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
76
75
|
locked: boolean;
|
|
@@ -52,7 +52,6 @@ export declare const actionToggleElementLock: {
|
|
|
52
52
|
editingFrame: string | null;
|
|
53
53
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
54
54
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
55
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
56
55
|
activeTool: {
|
|
57
56
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
58
57
|
locked: boolean;
|
|
@@ -236,7 +235,6 @@ export declare const actionUnlockAllElements: {
|
|
|
236
235
|
editingFrame: string | null;
|
|
237
236
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
238
237
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
239
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
240
238
|
activeTool: {
|
|
241
239
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
242
240
|
locked: boolean;
|
|
@@ -43,7 +43,6 @@ export declare const actionSetEmbeddableAsActiveTool: {
|
|
|
43
43
|
editingFrame: string | null;
|
|
44
44
|
elementsToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawElement>[] | null;
|
|
45
45
|
editingTextElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
|
|
46
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
47
46
|
penMode: boolean;
|
|
48
47
|
penDetected: boolean;
|
|
49
48
|
exportBackground: boolean;
|
|
@@ -37,7 +37,6 @@ export declare const actionChangeProjectName: {
|
|
|
37
37
|
editingFrame: string | null;
|
|
38
38
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
39
39
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
40
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
41
40
|
activeTool: {
|
|
42
41
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
43
42
|
locked: boolean;
|
|
@@ -222,7 +221,6 @@ export declare const actionChangeExportScale: {
|
|
|
222
221
|
editingFrame: string | null;
|
|
223
222
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
224
223
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
225
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
226
224
|
activeTool: {
|
|
227
225
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
228
226
|
locked: boolean;
|
|
@@ -407,7 +405,6 @@ export declare const actionChangeExportBackground: {
|
|
|
407
405
|
editingFrame: string | null;
|
|
408
406
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
409
407
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
410
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
411
408
|
activeTool: {
|
|
412
409
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
413
410
|
locked: boolean;
|
|
@@ -592,7 +589,6 @@ export declare const actionChangeExportEmbedScene: {
|
|
|
592
589
|
editingFrame: string | null;
|
|
593
590
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
594
591
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
595
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
596
592
|
activeTool: {
|
|
597
593
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
598
594
|
locked: boolean;
|
|
@@ -782,7 +778,6 @@ export declare const actionSaveToActiveFile: {
|
|
|
782
778
|
editingFrame: string | null;
|
|
783
779
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
784
780
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
785
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
786
781
|
activeTool: {
|
|
787
782
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
788
783
|
locked: boolean;
|
|
@@ -970,7 +965,6 @@ export declare const actionSaveFileToDisk: {
|
|
|
970
965
|
editingFrame: string | null;
|
|
971
966
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
972
967
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
973
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
974
968
|
activeTool: {
|
|
975
969
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
976
970
|
locked: boolean;
|
|
@@ -1148,7 +1142,6 @@ export declare const actionLoadScene: {
|
|
|
1148
1142
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
1149
1143
|
state: "active" | "hover";
|
|
1150
1144
|
} | null;
|
|
1151
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
1152
1145
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
1153
1146
|
selectedGroupIds: {
|
|
1154
1147
|
[groupId: string]: boolean;
|
|
@@ -1313,7 +1306,6 @@ export declare const actionLoadScene: {
|
|
|
1313
1306
|
editingFrame: string | null;
|
|
1314
1307
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
1315
1308
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
1316
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
1317
1309
|
activeTool: {
|
|
1318
1310
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
1319
1311
|
locked: boolean;
|
|
@@ -1500,7 +1492,6 @@ export declare const actionExportWithDarkMode: {
|
|
|
1500
1492
|
editingFrame: string | null;
|
|
1501
1493
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
1502
1494
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
1503
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
1504
1495
|
activeTool: {
|
|
1505
1496
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
1506
1497
|
locked: boolean;
|
|
@@ -41,6 +41,7 @@ export declare const actionFinalize: {
|
|
|
41
41
|
segmentMidPointHoveredCoords: import("@excalidraw/math").GlobalPoint | null;
|
|
42
42
|
elbowed: boolean;
|
|
43
43
|
customLineAngle: number | null;
|
|
44
|
+
isEditing: boolean;
|
|
44
45
|
};
|
|
45
46
|
suggestedBindings: never[];
|
|
46
47
|
};
|
|
@@ -49,7 +50,7 @@ export declare const actionFinalize: {
|
|
|
49
50
|
elements: import("@excalidraw/element/types").OrderedExcalidrawElement[] | undefined;
|
|
50
51
|
appState: {
|
|
51
52
|
cursorButton: "up";
|
|
52
|
-
|
|
53
|
+
selectedLinearElement: LinearElementEditor;
|
|
53
54
|
contextMenu: {
|
|
54
55
|
items: import("../components/ContextMenu").ContextMenuItems;
|
|
55
56
|
top: number;
|
|
@@ -198,7 +199,6 @@ export declare const actionFinalize: {
|
|
|
198
199
|
data: import("../charts").Spreadsheet;
|
|
199
200
|
};
|
|
200
201
|
showHyperlinkPopup: false | "editor" | "info";
|
|
201
|
-
selectedLinearElement: LinearElementEditor | null;
|
|
202
202
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
203
203
|
originSnapOffset: {
|
|
204
204
|
x: number;
|
|
@@ -258,7 +258,6 @@ export declare const actionFinalize: {
|
|
|
258
258
|
};
|
|
259
259
|
editingFrame: string | null;
|
|
260
260
|
elementsToHighlight: NonDeleted<ExcalidrawElement>[] | null;
|
|
261
|
-
editingLinearElement: LinearElementEditor | null;
|
|
262
261
|
penMode: boolean;
|
|
263
262
|
penDetected: boolean;
|
|
264
263
|
exportBackground: boolean;
|
|
@@ -40,7 +40,6 @@ export declare const actionSelectAllElementsInFrame: {
|
|
|
40
40
|
editingFrame: string | null;
|
|
41
41
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
42
42
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
43
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
44
43
|
activeTool: {
|
|
45
44
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
46
45
|
locked: boolean;
|
|
@@ -229,7 +228,6 @@ export declare const actionRemoveAllElementsFromFrame: {
|
|
|
229
228
|
editingFrame: string | null;
|
|
230
229
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
231
230
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
232
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
233
231
|
activeTool: {
|
|
234
232
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
235
233
|
locked: boolean;
|
|
@@ -416,7 +414,6 @@ export declare const actionupdateFrameRendering: {
|
|
|
416
414
|
editingFrame: string | null;
|
|
417
415
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
418
416
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
419
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
420
417
|
activeTool: {
|
|
421
418
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
422
419
|
locked: boolean;
|
|
@@ -608,7 +605,6 @@ export declare const actionSetFrameAsActiveTool: {
|
|
|
608
605
|
editingFrame: string | null;
|
|
609
606
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
610
607
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
611
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
612
608
|
penMode: boolean;
|
|
613
609
|
penDetected: boolean;
|
|
614
610
|
exportBackground: boolean;
|
|
@@ -50,7 +50,6 @@ export declare const actionGroup: {
|
|
|
50
50
|
editingFrame: string | null;
|
|
51
51
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
52
52
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
53
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
54
53
|
activeTool: {
|
|
55
54
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
56
55
|
locked: boolean;
|
|
@@ -242,7 +241,6 @@ export declare const actionUngroup: {
|
|
|
242
241
|
editingFrame: string | null;
|
|
243
242
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
244
243
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
245
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
246
244
|
activeTool: {
|
|
247
245
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
248
246
|
locked: boolean;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { LinearElementEditor } from "@excalidraw/element";
|
|
3
2
|
import type { ExcalidrawLinearElement } from "@excalidraw/element/types";
|
|
4
3
|
export declare const actionToggleLinearEditor: {
|
|
5
4
|
name: "toggleLinearEditor";
|
|
@@ -12,7 +11,39 @@ export declare const actionToggleLinearEditor: {
|
|
|
12
11
|
predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: import("../types").AppState, _: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
|
|
13
12
|
perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: any, app: import("../types").AppClassProperties): {
|
|
14
13
|
appState: {
|
|
15
|
-
|
|
14
|
+
selectedLinearElement: {
|
|
15
|
+
isEditing: boolean;
|
|
16
|
+
elementId: string & {
|
|
17
|
+
_brand: "excalidrawLinearElementId";
|
|
18
|
+
};
|
|
19
|
+
selectedPointsIndices: readonly number[] | null;
|
|
20
|
+
pointerDownState: Readonly<{
|
|
21
|
+
prevSelectedPointsIndices: readonly number[] | null;
|
|
22
|
+
lastClickedPoint: number;
|
|
23
|
+
lastClickedIsEndPoint: boolean;
|
|
24
|
+
origin: Readonly<{
|
|
25
|
+
x: number;
|
|
26
|
+
y: number;
|
|
27
|
+
}> | null;
|
|
28
|
+
segmentMidpoint: {
|
|
29
|
+
value: import("../../math/src").GlobalPoint | null;
|
|
30
|
+
index: number | null;
|
|
31
|
+
added: boolean;
|
|
32
|
+
};
|
|
33
|
+
}>;
|
|
34
|
+
isDragging: boolean;
|
|
35
|
+
lastUncommittedPoint: import("../../math/src").LocalPoint | null;
|
|
36
|
+
pointerOffset: Readonly<{
|
|
37
|
+
x: number;
|
|
38
|
+
y: number;
|
|
39
|
+
}>;
|
|
40
|
+
startBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
|
|
41
|
+
endBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
|
|
42
|
+
hoverPointIndex: number;
|
|
43
|
+
segmentMidPointHoveredCoords: import("../../math/src").GlobalPoint | null;
|
|
44
|
+
elbowed: boolean;
|
|
45
|
+
customLineAngle: number | null;
|
|
46
|
+
};
|
|
16
47
|
contextMenu: {
|
|
17
48
|
items: import("../components/ContextMenu").ContextMenuItems;
|
|
18
49
|
top: number;
|
|
@@ -162,7 +193,6 @@ export declare const actionToggleLinearEditor: {
|
|
|
162
193
|
data: import("../charts").Spreadsheet;
|
|
163
194
|
};
|
|
164
195
|
showHyperlinkPopup: false | "editor" | "info";
|
|
165
|
-
selectedLinearElement: LinearElementEditor | null;
|
|
166
196
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
167
197
|
originSnapOffset: {
|
|
168
198
|
x: number;
|
|
@@ -37,7 +37,6 @@ export declare const actionLink: {
|
|
|
37
37
|
editingFrame: string | null;
|
|
38
38
|
elementsToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawElement>[] | null;
|
|
39
39
|
editingTextElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
|
|
40
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
41
40
|
activeTool: {
|
|
42
41
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
43
42
|
locked: boolean;
|
|
@@ -37,7 +37,6 @@ export declare const actionToggleCanvasMenu: {
|
|
|
37
37
|
editingFrame: string | null;
|
|
38
38
|
elementsToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawElement>[] | null;
|
|
39
39
|
editingTextElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
|
|
40
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
41
40
|
activeTool: {
|
|
42
41
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
43
42
|
locked: boolean;
|
|
@@ -221,7 +220,6 @@ export declare const actionToggleEditMenu: {
|
|
|
221
220
|
editingFrame: string | null;
|
|
222
221
|
elementsToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawElement>[] | null;
|
|
223
222
|
editingTextElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
|
|
224
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
225
223
|
activeTool: {
|
|
226
224
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
227
225
|
locked: boolean;
|
|
@@ -410,7 +408,6 @@ export declare const actionShortcuts: {
|
|
|
410
408
|
editingFrame: string | null;
|
|
411
409
|
elementsToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawElement>[] | null;
|
|
412
410
|
editingTextElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
|
|
413
|
-
editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
414
411
|
activeTool: {
|
|
415
412
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
416
413
|
locked: boolean;
|