@excalidraw/excalidraw 0.18.0-a5d6939 → 0.18.0-a8acc82
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/chunk-6MX365WZ.js +5666 -0
- package/dist/dev/chunk-6MX365WZ.js.map +7 -0
- package/dist/dev/chunk-CP5DND7P.js +7 -0
- package/dist/dev/chunk-CP5DND7P.js.map +7 -0
- package/dist/dev/{chunk-X3RYHLJU.js → chunk-QF5FRM6O.js} +15 -5
- package/dist/dev/chunk-QF5FRM6O.js.map +7 -0
- package/dist/dev/data/{image-JN3Y4CVN.js → image-GQCFJKGM.js} +3 -3
- package/dist/dev/index.css +230 -23
- package/dist/dev/index.css.map +3 -3
- package/dist/dev/index.js +10262 -10068
- package/dist/dev/index.js.map +4 -4
- package/dist/dev/locales/{en-CKWC2GMK.js → en-SMAPCEOQ.js} +2 -2
- package/dist/dev/subset-shared.chunk.js +1 -1
- package/dist/dev/subset-worker.chunk.js +1 -1
- package/dist/prod/chunk-A66AFZZU.js +7 -0
- package/dist/prod/chunk-I4UNSFV6.js +12 -0
- package/dist/prod/chunk-R2M7VUMD.js +4 -0
- package/dist/prod/data/image-JWK7QZ22.js +1 -0
- package/dist/prod/index.css +1 -1
- package/dist/prod/index.js +25 -17
- package/dist/prod/locales/{en-SBO6ZHT2.js → en-TYY6KWIJ.js} +1 -1
- package/dist/prod/subset-shared.chunk.js +1 -1
- package/dist/prod/subset-worker.chunk.js +1 -1
- package/dist/types/common/src/constants.d.ts +40 -7
- package/dist/types/{excalidraw → common/src}/emitter.d.ts +1 -1
- package/dist/types/common/src/font-metadata.d.ts +4 -2
- package/dist/types/common/src/index.d.ts +1 -0
- package/dist/types/common/src/utility-types.d.ts +5 -0
- package/dist/types/common/src/utils.d.ts +18 -4
- package/dist/types/{excalidraw/scene → element/src}/Scene.d.ts +16 -15
- package/dist/types/element/src/align.d.ts +4 -3
- package/dist/types/element/src/binding.d.ts +25 -14
- package/dist/types/element/src/bounds.d.ts +14 -6
- package/dist/types/element/src/collision.d.ts +18 -12
- package/dist/types/element/src/cropElement.d.ts +1 -1
- package/dist/types/{excalidraw/change.d.ts → element/src/delta.d.ts} +77 -40
- package/dist/types/element/src/distance.d.ts +2 -2
- package/dist/types/element/src/distribute.d.ts +2 -1
- package/dist/types/element/src/dragElements.d.ts +3 -2
- package/dist/types/element/src/elbowArrow.d.ts +1 -1
- package/dist/types/element/src/flowchart.d.ts +3 -2
- package/dist/types/element/src/fractionalIndex.d.ts +9 -3
- package/dist/types/element/src/frame.d.ts +4 -3
- package/dist/types/element/src/groups.d.ts +1 -0
- package/dist/types/element/src/index.d.ts +44 -2
- package/dist/types/element/src/linearElementEditor.d.ts +23 -36
- package/dist/types/element/src/mutateElement.d.ts +11 -3
- package/dist/types/element/src/newElement.d.ts +4 -3
- package/dist/types/element/src/positionElementsOnGrid.d.ts +2 -0
- package/dist/types/element/src/renderElement.d.ts +4 -1
- package/dist/types/element/src/resizeElements.d.ts +5 -4
- package/dist/types/element/src/selection.d.ts +0 -5
- package/dist/types/element/src/shape.d.ts +42 -0
- package/dist/types/element/src/sizeHelpers.d.ts +2 -2
- package/dist/types/element/src/store.d.ts +237 -0
- package/dist/types/element/src/textElement.d.ts +4 -3
- package/dist/types/element/src/typeChecks.d.ts +19 -1
- package/dist/types/element/src/types.d.ts +15 -2
- package/dist/types/element/src/utils.d.ts +16 -6
- package/dist/types/element/src/zindex.d.ts +1 -1
- package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +45 -54
- package/dist/types/excalidraw/actions/actionBoundText.d.ts +30 -36
- package/dist/types/excalidraw/actions/actionCanvas.d.ts +204 -242
- package/dist/types/excalidraw/actions/actionClipboard.d.ts +90 -106
- package/dist/types/excalidraw/actions/actionCropEditor.d.ts +15 -18
- package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +45 -53
- package/dist/types/excalidraw/actions/actionElementLink.d.ts +14 -17
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +45 -52
- package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +15 -18
- package/dist/types/excalidraw/actions/actionExport.d.ts +145 -172
- package/dist/types/excalidraw/actions/actionFinalize.d.ts +77 -42
- package/dist/types/excalidraw/actions/actionFrame.d.ts +107 -119
- package/dist/types/excalidraw/actions/actionGroup.d.ts +30 -36
- package/dist/types/excalidraw/actions/actionHistory.d.ts +1 -2
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +541 -20
- package/dist/types/excalidraw/actions/actionLink.d.ts +14 -17
- package/dist/types/excalidraw/actions/actionMenu.d.ts +42 -51
- package/dist/types/excalidraw/actions/actionNavigate.d.ts +29 -35
- package/dist/types/excalidraw/actions/actionProperties.d.ts +246 -274
- package/dist/types/excalidraw/actions/actionSelectAll.d.ts +15 -18
- package/dist/types/excalidraw/actions/actionStyles.d.ts +15 -18
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +15 -18
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +15 -18
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +14 -190
- package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +19 -0
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +15 -18
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +15 -18
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +15 -18
- package/dist/types/excalidraw/actions/index.d.ts +1 -1
- package/dist/types/excalidraw/actions/types.d.ts +4 -3
- package/dist/types/excalidraw/appState.d.ts +20 -10
- package/dist/types/excalidraw/clipboard.d.ts +64 -1
- package/dist/types/excalidraw/components/Actions.d.ts +8 -5
- package/dist/types/excalidraw/components/App.d.ts +30 -30
- package/dist/types/excalidraw/components/ButtonIcon.d.ts +1 -0
- package/dist/types/excalidraw/components/ColorPicker/ColorInput.d.ts +2 -1
- package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +7 -2
- package/dist/types/excalidraw/components/ColorPicker/CustomColorList.d.ts +1 -1
- package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +2 -3
- package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +2 -3
- package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +2 -2
- package/dist/types/excalidraw/components/ColorPicker/TopPicks.d.ts +1 -1
- package/dist/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +1 -1
- package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +1 -1
- package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +23 -0
- package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +4 -3
- package/dist/types/excalidraw/components/Ellipsify.d.ts +4 -0
- package/dist/types/excalidraw/components/FontPicker/FontPicker.d.ts +2 -1
- package/dist/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +2 -1
- package/dist/types/excalidraw/components/PropertiesPopover.d.ts +1 -0
- package/dist/types/excalidraw/components/{ButtonIconSelect.d.ts → RadioSelection.d.ts} +1 -1
- package/dist/types/excalidraw/components/Range.d.ts +3 -3
- package/dist/types/excalidraw/components/Stats/Angle.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/CanvasGrid.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/Collapsible.d.ts +2 -1
- package/dist/types/excalidraw/components/Stats/Dimension.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/DragInput.d.ts +12 -2
- package/dist/types/excalidraw/components/Stats/FontSize.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/MultiAngle.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/MultiDimension.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/MultiFontSize.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/MultiPosition.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/Position.d.ts +1 -1
- package/dist/types/excalidraw/components/Stats/utils.d.ts +4 -11
- package/dist/types/excalidraw/components/UnlockPopup.d.ts +8 -0
- package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +1 -0
- package/dist/types/excalidraw/components/hyperlink/Hyperlink.d.ts +3 -2
- package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +2 -1
- package/dist/types/excalidraw/components/icons.d.ts +9 -0
- package/dist/types/excalidraw/components/shapes.d.ts +129 -1
- package/dist/types/excalidraw/data/blob.d.ts +3 -7
- package/dist/types/excalidraw/data/reconcile.d.ts +1 -0
- package/dist/types/excalidraw/data/restore.d.ts +6 -1
- package/dist/types/excalidraw/data/transform.d.ts +1 -1
- package/dist/types/excalidraw/data/types.d.ts +4 -1
- package/dist/types/excalidraw/editor-jotai.d.ts +6 -6
- package/dist/types/excalidraw/eraser/index.d.ts +0 -2
- package/dist/types/excalidraw/fonts/Fonts.d.ts +1 -1
- package/dist/types/excalidraw/history.d.ts +30 -22
- package/dist/types/excalidraw/hooks/useEmitter.d.ts +1 -1
- package/dist/types/excalidraw/hooks/useTextEditorFocus.d.ts +14 -0
- package/dist/types/excalidraw/index.d.ts +11 -10
- package/dist/types/excalidraw/lasso/index.d.ts +1 -0
- package/dist/types/excalidraw/lasso/utils.d.ts +2 -1
- package/dist/types/excalidraw/renderer/helpers.d.ts +7 -2
- package/dist/types/excalidraw/renderer/staticScene.d.ts +4 -1
- package/dist/types/excalidraw/scene/Renderer.d.ts +1 -2
- package/dist/types/excalidraw/scene/index.d.ts +2 -2
- package/dist/types/excalidraw/scene/scrollbars.d.ts +2 -3
- package/dist/types/excalidraw/scene/types.d.ts +2 -0
- package/dist/types/excalidraw/snapping.d.ts +2 -2
- package/dist/types/excalidraw/types.d.ts +36 -15
- package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +3 -1
- package/dist/types/math/src/angle.d.ts +2 -0
- package/dist/types/math/src/constants.d.ts +3 -0
- package/dist/types/math/src/curve.d.ts +34 -0
- package/dist/types/math/src/index.d.ts +1 -0
- package/dist/types/math/src/point.d.ts +1 -1
- package/dist/types/math/src/rectangle.d.ts +2 -0
- package/dist/types/math/src/segment.d.ts +1 -0
- package/dist/types/math/src/vector.d.ts +8 -2
- package/dist/types/utils/src/bbox.d.ts +1 -1
- package/dist/types/utils/src/index.d.ts +1 -1
- package/dist/types/utils/src/withinBounds.d.ts +1 -1
- package/history.ts +146 -109
- package/package.json +13 -10
- package/dist/dev/chunk-GBJ7S76A.js +0 -18599
- package/dist/dev/chunk-GBJ7S76A.js.map +0 -7
- package/dist/dev/chunk-GIMGG4AT.js +0 -7
- package/dist/dev/chunk-GIMGG4AT.js.map +0 -7
- package/dist/dev/chunk-X3RYHLJU.js.map +0 -7
- package/dist/prod/chunk-GKI4RZ6C.js +0 -7
- package/dist/prod/chunk-IUH5AXLB.js +0 -12
- package/dist/prod/chunk-TVF64BAY.js +0 -33
- package/dist/prod/data/image-CZ2OEVDB.js +0 -1
- package/dist/types/element/src/Shape.d.ts +0 -17
- package/dist/types/element/src/ShapeCache.d.ts +0 -25
- package/dist/types/element/src/shapes.d.ts +0 -23
- package/dist/types/excalidraw/components/ButtonSelect.d.ts +0 -9
- package/dist/types/excalidraw/store.d.ts +0 -129
- package/dist/types/excalidraw/visualdebug.d.ts +0 -41
- package/dist/types/utils/src/collision.d.ts +0 -8
- /package/dist/dev/data/{image-JN3Y4CVN.js.map → image-GQCFJKGM.js.map} +0 -0
- /package/dist/dev/locales/{en-CKWC2GMK.js.map → en-SMAPCEOQ.js.map} +0 -0
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { LinearElementEditor } from "@excalidraw/element/linearElementEditor";
|
|
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;
|
|
@@ -24,7 +23,7 @@ export declare const actionDeleteSelected: {
|
|
|
24
23
|
errorMessage: import("react").ReactNode;
|
|
25
24
|
activeEmbeddable: {
|
|
26
25
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
27
|
-
state: "
|
|
26
|
+
state: "active" | "hover";
|
|
28
27
|
} | null;
|
|
29
28
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
30
29
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -32,7 +31,7 @@ export declare const actionDeleteSelected: {
|
|
|
32
31
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
33
32
|
isBindingEnabled: boolean;
|
|
34
33
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
35
|
-
suggestedBindings: import("@excalidraw/element
|
|
34
|
+
suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
|
|
36
35
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
37
36
|
frameRendering: {
|
|
38
37
|
enabled: boolean;
|
|
@@ -80,8 +79,8 @@ export declare const actionDeleteSelected: {
|
|
|
80
79
|
zoom: Readonly<{
|
|
81
80
|
value: import("../types").NormalizedZoomValue;
|
|
82
81
|
}>;
|
|
83
|
-
openMenu: "
|
|
84
|
-
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
82
|
+
openMenu: "canvas" | "shape" | null;
|
|
83
|
+
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
85
84
|
openSidebar: {
|
|
86
85
|
name: string;
|
|
87
86
|
tab?: string | undefined;
|
|
@@ -90,7 +89,7 @@ export declare const actionDeleteSelected: {
|
|
|
90
89
|
name: "imageExport" | "help" | "jsonExport";
|
|
91
90
|
} | {
|
|
92
91
|
name: "ttd";
|
|
93
|
-
tab: "text-to-diagram"
|
|
92
|
+
tab: "mermaid" | "text-to-diagram";
|
|
94
93
|
} | {
|
|
95
94
|
name: "commandPalette";
|
|
96
95
|
} | {
|
|
@@ -162,9 +161,7 @@ export declare const actionDeleteSelected: {
|
|
|
162
161
|
shown: true;
|
|
163
162
|
data: import("../charts").Spreadsheet;
|
|
164
163
|
};
|
|
165
|
-
pendingImageElementId: string | null;
|
|
166
164
|
showHyperlinkPopup: false | "editor" | "info";
|
|
167
|
-
selectedLinearElement: LinearElementEditor | null;
|
|
168
165
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
169
166
|
originSnapOffset: {
|
|
170
167
|
x: number;
|
|
@@ -175,22 +172,21 @@ export declare const actionDeleteSelected: {
|
|
|
175
172
|
followedBy: Set<import("../types").SocketId>;
|
|
176
173
|
isCropping: boolean;
|
|
177
174
|
croppingElementId: string | null;
|
|
178
|
-
searchMatches:
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
}[];
|
|
175
|
+
searchMatches: Readonly<{
|
|
176
|
+
focusedId: string | null;
|
|
177
|
+
matches: readonly import("../types").SearchMatch[];
|
|
178
|
+
}> | null;
|
|
179
|
+
activeLockedId: string | null;
|
|
180
|
+
lockedMultiSelections: {
|
|
181
|
+
[groupId: string]: true;
|
|
182
|
+
};
|
|
183
|
+
stylesPanelMode: "compact" | "full";
|
|
188
184
|
};
|
|
189
185
|
captureUpdate: "IMMEDIATELY";
|
|
190
186
|
} | {
|
|
191
187
|
elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[];
|
|
192
188
|
appState: {
|
|
193
|
-
|
|
189
|
+
selectedLinearElement: {
|
|
194
190
|
selectedPointsIndices: number[];
|
|
195
191
|
startBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
|
|
196
192
|
endBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
|
|
@@ -220,6 +216,8 @@ export declare const actionDeleteSelected: {
|
|
|
220
216
|
hoverPointIndex: number;
|
|
221
217
|
segmentMidPointHoveredCoords: import("@excalidraw/math").GlobalPoint | null;
|
|
222
218
|
elbowed: boolean;
|
|
219
|
+
customLineAngle: number | null;
|
|
220
|
+
isEditing: boolean;
|
|
223
221
|
};
|
|
224
222
|
contextMenu: {
|
|
225
223
|
items: import("../components/ContextMenu").ContextMenuItems;
|
|
@@ -231,7 +229,7 @@ export declare const actionDeleteSelected: {
|
|
|
231
229
|
errorMessage: import("react").ReactNode;
|
|
232
230
|
activeEmbeddable: {
|
|
233
231
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
234
|
-
state: "
|
|
232
|
+
state: "active" | "hover";
|
|
235
233
|
} | null;
|
|
236
234
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
237
235
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -239,7 +237,7 @@ export declare const actionDeleteSelected: {
|
|
|
239
237
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
240
238
|
isBindingEnabled: boolean;
|
|
241
239
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
242
|
-
suggestedBindings: import("@excalidraw/element
|
|
240
|
+
suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
|
|
243
241
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
244
242
|
frameRendering: {
|
|
245
243
|
enabled: boolean;
|
|
@@ -287,8 +285,8 @@ export declare const actionDeleteSelected: {
|
|
|
287
285
|
zoom: Readonly<{
|
|
288
286
|
value: import("../types").NormalizedZoomValue;
|
|
289
287
|
}>;
|
|
290
|
-
openMenu: "
|
|
291
|
-
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
288
|
+
openMenu: "canvas" | "shape" | null;
|
|
289
|
+
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
292
290
|
openSidebar: {
|
|
293
291
|
name: string;
|
|
294
292
|
tab?: string | undefined;
|
|
@@ -297,7 +295,7 @@ export declare const actionDeleteSelected: {
|
|
|
297
295
|
name: "imageExport" | "help" | "jsonExport";
|
|
298
296
|
} | {
|
|
299
297
|
name: "ttd";
|
|
300
|
-
tab: "text-to-diagram"
|
|
298
|
+
tab: "mermaid" | "text-to-diagram";
|
|
301
299
|
} | {
|
|
302
300
|
name: "commandPalette";
|
|
303
301
|
} | {
|
|
@@ -369,9 +367,7 @@ export declare const actionDeleteSelected: {
|
|
|
369
367
|
shown: true;
|
|
370
368
|
data: import("../charts").Spreadsheet;
|
|
371
369
|
};
|
|
372
|
-
pendingImageElementId: string | null;
|
|
373
370
|
showHyperlinkPopup: false | "editor" | "info";
|
|
374
|
-
selectedLinearElement: LinearElementEditor | null;
|
|
375
371
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
376
372
|
originSnapOffset: {
|
|
377
373
|
x: number;
|
|
@@ -382,16 +378,15 @@ export declare const actionDeleteSelected: {
|
|
|
382
378
|
followedBy: Set<import("../types").SocketId>;
|
|
383
379
|
isCropping: boolean;
|
|
384
380
|
croppingElementId: string | null;
|
|
385
|
-
searchMatches:
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
}[];
|
|
381
|
+
searchMatches: Readonly<{
|
|
382
|
+
focusedId: string | null;
|
|
383
|
+
matches: readonly import("../types").SearchMatch[];
|
|
384
|
+
}> | null;
|
|
385
|
+
activeLockedId: string | null;
|
|
386
|
+
lockedMultiSelections: {
|
|
387
|
+
[groupId: string]: true;
|
|
388
|
+
};
|
|
389
|
+
stylesPanelMode: "compact" | "full";
|
|
395
390
|
};
|
|
396
391
|
captureUpdate: "IMMEDIATELY";
|
|
397
392
|
} | {
|
|
@@ -425,7 +420,7 @@ export declare const actionDeleteSelected: {
|
|
|
425
420
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
426
421
|
isBindingEnabled: boolean;
|
|
427
422
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
428
|
-
suggestedBindings: import("@excalidraw/element
|
|
423
|
+
suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
|
|
429
424
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
430
425
|
frameRendering: {
|
|
431
426
|
enabled: boolean;
|
|
@@ -436,7 +431,6 @@ export declare const actionDeleteSelected: {
|
|
|
436
431
|
editingFrame: string | null;
|
|
437
432
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
438
433
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
439
|
-
editingLinearElement: LinearElementEditor | null;
|
|
440
434
|
penMode: boolean;
|
|
441
435
|
penDetected: boolean;
|
|
442
436
|
exportBackground: boolean;
|
|
@@ -469,8 +463,8 @@ export declare const actionDeleteSelected: {
|
|
|
469
463
|
zoom: Readonly<{
|
|
470
464
|
value: import("../types").NormalizedZoomValue;
|
|
471
465
|
}>;
|
|
472
|
-
openMenu: "
|
|
473
|
-
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
466
|
+
openMenu: "canvas" | "shape" | null;
|
|
467
|
+
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
474
468
|
openSidebar: {
|
|
475
469
|
name: string;
|
|
476
470
|
tab?: string | undefined;
|
|
@@ -479,7 +473,7 @@ export declare const actionDeleteSelected: {
|
|
|
479
473
|
name: "imageExport" | "help" | "jsonExport";
|
|
480
474
|
} | {
|
|
481
475
|
name: "ttd";
|
|
482
|
-
tab: "text-to-diagram"
|
|
476
|
+
tab: "mermaid" | "text-to-diagram";
|
|
483
477
|
} | {
|
|
484
478
|
name: "commandPalette";
|
|
485
479
|
} | {
|
|
@@ -544,7 +538,6 @@ export declare const actionDeleteSelected: {
|
|
|
544
538
|
shown: true;
|
|
545
539
|
data: import("../charts").Spreadsheet;
|
|
546
540
|
};
|
|
547
|
-
pendingImageElementId: string | null;
|
|
548
541
|
showHyperlinkPopup: false | "editor" | "info";
|
|
549
542
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
550
543
|
originSnapOffset: {
|
|
@@ -556,16 +549,15 @@ export declare const actionDeleteSelected: {
|
|
|
556
549
|
followedBy: Set<import("../types").SocketId>;
|
|
557
550
|
isCropping: boolean;
|
|
558
551
|
croppingElementId: string | null;
|
|
559
|
-
searchMatches:
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
}[];
|
|
552
|
+
searchMatches: Readonly<{
|
|
553
|
+
focusedId: string | null;
|
|
554
|
+
matches: readonly import("../types").SearchMatch[];
|
|
555
|
+
}> | null;
|
|
556
|
+
activeLockedId: string | null;
|
|
557
|
+
lockedMultiSelections: {
|
|
558
|
+
[groupId: string]: true;
|
|
559
|
+
};
|
|
560
|
+
stylesPanelMode: "compact" | "full";
|
|
569
561
|
};
|
|
570
562
|
captureUpdate: "IMMEDIATELY" | "EVENTUALLY";
|
|
571
563
|
};
|
|
@@ -51,7 +51,7 @@ export declare const actionLinkToElement: {
|
|
|
51
51
|
errorMessage: import("react").ReactNode;
|
|
52
52
|
activeEmbeddable: {
|
|
53
53
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
54
|
-
state: "
|
|
54
|
+
state: "active" | "hover";
|
|
55
55
|
} | null;
|
|
56
56
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
57
57
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -59,7 +59,7 @@ export declare const actionLinkToElement: {
|
|
|
59
59
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
60
60
|
isBindingEnabled: boolean;
|
|
61
61
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
62
|
-
suggestedBindings: import("@excalidraw/element
|
|
62
|
+
suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
|
|
63
63
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
64
64
|
frameRendering: {
|
|
65
65
|
enabled: boolean;
|
|
@@ -70,7 +70,6 @@ export declare const actionLinkToElement: {
|
|
|
70
70
|
editingFrame: string | null;
|
|
71
71
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
72
72
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
73
|
-
editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
|
|
74
73
|
activeTool: {
|
|
75
74
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
76
75
|
locked: boolean;
|
|
@@ -108,8 +107,8 @@ export declare const actionLinkToElement: {
|
|
|
108
107
|
zoom: Readonly<{
|
|
109
108
|
value: import("../types").NormalizedZoomValue;
|
|
110
109
|
}>;
|
|
111
|
-
openMenu: "
|
|
112
|
-
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
110
|
+
openMenu: "canvas" | "shape" | null;
|
|
111
|
+
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
113
112
|
openSidebar: {
|
|
114
113
|
name: string;
|
|
115
114
|
tab?: string | undefined;
|
|
@@ -179,9 +178,8 @@ export declare const actionLinkToElement: {
|
|
|
179
178
|
shown: true;
|
|
180
179
|
data: import("../charts").Spreadsheet;
|
|
181
180
|
};
|
|
182
|
-
pendingImageElementId: string | null;
|
|
183
181
|
showHyperlinkPopup: false | "editor" | "info";
|
|
184
|
-
selectedLinearElement: import("@excalidraw/element
|
|
182
|
+
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
185
183
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
186
184
|
originSnapOffset: {
|
|
187
185
|
x: number;
|
|
@@ -192,16 +190,15 @@ export declare const actionLinkToElement: {
|
|
|
192
190
|
followedBy: Set<import("../types").SocketId>;
|
|
193
191
|
isCropping: boolean;
|
|
194
192
|
croppingElementId: string | null;
|
|
195
|
-
searchMatches:
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
}[];
|
|
193
|
+
searchMatches: Readonly<{
|
|
194
|
+
focusedId: string | null;
|
|
195
|
+
matches: readonly import("../types").SearchMatch[];
|
|
196
|
+
}> | null;
|
|
197
|
+
activeLockedId: string | null;
|
|
198
|
+
lockedMultiSelections: {
|
|
199
|
+
[groupId: string]: true;
|
|
200
|
+
};
|
|
201
|
+
stylesPanelMode: "compact" | "full";
|
|
205
202
|
};
|
|
206
203
|
captureUpdate: "IMMEDIATELY";
|
|
207
204
|
elements?: undefined;
|
|
@@ -1,17 +1,28 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import type { ExcalidrawElement } from "@excalidraw/element/types";
|
|
3
|
+
import type { AppState } from "../types";
|
|
3
4
|
export declare const actionToggleElementLock: {
|
|
4
5
|
name: "toggleElementLock";
|
|
5
|
-
label: (elements: readonly ExcalidrawElement[], appState: Readonly<
|
|
6
|
+
label: (elements: readonly ExcalidrawElement[], appState: Readonly<AppState>, app: import("../types").AppClassProperties) => "labels.elementLock.lock" | "labels.elementLock.unlock";
|
|
6
7
|
icon: (appState: import("../types").UIAppState, elements: readonly ExcalidrawElement[]) => import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
trackEvent: {
|
|
8
9
|
category: "element";
|
|
9
10
|
};
|
|
10
|
-
predicate: (elements: readonly ExcalidrawElement[], appState:
|
|
11
|
-
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<
|
|
11
|
+
predicate: (elements: readonly ExcalidrawElement[], appState: AppState, _: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
|
|
12
|
+
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: import("../types").AppClassProperties) => false | {
|
|
12
13
|
elements: import("@excalidraw/element/types").OrderedExcalidrawElement[];
|
|
13
14
|
appState: {
|
|
14
|
-
|
|
15
|
+
selectedElementIds: Readonly<{
|
|
16
|
+
[id: string]: true;
|
|
17
|
+
}>;
|
|
18
|
+
selectedGroupIds: {
|
|
19
|
+
[groupId: string]: boolean;
|
|
20
|
+
};
|
|
21
|
+
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
22
|
+
lockedMultiSelections: {
|
|
23
|
+
[x: string]: true;
|
|
24
|
+
};
|
|
25
|
+
activeLockedId: string | null;
|
|
15
26
|
contextMenu: {
|
|
16
27
|
items: import("../components/ContextMenu").ContextMenuItems;
|
|
17
28
|
top: number;
|
|
@@ -22,7 +33,7 @@ export declare const actionToggleElementLock: {
|
|
|
22
33
|
errorMessage: import("react").ReactNode;
|
|
23
34
|
activeEmbeddable: {
|
|
24
35
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
25
|
-
state: "
|
|
36
|
+
state: "active" | "hover";
|
|
26
37
|
} | null;
|
|
27
38
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
28
39
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -30,7 +41,7 @@ export declare const actionToggleElementLock: {
|
|
|
30
41
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
31
42
|
isBindingEnabled: boolean;
|
|
32
43
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
33
|
-
suggestedBindings: import("@excalidraw/element
|
|
44
|
+
suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
|
|
34
45
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
35
46
|
frameRendering: {
|
|
36
47
|
enabled: boolean;
|
|
@@ -41,7 +52,6 @@ export declare const actionToggleElementLock: {
|
|
|
41
52
|
editingFrame: string | null;
|
|
42
53
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
43
54
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
44
|
-
editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
|
|
45
55
|
activeTool: {
|
|
46
56
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
47
57
|
locked: boolean;
|
|
@@ -79,8 +89,8 @@ export declare const actionToggleElementLock: {
|
|
|
79
89
|
zoom: Readonly<{
|
|
80
90
|
value: import("../types").NormalizedZoomValue;
|
|
81
91
|
}>;
|
|
82
|
-
openMenu: "
|
|
83
|
-
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
92
|
+
openMenu: "canvas" | "shape" | null;
|
|
93
|
+
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
84
94
|
openSidebar: {
|
|
85
95
|
name: string;
|
|
86
96
|
tab?: string | undefined;
|
|
@@ -89,7 +99,7 @@ export declare const actionToggleElementLock: {
|
|
|
89
99
|
name: "imageExport" | "help" | "jsonExport";
|
|
90
100
|
} | {
|
|
91
101
|
name: "ttd";
|
|
92
|
-
tab: "text-to-diagram"
|
|
102
|
+
tab: "mermaid" | "text-to-diagram";
|
|
93
103
|
} | {
|
|
94
104
|
name: "commandPalette";
|
|
95
105
|
} | {
|
|
@@ -98,9 +108,6 @@ export declare const actionToggleElementLock: {
|
|
|
98
108
|
} | null;
|
|
99
109
|
defaultSidebarDockedPreference: boolean;
|
|
100
110
|
lastPointerDownWith: import("@excalidraw/element/types").PointerType;
|
|
101
|
-
selectedElementIds: Readonly<{
|
|
102
|
-
[id: string]: true;
|
|
103
|
-
}>;
|
|
104
111
|
hoveredElementIds: Readonly<{
|
|
105
112
|
[id: string]: true;
|
|
106
113
|
}>;
|
|
@@ -120,9 +127,6 @@ export declare const actionToggleElementLock: {
|
|
|
120
127
|
gridStep: number;
|
|
121
128
|
gridModeEnabled: boolean;
|
|
122
129
|
viewModeEnabled: boolean;
|
|
123
|
-
selectedGroupIds: {
|
|
124
|
-
[groupId: string]: boolean;
|
|
125
|
-
};
|
|
126
130
|
editingGroupId: string | null;
|
|
127
131
|
width: number;
|
|
128
132
|
height: number;
|
|
@@ -161,7 +165,6 @@ export declare const actionToggleElementLock: {
|
|
|
161
165
|
shown: true;
|
|
162
166
|
data: import("../charts").Spreadsheet;
|
|
163
167
|
};
|
|
164
|
-
pendingImageElementId: string | null;
|
|
165
168
|
showHyperlinkPopup: false | "editor" | "info";
|
|
166
169
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
167
170
|
originSnapOffset: {
|
|
@@ -173,22 +176,17 @@ export declare const actionToggleElementLock: {
|
|
|
173
176
|
followedBy: Set<import("../types").SocketId>;
|
|
174
177
|
isCropping: boolean;
|
|
175
178
|
croppingElementId: string | null;
|
|
176
|
-
searchMatches:
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
offsetY: number;
|
|
182
|
-
width: number;
|
|
183
|
-
height: number;
|
|
184
|
-
}[];
|
|
185
|
-
}[];
|
|
179
|
+
searchMatches: Readonly<{
|
|
180
|
+
focusedId: string | null;
|
|
181
|
+
matches: readonly import("../types").SearchMatch[];
|
|
182
|
+
}> | null;
|
|
183
|
+
stylesPanelMode: "compact" | "full";
|
|
186
184
|
};
|
|
187
185
|
captureUpdate: "IMMEDIATELY";
|
|
188
186
|
};
|
|
189
|
-
keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>, appState:
|
|
187
|
+
keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>, appState: AppState, elements: readonly ExcalidrawElement[], app: import("../types").AppClassProperties) => boolean;
|
|
190
188
|
} & {
|
|
191
|
-
keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>, appState:
|
|
189
|
+
keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>, appState: AppState, elements: readonly ExcalidrawElement[], app: import("../types").AppClassProperties) => boolean) | undefined;
|
|
192
190
|
};
|
|
193
191
|
export declare const actionUnlockAllElements: {
|
|
194
192
|
name: "unlockAllElements";
|
|
@@ -197,13 +195,18 @@ export declare const actionUnlockAllElements: {
|
|
|
197
195
|
};
|
|
198
196
|
viewMode: false;
|
|
199
197
|
icon: import("react/jsx-runtime").JSX.Element;
|
|
200
|
-
predicate: (elements: readonly ExcalidrawElement[], appState:
|
|
201
|
-
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<
|
|
198
|
+
predicate: (elements: readonly ExcalidrawElement[], appState: AppState) => boolean;
|
|
199
|
+
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>) => {
|
|
202
200
|
elements: import("@excalidraw/element/types").OrderedExcalidrawElement[];
|
|
203
201
|
appState: {
|
|
204
202
|
selectedElementIds: {
|
|
205
203
|
[k: string]: true;
|
|
206
204
|
};
|
|
205
|
+
selectedGroupIds: {
|
|
206
|
+
[groupId: string]: boolean;
|
|
207
|
+
};
|
|
208
|
+
lockedMultiSelections: {};
|
|
209
|
+
activeLockedId: null;
|
|
207
210
|
contextMenu: {
|
|
208
211
|
items: import("../components/ContextMenu").ContextMenuItems;
|
|
209
212
|
top: number;
|
|
@@ -214,7 +217,7 @@ export declare const actionUnlockAllElements: {
|
|
|
214
217
|
errorMessage: import("react").ReactNode;
|
|
215
218
|
activeEmbeddable: {
|
|
216
219
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
217
|
-
state: "
|
|
220
|
+
state: "active" | "hover";
|
|
218
221
|
} | null;
|
|
219
222
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
220
223
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -222,7 +225,7 @@ export declare const actionUnlockAllElements: {
|
|
|
222
225
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
223
226
|
isBindingEnabled: boolean;
|
|
224
227
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
225
|
-
suggestedBindings: import("@excalidraw/element
|
|
228
|
+
suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
|
|
226
229
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
227
230
|
frameRendering: {
|
|
228
231
|
enabled: boolean;
|
|
@@ -233,7 +236,6 @@ export declare const actionUnlockAllElements: {
|
|
|
233
236
|
editingFrame: string | null;
|
|
234
237
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
|
|
235
238
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
236
|
-
editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
|
|
237
239
|
activeTool: {
|
|
238
240
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
239
241
|
locked: boolean;
|
|
@@ -271,8 +273,8 @@ export declare const actionUnlockAllElements: {
|
|
|
271
273
|
zoom: Readonly<{
|
|
272
274
|
value: import("../types").NormalizedZoomValue;
|
|
273
275
|
}>;
|
|
274
|
-
openMenu: "
|
|
275
|
-
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
276
|
+
openMenu: "canvas" | "shape" | null;
|
|
277
|
+
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
276
278
|
openSidebar: {
|
|
277
279
|
name: string;
|
|
278
280
|
tab?: string | undefined;
|
|
@@ -281,7 +283,7 @@ export declare const actionUnlockAllElements: {
|
|
|
281
283
|
name: "imageExport" | "help" | "jsonExport";
|
|
282
284
|
} | {
|
|
283
285
|
name: "ttd";
|
|
284
|
-
tab: "text-to-diagram"
|
|
286
|
+
tab: "mermaid" | "text-to-diagram";
|
|
285
287
|
} | {
|
|
286
288
|
name: "commandPalette";
|
|
287
289
|
} | {
|
|
@@ -309,9 +311,6 @@ export declare const actionUnlockAllElements: {
|
|
|
309
311
|
gridStep: number;
|
|
310
312
|
gridModeEnabled: boolean;
|
|
311
313
|
viewModeEnabled: boolean;
|
|
312
|
-
selectedGroupIds: {
|
|
313
|
-
[groupId: string]: boolean;
|
|
314
|
-
};
|
|
315
314
|
editingGroupId: string | null;
|
|
316
315
|
width: number;
|
|
317
316
|
height: number;
|
|
@@ -350,9 +349,8 @@ export declare const actionUnlockAllElements: {
|
|
|
350
349
|
shown: true;
|
|
351
350
|
data: import("../charts").Spreadsheet;
|
|
352
351
|
};
|
|
353
|
-
pendingImageElementId: string | null;
|
|
354
352
|
showHyperlinkPopup: false | "editor" | "info";
|
|
355
|
-
selectedLinearElement: import("@excalidraw/element
|
|
353
|
+
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
356
354
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
357
355
|
originSnapOffset: {
|
|
358
356
|
x: number;
|
|
@@ -363,16 +361,11 @@ export declare const actionUnlockAllElements: {
|
|
|
363
361
|
followedBy: Set<import("../types").SocketId>;
|
|
364
362
|
isCropping: boolean;
|
|
365
363
|
croppingElementId: string | null;
|
|
366
|
-
searchMatches:
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
offsetY: number;
|
|
372
|
-
width: number;
|
|
373
|
-
height: number;
|
|
374
|
-
}[];
|
|
375
|
-
}[];
|
|
364
|
+
searchMatches: Readonly<{
|
|
365
|
+
focusedId: string | null;
|
|
366
|
+
matches: readonly import("../types").SearchMatch[];
|
|
367
|
+
}> | null;
|
|
368
|
+
stylesPanelMode: "compact" | "full";
|
|
376
369
|
};
|
|
377
370
|
captureUpdate: "IMMEDIATELY";
|
|
378
371
|
};
|
|
@@ -24,7 +24,7 @@ export declare const actionSetEmbeddableAsActiveTool: {
|
|
|
24
24
|
errorMessage: import("react").ReactNode;
|
|
25
25
|
activeEmbeddable: {
|
|
26
26
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
27
|
-
state: "
|
|
27
|
+
state: "active" | "hover";
|
|
28
28
|
} | null;
|
|
29
29
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
30
30
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -32,7 +32,7 @@ export declare const actionSetEmbeddableAsActiveTool: {
|
|
|
32
32
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
33
33
|
isBindingEnabled: boolean;
|
|
34
34
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
35
|
-
suggestedBindings: import("@excalidraw/element
|
|
35
|
+
suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
|
|
36
36
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
37
37
|
frameRendering: {
|
|
38
38
|
enabled: boolean;
|
|
@@ -43,7 +43,6 @@ export declare const actionSetEmbeddableAsActiveTool: {
|
|
|
43
43
|
editingFrame: string | null;
|
|
44
44
|
elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
|
|
45
45
|
editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
46
|
-
editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
|
|
47
46
|
penMode: boolean;
|
|
48
47
|
penDetected: boolean;
|
|
49
48
|
exportBackground: boolean;
|
|
@@ -76,8 +75,8 @@ export declare const actionSetEmbeddableAsActiveTool: {
|
|
|
76
75
|
zoom: Readonly<{
|
|
77
76
|
value: import("../types").NormalizedZoomValue;
|
|
78
77
|
}>;
|
|
79
|
-
openMenu: "
|
|
80
|
-
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
78
|
+
openMenu: "canvas" | "shape" | null;
|
|
79
|
+
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
81
80
|
openSidebar: {
|
|
82
81
|
name: string;
|
|
83
82
|
tab?: string | undefined;
|
|
@@ -86,7 +85,7 @@ export declare const actionSetEmbeddableAsActiveTool: {
|
|
|
86
85
|
name: "imageExport" | "help" | "jsonExport";
|
|
87
86
|
} | {
|
|
88
87
|
name: "ttd";
|
|
89
|
-
tab: "text-to-diagram"
|
|
88
|
+
tab: "mermaid" | "text-to-diagram";
|
|
90
89
|
} | {
|
|
91
90
|
name: "commandPalette";
|
|
92
91
|
} | {
|
|
@@ -158,9 +157,8 @@ export declare const actionSetEmbeddableAsActiveTool: {
|
|
|
158
157
|
shown: true;
|
|
159
158
|
data: import("../charts").Spreadsheet;
|
|
160
159
|
};
|
|
161
|
-
pendingImageElementId: string | null;
|
|
162
160
|
showHyperlinkPopup: false | "editor" | "info";
|
|
163
|
-
selectedLinearElement: import("@excalidraw/element
|
|
161
|
+
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
164
162
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
165
163
|
originSnapOffset: {
|
|
166
164
|
x: number;
|
|
@@ -171,16 +169,15 @@ export declare const actionSetEmbeddableAsActiveTool: {
|
|
|
171
169
|
followedBy: Set<import("../types").SocketId>;
|
|
172
170
|
isCropping: boolean;
|
|
173
171
|
croppingElementId: string | null;
|
|
174
|
-
searchMatches:
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
}[];
|
|
172
|
+
searchMatches: Readonly<{
|
|
173
|
+
focusedId: string | null;
|
|
174
|
+
matches: readonly import("../types").SearchMatch[];
|
|
175
|
+
}> | null;
|
|
176
|
+
activeLockedId: string | null;
|
|
177
|
+
lockedMultiSelections: {
|
|
178
|
+
[groupId: string]: true;
|
|
179
|
+
};
|
|
180
|
+
stylesPanelMode: "compact" | "full";
|
|
184
181
|
};
|
|
185
182
|
captureUpdate: "EVENTUALLY";
|
|
186
183
|
};
|