@excalidraw/math 0.18.0-508de2f3a → 0.18.0-51ad895
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 +58 -61
- package/dist/dev/index.js.map +3 -3
- package/dist/prod/index.js +1 -1
- package/dist/types/common/src/constants.d.ts +20 -15
- package/dist/types/common/src/editorInterface.d.ts +34 -0
- package/dist/types/common/src/index.d.ts +2 -0
- package/dist/types/common/src/utils.d.ts +9 -3
- package/dist/types/common/src/visualdebug.d.ts +41 -0
- package/dist/types/element/src/binding.d.ts +55 -43
- package/dist/types/element/src/bounds.d.ts +1 -1
- package/dist/types/element/src/collision.d.ts +6 -2
- package/dist/types/element/src/delta.d.ts +4 -5
- package/dist/types/element/src/index.d.ts +1 -3
- package/dist/types/element/src/linearElementEditor.d.ts +15 -18
- package/dist/types/element/src/mutateElement.d.ts +0 -1
- package/dist/types/element/src/positionElementsOnGrid.d.ts +2 -0
- package/dist/types/element/src/renderElement.d.ts +5 -2
- package/dist/types/element/src/resizeTest.d.ts +5 -4
- package/dist/types/element/src/store.d.ts +5 -0
- package/dist/types/element/src/textElement.d.ts +1 -1
- package/dist/types/element/src/transformHandles.d.ts +5 -4
- package/dist/types/element/src/typeChecks.d.ts +2 -3
- package/dist/types/element/src/types.d.ts +7 -11
- package/dist/types/element/src/utils.d.ts +2 -1
- package/dist/types/element/src/zindex.d.ts +7 -1
- package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +34 -13
- package/dist/types/excalidraw/actions/actionAlign.d.ts +6 -6
- package/dist/types/excalidraw/actions/actionBoundText.d.ts +25 -11
- package/dist/types/excalidraw/actions/actionCanvas.d.ts +153 -262
- package/dist/types/excalidraw/actions/actionClipboard.d.ts +46 -773
- package/dist/types/excalidraw/actions/actionCropEditor.d.ts +12 -5
- package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +42 -23
- package/dist/types/excalidraw/actions/actionDistribute.d.ts +2 -2
- package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +2 -2
- package/dist/types/excalidraw/actions/actionElementLink.d.ts +11 -6
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +23 -9
- package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +12 -5
- package/dist/types/excalidraw/actions/actionExport.d.ts +68 -943
- package/dist/types/excalidraw/actions/actionFinalize.d.ts +10 -393
- package/dist/types/excalidraw/actions/actionFlip.d.ts +2 -2
- package/dist/types/excalidraw/actions/actionFrame.d.ts +50 -24
- package/dist/types/excalidraw/actions/actionGroup.d.ts +24 -10
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +22 -19
- package/dist/types/excalidraw/actions/actionLink.d.ts +9 -2
- package/dist/types/excalidraw/actions/actionMenu.d.ts +10 -371
- package/dist/types/excalidraw/actions/actionNavigate.d.ts +21 -359
- package/dist/types/excalidraw/actions/actionProperties.d.ts +87 -2403
- package/dist/types/excalidraw/actions/actionSelectAll.d.ts +12 -5
- package/dist/types/excalidraw/actions/actionStyles.d.ts +13 -6
- package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +1 -1
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +11 -4
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +11 -4
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +10 -5
- package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +1 -1
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +11 -4
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +11 -4
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +12 -5
- package/dist/types/excalidraw/actions/actionZindex.d.ts +2 -2
- package/dist/types/excalidraw/actions/index.d.ts +2 -2
- package/dist/types/excalidraw/actions/manager.d.ts +1 -1
- package/dist/types/excalidraw/actions/register.d.ts +1 -1
- package/dist/types/excalidraw/actions/types.d.ts +4 -4
- package/dist/types/excalidraw/appState.d.ts +9 -4
- package/dist/types/excalidraw/clipboard.d.ts +64 -1
- package/dist/types/excalidraw/components/Actions.d.ts +21 -4
- package/dist/types/excalidraw/components/App.d.ts +36 -27
- package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +2 -0
- package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +2 -1
- package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +2 -1
- package/dist/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +1 -0
- package/dist/types/excalidraw/components/CommandPalette/types.d.ts +1 -2
- package/dist/types/excalidraw/components/ExcalidrawLogo.d.ts +1 -1
- package/dist/types/excalidraw/components/FilledButton.d.ts +1 -1
- package/dist/types/excalidraw/components/FontPicker/FontPicker.d.ts +2 -1
- package/dist/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +3 -1
- package/dist/types/excalidraw/components/HintViewer.d.ts +4 -3
- package/dist/types/excalidraw/components/InlineIcon.d.ts +3 -1
- package/dist/types/excalidraw/components/LayerUI.d.ts +2 -1
- package/dist/types/excalidraw/components/LibraryMenuSection.d.ts +1 -1
- package/dist/types/excalidraw/components/MobileMenu.d.ts +3 -5
- package/dist/types/excalidraw/components/MobileToolBar.d.ts +11 -0
- package/dist/types/excalidraw/components/Popover.d.ts +2 -1
- package/dist/types/excalidraw/components/PropertiesPopover.d.ts +1 -0
- package/dist/types/excalidraw/components/Stats/utils.d.ts +1 -1
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +1 -2
- package/dist/types/excalidraw/components/TextField.d.ts +1 -0
- package/dist/types/excalidraw/components/ToolPopover.d.ts +25 -0
- package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +6 -3
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +4 -2
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +2 -1
- package/dist/types/excalidraw/components/icons.d.ts +10 -0
- package/dist/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +13 -1
- package/dist/types/excalidraw/components/main-menu/MainMenu.d.ts +0 -3
- 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/restore.d.ts +3 -3
- package/dist/types/excalidraw/data/types.d.ts +4 -1
- package/dist/types/excalidraw/hooks/useLibraryItemSvg.d.ts +1 -1
- package/dist/types/excalidraw/hooks/useOutsideClick.d.ts +3 -1
- package/dist/types/excalidraw/hooks/useTextEditorFocus.d.ts +14 -0
- package/dist/types/excalidraw/index.d.ts +2 -3
- package/dist/types/excalidraw/renderer/animation.d.ts +12 -0
- package/dist/types/excalidraw/renderer/helpers.d.ts +2 -6
- package/dist/types/excalidraw/renderer/interactiveScene.d.ts +5 -13
- package/dist/types/excalidraw/scene/types.d.ts +15 -3
- package/dist/types/excalidraw/shortcut.d.ts +1 -0
- package/dist/types/excalidraw/types.d.ts +32 -21
- package/dist/types/math/src/segment.d.ts +1 -0
- package/package.json +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
|
+
import { type Radians } from "@excalidraw/math";
|
|
1
2
|
import type { AppState } from "@excalidraw/excalidraw/types";
|
|
2
3
|
import type { ExtractSetType } from "@excalidraw/common/utility-types";
|
|
3
|
-
import type { Radians } from "@excalidraw/math";
|
|
4
4
|
import type { Scene } from "./Scene";
|
|
5
5
|
import type { MaybeTransformHandleType } from "./transformHandles";
|
|
6
6
|
import type { ElementsMap, ExcalidrawElement, ExcalidrawElementType, ExcalidrawTextContainer, ExcalidrawTextElement, ExcalidrawTextElementWithContainer, NonDeletedExcalidrawElement } from "./types";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { type EditorInterface } from "@excalidraw/common";
|
|
1
2
|
import type { Radians } from "@excalidraw/math";
|
|
2
|
-
import type {
|
|
3
|
+
import type { InteractiveCanvasAppState, Zoom } from "@excalidraw/excalidraw/types";
|
|
3
4
|
import type { Bounds } from "./bounds";
|
|
4
5
|
import type { ElementsMap, ExcalidrawElement, NonDeletedExcalidrawElement, PointerType } from "./types";
|
|
5
6
|
export type TransformHandleDirection = "n" | "s" | "w" | "e" | "nw" | "ne" | "sw" | "se";
|
|
@@ -28,8 +29,8 @@ export declare const OMIT_SIDES_FOR_FRAME: {
|
|
|
28
29
|
w: boolean;
|
|
29
30
|
rotation: boolean;
|
|
30
31
|
};
|
|
31
|
-
export declare const canResizeFromSides: (
|
|
32
|
-
export declare const
|
|
32
|
+
export declare const canResizeFromSides: (editorInterface: EditorInterface) => boolean;
|
|
33
|
+
export declare const getOmitSidesForEditorInterface: (editorInterface: EditorInterface) => {};
|
|
33
34
|
export declare const getTransformHandlesFromCoords: ([x1, y1, x2, y2, cx, cy]: [number, number, number, number, number, number], angle: Radians, zoom: Zoom, pointerType: PointerType, omitSides?: {
|
|
34
35
|
s?: boolean | undefined;
|
|
35
36
|
n?: boolean | undefined;
|
|
@@ -52,4 +53,4 @@ export declare const getTransformHandles: (element: ExcalidrawElement, zoom: Zoo
|
|
|
52
53
|
se?: boolean | undefined;
|
|
53
54
|
rotation?: boolean | undefined;
|
|
54
55
|
}) => TransformHandles;
|
|
55
|
-
export declare const
|
|
56
|
+
export declare const hasBoundingBox: (elements: readonly NonDeletedExcalidrawElement[], appState: InteractiveCanvasAppState, editorInterface: EditorInterface) => boolean;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { ElementOrToolType } from "@excalidraw/excalidraw/types";
|
|
2
2
|
import type { MarkNonNullable } from "@excalidraw/common/utility-types";
|
|
3
3
|
import type { Bounds } from "./bounds";
|
|
4
|
-
import type { ExcalidrawElement, ExcalidrawTextElement, ExcalidrawEmbeddableElement, ExcalidrawLinearElement, ExcalidrawBindableElement, ExcalidrawFreeDrawElement, InitializedExcalidrawImageElement, ExcalidrawImageElement, ExcalidrawTextElementWithContainer, ExcalidrawTextContainer, ExcalidrawFrameElement, RoundnessType, ExcalidrawFrameLikeElement, ExcalidrawElementType, ExcalidrawIframeElement, ExcalidrawIframeLikeElement, ExcalidrawMagicFrameElement, ExcalidrawArrowElement, ExcalidrawElbowArrowElement, ExcalidrawLineElement,
|
|
4
|
+
import type { ExcalidrawElement, ExcalidrawTextElement, ExcalidrawEmbeddableElement, ExcalidrawLinearElement, ExcalidrawBindableElement, ExcalidrawFreeDrawElement, InitializedExcalidrawImageElement, ExcalidrawImageElement, ExcalidrawTextElementWithContainer, ExcalidrawTextContainer, ExcalidrawFrameElement, RoundnessType, ExcalidrawFrameLikeElement, ExcalidrawElementType, ExcalidrawIframeElement, ExcalidrawIframeLikeElement, ExcalidrawMagicFrameElement, ExcalidrawArrowElement, ExcalidrawElbowArrowElement, ExcalidrawLineElement, ExcalidrawFlowchartNodeElement, ExcalidrawLinearElementSubType } from "./types";
|
|
5
5
|
export declare const isInitializedImageElement: (element: ExcalidrawElement | null) => element is InitializedExcalidrawImageElement;
|
|
6
6
|
export declare const isImageElement: (element: ExcalidrawElement | null) => element is ExcalidrawImageElement;
|
|
7
7
|
export declare const isEmbeddableElement: (element: ExcalidrawElement | null | undefined) => element is ExcalidrawEmbeddableElement;
|
|
@@ -24,7 +24,7 @@ export declare const isSimpleArrow: (element?: ExcalidrawElement) => element is
|
|
|
24
24
|
export declare const isSharpArrow: (element?: ExcalidrawElement) => element is ExcalidrawArrowElement;
|
|
25
25
|
export declare const isCurvedArrow: (element?: ExcalidrawElement) => element is ExcalidrawArrowElement;
|
|
26
26
|
export declare const isLinearElementType: (elementType: ElementOrToolType) => boolean;
|
|
27
|
-
export declare const isBindingElement: (element?: ExcalidrawElement | null, includeLocked?: boolean) => element is
|
|
27
|
+
export declare const isBindingElement: (element?: ExcalidrawElement | null, includeLocked?: boolean) => element is ExcalidrawArrowElement;
|
|
28
28
|
export declare const isBindingElementType: (elementType: ElementOrToolType) => boolean;
|
|
29
29
|
export declare const isBindableElement: (element: ExcalidrawElement | null | undefined, includeLocked?: boolean) => element is ExcalidrawBindableElement;
|
|
30
30
|
export declare const isRectanguloidElement: (element?: ExcalidrawElement | null) => element is ExcalidrawBindableElement;
|
|
@@ -43,7 +43,6 @@ export declare const getDefaultRoundnessTypeForElement: (element: ExcalidrawElem
|
|
|
43
43
|
} | {
|
|
44
44
|
type: 3;
|
|
45
45
|
} | null;
|
|
46
|
-
export declare const isFixedPointBinding: (binding: PointBinding | FixedPointBinding) => binding is FixedPointBinding;
|
|
47
46
|
export declare const isBounds: (box: unknown) => box is Bounds;
|
|
48
47
|
export declare const getLinearElementSubType: (element: ExcalidrawLinearElement) => ExcalidrawLinearElementSubType;
|
|
49
48
|
/**
|
|
@@ -197,14 +197,12 @@ export type ExcalidrawTextElementWithContainer = {
|
|
|
197
197
|
containerId: ExcalidrawTextContainer["id"];
|
|
198
198
|
} & ExcalidrawTextElement;
|
|
199
199
|
export type FixedPoint = [number, number];
|
|
200
|
-
export type
|
|
200
|
+
export type BindMode = "inside" | "orbit" | "skip";
|
|
201
|
+
export type FixedPointBinding = {
|
|
201
202
|
elementId: ExcalidrawBindableElement["id"];
|
|
202
|
-
focus: number;
|
|
203
|
-
gap: number;
|
|
204
|
-
};
|
|
205
|
-
export type FixedPointBinding = Merge<PointBinding, {
|
|
206
203
|
fixedPoint: FixedPoint;
|
|
207
|
-
|
|
204
|
+
mode: BindMode;
|
|
205
|
+
};
|
|
208
206
|
type Index = number;
|
|
209
207
|
export type PointsPositionUpdates = Map<Index, {
|
|
210
208
|
point: LocalPoint;
|
|
@@ -214,9 +212,8 @@ export type Arrowhead = "arrow" | "bar" | "dot" | "circle" | "circle_outline" |
|
|
|
214
212
|
export type ExcalidrawLinearElement = _ExcalidrawElementBase & Readonly<{
|
|
215
213
|
type: "line" | "arrow";
|
|
216
214
|
points: readonly LocalPoint[];
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
endBinding: PointBinding | null;
|
|
215
|
+
startBinding: FixedPointBinding | null;
|
|
216
|
+
endBinding: FixedPointBinding | null;
|
|
220
217
|
startArrowhead: Arrowhead | null;
|
|
221
218
|
endArrowhead: Arrowhead | null;
|
|
222
219
|
}>;
|
|
@@ -235,9 +232,9 @@ export type ExcalidrawArrowElement = ExcalidrawLinearElement & Readonly<{
|
|
|
235
232
|
}>;
|
|
236
233
|
export type ExcalidrawElbowArrowElement = Merge<ExcalidrawArrowElement, {
|
|
237
234
|
elbowed: true;
|
|
235
|
+
fixedSegments: readonly FixedSegment[] | null;
|
|
238
236
|
startBinding: FixedPointBinding | null;
|
|
239
237
|
endBinding: FixedPointBinding | null;
|
|
240
|
-
fixedSegments: readonly FixedSegment[] | null;
|
|
241
238
|
/**
|
|
242
239
|
* Marks that the 3rd point should be used as the 2nd point of the arrow in
|
|
243
240
|
* order to temporarily hide the first segment of the arrow without losing
|
|
@@ -260,7 +257,6 @@ export type ExcalidrawFreeDrawElement = _ExcalidrawElementBase & Readonly<{
|
|
|
260
257
|
points: readonly LocalPoint[];
|
|
261
258
|
pressures: readonly number[];
|
|
262
259
|
simulatePressure: boolean;
|
|
263
|
-
lastCommittedPoint: LocalPoint | null;
|
|
264
260
|
}>;
|
|
265
261
|
export type FileId = string & {
|
|
266
262
|
_brand: "FileId";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type GlobalPoint } from "@excalidraw/math";
|
|
2
2
|
import type { Curve, LineSegment } from "@excalidraw/math";
|
|
3
3
|
import type { Zoom } from "@excalidraw/excalidraw/types";
|
|
4
|
-
import type { ExcalidrawDiamondElement, ExcalidrawElement, ExcalidrawFreeDrawElement, ExcalidrawLinearElement, ExcalidrawRectanguloidElement } from "./types";
|
|
4
|
+
import type { ElementsMap, ExcalidrawArrowElement, ExcalidrawDiamondElement, ExcalidrawElement, ExcalidrawFreeDrawElement, ExcalidrawLinearElement, ExcalidrawRectanguloidElement } from "./types";
|
|
5
5
|
/**
|
|
6
6
|
* Returns the **rotated** components of freedraw, line or arrow elements.
|
|
7
7
|
*
|
|
@@ -29,3 +29,4 @@ export declare function deconstructRectanguloidElement(element: ExcalidrawRectan
|
|
|
29
29
|
export declare function deconstructDiamondElement(element: ExcalidrawDiamondElement, offset?: number): [LineSegment<GlobalPoint>[], Curve<GlobalPoint>[]];
|
|
30
30
|
export declare const isPathALoop: (points: ExcalidrawLinearElement["points"], zoomValue?: Zoom["value"]) => boolean;
|
|
31
31
|
export declare const getCornerRadius: (x: number, element: ExcalidrawElement) => number;
|
|
32
|
+
export declare const projectFixedPointOntoDiagonal: (arrow: ExcalidrawArrowElement, point: GlobalPoint, element: ExcalidrawElement, startOrEnd: "start" | "end", elementsMap: ElementsMap) => GlobalPoint | null;
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import type { AppState } from "@excalidraw/excalidraw/types";
|
|
2
|
+
import type { GlobalPoint } from "@excalidraw/math";
|
|
2
3
|
import type { Scene } from "./Scene";
|
|
3
|
-
import type { ExcalidrawElement } from "./types";
|
|
4
|
+
import type { ExcalidrawArrowElement, ExcalidrawElement, NonDeletedExcalidrawElement, NonDeletedSceneElementsMap, Ordered, OrderedExcalidrawElement } from "./types";
|
|
5
|
+
/**
|
|
6
|
+
* Moves the arrow element above any bindable elements it intersects with or
|
|
7
|
+
* hovers over.
|
|
8
|
+
*/
|
|
9
|
+
export declare const moveArrowAboveBindable: (point: GlobalPoint, arrow: ExcalidrawArrowElement, elements: readonly Ordered<NonDeletedExcalidrawElement>[], elementsMap: NonDeletedSceneElementsMap, scene: Scene) => readonly OrderedExcalidrawElement[];
|
|
4
10
|
export declare const moveOneLeft: (allElements: readonly ExcalidrawElement[], appState: AppState, scene: Scene) => readonly ExcalidrawElement[];
|
|
5
11
|
export declare const moveOneRight: (allElements: readonly ExcalidrawElement[], appState: AppState, scene: Scene) => readonly ExcalidrawElement[];
|
|
6
12
|
export declare const moveAllLeft: (allElements: readonly ExcalidrawElement[], appState: AppState) => readonly ExcalidrawElement[] | ExcalidrawElement[];
|
|
@@ -4,7 +4,7 @@ export declare const actionAddToLibrary: {
|
|
|
4
4
|
trackEvent: {
|
|
5
5
|
category: "element";
|
|
6
6
|
};
|
|
7
|
-
perform: (elements: readonly import("../../element/src/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _:
|
|
7
|
+
perform: (elements: readonly import("../../element/src/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: unknown, app: import("../types").AppClassProperties) => Promise<{
|
|
8
8
|
captureUpdate: "EVENTUALLY";
|
|
9
9
|
appState: {
|
|
10
10
|
toast: {
|
|
@@ -28,7 +28,7 @@ export declare const actionAddToLibrary: {
|
|
|
28
28
|
selectionElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
|
|
29
29
|
isBindingEnabled: boolean;
|
|
30
30
|
startBoundElement: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawBindableElement> | null;
|
|
31
|
-
|
|
31
|
+
suggestedBinding: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawBindableElement> | null;
|
|
32
32
|
frameToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawFrameLikeElement> | null;
|
|
33
33
|
frameRendering: {
|
|
34
34
|
enabled: boolean;
|
|
@@ -44,6 +44,10 @@ export declare const actionAddToLibrary: {
|
|
|
44
44
|
locked: boolean;
|
|
45
45
|
fromSelection: boolean;
|
|
46
46
|
} & import("../types").ActiveTool;
|
|
47
|
+
preferredSelectionTool: {
|
|
48
|
+
type: "selection" | "lasso";
|
|
49
|
+
initialized: boolean;
|
|
50
|
+
};
|
|
47
51
|
penMode: boolean;
|
|
48
52
|
penDetected: boolean;
|
|
49
53
|
exportBackground: boolean;
|
|
@@ -76,8 +80,8 @@ export declare const actionAddToLibrary: {
|
|
|
76
80
|
zoom: Readonly<{
|
|
77
81
|
value: import("../types").NormalizedZoomValue;
|
|
78
82
|
}>;
|
|
79
|
-
openMenu: "canvas" |
|
|
80
|
-
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
83
|
+
openMenu: "canvas" | null;
|
|
84
|
+
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
81
85
|
openSidebar: {
|
|
82
86
|
name: string;
|
|
83
87
|
tab?: string | undefined;
|
|
@@ -89,6 +93,8 @@ export declare const actionAddToLibrary: {
|
|
|
89
93
|
tab: "mermaid" | "text-to-diagram";
|
|
90
94
|
} | {
|
|
91
95
|
name: "commandPalette";
|
|
96
|
+
} | {
|
|
97
|
+
name: "settings";
|
|
92
98
|
} | {
|
|
93
99
|
name: "elementLinkSelector";
|
|
94
100
|
sourceElementId: string;
|
|
@@ -153,7 +159,7 @@ export declare const actionAddToLibrary: {
|
|
|
153
159
|
shown: true;
|
|
154
160
|
data: import("../charts").Spreadsheet;
|
|
155
161
|
};
|
|
156
|
-
showHyperlinkPopup: false | "
|
|
162
|
+
showHyperlinkPopup: false | "info" | "editor";
|
|
157
163
|
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
158
164
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
159
165
|
originSnapOffset: {
|
|
@@ -173,6 +179,7 @@ export declare const actionAddToLibrary: {
|
|
|
173
179
|
lockedMultiSelections: {
|
|
174
180
|
[groupId: string]: true;
|
|
175
181
|
};
|
|
182
|
+
bindMode: import("../../element/src/types").BindMode;
|
|
176
183
|
};
|
|
177
184
|
} | {
|
|
178
185
|
captureUpdate: "EVENTUALLY";
|
|
@@ -195,7 +202,7 @@ export declare const actionAddToLibrary: {
|
|
|
195
202
|
selectionElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
|
|
196
203
|
isBindingEnabled: boolean;
|
|
197
204
|
startBoundElement: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawBindableElement> | null;
|
|
198
|
-
|
|
205
|
+
suggestedBinding: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawBindableElement> | null;
|
|
199
206
|
frameToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawFrameLikeElement> | null;
|
|
200
207
|
frameRendering: {
|
|
201
208
|
enabled: boolean;
|
|
@@ -211,6 +218,10 @@ export declare const actionAddToLibrary: {
|
|
|
211
218
|
locked: boolean;
|
|
212
219
|
fromSelection: boolean;
|
|
213
220
|
} & import("../types").ActiveTool;
|
|
221
|
+
preferredSelectionTool: {
|
|
222
|
+
type: "selection" | "lasso";
|
|
223
|
+
initialized: boolean;
|
|
224
|
+
};
|
|
214
225
|
penMode: boolean;
|
|
215
226
|
penDetected: boolean;
|
|
216
227
|
exportBackground: boolean;
|
|
@@ -243,8 +254,8 @@ export declare const actionAddToLibrary: {
|
|
|
243
254
|
zoom: Readonly<{
|
|
244
255
|
value: import("../types").NormalizedZoomValue;
|
|
245
256
|
}>;
|
|
246
|
-
openMenu: "canvas" |
|
|
247
|
-
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
257
|
+
openMenu: "canvas" | null;
|
|
258
|
+
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
248
259
|
openSidebar: {
|
|
249
260
|
name: string;
|
|
250
261
|
tab?: string | undefined;
|
|
@@ -256,6 +267,8 @@ export declare const actionAddToLibrary: {
|
|
|
256
267
|
tab: "mermaid" | "text-to-diagram";
|
|
257
268
|
} | {
|
|
258
269
|
name: "commandPalette";
|
|
270
|
+
} | {
|
|
271
|
+
name: "settings";
|
|
259
272
|
} | {
|
|
260
273
|
name: "elementLinkSelector";
|
|
261
274
|
sourceElementId: string;
|
|
@@ -325,7 +338,7 @@ export declare const actionAddToLibrary: {
|
|
|
325
338
|
shown: true;
|
|
326
339
|
data: import("../charts").Spreadsheet;
|
|
327
340
|
};
|
|
328
|
-
showHyperlinkPopup: false | "
|
|
341
|
+
showHyperlinkPopup: false | "info" | "editor";
|
|
329
342
|
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
330
343
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
331
344
|
originSnapOffset: {
|
|
@@ -345,6 +358,7 @@ export declare const actionAddToLibrary: {
|
|
|
345
358
|
lockedMultiSelections: {
|
|
346
359
|
[groupId: string]: true;
|
|
347
360
|
};
|
|
361
|
+
bindMode: import("../../element/src/types").BindMode;
|
|
348
362
|
};
|
|
349
363
|
}> | {
|
|
350
364
|
captureUpdate: "EVENTUALLY";
|
|
@@ -367,7 +381,7 @@ export declare const actionAddToLibrary: {
|
|
|
367
381
|
selectionElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
|
|
368
382
|
isBindingEnabled: boolean;
|
|
369
383
|
startBoundElement: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawBindableElement> | null;
|
|
370
|
-
|
|
384
|
+
suggestedBinding: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawBindableElement> | null;
|
|
371
385
|
frameToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawFrameLikeElement> | null;
|
|
372
386
|
frameRendering: {
|
|
373
387
|
enabled: boolean;
|
|
@@ -383,6 +397,10 @@ export declare const actionAddToLibrary: {
|
|
|
383
397
|
locked: boolean;
|
|
384
398
|
fromSelection: boolean;
|
|
385
399
|
} & import("../types").ActiveTool;
|
|
400
|
+
preferredSelectionTool: {
|
|
401
|
+
type: "selection" | "lasso";
|
|
402
|
+
initialized: boolean;
|
|
403
|
+
};
|
|
386
404
|
penMode: boolean;
|
|
387
405
|
penDetected: boolean;
|
|
388
406
|
exportBackground: boolean;
|
|
@@ -415,8 +433,8 @@ export declare const actionAddToLibrary: {
|
|
|
415
433
|
zoom: Readonly<{
|
|
416
434
|
value: import("../types").NormalizedZoomValue;
|
|
417
435
|
}>;
|
|
418
|
-
openMenu: "canvas" |
|
|
419
|
-
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
436
|
+
openMenu: "canvas" | null;
|
|
437
|
+
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
420
438
|
openSidebar: {
|
|
421
439
|
name: string;
|
|
422
440
|
tab?: string | undefined;
|
|
@@ -428,6 +446,8 @@ export declare const actionAddToLibrary: {
|
|
|
428
446
|
tab: "mermaid" | "text-to-diagram";
|
|
429
447
|
} | {
|
|
430
448
|
name: "commandPalette";
|
|
449
|
+
} | {
|
|
450
|
+
name: "settings";
|
|
431
451
|
} | {
|
|
432
452
|
name: "elementLinkSelector";
|
|
433
453
|
sourceElementId: string;
|
|
@@ -497,7 +517,7 @@ export declare const actionAddToLibrary: {
|
|
|
497
517
|
shown: true;
|
|
498
518
|
data: import("../charts").Spreadsheet;
|
|
499
519
|
};
|
|
500
|
-
showHyperlinkPopup: false | "
|
|
520
|
+
showHyperlinkPopup: false | "info" | "editor";
|
|
501
521
|
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
502
522
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
503
523
|
originSnapOffset: {
|
|
@@ -517,6 +537,7 @@ export declare const actionAddToLibrary: {
|
|
|
517
537
|
lockedMultiSelections: {
|
|
518
538
|
[groupId: string]: true;
|
|
519
539
|
};
|
|
540
|
+
bindMode: import("../../element/src/types").BindMode;
|
|
520
541
|
};
|
|
521
542
|
};
|
|
522
543
|
label: string;
|
|
@@ -10,7 +10,7 @@ export declare const actionAlignTop: {
|
|
|
10
10
|
category: "element";
|
|
11
11
|
};
|
|
12
12
|
predicate: (elements: readonly ExcalidrawElement[], appState: AppState, appProps: import("../types").ExcalidrawProps, app: AppClassProperties) => boolean;
|
|
13
|
-
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _:
|
|
13
|
+
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
|
|
14
14
|
appState: Readonly<AppState>;
|
|
15
15
|
elements: ExcalidrawElement[];
|
|
16
16
|
captureUpdate: "IMMEDIATELY";
|
|
@@ -28,7 +28,7 @@ export declare const actionAlignBottom: {
|
|
|
28
28
|
category: "element";
|
|
29
29
|
};
|
|
30
30
|
predicate: (elements: readonly ExcalidrawElement[], appState: AppState, appProps: import("../types").ExcalidrawProps, app: AppClassProperties) => boolean;
|
|
31
|
-
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _:
|
|
31
|
+
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
|
|
32
32
|
appState: Readonly<AppState>;
|
|
33
33
|
elements: ExcalidrawElement[];
|
|
34
34
|
captureUpdate: "IMMEDIATELY";
|
|
@@ -46,7 +46,7 @@ export declare const actionAlignLeft: {
|
|
|
46
46
|
category: "element";
|
|
47
47
|
};
|
|
48
48
|
predicate: (elements: readonly ExcalidrawElement[], appState: AppState, appProps: import("../types").ExcalidrawProps, app: AppClassProperties) => boolean;
|
|
49
|
-
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _:
|
|
49
|
+
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
|
|
50
50
|
appState: Readonly<AppState>;
|
|
51
51
|
elements: ExcalidrawElement[];
|
|
52
52
|
captureUpdate: "IMMEDIATELY";
|
|
@@ -64,7 +64,7 @@ export declare const actionAlignRight: {
|
|
|
64
64
|
category: "element";
|
|
65
65
|
};
|
|
66
66
|
predicate: (elements: readonly ExcalidrawElement[], appState: AppState, appProps: import("../types").ExcalidrawProps, app: AppClassProperties) => boolean;
|
|
67
|
-
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _:
|
|
67
|
+
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
|
|
68
68
|
appState: Readonly<AppState>;
|
|
69
69
|
elements: ExcalidrawElement[];
|
|
70
70
|
captureUpdate: "IMMEDIATELY";
|
|
@@ -82,7 +82,7 @@ export declare const actionAlignVerticallyCentered: {
|
|
|
82
82
|
category: "element";
|
|
83
83
|
};
|
|
84
84
|
predicate: (elements: readonly ExcalidrawElement[], appState: AppState, appProps: import("../types").ExcalidrawProps, app: AppClassProperties) => boolean;
|
|
85
|
-
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _:
|
|
85
|
+
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
|
|
86
86
|
appState: Readonly<AppState>;
|
|
87
87
|
elements: ExcalidrawElement[];
|
|
88
88
|
captureUpdate: "IMMEDIATELY";
|
|
@@ -99,7 +99,7 @@ export declare const actionAlignHorizontallyCentered: {
|
|
|
99
99
|
category: "element";
|
|
100
100
|
};
|
|
101
101
|
predicate: (elements: readonly ExcalidrawElement[], appState: AppState, appProps: import("../types").ExcalidrawProps, app: AppClassProperties) => boolean;
|
|
102
|
-
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _:
|
|
102
|
+
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
|
|
103
103
|
appState: Readonly<AppState>;
|
|
104
104
|
elements: ExcalidrawElement[];
|
|
105
105
|
captureUpdate: "IMMEDIATELY";
|
|
@@ -9,7 +9,7 @@ export declare const actionUnbindText: {
|
|
|
9
9
|
category: "element";
|
|
10
10
|
};
|
|
11
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>, _:
|
|
12
|
+
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: import("../types").AppClassProperties) => {
|
|
13
13
|
elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[];
|
|
14
14
|
appState: Readonly<AppState>;
|
|
15
15
|
captureUpdate: "IMMEDIATELY";
|
|
@@ -24,7 +24,7 @@ export declare const actionBindText: {
|
|
|
24
24
|
category: "element";
|
|
25
25
|
};
|
|
26
26
|
predicate: (elements: readonly ExcalidrawElement[], appState: AppState, _: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
|
|
27
|
-
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _:
|
|
27
|
+
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: import("../types").AppClassProperties) => {
|
|
28
28
|
elements: ExcalidrawElement[];
|
|
29
29
|
appState: {
|
|
30
30
|
selectedElementIds: {
|
|
@@ -48,7 +48,7 @@ export declare const actionBindText: {
|
|
|
48
48
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
49
49
|
isBindingEnabled: boolean;
|
|
50
50
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
51
|
-
|
|
51
|
+
suggestedBinding: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
52
52
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
53
53
|
frameRendering: {
|
|
54
54
|
enabled: boolean;
|
|
@@ -64,6 +64,10 @@ export declare const actionBindText: {
|
|
|
64
64
|
locked: boolean;
|
|
65
65
|
fromSelection: boolean;
|
|
66
66
|
} & import("../types").ActiveTool;
|
|
67
|
+
preferredSelectionTool: {
|
|
68
|
+
type: "selection" | "lasso";
|
|
69
|
+
initialized: boolean;
|
|
70
|
+
};
|
|
67
71
|
penMode: boolean;
|
|
68
72
|
penDetected: boolean;
|
|
69
73
|
exportBackground: boolean;
|
|
@@ -96,8 +100,8 @@ export declare const actionBindText: {
|
|
|
96
100
|
zoom: Readonly<{
|
|
97
101
|
value: import("../types").NormalizedZoomValue;
|
|
98
102
|
}>;
|
|
99
|
-
openMenu: "canvas" |
|
|
100
|
-
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
103
|
+
openMenu: "canvas" | null;
|
|
104
|
+
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
101
105
|
openSidebar: {
|
|
102
106
|
name: string;
|
|
103
107
|
tab?: string | undefined;
|
|
@@ -109,6 +113,8 @@ export declare const actionBindText: {
|
|
|
109
113
|
tab: "mermaid" | "text-to-diagram";
|
|
110
114
|
} | {
|
|
111
115
|
name: "commandPalette";
|
|
116
|
+
} | {
|
|
117
|
+
name: "settings";
|
|
112
118
|
} | {
|
|
113
119
|
name: "elementLinkSelector";
|
|
114
120
|
sourceElementId: string;
|
|
@@ -175,7 +181,7 @@ export declare const actionBindText: {
|
|
|
175
181
|
shown: true;
|
|
176
182
|
data: import("../charts").Spreadsheet;
|
|
177
183
|
};
|
|
178
|
-
showHyperlinkPopup: false | "
|
|
184
|
+
showHyperlinkPopup: false | "info" | "editor";
|
|
179
185
|
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
180
186
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
181
187
|
originSnapOffset: {
|
|
@@ -195,6 +201,7 @@ export declare const actionBindText: {
|
|
|
195
201
|
lockedMultiSelections: {
|
|
196
202
|
[groupId: string]: true;
|
|
197
203
|
};
|
|
204
|
+
bindMode: import("@excalidraw/element/types").BindMode;
|
|
198
205
|
};
|
|
199
206
|
captureUpdate: "IMMEDIATELY";
|
|
200
207
|
};
|
|
@@ -208,7 +215,7 @@ export declare const actionWrapTextInContainer: {
|
|
|
208
215
|
category: "element";
|
|
209
216
|
};
|
|
210
217
|
predicate: (elements: readonly ExcalidrawElement[], appState: AppState, _: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
|
|
211
|
-
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _:
|
|
218
|
+
perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: import("../types").AppClassProperties) => {
|
|
212
219
|
elements: readonly ExcalidrawElement[];
|
|
213
220
|
appState: {
|
|
214
221
|
selectedElementIds: Mutable<Readonly<{
|
|
@@ -232,7 +239,7 @@ export declare const actionWrapTextInContainer: {
|
|
|
232
239
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
233
240
|
isBindingEnabled: boolean;
|
|
234
241
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
235
|
-
|
|
242
|
+
suggestedBinding: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
236
243
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
237
244
|
frameRendering: {
|
|
238
245
|
enabled: boolean;
|
|
@@ -248,6 +255,10 @@ export declare const actionWrapTextInContainer: {
|
|
|
248
255
|
locked: boolean;
|
|
249
256
|
fromSelection: boolean;
|
|
250
257
|
} & import("../types").ActiveTool;
|
|
258
|
+
preferredSelectionTool: {
|
|
259
|
+
type: "selection" | "lasso";
|
|
260
|
+
initialized: boolean;
|
|
261
|
+
};
|
|
251
262
|
penMode: boolean;
|
|
252
263
|
penDetected: boolean;
|
|
253
264
|
exportBackground: boolean;
|
|
@@ -280,8 +291,8 @@ export declare const actionWrapTextInContainer: {
|
|
|
280
291
|
zoom: Readonly<{
|
|
281
292
|
value: import("../types").NormalizedZoomValue;
|
|
282
293
|
}>;
|
|
283
|
-
openMenu: "canvas" |
|
|
284
|
-
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
|
|
294
|
+
openMenu: "canvas" | null;
|
|
295
|
+
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
285
296
|
openSidebar: {
|
|
286
297
|
name: string;
|
|
287
298
|
tab?: string | undefined;
|
|
@@ -293,6 +304,8 @@ export declare const actionWrapTextInContainer: {
|
|
|
293
304
|
tab: "mermaid" | "text-to-diagram";
|
|
294
305
|
} | {
|
|
295
306
|
name: "commandPalette";
|
|
307
|
+
} | {
|
|
308
|
+
name: "settings";
|
|
296
309
|
} | {
|
|
297
310
|
name: "elementLinkSelector";
|
|
298
311
|
sourceElementId: string;
|
|
@@ -359,7 +372,7 @@ export declare const actionWrapTextInContainer: {
|
|
|
359
372
|
shown: true;
|
|
360
373
|
data: import("../charts").Spreadsheet;
|
|
361
374
|
};
|
|
362
|
-
showHyperlinkPopup: false | "
|
|
375
|
+
showHyperlinkPopup: false | "info" | "editor";
|
|
363
376
|
selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
|
|
364
377
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
365
378
|
originSnapOffset: {
|
|
@@ -379,6 +392,7 @@ export declare const actionWrapTextInContainer: {
|
|
|
379
392
|
lockedMultiSelections: {
|
|
380
393
|
[groupId: string]: true;
|
|
381
394
|
};
|
|
395
|
+
bindMode: import("@excalidraw/element/types").BindMode;
|
|
382
396
|
};
|
|
383
397
|
captureUpdate: "IMMEDIATELY";
|
|
384
398
|
};
|