@excalidraw/element 0.18.0-b7aac689a → 0.18.0-c108292

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 (275) hide show
  1. package/dist/dev/index.js +5754 -2823
  2. package/dist/dev/index.js.map +4 -4
  3. package/dist/prod/index.js +19 -18
  4. package/dist/types/common/debug.d.ts +21 -0
  5. package/dist/types/common/src/appEventBus.d.ts +27 -0
  6. package/dist/types/common/src/bounds.d.ts +10 -0
  7. package/dist/types/common/src/colors.d.ts +59 -39
  8. package/dist/types/common/src/constants.d.ts +38 -26
  9. package/dist/types/common/src/editorInterface.d.ts +34 -0
  10. package/dist/types/common/src/font-metadata.d.ts +1 -3
  11. package/dist/types/common/src/index.d.ts +5 -0
  12. package/dist/types/common/src/keys.d.ts +1 -1
  13. package/dist/types/common/src/utility-types.d.ts +0 -1
  14. package/dist/types/common/src/utils.d.ts +53 -41
  15. package/dist/types/common/src/versionedSnapshotStore.d.ts +17 -0
  16. package/dist/types/element/src/Scene.d.ts +11 -5
  17. package/dist/types/element/src/align.d.ts +2 -1
  18. package/dist/types/element/src/arrowheads.d.ts +3 -0
  19. package/dist/types/element/src/arrows/focus.d.ts +27 -0
  20. package/dist/types/element/src/arrows/helpers.d.ts +5 -0
  21. package/dist/types/element/src/binding.d.ts +67 -48
  22. package/dist/types/element/src/bounds.d.ts +4 -12
  23. package/dist/types/element/src/collision.d.ts +7 -2
  24. package/dist/types/element/src/comparisons.d.ts +7 -7
  25. package/dist/types/element/src/delta.d.ts +16 -4
  26. package/dist/types/element/src/distribute.d.ts +3 -1
  27. package/dist/types/element/src/dragElements.d.ts +3 -3
  28. package/dist/types/element/src/duplicate.d.ts +3 -3
  29. package/dist/types/element/src/elbowArrow.d.ts +2 -0
  30. package/dist/types/element/src/fractionalIndex.d.ts +2 -2
  31. package/dist/types/element/src/frame.d.ts +5 -1
  32. package/dist/types/element/src/groups.d.ts +1 -0
  33. package/dist/types/element/src/heading.d.ts +2 -1
  34. package/dist/types/element/src/image.d.ts +1 -11
  35. package/dist/types/element/src/index.d.ts +5 -3
  36. package/dist/types/element/src/linearElementEditor.d.ts +25 -23
  37. package/dist/types/element/src/mutateElement.d.ts +5 -1
  38. package/dist/types/element/src/newElement.d.ts +6 -6
  39. package/dist/types/element/src/positionElementsOnGrid.d.ts +2 -0
  40. package/dist/types/element/src/renderElement.d.ts +4 -7
  41. package/dist/types/element/src/resizeElements.d.ts +10 -10
  42. package/dist/types/element/src/resizeTest.d.ts +6 -5
  43. package/dist/types/element/src/selection.d.ts +8 -8
  44. package/dist/types/element/src/shape.d.ts +9 -8
  45. package/dist/types/element/src/store.d.ts +6 -1
  46. package/dist/types/element/src/textElement.d.ts +2 -2
  47. package/dist/types/element/src/textMeasurements.d.ts +1 -3
  48. package/dist/types/element/src/textWrapping.d.ts +26 -0
  49. package/dist/types/{excalidraw/data → element/src}/transform.d.ts +3 -3
  50. package/dist/types/element/src/transformHandles.d.ts +8 -27
  51. package/dist/types/element/src/typeChecks.d.ts +4 -7
  52. package/dist/types/element/src/types.d.ts +12 -13
  53. package/dist/types/element/src/utils.d.ts +9 -4
  54. package/dist/types/element/src/visualdebug.d.ts +59 -0
  55. package/dist/types/element/src/zindex.d.ts +7 -1
  56. package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +128 -171
  57. package/dist/types/excalidraw/actions/actionAlign.d.ts +6 -7
  58. package/dist/types/excalidraw/actions/actionBoundText.d.ts +92 -121
  59. package/dist/types/excalidraw/actions/actionCanvas.d.ts +545 -902
  60. package/dist/types/excalidraw/actions/actionClipboard.d.ts +109 -882
  61. package/dist/types/excalidraw/actions/actionCropEditor.d.ts +44 -59
  62. package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +151 -198
  63. package/dist/types/excalidraw/actions/actionDistribute.d.ts +2 -3
  64. package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +2 -3
  65. package/dist/types/excalidraw/actions/actionElementLink.d.ts +36 -57
  66. package/dist/types/excalidraw/actions/actionElementLock.d.ts +90 -119
  67. package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +45 -60
  68. package/dist/types/excalidraw/actions/actionExport.d.ts +171 -1412
  69. package/dist/types/excalidraw/actions/actionFinalize.d.ts +10 -395
  70. package/dist/types/excalidraw/actions/actionFlip.d.ts +2 -3
  71. package/dist/types/excalidraw/actions/actionFrame.d.ts +275 -370
  72. package/dist/types/excalidraw/actions/actionGroup.d.ts +95 -132
  73. package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +175 -197
  74. package/dist/types/excalidraw/actions/actionLink.d.ts +42 -57
  75. package/dist/types/excalidraw/actions/actionMenu.d.ts +35 -424
  76. package/dist/types/excalidraw/actions/actionNavigate.d.ts +18 -361
  77. package/dist/types/excalidraw/actions/actionProperties.d.ts +150 -2522
  78. package/dist/types/excalidraw/actions/actionSelectAll.d.ts +47 -66
  79. package/dist/types/excalidraw/actions/actionStyles.d.ts +44 -58
  80. package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +3 -3
  81. package/dist/types/excalidraw/actions/actionToggleArrowBinding.d.ts +172 -0
  82. package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +44 -59
  83. package/dist/types/excalidraw/actions/actionToggleMidpointSnapping.d.ts +172 -0
  84. package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +44 -59
  85. package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +33 -54
  86. package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +1 -1
  87. package/dist/types/excalidraw/actions/actionToggleStats.d.ts +44 -59
  88. package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +44 -59
  89. package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +45 -60
  90. package/dist/types/excalidraw/actions/actionZindex.d.ts +2 -3
  91. package/dist/types/excalidraw/actions/index.d.ts +4 -2
  92. package/dist/types/excalidraw/actions/register.d.ts +2 -2
  93. package/dist/types/excalidraw/actions/shortcuts.d.ts +1 -1
  94. package/dist/types/excalidraw/actions/types.d.ts +4 -4
  95. package/dist/types/excalidraw/appState.d.ts +21 -14
  96. package/dist/types/excalidraw/charts/charts.bar.d.ts +2 -0
  97. package/dist/types/excalidraw/charts/charts.constants.d.ts +48 -0
  98. package/dist/types/excalidraw/charts/charts.helpers.d.ts +32 -0
  99. package/dist/types/excalidraw/charts/charts.line.d.ts +2 -0
  100. package/dist/types/excalidraw/charts/charts.parse.d.ts +10 -0
  101. package/dist/types/excalidraw/charts/charts.radar.d.ts +2 -0
  102. package/dist/types/excalidraw/charts/charts.types.d.ts +18 -0
  103. package/dist/types/excalidraw/charts/index.d.ts +7 -0
  104. package/dist/types/excalidraw/clipboard.d.ts +57 -19
  105. package/dist/types/excalidraw/components/Actions.d.ts +21 -8
  106. package/dist/types/excalidraw/components/App.d.ts +118 -76
  107. package/dist/types/excalidraw/components/AppStateObserver.d.ts +37 -0
  108. package/dist/types/excalidraw/components/Card.d.ts +1 -3
  109. package/dist/types/excalidraw/components/ColorPicker/ColorInput.d.ts +2 -4
  110. package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +0 -1
  111. package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +2 -0
  112. package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +2 -1
  113. package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +2 -1
  114. package/dist/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +0 -1
  115. package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +0 -1
  116. package/dist/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +1 -0
  117. package/dist/types/excalidraw/components/CommandPalette/types.d.ts +2 -4
  118. package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +2 -2
  119. package/dist/types/excalidraw/components/DarkModeToggle.d.ts +1 -1
  120. package/dist/types/excalidraw/components/DefaultSidebar.d.ts +9 -13
  121. package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +1 -1
  122. package/dist/types/excalidraw/components/Ellipsify.d.ts +3 -0
  123. package/dist/types/excalidraw/components/ErrorDialog.d.ts +1 -1
  124. package/dist/types/excalidraw/components/EyeDropper.d.ts +0 -1
  125. package/dist/types/excalidraw/components/FilledButton.d.ts +2 -1
  126. package/dist/types/excalidraw/components/FontPicker/FontPicker.d.ts +2 -1
  127. package/dist/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +3 -1
  128. package/dist/types/excalidraw/components/FontPicker/keyboardNavHandlers.d.ts +0 -1
  129. package/dist/types/excalidraw/components/HelpDialog.d.ts +1 -1
  130. package/dist/types/excalidraw/components/HintViewer.d.ts +4 -3
  131. package/dist/types/excalidraw/components/IconPicker.d.ts +14 -9
  132. package/dist/types/excalidraw/components/InlineIcon.d.ts +3 -1
  133. package/dist/types/excalidraw/components/LayerUI.d.ts +2 -1
  134. package/dist/types/excalidraw/components/LibraryMenuControlButtons.d.ts +1 -1
  135. package/dist/types/excalidraw/components/LibraryMenuHeaderContent.d.ts +1 -2
  136. package/dist/types/excalidraw/components/LibraryMenuSection.d.ts +1 -1
  137. package/dist/types/excalidraw/components/LibraryUnit.d.ts +2 -3
  138. package/dist/types/excalidraw/components/LoadingMessage.d.ts +0 -1
  139. package/dist/types/excalidraw/components/MobileMenu.d.ts +3 -5
  140. package/dist/types/excalidraw/components/MobileToolBar.d.ts +10 -0
  141. package/dist/types/excalidraw/components/Modal.d.ts +0 -1
  142. package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirm.d.ts +1 -1
  143. package/dist/types/excalidraw/components/PasteChartDialog.d.ts +4 -5
  144. package/dist/types/excalidraw/components/Popover.d.ts +2 -1
  145. package/dist/types/excalidraw/components/PropertiesPopover.d.ts +2 -1
  146. package/dist/types/excalidraw/components/RadioGroup.d.ts +0 -1
  147. package/dist/types/excalidraw/components/RadioSelection.d.ts +4 -4
  148. package/dist/types/excalidraw/components/Range.d.ts +10 -4
  149. package/dist/types/excalidraw/components/ScrollableList.d.ts +0 -1
  150. package/dist/types/excalidraw/components/Sidebar/Sidebar.d.ts +15 -21
  151. package/dist/types/excalidraw/components/Sidebar/SidebarHeader.d.ts +1 -1
  152. package/dist/types/excalidraw/components/Sidebar/SidebarTab.d.ts +1 -2
  153. package/dist/types/excalidraw/components/Sidebar/SidebarTabTrigger.d.ts +1 -2
  154. package/dist/types/excalidraw/components/Sidebar/SidebarTabTriggers.d.ts +1 -2
  155. package/dist/types/excalidraw/components/Sidebar/SidebarTabs.d.ts +1 -2
  156. package/dist/types/excalidraw/components/Spinner.d.ts +4 -4
  157. package/dist/types/excalidraw/components/Stats/CanvasGrid.d.ts +0 -1
  158. package/dist/types/excalidraw/components/Stats/Collapsible.d.ts +0 -1
  159. package/dist/types/excalidraw/components/Stats/DragInput.d.ts +0 -1
  160. package/dist/types/excalidraw/components/Stats/index.d.ts +7 -8
  161. package/dist/types/excalidraw/components/Stats/utils.d.ts +1 -1
  162. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatHistoryMenu.d.ts +15 -0
  163. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatInterface.d.ts +23 -0
  164. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatMessage.d.ts +14 -0
  165. package/dist/types/excalidraw/components/TTDDialog/Chat/TTDChatPanel.d.ts +27 -0
  166. package/dist/types/excalidraw/components/TTDDialog/Chat/index.d.ts +3 -0
  167. package/dist/types/excalidraw/components/TTDDialog/Chat/useChatAgent.d.ts +8 -0
  168. package/dist/types/excalidraw/components/TTDDialog/CodeMirrorEditor.d.ts +11 -0
  169. package/dist/types/excalidraw/components/TTDDialog/MermaidToExcalidraw.d.ts +3 -2
  170. package/dist/types/excalidraw/components/TTDDialog/TTDContext.d.ts +13 -0
  171. package/dist/types/excalidraw/components/TTDDialog/TTDDialog.d.ts +12 -29
  172. package/dist/types/excalidraw/components/TTDDialog/TTDDialogInput.d.ts +3 -3
  173. package/dist/types/excalidraw/components/TTDDialog/TTDDialogOutput.d.ts +5 -2
  174. package/dist/types/excalidraw/components/TTDDialog/TTDDialogPanel.d.ts +13 -9
  175. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTab.d.ts +1 -2
  176. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTrigger.d.ts +1 -2
  177. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTriggers.d.ts +1 -2
  178. package/dist/types/excalidraw/components/TTDDialog/TTDPreviewPanel.d.ts +9 -0
  179. package/dist/types/excalidraw/components/TTDDialog/TTDWelcomeMessage.d.ts +1 -0
  180. package/dist/types/excalidraw/components/TTDDialog/TextToDiagram.d.ts +9 -0
  181. package/dist/types/excalidraw/components/TTDDialog/common.d.ts +16 -16
  182. package/dist/types/excalidraw/components/TTDDialog/hooks/useChatManagement.d.ts +13 -0
  183. package/dist/types/excalidraw/components/TTDDialog/hooks/useMermaidRenderer.d.ts +14 -0
  184. package/dist/types/excalidraw/components/TTDDialog/hooks/useTextGeneration.d.ts +7 -0
  185. package/dist/types/excalidraw/components/TTDDialog/mermaid-lang-lite.d.ts +2 -0
  186. package/dist/types/excalidraw/components/TTDDialog/types.d.ts +95 -0
  187. package/dist/types/excalidraw/components/TTDDialog/useTTDChatStorage.d.ts +22 -0
  188. package/dist/types/excalidraw/components/TTDDialog/utils/chat.d.ts +10 -0
  189. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidAutoFix.d.ts +1 -0
  190. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidError.d.ts +10 -0
  191. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidValidation.d.ts +1 -0
  192. package/dist/types/excalidraw/components/TextField.d.ts +1 -0
  193. package/dist/types/excalidraw/components/Toast.d.ts +11 -7
  194. package/dist/types/excalidraw/components/ToolPopover.d.ts +25 -0
  195. package/dist/types/excalidraw/components/Trans.d.ts +2 -2
  196. package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +7 -3
  197. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +47 -35
  198. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +7 -5
  199. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +3 -3
  200. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +13 -22
  201. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCheckbox.d.ts +5 -0
  202. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +5 -4
  203. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +0 -1
  204. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.d.ts +2 -2
  205. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemLink.d.ts +6 -6
  206. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSub.d.ts +23 -0
  207. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubContent.d.ts +8 -0
  208. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubTrigger.d.ts +12 -0
  209. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuTrigger.d.ts +3 -4
  210. package/dist/types/excalidraw/components/dropdownMenu/common.d.ts +2 -2
  211. package/dist/types/excalidraw/components/dropdownMenu/dropdownMenuUtils.d.ts +2 -0
  212. package/dist/types/excalidraw/components/hoc/withInternalFallback.d.ts +1 -1
  213. package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +1 -1
  214. package/dist/types/excalidraw/components/icons.d.ts +49 -21
  215. package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +19 -2
  216. package/dist/types/excalidraw/components/main-menu/MainMenu.d.ts +39 -35
  217. package/dist/types/excalidraw/components/shapes.d.ts +202 -1
  218. package/dist/types/excalidraw/data/blob.d.ts +327 -12
  219. package/dist/types/excalidraw/data/encode.d.ts +4 -4
  220. package/dist/types/excalidraw/data/encryption.d.ts +5 -5
  221. package/dist/types/excalidraw/data/filesystem.d.ts +5 -7
  222. package/dist/types/excalidraw/data/index.d.ts +4 -5
  223. package/dist/types/excalidraw/data/json.d.ts +170 -4
  224. package/dist/types/excalidraw/data/library.d.ts +24 -9
  225. package/dist/types/excalidraw/data/resave.d.ts +7 -2
  226. package/dist/types/excalidraw/data/restore.d.ts +27 -7
  227. package/dist/types/excalidraw/data/types.d.ts +4 -1
  228. package/dist/types/excalidraw/editor-jotai.d.ts +11 -11
  229. package/dist/types/excalidraw/errors.d.ts +14 -0
  230. package/dist/types/excalidraw/hooks/useLibraryItemSvg.d.ts +1 -1
  231. package/dist/types/excalidraw/hooks/useOutsideClick.d.ts +4 -3
  232. package/dist/types/excalidraw/hooks/useScrollPosition.d.ts +1 -2
  233. package/dist/types/excalidraw/hooks/useTextEditorFocus.d.ts +14 -0
  234. package/dist/types/excalidraw/i18n.d.ts +2 -2
  235. package/dist/types/excalidraw/renderer/animation.d.ts +12 -0
  236. package/dist/types/excalidraw/renderer/helpers.d.ts +6 -8
  237. package/dist/types/excalidraw/renderer/interactiveScene.d.ts +8 -14
  238. package/dist/types/excalidraw/renderer/staticScene.d.ts +4 -1
  239. package/dist/types/excalidraw/scene/Renderer.d.ts +5 -2
  240. package/dist/types/excalidraw/scene/export.d.ts +2 -2
  241. package/dist/types/excalidraw/scene/scroll.d.ts +1 -6
  242. package/dist/types/excalidraw/scene/types.d.ts +22 -5
  243. package/dist/types/excalidraw/shortcut.d.ts +1 -0
  244. package/dist/types/excalidraw/snapping.d.ts +5 -5
  245. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-bindings.d.ts +1 -1
  246. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-loader.d.ts +1 -1
  247. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-wasm.d.ts +1 -1
  248. package/dist/types/excalidraw/subset/woff2/woff2-loader.d.ts +2 -2
  249. package/dist/types/excalidraw/subset/woff2/woff2-wasm.d.ts +1 -1
  250. package/dist/types/excalidraw/textAutoResizeHandle.d.ts +15 -0
  251. package/dist/types/excalidraw/types.d.ts +127 -38
  252. package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +7 -3
  253. package/dist/types/math/src/point.d.ts +7 -2
  254. package/dist/types/math/src/polygon.d.ts +2 -2
  255. package/dist/types/math/src/range.d.ts +1 -3
  256. package/dist/types/math/src/segment.d.ts +4 -3
  257. package/dist/types/math/src/types.d.ts +25 -1
  258. package/dist/types/utils/src/bbox.d.ts +1 -1
  259. package/dist/types/utils/src/export.d.ts +5 -5
  260. package/dist/types/utils/src/shape.d.ts +6 -6
  261. package/dist/types/utils/src/withinBounds.d.ts +2 -2
  262. package/package.json +9 -3
  263. package/dist/types/excalidraw/charts.d.ts +0 -27
  264. package/dist/types/excalidraw/components/DiagramToCodePlugin/DiagramToCodePlugin.d.ts +0 -4
  265. package/dist/types/excalidraw/components/ExcalidrawLogo.d.ts +0 -16
  266. package/dist/types/excalidraw/components/InitializeApp.d.ts +0 -10
  267. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +0 -9
  268. package/dist/types/excalidraw/components/footer/FooterCenter.d.ts +0 -8
  269. package/dist/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +0 -10
  270. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Center.d.ts +0 -58
  271. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Hints.d.ts +0 -19
  272. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.d.ts +0 -85
  273. package/dist/types/excalidraw/data/reconcile.d.ts +0 -6
  274. package/dist/types/excalidraw/index.d.ts +0 -46
  275. package/dist/types/excalidraw/polyfill.d.ts +0 -2
