@excalidraw/math 0.18.0-5fffc47 → 0.18.0-6135548
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 +121 -107
- package/dist/dev/index.js.map +4 -4
- package/dist/prod/index.js +1 -1
- package/dist/types/common/src/bounds.d.ts +10 -0
- package/dist/types/common/src/colors.d.ts +59 -39
- package/dist/types/common/src/constants.d.ts +15 -27
- package/dist/types/common/src/editorInterface.d.ts +34 -0
- package/dist/types/common/src/font-metadata.d.ts +1 -3
- package/dist/types/common/src/index.d.ts +2 -0
- package/dist/types/common/src/keys.d.ts +1 -1
- package/dist/types/common/src/utility-types.d.ts +0 -1
- package/dist/types/common/src/utils.d.ts +47 -35
- package/dist/types/element/src/Scene.d.ts +3 -3
- package/dist/types/element/src/binding.d.ts +58 -44
- package/dist/types/element/src/bounds.d.ts +2 -10
- package/dist/types/element/src/collision.d.ts +6 -2
- package/dist/types/element/src/comparisons.d.ts +7 -7
- package/dist/types/element/src/dragElements.d.ts +3 -3
- package/dist/types/element/src/duplicate.d.ts +3 -3
- package/dist/types/element/src/fractionalIndex.d.ts +2 -2
- package/dist/types/element/src/frame.d.ts +5 -1
- package/dist/types/element/src/heading.d.ts +2 -1
- package/dist/types/element/src/image.d.ts +1 -11
- package/dist/types/element/src/index.d.ts +1 -3
- package/dist/types/element/src/linearElementEditor.d.ts +16 -20
- package/dist/types/element/src/mutateElement.d.ts +3 -1
- package/dist/types/element/src/newElement.d.ts +6 -6
- package/dist/types/element/src/renderElement.d.ts +1 -7
- package/dist/types/element/src/resizeElements.d.ts +10 -10
- package/dist/types/element/src/resizeTest.d.ts +6 -5
- package/dist/types/element/src/selection.d.ts +3 -7
- package/dist/types/element/src/shape.d.ts +8 -7
- package/dist/types/element/src/textMeasurements.d.ts +1 -3
- package/dist/types/{excalidraw/data → element/src}/transform.d.ts +3 -3
- package/dist/types/element/src/transformHandles.d.ts +8 -27
- package/dist/types/element/src/typeChecks.d.ts +4 -7
- package/dist/types/element/src/types.d.ts +7 -11
- package/dist/types/element/src/utils.d.ts +5 -2
- package/dist/types/element/src/zindex.d.ts +7 -1
- package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +123 -181
- package/dist/types/excalidraw/actions/actionAlign.d.ts +6 -7
- package/dist/types/excalidraw/actions/actionBoundText.d.ts +57 -96
- package/dist/types/excalidraw/actions/actionCanvas.d.ts +341 -763
- package/dist/types/excalidraw/actions/actionClipboard.d.ts +93 -893
- package/dist/types/excalidraw/actions/actionCropEditor.d.ts +27 -47
- package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +92 -156
- package/dist/types/excalidraw/actions/actionDistribute.d.ts +2 -3
- package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +3 -4
- package/dist/types/excalidraw/actions/actionElementLink.d.ts +42 -64
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +56 -95
- package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +44 -64
- package/dist/types/excalidraw/actions/actionExport.d.ts +124 -1129
- package/dist/types/excalidraw/actions/actionFinalize.d.ts +10 -404
- package/dist/types/excalidraw/actions/actionFlip.d.ts +2 -3
- package/dist/types/excalidraw/actions/actionFrame.d.ts +193 -308
- package/dist/types/excalidraw/actions/actionGroup.d.ts +60 -107
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +117 -177
- package/dist/types/excalidraw/actions/actionLink.d.ts +45 -65
- package/dist/types/excalidraw/actions/actionMenu.d.ts +36 -58
- package/dist/types/excalidraw/actions/actionNavigate.d.ts +18 -369
- package/dist/types/excalidraw/actions/actionProperties.d.ts +117 -2560
- package/dist/types/excalidraw/actions/actionSelectAll.d.ts +30 -54
- package/dist/types/excalidraw/actions/actionStyles.d.ts +27 -47
- package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +3 -3
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +44 -64
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +44 -64
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +36 -58
- package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +1 -1
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +43 -63
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +44 -64
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +44 -64
- package/dist/types/excalidraw/actions/actionZindex.d.ts +8 -9
- package/dist/types/excalidraw/actions/register.d.ts +2 -2
- package/dist/types/excalidraw/actions/types.d.ts +3 -3
- package/dist/types/excalidraw/appState.d.ts +15 -14
- package/dist/types/excalidraw/clipboard.d.ts +7 -31
- package/dist/types/excalidraw/components/Actions.d.ts +5 -2
- package/dist/types/excalidraw/components/App.d.ts +58 -58
- package/dist/types/excalidraw/components/Card.d.ts +1 -3
- package/dist/types/excalidraw/components/ColorPicker/ColorInput.d.ts +2 -4
- package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +0 -2
- package/dist/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +0 -1
- package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +0 -1
- package/dist/types/excalidraw/components/CommandPalette/types.d.ts +1 -3
- package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +2 -2
- package/dist/types/excalidraw/components/DarkModeToggle.d.ts +1 -1
- package/dist/types/excalidraw/components/DefaultSidebar.d.ts +9 -13
- package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/Ellipsify.d.ts +1 -2
- package/dist/types/excalidraw/components/ErrorDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/ExcalidrawLogo.d.ts +0 -1
- package/dist/types/excalidraw/components/EyeDropper.d.ts +0 -1
- package/dist/types/excalidraw/components/FilledButton.d.ts +2 -1
- package/dist/types/excalidraw/components/FontPicker/keyboardNavHandlers.d.ts +0 -1
- package/dist/types/excalidraw/components/HelpDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/HintViewer.d.ts +4 -3
- package/dist/types/excalidraw/components/InlineIcon.d.ts +2 -2
- package/dist/types/excalidraw/components/LibraryMenuControlButtons.d.ts +1 -1
- package/dist/types/excalidraw/components/LibraryMenuHeaderContent.d.ts +1 -2
- package/dist/types/excalidraw/components/LibraryUnit.d.ts +2 -3
- package/dist/types/excalidraw/components/LoadingMessage.d.ts +0 -1
- package/dist/types/excalidraw/components/MobileMenu.d.ts +1 -1
- package/dist/types/excalidraw/components/MobileToolBar.d.ts +0 -1
- package/dist/types/excalidraw/components/Modal.d.ts +0 -1
- package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirm.d.ts +1 -1
- package/dist/types/excalidraw/components/Popover.d.ts +2 -1
- package/dist/types/excalidraw/components/RadioGroup.d.ts +0 -1
- package/dist/types/excalidraw/components/RadioSelection.d.ts +4 -4
- package/dist/types/excalidraw/components/ScrollableList.d.ts +0 -1
- package/dist/types/excalidraw/components/Sidebar/Sidebar.d.ts +15 -21
- package/dist/types/excalidraw/components/Sidebar/SidebarHeader.d.ts +1 -1
- package/dist/types/excalidraw/components/Sidebar/SidebarTab.d.ts +1 -2
- package/dist/types/excalidraw/components/Sidebar/SidebarTabTrigger.d.ts +1 -2
- package/dist/types/excalidraw/components/Sidebar/SidebarTabTriggers.d.ts +1 -2
- package/dist/types/excalidraw/components/Sidebar/SidebarTabs.d.ts +1 -2
- package/dist/types/excalidraw/components/Spinner.d.ts +4 -4
- package/dist/types/excalidraw/components/Stats/CanvasGrid.d.ts +0 -1
- package/dist/types/excalidraw/components/Stats/Collapsible.d.ts +0 -1
- package/dist/types/excalidraw/components/Stats/DragInput.d.ts +0 -1
- package/dist/types/excalidraw/components/Stats/index.d.ts +7 -8
- package/dist/types/excalidraw/components/Stats/utils.d.ts +1 -1
- package/dist/types/excalidraw/components/TTDDialog/Chat/ChatHistoryMenu.d.ts +15 -0
- package/dist/types/excalidraw/components/TTDDialog/Chat/ChatInterface.d.ts +27 -0
- package/dist/types/excalidraw/components/TTDDialog/Chat/ChatMessage.d.ts +14 -0
- package/dist/types/excalidraw/components/TTDDialog/Chat/TTDChatPanel.d.ts +26 -0
- package/dist/types/excalidraw/components/TTDDialog/Chat/index.d.ts +3 -0
- package/dist/types/excalidraw/components/TTDDialog/Chat/useChatAgent.d.ts +8 -0
- package/dist/types/excalidraw/components/TTDDialog/MermaidToExcalidraw.d.ts +3 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDContext.d.ts +13 -0
- package/dist/types/excalidraw/components/TTDDialog/TTDDialog.d.ts +4 -25
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogOutput.d.ts +2 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogPanel.d.ts +13 -9
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTab.d.ts +1 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTrigger.d.ts +1 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTriggers.d.ts +1 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +1 -1
- package/dist/types/excalidraw/components/TTDDialog/TTDPreviewPanel.d.ts +9 -0
- package/dist/types/excalidraw/components/TTDDialog/TextToDiagram.d.ts +8 -0
- package/dist/types/excalidraw/components/TTDDialog/common.d.ts +16 -16
- package/dist/types/excalidraw/components/TTDDialog/hooks/useChatManagement.d.ts +13 -0
- package/dist/types/excalidraw/components/TTDDialog/hooks/useMermaidRenderer.d.ts +14 -0
- package/dist/types/excalidraw/components/TTDDialog/hooks/useTextGeneration.d.ts +7 -0
- package/dist/types/excalidraw/components/TTDDialog/types.d.ts +91 -0
- package/dist/types/excalidraw/components/TTDDialog/useTTDChatStorage.d.ts +22 -0
- package/dist/types/excalidraw/components/TTDDialog/utils/TTDStreamFetch.d.ts +24 -0
- package/dist/types/excalidraw/components/TTDDialog/utils/chat.d.ts +10 -0
- package/dist/types/excalidraw/components/TTDDialog/utils/mermaidValidation.d.ts +1 -0
- package/dist/types/excalidraw/components/Toast.d.ts +3 -3
- package/dist/types/excalidraw/components/Trans.d.ts +2 -2
- package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +6 -3
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +30 -33
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +5 -5
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +3 -3
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +12 -19
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +5 -4
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +0 -1
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.d.ts +2 -2
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemLink.d.ts +6 -6
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuTrigger.d.ts +3 -4
- package/dist/types/excalidraw/components/dropdownMenu/common.d.ts +1 -1
- package/dist/types/excalidraw/components/hoc/withInternalFallback.d.ts +1 -1
- package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +1 -1
- package/dist/types/excalidraw/components/icons.d.ts +21 -12
- package/dist/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +4 -3
- package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +2 -2
- package/dist/types/excalidraw/components/main-menu/MainMenu.d.ts +26 -32
- package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Center.d.ts +6 -6
- package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.d.ts +15 -16
- package/dist/types/excalidraw/data/blob.d.ts +321 -3
- package/dist/types/excalidraw/data/encode.d.ts +4 -4
- package/dist/types/excalidraw/data/encryption.d.ts +5 -5
- package/dist/types/excalidraw/data/filesystem.d.ts +2 -2
- package/dist/types/excalidraw/data/index.d.ts +3 -3
- package/dist/types/excalidraw/data/json.d.ts +159 -2
- package/dist/types/excalidraw/data/library.d.ts +24 -9
- package/dist/types/excalidraw/data/restore.d.ts +25 -10
- package/dist/types/excalidraw/editor-jotai.d.ts +11 -11
- package/dist/types/excalidraw/errors.d.ts +14 -0
- package/dist/types/excalidraw/hooks/useOutsideClick.d.ts +4 -3
- package/dist/types/excalidraw/hooks/useScrollPosition.d.ts +1 -2
- package/dist/types/excalidraw/i18n.d.ts +2 -2
- package/dist/types/excalidraw/index.d.ts +6 -7
- package/dist/types/excalidraw/renderer/animation.d.ts +12 -0
- package/dist/types/excalidraw/renderer/helpers.d.ts +6 -8
- package/dist/types/excalidraw/renderer/interactiveScene.d.ts +8 -14
- package/dist/types/excalidraw/scene/Renderer.d.ts +5 -2
- package/dist/types/excalidraw/scene/export.d.ts +2 -2
- package/dist/types/excalidraw/scene/scroll.d.ts +1 -6
- package/dist/types/excalidraw/scene/types.d.ts +22 -5
- package/dist/types/excalidraw/shortcut.d.ts +1 -0
- package/dist/types/excalidraw/snapping.d.ts +5 -5
- package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-bindings.d.ts +1 -1
- package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-loader.d.ts +1 -1
- package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-wasm.d.ts +1 -1
- package/dist/types/excalidraw/subset/woff2/woff2-loader.d.ts +2 -2
- package/dist/types/excalidraw/subset/woff2/woff2-wasm.d.ts +1 -1
- package/dist/types/excalidraw/types.d.ts +22 -20
- package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +2 -2
- package/dist/types/math/src/polygon.d.ts +2 -2
- package/dist/types/math/src/range.d.ts +1 -3
- package/dist/types/math/src/segment.d.ts +3 -3
- package/dist/types/utils/src/bbox.d.ts +1 -1
- package/dist/types/utils/src/export.d.ts +5 -5
- package/dist/types/utils/src/shape.d.ts +6 -6
- package/dist/types/utils/src/withinBounds.d.ts +2 -2
- package/package.json +2 -2
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { ExcalidrawLinearElement } from "@excalidraw/element/types";
|
|
3
2
|
export declare const actionToggleLinearEditor: {
|
|
4
3
|
name: "toggleLinearEditor";
|
|
@@ -9,40 +8,38 @@ export declare const actionToggleLinearEditor: {
|
|
|
9
8
|
category: "element";
|
|
10
9
|
};
|
|
11
10
|
predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: import("../types").AppState, _: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
|
|
12
|
-
perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _:
|
|
11
|
+
perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: unknown, app: import("../types").AppClassProperties): {
|
|
13
12
|
appState: {
|
|
14
13
|
selectedLinearElement: {
|
|
15
14
|
isEditing: boolean;
|
|
16
|
-
elementId:
|
|
15
|
+
elementId: import("@excalidraw/element/types").ExcalidrawElement["id"] & {
|
|
17
16
|
_brand: "excalidrawLinearElementId";
|
|
18
17
|
};
|
|
19
18
|
selectedPointsIndices: readonly number[] | null;
|
|
20
|
-
|
|
19
|
+
initialState: Readonly<{
|
|
21
20
|
prevSelectedPointsIndices: readonly number[] | null;
|
|
22
21
|
lastClickedPoint: number;
|
|
23
|
-
|
|
24
|
-
origin: Readonly<{
|
|
25
|
-
x: number;
|
|
26
|
-
y: number;
|
|
27
|
-
}> | null;
|
|
22
|
+
origin: Readonly<import("@excalidraw/math").GlobalPoint> | null;
|
|
28
23
|
segmentMidpoint: {
|
|
29
24
|
value: import("@excalidraw/math").GlobalPoint | null;
|
|
30
25
|
index: number | null;
|
|
31
26
|
added: boolean;
|
|
32
27
|
};
|
|
28
|
+
arrowStartIsInside: boolean;
|
|
29
|
+
altFocusPoint: Readonly<import("@excalidraw/math").GlobalPoint> | null;
|
|
33
30
|
}>;
|
|
34
31
|
isDragging: boolean;
|
|
35
32
|
lastUncommittedPoint: import("@excalidraw/math").LocalPoint | null;
|
|
33
|
+
lastCommittedPoint: import("@excalidraw/math").LocalPoint | null;
|
|
36
34
|
pointerOffset: Readonly<{
|
|
37
35
|
x: number;
|
|
38
36
|
y: number;
|
|
39
37
|
}>;
|
|
40
|
-
startBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
|
|
41
|
-
endBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
|
|
42
38
|
hoverPointIndex: number;
|
|
43
39
|
segmentMidPointHoveredCoords: import("@excalidraw/math").GlobalPoint | null;
|
|
44
40
|
elbowed: boolean;
|
|
45
41
|
customLineAngle: number | null;
|
|
42
|
+
pointerDownState: never;
|
|
46
43
|
};
|
|
47
44
|
contextMenu: {
|
|
48
45
|
items: import("../components/ContextMenu").ContextMenuItems;
|
|
@@ -51,10 +48,10 @@ export declare const actionToggleLinearEditor: {
|
|
|
51
48
|
} | null;
|
|
52
49
|
showWelcomeScreen: boolean;
|
|
53
50
|
isLoading: boolean;
|
|
54
|
-
errorMessage:
|
|
51
|
+
errorMessage: React.ReactNode;
|
|
55
52
|
activeEmbeddable: {
|
|
56
53
|
element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
|
|
57
|
-
state: "
|
|
54
|
+
state: "hover" | "active";
|
|
58
55
|
} | null;
|
|
59
56
|
newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
|
|
60
57
|
resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
@@ -62,7 +59,7 @@ export declare const actionToggleLinearEditor: {
|
|
|
62
59
|
selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
|
|
63
60
|
isBindingEnabled: boolean;
|
|
64
61
|
startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
65
|
-
|
|
62
|
+
suggestedBinding: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
|
|
66
63
|
frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
|
|
67
64
|
frameRendering: {
|
|
68
65
|
enabled: boolean;
|
|
@@ -90,19 +87,19 @@ export declare const actionToggleLinearEditor: {
|
|
|
90
87
|
exportScale: number;
|
|
91
88
|
currentItemStrokeColor: string;
|
|
92
89
|
currentItemBackgroundColor: string;
|
|
93
|
-
currentItemFillStyle: import("@excalidraw/element/types").
|
|
90
|
+
currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
|
|
94
91
|
currentItemStrokeWidth: number;
|
|
95
|
-
currentItemStrokeStyle: import("@excalidraw/element/types").
|
|
92
|
+
currentItemStrokeStyle: import("@excalidraw/element/types").ExcalidrawElement["strokeStyle"];
|
|
96
93
|
currentItemRoughness: number;
|
|
97
94
|
currentItemOpacity: number;
|
|
98
|
-
currentItemFontFamily:
|
|
95
|
+
currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
|
|
99
96
|
currentItemFontSize: number;
|
|
100
|
-
currentItemTextAlign:
|
|
97
|
+
currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
|
|
101
98
|
currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
|
|
102
99
|
currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
|
|
103
|
-
currentHoveredFontFamily:
|
|
100
|
+
currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
|
|
104
101
|
currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
|
|
105
|
-
currentItemArrowType: "
|
|
102
|
+
currentItemArrowType: "sharp" | "round" | "elbow";
|
|
106
103
|
viewBackgroundColor: string;
|
|
107
104
|
scrollX: number;
|
|
108
105
|
scrollY: number;
|
|
@@ -111,26 +108,26 @@ export declare const actionToggleLinearEditor: {
|
|
|
111
108
|
name: string | null;
|
|
112
109
|
isResizing: boolean;
|
|
113
110
|
isRotating: boolean;
|
|
114
|
-
zoom:
|
|
115
|
-
value: import("../types").NormalizedZoomValue;
|
|
116
|
-
}>;
|
|
111
|
+
zoom: import("../types").Zoom;
|
|
117
112
|
openMenu: "canvas" | null;
|
|
118
|
-
openPopup: "
|
|
113
|
+
openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
119
114
|
openSidebar: {
|
|
120
|
-
name:
|
|
121
|
-
tab?:
|
|
115
|
+
name: import("../types").SidebarName;
|
|
116
|
+
tab?: import("../types").SidebarTabName;
|
|
122
117
|
} | null;
|
|
123
|
-
openDialog: {
|
|
118
|
+
openDialog: null | {
|
|
124
119
|
name: "imageExport" | "help" | "jsonExport";
|
|
125
120
|
} | {
|
|
126
121
|
name: "ttd";
|
|
127
|
-
tab: "
|
|
122
|
+
tab: "text-to-diagram" | "mermaid";
|
|
128
123
|
} | {
|
|
129
124
|
name: "commandPalette";
|
|
125
|
+
} | {
|
|
126
|
+
name: "settings";
|
|
130
127
|
} | {
|
|
131
128
|
name: "elementLinkSelector";
|
|
132
|
-
sourceElementId:
|
|
133
|
-
}
|
|
129
|
+
sourceElementId: import("@excalidraw/element/types").ExcalidrawElement["id"];
|
|
130
|
+
};
|
|
134
131
|
defaultSidebarDockedPreference: boolean;
|
|
135
132
|
lastPointerDownWith: import("@excalidraw/element/types").PointerType;
|
|
136
133
|
selectedElementIds: Readonly<{
|
|
@@ -146,8 +143,8 @@ export declare const actionToggleLinearEditor: {
|
|
|
146
143
|
shouldCacheIgnoreZoom: boolean;
|
|
147
144
|
toast: {
|
|
148
145
|
message: string;
|
|
149
|
-
closable?: boolean
|
|
150
|
-
duration?: number
|
|
146
|
+
closable?: boolean;
|
|
147
|
+
duration?: number;
|
|
151
148
|
} | null;
|
|
152
149
|
zenModeEnabled: boolean;
|
|
153
150
|
theme: import("@excalidraw/element/types").Theme;
|
|
@@ -158,32 +155,13 @@ export declare const actionToggleLinearEditor: {
|
|
|
158
155
|
selectedGroupIds: {
|
|
159
156
|
[groupId: string]: boolean;
|
|
160
157
|
};
|
|
161
|
-
editingGroupId:
|
|
158
|
+
editingGroupId: import("@excalidraw/element/types").GroupId | null;
|
|
162
159
|
width: number;
|
|
163
160
|
height: number;
|
|
164
161
|
offsetTop: number;
|
|
165
162
|
offsetLeft: number;
|
|
166
163
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
167
|
-
collaborators: Map<import("../types").SocketId,
|
|
168
|
-
pointer?: import("../types").CollaboratorPointer | undefined;
|
|
169
|
-
button?: "up" | "down" | undefined;
|
|
170
|
-
selectedElementIds?: Readonly<{
|
|
171
|
-
[id: string]: true;
|
|
172
|
-
}> | undefined;
|
|
173
|
-
username?: string | null | undefined;
|
|
174
|
-
userState?: import("@excalidraw/common").UserIdleState | undefined;
|
|
175
|
-
color?: {
|
|
176
|
-
background: string;
|
|
177
|
-
stroke: string;
|
|
178
|
-
} | undefined;
|
|
179
|
-
avatarUrl?: string | undefined;
|
|
180
|
-
id?: string | undefined;
|
|
181
|
-
socketId?: import("../types").SocketId | undefined;
|
|
182
|
-
isCurrentUser?: boolean | undefined;
|
|
183
|
-
isInCall?: boolean | undefined;
|
|
184
|
-
isSpeaking?: boolean | undefined;
|
|
185
|
-
isMuted?: boolean | undefined;
|
|
186
|
-
}>>;
|
|
164
|
+
collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
|
|
187
165
|
stats: {
|
|
188
166
|
open: boolean;
|
|
189
167
|
panels: number;
|
|
@@ -196,7 +174,7 @@ export declare const actionToggleLinearEditor: {
|
|
|
196
174
|
shown: true;
|
|
197
175
|
data: import("../charts").Spreadsheet;
|
|
198
176
|
};
|
|
199
|
-
showHyperlinkPopup: false | "
|
|
177
|
+
showHyperlinkPopup: false | "info" | "editor";
|
|
200
178
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
201
179
|
originSnapOffset: {
|
|
202
180
|
x: number;
|
|
@@ -206,16 +184,16 @@ export declare const actionToggleLinearEditor: {
|
|
|
206
184
|
userToFollow: import("../types").UserToFollow | null;
|
|
207
185
|
followedBy: Set<import("../types").SocketId>;
|
|
208
186
|
isCropping: boolean;
|
|
209
|
-
croppingElementId:
|
|
187
|
+
croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
|
|
210
188
|
searchMatches: Readonly<{
|
|
211
|
-
focusedId:
|
|
189
|
+
focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
|
|
212
190
|
matches: readonly import("../types").SearchMatch[];
|
|
213
191
|
}> | null;
|
|
214
192
|
activeLockedId: string | null;
|
|
215
193
|
lockedMultiSelections: {
|
|
216
194
|
[groupId: string]: true;
|
|
217
195
|
};
|
|
218
|
-
|
|
196
|
+
bindMode: import("@excalidraw/element/types").BindMode;
|
|
219
197
|
};
|
|
220
198
|
captureUpdate: "IMMEDIATELY";
|
|
221
199
|
};
|
|
@@ -233,7 +211,7 @@ export declare const actionTogglePolygon: {
|
|
|
233
211
|
category: "element";
|
|
234
212
|
};
|
|
235
213
|
predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: import("../types").AppState, _: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
|
|
236
|
-
perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _:
|
|
214
|
+
perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: unknown, app: import("../types").AppClassProperties): false | {
|
|
237
215
|
elements: ((Readonly<{
|
|
238
216
|
id: string;
|
|
239
217
|
x: number;
|
|
@@ -243,10 +221,10 @@ export declare const actionTogglePolygon: {
|
|
|
243
221
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
244
222
|
strokeWidth: number;
|
|
245
223
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
246
|
-
roundness: {
|
|
224
|
+
roundness: null | {
|
|
247
225
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
248
|
-
value?: number
|
|
249
|
-
}
|
|
226
|
+
value?: number;
|
|
227
|
+
};
|
|
250
228
|
roughness: number;
|
|
251
229
|
opacity: number;
|
|
252
230
|
width: number;
|
|
@@ -257,22 +235,18 @@ export declare const actionTogglePolygon: {
|
|
|
257
235
|
versionNonce: number;
|
|
258
236
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
259
237
|
isDeleted: boolean;
|
|
260
|
-
groupIds: readonly
|
|
238
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
261
239
|
frameId: string | null;
|
|
262
|
-
boundElements: readonly
|
|
263
|
-
id: string;
|
|
264
|
-
type: "arrow" | "text";
|
|
265
|
-
}>[] | null;
|
|
240
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
266
241
|
updated: number;
|
|
267
242
|
link: string | null;
|
|
268
243
|
locked: boolean;
|
|
269
|
-
customData?: Record<string, any
|
|
244
|
+
customData?: Record<string, any>;
|
|
270
245
|
}> & Readonly<{
|
|
271
246
|
type: "line" | "arrow";
|
|
272
247
|
points: readonly import("@excalidraw/math").LocalPoint[];
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
endBinding: import("@excalidraw/element/types").PointBinding | null;
|
|
248
|
+
startBinding: import("@excalidraw/element/types").FixedPointBinding | null;
|
|
249
|
+
endBinding: import("@excalidraw/element/types").FixedPointBinding | null;
|
|
276
250
|
startArrowhead: import("@excalidraw/element/types").Arrowhead | null;
|
|
277
251
|
endArrowhead: import("@excalidraw/element/types").Arrowhead | null;
|
|
278
252
|
}> & {
|
|
@@ -286,10 +260,10 @@ export declare const actionTogglePolygon: {
|
|
|
286
260
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
287
261
|
strokeWidth: number;
|
|
288
262
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
289
|
-
roundness: {
|
|
263
|
+
roundness: null | {
|
|
290
264
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
291
|
-
value?: number
|
|
292
|
-
}
|
|
265
|
+
value?: number;
|
|
266
|
+
};
|
|
293
267
|
roughness: number;
|
|
294
268
|
opacity: number;
|
|
295
269
|
width: number;
|
|
@@ -300,16 +274,13 @@ export declare const actionTogglePolygon: {
|
|
|
300
274
|
versionNonce: number;
|
|
301
275
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
302
276
|
isDeleted: boolean;
|
|
303
|
-
groupIds: readonly
|
|
277
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
304
278
|
frameId: string | null;
|
|
305
|
-
boundElements: readonly
|
|
306
|
-
id: string;
|
|
307
|
-
type: "arrow" | "text";
|
|
308
|
-
}>[] | null;
|
|
279
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
309
280
|
updated: number;
|
|
310
281
|
link: string | null;
|
|
311
282
|
locked: boolean;
|
|
312
|
-
customData?: Record<string, any
|
|
283
|
+
customData?: Record<string, any>;
|
|
313
284
|
}> & {
|
|
314
285
|
type: "selection";
|
|
315
286
|
} & {
|
|
@@ -323,10 +294,10 @@ export declare const actionTogglePolygon: {
|
|
|
323
294
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
324
295
|
strokeWidth: number;
|
|
325
296
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
326
|
-
roundness: {
|
|
297
|
+
roundness: null | {
|
|
327
298
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
328
|
-
value?: number
|
|
329
|
-
}
|
|
299
|
+
value?: number;
|
|
300
|
+
};
|
|
330
301
|
roughness: number;
|
|
331
302
|
opacity: number;
|
|
332
303
|
width: number;
|
|
@@ -337,16 +308,13 @@ export declare const actionTogglePolygon: {
|
|
|
337
308
|
versionNonce: number;
|
|
338
309
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
339
310
|
isDeleted: boolean;
|
|
340
|
-
groupIds: readonly
|
|
311
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
341
312
|
frameId: string | null;
|
|
342
|
-
boundElements: readonly
|
|
343
|
-
id: string;
|
|
344
|
-
type: "arrow" | "text";
|
|
345
|
-
}>[] | null;
|
|
313
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
346
314
|
updated: number;
|
|
347
315
|
link: string | null;
|
|
348
316
|
locked: boolean;
|
|
349
|
-
customData?: Record<string, any
|
|
317
|
+
customData?: Record<string, any>;
|
|
350
318
|
}> & {
|
|
351
319
|
type: "rectangle";
|
|
352
320
|
} & {
|
|
@@ -360,10 +328,10 @@ export declare const actionTogglePolygon: {
|
|
|
360
328
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
361
329
|
strokeWidth: number;
|
|
362
330
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
363
|
-
roundness: {
|
|
331
|
+
roundness: null | {
|
|
364
332
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
365
|
-
value?: number
|
|
366
|
-
}
|
|
333
|
+
value?: number;
|
|
334
|
+
};
|
|
367
335
|
roughness: number;
|
|
368
336
|
opacity: number;
|
|
369
337
|
width: number;
|
|
@@ -374,16 +342,13 @@ export declare const actionTogglePolygon: {
|
|
|
374
342
|
versionNonce: number;
|
|
375
343
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
376
344
|
isDeleted: boolean;
|
|
377
|
-
groupIds: readonly
|
|
345
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
378
346
|
frameId: string | null;
|
|
379
|
-
boundElements: readonly
|
|
380
|
-
id: string;
|
|
381
|
-
type: "arrow" | "text";
|
|
382
|
-
}>[] | null;
|
|
347
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
383
348
|
updated: number;
|
|
384
349
|
link: string | null;
|
|
385
350
|
locked: boolean;
|
|
386
|
-
customData?: Record<string, any
|
|
351
|
+
customData?: Record<string, any>;
|
|
387
352
|
}> & {
|
|
388
353
|
type: "diamond";
|
|
389
354
|
} & {
|
|
@@ -397,10 +362,10 @@ export declare const actionTogglePolygon: {
|
|
|
397
362
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
398
363
|
strokeWidth: number;
|
|
399
364
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
400
|
-
roundness: {
|
|
365
|
+
roundness: null | {
|
|
401
366
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
402
|
-
value?: number
|
|
403
|
-
}
|
|
367
|
+
value?: number;
|
|
368
|
+
};
|
|
404
369
|
roughness: number;
|
|
405
370
|
opacity: number;
|
|
406
371
|
width: number;
|
|
@@ -411,16 +376,13 @@ export declare const actionTogglePolygon: {
|
|
|
411
376
|
versionNonce: number;
|
|
412
377
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
413
378
|
isDeleted: boolean;
|
|
414
|
-
groupIds: readonly
|
|
379
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
415
380
|
frameId: string | null;
|
|
416
|
-
boundElements: readonly
|
|
417
|
-
id: string;
|
|
418
|
-
type: "arrow" | "text";
|
|
419
|
-
}>[] | null;
|
|
381
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
420
382
|
updated: number;
|
|
421
383
|
link: string | null;
|
|
422
384
|
locked: boolean;
|
|
423
|
-
customData?: Record<string, any
|
|
385
|
+
customData?: Record<string, any>;
|
|
424
386
|
}> & {
|
|
425
387
|
type: "ellipse";
|
|
426
388
|
} & {
|
|
@@ -434,10 +396,10 @@ export declare const actionTogglePolygon: {
|
|
|
434
396
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
435
397
|
strokeWidth: number;
|
|
436
398
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
437
|
-
roundness: {
|
|
399
|
+
roundness: null | {
|
|
438
400
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
439
|
-
value?: number
|
|
440
|
-
}
|
|
401
|
+
value?: number;
|
|
402
|
+
};
|
|
441
403
|
roughness: number;
|
|
442
404
|
opacity: number;
|
|
443
405
|
width: number;
|
|
@@ -448,16 +410,13 @@ export declare const actionTogglePolygon: {
|
|
|
448
410
|
versionNonce: number;
|
|
449
411
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
450
412
|
isDeleted: boolean;
|
|
451
|
-
groupIds: readonly
|
|
413
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
452
414
|
frameId: string | null;
|
|
453
|
-
boundElements: readonly
|
|
454
|
-
id: string;
|
|
455
|
-
type: "arrow" | "text";
|
|
456
|
-
}>[] | null;
|
|
415
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
457
416
|
updated: number;
|
|
458
417
|
link: string | null;
|
|
459
418
|
locked: boolean;
|
|
460
|
-
customData?: Record<string, any
|
|
419
|
+
customData?: Record<string, any>;
|
|
461
420
|
}> & Readonly<{
|
|
462
421
|
type: "embeddable";
|
|
463
422
|
}> & {
|
|
@@ -471,10 +430,10 @@ export declare const actionTogglePolygon: {
|
|
|
471
430
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
472
431
|
strokeWidth: number;
|
|
473
432
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
474
|
-
roundness: {
|
|
433
|
+
roundness: null | {
|
|
475
434
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
476
|
-
value?: number
|
|
477
|
-
}
|
|
435
|
+
value?: number;
|
|
436
|
+
};
|
|
478
437
|
roughness: number;
|
|
479
438
|
opacity: number;
|
|
480
439
|
width: number;
|
|
@@ -485,21 +444,18 @@ export declare const actionTogglePolygon: {
|
|
|
485
444
|
versionNonce: number;
|
|
486
445
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
487
446
|
isDeleted: boolean;
|
|
488
|
-
groupIds: readonly
|
|
447
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
489
448
|
frameId: string | null;
|
|
490
|
-
boundElements: readonly
|
|
491
|
-
id: string;
|
|
492
|
-
type: "arrow" | "text";
|
|
493
|
-
}>[] | null;
|
|
449
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
494
450
|
updated: number;
|
|
495
451
|
link: string | null;
|
|
496
452
|
locked: boolean;
|
|
497
|
-
customData?: Record<string, any
|
|
453
|
+
customData?: Record<string, any>;
|
|
498
454
|
}> & Readonly<{
|
|
499
455
|
type: "iframe";
|
|
500
456
|
customData?: {
|
|
501
|
-
generationData?: import("@excalidraw/element/types").MagicGenerationData
|
|
502
|
-
}
|
|
457
|
+
generationData?: import("@excalidraw/element/types").MagicGenerationData;
|
|
458
|
+
};
|
|
503
459
|
}> & {
|
|
504
460
|
index: import("@excalidraw/element/types").FractionalIndex;
|
|
505
461
|
}) | (Readonly<{
|
|
@@ -511,10 +467,10 @@ export declare const actionTogglePolygon: {
|
|
|
511
467
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
512
468
|
strokeWidth: number;
|
|
513
469
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
514
|
-
roundness: {
|
|
470
|
+
roundness: null | {
|
|
515
471
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
516
|
-
value?: number
|
|
517
|
-
}
|
|
472
|
+
value?: number;
|
|
473
|
+
};
|
|
518
474
|
roughness: number;
|
|
519
475
|
opacity: number;
|
|
520
476
|
width: number;
|
|
@@ -525,20 +481,17 @@ export declare const actionTogglePolygon: {
|
|
|
525
481
|
versionNonce: number;
|
|
526
482
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
527
483
|
isDeleted: boolean;
|
|
528
|
-
groupIds: readonly
|
|
484
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
529
485
|
frameId: string | null;
|
|
530
|
-
boundElements: readonly
|
|
531
|
-
id: string;
|
|
532
|
-
type: "arrow" | "text";
|
|
533
|
-
}>[] | null;
|
|
486
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
534
487
|
updated: number;
|
|
535
488
|
link: string | null;
|
|
536
489
|
locked: boolean;
|
|
537
|
-
customData?: Record<string, any
|
|
490
|
+
customData?: Record<string, any>;
|
|
538
491
|
}> & Readonly<{
|
|
539
492
|
type: "image";
|
|
540
493
|
fileId: import("@excalidraw/element/types").FileId | null;
|
|
541
|
-
status: "pending" | "
|
|
494
|
+
status: "pending" | "saved" | "error";
|
|
542
495
|
scale: [number, number];
|
|
543
496
|
crop: import("@excalidraw/element/types").ImageCrop | null;
|
|
544
497
|
}> & {
|
|
@@ -552,10 +505,10 @@ export declare const actionTogglePolygon: {
|
|
|
552
505
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
553
506
|
strokeWidth: number;
|
|
554
507
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
555
|
-
roundness: {
|
|
508
|
+
roundness: null | {
|
|
556
509
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
557
|
-
value?: number
|
|
558
|
-
}
|
|
510
|
+
value?: number;
|
|
511
|
+
};
|
|
559
512
|
roughness: number;
|
|
560
513
|
opacity: number;
|
|
561
514
|
width: number;
|
|
@@ -566,16 +519,13 @@ export declare const actionTogglePolygon: {
|
|
|
566
519
|
versionNonce: number;
|
|
567
520
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
568
521
|
isDeleted: boolean;
|
|
569
|
-
groupIds: readonly
|
|
522
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
570
523
|
frameId: string | null;
|
|
571
|
-
boundElements: readonly
|
|
572
|
-
id: string;
|
|
573
|
-
type: "arrow" | "text";
|
|
574
|
-
}>[] | null;
|
|
524
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
575
525
|
updated: number;
|
|
576
526
|
link: string | null;
|
|
577
527
|
locked: boolean;
|
|
578
|
-
customData?: Record<string, any
|
|
528
|
+
customData?: Record<string, any>;
|
|
579
529
|
}> & {
|
|
580
530
|
type: "frame";
|
|
581
531
|
name: string | null;
|
|
@@ -590,10 +540,10 @@ export declare const actionTogglePolygon: {
|
|
|
590
540
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
591
541
|
strokeWidth: number;
|
|
592
542
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
593
|
-
roundness: {
|
|
543
|
+
roundness: null | {
|
|
594
544
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
595
|
-
value?: number
|
|
596
|
-
}
|
|
545
|
+
value?: number;
|
|
546
|
+
};
|
|
597
547
|
roughness: number;
|
|
598
548
|
opacity: number;
|
|
599
549
|
width: number;
|
|
@@ -604,16 +554,13 @@ export declare const actionTogglePolygon: {
|
|
|
604
554
|
versionNonce: number;
|
|
605
555
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
606
556
|
isDeleted: boolean;
|
|
607
|
-
groupIds: readonly
|
|
557
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
608
558
|
frameId: string | null;
|
|
609
|
-
boundElements: readonly
|
|
610
|
-
id: string;
|
|
611
|
-
type: "arrow" | "text";
|
|
612
|
-
}>[] | null;
|
|
559
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
613
560
|
updated: number;
|
|
614
561
|
link: string | null;
|
|
615
562
|
locked: boolean;
|
|
616
|
-
customData?: Record<string, any
|
|
563
|
+
customData?: Record<string, any>;
|
|
617
564
|
}> & {
|
|
618
565
|
type: "magicframe";
|
|
619
566
|
name: string | null;
|
|
@@ -628,10 +575,10 @@ export declare const actionTogglePolygon: {
|
|
|
628
575
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
629
576
|
strokeWidth: number;
|
|
630
577
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
631
|
-
roundness: {
|
|
578
|
+
roundness: null | {
|
|
632
579
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
633
|
-
value?: number
|
|
634
|
-
}
|
|
580
|
+
value?: number;
|
|
581
|
+
};
|
|
635
582
|
roughness: number;
|
|
636
583
|
opacity: number;
|
|
637
584
|
width: number;
|
|
@@ -642,24 +589,21 @@ export declare const actionTogglePolygon: {
|
|
|
642
589
|
versionNonce: number;
|
|
643
590
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
644
591
|
isDeleted: boolean;
|
|
645
|
-
groupIds: readonly
|
|
592
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
646
593
|
frameId: string | null;
|
|
647
|
-
boundElements: readonly
|
|
648
|
-
id: string;
|
|
649
|
-
type: "arrow" | "text";
|
|
650
|
-
}>[] | null;
|
|
594
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
651
595
|
updated: number;
|
|
652
596
|
link: string | null;
|
|
653
597
|
locked: boolean;
|
|
654
|
-
customData?: Record<string, any
|
|
598
|
+
customData?: Record<string, any>;
|
|
655
599
|
}> & Readonly<{
|
|
656
600
|
type: "text";
|
|
657
601
|
fontSize: number;
|
|
658
|
-
fontFamily:
|
|
602
|
+
fontFamily: import("@excalidraw/element/types").FontFamilyValues;
|
|
659
603
|
text: string;
|
|
660
|
-
textAlign:
|
|
661
|
-
verticalAlign:
|
|
662
|
-
containerId:
|
|
604
|
+
textAlign: import("@excalidraw/element/types").TextAlign;
|
|
605
|
+
verticalAlign: import("@excalidraw/element/types").VerticalAlign;
|
|
606
|
+
containerId: import("@excalidraw/element/types").ExcalidrawGenericElement["id"] | null;
|
|
663
607
|
originalText: string;
|
|
664
608
|
autoResize: boolean;
|
|
665
609
|
lineHeight: number & {
|
|
@@ -676,10 +620,10 @@ export declare const actionTogglePolygon: {
|
|
|
676
620
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
677
621
|
strokeWidth: number;
|
|
678
622
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
679
|
-
roundness: {
|
|
623
|
+
roundness: null | {
|
|
680
624
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
681
|
-
value?: number
|
|
682
|
-
}
|
|
625
|
+
value?: number;
|
|
626
|
+
};
|
|
683
627
|
roughness: number;
|
|
684
628
|
opacity: number;
|
|
685
629
|
width: number;
|
|
@@ -690,22 +634,18 @@ export declare const actionTogglePolygon: {
|
|
|
690
634
|
versionNonce: number;
|
|
691
635
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
692
636
|
isDeleted: boolean;
|
|
693
|
-
groupIds: readonly
|
|
637
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
694
638
|
frameId: string | null;
|
|
695
|
-
boundElements: readonly
|
|
696
|
-
id: string;
|
|
697
|
-
type: "arrow" | "text";
|
|
698
|
-
}>[] | null;
|
|
639
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
699
640
|
updated: number;
|
|
700
641
|
link: string | null;
|
|
701
642
|
locked: boolean;
|
|
702
|
-
customData?: Record<string, any
|
|
643
|
+
customData?: Record<string, any>;
|
|
703
644
|
}> & Readonly<{
|
|
704
645
|
type: "freedraw";
|
|
705
646
|
points: readonly import("@excalidraw/math").LocalPoint[];
|
|
706
647
|
pressures: readonly number[];
|
|
707
648
|
simulatePressure: boolean;
|
|
708
|
-
lastCommittedPoint: import("@excalidraw/math").LocalPoint | null;
|
|
709
649
|
}> & {
|
|
710
650
|
index: import("@excalidraw/element/types").FractionalIndex;
|
|
711
651
|
}))[];
|