@excalidraw/math 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 (274) hide show
  1. package/dist/dev/index.js +67 -65
  2. package/dist/dev/index.js.map +3 -3
  3. package/dist/prod/index.js +1 -1
  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/zindex.d.ts +7 -1
  55. package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +167 -210
  56. package/dist/types/excalidraw/actions/actionAlign.d.ts +6 -7
  57. package/dist/types/excalidraw/actions/actionBoundText.d.ts +92 -121
  58. package/dist/types/excalidraw/actions/actionCanvas.d.ts +545 -902
  59. package/dist/types/excalidraw/actions/actionClipboard.d.ts +123 -896
  60. package/dist/types/excalidraw/actions/actionCropEditor.d.ts +44 -59
  61. package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +148 -195
  62. package/dist/types/excalidraw/actions/actionDistribute.d.ts +2 -3
  63. package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +3 -4
  64. package/dist/types/excalidraw/actions/actionElementLink.d.ts +53 -74
  65. package/dist/types/excalidraw/actions/actionElementLock.d.ts +90 -119
  66. package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +59 -74
  67. package/dist/types/excalidraw/actions/actionExport.d.ts +171 -1412
  68. package/dist/types/excalidraw/actions/actionFinalize.d.ts +10 -395
  69. package/dist/types/excalidraw/actions/actionFlip.d.ts +2 -3
  70. package/dist/types/excalidraw/actions/actionFrame.d.ts +261 -356
  71. package/dist/types/excalidraw/actions/actionGroup.d.ts +95 -132
  72. package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +161 -183
  73. package/dist/types/excalidraw/actions/actionLink.d.ts +59 -74
  74. package/dist/types/excalidraw/actions/actionMenu.d.ts +48 -437
  75. package/dist/types/excalidraw/actions/actionNavigate.d.ts +18 -361
  76. package/dist/types/excalidraw/actions/actionProperties.d.ts +150 -2522
  77. package/dist/types/excalidraw/actions/actionSelectAll.d.ts +47 -66
  78. package/dist/types/excalidraw/actions/actionStyles.d.ts +44 -58
  79. package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +4 -4
  80. package/dist/types/excalidraw/actions/actionToggleArrowBinding.d.ts +172 -0
  81. package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +59 -74
  82. package/dist/types/excalidraw/actions/actionToggleMidpointSnapping.d.ts +172 -0
  83. package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +59 -74
  84. package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +47 -68
  85. package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +1 -1
  86. package/dist/types/excalidraw/actions/actionToggleStats.d.ts +58 -73
  87. package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +59 -74
  88. package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +59 -74
  89. package/dist/types/excalidraw/actions/actionZindex.d.ts +8 -9
  90. package/dist/types/excalidraw/actions/index.d.ts +4 -2
  91. package/dist/types/excalidraw/actions/register.d.ts +2 -2
  92. package/dist/types/excalidraw/actions/shortcuts.d.ts +1 -1
  93. package/dist/types/excalidraw/actions/types.d.ts +4 -4
  94. package/dist/types/excalidraw/appState.d.ts +28 -21
  95. package/dist/types/excalidraw/charts/charts.bar.d.ts +2 -0
  96. package/dist/types/excalidraw/charts/charts.constants.d.ts +48 -0
  97. package/dist/types/excalidraw/charts/charts.helpers.d.ts +32 -0
  98. package/dist/types/excalidraw/charts/charts.line.d.ts +2 -0
  99. package/dist/types/excalidraw/charts/charts.parse.d.ts +10 -0
  100. package/dist/types/excalidraw/charts/charts.radar.d.ts +2 -0
  101. package/dist/types/excalidraw/charts/charts.types.d.ts +18 -0
  102. package/dist/types/excalidraw/charts/index.d.ts +7 -0
  103. package/dist/types/excalidraw/clipboard.d.ts +57 -19
  104. package/dist/types/excalidraw/components/Actions.d.ts +21 -8
  105. package/dist/types/excalidraw/components/App.d.ts +118 -76
  106. package/dist/types/excalidraw/components/AppStateObserver.d.ts +37 -0
  107. package/dist/types/excalidraw/components/Card.d.ts +1 -3
  108. package/dist/types/excalidraw/components/ColorPicker/ColorInput.d.ts +2 -4
  109. package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +0 -1
  110. package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +2 -0
  111. package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +2 -1
  112. package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +2 -1
  113. package/dist/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +0 -1
  114. package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +0 -1
  115. package/dist/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +1 -0
  116. package/dist/types/excalidraw/components/CommandPalette/types.d.ts +2 -4
  117. package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +2 -2
  118. package/dist/types/excalidraw/components/DarkModeToggle.d.ts +1 -1
  119. package/dist/types/excalidraw/components/DefaultSidebar.d.ts +9 -13
  120. package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +1 -1
  121. package/dist/types/excalidraw/components/Ellipsify.d.ts +3 -0
  122. package/dist/types/excalidraw/components/ErrorDialog.d.ts +1 -1
  123. package/dist/types/excalidraw/components/EyeDropper.d.ts +0 -1
  124. package/dist/types/excalidraw/components/FilledButton.d.ts +2 -1
  125. package/dist/types/excalidraw/components/FontPicker/FontPicker.d.ts +2 -1
  126. package/dist/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +3 -1
  127. package/dist/types/excalidraw/components/FontPicker/keyboardNavHandlers.d.ts +0 -1
  128. package/dist/types/excalidraw/components/HelpDialog.d.ts +1 -1
  129. package/dist/types/excalidraw/components/HintViewer.d.ts +4 -3
  130. package/dist/types/excalidraw/components/IconPicker.d.ts +14 -9
  131. package/dist/types/excalidraw/components/InlineIcon.d.ts +3 -1
  132. package/dist/types/excalidraw/components/LayerUI.d.ts +2 -1
  133. package/dist/types/excalidraw/components/LibraryMenuControlButtons.d.ts +1 -1
  134. package/dist/types/excalidraw/components/LibraryMenuHeaderContent.d.ts +1 -2
  135. package/dist/types/excalidraw/components/LibraryMenuSection.d.ts +1 -1
  136. package/dist/types/excalidraw/components/LibraryUnit.d.ts +2 -3
  137. package/dist/types/excalidraw/components/LoadingMessage.d.ts +0 -1
  138. package/dist/types/excalidraw/components/MobileMenu.d.ts +3 -5
  139. package/dist/types/excalidraw/components/MobileToolBar.d.ts +10 -0
  140. package/dist/types/excalidraw/components/Modal.d.ts +0 -1
  141. package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirm.d.ts +1 -1
  142. package/dist/types/excalidraw/components/PasteChartDialog.d.ts +4 -5
  143. package/dist/types/excalidraw/components/Popover.d.ts +2 -1
  144. package/dist/types/excalidraw/components/PropertiesPopover.d.ts +2 -1
  145. package/dist/types/excalidraw/components/RadioGroup.d.ts +0 -1
  146. package/dist/types/excalidraw/components/RadioSelection.d.ts +4 -4
  147. package/dist/types/excalidraw/components/Range.d.ts +10 -4
  148. package/dist/types/excalidraw/components/ScrollableList.d.ts +0 -1
  149. package/dist/types/excalidraw/components/Sidebar/Sidebar.d.ts +15 -21
  150. package/dist/types/excalidraw/components/Sidebar/SidebarHeader.d.ts +1 -1
  151. package/dist/types/excalidraw/components/Sidebar/SidebarTab.d.ts +1 -2
  152. package/dist/types/excalidraw/components/Sidebar/SidebarTabTrigger.d.ts +1 -2
  153. package/dist/types/excalidraw/components/Sidebar/SidebarTabTriggers.d.ts +1 -2
  154. package/dist/types/excalidraw/components/Sidebar/SidebarTabs.d.ts +1 -2
  155. package/dist/types/excalidraw/components/Spinner.d.ts +4 -4
  156. package/dist/types/excalidraw/components/Stats/CanvasGrid.d.ts +0 -1
  157. package/dist/types/excalidraw/components/Stats/Collapsible.d.ts +0 -1
  158. package/dist/types/excalidraw/components/Stats/DragInput.d.ts +0 -1
  159. package/dist/types/excalidraw/components/Stats/index.d.ts +7 -8
  160. package/dist/types/excalidraw/components/Stats/utils.d.ts +1 -1
  161. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatHistoryMenu.d.ts +15 -0
  162. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatInterface.d.ts +23 -0
  163. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatMessage.d.ts +14 -0
  164. package/dist/types/excalidraw/components/TTDDialog/Chat/TTDChatPanel.d.ts +27 -0
  165. package/dist/types/excalidraw/components/TTDDialog/Chat/index.d.ts +3 -0
  166. package/dist/types/excalidraw/components/TTDDialog/Chat/useChatAgent.d.ts +8 -0
  167. package/dist/types/excalidraw/components/TTDDialog/CodeMirrorEditor.d.ts +11 -0
  168. package/dist/types/excalidraw/components/TTDDialog/MermaidToExcalidraw.d.ts +3 -2
  169. package/dist/types/excalidraw/components/TTDDialog/TTDContext.d.ts +13 -0
  170. package/dist/types/excalidraw/components/TTDDialog/TTDDialog.d.ts +12 -29
  171. package/dist/types/excalidraw/components/TTDDialog/TTDDialogInput.d.ts +3 -3
  172. package/dist/types/excalidraw/components/TTDDialog/TTDDialogOutput.d.ts +5 -2
  173. package/dist/types/excalidraw/components/TTDDialog/TTDDialogPanel.d.ts +13 -9
  174. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTab.d.ts +1 -2
  175. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTrigger.d.ts +1 -2
  176. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTriggers.d.ts +1 -2
  177. package/dist/types/excalidraw/components/TTDDialog/TTDPreviewPanel.d.ts +9 -0
  178. package/dist/types/excalidraw/components/TTDDialog/TTDWelcomeMessage.d.ts +1 -0
  179. package/dist/types/excalidraw/components/TTDDialog/TextToDiagram.d.ts +9 -0
  180. package/dist/types/excalidraw/components/TTDDialog/common.d.ts +16 -16
  181. package/dist/types/excalidraw/components/TTDDialog/hooks/useChatManagement.d.ts +13 -0
  182. package/dist/types/excalidraw/components/TTDDialog/hooks/useMermaidRenderer.d.ts +14 -0
  183. package/dist/types/excalidraw/components/TTDDialog/hooks/useTextGeneration.d.ts +7 -0
  184. package/dist/types/excalidraw/components/TTDDialog/mermaid-lang-lite.d.ts +2 -0
  185. package/dist/types/excalidraw/components/TTDDialog/types.d.ts +95 -0
  186. package/dist/types/excalidraw/components/TTDDialog/useTTDChatStorage.d.ts +22 -0
  187. package/dist/types/excalidraw/components/TTDDialog/utils/chat.d.ts +10 -0
  188. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidAutoFix.d.ts +1 -0
  189. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidError.d.ts +10 -0
  190. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidValidation.d.ts +1 -0
  191. package/dist/types/excalidraw/components/TextField.d.ts +1 -0
  192. package/dist/types/excalidraw/components/Toast.d.ts +11 -7
  193. package/dist/types/excalidraw/components/ToolPopover.d.ts +25 -0
  194. package/dist/types/excalidraw/components/Trans.d.ts +2 -2
  195. package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +7 -3
  196. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +47 -35
  197. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +7 -5
  198. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +3 -3
  199. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +13 -22
  200. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCheckbox.d.ts +5 -0
  201. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +5 -4
  202. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +0 -1
  203. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.d.ts +2 -2
  204. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemLink.d.ts +6 -6
  205. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSub.d.ts +23 -0
  206. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubContent.d.ts +8 -0
  207. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubTrigger.d.ts +12 -0
  208. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuTrigger.d.ts +3 -4
  209. package/dist/types/excalidraw/components/dropdownMenu/common.d.ts +2 -2
  210. package/dist/types/excalidraw/components/dropdownMenu/dropdownMenuUtils.d.ts +2 -0
  211. package/dist/types/excalidraw/components/hoc/withInternalFallback.d.ts +1 -1
  212. package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +1 -1
  213. package/dist/types/excalidraw/components/icons.d.ts +49 -21
  214. package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +19 -2
  215. package/dist/types/excalidraw/components/main-menu/MainMenu.d.ts +39 -35
  216. package/dist/types/excalidraw/components/shapes.d.ts +202 -1
  217. package/dist/types/excalidraw/data/blob.d.ts +327 -12
  218. package/dist/types/excalidraw/data/encode.d.ts +4 -4
  219. package/dist/types/excalidraw/data/encryption.d.ts +5 -5
  220. package/dist/types/excalidraw/data/filesystem.d.ts +5 -7
  221. package/dist/types/excalidraw/data/index.d.ts +4 -5
  222. package/dist/types/excalidraw/data/json.d.ts +170 -4
  223. package/dist/types/excalidraw/data/library.d.ts +24 -9
  224. package/dist/types/excalidraw/data/resave.d.ts +7 -2
  225. package/dist/types/excalidraw/data/restore.d.ts +27 -7
  226. package/dist/types/excalidraw/data/types.d.ts +4 -1
  227. package/dist/types/excalidraw/editor-jotai.d.ts +11 -11
  228. package/dist/types/excalidraw/errors.d.ts +14 -0
  229. package/dist/types/excalidraw/hooks/useLibraryItemSvg.d.ts +1 -1
  230. package/dist/types/excalidraw/hooks/useOutsideClick.d.ts +4 -3
  231. package/dist/types/excalidraw/hooks/useScrollPosition.d.ts +1 -2
  232. package/dist/types/excalidraw/hooks/useTextEditorFocus.d.ts +14 -0
  233. package/dist/types/excalidraw/i18n.d.ts +2 -2
  234. package/dist/types/excalidraw/renderer/animation.d.ts +12 -0
  235. package/dist/types/excalidraw/renderer/helpers.d.ts +6 -8
  236. package/dist/types/excalidraw/renderer/interactiveScene.d.ts +8 -14
  237. package/dist/types/excalidraw/renderer/staticScene.d.ts +4 -1
  238. package/dist/types/excalidraw/scene/Renderer.d.ts +5 -2
  239. package/dist/types/excalidraw/scene/export.d.ts +2 -2
  240. package/dist/types/excalidraw/scene/scroll.d.ts +1 -6
  241. package/dist/types/excalidraw/scene/types.d.ts +22 -5
  242. package/dist/types/excalidraw/shortcut.d.ts +1 -0
  243. package/dist/types/excalidraw/snapping.d.ts +5 -5
  244. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-bindings.d.ts +1 -1
  245. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-loader.d.ts +1 -1
  246. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-wasm.d.ts +1 -1
  247. package/dist/types/excalidraw/subset/woff2/woff2-loader.d.ts +2 -2
  248. package/dist/types/excalidraw/subset/woff2/woff2-wasm.d.ts +1 -1
  249. package/dist/types/excalidraw/textAutoResizeHandle.d.ts +15 -0
  250. package/dist/types/excalidraw/types.d.ts +127 -38
  251. package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +7 -3
  252. package/dist/types/math/src/point.d.ts +7 -2
  253. package/dist/types/math/src/polygon.d.ts +2 -2
  254. package/dist/types/math/src/range.d.ts +1 -3
  255. package/dist/types/math/src/segment.d.ts +4 -3
  256. package/dist/types/math/src/types.d.ts +25 -1
  257. package/dist/types/utils/src/bbox.d.ts +1 -1
  258. package/dist/types/utils/src/export.d.ts +5 -5
  259. package/dist/types/utils/src/shape.d.ts +6 -6
  260. package/dist/types/utils/src/withinBounds.d.ts +2 -2
  261. package/package.json +2 -2
  262. package/dist/types/excalidraw/charts.d.ts +0 -27
  263. package/dist/types/excalidraw/components/DiagramToCodePlugin/DiagramToCodePlugin.d.ts +0 -4
  264. package/dist/types/excalidraw/components/ExcalidrawLogo.d.ts +0 -16
  265. package/dist/types/excalidraw/components/InitializeApp.d.ts +0 -10
  266. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +0 -9
  267. package/dist/types/excalidraw/components/footer/FooterCenter.d.ts +0 -8
  268. package/dist/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +0 -10
  269. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Center.d.ts +0 -58
  270. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Hints.d.ts +0 -19
  271. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.d.ts +0 -85
  272. package/dist/types/excalidraw/data/reconcile.d.ts +0 -6
  273. package/dist/types/excalidraw/index.d.ts +0 -46
  274. package/dist/types/excalidraw/polyfill.d.ts +0 -2