@@ -0,0 +1,59 @@
1
+ import { type GlobalPoint, type LocalPoint } from "@excalidraw/math";
2
+ import { type Bounds } from "@excalidraw/common";
3
+ import type { ElementsMap, ExcalidrawElement } from "@excalidraw/element/types";
4
+ import type { Curve } from "@excalidraw/math";
5
+ import type { LineSegment } from "@excalidraw/utils";
6
+ declare global {
7
+ interface Window {
8
+ visualDebug?: {
9
+ data: DebugElement[][];
10
+ currentFrame?: number;
11
+ };
12
+ }
13
+ }
14
+ export type DebugElement = {
15
+ color: string;
16
+ data: LineSegment<GlobalPoint> | Curve<GlobalPoint> | DebugPolygon;
17
+ permanent: boolean;
18
+ };
19
+ export type DebugPolygon = {
20
+ type: "polygon";
21
+ points: GlobalPoint[];
22
+ fill?: boolean;
23
+ close?: boolean;
24
+ };
25
+ export declare const debugDrawHitVolume: (element: ExcalidrawElement, elementsMap: ElementsMap, options?: {
26
+ rays?: number;
27
+ color?: string;
28
+ fill?: boolean;
29
+ }) => void;
30
+ export declare const debugDrawCubicBezier: (c: Curve<GlobalPoint>, opts?: {
31
+ color?: string;
32
+ permanent?: boolean;
33
+ }) => void;
34
+ export declare const debugDrawLine: (segment: LineSegment<GlobalPoint> | LineSegment<GlobalPoint>[], opts?: {
35
+ color?: string;
36
+ permanent?: boolean;
37
+ }) => void;
38
+ export declare const debugDrawPolygon: (points: GlobalPoint[], opts?: {
39
+ color?: string;
40
+ permanent?: boolean;
41
+ fill?: boolean;
42
+ close?: boolean;
43
+ }) => void;
44
+ export declare const debugDrawPoint: (p: GlobalPoint, opts?: {
45
+ color?: string;
46
+ permanent?: boolean;
47
+ fuzzy?: boolean;
48
+ }) => void;
49
+ export declare const debugDrawBounds: (box: Bounds | Bounds[], opts?: {
50
+ color?: string;
51
+ permanent?: boolean;
52
+ }) => void;
53
+ export declare const debugDrawPoints: ({ x, y, points, }: {
54
+ x: number;
55
+ y: number;
56
+ points: readonly LocalPoint[];
57
+ }, options?: any) => void;
58
+ export declare const debugCloseFrame: () => void;
59
+ export declare const debugClear: () => void;
@@ -1,6 +1,12 @@
1
1
  import type { AppState } from "@excalidraw/excalidraw/types";
