@zsviczian/excalidraw 0.18.0-6 → 0.18.0-60

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.
Files changed (199) hide show
  1. package/dist/excalidraw.development.js +757 -504
  2. package/dist/excalidraw.production.min.js +1 -1
  3. package/dist/excalidraw.production.min.js.LICENSE.txt +0 -2
  4. package/dist/styles.development.css +1080 -437
  5. package/dist/styles.production.css +26 -22
  6. package/package.json +15 -4
  7. package/types/common/src/commonObsidianUtils.d.ts +20 -0
  8. package/types/common/src/constants.d.ts +42 -18
  9. package/types/common/src/editorInterface.d.ts +35 -0
  10. package/types/{excalidraw → common/src}/emitter.d.ts +1 -1
  11. package/types/common/src/font-metadata.d.ts +4 -2
  12. package/types/common/src/index.d.ts +4 -0
  13. package/types/common/src/utility-types.d.ts +5 -0
  14. package/types/common/src/utils.d.ts +25 -6
  15. package/types/{excalidraw → common/src}/visualdebug.d.ts +2 -2
  16. package/types/{excalidraw/scene → element/src}/Scene.d.ts +16 -15
  17. package/types/element/src/align.d.ts +4 -3
  18. package/types/element/src/binding.d.ts +62 -41
  19. package/types/element/src/bounds.d.ts +14 -6
  20. package/types/element/src/collision.d.ts +23 -13
  21. package/types/element/src/cropElement.d.ts +1 -1
  22. package/types/{excalidraw/change.d.ts → element/src/delta.d.ts} +77 -40
  23. package/types/element/src/distance.d.ts +2 -2
  24. package/types/element/src/distribute.d.ts +2 -1
  25. package/types/element/src/dragElements.d.ts +3 -2
  26. package/types/element/src/duplicate.d.ts +10 -13
  27. package/types/element/src/elbowArrow.d.ts +1 -1
  28. package/types/element/src/flowchart.d.ts +3 -2
  29. package/types/element/src/fractionalIndex.d.ts +9 -3
  30. package/types/element/src/frame.d.ts +5 -4
  31. package/types/element/src/groups.d.ts +1 -0
  32. package/types/element/src/index.d.ts +44 -5
  33. package/types/element/src/linearElementEditor.d.ts +34 -50
  34. package/types/element/src/mutateElement.d.ts +11 -3
  35. package/types/element/src/newElement.d.ts +6 -4
  36. package/types/element/src/positionElementsOnGrid.d.ts +2 -0
  37. package/types/element/src/renderElement.d.ts +5 -2
  38. package/types/element/src/resizeElements.d.ts +6 -5
  39. package/types/element/src/resizeTest.d.ts +5 -4
  40. package/types/element/src/selection.d.ts +11 -5
  41. package/types/element/src/shape.d.ts +42 -0
  42. package/types/element/src/sizeHelpers.d.ts +2 -2
  43. package/types/element/src/store.d.ts +237 -0
  44. package/types/element/src/textElement.d.ts +4 -3
  45. package/types/element/src/transformHandles.d.ts +5 -4
  46. package/types/element/src/typeChecks.d.ts +20 -3
  47. package/types/element/src/types.d.ts +31 -12
  48. package/types/element/src/utils.d.ts +17 -6
  49. package/types/element/src/zindex.d.ts +8 -2
  50. package/types/excalidraw/actions/actionAddToLibrary.d.ts +88 -58
  51. package/types/excalidraw/actions/actionAlign.d.ts +6 -6
  52. package/types/excalidraw/actions/actionBoundText.d.ts +61 -41
  53. package/types/excalidraw/actions/actionCanvas.d.ts +430 -519
  54. package/types/excalidraw/actions/actionClipboard.d.ts +81 -944
  55. package/types/excalidraw/actions/actionCropEditor.d.ts +30 -20
  56. package/types/excalidraw/actions/actionDeleteSelected.d.ts +97 -68
  57. package/types/excalidraw/actions/actionDistribute.d.ts +2 -2
  58. package/types/excalidraw/actions/actionDuplicateSelection.d.ts +2 -2
  59. package/types/excalidraw/actions/actionElementLink.d.ts +28 -20
  60. package/types/excalidraw/actions/actionElementLock.d.ts +73 -54
  61. package/types/excalidraw/actions/actionEmbeddable.d.ts +30 -20
  62. package/types/excalidraw/actions/actionExport.d.ts +142 -1185
  63. package/types/excalidraw/actions/actionFinalize.d.ts +10 -424
  64. package/types/excalidraw/actions/actionFlip.d.ts +2 -2
  65. package/types/excalidraw/actions/actionFrame.d.ts +176 -129
  66. package/types/excalidraw/actions/actionGroup.d.ts +60 -40
  67. package/types/excalidraw/actions/actionHistory.d.ts +1 -2
  68. package/types/excalidraw/actions/actionLinearEditor.d.ts +564 -22
  69. package/types/excalidraw/actions/actionLink.d.ts +27 -17
  70. package/types/excalidraw/actions/actionMenu.d.ts +27 -457
  71. package/types/excalidraw/actions/actionNavigate.d.ts +21 -431
  72. package/types/excalidraw/actions/actionProperties.d.ts +169 -2702
  73. package/types/excalidraw/actions/actionSelectAll.d.ts +30 -20
  74. package/types/excalidraw/actions/actionStyles.d.ts +31 -21
  75. package/types/excalidraw/actions/actionTextAutoResize.d.ts +1 -1
  76. package/types/excalidraw/actions/actionToggleGridMode.d.ts +29 -19
  77. package/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +29 -19
  78. package/types/excalidraw/actions/actionToggleSearchMenu.d.ts +27 -224
  79. package/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +19 -0
  80. package/types/excalidraw/actions/actionToggleStats.d.ts +29 -19
  81. package/types/excalidraw/actions/actionToggleViewMode.d.ts +30 -20
  82. package/types/excalidraw/actions/actionToggleZenMode.d.ts +30 -20
  83. package/types/excalidraw/actions/actionTrayMenu.d.ts +229 -0
  84. package/types/excalidraw/actions/actionZindex.d.ts +2 -2
  85. package/types/excalidraw/actions/index.d.ts +4 -2
  86. package/types/excalidraw/actions/manager.d.ts +1 -1
  87. package/types/excalidraw/actions/register.d.ts +1 -1
  88. package/types/excalidraw/actions/types.d.ts +7 -6
  89. package/types/excalidraw/appState.d.ts +22 -7
  90. package/types/excalidraw/clipboard.d.ts +68 -5
  91. package/types/excalidraw/components/Actions.d.ts +20 -7
  92. package/types/excalidraw/components/App.d.ts +68 -46
  93. package/types/excalidraw/components/ButtonIcon.d.ts +1 -0
  94. package/types/excalidraw/components/ColorPicker/ColorInput.d.ts +2 -1
  95. package/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +5 -1
  96. package/types/excalidraw/components/ColorPicker/CustomColorList.d.ts +1 -1
  97. package/types/excalidraw/components/ColorPicker/Picker.d.ts +4 -3
  98. package/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +3 -3
  99. package/types/excalidraw/components/ColorPicker/ShadeList.d.ts +3 -2
  100. package/types/excalidraw/components/ColorPicker/TopPicks.d.ts +1 -1
  101. package/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +1 -1
  102. package/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +1 -1
  103. package/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +1 -0
  104. package/types/excalidraw/components/CommandPalette/types.d.ts +1 -2
  105. package/types/excalidraw/components/ConvertElementTypePopup.d.ts +23 -0
  106. package/types/excalidraw/components/ElementLinkDialog.d.ts +4 -3
  107. package/types/excalidraw/components/Ellipsify.d.ts +3 -0
  108. package/types/excalidraw/components/ExcalidrawLogo.d.ts +1 -1
  109. package/types/excalidraw/components/FilledButton.d.ts +1 -1
  110. package/types/excalidraw/components/FixedSideContainer.d.ts +2 -1
  111. package/types/excalidraw/components/FontPicker/FontPicker.d.ts +2 -1
  112. package/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +3 -1
  113. package/types/excalidraw/components/HintViewer.d.ts +4 -3
  114. package/types/excalidraw/components/InlineIcon.d.ts +3 -1
  115. package/types/excalidraw/components/LayerUI.d.ts +2 -1
  116. package/types/excalidraw/components/LibraryMenuSection.d.ts +1 -1
  117. package/types/excalidraw/components/LinkButton.d.ts +4 -0
  118. package/types/excalidraw/components/MobileMenu.d.ts +4 -5
  119. package/types/excalidraw/components/MobileToolBar.d.ts +10 -0
  120. package/types/excalidraw/components/Popover.d.ts +2 -1
  121. package/types/excalidraw/components/PropertiesPopover.d.ts +1 -0
  122. package/types/excalidraw/components/{ButtonIconSelect.d.ts → RadioSelection.d.ts} +1 -1
  123. package/types/excalidraw/components/Range.d.ts +3 -3
  124. package/types/excalidraw/components/Section.d.ts +1 -0
  125. package/types/excalidraw/components/Stats/Angle.d.ts +1 -1
  126. package/types/excalidraw/components/Stats/CanvasGrid.d.ts +1 -1
  127. package/types/excalidraw/components/Stats/CanvasGridSize.d.ts +1 -1
  128. package/types/excalidraw/components/Stats/Collapsible.d.ts +2 -1
  129. package/types/excalidraw/components/Stats/Dimension.d.ts +1 -1
  130. package/types/excalidraw/components/Stats/DragInput.d.ts +12 -2
  131. package/types/excalidraw/components/Stats/FontSize.d.ts +1 -1
  132. package/types/excalidraw/components/Stats/MultiAngle.d.ts +1 -1
  133. package/types/excalidraw/components/Stats/MultiDimension.d.ts +1 -1
  134. package/types/excalidraw/components/Stats/MultiFontSize.d.ts +1 -1
  135. package/types/excalidraw/components/Stats/MultiPosition.d.ts +1 -1
  136. package/types/excalidraw/components/Stats/Position.d.ts +1 -1
  137. package/types/excalidraw/components/Stats/utils.d.ts +4 -11
  138. package/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +1 -2
  139. package/types/excalidraw/components/TextField.d.ts +1 -0
  140. package/types/excalidraw/components/ToolPopover.d.ts +25 -0
  141. package/types/excalidraw/components/TrayMenu.d.ts +26 -0
  142. package/types/excalidraw/components/UnlockPopup.d.ts +8 -0
  143. package/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +7 -3
  144. package/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +4 -2
  145. package/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +2 -1
  146. package/types/excalidraw/components/hyperlink/Hyperlink.d.ts +3 -2
  147. package/types/excalidraw/components/hyperlink/helpers.d.ts +2 -1
  148. package/types/excalidraw/components/icons.d.ts +17 -0
  149. package/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +14 -1
  150. package/types/excalidraw/components/main-menu/MainMenu.d.ts +0 -3
  151. package/types/excalidraw/components/shapes.d.ts +115 -5
  152. package/types/excalidraw/data/blob.d.ts +3 -7
  153. package/types/excalidraw/data/reconcile.d.ts +1 -0
  154. package/types/excalidraw/data/restore.d.ts +7 -2
  155. package/types/excalidraw/data/transform.d.ts +1 -1
  156. package/types/excalidraw/data/types.d.ts +4 -1
  157. package/types/excalidraw/editor-jotai.d.ts +6 -6
  158. package/types/excalidraw/eraser/index.d.ts +0 -2
  159. package/types/excalidraw/fonts/Fonts.d.ts +1 -1
  160. package/types/excalidraw/history.d.ts +30 -22
  161. package/types/excalidraw/hooks/useEmitter.d.ts +1 -1
  162. package/types/excalidraw/hooks/useLibraryItemSvg.d.ts +1 -1
  163. package/types/excalidraw/hooks/useOutsideClick.d.ts +3 -1
  164. package/types/excalidraw/hooks/useTextEditorFocus.d.ts +14 -0
  165. package/types/excalidraw/index.d.ts +16 -15
  166. package/types/excalidraw/lasso/index.d.ts +1 -0
  167. package/types/excalidraw/lasso/utils.d.ts +2 -1
  168. package/types/excalidraw/obsidianUtils.d.ts +22 -9
  169. package/types/excalidraw/renderer/animation.d.ts +12 -0
  170. package/types/excalidraw/renderer/helpers.d.ts +3 -2
  171. package/types/excalidraw/renderer/interactiveScene.d.ts +5 -13
  172. package/types/excalidraw/renderer/staticScene.d.ts +4 -1
  173. package/types/excalidraw/scene/Renderer.d.ts +1 -2
  174. package/types/excalidraw/scene/index.d.ts +2 -2
  175. package/types/excalidraw/scene/scrollbars.d.ts +2 -3
  176. package/types/excalidraw/scene/types.d.ts +17 -3
  177. package/types/excalidraw/shortcut.d.ts +1 -0
  178. package/types/excalidraw/snapping.d.ts +2 -2
  179. package/types/excalidraw/types.d.ts +83 -33
  180. package/types/excalidraw/webpack.dev.config.d.ts +2 -0
  181. package/types/excalidraw/webpack.prod.config.d.ts +2 -0
  182. package/types/excalidraw/wysiwyg/textWysiwyg.d.ts +3 -1
  183. package/types/math/src/angle.d.ts +2 -0
  184. package/types/math/src/constants.d.ts +3 -0
  185. package/types/math/src/curve.d.ts +34 -0
  186. package/types/math/src/index.d.ts +1 -0
  187. package/types/math/src/point.d.ts +1 -1
  188. package/types/math/src/rectangle.d.ts +2 -0
  189. package/types/math/src/segment.d.ts +1 -0
  190. package/types/math/src/vector.d.ts +8 -2
  191. package/types/utils/src/bbox.d.ts +1 -1
  192. package/types/utils/src/index.d.ts +1 -1
  193. package/types/utils/src/withinBounds.d.ts +1 -1
  194. package/types/element/src/Shape.d.ts +0 -17
  195. package/types/element/src/ShapeCache.d.ts +0 -25
  196. package/types/element/src/shapes.d.ts +0 -23
  197. package/types/excalidraw/components/ButtonSelect.d.ts +0 -9
  198. package/types/excalidraw/store.d.ts +0 -129
  199. package/types/utils/src/collision.d.ts +0 -8
