@excalidraw/math 0.18.0-91c7748 → 0.18.0-9ba0f5d
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 +167 -168
- 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 +19 -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 +49 -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 +138 -184
- package/dist/types/excalidraw/actions/actionAlign.d.ts +6 -7
- package/dist/types/excalidraw/actions/actionBoundText.d.ts +67 -98
- package/dist/types/excalidraw/actions/actionCanvas.d.ts +401 -771
- package/dist/types/excalidraw/actions/actionClipboard.d.ts +103 -879
- package/dist/types/excalidraw/actions/actionCropEditor.d.ts +32 -48
- package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +107 -159
- 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 +47 -65
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +66 -97
- package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +49 -65
- package/dist/types/excalidraw/actions/actionExport.d.ts +144 -1113
- package/dist/types/excalidraw/actions/actionFinalize.d.ts +10 -396
- package/dist/types/excalidraw/actions/actionFlip.d.ts +2 -3
- package/dist/types/excalidraw/actions/actionFrame.d.ts +213 -312
- package/dist/types/excalidraw/actions/actionGroup.d.ts +70 -109
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +122 -178
- package/dist/types/excalidraw/actions/actionLink.d.ts +49 -65
- package/dist/types/excalidraw/actions/actionMenu.d.ts +42 -428
- package/dist/types/excalidraw/actions/actionNavigate.d.ts +18 -361
- package/dist/types/excalidraw/actions/actionProperties.d.ts +127 -2510
- package/dist/types/excalidraw/actions/actionSelectAll.d.ts +35 -55
- package/dist/types/excalidraw/actions/actionStyles.d.ts +32 -48
- package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +3 -3
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +49 -65
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +49 -65
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +41 -59
- package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +1 -1
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +48 -64
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +49 -65
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +49 -65
- package/dist/types/excalidraw/actions/actionZindex.d.ts +8 -9
- package/dist/types/excalidraw/actions/index.d.ts +1 -1
- package/dist/types/excalidraw/actions/register.d.ts +2 -2
- package/dist/types/excalidraw/actions/types.d.ts +4 -4
- package/dist/types/excalidraw/appState.d.ts +20 -16
- package/dist/types/excalidraw/clipboard.d.ts +7 -31
- package/dist/types/excalidraw/components/Actions.d.ts +14 -4
- package/dist/types/excalidraw/components/App.d.ts +58 -59
- 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 +1 -3
- 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/ColorPicker/colorPickerUtils.d.ts +0 -1
- package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +0 -1
- package/dist/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +1 -0
- 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 +1 -2
- 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/FontPickerTrigger.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 +3 -1
- package/dist/types/excalidraw/components/LayerUI.d.ts +2 -1
- 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/LibraryMenuSection.d.ts +1 -1
- 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 +3 -5
- package/dist/types/excalidraw/components/MobileToolBar.d.ts +10 -0
- 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 +2 -3
- 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/TextField.d.ts +1 -0
- package/dist/types/excalidraw/components/Toast.d.ts +3 -3
- package/dist/types/excalidraw/components/ToolPopover.d.ts +25 -0
- 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 -32
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +6 -5
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +3 -3
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +10 -18
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +3 -3
- 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 -13
- 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 +25 -30
- 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 +323 -5
- 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/useLibraryItemSvg.d.ts +1 -1
- 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 +29 -22
- 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;
|
|
@@ -78,6 +75,10 @@ export declare const actionToggleLinearEditor: {
|
|
|
78
75
|
locked: boolean;
|
|
79
76
|
fromSelection: boolean;
|
|
80
77
|
} & import("../types").ActiveTool;
|
|
78
|
+
preferredSelectionTool: {
|
|
79
|
+
type: "selection" | "lasso";
|
|
80
|
+
initialized: boolean;
|
|
81
|
+
};
|
|
81
82
|
penMode: boolean;
|
|
82
83
|
penDetected: boolean;
|
|
83
84
|
exportBackground: boolean;
|
|
@@ -86,19 +87,19 @@ export declare const actionToggleLinearEditor: {
|
|
|
86
87
|
exportScale: number;
|
|
87
88
|
currentItemStrokeColor: string;
|
|
88
89
|
currentItemBackgroundColor: string;
|
|
89
|
-
currentItemFillStyle: import("@excalidraw/element/types").
|
|
90
|
+
currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
|
|
90
91
|
currentItemStrokeWidth: number;
|
|
91
|
-
currentItemStrokeStyle: import("@excalidraw/element/types").
|
|
92
|
+
currentItemStrokeStyle: import("@excalidraw/element/types").ExcalidrawElement["strokeStyle"];
|
|
92
93
|
currentItemRoughness: number;
|
|
93
94
|
currentItemOpacity: number;
|
|
94
|
-
currentItemFontFamily:
|
|
95
|
+
currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
|
|
95
96
|
currentItemFontSize: number;
|
|
96
|
-
currentItemTextAlign:
|
|
97
|
+
currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
|
|
97
98
|
currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
|
|
98
99
|
currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
|
|
99
|
-
currentHoveredFontFamily:
|
|
100
|
+
currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
|
|
100
101
|
currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
|
|
101
|
-
currentItemArrowType: "
|
|
102
|
+
currentItemArrowType: "sharp" | "round" | "elbow";
|
|
102
103
|
viewBackgroundColor: string;
|
|
103
104
|
scrollX: number;
|
|
104
105
|
scrollY: number;
|
|
@@ -107,26 +108,26 @@ export declare const actionToggleLinearEditor: {
|
|
|
107
108
|
name: string | null;
|
|
108
109
|
isResizing: boolean;
|
|
109
110
|
isRotating: boolean;
|
|
110
|
-
zoom:
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
openMenu: "canvas" | "shape" | null;
|
|
114
|
-
openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
111
|
+
zoom: import("../types").Zoom;
|
|
112
|
+
openMenu: "canvas" | null;
|
|
113
|
+
openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
|
|
115
114
|
openSidebar: {
|
|
116
|
-
name:
|
|
117
|
-
tab?:
|
|
115
|
+
name: import("../types").SidebarName;
|
|
116
|
+
tab?: import("../types").SidebarTabName;
|
|
118
117
|
} | null;
|
|
119
|
-
openDialog: {
|
|
118
|
+
openDialog: null | {
|
|
120
119
|
name: "imageExport" | "help" | "jsonExport";
|
|
121
120
|
} | {
|
|
122
121
|
name: "ttd";
|
|
123
|
-
tab: "
|
|
122
|
+
tab: "text-to-diagram" | "mermaid";
|
|
124
123
|
} | {
|
|
125
124
|
name: "commandPalette";
|
|
125
|
+
} | {
|
|
126
|
+
name: "settings";
|
|
126
127
|
} | {
|
|
127
128
|
name: "elementLinkSelector";
|
|
128
|
-
sourceElementId:
|
|
129
|
-
}
|
|
129
|
+
sourceElementId: import("@excalidraw/element/types").ExcalidrawElement["id"];
|
|
130
|
+
};
|
|
130
131
|
defaultSidebarDockedPreference: boolean;
|
|
131
132
|
lastPointerDownWith: import("@excalidraw/element/types").PointerType;
|
|
132
133
|
selectedElementIds: Readonly<{
|
|
@@ -142,8 +143,8 @@ export declare const actionToggleLinearEditor: {
|
|
|
142
143
|
shouldCacheIgnoreZoom: boolean;
|
|
143
144
|
toast: {
|
|
144
145
|
message: string;
|
|
145
|
-
closable?: boolean
|
|
146
|
-
duration?: number
|
|
146
|
+
closable?: boolean;
|
|
147
|
+
duration?: number;
|
|
147
148
|
} | null;
|
|
148
149
|
zenModeEnabled: boolean;
|
|
149
150
|
theme: import("@excalidraw/element/types").Theme;
|
|
@@ -154,32 +155,13 @@ export declare const actionToggleLinearEditor: {
|
|
|
154
155
|
selectedGroupIds: {
|
|
155
156
|
[groupId: string]: boolean;
|
|
156
157
|
};
|
|
157
|
-
editingGroupId:
|
|
158
|
+
editingGroupId: import("@excalidraw/element/types").GroupId | null;
|
|
158
159
|
width: number;
|
|
159
160
|
height: number;
|
|
160
161
|
offsetTop: number;
|
|
161
162
|
offsetLeft: number;
|
|
162
163
|
fileHandle: import("browser-fs-access").FileSystemHandle | null;
|
|
163
|
-
collaborators: Map<import("../types").SocketId,
|
|
164
|
-
pointer?: import("../types").CollaboratorPointer | undefined;
|
|
165
|
-
button?: "up" | "down" | undefined;
|
|
166
|
-
selectedElementIds?: Readonly<{
|
|
167
|
-
[id: string]: true;
|
|
168
|
-
}> | undefined;
|
|
169
|
-
username?: string | null | undefined;
|
|
170
|
-
userState?: import("@excalidraw/common").UserIdleState | undefined;
|
|
171
|
-
color?: {
|
|
172
|
-
background: string;
|
|
173
|
-
stroke: string;
|
|
174
|
-
} | undefined;
|
|
175
|
-
avatarUrl?: string | undefined;
|
|
176
|
-
id?: string | undefined;
|
|
177
|
-
socketId?: import("../types").SocketId | undefined;
|
|
178
|
-
isCurrentUser?: boolean | undefined;
|
|
179
|
-
isInCall?: boolean | undefined;
|
|
180
|
-
isSpeaking?: boolean | undefined;
|
|
181
|
-
isMuted?: boolean | undefined;
|
|
182
|
-
}>>;
|
|
164
|
+
collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
|
|
183
165
|
stats: {
|
|
184
166
|
open: boolean;
|
|
185
167
|
panels: number;
|
|
@@ -192,7 +174,7 @@ export declare const actionToggleLinearEditor: {
|
|
|
192
174
|
shown: true;
|
|
193
175
|
data: import("../charts").Spreadsheet;
|
|
194
176
|
};
|
|
195
|
-
showHyperlinkPopup: false | "
|
|
177
|
+
showHyperlinkPopup: false | "info" | "editor";
|
|
196
178
|
snapLines: readonly import("../snapping").SnapLine[];
|
|
197
179
|
originSnapOffset: {
|
|
198
180
|
x: number;
|
|
@@ -202,16 +184,16 @@ export declare const actionToggleLinearEditor: {
|
|
|
202
184
|
userToFollow: import("../types").UserToFollow | null;
|
|
203
185
|
followedBy: Set<import("../types").SocketId>;
|
|
204
186
|
isCropping: boolean;
|
|
205
|
-
croppingElementId:
|
|
187
|
+
croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
|
|
206
188
|
searchMatches: Readonly<{
|
|
207
|
-
focusedId:
|
|
189
|
+
focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
|
|
208
190
|
matches: readonly import("../types").SearchMatch[];
|
|
209
191
|
}> | null;
|
|
210
192
|
activeLockedId: string | null;
|
|
211
193
|
lockedMultiSelections: {
|
|
212
194
|
[groupId: string]: true;
|
|
213
195
|
};
|
|
214
|
-
|
|
196
|
+
bindMode: import("@excalidraw/element/types").BindMode;
|
|
215
197
|
};
|
|
216
198
|
captureUpdate: "IMMEDIATELY";
|
|
217
199
|
};
|
|
@@ -229,7 +211,7 @@ export declare const actionTogglePolygon: {
|
|
|
229
211
|
category: "element";
|
|
230
212
|
};
|
|
231
213
|
predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: import("../types").AppState, _: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
|
|
232
|
-
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 | {
|
|
233
215
|
elements: ((Readonly<{
|
|
234
216
|
id: string;
|
|
235
217
|
x: number;
|
|
@@ -239,10 +221,10 @@ export declare const actionTogglePolygon: {
|
|
|
239
221
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
240
222
|
strokeWidth: number;
|
|
241
223
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
242
|
-
roundness: {
|
|
224
|
+
roundness: null | {
|
|
243
225
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
244
|
-
value?: number
|
|
245
|
-
}
|
|
226
|
+
value?: number;
|
|
227
|
+
};
|
|
246
228
|
roughness: number;
|
|
247
229
|
opacity: number;
|
|
248
230
|
width: number;
|
|
@@ -253,22 +235,18 @@ export declare const actionTogglePolygon: {
|
|
|
253
235
|
versionNonce: number;
|
|
254
236
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
255
237
|
isDeleted: boolean;
|
|
256
|
-
groupIds: readonly
|
|
238
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
257
239
|
frameId: string | null;
|
|
258
|
-
boundElements: readonly
|
|
259
|
-
id: string;
|
|
260
|
-
type: "arrow" | "text";
|
|
261
|
-
}>[] | null;
|
|
240
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
262
241
|
updated: number;
|
|
263
242
|
link: string | null;
|
|
264
243
|
locked: boolean;
|
|
265
|
-
customData?: Record<string, any
|
|
244
|
+
customData?: Record<string, any>;
|
|
266
245
|
}> & Readonly<{
|
|
267
246
|
type: "line" | "arrow";
|
|
268
247
|
points: readonly import("@excalidraw/math").LocalPoint[];
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
endBinding: import("@excalidraw/element/types").PointBinding | null;
|
|
248
|
+
startBinding: import("@excalidraw/element/types").FixedPointBinding | null;
|
|
249
|
+
endBinding: import("@excalidraw/element/types").FixedPointBinding | null;
|
|
272
250
|
startArrowhead: import("@excalidraw/element/types").Arrowhead | null;
|
|
273
251
|
endArrowhead: import("@excalidraw/element/types").Arrowhead | null;
|
|
274
252
|
}> & {
|
|
@@ -282,10 +260,10 @@ export declare const actionTogglePolygon: {
|
|
|
282
260
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
283
261
|
strokeWidth: number;
|
|
284
262
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
285
|
-
roundness: {
|
|
263
|
+
roundness: null | {
|
|
286
264
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
287
|
-
value?: number
|
|
288
|
-
}
|
|
265
|
+
value?: number;
|
|
266
|
+
};
|
|
289
267
|
roughness: number;
|
|
290
268
|
opacity: number;
|
|
291
269
|
width: number;
|
|
@@ -296,16 +274,13 @@ export declare const actionTogglePolygon: {
|
|
|
296
274
|
versionNonce: number;
|
|
297
275
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
298
276
|
isDeleted: boolean;
|
|
299
|
-
groupIds: readonly
|
|
277
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
300
278
|
frameId: string | null;
|
|
301
|
-
boundElements: readonly
|
|
302
|
-
id: string;
|
|
303
|
-
type: "arrow" | "text";
|
|
304
|
-
}>[] | null;
|
|
279
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
305
280
|
updated: number;
|
|
306
281
|
link: string | null;
|
|
307
282
|
locked: boolean;
|
|
308
|
-
customData?: Record<string, any
|
|
283
|
+
customData?: Record<string, any>;
|
|
309
284
|
}> & {
|
|
310
285
|
type: "selection";
|
|
311
286
|
} & {
|
|
@@ -319,10 +294,10 @@ export declare const actionTogglePolygon: {
|
|
|
319
294
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
320
295
|
strokeWidth: number;
|
|
321
296
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
322
|
-
roundness: {
|
|
297
|
+
roundness: null | {
|
|
323
298
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
324
|
-
value?: number
|
|
325
|
-
}
|
|
299
|
+
value?: number;
|
|
300
|
+
};
|
|
326
301
|
roughness: number;
|
|
327
302
|
opacity: number;
|
|
328
303
|
width: number;
|
|
@@ -333,16 +308,13 @@ export declare const actionTogglePolygon: {
|
|
|
333
308
|
versionNonce: number;
|
|
334
309
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
335
310
|
isDeleted: boolean;
|
|
336
|
-
groupIds: readonly
|
|
311
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
337
312
|
frameId: string | null;
|
|
338
|
-
boundElements: readonly
|
|
339
|
-
id: string;
|
|
340
|
-
type: "arrow" | "text";
|
|
341
|
-
}>[] | null;
|
|
313
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
342
314
|
updated: number;
|
|
343
315
|
link: string | null;
|
|
344
316
|
locked: boolean;
|
|
345
|
-
customData?: Record<string, any
|
|
317
|
+
customData?: Record<string, any>;
|
|
346
318
|
}> & {
|
|
347
319
|
type: "rectangle";
|
|
348
320
|
} & {
|
|
@@ -356,10 +328,10 @@ export declare const actionTogglePolygon: {
|
|
|
356
328
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
357
329
|
strokeWidth: number;
|
|
358
330
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
359
|
-
roundness: {
|
|
331
|
+
roundness: null | {
|
|
360
332
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
361
|
-
value?: number
|
|
362
|
-
}
|
|
333
|
+
value?: number;
|
|
334
|
+
};
|
|
363
335
|
roughness: number;
|
|
364
336
|
opacity: number;
|
|
365
337
|
width: number;
|
|
@@ -370,16 +342,13 @@ export declare const actionTogglePolygon: {
|
|
|
370
342
|
versionNonce: number;
|
|
371
343
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
372
344
|
isDeleted: boolean;
|
|
373
|
-
groupIds: readonly
|
|
345
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
374
346
|
frameId: string | null;
|
|
375
|
-
boundElements: readonly
|
|
376
|
-
id: string;
|
|
377
|
-
type: "arrow" | "text";
|
|
378
|
-
}>[] | null;
|
|
347
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
379
348
|
updated: number;
|
|
380
349
|
link: string | null;
|
|
381
350
|
locked: boolean;
|
|
382
|
-
customData?: Record<string, any
|
|
351
|
+
customData?: Record<string, any>;
|
|
383
352
|
}> & {
|
|
384
353
|
type: "diamond";
|
|
385
354
|
} & {
|
|
@@ -393,10 +362,10 @@ export declare const actionTogglePolygon: {
|
|
|
393
362
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
394
363
|
strokeWidth: number;
|
|
395
364
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
396
|
-
roundness: {
|
|
365
|
+
roundness: null | {
|
|
397
366
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
398
|
-
value?: number
|
|
399
|
-
}
|
|
367
|
+
value?: number;
|
|
368
|
+
};
|
|
400
369
|
roughness: number;
|
|
401
370
|
opacity: number;
|
|
402
371
|
width: number;
|
|
@@ -407,16 +376,13 @@ export declare const actionTogglePolygon: {
|
|
|
407
376
|
versionNonce: number;
|
|
408
377
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
409
378
|
isDeleted: boolean;
|
|
410
|
-
groupIds: readonly
|
|
379
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
411
380
|
frameId: string | null;
|
|
412
|
-
boundElements: readonly
|
|
413
|
-
id: string;
|
|
414
|
-
type: "arrow" | "text";
|
|
415
|
-
}>[] | null;
|
|
381
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
416
382
|
updated: number;
|
|
417
383
|
link: string | null;
|
|
418
384
|
locked: boolean;
|
|
419
|
-
customData?: Record<string, any
|
|
385
|
+
customData?: Record<string, any>;
|
|
420
386
|
}> & {
|
|
421
387
|
type: "ellipse";
|
|
422
388
|
} & {
|
|
@@ -430,10 +396,10 @@ export declare const actionTogglePolygon: {
|
|
|
430
396
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
431
397
|
strokeWidth: number;
|
|
432
398
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
433
|
-
roundness: {
|
|
399
|
+
roundness: null | {
|
|
434
400
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
435
|
-
value?: number
|
|
436
|
-
}
|
|
401
|
+
value?: number;
|
|
402
|
+
};
|
|
437
403
|
roughness: number;
|
|
438
404
|
opacity: number;
|
|
439
405
|
width: number;
|
|
@@ -444,16 +410,13 @@ export declare const actionTogglePolygon: {
|
|
|
444
410
|
versionNonce: number;
|
|
445
411
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
446
412
|
isDeleted: boolean;
|
|
447
|
-
groupIds: readonly
|
|
413
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
448
414
|
frameId: string | null;
|
|
449
|
-
boundElements: readonly
|
|
450
|
-
id: string;
|
|
451
|
-
type: "arrow" | "text";
|
|
452
|
-
}>[] | null;
|
|
415
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
453
416
|
updated: number;
|
|
454
417
|
link: string | null;
|
|
455
418
|
locked: boolean;
|
|
456
|
-
customData?: Record<string, any
|
|
419
|
+
customData?: Record<string, any>;
|
|
457
420
|
}> & Readonly<{
|
|
458
421
|
type: "embeddable";
|
|
459
422
|
}> & {
|
|
@@ -467,10 +430,10 @@ export declare const actionTogglePolygon: {
|
|
|
467
430
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
468
431
|
strokeWidth: number;
|
|
469
432
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
470
|
-
roundness: {
|
|
433
|
+
roundness: null | {
|
|
471
434
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
472
|
-
value?: number
|
|
473
|
-
}
|
|
435
|
+
value?: number;
|
|
436
|
+
};
|
|
474
437
|
roughness: number;
|
|
475
438
|
opacity: number;
|
|
476
439
|
width: number;
|
|
@@ -481,21 +444,18 @@ export declare const actionTogglePolygon: {
|
|
|
481
444
|
versionNonce: number;
|
|
482
445
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
483
446
|
isDeleted: boolean;
|
|
484
|
-
groupIds: readonly
|
|
447
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
485
448
|
frameId: string | null;
|
|
486
|
-
boundElements: readonly
|
|
487
|
-
id: string;
|
|
488
|
-
type: "arrow" | "text";
|
|
489
|
-
}>[] | null;
|
|
449
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
490
450
|
updated: number;
|
|
491
451
|
link: string | null;
|
|
492
452
|
locked: boolean;
|
|
493
|
-
customData?: Record<string, any
|
|
453
|
+
customData?: Record<string, any>;
|
|
494
454
|
}> & Readonly<{
|
|
495
455
|
type: "iframe";
|
|
496
456
|
customData?: {
|
|
497
|
-
generationData?: import("@excalidraw/element/types").MagicGenerationData
|
|
498
|
-
}
|
|
457
|
+
generationData?: import("@excalidraw/element/types").MagicGenerationData;
|
|
458
|
+
};
|
|
499
459
|
}> & {
|
|
500
460
|
index: import("@excalidraw/element/types").FractionalIndex;
|
|
501
461
|
}) | (Readonly<{
|
|
@@ -507,10 +467,10 @@ export declare const actionTogglePolygon: {
|
|
|
507
467
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
508
468
|
strokeWidth: number;
|
|
509
469
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
510
|
-
roundness: {
|
|
470
|
+
roundness: null | {
|
|
511
471
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
512
|
-
value?: number
|
|
513
|
-
}
|
|
472
|
+
value?: number;
|
|
473
|
+
};
|
|
514
474
|
roughness: number;
|
|
515
475
|
opacity: number;
|
|
516
476
|
width: number;
|
|
@@ -521,20 +481,17 @@ export declare const actionTogglePolygon: {
|
|
|
521
481
|
versionNonce: number;
|
|
522
482
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
523
483
|
isDeleted: boolean;
|
|
524
|
-
groupIds: readonly
|
|
484
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
525
485
|
frameId: string | null;
|
|
526
|
-
boundElements: readonly
|
|
527
|
-
id: string;
|
|
528
|
-
type: "arrow" | "text";
|
|
529
|
-
}>[] | null;
|
|
486
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
530
487
|
updated: number;
|
|
531
488
|
link: string | null;
|
|
532
489
|
locked: boolean;
|
|
533
|
-
customData?: Record<string, any
|
|
490
|
+
customData?: Record<string, any>;
|
|
534
491
|
}> & Readonly<{
|
|
535
492
|
type: "image";
|
|
536
493
|
fileId: import("@excalidraw/element/types").FileId | null;
|
|
537
|
-
status: "pending" | "
|
|
494
|
+
status: "pending" | "saved" | "error";
|
|
538
495
|
scale: [number, number];
|
|
539
496
|
crop: import("@excalidraw/element/types").ImageCrop | null;
|
|
540
497
|
}> & {
|
|
@@ -548,10 +505,10 @@ export declare const actionTogglePolygon: {
|
|
|
548
505
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
549
506
|
strokeWidth: number;
|
|
550
507
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
551
|
-
roundness: {
|
|
508
|
+
roundness: null | {
|
|
552
509
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
553
|
-
value?: number
|
|
554
|
-
}
|
|
510
|
+
value?: number;
|
|
511
|
+
};
|
|
555
512
|
roughness: number;
|
|
556
513
|
opacity: number;
|
|
557
514
|
width: number;
|
|
@@ -562,16 +519,13 @@ export declare const actionTogglePolygon: {
|
|
|
562
519
|
versionNonce: number;
|
|
563
520
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
564
521
|
isDeleted: boolean;
|
|
565
|
-
groupIds: readonly
|
|
522
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
566
523
|
frameId: string | null;
|
|
567
|
-
boundElements: readonly
|
|
568
|
-
id: string;
|
|
569
|
-
type: "arrow" | "text";
|
|
570
|
-
}>[] | null;
|
|
524
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
571
525
|
updated: number;
|
|
572
526
|
link: string | null;
|
|
573
527
|
locked: boolean;
|
|
574
|
-
customData?: Record<string, any
|
|
528
|
+
customData?: Record<string, any>;
|
|
575
529
|
}> & {
|
|
576
530
|
type: "frame";
|
|
577
531
|
name: string | null;
|
|
@@ -586,10 +540,10 @@ export declare const actionTogglePolygon: {
|
|
|
586
540
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
587
541
|
strokeWidth: number;
|
|
588
542
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
589
|
-
roundness: {
|
|
543
|
+
roundness: null | {
|
|
590
544
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
591
|
-
value?: number
|
|
592
|
-
}
|
|
545
|
+
value?: number;
|
|
546
|
+
};
|
|
593
547
|
roughness: number;
|
|
594
548
|
opacity: number;
|
|
595
549
|
width: number;
|
|
@@ -600,16 +554,13 @@ export declare const actionTogglePolygon: {
|
|
|
600
554
|
versionNonce: number;
|
|
601
555
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
602
556
|
isDeleted: boolean;
|
|
603
|
-
groupIds: readonly
|
|
557
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
604
558
|
frameId: string | null;
|
|
605
|
-
boundElements: readonly
|
|
606
|
-
id: string;
|
|
607
|
-
type: "arrow" | "text";
|
|
608
|
-
}>[] | null;
|
|
559
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
609
560
|
updated: number;
|
|
610
561
|
link: string | null;
|
|
611
562
|
locked: boolean;
|
|
612
|
-
customData?: Record<string, any
|
|
563
|
+
customData?: Record<string, any>;
|
|
613
564
|
}> & {
|
|
614
565
|
type: "magicframe";
|
|
615
566
|
name: string | null;
|
|
@@ -624,10 +575,10 @@ export declare const actionTogglePolygon: {
|
|
|
624
575
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
625
576
|
strokeWidth: number;
|
|
626
577
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
627
|
-
roundness: {
|
|
578
|
+
roundness: null | {
|
|
628
579
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
629
|
-
value?: number
|
|
630
|
-
}
|
|
580
|
+
value?: number;
|
|
581
|
+
};
|
|
631
582
|
roughness: number;
|
|
632
583
|
opacity: number;
|
|
633
584
|
width: number;
|
|
@@ -638,24 +589,21 @@ export declare const actionTogglePolygon: {
|
|
|
638
589
|
versionNonce: number;
|
|
639
590
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
640
591
|
isDeleted: boolean;
|
|
641
|
-
groupIds: readonly
|
|
592
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
642
593
|
frameId: string | null;
|
|
643
|
-
boundElements: readonly
|
|
644
|
-
id: string;
|
|
645
|
-
type: "arrow" | "text";
|
|
646
|
-
}>[] | null;
|
|
594
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
647
595
|
updated: number;
|
|
648
596
|
link: string | null;
|
|
649
597
|
locked: boolean;
|
|
650
|
-
customData?: Record<string, any
|
|
598
|
+
customData?: Record<string, any>;
|
|
651
599
|
}> & Readonly<{
|
|
652
600
|
type: "text";
|
|
653
601
|
fontSize: number;
|
|
654
|
-
fontFamily:
|
|
602
|
+
fontFamily: import("@excalidraw/element/types").FontFamilyValues;
|
|
655
603
|
text: string;
|
|
656
|
-
textAlign:
|
|
657
|
-
verticalAlign:
|
|
658
|
-
containerId:
|
|
604
|
+
textAlign: import("@excalidraw/element/types").TextAlign;
|
|
605
|
+
verticalAlign: import("@excalidraw/element/types").VerticalAlign;
|
|
606
|
+
containerId: import("@excalidraw/element/types").ExcalidrawGenericElement["id"] | null;
|
|
659
607
|
originalText: string;
|
|
660
608
|
autoResize: boolean;
|
|
661
609
|
lineHeight: number & {
|
|
@@ -672,10 +620,10 @@ export declare const actionTogglePolygon: {
|
|
|
672
620
|
fillStyle: import("@excalidraw/element/types").FillStyle;
|
|
673
621
|
strokeWidth: number;
|
|
674
622
|
strokeStyle: import("@excalidraw/element/types").StrokeStyle;
|
|
675
|
-
roundness: {
|
|
623
|
+
roundness: null | {
|
|
676
624
|
type: import("@excalidraw/element/types").RoundnessType;
|
|
677
|
-
value?: number
|
|
678
|
-
}
|
|
625
|
+
value?: number;
|
|
626
|
+
};
|
|
679
627
|
roughness: number;
|
|
680
628
|
opacity: number;
|
|
681
629
|
width: number;
|
|
@@ -686,22 +634,18 @@ export declare const actionTogglePolygon: {
|
|
|
686
634
|
versionNonce: number;
|
|
687
635
|
index: import("@excalidraw/element/types").FractionalIndex | null;
|
|
688
636
|
isDeleted: boolean;
|
|
689
|
-
groupIds: readonly
|
|
637
|
+
groupIds: readonly import("@excalidraw/element/types").GroupId[];
|
|
690
638
|
frameId: string | null;
|
|
691
|
-
boundElements: readonly
|
|
692
|
-
id: string;
|
|
693
|
-
type: "arrow" | "text";
|
|
694
|
-
}>[] | null;
|
|
639
|
+
boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
|
|
695
640
|
updated: number;
|
|
696
641
|
link: string | null;
|
|
697
642
|
locked: boolean;
|
|
698
|
-
customData?: Record<string, any
|
|
643
|
+
customData?: Record<string, any>;
|
|
699
644
|
}> & Readonly<{
|
|
700
645
|
type: "freedraw";
|
|
701
646
|
points: readonly import("@excalidraw/math").LocalPoint[];
|
|
702
647
|
pressures: readonly number[];
|
|
703
648
|
simulatePressure: boolean;
|
|
704
|
-
lastCommittedPoint: import("@excalidraw/math").LocalPoint | null;
|
|
705
649
|
}> & {
|
|
706
650
|
index: import("@excalidraw/element/types").FractionalIndex;
|
|
707
651
|
}))[];
|