2
+ import type { GlobalPoint } from "@excalidraw/math";
2
3
  import type { Scene } from "./Scene";
3
- import type { ExcalidrawElement } from "./types";
4
+ import type { ExcalidrawArrowElement, ExcalidrawElement, NonDeletedExcalidrawElement, NonDeletedSceneElementsMap, Ordered, OrderedExcalidrawElement } from "./types";
5
+ /**
6
+ * Moves the arrow element above any bindable elements it intersects with or
7
+ * hovers over.
8
+ */
9
+ export declare const moveArrowAboveBindable: (point: GlobalPoint, arrow: ExcalidrawArrowElement, elements: readonly Ordered<NonDeletedExcalidrawElement>[], elementsMap: NonDeletedSceneElementsMap, scene: Scene, hit?: NonDeletedExcalidrawElement) => readonly OrderedExcalidrawElement[];
4
10
  export declare const moveOneLeft: (allElements: readonly ExcalidrawElement[], appState: AppState, scene: Scene) => readonly ExcalidrawElement[];
5
11
  export declare const moveOneRight: (allElements: readonly ExcalidrawElement[], appState: AppState, scene: Scene) => readonly ExcalidrawElement[];
6
12
  export declare const moveAllLeft: (allElements: readonly ExcalidrawElement[], appState: AppState) => readonly ExcalidrawElement[] | ExcalidrawElement[];