@@ -1,698 +1,16 @@
1
- export declare const actionCopy: {
2
- name: "copy";
3
- label: string;
4
- icon: import("react/jsx-runtime").JSX.Element;
5
- trackEvent: {
6
- category: "element";
7
- };
8
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, event: ClipboardEvent | null, app: import("../types").AppClassProperties) => Promise<{
9
- captureUpdate: "EVENTUALLY";
10
- appState: {
11
- errorMessage: any;
12
- contextMenu: {
13
- items: import("../components/ContextMenu").ContextMenuItems;
14
- top: number;
15
- left: number;
16
- } | null;
17
- showWelcomeScreen: boolean;
18
- isLoading: boolean;
19
- activeEmbeddable: {
20
- element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
21
- state: "active" | "hover";
22
- } | null;
23
- newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
24
- resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
25
- multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
26
- selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
27
- isBindingEnabled: boolean;
28
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
29
- suggestedBindings: import("@excalidraw/element/binding").SuggestedBinding[];
30
- frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
31
- frameRendering: {
32
- enabled: boolean;
33
- name: boolean;
34
- outline: boolean;
35
- clip: boolean;
36
- };
37
- editingFrame: string | null;
38
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
39
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
40
- editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
41
- activeTool: {
42
- lastActiveTool: import("../types").ActiveTool | null;
43
- locked: boolean;
44
- fromSelection: boolean;
45
- } & import("../types").ActiveTool;
46
- penMode: boolean;
47
- penDetected: boolean;
48
- exportBackground: boolean;
49
- exportEmbedScene: boolean;
50
- exportWithDarkMode: boolean;
51
- exportScale: number;
52
- currentItemStrokeColor: string;
53
- currentItemBackgroundColor: string;
54
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
55
- currentItemStrokeWidth: number;
56
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
57
- currentItemRoughness: number;
58
- currentItemOpacity: number;
59
- currentItemFontFamily: number;
60
- currentItemFontSize: number;
61
- currentItemTextAlign: string;
62
- currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
63
- currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
64
- currentHoveredFontFamily: number | null;
65
- currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
66
- currentItemArrowType: "round" | "sharp" | "elbow";
67
- viewBackgroundColor: string;
68
- scrollX: number;
69
- scrollY: number;
70
- cursorButton: "up" | "down";
71
- scrolledOutside: boolean;
72
- name: string | null;
73
- isResizing: boolean;
74
- isRotating: boolean;
75
- zoom: Readonly<{
76
- value: import("../types").NormalizedZoomValue;
77
- }>;
78
- openMenu: "shape" | "canvas" | null;
79
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
80
- openSidebar: {
81
- name: string;
82
- tab?: string | undefined;
83
- } | null;
84
- openDialog: {
85
- name: "help" | "imageExport" | "jsonExport";
86
- } | {
87
- name: "ttd";
88
- tab: "mermaid" | "text-to-diagram";
89
- } | {
90
- name: "commandPalette";
91
- } | {
92
- name: "elementLinkSelector";
93
- sourceElementId: string;
94
- } | null;
95
- defaultSidebarDockedPreference: boolean;
96
- lastPointerDownWith: import("@excalidraw/element/types").PointerType;
97
- selectedElementIds: Readonly<{
98
- [id: string]: true;
99
- }>;
100
- hoveredElementIds: Readonly<{
101
- [id: string]: true;
102
- }>;
103
- previousSelectedElementIds: {
104
- [id: string]: true;
105
- };
106
- selectedElementsAreBeingDragged: boolean;
107
- shouldCacheIgnoreZoom: boolean;
108
- toast: {
109
- message: string;
110
- closable?: boolean | undefined;
111
- duration?: number | undefined;
112
- } | null;
113
- zenModeEnabled: boolean;
114
- theme: import("@excalidraw/element/types").Theme;
115
- gridSize: number;
116
- gridStep: number;
117
- gridModeEnabled: boolean;
118
- viewModeEnabled: boolean;
119
- selectedGroupIds: {
120
- [groupId: string]: boolean;
121
- };
122
- editingGroupId: string | null;
123
- width: number;
124
- height: number;
125
- offsetTop: number;
126
- offsetLeft: number;
127
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
128
- collaborators: Map<import("../types").SocketId, Readonly<{
129
- pointer?: import("../types").CollaboratorPointer | undefined;
130
- button?: "up" | "down" | undefined;
131
- selectedElementIds?: Readonly<{
132
- [id: string]: true;
133
- }> | undefined;
134
- username?: string | null | undefined;
135
- userState?: import("@excalidraw/common").UserIdleState | undefined;
136
- color?: {
137
- background: string;
138
- stroke: string;
139
- } | undefined;
140
- avatarUrl?: string | undefined;
141
- id?: string | undefined;
142
- socketId?: import("../types").SocketId | undefined;
143
- isCurrentUser?: boolean | undefined;
144
- isInCall?: boolean | undefined;
145
- isSpeaking?: boolean | undefined;
146
- isMuted?: boolean | undefined;
147
- }>>;
148
- stats: {
149
- open: boolean;
150
- panels: number;
151
- };
152
- currentChartType: import("@excalidraw/element/types").ChartType;
153
- pasteDialog: {
154
- shown: false;
155
- data: null;
156
- } | {
157
- shown: true;
158
- data: import("../charts").Spreadsheet;
159
- };
160
- pendingImageElementId: string | null;
161
- showHyperlinkPopup: false | "editor" | "info";
162
- linkOpacity: number;
163
- trayModeEnabled: boolean;
164
- colorPalette?: {
165
- canvasBackground: import("@excalidraw/common").ColorPaletteCustom;
166
- elementBackground: import("@excalidraw/common").ColorPaletteCustom;
167
- elementStroke: import("@excalidraw/common").ColorPaletteCustom;
168
- topPicks: {
169
- canvasBackground: [string, string, string, string, string];
170
- elementStroke: [string, string, string, string, string];
171
- elementBackground: [string, string, string, string, string];
172
- };
173
- } | undefined;
174
- allowWheelZoom?: boolean | undefined;
175
- allowPinchZoom?: boolean | undefined;
176
- pinnedScripts?: string[] | undefined;
177
- customPens?: any[] | undefined;
178
- currentStrokeOptions?: any;
179
- resetCustomPen?: any;
180
- gridColor: {
181
- Bold: string;
182
- Regular: string;
183
- };
184
- highlightSearchResult: boolean;
185
- dynamicStyle: {
186
- [x: string]: string;
187
- };
188
- frameColor: {
189
- stroke: string;
190
- fill: string;
191
- nameColor: string;
192
- };
193
- invertBindingBehaviour: boolean;
194
- selectedLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
195
- snapLines: readonly import("../snapping").SnapLine[];
196
- originSnapOffset: {
197
- x: number;
198
- y: number;
199
- } | null;
200
- objectsSnapModeEnabled: boolean;
201
- userToFollow: import("../types").UserToFollow | null;
202
- followedBy: Set<import("../types").SocketId>;
203
- isCropping: boolean;
204
- croppingElementId: string | null;
205
- searchMatches: readonly {
206
- id: string;
207
- focus: boolean;
208
- matchedLines: {
209
- offsetX: number;
210
- offsetY: number;
211
- width: number;
212
- height: number;
213
- }[];
214
- }[];
215
- };
216
- } | {
217
- captureUpdate: "EVENTUALLY";
218
- appState?: undefined;
219
- }>;
220
- keyTest: undefined;
221
- } & {
222
- keyTest?: undefined;
223
- };
224
- export declare const actionPaste: {
225
- name: "paste";
226
- label: string;
227
- trackEvent: {
228
- category: "element";
229
- };
230
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, data: any, app: import("../types").AppClassProperties) => Promise<false | {
231
- captureUpdate: "EVENTUALLY";
232
- appState: {
233
- errorMessage: string;
234
- contextMenu: {
235
- items: import("../components/ContextMenu").ContextMenuItems;
236
- top: number;
237
- left: number;
238
- } | null;
239
- showWelcomeScreen: boolean;
240
- isLoading: boolean;
241
- activeEmbeddable: {
242
- element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
243
- state: "active" | "hover";
244
- } | null;
245
- newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
246
- resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
247
- multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
248
- selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
249
- isBindingEnabled: boolean;
250
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
251
- suggestedBindings: import("@excalidraw/element/binding").SuggestedBinding[];
252
- frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
253
- frameRendering: {
254
- enabled: boolean;
255
- name: boolean;
256
- outline: boolean;
257
- clip: boolean;
258
- };
259
- editingFrame: string | null;
260
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
261
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
262
- editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
263
- activeTool: {
264
- lastActiveTool: import("../types").ActiveTool | null;
265
- locked: boolean;
266
- fromSelection: boolean;
267
- } & import("../types").ActiveTool;
268
- penMode: boolean;
269
- penDetected: boolean;
270
- exportBackground: boolean;
271
- exportEmbedScene: boolean;
272
- exportWithDarkMode: boolean;
273
- exportScale: number;
274
- currentItemStrokeColor: string;
275
- currentItemBackgroundColor: string;
276
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
277
- currentItemStrokeWidth: number;
278
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
279
- currentItemRoughness: number;
280
- currentItemOpacity: number;
281
- currentItemFontFamily: number;
282
- currentItemFontSize: number;
283
- currentItemTextAlign: string;
284
- currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
285
- currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
286
- currentHoveredFontFamily: number | null;
287
- currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
288
- currentItemArrowType: "round" | "sharp" | "elbow";
289
- viewBackgroundColor: string;
290
- scrollX: number;
291
- scrollY: number;
292
- cursorButton: "up" | "down";
293
- scrolledOutside: boolean;
294
- name: string | null;
295
- isResizing: boolean;
296
- isRotating: boolean;
297
- zoom: Readonly<{
298
- value: import("../types").NormalizedZoomValue;
299
- }>;
300
- openMenu: "shape" | "canvas" | null;
301
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
302
- openSidebar: {
303
- name: string;
304
- tab?: string | undefined;
305
- } | null;
306
- openDialog: {
307
- name: "help" | "imageExport" | "jsonExport";
308
- } | {
309
- name: "ttd";
310
- tab: "mermaid" | "text-to-diagram";
311
- } | {
312
- name: "commandPalette";
313
- } | {
314
- name: "elementLinkSelector";
315
- sourceElementId: string;
316
- } | null;
317
- defaultSidebarDockedPreference: boolean;
318
- lastPointerDownWith: import("@excalidraw/element/types").PointerType;
319
- selectedElementIds: Readonly<{
320
- [id: string]: true;
321
- }>;
322
- hoveredElementIds: Readonly<{
323
- [id: string]: true;
324
- }>;
325
- previousSelectedElementIds: {
326
- [id: string]: true;
327
- };
328
- selectedElementsAreBeingDragged: boolean;
329
- shouldCacheIgnoreZoom: boolean;
330
- toast: {
331
- message: string;
332
- closable?: boolean | undefined;
333
- duration?: number | undefined;
334
- } | null;
335
- zenModeEnabled: boolean;
336
- theme: import("@excalidraw/element/types").Theme;
337
- gridSize: number;
338
- gridStep: number;
339
- gridModeEnabled: boolean;
340
- viewModeEnabled: boolean;
341
- selectedGroupIds: {
342
- [groupId: string]: boolean;
343
- };
344
- editingGroupId: string | null;
345
- width: number;
346
- height: number;
347
- offsetTop: number;
348
- offsetLeft: number;
349
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
350
- collaborators: Map<import("../types").SocketId, Readonly<{
351
- pointer?: import("../types").CollaboratorPointer | undefined;
352
- button?: "up" | "down" | undefined;
353
- selectedElementIds?: Readonly<{
354
- [id: string]: true;
355
- }> | undefined;
356
- username?: string | null | undefined;
357
- userState?: import("@excalidraw/common").UserIdleState | undefined;
358
- color?: {
359
- background: string;
360
- stroke: string;
361
- } | undefined;
362
- avatarUrl?: string | undefined;
363
- id?: string | undefined;
364
- socketId?: import("../types").SocketId | undefined;
365
- isCurrentUser?: boolean | undefined;
366
- isInCall?: boolean | undefined;
367
- isSpeaking?: boolean | undefined;
368
- isMuted?: boolean | undefined;
369
- }>>;
370
- stats: {
371
- open: boolean;
372
- panels: number;
373
- };
374
- currentChartType: import("@excalidraw/element/types").ChartType;
375
- pasteDialog: {
376
- shown: false;
377
- data: null;
378
- } | {
379
- shown: true;
380
- data: import("../charts").Spreadsheet;
381
- };
382
- pendingImageElementId: string | null;
383
- showHyperlinkPopup: false | "editor" | "info";
384
- linkOpacity: number;
385
- trayModeEnabled: boolean;
386
- colorPalette?: {
387
- canvasBackground: import("@excalidraw/common").ColorPaletteCustom;
388
- elementBackground: import("@excalidraw/common").ColorPaletteCustom;
389
- elementStroke: import("@excalidraw/common").ColorPaletteCustom;
390
- topPicks: {
391
- canvasBackground: [string, string, string, string, string];
392
- elementStroke: [string, string, string, string, string];
393
- elementBackground: [string, string, string, string, string];
394
- };
395
- } | undefined;
396
- allowWheelZoom?: boolean | undefined;
397
- allowPinchZoom?: boolean | undefined;
398
- pinnedScripts?: string[] | undefined;
399
- customPens?: any[] | undefined;
400
- currentStrokeOptions?: any;
401
- resetCustomPen?: any;
402
- gridColor: {
403
- Bold: string;
404
- Regular: string;
405
- };
406
- highlightSearchResult: boolean;
407
- dynamicStyle: {
408
- [x: string]: string;
409
- };
410
- frameColor: {
411
- stroke: string;
412
- fill: string;
413
- nameColor: string;
414
- };
415
- invertBindingBehaviour: boolean;
416
- selectedLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
417
- snapLines: readonly import("../snapping").SnapLine[];
418
- originSnapOffset: {
419
- x: number;
420
- y: number;
421
- } | null;
422
- objectsSnapModeEnabled: boolean;
423
- userToFollow: import("../types").UserToFollow | null;
424
- followedBy: Set<import("../types").SocketId>;
425
- isCropping: boolean;
426
- croppingElementId: string | null;
427
- searchMatches: readonly {
428
- id: string;
429
- focus: boolean;
430
- matchedLines: {
431
- offsetX: number;
432
- offsetY: number;
433
- width: number;
434
- height: number;
435
- }[];
436
- }[];
437
- };
438
- } | {
439
- captureUpdate: "EVENTUALLY";
440
- appState?: undefined;
441
- }>;
442
- keyTest: undefined;
443
- } & {
444
- keyTest?: undefined;
445
- };
446
- export declare const actionCut: {
447
- name: "cut";
448
- label: string;
449
- icon: import("react/jsx-runtime").JSX.Element;
450
- trackEvent: {
451
- category: "element";
452
- };
453
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, event: ClipboardEvent | null, app: import("../types").AppClassProperties) => false | {
454
- elements: import("@excalidraw/element/types").OrderedExcalidrawElement[];
455
- appState: {
456
- editingLinearElement: null;
457
- contextMenu: {
458
- items: import("../components/ContextMenu").ContextMenuItems;
459
- top: number;
460
- left: number;
461
- } | null;
462
- showWelcomeScreen: boolean;
463
- isLoading: boolean;
464
- errorMessage: import("react").ReactNode;
465
- activeEmbeddable: {
466
- element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
467
- state: "active" | "hover";
468
- } | null;
469
- newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
470
- resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
471
- multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
472
- selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
473
- isBindingEnabled: boolean;
474
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
475
- suggestedBindings: import("@excalidraw/element/binding").SuggestedBinding[];
476
- frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
477
- frameRendering: {
478
- enabled: boolean;
479
- name: boolean;
480
- outline: boolean;
481
- clip: boolean;
482
- };
483
- editingFrame: string | null;
484
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
485
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
486
- activeTool: {
487
- lastActiveTool: import("../types").ActiveTool | null;
488
- locked: boolean;
489
- fromSelection: boolean;
490
- } & import("../types").ActiveTool;
491
- penMode: boolean;
492
- penDetected: boolean;
493
- exportBackground: boolean;
494
- exportEmbedScene: boolean;
495
- exportWithDarkMode: boolean;
496
- exportScale: number;
497
- currentItemStrokeColor: string;
498
- currentItemBackgroundColor: string;
499
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
500
- currentItemStrokeWidth: number;
501
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
502
- currentItemRoughness: number;
503
- currentItemOpacity: number;
504
- currentItemFontFamily: number;
505
- currentItemFontSize: number;
506
- currentItemTextAlign: string;
507
- currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
508
- currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
509
- currentHoveredFontFamily: number | null;
510
- currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
511
- currentItemArrowType: "round" | "sharp" | "elbow";
512
- viewBackgroundColor: string;
513
- scrollX: number;
514
- scrollY: number;
515
- cursorButton: "up" | "down";
516
- scrolledOutside: boolean;
517
- name: string | null;
518
- isResizing: boolean;
519
- isRotating: boolean;
520
- zoom: Readonly<{
521
- value: import("../types").NormalizedZoomValue;
522
- }>;
523
- openMenu: "shape" | "canvas" | null;
524
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
525
- openSidebar: {
526
- name: string;
527
- tab?: string | undefined;
528
- } | null;
529
- openDialog: {
530
- name: "help" | "imageExport" | "jsonExport";
531
- } | {
532
- name: "ttd";
533
- tab: "mermaid" | "text-to-diagram";
534
- } | {
535
- name: "commandPalette";
536
- } | {
537
- name: "elementLinkSelector";
538
- sourceElementId: string;
539
- } | null;
540
- defaultSidebarDockedPreference: boolean;
541
- lastPointerDownWith: import("@excalidraw/element/types").PointerType;
542
- selectedElementIds: Readonly<{
543
- [id: string]: true;
544
- }>;
545
- hoveredElementIds: Readonly<{
546
- [id: string]: true;
547
- }>;
548
- previousSelectedElementIds: {
549
- [id: string]: true;
550
- };
551
- selectedElementsAreBeingDragged: boolean;
552
- shouldCacheIgnoreZoom: boolean;
553
- toast: {
554
- message: string;
555
- closable?: boolean | undefined;
556
- duration?: number | undefined;
557
- } | null;
558
- zenModeEnabled: boolean;
559
- theme: import("@excalidraw/element/types").Theme;
560
- gridSize: number;
561
- gridStep: number;
562
- gridModeEnabled: boolean;
563
- viewModeEnabled: boolean;
564
- selectedGroupIds: {
565
- [groupId: string]: boolean;
566
- };
567
- editingGroupId: string | null;
568
- width: number;
569
- height: number;
570
- offsetTop: number;
571
- offsetLeft: number;
572
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
573
- collaborators: Map<import("../types").SocketId, Readonly<{
574
- pointer?: import("../types").CollaboratorPointer | undefined;
575
- button?: "up" | "down" | undefined;
576
- selectedElementIds?: Readonly<{
577
- [id: string]: true;
578
- }> | undefined;
579
- username?: string | null | undefined;
580
- userState?: import("@excalidraw/common").UserIdleState | undefined;
581
- color?: {
582
- background: string;
583
- stroke: string;
584
- } | undefined;
585
- avatarUrl?: string | undefined;
586
- id?: string | undefined;
587
- socketId?: import("../types").SocketId | undefined;
588
- isCurrentUser?: boolean | undefined;
589
- isInCall?: boolean | undefined;
590
- isSpeaking?: boolean | undefined;
591
- isMuted?: boolean | undefined;
592
- }>>;
593
- stats: {
594
- open: boolean;
595
- panels: number;
596
- };
597
- currentChartType: import("@excalidraw/element/types").ChartType;
598
- pasteDialog: {
599
- shown: false;
600
- data: null;
601
- } | {
602
- shown: true;
603
- data: import("../charts").Spreadsheet;
604
- };
605
- pendingImageElementId: string | null;
606
- showHyperlinkPopup: false | "editor" | "info";
607
- linkOpacity: number;
608
- trayModeEnabled: boolean;
609
- colorPalette?: {
610
- canvasBackground: import("@excalidraw/common").ColorPaletteCustom;
611
- elementBackground: import("@excalidraw/common").ColorPaletteCustom;
612
- elementStroke: import("@excalidraw/common").ColorPaletteCustom;
613
- topPicks: {
614
- canvasBackground: [string, string, string, string, string];
615
- elementStroke: [string, string, string, string, string];
616
- elementBackground: [string, string, string, string, string];
617
- };
618
- } | undefined;
619
- allowWheelZoom?: boolean | undefined;
620
- allowPinchZoom?: boolean | undefined;
621
- pinnedScripts?: string[] | undefined;
622
- customPens?: any[] | undefined;
623
- currentStrokeOptions?: any;
624
- resetCustomPen?: any;
625
- gridColor: {
626
- Bold: string;
627
- Regular: string;
628
- };
629
- highlightSearchResult: boolean;
630
- dynamicStyle: {
631
- [x: string]: string;
632
- };
633
- frameColor: {
634
- stroke: string;
635
- fill: string;
636
- nameColor: string;
637
- };
638
- invertBindingBehaviour: boolean;
639
- selectedLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
640
- snapLines: readonly import("../snapping").SnapLine[];
641
- originSnapOffset: {
642
- x: number;
643
- y: number;
644
- } | null;
645
- objectsSnapModeEnabled: boolean;
646
- userToFollow: import("../types").UserToFollow | null;
647
- followedBy: Set<import("../types").SocketId>;
648
- isCropping: boolean;
649
- croppingElementId: string | null;
650
- searchMatches: readonly {
651
- id: string;
652
- focus: boolean;
653
- matchedLines: {
654
- offsetX: number;
655
- offsetY: number;
656
- width: number;
657
- height: number;
658
- }[];
659
- }[];
660
- };
661
- captureUpdate: "IMMEDIATELY";
662
- } | {
663
- elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[];
1
+ export declare const actionCopy: import("./types").Action<ClipboardEvent | null> & {
2
+ keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>, appState: import("../types").AppState, elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], app: import("../types").AppClassProperties) => boolean) | undefined;
3
+ };
4
+ export declare const actionPaste: {
5
+ name: "paste";
6
+ label: string;
7
+ trackEvent: {
8
+ category: "element";
9
+ };
10
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, data: unknown, app: import("../types").AppClassProperties) => Promise<false | {
11
+ captureUpdate: "EVENTUALLY";
664
12
  appState: {
665
- editingLinearElement: {
666
- selectedPointsIndices: number[];
667
- startBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
668
- endBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
669
- elementId: string & {
670
- _brand: "excalidrawLinearElementId";
671
- };
672
- pointerDownState: Readonly<{
673
- prevSelectedPointsIndices: readonly number[] | null;
674
- lastClickedPoint: number;
675
- lastClickedIsEndPoint: boolean;
676
- origin: Readonly<{
677
- x: number;
678
- y: number;
679
- }> | null;
680
- segmentMidpoint: {
681
- value: import("@excalidraw/math").GlobalPoint | null;
682
- index: number | null;
683
- added: boolean;
684
- };
685
- }>;
686
- isDragging: boolean;
687
- lastUncommittedPoint: import("@excalidraw/math").LocalPoint | null;
688
- pointerOffset: Readonly<{
689
- x: number;
690
- y: number;
691
- }>;
692
- hoverPointIndex: number;
693
- segmentMidPointHoveredCoords: import("@excalidraw/math").GlobalPoint | null;
694
- elbowed: boolean;
695
- };
13
+ errorMessage: string;
696
14
  contextMenu: {
697
15
  items: import("../components/ContextMenu").ContextMenuItems;
698
16
  top: number;
@@ -700,7 +18,6 @@ export declare const actionCut: {
700
18
  } | null;
701
19
  showWelcomeScreen: boolean;
702
20
  isLoading: boolean;
703
- errorMessage: import("react").ReactNode;
704
21
  activeEmbeddable: {
705
22
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
706
23
  state: "active" | "hover";
@@ -711,13 +28,15 @@ export declare const actionCut: {
711
28
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
712
29
  isBindingEnabled: boolean;
713
30
  startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
714
- suggestedBindings: import("@excalidraw/element/binding").SuggestedBinding[];
31
+ suggestedBinding: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
715
32
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
716
33
  frameRendering: {
717
34
  enabled: boolean;
718
35
  name: boolean;
719
36
  outline: boolean;
720
37
  clip: boolean;
38
+ markerName: boolean;
39
+ markerEnabled: boolean;
721
40
  };
722
41
  editingFrame: string | null;
723
42
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
@@ -727,6 +46,10 @@ export declare const actionCut: {
727
46
  locked: boolean;
728
47
  fromSelection: boolean;
729
48
  } & import("../types").ActiveTool;
49
+ preferredSelectionTool: {
50
+ type: "selection" | "lasso";
51
+ initialized: boolean;
52
+ };
730
53
  penMode: boolean;
731
54
  penDetected: boolean;
732
55
  exportBackground: boolean;
@@ -748,6 +71,7 @@ export declare const actionCut: {
748
71
  currentHoveredFontFamily: number | null;
749
72
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
750
73
  currentItemArrowType: "round" | "sharp" | "elbow";
74
+ currentItemFrameRole: ("marker" | null) | undefined;
751
75
  viewBackgroundColor: string;
752
76
  scrollX: number;
753
77
  scrollY: number;
@@ -759,19 +83,21 @@ export declare const actionCut: {
759
83
  zoom: Readonly<{
760
84
  value: import("../types").NormalizedZoomValue;
761
85
  }>;
762
- openMenu: "shape" | "canvas" | null;
763
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
86
+ openMenu: "canvas" | "shape" | null;
87
+ openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
764
88
  openSidebar: {
765
89
  name: string;
766
90
  tab?: string | undefined;
767
91
  } | null;
768
92
  openDialog: {
769
- name: "help" | "imageExport" | "jsonExport";
93
+ name: "imageExport" | "help" | "jsonExport";
770
94
  } | {
771
95
  name: "ttd";
772
96
  tab: "mermaid" | "text-to-diagram";
773
97
  } | {
774
98
  name: "commandPalette";
99
+ } | {
100
+ name: "settings";
775
101
  } | {
776
102
  name: "elementLinkSelector";
777
103
  sourceElementId: string;
@@ -841,10 +167,8 @@ export declare const actionCut: {
841
167
  shown: true;
842
168
  data: import("../charts").Spreadsheet;
843
169
  };
844
- pendingImageElementId: string | null;
845
- showHyperlinkPopup: false | "editor" | "info";
170
+ showHyperlinkPopup: false | "info" | "editor";
846
171
  linkOpacity: number;
847
- trayModeEnabled: boolean;
848
172
  colorPalette?: {
849
173
  canvasBackground: import("@excalidraw/common").ColorPaletteCustom;
850
174
  elementBackground: import("@excalidraw/common").ColorPaletteCustom;
@@ -857,6 +181,7 @@ export declare const actionCut: {
857
181
  } | undefined;
858
182
  allowWheelZoom?: boolean | undefined;
859
183
  allowPinchZoom?: boolean | undefined;
184
+ disableContextMenu: boolean;
860
185
  pinnedScripts?: string[] | undefined;
861
186
  customPens?: any[] | undefined;
862
187
  currentStrokeOptions?: any;
@@ -865,212 +190,9 @@ export declare const actionCut: {
865
190
  Bold: string;
866
191
  Regular: string;
867
192
  };
868
- highlightSearchResult: boolean;
869
- dynamicStyle: {
870
- [x: string]: string;
871
- };
872
- frameColor: {
873
- stroke: string;
874
- fill: string;
875
- nameColor: string;
876
- };
877
- invertBindingBehaviour: boolean;
878
- selectedLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
879
- snapLines: readonly import("../snapping").SnapLine[];
880
- originSnapOffset: {
881
- x: number;
882
- y: number;
883
- } | null;
884
- objectsSnapModeEnabled: boolean;
885
- userToFollow: import("../types").UserToFollow | null;
886
- followedBy: Set<import("../types").SocketId>;
887
- isCropping: boolean;
888
- croppingElementId: string | null;
889
- searchMatches: readonly {
890
- id: string;
891
- focus: boolean;
892
- matchedLines: {
893
- offsetX: number;
894
- offsetY: number;
895
- width: number;
896
- height: number;
897
- }[];
898
- }[];
899
- };
900
- captureUpdate: "IMMEDIATELY";
901
- } | {
902
- elements: import("@excalidraw/element/types").ExcalidrawElement[];
903
- appState: {
904
- activeTool: {
905
- lastActiveTool: import("../types").ActiveTool | null;
906
- locked: boolean;
907
- fromSelection: boolean;
908
- } & import("../types").ActiveTool;
909
- multiElement: null;
910
- activeEmbeddable: null;
911
- selectedLinearElement: null;
912
- editingGroupId: string | null;
913
- selectedElementIds: Readonly<{
914
- [id: string]: true;
915
- }>;
916
- selectedGroupIds: {
917
- [groupId: string]: boolean;
918
- };
919
- contextMenu: {
920
- items: import("../components/ContextMenu").ContextMenuItems;
921
- top: number;
922
- left: number;
923
- } | null;
924
- showWelcomeScreen: boolean;
925
- isLoading: boolean;
926
- errorMessage: import("react").ReactNode;
927
- newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
928
- resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
929
- selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
930
- isBindingEnabled: boolean;
931
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
932
- suggestedBindings: import("@excalidraw/element/binding").SuggestedBinding[];
933
- frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
934
- frameRendering: {
935
- enabled: boolean;
936
- name: boolean;
937
- outline: boolean;
938
- clip: boolean;
939
- };
940
- editingFrame: string | null;
941
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
942
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
943
- editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
944
- penMode: boolean;
945
- penDetected: boolean;
946
- exportBackground: boolean;
947
- exportEmbedScene: boolean;
948
- exportWithDarkMode: boolean;
949
- exportScale: number;
950
- currentItemStrokeColor: string;
951
- currentItemBackgroundColor: string;
952
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
953
- currentItemStrokeWidth: number;
954
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
955
- currentItemRoughness: number;
956
- currentItemOpacity: number;
957
- currentItemFontFamily: number;
958
- currentItemFontSize: number;
959
- currentItemTextAlign: string;
960
- currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
961
- currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
962
- currentHoveredFontFamily: number | null;
963
- currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
964
- currentItemArrowType: "round" | "sharp" | "elbow";
965
- viewBackgroundColor: string;
966
- scrollX: number;
967
- scrollY: number;
968
- cursorButton: "up" | "down";
969
- scrolledOutside: boolean;
970
- name: string | null;
971
- isResizing: boolean;
972
- isRotating: boolean;
973
- zoom: Readonly<{
974
- value: import("../types").NormalizedZoomValue;
975
- }>;
976
- openMenu: "shape" | "canvas" | null;
977
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
978
- openSidebar: {
979
- name: string;
980
- tab?: string | undefined;
981
- } | null;
982
- openDialog: {
983
- name: "help" | "imageExport" | "jsonExport";
984
- } | {
985
- name: "ttd";
986
- tab: "mermaid" | "text-to-diagram";
987
- } | {
988
- name: "commandPalette";
989
- } | {
990
- name: "elementLinkSelector";
991
- sourceElementId: string;
992
- } | null;
993
- defaultSidebarDockedPreference: boolean;
994
- lastPointerDownWith: import("@excalidraw/element/types").PointerType;
995
- hoveredElementIds: Readonly<{
996
- [id: string]: true;
997
- }>;
998
- previousSelectedElementIds: {
999
- [id: string]: true;
1000
- };
1001
- selectedElementsAreBeingDragged: boolean;
1002
- shouldCacheIgnoreZoom: boolean;
1003
- toast: {
1004
- message: string;
1005
- closable?: boolean | undefined;
1006
- duration?: number | undefined;
1007
- } | null;
1008
- zenModeEnabled: boolean;
1009
- theme: import("@excalidraw/element/types").Theme;
1010
- gridSize: number;
1011
- gridStep: number;
1012
- gridModeEnabled: boolean;
1013
- viewModeEnabled: boolean;
1014
- width: number;
1015
- height: number;
1016
- offsetTop: number;
1017
- offsetLeft: number;
1018
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
1019
- collaborators: Map<import("../types").SocketId, Readonly<{
1020
- pointer?: import("../types").CollaboratorPointer | undefined;
1021
- button?: "up" | "down" | undefined;
1022
- selectedElementIds?: Readonly<{
1023
- [id: string]: true;
1024
- }> | undefined;
1025
- username?: string | null | undefined;
1026
- userState?: import("@excalidraw/common").UserIdleState | undefined;
1027
- color?: {
1028
- background: string;
1029
- stroke: string;
1030
- } | undefined;
1031
- avatarUrl?: string | undefined;
1032
- id?: string | undefined;
1033
- socketId?: import("../types").SocketId | undefined;
1034
- isCurrentUser?: boolean | undefined;
1035
- isInCall?: boolean | undefined;
1036
- isSpeaking?: boolean | undefined;
1037
- isMuted?: boolean | undefined;
1038
- }>>;
1039
- stats: {
1040
- open: boolean;
1041
- panels: number;
1042
- };
1043
- currentChartType: import("@excalidraw/element/types").ChartType;
1044
- pasteDialog: {
1045
- shown: false;
1046
- data: null;
1047
- } | {
1048
- shown: true;
1049
- data: import("../charts").Spreadsheet;
1050
- };
1051
- pendingImageElementId: string | null;
1052
- showHyperlinkPopup: false | "editor" | "info";
1053
- linkOpacity: number;
1054
- trayModeEnabled: boolean;
1055
- colorPalette?: {
1056
- canvasBackground: import("@excalidraw/common").ColorPaletteCustom;
1057
- elementBackground: import("@excalidraw/common").ColorPaletteCustom;
1058
- elementStroke: import("@excalidraw/common").ColorPaletteCustom;
1059
- topPicks: {
1060
- canvasBackground: [string, string, string, string, string];
1061
- elementStroke: [string, string, string, string, string];
1062
- elementBackground: [string, string, string, string, string];
1063
- };
1064
- } | undefined;
1065
- allowWheelZoom?: boolean | undefined;
1066
- allowPinchZoom?: boolean | undefined;
1067
- pinnedScripts?: string[] | undefined;
1068
- customPens?: any[] | undefined;
1069
- currentStrokeOptions?: any;
1070
- resetCustomPen?: any;
1071
- gridColor: {
1072
- Bold: string;
1073
- Regular: string;
193
+ gridDirection: {
194
+ horizontal: boolean;
195
+ vertical: boolean;
1074
196
  };
1075
197
  highlightSearchResult: boolean;
1076
198
  dynamicStyle: {
@@ -1082,6 +204,7 @@ export declare const actionCut: {
1082
204
  nameColor: string;
1083
205
  };
1084
206
  invertBindingBehaviour: boolean;
207
+ selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
1085
208
  snapLines: readonly import("../snapping").SnapLine[];
1086
209
  originSnapOffset: {
1087
210
  x: number;
@@ -1092,22 +215,26 @@ export declare const actionCut: {
1092
215
  followedBy: Set<import("../types").SocketId>;
1093
216
  isCropping: boolean;
1094
217
  croppingElementId: string | null;
1095
- searchMatches: readonly {
1096
- id: string;
1097
- focus: boolean;
1098
- matchedLines: {
1099
- offsetX: number;
1100
- offsetY: number;
1101
- width: number;
1102
- height: number;
1103
- }[];
1104
- }[];
218
+ searchMatches: Readonly<{
219
+ focusedId: string | null;
220
+ matches: readonly import("../types").SearchMatch[];
221
+ }> | null;
222
+ activeLockedId: string | null;
223
+ lockedMultiSelections: {
224
+ [groupId: string]: true;
225
+ };
226
+ bindMode: import("@excalidraw/element/types").BindMode;
1105
227
  };
1106
- captureUpdate: "IMMEDIATELY" | "EVENTUALLY";
1107
- };
1108
- keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
228
+ } | {
229
+ captureUpdate: "EVENTUALLY";
230
+ appState?: undefined;
231
+ }>;
232
+ keyTest: undefined;
1109
233
  } & {
1110
- keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
234
+ keyTest?: undefined;
235
+ };
236
+ export declare const actionCut: import("./types").Action<ClipboardEvent | null> & {
237
+ keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>, appState: import("../types").AppState, elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], app: import("../types").AppClassProperties) => boolean) | undefined;
1111
238
  };
1112
239
  export declare const actionCopyAsSvg: {
1113
240
  name: "copyAsSvg";
@@ -1116,7 +243,7 @@ export declare const actionCopyAsSvg: {
1116
243
  trackEvent: {
1117
244
  category: "element";
1118
245
  };
1119
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _data: any, app: import("../types").AppClassProperties) => Promise<{
246
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _data: unknown, app: import("../types").AppClassProperties) => Promise<{
1120
247
  captureUpdate: "EVENTUALLY";
1121
248
  appState?: undefined;
1122
249
  } | {
@@ -1146,7 +273,7 @@ export declare const actionCopyAsPng: {
1146
273
  trackEvent: {
1147
274
  category: "element";
1148
275
  };
1149
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _data: any, app: import("../types").AppClassProperties) => Promise<{
276
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _data: unknown, app: import("../types").AppClassProperties) => Promise<{
1150
277
  captureUpdate: "EVENTUALLY";
1151
278
  appState?: undefined;
1152
279
  } | {
@@ -1169,23 +296,28 @@ export declare const actionCopyAsPng: {
1169
296
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1170
297
  isBindingEnabled: boolean;
1171
298
  startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
1172
- suggestedBindings: import("@excalidraw/element/binding").SuggestedBinding[];
299
+ suggestedBinding: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
1173
300
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
1174
301
  frameRendering: {
1175
302
  enabled: boolean;
1176
303
  name: boolean;
1177
304
  outline: boolean;
1178
305
  clip: boolean;
306
+ markerName: boolean;
307
+ markerEnabled: boolean;
1179
308
  };
1180
309
  editingFrame: string | null;
1181
310
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
1182
311
  editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1183
- editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
1184
312
  activeTool: {
1185
313
  lastActiveTool: import("../types").ActiveTool | null;
1186
314
  locked: boolean;
1187
315
  fromSelection: boolean;
1188
316
  } & import("../types").ActiveTool;
317
+ preferredSelectionTool: {
318
+ type: "selection" | "lasso";
319
+ initialized: boolean;
320
+ };
1189
321
  penMode: boolean;
1190
322
  penDetected: boolean;
1191
323
  exportBackground: boolean;
@@ -1207,6 +339,7 @@ export declare const actionCopyAsPng: {
1207
339
  currentHoveredFontFamily: number | null;
1208
340
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
1209
341
  currentItemArrowType: "round" | "sharp" | "elbow";
342
+ currentItemFrameRole: ("marker" | null) | undefined;
1210
343
  viewBackgroundColor: string;
1211
344
  scrollX: number;
1212
345
  scrollY: number;
@@ -1218,19 +351,21 @@ export declare const actionCopyAsPng: {
1218
351
  zoom: Readonly<{
1219
352
  value: import("../types").NormalizedZoomValue;
1220
353
  }>;
1221
- openMenu: "shape" | "canvas" | null;
1222
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
354
+ openMenu: "canvas" | "shape" | null;
355
+ openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
1223
356
  openSidebar: {
1224
357
  name: string;
1225
358
  tab?: string | undefined;
1226
359
  } | null;
1227
360
  openDialog: {
1228
- name: "help" | "imageExport" | "jsonExport";
361
+ name: "imageExport" | "help" | "jsonExport";
1229
362
  } | {
1230
363
  name: "ttd";
1231
364
  tab: "mermaid" | "text-to-diagram";
1232
365
  } | {
1233
366
  name: "commandPalette";
367
+ } | {
368
+ name: "settings";
1234
369
  } | {
1235
370
  name: "elementLinkSelector";
1236
371
  sourceElementId: string;
@@ -1300,10 +435,8 @@ export declare const actionCopyAsPng: {
1300
435
  shown: true;
1301
436
  data: import("../charts").Spreadsheet;
1302
437
  };
1303
- pendingImageElementId: string | null;
1304
- showHyperlinkPopup: false | "editor" | "info";
438
+ showHyperlinkPopup: false | "info" | "editor";
1305
439
  linkOpacity: number;
1306
- trayModeEnabled: boolean;
1307
440
  colorPalette?: {
1308
441
  canvasBackground: import("@excalidraw/common").ColorPaletteCustom;
1309
442
  elementBackground: import("@excalidraw/common").ColorPaletteCustom;
@@ -1316,6 +449,7 @@ export declare const actionCopyAsPng: {
1316
449
  } | undefined;
1317
450
  allowWheelZoom?: boolean | undefined;
1318
451
  allowPinchZoom?: boolean | undefined;
452
+ disableContextMenu: boolean;
1319
453
  pinnedScripts?: string[] | undefined;
1320
454
  customPens?: any[] | undefined;
1321
455
  currentStrokeOptions?: any;
@@ -1324,6 +458,10 @@ export declare const actionCopyAsPng: {
1324
458
  Bold: string;
1325
459
  Regular: string;
1326
460
  };
461
+ gridDirection: {
462
+ horizontal: boolean;
463
+ vertical: boolean;
464
+ };
1327
465
  highlightSearchResult: boolean;
1328
466
  dynamicStyle: {
1329
467
  [x: string]: string;
@@ -1334,7 +472,7 @@ export declare const actionCopyAsPng: {
1334
472
  nameColor: string;
1335
473
  };
1336
474
  invertBindingBehaviour: boolean;
1337
- selectedLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
475
+ selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
1338
476
  snapLines: readonly import("../snapping").SnapLine[];
1339
477
  originSnapOffset: {
1340
478
  x: number;
@@ -1345,16 +483,15 @@ export declare const actionCopyAsPng: {
1345
483
  followedBy: Set<import("../types").SocketId>;
1346
484
  isCropping: boolean;
1347
485
  croppingElementId: string | null;
1348
- searchMatches: readonly {
1349
- id: string;
1350
- focus: boolean;
1351
- matchedLines: {
1352
- offsetX: number;
1353
- offsetY: number;
1354
- width: number;
1355
- height: number;
1356
- }[];
1357
- }[];
486
+ searchMatches: Readonly<{
487
+ focusedId: string | null;
488
+ matches: readonly import("../types").SearchMatch[];
489
+ }> | null;
490
+ activeLockedId: string | null;
491
+ lockedMultiSelections: {
492
+ [groupId: string]: true;
493
+ };
494
+ bindMode: import("@excalidraw/element/types").BindMode;
1358
495
  };
1359
496
  captureUpdate: "EVENTUALLY";
1360
497
  }>;
@@ -1370,7 +507,7 @@ export declare const copyText: {
1370
507
  trackEvent: {
1371
508
  category: "element";
1372
509
  };
1373
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: any, app: import("../types").AppClassProperties) => {
510
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: unknown, app: import("../types").AppClassProperties) => {
1374
511
  captureUpdate: "EVENTUALLY";
1375
512
  };
1376
513
  predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: import("../types").AppState, _: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;