@myoc/math 0.19.521 → 0.19.523
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 +261 -92
- package/dist/dev/index.js.map +4 -4
- package/dist/prod/index.js +1 -1
- package/dist/types/common/src/colors.d.ts +14 -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 -1
- 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 +17 -10
- package/dist/types/element/src/newElement.d.ts +13 -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 +12 -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 +2 -1
- package/dist/types/element/src/zindex.d.ts +2 -2
- 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 +134 -967
- 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/actionFrame.d.ts +47 -205
- package/dist/types/excalidraw/actions/actionGroup.d.ts +39 -23
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +15 -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 +14 -6
- 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/actionToggleStats.d.ts +13 -5
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +14 -6
- package/dist/types/excalidraw/actions/index.d.ts +2 -3
- 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 +10 -5
- package/dist/types/excalidraw/components/Actions.d.ts +18 -14
- package/dist/types/excalidraw/components/App.arrowText.d.ts +72 -0
- package/dist/types/excalidraw/components/App.bucketFill.d.ts +48 -0
- package/dist/types/excalidraw/components/App.cursor.d.ts +30 -0
- package/dist/types/excalidraw/components/App.d.ts +389 -61
- 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 +9 -0
- package/dist/types/excalidraw/components/MobileMenu.d.ts +4 -4
- package/dist/types/excalidraw/components/{MobileToolBar.d.ts → MobileToolbar.d.ts} +3 -4
- 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 +13 -0
- package/dist/types/excalidraw/components/Tools.d.ts +151 -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 +0 -2
- package/dist/types/excalidraw/components/positionElementBesideCursor.d.ts +26 -0
- package/dist/types/excalidraw/components/shapeActionPredicates.d.ts +39 -0
- package/dist/types/excalidraw/context/tunnels.d.ts +0 -1
- package/dist/types/excalidraw/data/blob.d.ts +14 -6
- 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/hooks/useAppStateValue.d.ts +29 -0
- package/dist/types/excalidraw/lasso/utils.d.ts +2 -0
- package/dist/types/excalidraw/renderer/interactiveScene.d.ts +10 -3
- package/dist/types/excalidraw/scene/Renderer.d.ts +11 -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 +432 -28
- package/dist/types/excalidraw/viewport.d.ts +283 -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/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/utils/src/export.d.ts +3 -3
- package/package.json +2 -2
- package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +0 -180
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +0 -183
- package/dist/types/excalidraw/components/DefaultSidebar.d.ts +0 -27
- package/dist/types/excalidraw/components/ElementCanvasButtons.d.ts +0 -7
- 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/MagicButton.d.ts +0 -10
- 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
- package/dist/types/excalidraw/scroll.d.ts +0 -46
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import type { ExcalidrawElement, ExcalidrawTextElement, OrderedExcalidrawElement } from "@excalidraw/element/types";
|
|
2
|
-
import type { AppClassProperties,
|
|
2
|
+
import type { AppClassProperties, UIAppState } from "../types";
|
|
3
3
|
export declare const actionGroup: {
|
|
4
4
|
name: "group";
|
|
5
5
|
label: string;
|
|
6
|
-
icon: (appState:
|
|
6
|
+
icon: (appState: UIAppState) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
trackEvent: {
|
|
8
8
|
category: "element";
|
|
9
9
|
};
|
|
10
|
-
perform: (elements: readonly OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
|
|
11
|
-
appState: Readonly<AppState>;
|
|
10
|
+
perform: (elements: readonly OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: unknown, app: AppClassProperties) => false | {
|
|
11
|
+
appState: Readonly<import("../types").AppState>;
|
|
12
12
|
elements: readonly OrderedExcalidrawElement[];
|
|
13
13
|
captureUpdate: "EVENTUALLY";
|
|
14
14
|
} | {
|
|
15
15
|
appState: {
|
|
16
|
-
editingGroupId: AppState["editingGroupId"];
|
|
17
|
-
selectedElementIds: AppState["selectedElementIds"];
|
|
18
|
-
selectedGroupIds: AppState["selectedGroupIds"];
|
|
16
|
+
editingGroupId: import("../types").AppState["editingGroupId"];
|
|
17
|
+
selectedElementIds: import("../types").AppState["selectedElementIds"];
|
|
18
|
+
selectedGroupIds: import("../types").AppState["selectedGroupIds"];
|
|
19
19
|
contextMenu: {
|
|
20
20
|
items: import("../components/ContextMenu").ContextMenuItems;
|
|
21
21
|
top: number;
|
|
@@ -52,6 +52,10 @@ export declare const actionGroup: {
|
|
|
52
52
|
element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
53
53
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
54
54
|
} | null;
|
|
55
|
+
hoveredArrowTextAnchor: {
|
|
56
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
57
|
+
anchor: "start" | "end" | "label";
|
|
58
|
+
} | null;
|
|
55
59
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
56
60
|
frameRendering: {
|
|
57
61
|
enabled: boolean;
|
|
@@ -59,8 +63,8 @@ export declare const actionGroup: {
|
|
|
59
63
|
outline: boolean;
|
|
60
64
|
clip: boolean;
|
|
61
65
|
};
|
|
62
|
-
editingFrame:
|
|
63
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
66
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
67
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
64
68
|
editingTextElement: ExcalidrawTextElement | null;
|
|
65
69
|
activeTool: {
|
|
66
70
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -96,6 +100,7 @@ export declare const actionGroup: {
|
|
|
96
100
|
viewBackgroundColor: string;
|
|
97
101
|
scrollX: number;
|
|
98
102
|
scrollY: number;
|
|
103
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
99
104
|
cursorButton: "up" | "down";
|
|
100
105
|
scrolledOutside: boolean;
|
|
101
106
|
name: string | null;
|
|
@@ -160,8 +165,6 @@ export declare const actionGroup: {
|
|
|
160
165
|
y: number;
|
|
161
166
|
} | null;
|
|
162
167
|
objectsSnapModeEnabled: boolean;
|
|
163
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
164
|
-
followedBy: Set<import("../types").SocketId>;
|
|
165
168
|
isCropping: boolean;
|
|
166
169
|
croppingElementId: ExcalidrawElement["id"] | null;
|
|
167
170
|
searchMatches: Readonly<{
|
|
@@ -173,11 +176,16 @@ export declare const actionGroup: {
|
|
|
173
176
|
[groupId: string]: true;
|
|
174
177
|
};
|
|
175
178
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
179
|
+
colorTopPicks: {
|
|
180
|
+
elementStroke: readonly string[] | null;
|
|
181
|
+
elementBackground: readonly string[] | null;
|
|
182
|
+
bucketFill: readonly string[] | null;
|
|
183
|
+
};
|
|
176
184
|
};
|
|
177
185
|
elements: OrderedExcalidrawElement[];
|
|
178
186
|
captureUpdate: "IMMEDIATELY";
|
|
179
187
|
};
|
|
180
|
-
predicate: (elements: readonly ExcalidrawElement[], appState: AppState, _: import("../types").ExcalidrawProps, app: AppClassProperties) => boolean;
|
|
188
|
+
predicate: (elements: readonly ExcalidrawElement[], appState: import("../types").AppState, _: import("../types").ExcalidrawProps, app: AppClassProperties) => boolean;
|
|
181
189
|
keyTest: (event: import("react").KeyboardEvent<Element> | KeyboardEvent) => boolean;
|
|
182
190
|
PanelComponent: ({ elements, appState, updateData, app }: import("./types").PanelComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
183
191
|
} & {
|
|
@@ -186,19 +194,19 @@ export declare const actionGroup: {
|
|
|
186
194
|
export declare const actionUngroup: {
|
|
187
195
|
name: "ungroup";
|
|
188
196
|
label: string;
|
|
189
|
-
icon: (appState:
|
|
197
|
+
icon: (appState: UIAppState) => import("react/jsx-runtime").JSX.Element;
|
|
190
198
|
trackEvent: {
|
|
191
199
|
category: "element";
|
|
192
200
|
};
|
|
193
|
-
perform: (elements: readonly OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
|
|
194
|
-
appState: Readonly<AppState>;
|
|
201
|
+
perform: (elements: readonly OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: unknown, app: AppClassProperties) => {
|
|
202
|
+
appState: Readonly<import("../types").AppState>;
|
|
195
203
|
elements: readonly OrderedExcalidrawElement[];
|
|
196
204
|
captureUpdate: "EVENTUALLY";
|
|
197
205
|
} | {
|
|
198
206
|
appState: {
|
|
199
|
-
editingGroupId: AppState["editingGroupId"];
|
|
200
|
-
selectedElementIds: AppState["selectedElementIds"];
|
|
201
|
-
selectedGroupIds: AppState["selectedGroupIds"];
|
|
207
|
+
editingGroupId: import("../types").AppState["editingGroupId"];
|
|
208
|
+
selectedElementIds: import("../types").AppState["selectedElementIds"];
|
|
209
|
+
selectedGroupIds: import("../types").AppState["selectedGroupIds"];
|
|
202
210
|
contextMenu: {
|
|
203
211
|
items: import("../components/ContextMenu").ContextMenuItems;
|
|
204
212
|
top: number;
|
|
@@ -235,6 +243,10 @@ export declare const actionUngroup: {
|
|
|
235
243
|
element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
236
244
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
237
245
|
} | null;
|
|
246
|
+
hoveredArrowTextAnchor: {
|
|
247
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
248
|
+
anchor: "start" | "end" | "label";
|
|
249
|
+
} | null;
|
|
238
250
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
239
251
|
frameRendering: {
|
|
240
252
|
enabled: boolean;
|
|
@@ -242,8 +254,8 @@ export declare const actionUngroup: {
|
|
|
242
254
|
outline: boolean;
|
|
243
255
|
clip: boolean;
|
|
244
256
|
};
|
|
245
|
-
editingFrame:
|
|
246
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
257
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
258
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
247
259
|
editingTextElement: ExcalidrawTextElement | null;
|
|
248
260
|
activeTool: {
|
|
249
261
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -279,6 +291,7 @@ export declare const actionUngroup: {
|
|
|
279
291
|
viewBackgroundColor: string;
|
|
280
292
|
scrollX: number;
|
|
281
293
|
scrollY: number;
|
|
294
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
282
295
|
cursorButton: "up" | "down";
|
|
283
296
|
scrolledOutside: boolean;
|
|
284
297
|
name: string | null;
|
|
@@ -343,8 +356,6 @@ export declare const actionUngroup: {
|
|
|
343
356
|
y: number;
|
|
344
357
|
} | null;
|
|
345
358
|
objectsSnapModeEnabled: boolean;
|
|
346
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
347
|
-
followedBy: Set<import("../types").SocketId>;
|
|
348
359
|
isCropping: boolean;
|
|
349
360
|
croppingElementId: ExcalidrawElement["id"] | null;
|
|
350
361
|
searchMatches: Readonly<{
|
|
@@ -356,12 +367,17 @@ export declare const actionUngroup: {
|
|
|
356
367
|
[groupId: string]: true;
|
|
357
368
|
};
|
|
358
369
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
370
|
+
colorTopPicks: {
|
|
371
|
+
elementStroke: readonly string[] | null;
|
|
372
|
+
elementBackground: readonly string[] | null;
|
|
373
|
+
bucketFill: readonly string[] | null;
|
|
374
|
+
};
|
|
359
375
|
};
|
|
360
376
|
elements: OrderedExcalidrawElement[];
|
|
361
377
|
captureUpdate: "IMMEDIATELY";
|
|
362
378
|
};
|
|
363
379
|
keyTest: (event: import("react").KeyboardEvent<Element> | KeyboardEvent) => boolean;
|
|
364
|
-
predicate: (elements: readonly ExcalidrawElement[], appState: AppState) => boolean;
|
|
380
|
+
predicate: (elements: readonly ExcalidrawElement[], appState: import("../types").AppState) => boolean;
|
|
365
381
|
PanelComponent: ({ elements, appState, updateData }: import("./types").PanelComponentProps) => import("react/jsx-runtime").JSX.Element;
|
|
366
382
|
} & {
|
|
367
383
|
keyTest?: ((event: import("react").KeyboardEvent<Element> | KeyboardEvent) => boolean) | undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ExcalidrawLinearElement } from "@excalidraw/element/types";
|
|
2
2
|
export declare const actionToggleLinearEditor: {
|
|
3
3
|
name: "toggleLinearEditor";
|
|
4
|
-
label: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: Readonly<import("../types").
|
|
4
|
+
label: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: Readonly<import("../types").UIAppState>, app: import("../types").AppClassProperties) => "labels.lineEditor.editArrow" | "labels.lineEditor.edit";
|
|
5
5
|
keywords: string[];
|
|
6
6
|
trackEvent: {
|
|
7
7
|
category: "element";
|
|
@@ -26,6 +26,7 @@ export declare const actionToggleLinearEditor: {
|
|
|
26
26
|
};
|
|
27
27
|
arrowStartIsInside: boolean;
|
|
28
28
|
altFocusPoint: Readonly<import("@excalidraw/math").GlobalPoint> | null;
|
|
29
|
+
arrowOtherEndpointInitialBinding: import("@excalidraw/element/types").FixedPointBinding | null;
|
|
29
30
|
}>;
|
|
30
31
|
isDragging: boolean;
|
|
31
32
|
lastUncommittedPoint: import("@excalidraw/math").LocalPoint | null;
|
|
@@ -78,6 +79,10 @@ export declare const actionToggleLinearEditor: {
|
|
|
78
79
|
element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
79
80
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
80
81
|
} | null;
|
|
82
|
+
hoveredArrowTextAnchor: {
|
|
83
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
84
|
+
anchor: "start" | "end" | "label";
|
|
85
|
+
} | null;
|
|
81
86
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
82
87
|
frameRendering: {
|
|
83
88
|
enabled: boolean;
|
|
@@ -85,8 +90,8 @@ export declare const actionToggleLinearEditor: {
|
|
|
85
90
|
outline: boolean;
|
|
86
91
|
clip: boolean;
|
|
87
92
|
};
|
|
88
|
-
editingFrame:
|
|
89
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
93
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
94
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
90
95
|
editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
|
|
91
96
|
activeTool: {
|
|
92
97
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -122,6 +127,7 @@ export declare const actionToggleLinearEditor: {
|
|
|
122
127
|
viewBackgroundColor: string;
|
|
123
128
|
scrollX: number;
|
|
124
129
|
scrollY: number;
|
|
130
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
125
131
|
cursorButton: "up" | "down";
|
|
126
132
|
scrolledOutside: boolean;
|
|
127
133
|
name: string | null;
|
|
@@ -192,8 +198,6 @@ export declare const actionToggleLinearEditor: {
|
|
|
192
198
|
y: number;
|
|
193
199
|
} | null;
|
|
194
200
|
objectsSnapModeEnabled: boolean;
|
|
195
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
196
|
-
followedBy: Set<import("../types").SocketId>;
|
|
197
201
|
isCropping: boolean;
|
|
198
202
|
croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
|
|
199
203
|
searchMatches: Readonly<{
|
|
@@ -205,6 +209,11 @@ export declare const actionToggleLinearEditor: {
|
|
|
205
209
|
[groupId: string]: true;
|
|
206
210
|
};
|
|
207
211
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
212
|
+
colorTopPicks: {
|
|
213
|
+
elementStroke: readonly string[] | null;
|
|
214
|
+
elementBackground: readonly string[] | null;
|
|
215
|
+
bucketFill: readonly string[] | null;
|
|
216
|
+
};
|
|
208
217
|
};
|
|
209
218
|
captureUpdate: "IMMEDIATELY";
|
|
210
219
|
};
|
|
@@ -216,7 +225,7 @@ export declare const actionTogglePolygon: {
|
|
|
216
225
|
name: "togglePolygon";
|
|
217
226
|
icon: import("react/jsx-runtime").JSX.Element;
|
|
218
227
|
keywords: string[];
|
|
219
|
-
label: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: Readonly<import("../types").
|
|
228
|
+
label: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: Readonly<import("../types").UIAppState>, app: import("../types").AppClassProperties) => "labels.polygon.breakPolygon" | "labels.polygon.convertToPolygon";
|
|
220
229
|
trackEvent: {
|
|
221
230
|
category: "element";
|
|
222
231
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const actionLink: {
|
|
2
2
|
name: "hyperlink";
|
|
3
|
-
label: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: Readonly<import("../types").
|
|
3
|
+
label: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: Readonly<import("../types").UIAppState>) => "labels.link.editEmbed" | "labels.link.edit" | "labels.link.create";
|
|
4
4
|
icon: import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>) => false | {
|
|
6
6
|
elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[];
|
|
@@ -43,6 +43,10 @@ export declare const actionLink: {
|
|
|
43
43
|
element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
44
44
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
45
45
|
} | null;
|
|
46
|
+
hoveredArrowTextAnchor: {
|
|
47
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
48
|
+
anchor: "start" | "end" | "label";
|
|
49
|
+
} | null;
|
|
46
50
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
47
51
|
frameRendering: {
|
|
48
52
|
enabled: boolean;
|
|
@@ -50,8 +54,8 @@ export declare const actionLink: {
|
|
|
50
54
|
outline: boolean;
|
|
51
55
|
clip: boolean;
|
|
52
56
|
};
|
|
53
|
-
editingFrame:
|
|
54
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
57
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
58
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
55
59
|
editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
|
|
56
60
|
activeTool: {
|
|
57
61
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -87,6 +91,7 @@ export declare const actionLink: {
|
|
|
87
91
|
viewBackgroundColor: string;
|
|
88
92
|
scrollX: number;
|
|
89
93
|
scrollY: number;
|
|
94
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
90
95
|
cursorButton: "up" | "down";
|
|
91
96
|
scrolledOutside: boolean;
|
|
92
97
|
name: string | null;
|
|
@@ -156,8 +161,6 @@ export declare const actionLink: {
|
|
|
156
161
|
y: number;
|
|
157
162
|
} | null;
|
|
158
163
|
objectsSnapModeEnabled: boolean;
|
|
159
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
160
|
-
followedBy: Set<import("../types").SocketId>;
|
|
161
164
|
isCropping: boolean;
|
|
162
165
|
croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
|
|
163
166
|
searchMatches: Readonly<{
|
|
@@ -169,6 +172,11 @@ export declare const actionLink: {
|
|
|
169
172
|
[groupId: string]: true;
|
|
170
173
|
};
|
|
171
174
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
175
|
+
colorTopPicks: {
|
|
176
|
+
elementStroke: readonly string[] | null;
|
|
177
|
+
elementBackground: readonly string[] | null;
|
|
178
|
+
bucketFill: readonly string[] | null;
|
|
179
|
+
};
|
|
172
180
|
};
|
|
173
181
|
captureUpdate: "IMMEDIATELY";
|
|
174
182
|
};
|
|
@@ -50,6 +50,10 @@ export declare const actionShortcuts: {
|
|
|
50
50
|
element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
51
51
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
52
52
|
} | null;
|
|
53
|
+
hoveredArrowTextAnchor: {
|
|
54
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
55
|
+
anchor: "start" | "end" | "label";
|
|
56
|
+
} | null;
|
|
53
57
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
54
58
|
frameRendering: {
|
|
55
59
|
enabled: boolean;
|
|
@@ -57,8 +61,8 @@ export declare const actionShortcuts: {
|
|
|
57
61
|
outline: boolean;
|
|
58
62
|
clip: boolean;
|
|
59
63
|
};
|
|
60
|
-
editingFrame:
|
|
61
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
64
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
65
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
62
66
|
editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
|
|
63
67
|
activeTool: {
|
|
64
68
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -94,6 +98,7 @@ export declare const actionShortcuts: {
|
|
|
94
98
|
viewBackgroundColor: string;
|
|
95
99
|
scrollX: number;
|
|
96
100
|
scrollY: number;
|
|
101
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
97
102
|
cursorButton: "up" | "down";
|
|
98
103
|
scrolledOutside: boolean;
|
|
99
104
|
name: string | null;
|
|
@@ -151,8 +156,6 @@ export declare const actionShortcuts: {
|
|
|
151
156
|
y: number;
|
|
152
157
|
} | null;
|
|
153
158
|
objectsSnapModeEnabled: boolean;
|
|
154
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
155
|
-
followedBy: Set<import("../types").SocketId>;
|
|
156
159
|
isCropping: boolean;
|
|
157
160
|
croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
|
|
158
161
|
searchMatches: Readonly<{
|
|
@@ -164,6 +167,11 @@ export declare const actionShortcuts: {
|
|
|
164
167
|
[groupId: string]: true;
|
|
165
168
|
};
|
|
166
169
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
170
|
+
colorTopPicks: {
|
|
171
|
+
elementStroke: readonly string[] | null;
|
|
172
|
+
elementBackground: readonly string[] | null;
|
|
173
|
+
bucketFill: readonly string[] | null;
|
|
174
|
+
};
|
|
167
175
|
};
|
|
168
176
|
captureUpdate: "EVENTUALLY";
|
|
169
177
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { type StrokeWidthKey } from "@excalidraw/common";
|
|
2
2
|
import { LinearElementEditor } from "@excalidraw/element/linearElementEditor";
|
|
3
|
-
import type { Arrowhead, ExcalidrawBindableElement, ExcalidrawElement, ExcalidrawLinearElement, ExcalidrawTextElement, FontFamilyValues, StrokeVariability, TextAlign } from "@excalidraw/element/types";
|
|
3
|
+
import type { Arrowhead, ExcalidrawBindableElement, ExcalidrawElement, ExcalidrawLinearElement, ExcalidrawTextElement, FontFamilyValues, StrokeVariability, NonDeleted, NonDeletedExcalidrawElement, TextAlign } from "@excalidraw/element/types";
|
|
4
4
|
import type { AppClassProperties, AppState, Primitive } from "../types";
|
|
5
|
-
export declare const changeProperty: (elements: readonly ExcalidrawElement[], appState: AppState, callback: (element:
|
|
5
|
+
export declare const changeProperty: (elements: readonly ExcalidrawElement[], appState: AppState, callback: (element: NonDeletedExcalidrawElement) => ExcalidrawElement, includeBoundText?: boolean) => ExcalidrawElement[];
|
|
6
6
|
export declare const getFormValue: <T extends Primitive>(elements: readonly ExcalidrawElement[], app: AppClassProperties,
|
|
7
7
|
/**
|
|
8
8
|
* input value (usually the element attribute value,
|
|
@@ -15,6 +15,9 @@ export declare const actionChangeStrokeColor: import("./types").Action<Pick<AppS
|
|
|
15
15
|
export declare const actionChangeBackgroundColor: import("./types").Action<Pick<AppState, "viewBackgroundColor" | "currentItemBackgroundColor">> & {
|
|
16
16
|
keyTest?: ((event: React.KeyboardEvent | KeyboardEvent, appState: AppState, elements: readonly ExcalidrawElement[], app: AppClassProperties) => boolean) | undefined;
|
|
17
17
|
};
|
|
18
|
+
export declare const actionChangeBucketFillBackgroundColor: import("./types").Action<Pick<AppState, "currentItemBackgroundColor">> & {
|
|
19
|
+
keyTest?: ((event: React.KeyboardEvent | KeyboardEvent, appState: AppState, elements: readonly ExcalidrawElement[], app: AppClassProperties) => boolean) | undefined;
|
|
20
|
+
};
|
|
18
21
|
export declare const actionChangeFillStyle: import("./types").Action<import("@excalidraw/element/types").FillStyle> & {
|
|
19
22
|
keyTest?: ((event: React.KeyboardEvent | KeyboardEvent, appState: AppState, elements: readonly ExcalidrawElement[], app: AppClassProperties) => boolean) | undefined;
|
|
20
23
|
};
|
|
@@ -66,30 +69,34 @@ export declare const actionDecreaseFontSize: {
|
|
|
66
69
|
};
|
|
67
70
|
errorMessage: React.ReactNode;
|
|
68
71
|
activeEmbeddable: {
|
|
69
|
-
element:
|
|
72
|
+
element: NonDeletedExcalidrawElement;
|
|
70
73
|
state: "hover" | "active";
|
|
71
74
|
} | null;
|
|
72
|
-
newElement:
|
|
73
|
-
resizingElement:
|
|
74
|
-
multiElement:
|
|
75
|
-
selectionElement:
|
|
75
|
+
newElement: NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
76
|
+
resizingElement: NonDeletedExcalidrawElement | null;
|
|
77
|
+
multiElement: NonDeleted<ExcalidrawLinearElement> | null;
|
|
78
|
+
selectionElement: NonDeletedExcalidrawElement | null;
|
|
76
79
|
isBindingEnabled: boolean;
|
|
77
80
|
boxSelectionMode: import("../types").BoxSelectionMode;
|
|
78
81
|
bindingPreference: "enabled" | "disabled";
|
|
79
82
|
isMidpointSnappingEnabled: boolean;
|
|
80
83
|
suggestedBinding: {
|
|
81
|
-
element:
|
|
84
|
+
element: NonDeleted<ExcalidrawBindableElement>;
|
|
82
85
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
83
86
|
} | null;
|
|
84
|
-
|
|
87
|
+
hoveredArrowTextAnchor: {
|
|
88
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
89
|
+
anchor: "start" | "end" | "label";
|
|
90
|
+
} | null;
|
|
91
|
+
frameToHighlight: NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
85
92
|
frameRendering: {
|
|
86
93
|
enabled: boolean;
|
|
87
94
|
name: boolean;
|
|
88
95
|
outline: boolean;
|
|
89
96
|
clip: boolean;
|
|
90
97
|
};
|
|
91
|
-
editingFrame:
|
|
92
|
-
elementsToHighlight:
|
|
98
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
99
|
+
elementsToHighlight: readonly NonDeletedExcalidrawElement[] | null;
|
|
93
100
|
editingTextElement: ExcalidrawTextElement | null;
|
|
94
101
|
activeTool: {
|
|
95
102
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -124,6 +131,7 @@ export declare const actionDecreaseFontSize: {
|
|
|
124
131
|
viewBackgroundColor: string;
|
|
125
132
|
scrollX: number;
|
|
126
133
|
scrollY: number;
|
|
134
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
127
135
|
cursorButton: "up" | "down";
|
|
128
136
|
scrolledOutside: boolean;
|
|
129
137
|
name: string | null;
|
|
@@ -195,8 +203,6 @@ export declare const actionDecreaseFontSize: {
|
|
|
195
203
|
y: number;
|
|
196
204
|
} | null;
|
|
197
205
|
objectsSnapModeEnabled: boolean;
|
|
198
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
199
|
-
followedBy: Set<import("../types").SocketId>;
|
|
200
206
|
isCropping: boolean;
|
|
201
207
|
croppingElementId: ExcalidrawElement["id"] | null;
|
|
202
208
|
searchMatches: Readonly<{
|
|
@@ -208,6 +214,11 @@ export declare const actionDecreaseFontSize: {
|
|
|
208
214
|
[groupId: string]: true;
|
|
209
215
|
};
|
|
210
216
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
217
|
+
colorTopPicks: {
|
|
218
|
+
elementStroke: readonly string[] | null;
|
|
219
|
+
elementBackground: readonly string[] | null;
|
|
220
|
+
bucketFill: readonly string[] | null;
|
|
221
|
+
};
|
|
211
222
|
};
|
|
212
223
|
captureUpdate: "IMMEDIATELY";
|
|
213
224
|
};
|
|
@@ -245,30 +256,34 @@ export declare const actionIncreaseFontSize: {
|
|
|
245
256
|
};
|
|
246
257
|
errorMessage: React.ReactNode;
|
|
247
258
|
activeEmbeddable: {
|
|
248
|
-
element:
|
|
259
|
+
element: NonDeletedExcalidrawElement;
|
|
249
260
|
state: "hover" | "active";
|
|
250
261
|
} | null;
|
|
251
|
-
newElement:
|
|
252
|
-
resizingElement:
|
|
253
|
-
multiElement:
|
|
254
|
-
selectionElement:
|
|
262
|
+
newElement: NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
263
|
+
resizingElement: NonDeletedExcalidrawElement | null;
|
|
264
|
+
multiElement: NonDeleted<ExcalidrawLinearElement> | null;
|
|
265
|
+
selectionElement: NonDeletedExcalidrawElement | null;
|
|
255
266
|
isBindingEnabled: boolean;
|
|
256
267
|
boxSelectionMode: import("../types").BoxSelectionMode;
|
|
257
268
|
bindingPreference: "enabled" | "disabled";
|
|
258
269
|
isMidpointSnappingEnabled: boolean;
|
|
259
270
|
suggestedBinding: {
|
|
260
|
-
element:
|
|
271
|
+
element: NonDeleted<ExcalidrawBindableElement>;
|
|
261
272
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
262
273
|
} | null;
|
|
263
|
-
|
|
274
|
+
hoveredArrowTextAnchor: {
|
|
275
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
276
|
+
anchor: "start" | "end" | "label";
|
|
277
|
+
} | null;
|
|
278
|
+
frameToHighlight: NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
264
279
|
frameRendering: {
|
|
265
280
|
enabled: boolean;
|
|
266
281
|
name: boolean;
|
|
267
282
|
outline: boolean;
|
|
268
283
|
clip: boolean;
|
|
269
284
|
};
|
|
270
|
-
editingFrame:
|
|
271
|
-
elementsToHighlight:
|
|
285
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
286
|
+
elementsToHighlight: readonly NonDeletedExcalidrawElement[] | null;
|
|
272
287
|
editingTextElement: ExcalidrawTextElement | null;
|
|
273
288
|
activeTool: {
|
|
274
289
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -303,6 +318,7 @@ export declare const actionIncreaseFontSize: {
|
|
|
303
318
|
viewBackgroundColor: string;
|
|
304
319
|
scrollX: number;
|
|
305
320
|
scrollY: number;
|
|
321
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
306
322
|
cursorButton: "up" | "down";
|
|
307
323
|
scrolledOutside: boolean;
|
|
308
324
|
name: string | null;
|
|
@@ -374,8 +390,6 @@ export declare const actionIncreaseFontSize: {
|
|
|
374
390
|
y: number;
|
|
375
391
|
} | null;
|
|
376
392
|
objectsSnapModeEnabled: boolean;
|
|
377
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
378
|
-
followedBy: Set<import("../types").SocketId>;
|
|
379
393
|
isCropping: boolean;
|
|
380
394
|
croppingElementId: ExcalidrawElement["id"] | null;
|
|
381
395
|
searchMatches: Readonly<{
|
|
@@ -387,6 +401,11 @@ export declare const actionIncreaseFontSize: {
|
|
|
387
401
|
[groupId: string]: true;
|
|
388
402
|
};
|
|
389
403
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
404
|
+
colorTopPicks: {
|
|
405
|
+
elementStroke: readonly string[] | null;
|
|
406
|
+
elementBackground: readonly string[] | null;
|
|
407
|
+
bucketFill: readonly string[] | null;
|
|
408
|
+
};
|
|
390
409
|
};
|
|
391
410
|
captureUpdate: "IMMEDIATELY";
|
|
392
411
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { LinearElementEditor } from "@excalidraw/element/linearElementEditor";
|
|
2
|
-
import type { ExcalidrawElement } from "@excalidraw/element/types";
|
|
2
|
+
import type { ExcalidrawElement, ExcalidrawLinearElement, NonDeleted } from "@excalidraw/element/types";
|
|
3
3
|
export declare const actionSelectAll: {
|
|
4
4
|
name: "selectAll";
|
|
5
5
|
label: string;
|
|
@@ -38,27 +38,31 @@ export declare const actionSelectAll: {
|
|
|
38
38
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
39
39
|
state: "hover" | "active";
|
|
40
40
|
} | null;
|
|
41
|
-
newElement:
|
|
41
|
+
newElement: NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
42
42
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
43
|
-
multiElement:
|
|
43
|
+
multiElement: NonDeleted<ExcalidrawLinearElement> | null;
|
|
44
44
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
45
45
|
isBindingEnabled: boolean;
|
|
46
46
|
boxSelectionMode: import("../types").BoxSelectionMode;
|
|
47
47
|
bindingPreference: "enabled" | "disabled";
|
|
48
48
|
isMidpointSnappingEnabled: boolean;
|
|
49
49
|
suggestedBinding: {
|
|
50
|
-
element:
|
|
50
|
+
element: NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
51
51
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
52
52
|
} | null;
|
|
53
|
-
|
|
53
|
+
hoveredArrowTextAnchor: {
|
|
54
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
55
|
+
anchor: "start" | "end" | "label";
|
|
56
|
+
} | null;
|
|
57
|
+
frameToHighlight: NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
54
58
|
frameRendering: {
|
|
55
59
|
enabled: boolean;
|
|
56
60
|
name: boolean;
|
|
57
61
|
outline: boolean;
|
|
58
62
|
clip: boolean;
|
|
59
63
|
};
|
|
60
|
-
editingFrame:
|
|
61
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
64
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
65
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
62
66
|
editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
|
|
63
67
|
activeTool: {
|
|
64
68
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -94,6 +98,7 @@ export declare const actionSelectAll: {
|
|
|
94
98
|
viewBackgroundColor: string;
|
|
95
99
|
scrollX: number;
|
|
96
100
|
scrollY: number;
|
|
101
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
97
102
|
cursorButton: "up" | "down";
|
|
98
103
|
scrolledOutside: boolean;
|
|
99
104
|
name: string | null;
|
|
@@ -157,8 +162,6 @@ export declare const actionSelectAll: {
|
|
|
157
162
|
y: number;
|
|
158
163
|
} | null;
|
|
159
164
|
objectsSnapModeEnabled: boolean;
|
|
160
|
-
userToFollow: import("../types").UserToFollow | null;
|
|
161
|
-
followedBy: Set<import("../types").SocketId>;
|
|
162
165
|
isCropping: boolean;
|
|
163
166
|
croppingElementId: ExcalidrawElement["id"] | null;
|
|
164
167
|
searchMatches: Readonly<{
|
|
@@ -170,6 +173,11 @@ export declare const actionSelectAll: {
|
|
|
170
173
|
[groupId: string]: true;
|
|
171
174
|
};
|
|
172
175
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
176
|
+
colorTopPicks: {
|
|
177
|
+
elementStroke: readonly string[] | null;
|
|
178
|
+
elementBackground: readonly string[] | null;
|
|
179
|
+
bucketFill: readonly string[] | null;
|
|
180
|
+
};
|
|
173
181
|
};
|
|
174
182
|
captureUpdate: "IMMEDIATELY";
|
|
175
183
|
};
|
|
@@ -48,6 +48,10 @@ export declare const actionCopyStyles: {
|
|
|
48
48
|
element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
|
|
49
49
|
midPoint?: import("@excalidraw/math").GlobalPoint;
|
|
50
50
|
} | null;
|
|
51
|
+
hoveredArrowTextAnchor: {
|
|
52
|
+
elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
|
|
53
|
+
anchor: "start" | "end" | "label";
|
|
54
|
+
} | null;
|
|
51
55
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
52
56
|
frameRendering: {
|
|
53
57
|
enabled: boolean;
|
|
@@ -55,8 +59,8 @@ export declare const actionCopyStyles: {
|
|
|
55
59
|
outline: boolean;
|
|
56
60
|
clip: boolean;
|
|
57
61
|
};
|
|
58
|
-
editingFrame:
|
|
59
|
-
elementsToHighlight: import("@excalidraw/element/types").
|
|
62
|
+
editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
|
|
63
|
+
elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
|
|
60
64
|
editingTextElement: ExcalidrawTextElement | null;
|
|
61
65
|
activeTool: {
|
|
62
66
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
@@ -92,6 +96,7 @@ export declare const actionCopyStyles: {
|
|
|
92
96
|
viewBackgroundColor: string;
|
|
93
97
|
scrollX: number;
|
|
94
98
|
scrollY: number;
|
|
99
|
+
scrollConstraints: import("../types").ScrollConstraints | null;
|
|
95
100
|
cursorButton: "up" | "down";
|
|
96
101
|
scrolledOutside: boolean;
|
|
97
102
|
name: string | null;
|
|
@@ -158,8 +163,6 @@ export declare const actionCopyStyles: {
|
|
|
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: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
|
|
165
168
|
searchMatches: Readonly<{
|
|
@@ -171,6 +174,11 @@ export declare const actionCopyStyles: {
|
|
|
171
174
|
[groupId: string]: true;
|
|
172
175
|
};
|
|
173
176
|
bindMode: import("@excalidraw/element/types").BindMode;
|
|
177
|
+
colorTopPicks: {
|
|
178
|
+
elementStroke: readonly string[] | null;
|
|
179
|
+
elementBackground: readonly string[] | null;
|
|
180
|
+
bucketFill: readonly string[] | null;
|
|
181
|
+
};
|
|
174
182
|
};
|
|
175
183
|
captureUpdate: "EVENTUALLY";
|
|
176
184
|
};
|