@@ -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("../../element/src/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,19 +16,24 @@ 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
- element: import("../../element/src/types").NonDeletedExcalidrawElement;
23
- state: "active" | "hover";
21
+ element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
22
+ state: "hover" | "active";
24
23
  } | null;
25
- newElement: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawNonSelectionElement> | null;
26
- resizingElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
27
- multiElement: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawLinearElement> | null;
28
- selectionElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
24
+ newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
25
+ resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
26
+ multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
27
+ selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
29
28
  isBindingEnabled: boolean;
30
- startBoundElement: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawBindableElement> | null;
31
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
32
- frameToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawFrameLikeElement> | null;
29
+ bindingPreference: "enabled" | "disabled";
30
+ isMidpointSnappingEnabled: boolean;
31
+ startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
32
+ suggestedBinding: {
33
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
34
+ midPoint?: import("@excalidraw/math").GlobalPoint;
35
+ } | null;
36
+ frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
33
37
  frameRendering: {
34
38
  enabled: boolean;
35
39
  name: boolean;
@@ -37,14 +41,17 @@ export declare const actionAddToLibrary: {
37
41
  clip: boolean;
38
42
  };
39
43
  editingFrame: string | null;
40
- elementsToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawElement>[] | null;
41
- editingTextElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
42
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
44
+ elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | 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("../../element/src/types").FillStyle;
63
+ currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
57
64
  currentItemStrokeWidth: number;
58
- currentItemStrokeStyle: import("../../element/src/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;
64
- currentItemStartArrowhead: import("../../element/src/types").Arrowhead | null;
65
- currentItemEndArrowhead: import("../../element/src/types").Arrowhead | null;
66
- currentHoveredFontFamily: number | null;
67
- currentItemRoundness: import("../../element/src/types").StrokeRoundness;
68
- currentItemArrowType: "round" | "sharp" | "elbow";
70
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
71
+ currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
72
+ currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
73
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
74
+ currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
75
+ currentItemArrowType: "sharp" | "round" | "elbow";
69
76
  viewBackgroundColor: string;
70
77
  scrollX: number;
71
78
  scrollY: number;
@@ -74,28 +81,32 @@ 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
- lastPointerDownWith: import("../../element/src/types").PointerType;
109
+ lastPointerDownWith: import("@excalidraw/element/types").PointerType;
99
110
  selectedElementIds: Readonly<{
100
111
  [id: string]: true;
101
112
  }>;
@@ -108,7 +119,7 @@ export declare const actionAddToLibrary: {
108
119
  selectedElementsAreBeingDragged: boolean;
109
120
  shouldCacheIgnoreZoom: boolean;
110
121
  zenModeEnabled: boolean;
111
- theme: import("../../element/src/types").Theme;
122
+ theme: import("@excalidraw/element/types").Theme;
112
123
  gridSize: number;
113
124
  gridStep: number;
114
125
  gridModeEnabled: boolean;
@@ -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("../../element/src/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";
@@ -187,17 +172,22 @@ export declare const actionAddToLibrary: {
187
172
  showWelcomeScreen: boolean;
188
173
  isLoading: boolean;
189
174
  activeEmbeddable: {
190
- element: import("../../element/src/types").NonDeletedExcalidrawElement;
191
- state: "active" | "hover";
175
+ element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
176
+ state: "hover" | "active";
192
177
  } | null;
193
- newElement: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawNonSelectionElement> | null;
194
- resizingElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
195
- multiElement: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawLinearElement> | null;
196
- selectionElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
178
+ newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
179
+ resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
180
+ multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
181
+ selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
197
182
  isBindingEnabled: boolean;
198
- startBoundElement: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawBindableElement> | null;
199
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
200
- frameToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawFrameLikeElement> | null;
183
+ bindingPreference: "enabled" | "disabled";
184
+ isMidpointSnappingEnabled: boolean;
185
+ startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
186
+ suggestedBinding: {
187
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
188
+ midPoint?: import("@excalidraw/math").GlobalPoint;
189
+ } | null;
190
+ frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
201
191
  frameRendering: {
202
192
  enabled: boolean;
203
193
  name: boolean;
@@ -205,14 +195,17 @@ export declare const actionAddToLibrary: {
205
195
  clip: boolean;
206
196
  };
207
197
  editingFrame: string | null;
208
- elementsToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawElement>[] | null;
209
- editingTextElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
210
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
198
+ elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | 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("../../element/src/types").FillStyle;
217
+ currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
225
218
  currentItemStrokeWidth: number;
226
- currentItemStrokeStyle: import("../../element/src/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;
232
- currentItemStartArrowhead: import("../../element/src/types").Arrowhead | null;
233
- currentItemEndArrowhead: import("../../element/src/types").Arrowhead | null;
234
- currentHoveredFontFamily: number | null;
235
- currentItemRoundness: import("../../element/src/types").StrokeRoundness;
236
- currentItemArrowType: "round" | "sharp" | "elbow";
224
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
225
+ currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
226
+ currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
227
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
228
+ currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
229
+ currentItemArrowType: "sharp" | "round" | "elbow";
237
230
  viewBackgroundColor: string;
238
231
  scrollX: number;
239
232
  scrollY: number;
@@ -242,28 +235,32 @@ 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
- lastPointerDownWith: import("../../element/src/types").PointerType;
263
+ lastPointerDownWith: import("@excalidraw/element/types").PointerType;
267
264
  selectedElementIds: Readonly<{
268
265
  [id: string]: true;
269
266
  }>;
@@ -276,12 +273,12 @@ 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
- theme: import("../../element/src/types").Theme;
281
+ theme: import("@excalidraw/element/types").Theme;
285
282
  gridSize: number;
286
283
  gridStep: number;
287
284
  gridModeEnabled: boolean;
@@ -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("../../element/src/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";
@@ -360,17 +331,22 @@ export declare const actionAddToLibrary: {
360
331
  showWelcomeScreen: boolean;
361
332
  isLoading: boolean;
362
333
  activeEmbeddable: {
363
- element: import("../../element/src/types").NonDeletedExcalidrawElement;
364
- state: "active" | "hover";
334
+ element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
335
+ state: "hover" | "active";
365
336
  } | null;
366
- newElement: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawNonSelectionElement> | null;
367
- resizingElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
368
- multiElement: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawLinearElement> | null;
369
- selectionElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
337
+ newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
338
+ resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
339
+ multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
340
+ selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
370
341
  isBindingEnabled: boolean;
371
- startBoundElement: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawBindableElement> | null;
372
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
373
- frameToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawFrameLikeElement> | null;
342
+ bindingPreference: "enabled" | "disabled";
343
+ isMidpointSnappingEnabled: boolean;
344
+ startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
345
+ suggestedBinding: {
346
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
347
+ midPoint?: import("@excalidraw/math").GlobalPoint;
348
+ } | null;
349
+ frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
374
350
  frameRendering: {
375
351
  enabled: boolean;
376
352
  name: boolean;
@@ -378,14 +354,17 @@ export declare const actionAddToLibrary: {
378
354
  clip: boolean;
379
355
  };
380
356
  editingFrame: string | null;
381
- elementsToHighlight: import("../../element/src/types").NonDeleted<import("../../element/src/types").ExcalidrawElement>[] | null;
382
- editingTextElement: import("../../element/src/types").NonDeletedExcalidrawElement | null;
383
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
357
+ elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | 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("../../element/src/types").FillStyle;
376
+ currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
398
377
  currentItemStrokeWidth: number;
399
- currentItemStrokeStyle: import("../../element/src/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;
405
- currentItemStartArrowhead: import("../../element/src/types").Arrowhead | null;
406
- currentItemEndArrowhead: import("../../element/src/types").Arrowhead | null;
407
- currentHoveredFontFamily: number | null;
408
- currentItemRoundness: import("../../element/src/types").StrokeRoundness;
409
- currentItemArrowType: "round" | "sharp" | "elbow";
383
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
384
+ currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
385
+ currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
386
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
387
+ currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
388
+ currentItemArrowType: "sharp" | "round" | "elbow";
410
389
  viewBackgroundColor: string;
411
390
  scrollX: number;
412
391
  scrollY: number;
@@ -415,28 +394,32 @@ 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
- lastPointerDownWith: import("../../element/src/types").PointerType;
422
+ lastPointerDownWith: import("@excalidraw/element/types").PointerType;
440
423
  selectedElementIds: Readonly<{
441
424
  [id: string]: true;
442
425
  }>;
@@ -449,12 +432,12 @@ 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
- theme: import("../../element/src/types").Theme;
440
+ theme: import("@excalidraw/element/types").Theme;
458
441
  gridSize: number;
459
442
  gridStep: number;
460
443
  gridModeEnabled: boolean;
@@ -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("../../element/src/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;