@excalidraw/element 0.18.0-2a82821 → 0.18.0-2b1c2a9
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 +5570 -3546
- package/dist/dev/index.js.map +4 -4
- package/dist/prod/index.js +12 -12
- package/dist/types/common/src/colors.d.ts +19 -0
- package/dist/types/common/src/constants.d.ts +3 -0
- package/dist/types/common/src/keys.d.ts +2 -0
- package/dist/types/common/src/points.d.ts +1 -1
- package/dist/types/common/src/utils.d.ts +1 -43
- package/dist/types/element/src/Scene.d.ts +1 -1
- package/dist/types/element/src/align.d.ts +2 -2
- package/dist/types/element/src/arrowEndpointText.d.ts +49 -0
- package/dist/types/element/src/arrows/focus.d.ts +5 -2
- package/dist/types/element/src/binding.d.ts +17 -8
- package/dist/types/element/src/bounds.d.ts +5 -9
- package/dist/types/element/src/bucketFill.d.ts +110 -0
- package/dist/types/element/src/collision.d.ts +1 -1
- package/dist/types/element/src/comparisons.d.ts +4 -4
- package/dist/types/element/src/convertToShape.d.ts +23 -0
- package/dist/types/element/src/distribute.d.ts +2 -2
- package/dist/types/element/src/dragElements.d.ts +27 -0
- package/dist/types/element/src/duplicate.d.ts +3 -3
- package/dist/types/element/src/embeddable.d.ts +2 -2
- package/dist/types/element/src/flowchart.d.ts +7 -7
- package/dist/types/element/src/fractionalIndex.d.ts +2 -2
- package/dist/types/element/src/frame.d.ts +4 -4
- package/dist/types/element/src/groups.d.ts +9 -9
- package/dist/types/element/src/index.d.ts +4 -1
- package/dist/types/element/src/linearElementEditor.d.ts +27 -10
- package/dist/types/element/src/newElement.d.ts +14 -0
- package/dist/types/element/src/renderElement.d.ts +0 -3
- package/dist/types/element/src/resizeElements.d.ts +2 -2
- package/dist/types/element/src/selection.d.ts +5 -5
- package/dist/types/element/src/shape.d.ts +12 -0
- package/dist/types/element/src/sortElements.d.ts +10 -0
- package/dist/types/element/src/textElement.d.ts +13 -9
- package/dist/types/element/src/transform.d.ts +2 -2
- package/dist/types/element/src/typeChecks.d.ts +25 -25
- package/dist/types/element/src/types.d.ts +9 -1
- package/dist/types/element/src/utils.d.ts +7 -3
- package/dist/types/element/src/zindex.d.ts +2 -2
- package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +36 -12
- package/dist/types/excalidraw/actions/actionAlign.d.ts +6 -6
- package/dist/types/excalidraw/actions/actionBoundText.d.ts +24 -8
- package/dist/types/excalidraw/actions/actionCanvas.d.ts +146 -931
- package/dist/types/excalidraw/actions/actionClipboard.d.ts +24 -8
- package/dist/types/excalidraw/actions/actionCropEditor.d.ts +12 -4
- package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +38 -13
- package/dist/types/excalidraw/actions/actionDeselect.d.ts +9 -4
- package/dist/types/excalidraw/actions/actionDistribute.d.ts +2 -3
- package/dist/types/excalidraw/actions/actionElementLink.d.ts +12 -4
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +25 -9
- package/dist/types/excalidraw/actions/actionExport.d.ts +26 -10
- package/dist/types/excalidraw/actions/actionFinalize.d.ts +1 -0
- package/dist/types/excalidraw/actions/actionFrame.d.ts +48 -197
- package/dist/types/excalidraw/actions/actionGroup.d.ts +39 -23
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +16 -6
- package/dist/types/excalidraw/actions/actionLink.d.ts +13 -5
- package/dist/types/excalidraw/actions/actionMenu.d.ts +12 -4
- package/dist/types/excalidraw/actions/actionProperties.d.ts +43 -24
- package/dist/types/excalidraw/actions/actionSelectAll.d.ts +17 -9
- package/dist/types/excalidraw/actions/actionStyles.d.ts +12 -4
- package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +1 -1
- package/dist/types/excalidraw/actions/actionToggleArrowBinding.d.ts +13 -5
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +16 -9
- package/dist/types/excalidraw/actions/actionToggleMidpointSnapping.d.ts +13 -5
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +13 -5
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +16 -9
- package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +1 -1
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +13 -5
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +14 -6
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +13 -5
- package/dist/types/excalidraw/actions/index.d.ts +1 -2
- package/dist/types/excalidraw/actions/manager.d.ts +1 -0
- package/dist/types/excalidraw/actions/shortcuts.d.ts +1 -1
- package/dist/types/excalidraw/actions/types.d.ts +8 -4
- package/dist/types/excalidraw/appState.d.ts +9 -4
- package/dist/types/excalidraw/components/Actions.d.ts +17 -12
- package/dist/types/excalidraw/components/App.arrowText.d.ts +104 -0
- package/dist/types/excalidraw/components/App.bucketFill.d.ts +48 -0
- package/dist/types/excalidraw/components/App.cursor.d.ts +38 -0
- package/dist/types/excalidraw/components/App.d.ts +372 -67
- package/dist/types/excalidraw/components/App.drawshape.d.ts +55 -0
- package/dist/types/excalidraw/components/App.flowchart.d.ts +21 -0
- package/dist/types/excalidraw/components/App.viewport.d.ts +73 -0
- package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +9 -3
- package/dist/types/excalidraw/components/ColorPicker/CustomColorList.d.ts +3 -1
- package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +3 -1
- package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +9 -2
- package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +4 -2
- package/dist/types/excalidraw/components/ColorPicker/TopPicks.d.ts +8 -1
- package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +2 -1
- package/dist/types/excalidraw/components/ColorPicker/topPicksDnD.d.ts +31 -0
- package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +1 -1
- package/dist/types/excalidraw/components/CursorHint.d.ts +46 -0
- package/dist/types/excalidraw/components/{ToolButton.d.ts → IconButton.d.ts} +16 -19
- package/dist/types/excalidraw/components/Island.d.ts +7 -0
- package/dist/types/excalidraw/components/LaserPointerButton.d.ts +2 -4
- package/dist/types/excalidraw/components/LayerUI.d.ts +5 -2
- package/dist/types/excalidraw/components/LockButton.d.ts +3 -4
- package/dist/types/excalidraw/components/MagicButton.d.ts +0 -2
- package/dist/types/excalidraw/components/MobileMenu.d.ts +4 -4
- package/dist/types/excalidraw/components/MobileToolbar.d.ts +9 -0
- package/dist/types/excalidraw/components/PenModeButton.d.ts +2 -5
- package/dist/types/excalidraw/components/Popover.d.ts +1 -3
- package/dist/types/excalidraw/components/{ButtonIcon.d.ts → RadioButton.d.ts} +2 -5
- package/dist/types/excalidraw/components/Stats/Angle.d.ts +2 -2
- package/dist/types/excalidraw/components/Stats/Dimension.d.ts +2 -2
- package/dist/types/excalidraw/components/Stats/DragInput.d.ts +2 -2
- package/dist/types/excalidraw/components/Stats/MultiAngle.d.ts +2 -2
- package/dist/types/excalidraw/components/Stats/MultiDimension.d.ts +2 -2
- package/dist/types/excalidraw/components/Stats/MultiPosition.d.ts +2 -2
- package/dist/types/excalidraw/components/Stats/Position.d.ts +3 -3
- package/dist/types/excalidraw/components/Stats/utils.d.ts +1 -1
- package/dist/types/excalidraw/components/ToolPopover.d.ts +3 -6
- package/dist/types/excalidraw/components/Toolbar.d.ts +11 -0
- package/dist/types/excalidraw/components/Tools.d.ts +146 -0
- package/dist/types/excalidraw/components/UserList.d.ts +3 -2
- package/dist/types/excalidraw/components/ViewportStatusFrame/ViewportStatusFrame.d.ts +11 -0
- package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +2 -0
- package/dist/types/excalidraw/components/footer/Footer.d.ts +3 -1
- package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +2 -2
- package/dist/types/excalidraw/components/icons.d.ts +4 -1
- package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +1 -1
- package/dist/types/excalidraw/components/positionElementBesideCursor.d.ts +26 -0
- package/dist/types/excalidraw/components/shapeActionPredicates.d.ts +39 -0
- package/dist/types/excalidraw/data/blob.d.ts +28 -12
- package/dist/types/excalidraw/data/index.d.ts +4 -4
- package/dist/types/excalidraw/data/json.d.ts +20 -12
- package/dist/types/excalidraw/drawShapeTrail.d.ts +16 -0
- package/dist/types/excalidraw/fonts/Fonts.d.ts +3 -2
- package/dist/types/excalidraw/hooks/useAppStateValue.d.ts +29 -0
- package/dist/types/excalidraw/hooks/useTextEditorFocus.d.ts +5 -5
- package/dist/types/excalidraw/lasso/utils.d.ts +2 -0
- package/dist/types/excalidraw/renderer/animation.d.ts +1 -0
- package/dist/types/excalidraw/renderer/helpers.d.ts +7 -0
- package/dist/types/excalidraw/renderer/interactiveScene.d.ts +1 -3
- package/dist/types/excalidraw/scene/Renderer.d.ts +12 -11
- package/dist/types/excalidraw/scene/export.d.ts +3 -3
- package/dist/types/excalidraw/scene/index.d.ts +1 -1
- package/dist/types/excalidraw/scene/types.d.ts +4 -3
- package/dist/types/excalidraw/snapping.d.ts +7 -7
- package/dist/types/excalidraw/types.d.ts +410 -20
- package/dist/types/excalidraw/viewport.d.ts +275 -0
- package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +2 -3
- package/dist/types/laser-pointer/src/state.d.ts +1 -0
- package/dist/types/math/src/curve.d.ts +19 -12
- package/dist/types/math/src/index.d.ts +1 -0
- package/dist/types/math/src/pca.d.ts +79 -0
- package/dist/types/math/src/polygon.d.ts +25 -1
- package/dist/types/math/src/segment.d.ts +6 -0
- package/dist/types/utils/src/export.d.ts +3 -3
- package/package.json +4 -4
- package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +0 -172
- package/dist/types/excalidraw/components/FollowMode/FollowMode.d.ts +0 -10
- package/dist/types/excalidraw/components/HandButton.d.ts +0 -10
- package/dist/types/excalidraw/components/MobileToolBar.d.ts +0 -10
- package/dist/types/excalidraw/components/shapes.d.ts +0 -270
- package/dist/types/excalidraw/cursor.d.ts +0 -5
- package/dist/types/excalidraw/scene/scroll.d.ts +0 -18
- package/dist/types/excalidraw/scene/zoom.d.ts +0 -12
|
@@ -34,6 +34,10 @@ export declare const actionPaste: {
|
|
|
34
34
|
element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
35
35
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
36
36
|
} | null;
|
|
37
|
+
hoveredArrowTextAnchor: {
|
|
38
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
39
|
+
anchor: "start" | "end" | "label";
|
|
40
|
+
} | null;
|
|
37
41
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
38
42
|
frameRendering: {
|
|
39
43
|
enabled: boolean;
|
|
@@ -41,8 +45,8 @@ export declare const actionPaste: {
|
|
|
41
45
|
outline: boolean;
|
|
42
46
|
clip: boolean;
|
|
43
47
|
};
|
|
44
|
-
editingFrame:
|
|
45
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
48
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
49
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
46
50
|
editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
|
|
47
51
|
activeTool: {
|
|
48
52
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -78,6 +82,7 @@ export declare const actionPaste: {
|
|
|
78
82
|
viewBackgroundColor: string;
|
|
79
83
|
scrollX: number;
|
|
80
84
|
scrollY: number;
|
|
85
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
81
86
|
cursorButton: "up" | "down";
|
|
82
87
|
scrolledOutside: boolean;
|
|
83
88
|
name: string | null;
|
|
@@ -153,8 +158,6 @@ export declare const actionPaste: {
|
|
|
153
158
|
y: number;
|
|
154
159
|
} | null;
|
|
155
160
|
objectsSnapModeEnabled: boolean;
|
|
156
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
157
|
-
followedBy: Set<import("../types").SocketId>;
|
|
158
161
|
isCropping: boolean;
|
|
159
162
|
croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
|
|
160
163
|
searchMatches: Readonly<{
|
|
@@ -166,6 +169,11 @@ export declare const actionPaste: {
|
|
|
166
169
|
[groupId: string]: true;
|
|
167
170
|
};
|
|
168
171
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
172
|
+
colorTopPicks: {
|
|
173
|
+
elementStroke: readonly string[] | null;
|
|
174
|
+
elementBackground: readonly string[] | null;
|
|
175
|
+
bucketFill: readonly string[] | null;
|
|
176
|
+
};
|
|
169
177
|
};
|
|
170
178
|
} | {
|
|
171
179
|
captureUpdate: "EVENTUALLY";
|
|
@@ -244,6 +252,10 @@ export declare const actionCopyAsPng: {
|
|
|
244
252
|
element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
245
253
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
246
254
|
} | null;
|
|
255
|
+
hoveredArrowTextAnchor: {
|
|
256
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
257
|
+
anchor: "start" | "end" | "label";
|
|
258
|
+
} | null;
|
|
247
259
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
248
260
|
frameRendering: {
|
|
249
261
|
enabled: boolean;
|
|
@@ -251,8 +263,8 @@ export declare const actionCopyAsPng: {
|
|
|
251
263
|
outline: boolean;
|
|
252
264
|
clip: boolean;
|
|
253
265
|
};
|
|
254
|
-
editingFrame:
|
|
255
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
266
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
267
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
256
268
|
editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
|
|
257
269
|
activeTool: {
|
|
258
270
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -288,6 +300,7 @@ export declare const actionCopyAsPng: {
|
|
|
288
300
|
viewBackgroundColor: string;
|
|
289
301
|
scrollX: number;
|
|
290
302
|
scrollY: number;
|
|
303
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
291
304
|
cursorButton: "up" | "down";
|
|
292
305
|
scrolledOutside: boolean;
|
|
293
306
|
name: string | null;
|
|
@@ -363,8 +376,6 @@ export declare const actionCopyAsPng: {
|
|
|
363
376
|
y: number;
|
|
364
377
|
} | null;
|
|
365
378
|
objectsSnapModeEnabled: boolean;
|
|
366
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
367
|
-
followedBy: Set<import("../types").SocketId>;
|
|
368
379
|
isCropping: boolean;
|
|
369
380
|
croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
|
|
370
381
|
searchMatches: Readonly<{
|
|
@@ -376,6 +387,11 @@ export declare const actionCopyAsPng: {
|
|
|
376
387
|
[groupId: string]: true;
|
|
377
388
|
};
|
|
378
389
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
390
|
+
colorTopPicks: {
|
|
391
|
+
elementStroke: readonly string[] | null;
|
|
392
|
+
elementBackground: readonly string[] | null;
|
|
393
|
+
bucketFill: readonly string[] | null;
|
|
394
|
+
};
|
|
379
395
|
};
|
|
380
396
|
captureUpdate: "EVENTUALLY";
|
|
381
397
|
}>;
|
|
@@ -35,6 +35,10 @@ export declare const actionToggleCropEditor: {
|
|
|
35
35
|
element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
36
36
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
37
37
|
} | null;
|
|
38
|
+
hoveredArrowTextAnchor: {
|
|
39
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
40
|
+
anchor: "start" | "end" | "label";
|
|
41
|
+
} | null;
|
|
38
42
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
39
43
|
frameRendering: {
|
|
40
44
|
enabled: boolean;
|
|
@@ -42,8 +46,8 @@ export declare const actionToggleCropEditor: {
|
|
|
42
46
|
outline: boolean;
|
|
43
47
|
clip: boolean;
|
|
44
48
|
};
|
|
45
|
-
editingFrame:
|
|
46
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
49
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
50
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
47
51
|
editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
|
|
48
52
|
activeTool: {
|
|
49
53
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -79,6 +83,7 @@ export declare const actionToggleCropEditor: {
|
|
|
79
83
|
viewBackgroundColor: string;
|
|
80
84
|
scrollX: number;
|
|
81
85
|
scrollY: number;
|
|
86
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
82
87
|
cursorButton: "up" | "down";
|
|
83
88
|
scrolledOutside: boolean;
|
|
84
89
|
name: string | null;
|
|
@@ -154,8 +159,6 @@ export declare const actionToggleCropEditor: {
|
|
|
154
159
|
y: number;
|
|
155
160
|
} | null;
|
|
156
161
|
objectsSnapModeEnabled: boolean;
|
|
157
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
158
|
-
followedBy: Set<import("../types").SocketId>;
|
|
159
162
|
searchMatches: Readonly<{
|
|
160
163
|
focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
|
|
161
164
|
matches: readonly import("../types").SearchMatch[];
|
|
@@ -165,6 +168,11 @@ export declare const actionToggleCropEditor: {
|
|
|
165
168
|
[groupId: string]: true;
|
|
166
169
|
};
|
|
167
170
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
171
|
+
colorTopPicks: {
|
|
172
|
+
elementStroke: readonly string[] | null;
|
|
173
|
+
elementBackground: readonly string[] | null;
|
|
174
|
+
bucketFill: readonly string[] | null;
|
|
175
|
+
};
|
|
168
176
|
};
|
|
169
177
|
captureUpdate: "IMMEDIATELY";
|
|
170
178
|
};
|
|
@@ -36,6 +36,10 @@ export declare const actionDeleteSelected: {
|
|
|
36
36
|
element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
37
37
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
38
38
|
} | null;
|
|
39
|
+
hoveredArrowTextAnchor: {
|
|
40
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
41
|
+
anchor: "start" | "end" | "label";
|
|
42
|
+
} | null;
|
|
39
43
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
40
44
|
frameRendering: {
|
|
41
45
|
enabled: boolean;
|
|
@@ -43,8 +47,8 @@ export declare const actionDeleteSelected: {
|
|
|
43
47
|
outline: boolean;
|
|
44
48
|
clip: boolean;
|
|
45
49
|
};
|
|
46
|
-
editingFrame:
|
|
47
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
50
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
51
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
48
52
|
editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
|
|
49
53
|
activeTool: {
|
|
50
54
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -80,6 +84,7 @@ export declare const actionDeleteSelected: {
|
|
|
80
84
|
viewBackgroundColor: string;
|
|
81
85
|
scrollX: number;
|
|
82
86
|
scrollY: number;
|
|
87
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
83
88
|
cursorButton: "up" | "down";
|
|
84
89
|
scrolledOutside: boolean;
|
|
85
90
|
name: string | null;
|
|
@@ -154,8 +159,6 @@ export declare const actionDeleteSelected: {
|
|
|
154
159
|
y: number;
|
|
155
160
|
} | null;
|
|
156
161
|
objectsSnapModeEnabled: boolean;
|
|
157
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
158
|
-
followedBy: Set<import("../types").SocketId>;
|
|
159
162
|
isCropping: boolean;
|
|
160
163
|
croppingElementId: ExcalidrawElement["id"] | null;
|
|
161
164
|
searchMatches: Readonly<{
|
|
@@ -167,6 +170,11 @@ export declare const actionDeleteSelected: {
|
|
|
167
170
|
[groupId: string]: true;
|
|
168
171
|
};
|
|
169
172
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
173
|
+
colorTopPicks: {
|
|
174
|
+
elementStroke: readonly string[] | null;
|
|
175
|
+
elementBackground: readonly string[] | null;
|
|
176
|
+
bucketFill: readonly string[] | null;
|
|
177
|
+
};
|
|
170
178
|
};
|
|
171
179
|
captureUpdate: "IMMEDIATELY";
|
|
172
180
|
} | {
|
|
@@ -188,6 +196,7 @@ export declare const actionDeleteSelected: {
|
|
|
188
196
|
};
|
|
189
197
|
arrowStartIsInside: boolean;
|
|
190
198
|
altFocusPoint: Readonly<import("@excalidraw/math").GlobalPoint> | null;
|
|
199
|
+
arrowOtherEndpointInitialBinding: import("@excalidraw/element/types").FixedPointBinding | null;
|
|
191
200
|
}>;
|
|
192
201
|
isDragging: boolean;
|
|
193
202
|
lastUncommittedPoint: import("@excalidraw/math").LocalPoint | null;
|
|
@@ -229,6 +238,10 @@ export declare const actionDeleteSelected: {
|
|
|
229
238
|
element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
230
239
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
231
240
|
} | null;
|
|
241
|
+
hoveredArrowTextAnchor: {
|
|
242
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
243
|
+
anchor: "start" | "end" | "label";
|
|
244
|
+
} | null;
|
|
232
245
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
233
246
|
frameRendering: {
|
|
234
247
|
enabled: boolean;
|
|
@@ -236,8 +249,8 @@ export declare const actionDeleteSelected: {
|
|
|
236
249
|
outline: boolean;
|
|
237
250
|
clip: boolean;
|
|
238
251
|
};
|
|
239
|
-
editingFrame:
|
|
240
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
252
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
253
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
241
254
|
editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
|
|
242
255
|
activeTool: {
|
|
243
256
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -273,6 +286,7 @@ export declare const actionDeleteSelected: {
|
|
|
273
286
|
viewBackgroundColor: string;
|
|
274
287
|
scrollX: number;
|
|
275
288
|
scrollY: number;
|
|
289
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
276
290
|
cursorButton: "up" | "down";
|
|
277
291
|
scrolledOutside: boolean;
|
|
278
292
|
name: string | null;
|
|
@@ -347,8 +361,6 @@ export declare const actionDeleteSelected: {
|
|
|
347
361
|
y: number;
|
|
348
362
|
} | null;
|
|
349
363
|
objectsSnapModeEnabled: boolean;
|
|
350
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
351
|
-
followedBy: Set<import("../types").SocketId>;
|
|
352
364
|
isCropping: boolean;
|
|
353
365
|
croppingElementId: ExcalidrawElement["id"] | null;
|
|
354
366
|
searchMatches: Readonly<{
|
|
@@ -360,10 +372,15 @@ export declare const actionDeleteSelected: {
|
|
|
360
372
|
[groupId: string]: true;
|
|
361
373
|
};
|
|
362
374
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
375
|
+
colorTopPicks: {
|
|
376
|
+
elementStroke: readonly string[] | null;
|
|
377
|
+
elementBackground: readonly string[] | null;
|
|
378
|
+
bucketFill: readonly string[] | null;
|
|
379
|
+
};
|
|
363
380
|
};
|
|
364
381
|
captureUpdate: "IMMEDIATELY";
|
|
365
382
|
} | {
|
|
366
|
-
elements:
|
|
383
|
+
elements: (import("@excalidraw/element/types").ExcalidrawLinearElement | import("@excalidraw/element/types").ExcalidrawSelectionElement | import("@excalidraw/element/types").ExcalidrawRectangleElement | import("@excalidraw/element/types").ExcalidrawDiamondElement | import("@excalidraw/element/types").ExcalidrawEllipseElement | import("@excalidraw/element/types").ExcalidrawEmbeddableElement | import("@excalidraw/element/types").ExcalidrawIframeElement | import("@excalidraw/element/types").ExcalidrawImageElement | import("@excalidraw/element/types").ExcalidrawFrameElement | import("@excalidraw/element/types").ExcalidrawMagicFrameElement | import("@excalidraw/element/types").ExcalidrawTextElement | import("@excalidraw/element/types").ExcalidrawFreeDrawElement)[];
|
|
367
384
|
appState: {
|
|
368
385
|
activeTool: {
|
|
369
386
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -395,6 +412,10 @@ export declare const actionDeleteSelected: {
|
|
|
395
412
|
element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
396
413
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
397
414
|
} | null;
|
|
415
|
+
hoveredArrowTextAnchor: {
|
|
416
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
417
|
+
anchor: "start" | "end" | "label";
|
|
418
|
+
} | null;
|
|
398
419
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
399
420
|
frameRendering: {
|
|
400
421
|
enabled: boolean;
|
|
@@ -402,8 +423,8 @@ export declare const actionDeleteSelected: {
|
|
|
402
423
|
outline: boolean;
|
|
403
424
|
clip: boolean;
|
|
404
425
|
};
|
|
405
|
-
editingFrame:
|
|
406
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
426
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
427
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
407
428
|
editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
|
|
408
429
|
preferredSelectionTool: {
|
|
409
430
|
type: "selection" | "lasso";
|
|
@@ -434,6 +455,7 @@ export declare const actionDeleteSelected: {
|
|
|
434
455
|
viewBackgroundColor: string;
|
|
435
456
|
scrollX: number;
|
|
436
457
|
scrollY: number;
|
|
458
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
437
459
|
cursorButton: "up" | "down";
|
|
438
460
|
scrolledOutside: boolean;
|
|
439
461
|
name: string | null;
|
|
@@ -501,8 +523,6 @@ export declare const actionDeleteSelected: {
|
|
|
501
523
|
y: number;
|
|
502
524
|
} | null;
|
|
503
525
|
objectsSnapModeEnabled: boolean;
|
|
504
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
505
|
-
followedBy: Set<import("../types").SocketId>;
|
|
506
526
|
isCropping: boolean;
|
|
507
527
|
croppingElementId: ExcalidrawElement["id"] | null;
|
|
508
528
|
searchMatches: Readonly<{
|
|
@@ -514,6 +534,11 @@ export declare const actionDeleteSelected: {
|
|
|
514
534
|
[groupId: string]: true;
|
|
515
535
|
};
|
|
516
536
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
537
|
+
colorTopPicks: {
|
|
538
|
+
elementStroke: readonly string[] | null;
|
|
539
|
+
elementBackground: readonly string[] | null;
|
|
540
|
+
bucketFill: readonly string[] | null;
|
|
541
|
+
};
|
|
517
542
|
};
|
|
518
543
|
captureUpdate: "IMMEDIATELY" | "EVENTUALLY";
|
|
519
544
|
};
|
|
@@ -15,6 +15,7 @@ export declare const actionDeselect: {
|
|
|
15
15
|
selectionElement: null;
|
|
16
16
|
showHyperlinkPopup: false;
|
|
17
17
|
suggestedBinding: null;
|
|
18
|
+
hoveredArrowTextAnchor: null;
|
|
18
19
|
frameToHighlight: null;
|
|
19
20
|
editingGroupId: AppState["editingGroupId"];
|
|
20
21
|
selectedElementIds: AppState["selectedElementIds"];
|
|
@@ -40,8 +41,8 @@ export declare const actionDeselect: {
|
|
|
40
41
|
outline: boolean;
|
|
41
42
|
clip: boolean;
|
|
42
43
|
};
|
|
43
|
-
editingFrame:
|
|
44
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
44
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
45
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
45
46
|
editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
|
|
46
47
|
preferredSelectionTool: {
|
|
47
48
|
type: "selection" | "lasso";
|
|
@@ -72,6 +73,7 @@ export declare const actionDeselect: {
|
|
|
72
73
|
viewBackgroundColor: string;
|
|
73
74
|
scrollX: number;
|
|
74
75
|
scrollY: number;
|
|
76
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
75
77
|
cursorButton: "up" | "down";
|
|
76
78
|
scrolledOutside: boolean;
|
|
77
79
|
name: string | null;
|
|
@@ -138,8 +140,6 @@ export declare const actionDeselect: {
|
|
|
138
140
|
y: number;
|
|
139
141
|
} | null;
|
|
140
142
|
objectsSnapModeEnabled: boolean;
|
|
141
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
142
|
-
followedBy: Set<import("../types").SocketId>;
|
|
143
143
|
isCropping: boolean;
|
|
144
144
|
croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
|
|
145
145
|
searchMatches: Readonly<{
|
|
@@ -151,6 +151,11 @@ export declare const actionDeselect: {
|
|
|
151
151
|
[groupId: string]: true;
|
|
152
152
|
};
|
|
153
153
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
154
|
+
colorTopPicks: {
|
|
155
|
+
elementStroke: readonly string[] | null;
|
|
156
|
+
elementBackground: readonly string[] | null;
|
|
157
|
+
bucketFill: readonly string[] | null;
|
|
158
|
+
};
|
|
154
159
|
};
|
|
155
160
|
captureUpdate: "IMMEDIATELY";
|
|
156
161
|
};
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type { ExcalidrawElement } from "@excalidraw/element/types";
|
|
2
1
|
import type { AppClassProperties, AppState } from "../types";
|
|
3
2
|
export declare const distributeHorizontally: {
|
|
4
3
|
name: "distributeHorizontally";
|
|
@@ -8,7 +7,7 @@ export declare const distributeHorizontally: {
|
|
|
8
7
|
};
|
|
9
8
|
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
|
|
10
9
|
appState: Readonly<AppState>;
|
|
11
|
-
elements:
|
|
10
|
+
elements: (import("@excalidraw/element/types").ExcalidrawLinearElement | import("@excalidraw/element/types").ExcalidrawSelectionElement | import("@excalidraw/element/types").ExcalidrawRectangleElement | import("@excalidraw/element/types").ExcalidrawDiamondElement | import("@excalidraw/element/types").ExcalidrawEllipseElement | import("@excalidraw/element/types").ExcalidrawEmbeddableElement | import("@excalidraw/element/types").ExcalidrawIframeElement | import("@excalidraw/element/types").ExcalidrawImageElement | import("@excalidraw/element/types").ExcalidrawFrameElement | import("@excalidraw/element/types").ExcalidrawMagicFrameElement | import("@excalidraw/element/types").ExcalidrawTextElement | import("@excalidraw/element/types").ExcalidrawFreeDrawElement)[];
|
|
12
11
|
captureUpdate: "IMMEDIATELY";
|
|
13
12
|
};
|
|
14
13
|
keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
|
|
@@ -24,7 +23,7 @@ export declare const distributeVertically: {
|
|
|
24
23
|
};
|
|
25
24
|
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
|
|
26
25
|
appState: Readonly<AppState>;
|
|
27
|
-
elements:
|
|
26
|
+
elements: (import("@excalidraw/element/types").ExcalidrawLinearElement | import("@excalidraw/element/types").ExcalidrawSelectionElement | import("@excalidraw/element/types").ExcalidrawRectangleElement | import("@excalidraw/element/types").ExcalidrawDiamondElement | import("@excalidraw/element/types").ExcalidrawEllipseElement | import("@excalidraw/element/types").ExcalidrawEmbeddableElement | import("@excalidraw/element/types").ExcalidrawIframeElement | import("@excalidraw/element/types").ExcalidrawImageElement | import("@excalidraw/element/types").ExcalidrawFrameElement | import("@excalidraw/element/types").ExcalidrawMagicFrameElement | import("@excalidraw/element/types").ExcalidrawTextElement | import("@excalidraw/element/types").ExcalidrawFreeDrawElement)[];
|
|
28
27
|
captureUpdate: "IMMEDIATELY";
|
|
29
28
|
};
|
|
30
29
|
keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
|
|
@@ -64,6 +64,10 @@ export declare const actionLinkToElement: {
|
|
|
64
64
|
element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
65
65
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
66
66
|
} | null;
|
|
67
|
+
hoveredArrowTextAnchor: {
|
|
68
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
69
|
+
anchor: "start" | "end" | "label";
|
|
70
|
+
} | null;
|
|
67
71
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
68
72
|
frameRendering: {
|
|
69
73
|
enabled: boolean;
|
|
@@ -71,8 +75,8 @@ export declare const actionLinkToElement: {
|
|
|
71
75
|
outline: boolean;
|
|
72
76
|
clip: boolean;
|
|
73
77
|
};
|
|
74
|
-
editingFrame:
|
|
75
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
78
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
79
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
76
80
|
editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
|
|
77
81
|
activeTool: {
|
|
78
82
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -108,6 +112,7 @@ export declare const actionLinkToElement: {
|
|
|
108
112
|
viewBackgroundColor: string;
|
|
109
113
|
scrollX: number;
|
|
110
114
|
scrollY: number;
|
|
115
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
111
116
|
cursorButton: "up" | "down";
|
|
112
117
|
scrolledOutside: boolean;
|
|
113
118
|
name: string | null;
|
|
@@ -166,8 +171,6 @@ export declare const actionLinkToElement: {
|
|
|
166
171
|
y: number;
|
|
167
172
|
} | null;
|
|
168
173
|
objectsSnapModeEnabled: boolean;
|
|
169
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
170
|
-
followedBy: Set<import("../types").SocketId>;
|
|
171
174
|
isCropping: boolean;
|
|
172
175
|
croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
|
|
173
176
|
searchMatches: Readonly<{
|
|
@@ -179,6 +182,11 @@ export declare const actionLinkToElement: {
|
|
|
179
182
|
[groupId: string]: true;
|
|
180
183
|
};
|
|
181
184
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
185
|
+
colorTopPicks: {
|
|
186
|
+
elementStroke: readonly string[] | null;
|
|
187
|
+
elementBackground: readonly string[] | null;
|
|
188
|
+
bucketFill: readonly string[] | null;
|
|
189
|
+
};
|
|
182
190
|
};
|
|
183
191
|
captureUpdate: "IMMEDIATELY";
|
|
184
192
|
elements?: undefined;
|
|
@@ -2,7 +2,7 @@ import type { ExcalidrawElement } from "@excalidraw/element/types";
|
|
|
2
2
|
import type { AppState } from "../types";
|
|
3
3
|
export declare const actionToggleElementLock: {
|
|
4
4
|
name: "toggleElementLock";
|
|
5
|
-
label: (elements: readonly ExcalidrawElement[], appState: Readonly<
|
|
5
|
+
label: (elements: readonly ExcalidrawElement[], appState: Readonly<import("../types").UIAppState>, app: import("../types").AppClassProperties) => "labels.elementLock.lock" | "labels.elementLock.unlock";
|
|
6
6
|
icon: (appState: import("../types").UIAppState, elements: readonly ExcalidrawElement[]) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
trackEvent: {
|
|
8
8
|
category: "element";
|
|
@@ -46,6 +46,10 @@ export declare const actionToggleElementLock: {
|
|
|
46
46
|
element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
47
47
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
48
48
|
} | null;
|
|
49
|
+
hoveredArrowTextAnchor: {
|
|
50
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
51
|
+
anchor: "start" | "end" | "label";
|
|
52
|
+
} | null;
|
|
49
53
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
50
54
|
frameRendering: {
|
|
51
55
|
enabled: boolean;
|
|
@@ -53,8 +57,8 @@ export declare const actionToggleElementLock: {
|
|
|
53
57
|
outline: boolean;
|
|
54
58
|
clip: boolean;
|
|
55
59
|
};
|
|
56
|
-
editingFrame:
|
|
57
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
60
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
61
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
58
62
|
editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
|
|
59
63
|
activeTool: {
|
|
60
64
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -90,6 +94,7 @@ export declare const actionToggleElementLock: {
|
|
|
90
94
|
viewBackgroundColor: string;
|
|
91
95
|
scrollX: number;
|
|
92
96
|
scrollY: number;
|
|
97
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
93
98
|
cursorButton: "up" | "down";
|
|
94
99
|
scrolledOutside: boolean;
|
|
95
100
|
name: string | null;
|
|
@@ -158,8 +163,6 @@ export declare const actionToggleElementLock: {
|
|
|
158
163
|
y: number;
|
|
159
164
|
} | null;
|
|
160
165
|
objectsSnapModeEnabled: boolean;
|
|
161
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
162
|
-
followedBy: Set<import("../types").SocketId>;
|
|
163
166
|
isCropping: boolean;
|
|
164
167
|
croppingElementId: ExcalidrawElement["id"] | null;
|
|
165
168
|
searchMatches: Readonly<{
|
|
@@ -167,6 +170,11 @@ export declare const actionToggleElementLock: {
|
|
|
167
170
|
matches: readonly import("../types").SearchMatch[];
|
|
168
171
|
}> | null;
|
|
169
172
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
173
|
+
colorTopPicks: {
|
|
174
|
+
elementStroke: readonly string[] | null;
|
|
175
|
+
elementBackground: readonly string[] | null;
|
|
176
|
+
bucketFill: readonly string[] | null;
|
|
177
|
+
};
|
|
170
178
|
};
|
|
171
179
|
captureUpdate: "IMMEDIATELY";
|
|
172
180
|
};
|
|
@@ -217,6 +225,10 @@ export declare const actionUnlockAllElements: {
|
|
|
217
225
|
element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
218
226
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
219
227
|
} | null;
|
|
228
|
+
hoveredArrowTextAnchor: {
|
|
229
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
230
|
+
anchor: "start" | "end" | "label";
|
|
231
|
+
} | null;
|
|
220
232
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
221
233
|
frameRendering: {
|
|
222
234
|
enabled: boolean;
|
|
@@ -224,8 +236,8 @@ export declare const actionUnlockAllElements: {
|
|
|
224
236
|
outline: boolean;
|
|
225
237
|
clip: boolean;
|
|
226
238
|
};
|
|
227
|
-
editingFrame:
|
|
228
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
239
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
240
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
229
241
|
editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
|
|
230
242
|
activeTool: {
|
|
231
243
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -261,6 +273,7 @@ export declare const actionUnlockAllElements: {
|
|
|
261
273
|
viewBackgroundColor: string;
|
|
262
274
|
scrollX: number;
|
|
263
275
|
scrollY: number;
|
|
276
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
264
277
|
cursorButton: "up" | "down";
|
|
265
278
|
scrolledOutside: boolean;
|
|
266
279
|
name: string | null;
|
|
@@ -330,8 +343,6 @@ export declare const actionUnlockAllElements: {
|
|
|
330
343
|
y: number;
|
|
331
344
|
} | null;
|
|
332
345
|
objectsSnapModeEnabled: boolean;
|
|
333
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
334
|
-
followedBy: Set<import("../types").SocketId>;
|
|
335
346
|
isCropping: boolean;
|
|
336
347
|
croppingElementId: ExcalidrawElement["id"] | null;
|
|
337
348
|
searchMatches: Readonly<{
|
|
@@ -339,6 +350,11 @@ export declare const actionUnlockAllElements: {
|
|
|
339
350
|
matches: readonly import("../types").SearchMatch[];
|
|
340
351
|
}> | null;
|
|
341
352
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
353
|
+
colorTopPicks: {
|
|
354
|
+
elementStroke: readonly string[] | null;
|
|
355
|
+
elementBackground: readonly string[] | null;
|
|
356
|
+
bucketFill: readonly string[] | null;
|
|
357
|
+
};
|
|
342
358
|
};
|
|
343
359
|
captureUpdate: "IMMEDIATELY";
|
|
344
360
|
};
|