@@ -1,10 +1,9 @@
1
- /// <reference types="react" />
2
1
  export declare const actionAddToLibrary: {
3
2
  name: "addToLibrary";
4
3
  trackEvent: {
5
4
  category: "element";
6
5
  };
7
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: any, app: import("../types").AppClassProperties) => Promise<{
6
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: unknown, app: import("../types").AppClassProperties) => Promise<{
8
7
  captureUpdate: "EVENTUALLY";
9
8
  appState: {
10
9
  toast: {
@@ -17,18 +16,23 @@ export declare const actionAddToLibrary: {
17
16
  } | null;
18
17
  showWelcomeScreen: boolean;
19
18
  isLoading: boolean;
20
- errorMessage: import("react").ReactNode;
19
+ errorMessage: React.ReactNode;
21
20
  activeEmbeddable: {
22
21
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
23
- state: "active" | "hover";
22
+ state: "hover" | "active";
24
23
  } | null;
25
24
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
26
25
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
27
26
  multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
28
27
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
29
28
  isBindingEnabled: boolean;
29
+ bindingPreference: "enabled" | "disabled";
30
+ isMidpointSnappingEnabled: boolean;
30
31
  startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
31
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
32
+ suggestedBinding: {
33
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
34
+ midPoint?: import("@excalidraw/math").GlobalPoint;
35
+ } | null;
32
36
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
33
37
  frameRendering: {
34
38
  enabled: boolean;
@@ -38,13 +42,16 @@ export declare const actionAddToLibrary: {
38
42
  };
39
43
  editingFrame: string | null;
40
44
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
41
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
42
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
45
+ editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
43
46
  activeTool: {
44
47
  lastActiveTool: import("../types").ActiveTool | null;
45
48
  locked: boolean;
46
49
  fromSelection: boolean;
47
50
  } & import("../types").ActiveTool;
51
+ preferredSelectionTool: {
52
+ type: "selection" | "lasso";
53
+ initialized: boolean;
54
+ };
48
55
  penMode: boolean;
49
56
  penDetected: boolean;
50
57
  exportBackground: boolean;
@@ -53,19 +60,19 @@ export declare const actionAddToLibrary: {
53
60
  exportScale: number;
54
61
  currentItemStrokeColor: string;
55
62
  currentItemBackgroundColor: string;
56
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
63
+ currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
57
64
  currentItemStrokeWidth: number;
58
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
65
+ currentItemStrokeStyle: import("@excalidraw/element/types").ExcalidrawElement["strokeStyle"];
59
66
  currentItemRoughness: number;
60
67
  currentItemOpacity: number;
61
- currentItemFontFamily: number;
68
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
62
69
  currentItemFontSize: number;
63
- currentItemTextAlign: string;
70
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
64
71
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
65
72
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
66
- currentHoveredFontFamily: number | null;
73
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
67
74
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
68
- currentItemArrowType: "round" | "sharp" | "elbow";
75
+ currentItemArrowType: "sharp" | "round" | "elbow";
69
76
  viewBackgroundColor: string;
70
77
  scrollX: number;
71
78
  scrollY: number;
@@ -74,26 +81,30 @@ export declare const actionAddToLibrary: {
74
81
  name: string | null;
75
82
  isResizing: boolean;
76
83
  isRotating: boolean;
77
- zoom: Readonly<{
78
- value: import("../types").NormalizedZoomValue;
79
- }>;
80
- openMenu: "canvas" | "shape" | null;
81
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
84
+ zoom: import("../types").Zoom;
85
+ openMenu: "canvas" | null;
86
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
82
87
  openSidebar: {
83
- name: string;
84
- tab?: string | undefined;
88
+ name: import("../types").SidebarName;
89
+ tab?: import("../types").SidebarTabName;
85
90
  } | null;
86
- openDialog: {
91
+ openDialog: null | {
87
92
  name: "imageExport" | "help" | "jsonExport";
88
93
  } | {
89
94
  name: "ttd";
90
- tab: "mermaid" | "text-to-diagram";
95
+ tab: "text-to-diagram" | "mermaid";
91
96
  } | {
92
97
  name: "commandPalette";
98
+ } | {
99
+ name: "settings";
93
100
  } | {
94
101
  name: "elementLinkSelector";
95
- sourceElementId: string;
96
- } | null;
102
+ sourceElementId: import("@excalidraw/element/types").ExcalidrawElement["id"];
103
+ } | {
104
+ name: "charts";
105
+ data: import("../charts").Spreadsheet;
106
+ rawText: string;
107
+ };
97
108
  defaultSidebarDockedPreference: boolean;
98
109
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
99
110
  selectedElementIds: Readonly<{
@@ -116,45 +127,18 @@ export declare const actionAddToLibrary: {
116
127
  selectedGroupIds: {
117
128
  [groupId: string]: boolean;
118
129
  };
119
- editingGroupId: string | null;
130
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
120
131
  width: number;
121
132
  height: number;
122
133
  offsetTop: number;
123
134
  offsetLeft: number;
124
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
125
- collaborators: Map<import("../types").SocketId, Readonly<{
126
- pointer?: import("../types").CollaboratorPointer | undefined;
127
- button?: "up" | "down" | undefined;
128
- selectedElementIds?: Readonly<{
129
- [id: string]: true;
130
- }> | undefined;
131
- username?: string | null | undefined;
132
- userState?: import("@excalidraw/common").UserIdleState | undefined;
133
- color?: {
134
- background: string;
135
- stroke: string;
136
- } | undefined;
137
- avatarUrl?: string | undefined;
138
- id?: string | undefined;
139
- socketId?: import("../types").SocketId | undefined;
140
- isCurrentUser?: boolean | undefined;
141
- isInCall?: boolean | undefined;
142
- isSpeaking?: boolean | undefined;
143
- isMuted?: boolean | undefined;
144
- }>>;
135
+ fileHandle: FileSystemFileHandle | null;
136
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
145
137
  stats: {
146
138
  open: boolean;
147
139
  panels: number;
148
140
  };
149
- currentChartType: import("@excalidraw/element/types").ChartType;
150
- pasteDialog: {
151
- shown: false;
152
- data: null;
153
- } | {
154
- shown: true;
155
- data: import("../charts").Spreadsheet;
156
- };
157
- showHyperlinkPopup: false | "editor" | "info";
141
+ showHyperlinkPopup: false | "info" | "editor";
158
142
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
159
143
  snapLines: readonly import("../snapping").SnapLine[];
160
144
  originSnapOffset: {
@@ -165,15 +149,16 @@ export declare const actionAddToLibrary: {
165
149
  userToFollow: import("../types").UserToFollow | null;
166
150
  followedBy: Set<import("../types").SocketId>;
167
151
  isCropping: boolean;
168
- croppingElementId: string | null;
152
+ croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
169
153
  searchMatches: Readonly<{
170
- focusedId: string | null;
154
+ focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
171
155
  matches: readonly import("../types").SearchMatch[];
172
156
  }> | null;
173
157
  activeLockedId: string | null;
174
158
  lockedMultiSelections: {
175
159
  [groupId: string]: true;
176
160
  };
161
+ bindMode: import("@excalidraw/element/types").BindMode;
177
162
  };
178
163
  } | {
179
164
  captureUpdate: "EVENTUALLY";
@@ -188,15 +173,20 @@ export declare const actionAddToLibrary: {
188
173
  isLoading: boolean;
189
174
  activeEmbeddable: {
190
175
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
191
- state: "active" | "hover";
176
+ state: "hover" | "active";
192
177
  } | null;
193
178
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
194
179
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
195
180
  multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
196
181
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
197
182
  isBindingEnabled: boolean;
183
+ bindingPreference: "enabled" | "disabled";
184
+ isMidpointSnappingEnabled: boolean;
198
185
  startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
199
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
186
+ suggestedBinding: {
187
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
188
+ midPoint?: import("@excalidraw/math").GlobalPoint;
189
+ } | null;
200
190
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
201
191
  frameRendering: {
202
192
  enabled: boolean;
@@ -206,13 +196,16 @@ export declare const actionAddToLibrary: {
206
196
  };
207
197
  editingFrame: string | null;
208
198
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
209
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
210
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
199
+ editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
211
200
  activeTool: {
212
201
  lastActiveTool: import("../types").ActiveTool | null;
213
202
  locked: boolean;
214
203
  fromSelection: boolean;
215
204
  } & import("../types").ActiveTool;
205
+ preferredSelectionTool: {
206
+ type: "selection" | "lasso";
207
+ initialized: boolean;
208
+ };
216
209
  penMode: boolean;
217
210
  penDetected: boolean;
218
211
  exportBackground: boolean;
@@ -221,19 +214,19 @@ export declare const actionAddToLibrary: {
221
214
  exportScale: number;
222
215
  currentItemStrokeColor: string;
223
216
  currentItemBackgroundColor: string;
224
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
217
+ currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
225
218
  currentItemStrokeWidth: number;
226
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
219
+ currentItemStrokeStyle: import("@excalidraw/element/types").ExcalidrawElement["strokeStyle"];
227
220
  currentItemRoughness: number;
228
221
  currentItemOpacity: number;
229
- currentItemFontFamily: number;
222
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
230
223
  currentItemFontSize: number;
231
- currentItemTextAlign: string;
224
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
232
225
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
233
226
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
234
- currentHoveredFontFamily: number | null;
227
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
235
228
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
236
- currentItemArrowType: "round" | "sharp" | "elbow";
229
+ currentItemArrowType: "sharp" | "round" | "elbow";
237
230
  viewBackgroundColor: string;
238
231
  scrollX: number;
239
232
  scrollY: number;
@@ -242,26 +235,30 @@ export declare const actionAddToLibrary: {
242
235
  name: string | null;
243
236
  isResizing: boolean;
244
237
  isRotating: boolean;
245
- zoom: Readonly<{
246
- value: import("../types").NormalizedZoomValue;
247
- }>;
248
- openMenu: "canvas" | "shape" | null;
249
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
238
+ zoom: import("../types").Zoom;
239
+ openMenu: "canvas" | null;
240
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
250
241
  openSidebar: {
251
- name: string;
252
- tab?: string | undefined;
242
+ name: import("../types").SidebarName;
243
+ tab?: import("../types").SidebarTabName;
253
244
  } | null;
254
- openDialog: {
245
+ openDialog: null | {
255
246
  name: "imageExport" | "help" | "jsonExport";
256
247
  } | {
257
248
  name: "ttd";
258
- tab: "mermaid" | "text-to-diagram";
249
+ tab: "text-to-diagram" | "mermaid";
259
250
  } | {
260
251
  name: "commandPalette";
252
+ } | {
253
+ name: "settings";
261
254
  } | {
262
255
  name: "elementLinkSelector";
263
- sourceElementId: string;
264
- } | null;
256
+ sourceElementId: import("@excalidraw/element/types").ExcalidrawElement["id"];
257
+ } | {
258
+ name: "charts";
259
+ data: import("../charts").Spreadsheet;
260
+ rawText: string;
261
+ };
265
262
  defaultSidebarDockedPreference: boolean;
266
263
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
267
264
  selectedElementIds: Readonly<{
@@ -276,9 +273,9 @@ export declare const actionAddToLibrary: {
276
273
  selectedElementsAreBeingDragged: boolean;
277
274
  shouldCacheIgnoreZoom: boolean;
278
275
  toast: {
279
- message: string;
280
- closable?: boolean | undefined;
281
- duration?: number | undefined;
276
+ message: React.ReactNode;
277
+ closable?: boolean;
278
+ duration?: number;
282
279
  } | null;
283
280
  zenModeEnabled: boolean;
284
281
  theme: import("@excalidraw/element/types").Theme;
@@ -289,45 +286,18 @@ export declare const actionAddToLibrary: {
289
286
  selectedGroupIds: {
290
287
  [groupId: string]: boolean;
291
288
  };
292
- editingGroupId: string | null;
289
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
293
290
  width: number;
294
291
  height: number;
295
292
  offsetTop: number;
296
293
  offsetLeft: number;
297
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
298
- collaborators: Map<import("../types").SocketId, Readonly<{
299
- pointer?: import("../types").CollaboratorPointer | undefined;
300
- button?: "up" | "down" | undefined;
301
- selectedElementIds?: Readonly<{
302
- [id: string]: true;
303
- }> | undefined;
304
- username?: string | null | undefined;
305
- userState?: import("@excalidraw/common").UserIdleState | undefined;
306
- color?: {
307
- background: string;
308
- stroke: string;
309
- } | undefined;
310
- avatarUrl?: string | undefined;
311
- id?: string | undefined;
312
- socketId?: import("../types").SocketId | undefined;
313
- isCurrentUser?: boolean | undefined;
314
- isInCall?: boolean | undefined;
315
- isSpeaking?: boolean | undefined;
316
- isMuted?: boolean | undefined;
317
- }>>;
294
+ fileHandle: FileSystemFileHandle | null;
295
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
318
296
  stats: {
319
297
  open: boolean;
320
298
  panels: number;
321
299
  };
322
- currentChartType: import("@excalidraw/element/types").ChartType;
323
- pasteDialog: {
324
- shown: false;
325
- data: null;
326
- } | {
327
- shown: true;
328
- data: import("../charts").Spreadsheet;
329
- };
330
- showHyperlinkPopup: false | "editor" | "info";
300
+ showHyperlinkPopup: false | "info" | "editor";
331
301
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
332
302
  snapLines: readonly import("../snapping").SnapLine[];
333
303
  originSnapOffset: {
@@ -338,15 +308,16 @@ export declare const actionAddToLibrary: {
338
308
  userToFollow: import("../types").UserToFollow | null;
339
309
  followedBy: Set<import("../types").SocketId>;
340
310
  isCropping: boolean;
341
- croppingElementId: string | null;
311
+ croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
342
312
  searchMatches: Readonly<{
343
- focusedId: string | null;
313
+ focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
344
314
  matches: readonly import("../types").SearchMatch[];
345
315
  }> | null;
346
316
  activeLockedId: string | null;
347
317
  lockedMultiSelections: {
348
318
  [groupId: string]: true;
349
319
  };
320
+ bindMode: import("@excalidraw/element/types").BindMode;
350
321
  };
351
322
  }> | {
352
323
  captureUpdate: "EVENTUALLY";
@@ -361,15 +332,20 @@ export declare const actionAddToLibrary: {
361
332
  isLoading: boolean;
362
333
  activeEmbeddable: {
363
334
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
364
- state: "active" | "hover";
335
+ state: "hover" | "active";
365
336
  } | null;
366
337
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
367
338
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
368
339
  multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
369
340
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
370
341
  isBindingEnabled: boolean;
342
+ bindingPreference: "enabled" | "disabled";
343
+ isMidpointSnappingEnabled: boolean;
371
344
  startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
372
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
345
+ suggestedBinding: {
346
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
347
+ midPoint?: import("@excalidraw/math").GlobalPoint;
348
+ } | null;
373
349
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
374
350
  frameRendering: {
375
351
  enabled: boolean;
@@ -379,13 +355,16 @@ export declare const actionAddToLibrary: {
379
355
  };
380
356
  editingFrame: string | null;
381
357
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
382
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
383
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
358
+ editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
384
359
  activeTool: {
385
360
  lastActiveTool: import("../types").ActiveTool | null;
386
361
  locked: boolean;
387
362
  fromSelection: boolean;
388
363
  } & import("../types").ActiveTool;
364
+ preferredSelectionTool: {
365
+ type: "selection" | "lasso";
366
+ initialized: boolean;
367
+ };
389
368
  penMode: boolean;
390
369
  penDetected: boolean;
391
370
  exportBackground: boolean;
@@ -394,19 +373,19 @@ export declare const actionAddToLibrary: {
394
373
  exportScale: number;
395
374
  currentItemStrokeColor: string;
396
375
  currentItemBackgroundColor: string;
397
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
376
+ currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
398
377
  currentItemStrokeWidth: number;
399
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
378
+ currentItemStrokeStyle: import("@excalidraw/element/types").ExcalidrawElement["strokeStyle"];
400
379
  currentItemRoughness: number;
401
380
  currentItemOpacity: number;
402
- currentItemFontFamily: number;
381
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
403
382
  currentItemFontSize: number;
404
- currentItemTextAlign: string;
383
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
405
384
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
406
385
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
407
- currentHoveredFontFamily: number | null;
386
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
408
387
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
409
- currentItemArrowType: "round" | "sharp" | "elbow";
388
+ currentItemArrowType: "sharp" | "round" | "elbow";
410
389
  viewBackgroundColor: string;
411
390
  scrollX: number;
412
391
  scrollY: number;
@@ -415,26 +394,30 @@ export declare const actionAddToLibrary: {
415
394
  name: string | null;
416
395
  isResizing: boolean;
417
396
  isRotating: boolean;
418
- zoom: Readonly<{
419
- value: import("../types").NormalizedZoomValue;
420
- }>;
421
- openMenu: "canvas" | "shape" | null;
422
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
397
+ zoom: import("../types").Zoom;
398
+ openMenu: "canvas" | null;
399
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
423
400
  openSidebar: {
424
- name: string;
425
- tab?: string | undefined;
401
+ name: import("../types").SidebarName;
402
+ tab?: import("../types").SidebarTabName;
426
403
  } | null;
427
- openDialog: {
404
+ openDialog: null | {
428
405
  name: "imageExport" | "help" | "jsonExport";
429
406
  } | {
430
407
  name: "ttd";
431
- tab: "mermaid" | "text-to-diagram";
408
+ tab: "text-to-diagram" | "mermaid";
432
409
  } | {
433
410
  name: "commandPalette";
411
+ } | {
412
+ name: "settings";
434
413
  } | {
435
414
  name: "elementLinkSelector";
436
- sourceElementId: string;
437
- } | null;
415
+ sourceElementId: import("@excalidraw/element/types").ExcalidrawElement["id"];
416
+ } | {
417
+ name: "charts";
418
+ data: import("../charts").Spreadsheet;
419
+ rawText: string;
420
+ };
438
421
  defaultSidebarDockedPreference: boolean;
439
422
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
440
423
  selectedElementIds: Readonly<{
@@ -449,9 +432,9 @@ export declare const actionAddToLibrary: {
449
432
  selectedElementsAreBeingDragged: boolean;
450
433
  shouldCacheIgnoreZoom: boolean;
451
434
  toast: {
452
- message: string;
453
- closable?: boolean | undefined;
454
- duration?: number | undefined;
435
+ message: React.ReactNode;
436
+ closable?: boolean;
437
+ duration?: number;
455
438
  } | null;
456
439
  zenModeEnabled: boolean;
457
440
  theme: import("@excalidraw/element/types").Theme;
@@ -462,45 +445,18 @@ export declare const actionAddToLibrary: {
462
445
  selectedGroupIds: {
463
446
  [groupId: string]: boolean;
464
447
  };
465
- editingGroupId: string | null;
448
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
466
449
  width: number;
467
450
  height: number;
468
451
  offsetTop: number;
469
452
  offsetLeft: number;
470
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
471
- collaborators: Map<import("../types").SocketId, Readonly<{
472
- pointer?: import("../types").CollaboratorPointer | undefined;
473
- button?: "up" | "down" | undefined;
474
- selectedElementIds?: Readonly<{
475
- [id: string]: true;
476
- }> | undefined;
477
- username?: string | null | undefined;
478
- userState?: import("@excalidraw/common").UserIdleState | undefined;
479
- color?: {
480
- background: string;
481
- stroke: string;
482
- } | undefined;
483
- avatarUrl?: string | undefined;
484
- id?: string | undefined;
485
- socketId?: import("../types").SocketId | undefined;
486
- isCurrentUser?: boolean | undefined;
487
- isInCall?: boolean | undefined;
488
- isSpeaking?: boolean | undefined;
489
- isMuted?: boolean | undefined;
490
- }>>;
453
+ fileHandle: FileSystemFileHandle | null;
454
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
491
455
  stats: {
492
456
  open: boolean;
493
457
  panels: number;
494
458
  };
495
- currentChartType: import("@excalidraw/element/types").ChartType;
496
- pasteDialog: {
497
- shown: false;
498
- data: null;
499
- } | {
500
- shown: true;
501
- data: import("../charts").Spreadsheet;
502
- };
503
- showHyperlinkPopup: false | "editor" | "info";
459
+ showHyperlinkPopup: false | "info" | "editor";
504
460
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
505
461
  snapLines: readonly import("../snapping").SnapLine[];
506
462
  originSnapOffset: {
@@ -511,15 +467,16 @@ export declare const actionAddToLibrary: {
511
467
  userToFollow: import("../types").UserToFollow | null;
512
468
  followedBy: Set<import("../types").SocketId>;
513
469
  isCropping: boolean;
514
- croppingElementId: string | null;
470
+ croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
515
471
  searchMatches: Readonly<{
516
- focusedId: string | null;
472
+ focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
517
473
  matches: readonly import("../types").SearchMatch[];
518
474
  }> | null;
519
475
  activeLockedId: string | null;
520
476
  lockedMultiSelections: {
521
477
  [groupId: string]: true;
522
478
  };
479
+ bindMode: import("@excalidraw/element/types").BindMode;
523
480
  };
524
481
  };
525
482
  label: string;