@excalidraw/math 0.18.0-4e471c107 → 0.18.0-4e758db

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 (353) hide show
  1. package/dist/dev/index.js +355 -161
  2. package/dist/dev/index.js.map +4 -4
  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 +81 -39
  8. package/dist/types/common/src/constants.d.ts +94 -33
  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 +5 -1
  13. package/dist/types/common/src/points.d.ts +1 -1
  14. package/dist/types/common/src/random.d.ts +7 -0
  15. package/dist/types/common/src/utility-types.d.ts +0 -1
  16. package/dist/types/common/src/utils.d.ts +47 -77
  17. package/dist/types/common/src/versionedSnapshotStore.d.ts +17 -0
  18. package/dist/types/element/src/Scene.d.ts +18 -10
  19. package/dist/types/element/src/align.d.ts +3 -2
  20. package/dist/types/element/src/arrowEndpointText.d.ts +49 -0
  21. package/dist/types/element/src/arrowheads.d.ts +3 -0
  22. package/dist/types/element/src/arrows/focus.d.ts +30 -0
  23. package/dist/types/element/src/arrows/helpers.d.ts +5 -0
  24. package/dist/types/element/src/binding.d.ts +79 -51
  25. package/dist/types/element/src/bounds.d.ts +26 -19
  26. package/dist/types/element/src/bucketFill.d.ts +110 -0
  27. package/dist/types/element/src/collision.d.ts +7 -2
  28. package/dist/types/element/src/comparisons.d.ts +10 -7
  29. package/dist/types/element/src/convertToShape.d.ts +23 -0
  30. package/dist/types/element/src/delta.d.ts +39 -5
  31. package/dist/types/element/src/distribute.d.ts +4 -2
  32. package/dist/types/element/src/dragElements.d.ts +30 -3
  33. package/dist/types/element/src/duplicate.d.ts +7 -6
  34. package/dist/types/element/src/elbowArrow.d.ts +2 -0
  35. package/dist/types/element/src/embeddable.d.ts +2 -2
  36. package/dist/types/element/src/flowchart.d.ts +11 -7
  37. package/dist/types/element/src/fractionalIndex.d.ts +4 -4
  38. package/dist/types/element/src/frame.d.ts +16 -11
  39. package/dist/types/element/src/groups.d.ts +9 -8
  40. package/dist/types/element/src/heading.d.ts +2 -1
  41. package/dist/types/element/src/image.d.ts +1 -11
  42. package/dist/types/element/src/index.d.ts +10 -4
  43. package/dist/types/element/src/linearElementEditor.d.ts +50 -31
  44. package/dist/types/element/src/mutateElement.d.ts +6 -2
  45. package/dist/types/element/src/newElement.d.ts +44 -8
  46. package/dist/types/element/src/positionElementsOnGrid.d.ts +2 -0
  47. package/dist/types/element/src/renderElement.d.ts +4 -10
  48. package/dist/types/element/src/resizeElements.d.ts +12 -12
  49. package/dist/types/element/src/resizeTest.d.ts +6 -5
  50. package/dist/types/element/src/selection.d.ts +14 -14
  51. package/dist/types/element/src/shape.d.ts +21 -8
  52. package/dist/types/element/src/sizeHelpers.d.ts +6 -0
  53. package/dist/types/element/src/sortElements.d.ts +10 -0
  54. package/dist/types/element/src/stickyNote.d.ts +183 -0
  55. package/dist/types/element/src/store.d.ts +6 -1
  56. package/dist/types/element/src/textElement.d.ts +15 -11
  57. package/dist/types/element/src/textMeasurements.d.ts +1 -3
  58. package/dist/types/element/src/textWrapping.d.ts +26 -0
  59. package/dist/types/{excalidraw/data → element/src}/transform.d.ts +27 -8
  60. package/dist/types/element/src/transformHandles.d.ts +8 -27
  61. package/dist/types/element/src/typeChecks.d.ts +30 -31
  62. package/dist/types/element/src/types.d.ts +55 -20
  63. package/dist/types/element/src/utils.d.ts +15 -6
  64. package/dist/types/element/src/zindex.d.ts +7 -1
  65. package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +221 -222
  66. package/dist/types/excalidraw/actions/actionAlign.d.ts +12 -13
  67. package/dist/types/excalidraw/actions/actionBoundText.d.ts +132 -133
  68. package/dist/types/excalidraw/actions/actionCanvas.d.ts +481 -1576
  69. package/dist/types/excalidraw/actions/actionClipboard.d.ts +159 -904
  70. package/dist/types/excalidraw/actions/actionCropEditor.d.ts +64 -65
  71. package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +210 -214
  72. package/dist/types/excalidraw/actions/actionDeselect.d.ts +170 -0
  73. package/dist/types/excalidraw/actions/actionDistribute.d.ts +4 -6
  74. package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +3 -4
  75. package/dist/types/excalidraw/actions/actionElementLink.d.ts +71 -78
  76. package/dist/types/excalidraw/actions/actionElementLock.d.ts +131 -132
  77. package/dist/types/excalidraw/actions/actionExport.d.ts +210 -1423
  78. package/dist/types/excalidraw/actions/actionFinalize.d.ts +11 -395
  79. package/dist/types/excalidraw/actions/actionFlip.d.ts +2 -3
  80. package/dist/types/excalidraw/actions/actionFrame.d.ts +333 -508
  81. package/dist/types/excalidraw/actions/actionGroup.d.ts +142 -151
  82. package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +235 -191
  83. package/dist/types/excalidraw/actions/actionLink.d.ts +77 -78
  84. package/dist/types/excalidraw/actions/actionMenu.d.ts +66 -441
  85. package/dist/types/excalidraw/actions/actionNavigate.d.ts +18 -361
  86. package/dist/types/excalidraw/actions/actionProperties.d.ts +220 -2548
  87. package/dist/types/excalidraw/actions/actionSelectAll.d.ts +71 -76
  88. package/dist/types/excalidraw/actions/actionStyles.d.ts +65 -65
  89. package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +4 -4
  90. package/dist/types/excalidraw/actions/actionToggleArrowBinding.d.ts +186 -0
  91. package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +79 -81
  92. package/dist/types/excalidraw/actions/actionToggleMidpointSnapping.d.ts +186 -0
  93. package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +78 -79
  94. package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +67 -75
  95. package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +2 -2
  96. package/dist/types/excalidraw/actions/actionToggleStats.d.ts +77 -78
  97. package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +78 -79
  98. package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +78 -79
  99. package/dist/types/excalidraw/actions/actionZindex.d.ts +8 -9
  100. package/dist/types/excalidraw/actions/colorTargets.d.ts +39 -0
  101. package/dist/types/excalidraw/actions/index.d.ts +5 -3
  102. package/dist/types/excalidraw/actions/manager.d.ts +1 -0
  103. package/dist/types/excalidraw/actions/register.d.ts +2 -2
  104. package/dist/types/excalidraw/actions/shortcuts.d.ts +1 -1
  105. package/dist/types/excalidraw/actions/types.d.ts +11 -7
  106. package/dist/types/excalidraw/{animated-trail.d.ts → animatedTrail.d.ts} +4 -3
  107. package/dist/types/excalidraw/appState.d.ts +55 -26
  108. package/dist/types/excalidraw/charts/charts.bar.d.ts +2 -0
  109. package/dist/types/excalidraw/charts/charts.constants.d.ts +48 -0
  110. package/dist/types/excalidraw/charts/charts.helpers.d.ts +32 -0
  111. package/dist/types/excalidraw/charts/charts.line.d.ts +2 -0
  112. package/dist/types/excalidraw/charts/charts.parse.d.ts +10 -0
  113. package/dist/types/excalidraw/charts/charts.radar.d.ts +2 -0
  114. package/dist/types/excalidraw/charts/charts.types.d.ts +18 -0
  115. package/dist/types/excalidraw/charts/index.d.ts +7 -0
  116. package/dist/types/excalidraw/clipboard.d.ts +57 -19
  117. package/dist/types/excalidraw/components/Actions.d.ts +32 -14
  118. package/dist/types/excalidraw/components/ActiveConfirmDialog.d.ts +1 -1
  119. package/dist/types/excalidraw/components/App.arrowText.d.ts +104 -0
  120. package/dist/types/excalidraw/components/App.bucketFill.d.ts +48 -0
  121. package/dist/types/excalidraw/components/App.cursor.d.ts +38 -0
  122. package/dist/types/excalidraw/components/App.d.ts +559 -130
  123. package/dist/types/excalidraw/components/App.drawshape.d.ts +55 -0
  124. package/dist/types/excalidraw/components/App.flowchart.d.ts +21 -0
  125. package/dist/types/excalidraw/components/App.toolDrag.d.ts +63 -0
  126. package/dist/types/excalidraw/components/App.viewport.d.ts +73 -0
  127. package/dist/types/excalidraw/components/App.wheel.d.ts +33 -0
  128. package/dist/types/excalidraw/components/AppStateObserver.d.ts +37 -0
  129. package/dist/types/excalidraw/components/Card.d.ts +1 -3
  130. package/dist/types/excalidraw/components/ColorPicker/ColorInput.d.ts +2 -4
  131. package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +9 -4
  132. package/dist/types/excalidraw/components/ColorPicker/CustomColorList.d.ts +3 -1
  133. package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +5 -1
  134. package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +10 -2
  135. package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +5 -2
  136. package/dist/types/excalidraw/components/ColorPicker/TopPicks.d.ts +8 -1
  137. package/dist/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +1 -2
  138. package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +2 -2
  139. package/dist/types/excalidraw/components/ColorPicker/topPicksDnD.d.ts +31 -0
  140. package/dist/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +1 -0
  141. package/dist/types/excalidraw/components/CommandPalette/defaultCommandPaletteItems.d.ts +1 -2
  142. package/dist/types/excalidraw/components/CommandPalette/types.d.ts +2 -4
  143. package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +4 -4
  144. package/dist/types/excalidraw/components/CursorHint.d.ts +46 -0
  145. package/dist/types/excalidraw/components/DarkModeToggle.d.ts +1 -1
  146. package/dist/types/excalidraw/components/DefaultSidebar.d.ts +9 -13
  147. package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +1 -1
  148. package/dist/types/excalidraw/components/Ellipsify.d.ts +3 -0
  149. package/dist/types/excalidraw/components/ErrorDialog.d.ts +1 -1
  150. package/dist/types/excalidraw/components/EyeDropper.d.ts +1 -2
  151. package/dist/types/excalidraw/components/FilledButton.d.ts +2 -1
  152. package/dist/types/excalidraw/components/FontPicker/FontPicker.d.ts +2 -1
  153. package/dist/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +3 -1
  154. package/dist/types/excalidraw/components/FontPicker/keyboardNavHandlers.d.ts +0 -1
  155. package/dist/types/excalidraw/components/HelpDialog.d.ts +1 -1
  156. package/dist/types/excalidraw/components/HintViewer.d.ts +4 -3
  157. package/dist/types/excalidraw/components/IconButton.d.ts +48 -0
  158. package/dist/types/excalidraw/components/IconPicker.d.ts +14 -9
  159. package/dist/types/excalidraw/components/InlineIcon.d.ts +3 -1
  160. package/dist/types/excalidraw/components/Island.d.ts +7 -0
  161. package/dist/types/excalidraw/components/LaserPointerButton.d.ts +2 -4
  162. package/dist/types/excalidraw/components/LayerUI.d.ts +6 -2
  163. package/dist/types/excalidraw/components/LibraryMenu.d.ts +1 -1
  164. package/dist/types/excalidraw/components/LibraryMenuControlButtons.d.ts +1 -1
  165. package/dist/types/excalidraw/components/LibraryMenuHeaderContent.d.ts +1 -2
  166. package/dist/types/excalidraw/components/LibraryMenuSection.d.ts +1 -1
  167. package/dist/types/excalidraw/components/LibraryUnit.d.ts +2 -3
  168. package/dist/types/excalidraw/components/LoadingMessage.d.ts +0 -1
  169. package/dist/types/excalidraw/components/LockButton.d.ts +3 -4
  170. package/dist/types/excalidraw/components/MagicButton.d.ts +0 -2
  171. package/dist/types/excalidraw/components/MobileMenu.d.ts +5 -7
  172. package/dist/types/excalidraw/components/MobileToolbar.d.ts +9 -0
  173. package/dist/types/excalidraw/components/Modal.d.ts +0 -1
  174. package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirm.d.ts +1 -1
  175. package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirmState.d.ts +1 -1
  176. package/dist/types/excalidraw/components/PasteChartDialog.d.ts +4 -5
  177. package/dist/types/excalidraw/components/PenModeButton.d.ts +2 -5
  178. package/dist/types/excalidraw/components/Popover.d.ts +2 -3
  179. package/dist/types/excalidraw/components/PropertiesPopover.d.ts +2 -1
  180. package/dist/types/excalidraw/components/{ButtonIcon.d.ts → RadioButton.d.ts} +2 -5
  181. package/dist/types/excalidraw/components/RadioGroup.d.ts +0 -1
  182. package/dist/types/excalidraw/components/RadioSelection.d.ts +4 -4
  183. package/dist/types/excalidraw/components/Range.d.ts +10 -4
  184. package/dist/types/excalidraw/components/SVGLayer.d.ts +1 -1
  185. package/dist/types/excalidraw/components/ScrollableList.d.ts +0 -1
  186. package/dist/types/excalidraw/components/SearchMenu.d.ts +1 -1
  187. package/dist/types/excalidraw/components/Sidebar/Sidebar.d.ts +16 -22
  188. package/dist/types/excalidraw/components/Sidebar/SidebarHeader.d.ts +1 -1
  189. package/dist/types/excalidraw/components/Sidebar/SidebarTab.d.ts +1 -2
  190. package/dist/types/excalidraw/components/Sidebar/SidebarTabTrigger.d.ts +1 -2
  191. package/dist/types/excalidraw/components/Sidebar/SidebarTabTriggers.d.ts +1 -2
  192. package/dist/types/excalidraw/components/Sidebar/SidebarTabs.d.ts +1 -2
  193. package/dist/types/excalidraw/components/Spinner.d.ts +4 -4
  194. package/dist/types/excalidraw/components/Stats/Angle.d.ts +2 -2
  195. package/dist/types/excalidraw/components/Stats/CanvasGrid.d.ts +0 -1
  196. package/dist/types/excalidraw/components/Stats/Collapsible.d.ts +0 -1
  197. package/dist/types/excalidraw/components/Stats/Dimension.d.ts +2 -2
  198. package/dist/types/excalidraw/components/Stats/DragInput.d.ts +2 -3
  199. package/dist/types/excalidraw/components/Stats/MultiAngle.d.ts +2 -2
  200. package/dist/types/excalidraw/components/Stats/MultiDimension.d.ts +2 -2
  201. package/dist/types/excalidraw/components/Stats/MultiPosition.d.ts +2 -2
  202. package/dist/types/excalidraw/components/Stats/Position.d.ts +3 -3
  203. package/dist/types/excalidraw/components/Stats/index.d.ts +7 -8
  204. package/dist/types/excalidraw/components/Stats/utils.d.ts +1 -1
  205. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatHistoryMenu.d.ts +15 -0
  206. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatInterface.d.ts +23 -0
  207. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatMessage.d.ts +14 -0
  208. package/dist/types/excalidraw/components/TTDDialog/Chat/TTDChatPanel.d.ts +27 -0
  209. package/dist/types/excalidraw/components/TTDDialog/Chat/index.d.ts +3 -0
  210. package/dist/types/excalidraw/components/TTDDialog/Chat/useChatAgent.d.ts +8 -0
  211. package/dist/types/excalidraw/components/TTDDialog/CodeMirrorEditor.d.ts +11 -0
  212. package/dist/types/excalidraw/components/TTDDialog/MermaidToExcalidraw.d.ts +3 -2
  213. package/dist/types/excalidraw/components/TTDDialog/TTDContext.d.ts +13 -0
  214. package/dist/types/excalidraw/components/TTDDialog/TTDDialog.d.ts +12 -29
  215. package/dist/types/excalidraw/components/TTDDialog/TTDDialogInput.d.ts +3 -3
  216. package/dist/types/excalidraw/components/TTDDialog/TTDDialogOutput.d.ts +5 -2
  217. package/dist/types/excalidraw/components/TTDDialog/TTDDialogPanel.d.ts +13 -9
  218. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTab.d.ts +1 -2
  219. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTrigger.d.ts +1 -2
  220. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTriggers.d.ts +1 -2
  221. package/dist/types/excalidraw/components/TTDDialog/TTDPreviewPanel.d.ts +9 -0
  222. package/dist/types/excalidraw/components/TTDDialog/TTDWelcomeMessage.d.ts +1 -0
  223. package/dist/types/excalidraw/components/TTDDialog/TextToDiagram.d.ts +9 -0
  224. package/dist/types/excalidraw/components/TTDDialog/common.d.ts +16 -16
  225. package/dist/types/excalidraw/components/TTDDialog/hooks/useChatManagement.d.ts +13 -0
  226. package/dist/types/excalidraw/components/TTDDialog/hooks/useMermaidRenderer.d.ts +14 -0
  227. package/dist/types/excalidraw/components/TTDDialog/hooks/useTextGeneration.d.ts +7 -0
  228. package/dist/types/excalidraw/components/TTDDialog/mermaid-lang-lite.d.ts +2 -0
  229. package/dist/types/excalidraw/components/TTDDialog/types.d.ts +95 -0
  230. package/dist/types/excalidraw/components/TTDDialog/useTTDChatStorage.d.ts +22 -0
  231. package/dist/types/excalidraw/components/TTDDialog/utils/chat.d.ts +10 -0
  232. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidAutoFix.d.ts +1 -0
  233. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidError.d.ts +10 -0
  234. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidValidation.d.ts +1 -0
  235. package/dist/types/excalidraw/components/TextField.d.ts +1 -0
  236. package/dist/types/excalidraw/components/Toast.d.ts +11 -7
  237. package/dist/types/excalidraw/components/ToolPopover.d.ts +22 -0
  238. package/dist/types/excalidraw/components/Toolbar.d.ts +11 -0
  239. package/dist/types/excalidraw/components/Tools.d.ts +151 -0
  240. package/dist/types/excalidraw/components/Trans.d.ts +2 -2
  241. package/dist/types/excalidraw/components/UserList.d.ts +3 -2
  242. package/dist/types/excalidraw/components/ViewportStatusFrame/ViewportStatusFrame.d.ts +11 -0
  243. package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +10 -4
  244. package/dist/types/excalidraw/components/canvases/NewElementCanvas.d.ts +3 -0
  245. package/dist/types/excalidraw/components/canvases/StaticCanvas.d.ts +1 -1
  246. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +47 -35
  247. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +7 -5
  248. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +3 -3
  249. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +13 -22
  250. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCheckbox.d.ts +5 -0
  251. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +5 -4
  252. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +2 -2
  253. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.d.ts +2 -2
  254. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemLink.d.ts +6 -6
  255. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSub.d.ts +23 -0
  256. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubContent.d.ts +8 -0
  257. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubTrigger.d.ts +12 -0
  258. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuTrigger.d.ts +3 -4
  259. package/dist/types/excalidraw/components/dropdownMenu/common.d.ts +2 -2
  260. package/dist/types/excalidraw/components/dropdownMenu/dropdownMenuUtils.d.ts +2 -0
  261. package/dist/types/excalidraw/components/footer/Footer.d.ts +3 -1
  262. package/dist/types/excalidraw/components/hoc/withInternalFallback.d.ts +1 -1
  263. package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +3 -3
  264. package/dist/types/excalidraw/components/icons.d.ts +56 -22
  265. package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +25 -3
  266. package/dist/types/excalidraw/components/main-menu/MainMenu.d.ts +39 -35
  267. package/dist/types/excalidraw/components/positionElementBesideCursor.d.ts +26 -0
  268. package/dist/types/excalidraw/components/shapeActionPredicates.d.ts +39 -0
  269. package/dist/types/excalidraw/data/blob.d.ts +355 -12
  270. package/dist/types/excalidraw/data/encode.d.ts +4 -4
  271. package/dist/types/excalidraw/data/encryption.d.ts +5 -5
  272. package/dist/types/excalidraw/data/filesystem.d.ts +5 -7
  273. package/dist/types/excalidraw/data/index.d.ts +8 -9
  274. package/dist/types/excalidraw/data/json.d.ts +183 -3
  275. package/dist/types/excalidraw/data/library.d.ts +25 -10
  276. package/dist/types/excalidraw/data/resave.d.ts +7 -2
  277. package/dist/types/excalidraw/data/restore.d.ts +27 -7
  278. package/dist/types/excalidraw/data/types.d.ts +4 -1
  279. package/dist/types/excalidraw/drawShapeTrail.d.ts +16 -0
  280. package/dist/types/excalidraw/editor-jotai.d.ts +11 -11
  281. package/dist/types/excalidraw/eraser/index.d.ts +2 -3
  282. package/dist/types/excalidraw/errors.d.ts +14 -0
  283. package/dist/types/excalidraw/fonts/Fonts.d.ts +3 -2
  284. package/dist/types/excalidraw/hooks/useAppStateValue.d.ts +29 -0
  285. package/dist/types/excalidraw/hooks/useLibraryItemSvg.d.ts +2 -2
  286. package/dist/types/excalidraw/hooks/useOutsideClick.d.ts +4 -3
  287. package/dist/types/excalidraw/hooks/useScrollPosition.d.ts +1 -2
  288. package/dist/types/excalidraw/hooks/useTextEditorFocus.d.ts +14 -0
  289. package/dist/types/excalidraw/i18n.d.ts +2 -2
  290. package/dist/types/excalidraw/{laser-trails.d.ts → laserTrails.d.ts} +5 -7
  291. package/dist/types/excalidraw/lasso/index.d.ts +2 -3
  292. package/dist/types/excalidraw/lasso/utils.d.ts +2 -0
  293. package/dist/types/excalidraw/renderer/animation.d.ts +16 -0
  294. package/dist/types/excalidraw/renderer/helpers.d.ts +31 -8
  295. package/dist/types/excalidraw/renderer/interactiveScene.d.ts +7 -15
  296. package/dist/types/excalidraw/renderer/staticScene.d.ts +4 -1
  297. package/dist/types/excalidraw/scene/Renderer.d.ts +477 -18
  298. package/dist/types/excalidraw/scene/export.d.ts +4 -4
  299. package/dist/types/excalidraw/scene/index.d.ts +2 -2
  300. package/dist/types/excalidraw/scene/types.d.ts +27 -8
  301. package/dist/types/excalidraw/shortcut.d.ts +1 -0
  302. package/dist/types/excalidraw/snapping.d.ts +12 -12
  303. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-bindings.d.ts +1 -1
  304. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-loader.d.ts +1 -1
  305. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-wasm.d.ts +1 -1
  306. package/dist/types/excalidraw/subset/woff2/woff2-loader.d.ts +2 -2
  307. package/dist/types/excalidraw/subset/woff2/woff2-wasm.d.ts +1 -1
  308. package/dist/types/excalidraw/textAutoResizeHandle.d.ts +15 -0
  309. package/dist/types/excalidraw/types.d.ts +580 -59
  310. package/dist/types/excalidraw/viewport.d.ts +280 -0
  311. package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +8 -5
  312. package/dist/types/fractional-indexing/src/index.d.ts +29 -0
  313. package/dist/types/laser-pointer/src/index.d.ts +2 -0
  314. package/dist/types/laser-pointer/src/math.d.ts +16 -0
  315. package/dist/types/laser-pointer/src/simplify.d.ts +2 -0
  316. package/dist/types/laser-pointer/src/state.d.ts +36 -0
  317. package/dist/types/math/src/constants.d.ts +0 -1
  318. package/dist/types/math/src/curve.d.ts +23 -13
  319. package/dist/types/math/src/index.d.ts +1 -0
  320. package/dist/types/math/src/pca.d.ts +79 -0
  321. package/dist/types/math/src/point.d.ts +8 -2
  322. package/dist/types/math/src/polygon.d.ts +26 -2
  323. package/dist/types/math/src/range.d.ts +1 -3
  324. package/dist/types/math/src/segment.d.ts +10 -3
  325. package/dist/types/math/src/types.d.ts +25 -1
  326. package/dist/types/utils/src/export.d.ts +9 -8
  327. package/dist/types/utils/src/index.d.ts +1 -2
  328. package/dist/types/utils/src/shape.d.ts +8 -8
  329. package/package.json +2 -2
  330. package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +0 -186
  331. package/dist/types/excalidraw/animation-frame-handler.d.ts +0 -16
  332. package/dist/types/excalidraw/charts.d.ts +0 -27
  333. package/dist/types/excalidraw/components/DiagramToCodePlugin/DiagramToCodePlugin.d.ts +0 -4
  334. package/dist/types/excalidraw/components/ExcalidrawLogo.d.ts +0 -16
  335. package/dist/types/excalidraw/components/FollowMode/FollowMode.d.ts +0 -10
  336. package/dist/types/excalidraw/components/HandButton.d.ts +0 -10
  337. package/dist/types/excalidraw/components/InitializeApp.d.ts +0 -10
  338. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +0 -9
  339. package/dist/types/excalidraw/components/ToolButton.d.ts +0 -49
  340. package/dist/types/excalidraw/components/footer/FooterCenter.d.ts +0 -8
  341. package/dist/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +0 -10
  342. package/dist/types/excalidraw/components/shapes.d.ts +0 -62
  343. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Center.d.ts +0 -58
  344. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Hints.d.ts +0 -19
  345. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.d.ts +0 -85
  346. package/dist/types/excalidraw/cursor.d.ts +0 -5
  347. package/dist/types/excalidraw/data/reconcile.d.ts +0 -6
  348. package/dist/types/excalidraw/index.d.ts +0 -46
  349. package/dist/types/excalidraw/polyfill.d.ts +0 -2
  350. package/dist/types/excalidraw/scene/scroll.d.ts +0 -23
  351. package/dist/types/excalidraw/scene/zoom.d.ts +0 -12
  352. package/dist/types/utils/src/bbox.d.ts +0 -9
  353. package/dist/types/utils/src/withinBounds.d.ts +0 -19
@@ -1,19 +1,6 @@
1
- /// <reference types="react" />
2
- import { type SceneBounds } from "@excalidraw/element";
3
- import type { ExcalidrawElement } from "@excalidraw/element/types";
4
- import type { AppState, Offsets } from "../types";
5
- export declare const actionChangeViewBackgroundColor: {
6
- name: "changeViewBackgroundColor";
7
- label: string;
8
- trackEvent: false;
9
- predicate: (elements: readonly ExcalidrawElement[], appState: AppState, props: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
10
- perform: (_: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, value: any) => {
11
- appState: any;
12
- captureUpdate: "IMMEDIATELY" | "EVENTUALLY";
13
- };
14
- PanelComponent: ({ elements, appState, updateData, appProps }: import("./types").PanelComponentProps) => import("react/jsx-runtime").JSX.Element;
15
- } & {
16
- keyTest?: undefined;
1
+ import type { AppState } from "../types";
2
+ export declare const actionChangeViewBackgroundColor: import("./types").Action<Partial<AppState>> & {
3
+ keyTest?: ((event: React.KeyboardEvent | KeyboardEvent, appState: AppState, elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], app: import("../types").AppClassProperties) => boolean) | undefined;
17
4
  };
18
5
  export declare const actionClearCanvas: {
19
6
  name: "clearCanvas";
@@ -22,8 +9,8 @@ export declare const actionClearCanvas: {
22
9
  trackEvent: {
23
10
  category: "canvas";
24
11
  };
25
- predicate: (elements: readonly ExcalidrawElement[], appState: AppState, props: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
26
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: import("../types").AppClassProperties) => {
12
+ predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: AppState, props: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
13
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: import("../types").AppClassProperties) => {
27
14
  elements: import("@excalidraw/element/types").OrderedExcalidrawElement[];
28
15
  appState: {
29
16
  files: {};
@@ -39,12 +26,12 @@ export declare const actionClearCanvas: {
39
26
  open: boolean;
40
27
  panels: number;
41
28
  };
42
- pasteDialog: {
43
- shown: false;
44
- data: null;
45
- } | {
46
- shown: true;
47
- data: import("../charts").Spreadsheet;
29
+ colorTopPicks: {
30
+ elementStroke: readonly string[] | null;
31
+ elementBackground: readonly string[] | null;
32
+ bucketFill: readonly string[] | null;
33
+ stickyNoteStroke: readonly string[] | null;
34
+ stickyNoteBackground: readonly string[] | null;
48
35
  };
49
36
  activeTool: {
50
37
  lastActiveTool: import("../types").ActiveTool | null;
@@ -59,73 +46,73 @@ export declare const actionClearCanvas: {
59
46
  clip: boolean;
60
47
  };
61
48
  name: string | null;
62
- zoom: Readonly<{
63
- value: import("../types").NormalizedZoomValue;
64
- }>;
49
+ zoom: import("../types").Zoom;
65
50
  scrollX: number;
66
51
  scrollY: number;
67
52
  viewModeEnabled: boolean;
68
- openDialog: {
53
+ openDialog: null | {
69
54
  name: "imageExport" | "help" | "jsonExport";
70
55
  } | {
71
56
  name: "ttd";
72
- tab: "mermaid" | "text-to-diagram";
57
+ tab: "text-to-diagram" | "mermaid";
73
58
  } | {
74
59
  name: "commandPalette";
60
+ } | {
61
+ name: "settings";
75
62
  } | {
76
63
  name: "elementLinkSelector";
77
- sourceElementId: string;
78
- } | null;
79
- editingGroupId: string | null;
64
+ sourceElementId: import("@excalidraw/element/types").ExcalidrawElement["id"];
65
+ } | {
66
+ name: "charts";
67
+ data: import("../charts").Spreadsheet;
68
+ rawText: string;
69
+ };
70
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
80
71
  selectedElementIds: Readonly<{
81
72
  [id: string]: true;
82
73
  }>;
83
74
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
84
75
  activeEmbeddable: {
85
76
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
86
- state: "active" | "hover";
77
+ state: "hover" | "active";
87
78
  } | null;
88
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
89
79
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
90
80
  selectedGroupIds: {
91
81
  [groupId: string]: boolean;
92
82
  };
93
83
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
94
84
  multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
85
+ newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
95
86
  isBindingEnabled: boolean;
96
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
87
+ isMidpointSnappingEnabled: boolean;
88
+ suggestedBinding: {
89
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
90
+ midPoint?: import("@excalidraw/math").GlobalPoint;
91
+ } | null;
92
+ hoveredArrowTextAnchor: {
93
+ elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
94
+ anchor: "start" | "end" | "label";
95
+ } | null;
97
96
  isRotating: boolean;
98
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
99
- collaborators: Map<import("../types").SocketId, Readonly<{
100
- pointer?: import("../types").CollaboratorPointer | undefined;
101
- button?: "up" | "down" | undefined;
102
- selectedElementIds?: Readonly<{
103
- [id: string]: true;
104
- }> | undefined;
105
- username?: string | null | undefined;
106
- userState?: import("@excalidraw/common").UserIdleState | undefined;
107
- color?: {
108
- background: string;
109
- stroke: string;
110
- } | undefined;
111
- avatarUrl?: string | undefined;
112
- id?: string | undefined;
113
- socketId?: import("../types").SocketId | undefined;
114
- isCurrentUser?: boolean | undefined;
115
- isInCall?: boolean | undefined;
116
- isSpeaking?: boolean | undefined;
117
- isMuted?: boolean | undefined;
118
- }>>;
97
+ elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
98
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
119
99
  snapLines: readonly import("../snapping").SnapLine[];
120
100
  zenModeEnabled: boolean;
121
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
101
+ editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
122
102
  isCropping: boolean;
123
- croppingElementId: string | null;
103
+ croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
124
104
  searchMatches: Readonly<{
125
- focusedId: string | null;
105
+ focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
126
106
  matches: readonly import("../types").SearchMatch[];
127
107
  }> | null;
128
108
  activeLockedId: string | null;
109
+ hoveredElementIds: Readonly<{
110
+ [id: string]: true;
111
+ }>;
112
+ shouldCacheIgnoreZoom: boolean;
113
+ exportScale: number;
114
+ currentItemArrowType: "sharp" | "round" | "elbow";
115
+ bindMode: import("@excalidraw/element/types").BindMode;
129
116
  contextMenu: {
130
117
  items: import("../components/ContextMenu").ContextMenuItems;
131
118
  top: number;
@@ -133,62 +120,62 @@ export declare const actionClearCanvas: {
133
120
  } | null;
134
121
  showWelcomeScreen: boolean;
135
122
  isLoading: boolean;
136
- errorMessage: import("react").ReactNode;
137
- newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
123
+ errorMessage: React.ReactNode;
138
124
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
139
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
140
- editingFrame: string | null;
125
+ boxSelectionMode: import("../types").BoxSelectionMode;
126
+ bindingPreference: "enabled" | "disabled";
127
+ inputDevice: import("../types").InputDevice;
128
+ editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
129
+ preferredSelectionTool: {
130
+ type: "selection" | "lasso";
131
+ initialized: boolean;
132
+ };
141
133
  exportWithDarkMode: boolean;
142
- exportScale: number;
143
134
  currentItemStrokeColor: string;
135
+ currentItemStickynoteStrokeColor: string;
136
+ currentItemStickynoteBackgroundColor: string;
144
137
  currentItemBackgroundColor: string;
145
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
146
- currentItemStrokeWidth: number;
147
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
138
+ currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
139
+ currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
140
+ currentItemStrokeStyle: import("@excalidraw/element/types").ExcalidrawElement["strokeStyle"];
148
141
  currentItemRoughness: number;
142
+ currentItemStrokeVariability: import("@excalidraw/element/types").StrokeVariability;
149
143
  currentItemOpacity: number;
150
- currentItemFontFamily: number;
144
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
151
145
  currentItemFontSize: number;
152
- currentItemTextAlign: string;
146
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
153
147
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
154
148
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
155
- currentHoveredFontFamily: number | null;
149
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
156
150
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
157
- currentItemArrowType: "round" | "sharp" | "elbow";
151
+ scrollConstraints: import("../types").ScrollConstraints | null;
158
152
  cursorButton: "up" | "down";
159
153
  scrolledOutside: boolean;
160
154
  isResizing: boolean;
161
- openMenu: "canvas" | "shape" | null;
162
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
155
+ openMenu: "canvas" | null;
156
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
163
157
  openSidebar: {
164
- name: string;
165
- tab?: string | undefined;
158
+ name: import("../types").SidebarName;
159
+ tab?: import("../types").SidebarTabName;
166
160
  } | null;
167
161
  defaultSidebarDockedPreference: boolean;
168
162
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
169
- hoveredElementIds: Readonly<{
170
- [id: string]: true;
171
- }>;
172
163
  previousSelectedElementIds: {
173
164
  [id: string]: true;
174
165
  };
175
166
  selectedElementsAreBeingDragged: boolean;
176
- shouldCacheIgnoreZoom: boolean;
177
167
  toast: {
178
- message: string;
179
- closable?: boolean | undefined;
180
- duration?: number | undefined;
168
+ message: React.ReactNode;
169
+ closable?: boolean;
170
+ duration?: number;
181
171
  } | null;
182
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
183
- currentChartType: import("@excalidraw/element/types").ChartType;
184
- showHyperlinkPopup: false | "editor" | "info";
172
+ fileHandle: FileSystemFileHandle | null;
173
+ showHyperlinkPopup: false | "info" | "editor";
185
174
  originSnapOffset: {
186
175
  x: number;
187
176
  y: number;
188
177
  } | null;
189
178
  objectsSnapModeEnabled: boolean;
190
- userToFollow: import("../types").UserToFollow | null;
191
- followedBy: Set<import("../types").SocketId>;
192
179
  lockedMultiSelections: {
193
180
  [groupId: string]: true;
194
181
  };
@@ -202,18 +189,17 @@ export declare const actionZoomIn: {
202
189
  name: "zoomIn";
203
190
  label: string;
204
191
  viewMode: true;
192
+ navigation: true;
205
193
  icon: import("react/jsx-runtime").JSX.Element;
206
194
  trackEvent: {
207
195
  category: "canvas";
208
196
  };
209
- perform: (_elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: import("../types").AppClassProperties) => {
197
+ predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: AppState, appProps: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
198
+ perform: (_elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: import("../types").AppClassProperties) => {
210
199
  appState: {
211
- userToFollow: null;
200
+ zoom: import("../types").Zoom;
212
201
  scrollX: number;
213
202
  scrollY: number;
214
- zoom: {
215
- value: import("../types").NormalizedZoomValue;
216
- };
217
203
  contextMenu: {
218
204
  items: import("../components/ContextMenu").ContextMenuItems;
219
205
  top: number;
@@ -221,18 +207,28 @@ export declare const actionZoomIn: {
221
207
  } | null;
222
208
  showWelcomeScreen: boolean;
223
209
  isLoading: boolean;
224
- errorMessage: import("react").ReactNode;
210
+ errorMessage: React.ReactNode;
225
211
  activeEmbeddable: {
226
212
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
227
- state: "active" | "hover";
213
+ state: "hover" | "active";
228
214
  } | null;
229
215
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
230
216
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
231
217
  multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
232
218
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
233
219
  isBindingEnabled: boolean;
234
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
235
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
220
+ boxSelectionMode: import("../types").BoxSelectionMode;
221
+ bindingPreference: "enabled" | "disabled";
222
+ isMidpointSnappingEnabled: boolean;
223
+ inputDevice: import("../types").InputDevice;
224
+ suggestedBinding: {
225
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
226
+ midPoint?: import("@excalidraw/math").GlobalPoint;
227
+ } | null;
228
+ hoveredArrowTextAnchor: {
229
+ elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
230
+ anchor: "start" | "end" | "label";
231
+ } | null;
236
232
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
237
233
  frameRendering: {
238
234
  enabled: boolean;
@@ -240,15 +236,18 @@ export declare const actionZoomIn: {
240
236
  outline: boolean;
241
237
  clip: boolean;
242
238
  };
243
- editingFrame: string | null;
244
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
245
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
246
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
239
+ editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
240
+ elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
241
+ editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
247
242
  activeTool: {
248
243
  lastActiveTool: import("../types").ActiveTool | null;
249
244
  locked: boolean;
250
245
  fromSelection: boolean;
251
246
  } & import("../types").ActiveTool;
247
+ preferredSelectionTool: {
248
+ type: "selection" | "lasso";
249
+ initialized: boolean;
250
+ };
252
251
  penMode: boolean;
253
252
  penDetected: boolean;
254
253
  exportBackground: boolean;
@@ -256,43 +255,53 @@ export declare const actionZoomIn: {
256
255
  exportWithDarkMode: boolean;
257
256
  exportScale: number;
258
257
  currentItemStrokeColor: string;
258
+ currentItemStickynoteStrokeColor: string;
259
+ currentItemStickynoteBackgroundColor: string;
259
260
  currentItemBackgroundColor: string;
260
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
261
- currentItemStrokeWidth: number;
262
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
261
+ currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
262
+ currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
263
+ currentItemStrokeStyle: import("@excalidraw/element/types").ExcalidrawElement["strokeStyle"];
263
264
  currentItemRoughness: number;
265
+ currentItemStrokeVariability: import("@excalidraw/element/types").StrokeVariability;
264
266
  currentItemOpacity: number;
265
- currentItemFontFamily: number;
267
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
266
268
  currentItemFontSize: number;
267
- currentItemTextAlign: string;
269
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
268
270
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
269
271
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
270
- currentHoveredFontFamily: number | null;
272
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
271
273
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
272
- currentItemArrowType: "round" | "sharp" | "elbow";
274
+ currentItemArrowType: "sharp" | "round" | "elbow";
273
275
  viewBackgroundColor: string;
276
+ scrollConstraints: import("../types").ScrollConstraints | null;
274
277
  cursorButton: "up" | "down";
275
278
  scrolledOutside: boolean;
276
279
  name: string | null;
277
280
  isResizing: boolean;
278
281
  isRotating: boolean;
279
- openMenu: "canvas" | "shape" | null;
280
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
282
+ openMenu: "canvas" | null;
283
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
281
284
  openSidebar: {
282
- name: string;
283
- tab?: string | undefined;
285
+ name: import("../types").SidebarName;
286
+ tab?: import("../types").SidebarTabName;
284
287
  } | null;
285
- openDialog: {
288
+ openDialog: null | {
286
289
  name: "imageExport" | "help" | "jsonExport";
287
290
  } | {
288
291
  name: "ttd";
289
- tab: "mermaid" | "text-to-diagram";
292
+ tab: "text-to-diagram" | "mermaid";
290
293
  } | {
291
294
  name: "commandPalette";
295
+ } | {
296
+ name: "settings";
292
297
  } | {
293
298
  name: "elementLinkSelector";
294
- sourceElementId: string;
295
- } | null;
299
+ sourceElementId: import("@excalidraw/element/types").ExcalidrawElement["id"];
300
+ } | {
301
+ name: "charts";
302
+ data: import("../charts").Spreadsheet;
303
+ rawText: string;
304
+ };
296
305
  defaultSidebarDockedPreference: boolean;
297
306
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
298
307
  selectedElementIds: Readonly<{
@@ -307,9 +316,9 @@ export declare const actionZoomIn: {
307
316
  selectedElementsAreBeingDragged: boolean;
308
317
  shouldCacheIgnoreZoom: boolean;
309
318
  toast: {
310
- message: string;
311
- closable?: boolean | undefined;
312
- duration?: number | undefined;
319
+ message: React.ReactNode;
320
+ closable?: boolean;
321
+ duration?: number;
313
322
  } | null;
314
323
  zenModeEnabled: boolean;
315
324
  theme: import("@excalidraw/element/types").Theme;
@@ -320,45 +329,18 @@ export declare const actionZoomIn: {
320
329
  selectedGroupIds: {
321
330
  [groupId: string]: boolean;
322
331
  };
323
- editingGroupId: string | null;
332
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
324
333
  width: number;
325
334
  height: number;
326
335
  offsetTop: number;
327
336
  offsetLeft: number;
328
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
329
- collaborators: Map<import("../types").SocketId, Readonly<{
330
- pointer?: import("../types").CollaboratorPointer | undefined;
331
- button?: "up" | "down" | undefined;
332
- selectedElementIds?: Readonly<{
333
- [id: string]: true;
334
- }> | undefined;
335
- username?: string | null | undefined;
336
- userState?: import("@excalidraw/common").UserIdleState | undefined;
337
- color?: {
338
- background: string;
339
- stroke: string;
340
- } | undefined;
341
- avatarUrl?: string | undefined;
342
- id?: string | undefined;
343
- socketId?: import("../types").SocketId | undefined;
344
- isCurrentUser?: boolean | undefined;
345
- isInCall?: boolean | undefined;
346
- isSpeaking?: boolean | undefined;
347
- isMuted?: boolean | undefined;
348
- }>>;
337
+ fileHandle: FileSystemFileHandle | null;
338
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
349
339
  stats: {
350
340
  open: boolean;
351
341
  panels: number;
352
342
  };
353
- currentChartType: import("@excalidraw/element/types").ChartType;
354
- pasteDialog: {
355
- shown: false;
356
- data: null;
357
- } | {
358
- shown: true;
359
- data: import("../charts").Spreadsheet;
360
- };
361
- showHyperlinkPopup: false | "editor" | "info";
343
+ showHyperlinkPopup: false | "info" | "editor";
362
344
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
363
345
  snapLines: readonly import("../snapping").SnapLine[];
364
346
  originSnapOffset: {
@@ -366,21 +348,28 @@ export declare const actionZoomIn: {
366
348
  y: number;
367
349
  } | null;
368
350
  objectsSnapModeEnabled: boolean;
369
- followedBy: Set<import("../types").SocketId>;
370
351
  isCropping: boolean;
371
- croppingElementId: string | null;
352
+ croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
372
353
  searchMatches: Readonly<{
373
- focusedId: string | null;
354
+ focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
374
355
  matches: readonly import("../types").SearchMatch[];
375
356
  }> | null;
376
357
  activeLockedId: string | null;
377
358
  lockedMultiSelections: {
378
359
  [groupId: string]: true;
379
360
  };
361
+ bindMode: import("@excalidraw/element/types").BindMode;
362
+ colorTopPicks: {
363
+ elementStroke: readonly string[] | null;
364
+ elementBackground: readonly string[] | null;
365
+ bucketFill: readonly string[] | null;
366
+ stickyNoteStroke: readonly string[] | null;
367
+ stickyNoteBackground: readonly string[] | null;
368
+ };
380
369
  };
381
370
  captureUpdate: "EVENTUALLY";
382
371
  };
383
- PanelComponent: ({ updateData, appState }: import("./types").PanelComponentProps) => import("react/jsx-runtime").JSX.Element;
372
+ PanelComponent: ({ updateData }: import("./types").PanelComponentProps) => import("react/jsx-runtime").JSX.Element;
384
373
  keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
385
374
  } & {
386
375
  keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
@@ -390,17 +379,16 @@ export declare const actionZoomOut: {
390
379
  label: string;
391
380
  icon: import("react/jsx-runtime").JSX.Element;
392
381
  viewMode: true;
382
+ navigation: true;
393
383
  trackEvent: {
394
384
  category: "canvas";
395
385
  };
396
- perform: (_elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: import("../types").AppClassProperties) => {
386
+ predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: AppState, appProps: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
387
+ perform: (_elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: import("../types").AppClassProperties) => {
397
388
  appState: {
398
- userToFollow: null;
389
+ zoom: import("../types").Zoom;
399
390
  scrollX: number;
400
391
  scrollY: number;
401
- zoom: {
402
- value: import("../types").NormalizedZoomValue;
403
- };
404
392
  contextMenu: {
405
393
  items: import("../components/ContextMenu").ContextMenuItems;
406
394
  top: number;
@@ -408,18 +396,28 @@ export declare const actionZoomOut: {
408
396
  } | null;
409
397
  showWelcomeScreen: boolean;
410
398
  isLoading: boolean;
411
- errorMessage: import("react").ReactNode;
399
+ errorMessage: React.ReactNode;
412
400
  activeEmbeddable: {
413
401
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
414
- state: "active" | "hover";
402
+ state: "hover" | "active";
415
403
  } | null;
416
404
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
417
405
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
418
406
  multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
419
407
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
420
408
  isBindingEnabled: boolean;
421
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
422
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
409
+ boxSelectionMode: import("../types").BoxSelectionMode;
410
+ bindingPreference: "enabled" | "disabled";
411
+ isMidpointSnappingEnabled: boolean;
412
+ inputDevice: import("../types").InputDevice;
413
+ suggestedBinding: {
414
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
415
+ midPoint?: import("@excalidraw/math").GlobalPoint;
416
+ } | null;
417
+ hoveredArrowTextAnchor: {
418
+ elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
419
+ anchor: "start" | "end" | "label";
420
+ } | null;
423
421
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
424
422
  frameRendering: {
425
423
  enabled: boolean;
@@ -427,15 +425,18 @@ export declare const actionZoomOut: {
427
425
  outline: boolean;
428
426
  clip: boolean;
429
427
  };
430
- editingFrame: string | null;
431
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
432
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
433
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
428
+ editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
429
+ elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
430
+ editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
434
431
  activeTool: {
435
432
  lastActiveTool: import("../types").ActiveTool | null;
436
433
  locked: boolean;
437
434
  fromSelection: boolean;
438
435
  } & import("../types").ActiveTool;
436
+ preferredSelectionTool: {
437
+ type: "selection" | "lasso";
438
+ initialized: boolean;
439
+ };
439
440
  penMode: boolean;
440
441
  penDetected: boolean;
441
442
  exportBackground: boolean;
@@ -443,43 +444,53 @@ export declare const actionZoomOut: {
443
444
  exportWithDarkMode: boolean;
444
445
  exportScale: number;
445
446
  currentItemStrokeColor: string;
447
+ currentItemStickynoteStrokeColor: string;
448
+ currentItemStickynoteBackgroundColor: string;
446
449
  currentItemBackgroundColor: string;
447
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
448
- currentItemStrokeWidth: number;
449
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
450
+ currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
451
+ currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
452
+ currentItemStrokeStyle: import("@excalidraw/element/types").ExcalidrawElement["strokeStyle"];
450
453
  currentItemRoughness: number;
454
+ currentItemStrokeVariability: import("@excalidraw/element/types").StrokeVariability;
451
455
  currentItemOpacity: number;
452
- currentItemFontFamily: number;
456
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
453
457
  currentItemFontSize: number;
454
- currentItemTextAlign: string;
458
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
455
459
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
456
460
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
457
- currentHoveredFontFamily: number | null;
461
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
458
462
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
459
- currentItemArrowType: "round" | "sharp" | "elbow";
463
+ currentItemArrowType: "sharp" | "round" | "elbow";
460
464
  viewBackgroundColor: string;
465
+ scrollConstraints: import("../types").ScrollConstraints | null;
461
466
  cursorButton: "up" | "down";
462
467
  scrolledOutside: boolean;
463
468
  name: string | null;
464
469
  isResizing: boolean;
465
470
  isRotating: boolean;
466
- openMenu: "canvas" | "shape" | null;
467
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
471
+ openMenu: "canvas" | null;
472
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
468
473
  openSidebar: {
469
- name: string;
470
- tab?: string | undefined;
474
+ name: import("../types").SidebarName;
475
+ tab?: import("../types").SidebarTabName;
471
476
  } | null;
472
- openDialog: {
477
+ openDialog: null | {
473
478
  name: "imageExport" | "help" | "jsonExport";
474
479
  } | {
475
480
  name: "ttd";
476
- tab: "mermaid" | "text-to-diagram";
481
+ tab: "text-to-diagram" | "mermaid";
477
482
  } | {
478
483
  name: "commandPalette";
484
+ } | {
485
+ name: "settings";
479
486
  } | {
480
487
  name: "elementLinkSelector";
481
- sourceElementId: string;
482
- } | null;
488
+ sourceElementId: import("@excalidraw/element/types").ExcalidrawElement["id"];
489
+ } | {
490
+ name: "charts";
491
+ data: import("../charts").Spreadsheet;
492
+ rawText: string;
493
+ };
483
494
  defaultSidebarDockedPreference: boolean;
484
495
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
485
496
  selectedElementIds: Readonly<{
@@ -494,9 +505,9 @@ export declare const actionZoomOut: {
494
505
  selectedElementsAreBeingDragged: boolean;
495
506
  shouldCacheIgnoreZoom: boolean;
496
507
  toast: {
497
- message: string;
498
- closable?: boolean | undefined;
499
- duration?: number | undefined;
508
+ message: React.ReactNode;
509
+ closable?: boolean;
510
+ duration?: number;
500
511
  } | null;
501
512
  zenModeEnabled: boolean;
502
513
  theme: import("@excalidraw/element/types").Theme;
@@ -507,45 +518,18 @@ export declare const actionZoomOut: {
507
518
  selectedGroupIds: {
508
519
  [groupId: string]: boolean;
509
520
  };
510
- editingGroupId: string | null;
521
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
511
522
  width: number;
512
523
  height: number;
513
524
  offsetTop: number;
514
525
  offsetLeft: number;
515
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
516
- collaborators: Map<import("../types").SocketId, Readonly<{
517
- pointer?: import("../types").CollaboratorPointer | undefined;
518
- button?: "up" | "down" | undefined;
519
- selectedElementIds?: Readonly<{
520
- [id: string]: true;
521
- }> | undefined;
522
- username?: string | null | undefined;
523
- userState?: import("@excalidraw/common").UserIdleState | undefined;
524
- color?: {
525
- background: string;
526
- stroke: string;
527
- } | undefined;
528
- avatarUrl?: string | undefined;
529
- id?: string | undefined;
530
- socketId?: import("../types").SocketId | undefined;
531
- isCurrentUser?: boolean | undefined;
532
- isInCall?: boolean | undefined;
533
- isSpeaking?: boolean | undefined;
534
- isMuted?: boolean | undefined;
535
- }>>;
526
+ fileHandle: FileSystemFileHandle | null;
527
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
536
528
  stats: {
537
529
  open: boolean;
538
530
  panels: number;
539
531
  };
540
- currentChartType: import("@excalidraw/element/types").ChartType;
541
- pasteDialog: {
542
- shown: false;
543
- data: null;
544
- } | {
545
- shown: true;
546
- data: import("../charts").Spreadsheet;
547
- };
548
- showHyperlinkPopup: false | "editor" | "info";
532
+ showHyperlinkPopup: false | "info" | "editor";
549
533
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
550
534
  snapLines: readonly import("../snapping").SnapLine[];
551
535
  originSnapOffset: {
@@ -553,21 +537,28 @@ export declare const actionZoomOut: {
553
537
  y: number;
554
538
  } | null;
555
539
  objectsSnapModeEnabled: boolean;
556
- followedBy: Set<import("../types").SocketId>;
557
540
  isCropping: boolean;
558
- croppingElementId: string | null;
541
+ croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
559
542
  searchMatches: Readonly<{
560
- focusedId: string | null;
543
+ focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
561
544
  matches: readonly import("../types").SearchMatch[];
562
545
  }> | null;
563
546
  activeLockedId: string | null;
564
547
  lockedMultiSelections: {
565
548
  [groupId: string]: true;
566
549
  };
550
+ bindMode: import("@excalidraw/element/types").BindMode;
551
+ colorTopPicks: {
552
+ elementStroke: readonly string[] | null;
553
+ elementBackground: readonly string[] | null;
554
+ bucketFill: readonly string[] | null;
555
+ stickyNoteStroke: readonly string[] | null;
556
+ stickyNoteBackground: readonly string[] | null;
557
+ };
567
558
  };
568
559
  captureUpdate: "EVENTUALLY";
569
560
  };
570
- PanelComponent: ({ updateData, appState }: import("./types").PanelComponentProps) => import("react/jsx-runtime").JSX.Element;
561
+ PanelComponent: ({ updateData }: import("./types").PanelComponentProps) => import("react/jsx-runtime").JSX.Element;
571
562
  keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
572
563
  } & {
573
564
  keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
@@ -577,17 +568,16 @@ export declare const actionResetZoom: {
577
568
  label: string;
578
569
  icon: import("react/jsx-runtime").JSX.Element;
579
570
  viewMode: true;
571
+ navigation: true;
580
572
  trackEvent: {
581
573
  category: "canvas";
582
574
  };
583
- perform: (_elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: import("../types").AppClassProperties) => {
575
+ predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: AppState, appProps: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
576
+ perform: (_elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: import("../types").AppClassProperties) => {
584
577
  appState: {
585
- userToFollow: null;
578
+ zoom: import("../types").Zoom;
586
579
  scrollX: number;
587
580
  scrollY: number;
588
- zoom: {
589
- value: import("../types").NormalizedZoomValue;
590
- };
591
581
  contextMenu: {
592
582
  items: import("../components/ContextMenu").ContextMenuItems;
593
583
  top: number;
@@ -595,18 +585,28 @@ export declare const actionResetZoom: {
595
585
  } | null;
596
586
  showWelcomeScreen: boolean;
597
587
  isLoading: boolean;
598
- errorMessage: import("react").ReactNode;
588
+ errorMessage: React.ReactNode;
599
589
  activeEmbeddable: {
600
590
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
601
- state: "active" | "hover";
591
+ state: "hover" | "active";
602
592
  } | null;
603
593
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
604
594
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
605
595
  multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
606
596
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
607
597
  isBindingEnabled: boolean;
608
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
609
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
598
+ boxSelectionMode: import("../types").BoxSelectionMode;
599
+ bindingPreference: "enabled" | "disabled";
600
+ isMidpointSnappingEnabled: boolean;
601
+ inputDevice: import("../types").InputDevice;
602
+ suggestedBinding: {
603
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
604
+ midPoint?: import("@excalidraw/math").GlobalPoint;
605
+ } | null;
606
+ hoveredArrowTextAnchor: {
607
+ elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
608
+ anchor: "start" | "end" | "label";
609
+ } | null;
610
610
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
611
611
  frameRendering: {
612
612
  enabled: boolean;
@@ -614,15 +614,18 @@ export declare const actionResetZoom: {
614
614
  outline: boolean;
615
615
  clip: boolean;
616
616
  };
617
- editingFrame: string | null;
618
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
619
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
620
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
617
+ editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
618
+ elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
619
+ editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
621
620
  activeTool: {
622
621
  lastActiveTool: import("../types").ActiveTool | null;
623
622
  locked: boolean;
624
623
  fromSelection: boolean;
625
624
  } & import("../types").ActiveTool;
625
+ preferredSelectionTool: {
626
+ type: "selection" | "lasso";
627
+ initialized: boolean;
628
+ };
626
629
  penMode: boolean;
627
630
  penDetected: boolean;
628
631
  exportBackground: boolean;
@@ -630,43 +633,53 @@ export declare const actionResetZoom: {
630
633
  exportWithDarkMode: boolean;
631
634
  exportScale: number;
632
635
  currentItemStrokeColor: string;
636
+ currentItemStickynoteStrokeColor: string;
637
+ currentItemStickynoteBackgroundColor: string;
633
638
  currentItemBackgroundColor: string;
634
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
635
- currentItemStrokeWidth: number;
636
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
639
+ currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
640
+ currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
641
+ currentItemStrokeStyle: import("@excalidraw/element/types").ExcalidrawElement["strokeStyle"];
637
642
  currentItemRoughness: number;
643
+ currentItemStrokeVariability: import("@excalidraw/element/types").StrokeVariability;
638
644
  currentItemOpacity: number;
639
- currentItemFontFamily: number;
645
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
640
646
  currentItemFontSize: number;
641
- currentItemTextAlign: string;
647
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
642
648
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
643
649
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
644
- currentHoveredFontFamily: number | null;
650
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
645
651
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
646
- currentItemArrowType: "round" | "sharp" | "elbow";
652
+ currentItemArrowType: "sharp" | "round" | "elbow";
647
653
  viewBackgroundColor: string;
654
+ scrollConstraints: import("../types").ScrollConstraints | null;
648
655
  cursorButton: "up" | "down";
649
656
  scrolledOutside: boolean;
650
657
  name: string | null;
651
658
  isResizing: boolean;
652
659
  isRotating: boolean;
653
- openMenu: "canvas" | "shape" | null;
654
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
660
+ openMenu: "canvas" | null;
661
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
655
662
  openSidebar: {
656
- name: string;
657
- tab?: string | undefined;
663
+ name: import("../types").SidebarName;
664
+ tab?: import("../types").SidebarTabName;
658
665
  } | null;
659
- openDialog: {
666
+ openDialog: null | {
660
667
  name: "imageExport" | "help" | "jsonExport";
661
668
  } | {
662
669
  name: "ttd";
663
- tab: "mermaid" | "text-to-diagram";
670
+ tab: "text-to-diagram" | "mermaid";
664
671
  } | {
665
672
  name: "commandPalette";
673
+ } | {
674
+ name: "settings";
666
675
  } | {
667
676
  name: "elementLinkSelector";
668
- sourceElementId: string;
669
- } | null;
677
+ sourceElementId: import("@excalidraw/element/types").ExcalidrawElement["id"];
678
+ } | {
679
+ name: "charts";
680
+ data: import("../charts").Spreadsheet;
681
+ rawText: string;
682
+ };
670
683
  defaultSidebarDockedPreference: boolean;
671
684
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
672
685
  selectedElementIds: Readonly<{
@@ -681,9 +694,9 @@ export declare const actionResetZoom: {
681
694
  selectedElementsAreBeingDragged: boolean;
682
695
  shouldCacheIgnoreZoom: boolean;
683
696
  toast: {
684
- message: string;
685
- closable?: boolean | undefined;
686
- duration?: number | undefined;
697
+ message: React.ReactNode;
698
+ closable?: boolean;
699
+ duration?: number;
687
700
  } | null;
688
701
  zenModeEnabled: boolean;
689
702
  theme: import("@excalidraw/element/types").Theme;
@@ -694,45 +707,18 @@ export declare const actionResetZoom: {
694
707
  selectedGroupIds: {
695
708
  [groupId: string]: boolean;
696
709
  };
697
- editingGroupId: string | null;
710
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
698
711
  width: number;
699
712
  height: number;
700
713
  offsetTop: number;
701
714
  offsetLeft: number;
702
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
703
- collaborators: Map<import("../types").SocketId, Readonly<{
704
- pointer?: import("../types").CollaboratorPointer | undefined;
705
- button?: "up" | "down" | undefined;
706
- selectedElementIds?: Readonly<{
707
- [id: string]: true;
708
- }> | undefined;
709
- username?: string | null | undefined;
710
- userState?: import("@excalidraw/common").UserIdleState | undefined;
711
- color?: {
712
- background: string;
713
- stroke: string;
714
- } | undefined;
715
- avatarUrl?: string | undefined;
716
- id?: string | undefined;
717
- socketId?: import("../types").SocketId | undefined;
718
- isCurrentUser?: boolean | undefined;
719
- isInCall?: boolean | undefined;
720
- isSpeaking?: boolean | undefined;
721
- isMuted?: boolean | undefined;
722
- }>>;
715
+ fileHandle: FileSystemFileHandle | null;
716
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
723
717
  stats: {
724
718
  open: boolean;
725
719
  panels: number;
726
720
  };
727
- currentChartType: import("@excalidraw/element/types").ChartType;
728
- pasteDialog: {
729
- shown: false;
730
- data: null;
731
- } | {
732
- shown: true;
733
- data: import("../charts").Spreadsheet;
734
- };
735
- showHyperlinkPopup: false | "editor" | "info";
721
+ showHyperlinkPopup: false | "info" | "editor";
736
722
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
737
723
  snapLines: readonly import("../snapping").SnapLine[];
738
724
  originSnapOffset: {
@@ -740,417 +726,47 @@ export declare const actionResetZoom: {
740
726
  y: number;
741
727
  } | null;
742
728
  objectsSnapModeEnabled: boolean;
743
- followedBy: Set<import("../types").SocketId>;
744
729
  isCropping: boolean;
745
- croppingElementId: string | null;
730
+ croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
746
731
  searchMatches: Readonly<{
747
- focusedId: string | null;
732
+ focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
748
733
  matches: readonly import("../types").SearchMatch[];
749
734
  }> | null;
750
735
  activeLockedId: string | null;
751
736
  lockedMultiSelections: {
752
737
  [groupId: string]: true;
753
738
  };
739
+ bindMode: import("@excalidraw/element/types").BindMode;
740
+ colorTopPicks: {
741
+ elementStroke: readonly string[] | null;
742
+ elementBackground: readonly string[] | null;
743
+ bucketFill: readonly string[] | null;
744
+ stickyNoteStroke: readonly string[] | null;
745
+ stickyNoteBackground: readonly string[] | null;
746
+ };
754
747
  };
755
748
  captureUpdate: "EVENTUALLY";
756
749
  };
757
- PanelComponent: ({ updateData, appState }: import("./types").PanelComponentProps) => import("react/jsx-runtime").JSX.Element;
750
+ PanelComponent: ({ updateData }: import("./types").PanelComponentProps) => import("react/jsx-runtime").JSX.Element;
758
751
  keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
759
752
  } & {
760
753
  keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
761
754
  };
762
- export declare const zoomToFitBounds: ({ bounds, appState, canvasOffsets, fitToViewport, viewportZoomFactor, minZoom, maxZoom, }: {
763
- bounds: SceneBounds;
764
- canvasOffsets?: Partial<{
765
- top: number;
766
- right: number;
767
- bottom: number;
768
- left: number;
769
- }> | undefined;
770
- appState: Readonly<AppState>;
771
- /** whether to fit content to viewport (beyond >100%) */
772
- fitToViewport: boolean;
773
- /** zoom content to cover X of the viewport, when fitToViewport=true */
774
- viewportZoomFactor?: number | undefined;
775
- minZoom?: number | undefined;
776
- maxZoom?: number | undefined;
777
- }) => {
778
- appState: {
779
- scrollX: number;
780
- scrollY: number;
781
- zoom: {
782
- value: import("../types").NormalizedZoomValue;
783
- };
784
- contextMenu: {
785
- items: import("../components/ContextMenu").ContextMenuItems;
786
- top: number;
787
- left: number;
788
- } | null;
789
- showWelcomeScreen: boolean;
790
- isLoading: boolean;
791
- errorMessage: import("react").ReactNode;
792
- activeEmbeddable: {
793
- element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
794
- state: "active" | "hover";
795
- } | null;
796
- newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
797
- resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
798
- multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
799
- selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
800
- isBindingEnabled: boolean;
801
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
802
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
803
- frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
804
- frameRendering: {
805
- enabled: boolean;
806
- name: boolean;
807
- outline: boolean;
808
- clip: boolean;
809
- };
810
- editingFrame: string | null;
811
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
812
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
813
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
814
- activeTool: {
815
- lastActiveTool: import("../types").ActiveTool | null;
816
- locked: boolean;
817
- fromSelection: boolean;
818
- } & import("../types").ActiveTool;
819
- penMode: boolean;
820
- penDetected: boolean;
821
- exportBackground: boolean;
822
- exportEmbedScene: boolean;
823
- exportWithDarkMode: boolean;
824
- exportScale: number;
825
- currentItemStrokeColor: string;
826
- currentItemBackgroundColor: string;
827
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
828
- currentItemStrokeWidth: number;
829
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
830
- currentItemRoughness: number;
831
- currentItemOpacity: number;
832
- currentItemFontFamily: number;
833
- currentItemFontSize: number;
834
- currentItemTextAlign: string;
835
- currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
836
- currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
837
- currentHoveredFontFamily: number | null;
838
- currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
839
- currentItemArrowType: "round" | "sharp" | "elbow";
840
- viewBackgroundColor: string;
841
- cursorButton: "up" | "down";
842
- scrolledOutside: boolean;
843
- name: string | null;
844
- isResizing: boolean;
845
- isRotating: boolean;
846
- openMenu: "canvas" | "shape" | null;
847
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
848
- openSidebar: {
849
- name: string;
850
- tab?: string | undefined;
851
- } | null;
852
- openDialog: {
853
- name: "imageExport" | "help" | "jsonExport";
854
- } | {
855
- name: "ttd";
856
- tab: "mermaid" | "text-to-diagram";
857
- } | {
858
- name: "commandPalette";
859
- } | {
860
- name: "elementLinkSelector";
861
- sourceElementId: string;
862
- } | null;
863
- defaultSidebarDockedPreference: boolean;
864
- lastPointerDownWith: import("@excalidraw/element/types").PointerType;
865
- selectedElementIds: Readonly<{
866
- [id: string]: true;
867
- }>;
868
- hoveredElementIds: Readonly<{
869
- [id: string]: true;
870
- }>;
871
- previousSelectedElementIds: {
872
- [id: string]: true;
873
- };
874
- selectedElementsAreBeingDragged: boolean;
875
- shouldCacheIgnoreZoom: boolean;
876
- toast: {
877
- message: string;
878
- closable?: boolean | undefined;
879
- duration?: number | undefined;
880
- } | null;
881
- zenModeEnabled: boolean;
882
- theme: import("@excalidraw/element/types").Theme;
883
- gridSize: number;
884
- gridStep: number;
885
- gridModeEnabled: boolean;
886
- viewModeEnabled: boolean;
887
- selectedGroupIds: {
888
- [groupId: string]: boolean;
889
- };
890
- editingGroupId: string | null;
891
- width: number;
892
- height: number;
893
- offsetTop: number;
894
- offsetLeft: number;
895
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
896
- collaborators: Map<import("../types").SocketId, Readonly<{
897
- pointer?: import("../types").CollaboratorPointer | undefined;
898
- button?: "up" | "down" | undefined;
899
- selectedElementIds?: Readonly<{
900
- [id: string]: true;
901
- }> | undefined;
902
- username?: string | null | undefined;
903
- userState?: import("@excalidraw/common").UserIdleState | undefined;
904
- color?: {
905
- background: string;
906
- stroke: string;
907
- } | undefined;
908
- avatarUrl?: string | undefined;
909
- id?: string | undefined;
910
- socketId?: import("../types").SocketId | undefined;
911
- isCurrentUser?: boolean | undefined;
912
- isInCall?: boolean | undefined;
913
- isSpeaking?: boolean | undefined;
914
- isMuted?: boolean | undefined;
915
- }>>;
916
- stats: {
917
- open: boolean;
918
- panels: number;
919
- };
920
- currentChartType: import("@excalidraw/element/types").ChartType;
921
- pasteDialog: {
922
- shown: false;
923
- data: null;
924
- } | {
925
- shown: true;
926
- data: import("../charts").Spreadsheet;
927
- };
928
- showHyperlinkPopup: false | "editor" | "info";
929
- selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
930
- snapLines: readonly import("../snapping").SnapLine[];
931
- originSnapOffset: {
932
- x: number;
933
- y: number;
934
- } | null;
935
- objectsSnapModeEnabled: boolean;
936
- userToFollow: import("../types").UserToFollow | null;
937
- followedBy: Set<import("../types").SocketId>;
938
- isCropping: boolean;
939
- croppingElementId: string | null;
940
- searchMatches: Readonly<{
941
- focusedId: string | null;
942
- matches: readonly import("../types").SearchMatch[];
943
- }> | null;
944
- activeLockedId: string | null;
945
- lockedMultiSelections: {
946
- [groupId: string]: true;
947
- };
948
- };
949
- captureUpdate: "EVENTUALLY";
950
- };
951
- export declare const zoomToFit: ({ canvasOffsets, targetElements, appState, fitToViewport, viewportZoomFactor, minZoom, maxZoom, }: {
952
- canvasOffsets?: Partial<{
953
- top: number;
954
- right: number;
955
- bottom: number;
956
- left: number;
957
- }> | undefined;
958
- targetElements: readonly ExcalidrawElement[];
959
- appState: Readonly<AppState>;
960
- /** whether to fit content to viewport (beyond >100%) */
961
- fitToViewport: boolean;
962
- /** zoom content to cover X of the viewport, when fitToViewport=true */
963
- viewportZoomFactor?: number | undefined;
964
- minZoom?: number | undefined;
965
- maxZoom?: number | undefined;
966
- }) => {
967
- appState: {
968
- scrollX: number;
969
- scrollY: number;
970
- zoom: {
971
- value: import("../types").NormalizedZoomValue;
972
- };
973
- contextMenu: {
974
- items: import("../components/ContextMenu").ContextMenuItems;
975
- top: number;
976
- left: number;
977
- } | null;
978
- showWelcomeScreen: boolean;
979
- isLoading: boolean;
980
- errorMessage: import("react").ReactNode;
981
- activeEmbeddable: {
982
- element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
983
- state: "active" | "hover";
984
- } | null;
985
- newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
986
- resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
987
- multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
988
- selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
989
- isBindingEnabled: boolean;
990
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
991
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
992
- frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
993
- frameRendering: {
994
- enabled: boolean;
995
- name: boolean;
996
- outline: boolean;
997
- clip: boolean;
998
- };
999
- editingFrame: string | null;
1000
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
1001
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1002
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
1003
- activeTool: {
1004
- lastActiveTool: import("../types").ActiveTool | null;
1005
- locked: boolean;
1006
- fromSelection: boolean;
1007
- } & import("../types").ActiveTool;
1008
- penMode: boolean;
1009
- penDetected: boolean;
1010
- exportBackground: boolean;
1011
- exportEmbedScene: boolean;
1012
- exportWithDarkMode: boolean;
1013
- exportScale: number;
1014
- currentItemStrokeColor: string;
1015
- currentItemBackgroundColor: string;
1016
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
1017
- currentItemStrokeWidth: number;
1018
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
1019
- currentItemRoughness: number;
1020
- currentItemOpacity: number;
1021
- currentItemFontFamily: number;
1022
- currentItemFontSize: number;
1023
- currentItemTextAlign: string;
1024
- currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1025
- currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1026
- currentHoveredFontFamily: number | null;
1027
- currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
1028
- currentItemArrowType: "round" | "sharp" | "elbow";
1029
- viewBackgroundColor: string;
1030
- cursorButton: "up" | "down";
1031
- scrolledOutside: boolean;
1032
- name: string | null;
1033
- isResizing: boolean;
1034
- isRotating: boolean;
1035
- openMenu: "canvas" | "shape" | null;
1036
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
1037
- openSidebar: {
1038
- name: string;
1039
- tab?: string | undefined;
1040
- } | null;
1041
- openDialog: {
1042
- name: "imageExport" | "help" | "jsonExport";
1043
- } | {
1044
- name: "ttd";
1045
- tab: "mermaid" | "text-to-diagram";
1046
- } | {
1047
- name: "commandPalette";
1048
- } | {
1049
- name: "elementLinkSelector";
1050
- sourceElementId: string;
1051
- } | null;
1052
- defaultSidebarDockedPreference: boolean;
1053
- lastPointerDownWith: import("@excalidraw/element/types").PointerType;
1054
- selectedElementIds: Readonly<{
1055
- [id: string]: true;
1056
- }>;
1057
- hoveredElementIds: Readonly<{
1058
- [id: string]: true;
1059
- }>;
1060
- previousSelectedElementIds: {
1061
- [id: string]: true;
1062
- };
1063
- selectedElementsAreBeingDragged: boolean;
1064
- shouldCacheIgnoreZoom: boolean;
1065
- toast: {
1066
- message: string;
1067
- closable?: boolean | undefined;
1068
- duration?: number | undefined;
1069
- } | null;
1070
- zenModeEnabled: boolean;
1071
- theme: import("@excalidraw/element/types").Theme;
1072
- gridSize: number;
1073
- gridStep: number;
1074
- gridModeEnabled: boolean;
1075
- viewModeEnabled: boolean;
1076
- selectedGroupIds: {
1077
- [groupId: string]: boolean;
1078
- };
1079
- editingGroupId: string | null;
1080
- width: number;
1081
- height: number;
1082
- offsetTop: number;
1083
- offsetLeft: number;
1084
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
1085
- collaborators: Map<import("../types").SocketId, Readonly<{
1086
- pointer?: import("../types").CollaboratorPointer | undefined;
1087
- button?: "up" | "down" | undefined;
1088
- selectedElementIds?: Readonly<{
1089
- [id: string]: true;
1090
- }> | undefined;
1091
- username?: string | null | undefined;
1092
- userState?: import("@excalidraw/common").UserIdleState | undefined;
1093
- color?: {
1094
- background: string;
1095
- stroke: string;
1096
- } | undefined;
1097
- avatarUrl?: string | undefined;
1098
- id?: string | undefined;
1099
- socketId?: import("../types").SocketId | undefined;
1100
- isCurrentUser?: boolean | undefined;
1101
- isInCall?: boolean | undefined;
1102
- isSpeaking?: boolean | undefined;
1103
- isMuted?: boolean | undefined;
1104
- }>>;
1105
- stats: {
1106
- open: boolean;
1107
- panels: number;
1108
- };
1109
- currentChartType: import("@excalidraw/element/types").ChartType;
1110
- pasteDialog: {
1111
- shown: false;
1112
- data: null;
1113
- } | {
1114
- shown: true;
1115
- data: import("../charts").Spreadsheet;
1116
- };
1117
- showHyperlinkPopup: false | "editor" | "info";
1118
- selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
1119
- snapLines: readonly import("../snapping").SnapLine[];
1120
- originSnapOffset: {
1121
- x: number;
1122
- y: number;
1123
- } | null;
1124
- objectsSnapModeEnabled: boolean;
1125
- userToFollow: import("../types").UserToFollow | null;
1126
- followedBy: Set<import("../types").SocketId>;
1127
- isCropping: boolean;
1128
- croppingElementId: string | null;
1129
- searchMatches: Readonly<{
1130
- focusedId: string | null;
1131
- matches: readonly import("../types").SearchMatch[];
1132
- }> | null;
1133
- activeLockedId: string | null;
1134
- lockedMultiSelections: {
1135
- [groupId: string]: true;
1136
- };
1137
- };
1138
- captureUpdate: "EVENTUALLY";
1139
- };
1140
755
  export declare const actionZoomToFitSelectionInViewport: {
1141
756
  name: "zoomToFitSelectionInViewport";
1142
757
  label: string;
1143
758
  icon: import("react/jsx-runtime").JSX.Element;
759
+ viewMode: true;
760
+ navigation: true;
1144
761
  trackEvent: {
1145
762
  category: "canvas";
1146
763
  };
1147
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: import("../types").AppClassProperties) => {
764
+ predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: AppState, appProps: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
765
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: import("../types").AppClassProperties) => {
1148
766
  appState: {
767
+ zoom: import("../types").Zoom;
1149
768
  scrollX: number;
1150
769
  scrollY: number;
1151
- zoom: {
1152
- value: import("../types").NormalizedZoomValue;
1153
- };
1154
770
  contextMenu: {
1155
771
  items: import("../components/ContextMenu").ContextMenuItems;
1156
772
  top: number;
@@ -1158,18 +774,28 @@ export declare const actionZoomToFitSelectionInViewport: {
1158
774
  } | null;
1159
775
  showWelcomeScreen: boolean;
1160
776
  isLoading: boolean;
1161
- errorMessage: import("react").ReactNode;
777
+ errorMessage: React.ReactNode;
1162
778
  activeEmbeddable: {
1163
779
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
1164
- state: "active" | "hover";
780
+ state: "hover" | "active";
1165
781
  } | null;
1166
782
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
1167
783
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1168
784
  multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
1169
785
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1170
786
  isBindingEnabled: boolean;
1171
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
1172
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
787
+ boxSelectionMode: import("../types").BoxSelectionMode;
788
+ bindingPreference: "enabled" | "disabled";
789
+ isMidpointSnappingEnabled: boolean;
790
+ inputDevice: import("../types").InputDevice;
791
+ suggestedBinding: {
792
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
793
+ midPoint?: import("@excalidraw/math").GlobalPoint;
794
+ } | null;
795
+ hoveredArrowTextAnchor: {
796
+ elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
797
+ anchor: "start" | "end" | "label";
798
+ } | null;
1173
799
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
1174
800
  frameRendering: {
1175
801
  enabled: boolean;
@@ -1177,15 +803,18 @@ export declare const actionZoomToFitSelectionInViewport: {
1177
803
  outline: boolean;
1178
804
  clip: boolean;
1179
805
  };
1180
- editingFrame: string | null;
1181
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
1182
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1183
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
806
+ editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
807
+ elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
808
+ editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
1184
809
  activeTool: {
1185
810
  lastActiveTool: import("../types").ActiveTool | null;
1186
811
  locked: boolean;
1187
812
  fromSelection: boolean;
1188
813
  } & import("../types").ActiveTool;
814
+ preferredSelectionTool: {
815
+ type: "selection" | "lasso";
816
+ initialized: boolean;
817
+ };
1189
818
  penMode: boolean;
1190
819
  penDetected: boolean;
1191
820
  exportBackground: boolean;
@@ -1193,43 +822,53 @@ export declare const actionZoomToFitSelectionInViewport: {
1193
822
  exportWithDarkMode: boolean;
1194
823
  exportScale: number;
1195
824
  currentItemStrokeColor: string;
825
+ currentItemStickynoteStrokeColor: string;
826
+ currentItemStickynoteBackgroundColor: string;
1196
827
  currentItemBackgroundColor: string;
1197
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
1198
- currentItemStrokeWidth: number;
1199
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
828
+ currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
829
+ currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
830
+ currentItemStrokeStyle: import("@excalidraw/element/types").ExcalidrawElement["strokeStyle"];
1200
831
  currentItemRoughness: number;
832
+ currentItemStrokeVariability: import("@excalidraw/element/types").StrokeVariability;
1201
833
  currentItemOpacity: number;
1202
- currentItemFontFamily: number;
834
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
1203
835
  currentItemFontSize: number;
1204
- currentItemTextAlign: string;
836
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
1205
837
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1206
838
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1207
- currentHoveredFontFamily: number | null;
839
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
1208
840
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
1209
- currentItemArrowType: "round" | "sharp" | "elbow";
841
+ currentItemArrowType: "sharp" | "round" | "elbow";
1210
842
  viewBackgroundColor: string;
843
+ scrollConstraints: import("../types").ScrollConstraints | null;
1211
844
  cursorButton: "up" | "down";
1212
845
  scrolledOutside: boolean;
1213
846
  name: string | null;
1214
847
  isResizing: boolean;
1215
848
  isRotating: boolean;
1216
- openMenu: "canvas" | "shape" | null;
1217
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
849
+ openMenu: "canvas" | null;
850
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
1218
851
  openSidebar: {
1219
- name: string;
1220
- tab?: string | undefined;
852
+ name: import("../types").SidebarName;
853
+ tab?: import("../types").SidebarTabName;
1221
854
  } | null;
1222
- openDialog: {
855
+ openDialog: null | {
1223
856
  name: "imageExport" | "help" | "jsonExport";
1224
857
  } | {
1225
858
  name: "ttd";
1226
- tab: "mermaid" | "text-to-diagram";
859
+ tab: "text-to-diagram" | "mermaid";
1227
860
  } | {
1228
861
  name: "commandPalette";
862
+ } | {
863
+ name: "settings";
1229
864
  } | {
1230
865
  name: "elementLinkSelector";
1231
- sourceElementId: string;
1232
- } | null;
866
+ sourceElementId: import("@excalidraw/element/types").ExcalidrawElement["id"];
867
+ } | {
868
+ name: "charts";
869
+ data: import("../charts").Spreadsheet;
870
+ rawText: string;
871
+ };
1233
872
  defaultSidebarDockedPreference: boolean;
1234
873
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
1235
874
  selectedElementIds: Readonly<{
@@ -1244,9 +883,9 @@ export declare const actionZoomToFitSelectionInViewport: {
1244
883
  selectedElementsAreBeingDragged: boolean;
1245
884
  shouldCacheIgnoreZoom: boolean;
1246
885
  toast: {
1247
- message: string;
1248
- closable?: boolean | undefined;
1249
- duration?: number | undefined;
886
+ message: React.ReactNode;
887
+ closable?: boolean;
888
+ duration?: number;
1250
889
  } | null;
1251
890
  zenModeEnabled: boolean;
1252
891
  theme: import("@excalidraw/element/types").Theme;
@@ -1257,45 +896,18 @@ export declare const actionZoomToFitSelectionInViewport: {
1257
896
  selectedGroupIds: {
1258
897
  [groupId: string]: boolean;
1259
898
  };
1260
- editingGroupId: string | null;
899
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
1261
900
  width: number;
1262
901
  height: number;
1263
902
  offsetTop: number;
1264
903
  offsetLeft: number;
1265
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
1266
- collaborators: Map<import("../types").SocketId, Readonly<{
1267
- pointer?: import("../types").CollaboratorPointer | undefined;
1268
- button?: "up" | "down" | undefined;
1269
- selectedElementIds?: Readonly<{
1270
- [id: string]: true;
1271
- }> | undefined;
1272
- username?: string | null | undefined;
1273
- userState?: import("@excalidraw/common").UserIdleState | undefined;
1274
- color?: {
1275
- background: string;
1276
- stroke: string;
1277
- } | undefined;
1278
- avatarUrl?: string | undefined;
1279
- id?: string | undefined;
1280
- socketId?: import("../types").SocketId | undefined;
1281
- isCurrentUser?: boolean | undefined;
1282
- isInCall?: boolean | undefined;
1283
- isSpeaking?: boolean | undefined;
1284
- isMuted?: boolean | undefined;
1285
- }>>;
904
+ fileHandle: FileSystemFileHandle | null;
905
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
1286
906
  stats: {
1287
907
  open: boolean;
1288
908
  panels: number;
1289
909
  };
1290
- currentChartType: import("@excalidraw/element/types").ChartType;
1291
- pasteDialog: {
1292
- shown: false;
1293
- data: null;
1294
- } | {
1295
- shown: true;
1296
- data: import("../charts").Spreadsheet;
1297
- };
1298
- showHyperlinkPopup: false | "editor" | "info";
910
+ showHyperlinkPopup: false | "info" | "editor";
1299
911
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
1300
912
  snapLines: readonly import("../snapping").SnapLine[];
1301
913
  originSnapOffset: {
@@ -1303,18 +915,24 @@ export declare const actionZoomToFitSelectionInViewport: {
1303
915
  y: number;
1304
916
  } | null;
1305
917
  objectsSnapModeEnabled: boolean;
1306
- userToFollow: import("../types").UserToFollow | null;
1307
- followedBy: Set<import("../types").SocketId>;
1308
918
  isCropping: boolean;
1309
- croppingElementId: string | null;
919
+ croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
1310
920
  searchMatches: Readonly<{
1311
- focusedId: string | null;
921
+ focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
1312
922
  matches: readonly import("../types").SearchMatch[];
1313
923
  }> | null;
1314
924
  activeLockedId: string | null;
1315
925
  lockedMultiSelections: {
1316
926
  [groupId: string]: true;
1317
927
  };
928
+ bindMode: import("@excalidraw/element/types").BindMode;
929
+ colorTopPicks: {
930
+ elementStroke: readonly string[] | null;
931
+ elementBackground: readonly string[] | null;
932
+ bucketFill: readonly string[] | null;
933
+ stickyNoteStroke: readonly string[] | null;
934
+ stickyNoteBackground: readonly string[] | null;
935
+ };
1318
936
  };
1319
937
  captureUpdate: "EVENTUALLY";
1320
938
  };
@@ -1326,16 +944,17 @@ export declare const actionZoomToFitSelection: {
1326
944
  name: "zoomToFitSelection";
1327
945
  label: string;
1328
946
  icon: import("react/jsx-runtime").JSX.Element;
947
+ viewMode: true;
948
+ navigation: true;
1329
949
  trackEvent: {
1330
950
  category: "canvas";
1331
951
  };
1332
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: import("../types").AppClassProperties) => {
952
+ predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: AppState, appProps: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
953
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: import("../types").AppClassProperties) => {
1333
954
  appState: {
955
+ zoom: import("../types").Zoom;
1334
956
  scrollX: number;
1335
957
  scrollY: number;
1336
- zoom: {
1337
- value: import("../types").NormalizedZoomValue;
1338
- };
1339
958
  contextMenu: {
1340
959
  items: import("../components/ContextMenu").ContextMenuItems;
1341
960
  top: number;
@@ -1343,18 +962,28 @@ export declare const actionZoomToFitSelection: {
1343
962
  } | null;
1344
963
  showWelcomeScreen: boolean;
1345
964
  isLoading: boolean;
1346
- errorMessage: import("react").ReactNode;
965
+ errorMessage: React.ReactNode;
1347
966
  activeEmbeddable: {
1348
967
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
1349
- state: "active" | "hover";
968
+ state: "hover" | "active";
1350
969
  } | null;
1351
970
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
1352
971
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1353
972
  multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
1354
973
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1355
974
  isBindingEnabled: boolean;
1356
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
1357
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
975
+ boxSelectionMode: import("../types").BoxSelectionMode;
976
+ bindingPreference: "enabled" | "disabled";
977
+ isMidpointSnappingEnabled: boolean;
978
+ inputDevice: import("../types").InputDevice;
979
+ suggestedBinding: {
980
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
981
+ midPoint?: import("@excalidraw/math").GlobalPoint;
982
+ } | null;
983
+ hoveredArrowTextAnchor: {
984
+ elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
985
+ anchor: "start" | "end" | "label";
986
+ } | null;
1358
987
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
1359
988
  frameRendering: {
1360
989
  enabled: boolean;
@@ -1362,15 +991,18 @@ export declare const actionZoomToFitSelection: {
1362
991
  outline: boolean;
1363
992
  clip: boolean;
1364
993
  };
1365
- editingFrame: string | null;
1366
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
1367
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1368
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
994
+ editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
995
+ elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
996
+ editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
1369
997
  activeTool: {
1370
998
  lastActiveTool: import("../types").ActiveTool | null;
1371
999
  locked: boolean;
1372
1000
  fromSelection: boolean;
1373
1001
  } & import("../types").ActiveTool;
1002
+ preferredSelectionTool: {
1003
+ type: "selection" | "lasso";
1004
+ initialized: boolean;
1005
+ };
1374
1006
  penMode: boolean;
1375
1007
  penDetected: boolean;
1376
1008
  exportBackground: boolean;
@@ -1378,43 +1010,53 @@ export declare const actionZoomToFitSelection: {
1378
1010
  exportWithDarkMode: boolean;
1379
1011
  exportScale: number;
1380
1012
  currentItemStrokeColor: string;
1013
+ currentItemStickynoteStrokeColor: string;
1014
+ currentItemStickynoteBackgroundColor: string;
1381
1015
  currentItemBackgroundColor: string;
1382
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
1383
- currentItemStrokeWidth: number;
1384
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
1016
+ currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
1017
+ currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
1018
+ currentItemStrokeStyle: import("@excalidraw/element/types").ExcalidrawElement["strokeStyle"];
1385
1019
  currentItemRoughness: number;
1020
+ currentItemStrokeVariability: import("@excalidraw/element/types").StrokeVariability;
1386
1021
  currentItemOpacity: number;
1387
- currentItemFontFamily: number;
1022
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
1388
1023
  currentItemFontSize: number;
1389
- currentItemTextAlign: string;
1024
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
1390
1025
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1391
1026
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1392
- currentHoveredFontFamily: number | null;
1027
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
1393
1028
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
1394
- currentItemArrowType: "round" | "sharp" | "elbow";
1029
+ currentItemArrowType: "sharp" | "round" | "elbow";
1395
1030
  viewBackgroundColor: string;
1031
+ scrollConstraints: import("../types").ScrollConstraints | null;
1396
1032
  cursorButton: "up" | "down";
1397
1033
  scrolledOutside: boolean;
1398
1034
  name: string | null;
1399
1035
  isResizing: boolean;
1400
1036
  isRotating: boolean;
1401
- openMenu: "canvas" | "shape" | null;
1402
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
1037
+ openMenu: "canvas" | null;
1038
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
1403
1039
  openSidebar: {
1404
- name: string;
1405
- tab?: string | undefined;
1040
+ name: import("../types").SidebarName;
1041
+ tab?: import("../types").SidebarTabName;
1406
1042
  } | null;
1407
- openDialog: {
1043
+ openDialog: null | {
1408
1044
  name: "imageExport" | "help" | "jsonExport";
1409
1045
  } | {
1410
1046
  name: "ttd";
1411
- tab: "mermaid" | "text-to-diagram";
1047
+ tab: "text-to-diagram" | "mermaid";
1412
1048
  } | {
1413
1049
  name: "commandPalette";
1050
+ } | {
1051
+ name: "settings";
1414
1052
  } | {
1415
1053
  name: "elementLinkSelector";
1416
- sourceElementId: string;
1417
- } | null;
1054
+ sourceElementId: import("@excalidraw/element/types").ExcalidrawElement["id"];
1055
+ } | {
1056
+ name: "charts";
1057
+ data: import("../charts").Spreadsheet;
1058
+ rawText: string;
1059
+ };
1418
1060
  defaultSidebarDockedPreference: boolean;
1419
1061
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
1420
1062
  selectedElementIds: Readonly<{
@@ -1429,9 +1071,9 @@ export declare const actionZoomToFitSelection: {
1429
1071
  selectedElementsAreBeingDragged: boolean;
1430
1072
  shouldCacheIgnoreZoom: boolean;
1431
1073
  toast: {
1432
- message: string;
1433
- closable?: boolean | undefined;
1434
- duration?: number | undefined;
1074
+ message: React.ReactNode;
1075
+ closable?: boolean;
1076
+ duration?: number;
1435
1077
  } | null;
1436
1078
  zenModeEnabled: boolean;
1437
1079
  theme: import("@excalidraw/element/types").Theme;
@@ -1442,45 +1084,18 @@ export declare const actionZoomToFitSelection: {
1442
1084
  selectedGroupIds: {
1443
1085
  [groupId: string]: boolean;
1444
1086
  };
1445
- editingGroupId: string | null;
1087
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
1446
1088
  width: number;
1447
1089
  height: number;
1448
1090
  offsetTop: number;
1449
1091
  offsetLeft: number;
1450
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
1451
- collaborators: Map<import("../types").SocketId, Readonly<{
1452
- pointer?: import("../types").CollaboratorPointer | undefined;
1453
- button?: "up" | "down" | undefined;
1454
- selectedElementIds?: Readonly<{
1455
- [id: string]: true;
1456
- }> | undefined;
1457
- username?: string | null | undefined;
1458
- userState?: import("@excalidraw/common").UserIdleState | undefined;
1459
- color?: {
1460
- background: string;
1461
- stroke: string;
1462
- } | undefined;
1463
- avatarUrl?: string | undefined;
1464
- id?: string | undefined;
1465
- socketId?: import("../types").SocketId | undefined;
1466
- isCurrentUser?: boolean | undefined;
1467
- isInCall?: boolean | undefined;
1468
- isSpeaking?: boolean | undefined;
1469
- isMuted?: boolean | undefined;
1470
- }>>;
1092
+ fileHandle: FileSystemFileHandle | null;
1093
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
1471
1094
  stats: {
1472
1095
  open: boolean;
1473
1096
  panels: number;
1474
1097
  };
1475
- currentChartType: import("@excalidraw/element/types").ChartType;
1476
- pasteDialog: {
1477
- shown: false;
1478
- data: null;
1479
- } | {
1480
- shown: true;
1481
- data: import("../charts").Spreadsheet;
1482
- };
1483
- showHyperlinkPopup: false | "editor" | "info";
1098
+ showHyperlinkPopup: false | "info" | "editor";
1484
1099
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
1485
1100
  snapLines: readonly import("../snapping").SnapLine[];
1486
1101
  originSnapOffset: {
@@ -1488,18 +1103,24 @@ export declare const actionZoomToFitSelection: {
1488
1103
  y: number;
1489
1104
  } | null;
1490
1105
  objectsSnapModeEnabled: boolean;
1491
- userToFollow: import("../types").UserToFollow | null;
1492
- followedBy: Set<import("../types").SocketId>;
1493
1106
  isCropping: boolean;
1494
- croppingElementId: string | null;
1107
+ croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
1495
1108
  searchMatches: Readonly<{
1496
- focusedId: string | null;
1109
+ focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
1497
1110
  matches: readonly import("../types").SearchMatch[];
1498
1111
  }> | null;
1499
1112
  activeLockedId: string | null;
1500
1113
  lockedMultiSelections: {
1501
1114
  [groupId: string]: true;
1502
1115
  };
1116
+ bindMode: import("@excalidraw/element/types").BindMode;
1117
+ colorTopPicks: {
1118
+ elementStroke: readonly string[] | null;
1119
+ elementBackground: readonly string[] | null;
1120
+ bucketFill: readonly string[] | null;
1121
+ stickyNoteStroke: readonly string[] | null;
1122
+ stickyNoteBackground: readonly string[] | null;
1123
+ };
1503
1124
  };
1504
1125
  captureUpdate: "EVENTUALLY";
1505
1126
  };
@@ -1512,16 +1133,16 @@ export declare const actionZoomToFit: {
1512
1133
  label: string;
1513
1134
  icon: import("react/jsx-runtime").JSX.Element;
1514
1135
  viewMode: true;
1136
+ navigation: true;
1515
1137
  trackEvent: {
1516
1138
  category: "canvas";
1517
1139
  };
1518
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: import("../types").AppClassProperties) => {
1140
+ predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: AppState, appProps: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
1141
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: import("../types").AppClassProperties) => {
1519
1142
  appState: {
1143
+ zoom: import("../types").Zoom;
1520
1144
  scrollX: number;
1521
1145
  scrollY: number;
1522
- zoom: {
1523
- value: import("../types").NormalizedZoomValue;
1524
- };
1525
1146
  contextMenu: {
1526
1147
  items: import("../components/ContextMenu").ContextMenuItems;
1527
1148
  top: number;
@@ -1529,18 +1150,28 @@ export declare const actionZoomToFit: {
1529
1150
  } | null;
1530
1151
  showWelcomeScreen: boolean;
1531
1152
  isLoading: boolean;
1532
- errorMessage: import("react").ReactNode;
1153
+ errorMessage: React.ReactNode;
1533
1154
  activeEmbeddable: {
1534
1155
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
1535
- state: "active" | "hover";
1156
+ state: "hover" | "active";
1536
1157
  } | null;
1537
1158
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
1538
1159
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1539
1160
  multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
1540
1161
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1541
1162
  isBindingEnabled: boolean;
1542
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
1543
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
1163
+ boxSelectionMode: import("../types").BoxSelectionMode;
1164
+ bindingPreference: "enabled" | "disabled";
1165
+ isMidpointSnappingEnabled: boolean;
1166
+ inputDevice: import("../types").InputDevice;
1167
+ suggestedBinding: {
1168
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
1169
+ midPoint?: import("@excalidraw/math").GlobalPoint;
1170
+ } | null;
1171
+ hoveredArrowTextAnchor: {
1172
+ elementId: import("@excalidraw/element/types").ExcalidrawArrowElement["id"];
1173
+ anchor: "start" | "end" | "label";
1174
+ } | null;
1544
1175
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
1545
1176
  frameRendering: {
1546
1177
  enabled: boolean;
@@ -1548,15 +1179,18 @@ export declare const actionZoomToFit: {
1548
1179
  outline: boolean;
1549
1180
  clip: boolean;
1550
1181
  };
1551
- editingFrame: string | null;
1552
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
1553
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1554
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
1182
+ editingFrame: import("@excalidraw/element/types").ExcalidrawFrameLikeElement["id"] | null;
1183
+ elementsToHighlight: readonly import("@excalidraw/element/types").NonDeletedExcalidrawElement[] | null;
1184
+ editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
1555
1185
  activeTool: {
1556
1186
  lastActiveTool: import("../types").ActiveTool | null;
1557
1187
  locked: boolean;
1558
1188
  fromSelection: boolean;
1559
1189
  } & import("../types").ActiveTool;
1190
+ preferredSelectionTool: {
1191
+ type: "selection" | "lasso";
1192
+ initialized: boolean;
1193
+ };
1560
1194
  penMode: boolean;
1561
1195
  penDetected: boolean;
1562
1196
  exportBackground: boolean;
@@ -1564,231 +1198,53 @@ export declare const actionZoomToFit: {
1564
1198
  exportWithDarkMode: boolean;
1565
1199
  exportScale: number;
1566
1200
  currentItemStrokeColor: string;
1201
+ currentItemStickynoteStrokeColor: string;
1202
+ currentItemStickynoteBackgroundColor: string;
1567
1203
  currentItemBackgroundColor: string;
1568
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
1569
- currentItemStrokeWidth: number;
1570
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
1204
+ currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
1205
+ currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
1206
+ currentItemStrokeStyle: import("@excalidraw/element/types").ExcalidrawElement["strokeStyle"];
1571
1207
  currentItemRoughness: number;
1208
+ currentItemStrokeVariability: import("@excalidraw/element/types").StrokeVariability;
1572
1209
  currentItemOpacity: number;
1573
- currentItemFontFamily: number;
1210
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
1574
1211
  currentItemFontSize: number;
1575
- currentItemTextAlign: string;
1212
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
1576
1213
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1577
1214
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1578
- currentHoveredFontFamily: number | null;
1215
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
1579
1216
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
1580
- currentItemArrowType: "round" | "sharp" | "elbow";
1217
+ currentItemArrowType: "sharp" | "round" | "elbow";
1581
1218
  viewBackgroundColor: string;
1219
+ scrollConstraints: import("../types").ScrollConstraints | null;
1582
1220
  cursorButton: "up" | "down";
1583
1221
  scrolledOutside: boolean;
1584
1222
  name: string | null;
1585
1223
  isResizing: boolean;
1586
1224
  isRotating: boolean;
1587
- openMenu: "canvas" | "shape" | null;
1588
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
1225
+ openMenu: "canvas" | null;
1226
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
1589
1227
  openSidebar: {
1590
- name: string;
1591
- tab?: string | undefined;
1228
+ name: import("../types").SidebarName;
1229
+ tab?: import("../types").SidebarTabName;
1592
1230
  } | null;
1593
- openDialog: {
1231
+ openDialog: null | {
1594
1232
  name: "imageExport" | "help" | "jsonExport";
1595
1233
  } | {
1596
1234
  name: "ttd";
1597
- tab: "mermaid" | "text-to-diagram";
1235
+ tab: "text-to-diagram" | "mermaid";
1598
1236
  } | {
1599
1237
  name: "commandPalette";
1238
+ } | {
1239
+ name: "settings";
1600
1240
  } | {
1601
1241
  name: "elementLinkSelector";
1602
- sourceElementId: string;
1603
- } | null;
1604
- defaultSidebarDockedPreference: boolean;
1605
- lastPointerDownWith: import("@excalidraw/element/types").PointerType;
1606
- selectedElementIds: Readonly<{
1607
- [id: string]: true;
1608
- }>;
1609
- hoveredElementIds: Readonly<{
1610
- [id: string]: true;
1611
- }>;
1612
- previousSelectedElementIds: {
1613
- [id: string]: true;
1614
- };
1615
- selectedElementsAreBeingDragged: boolean;
1616
- shouldCacheIgnoreZoom: boolean;
1617
- toast: {
1618
- message: string;
1619
- closable?: boolean | undefined;
1620
- duration?: number | undefined;
1621
- } | null;
1622
- zenModeEnabled: boolean;
1623
- theme: import("@excalidraw/element/types").Theme;
1624
- gridSize: number;
1625
- gridStep: number;
1626
- gridModeEnabled: boolean;
1627
- viewModeEnabled: boolean;
1628
- selectedGroupIds: {
1629
- [groupId: string]: boolean;
1630
- };
1631
- editingGroupId: string | null;
1632
- width: number;
1633
- height: number;
1634
- offsetTop: number;
1635
- offsetLeft: number;
1636
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
1637
- collaborators: Map<import("../types").SocketId, Readonly<{
1638
- pointer?: import("../types").CollaboratorPointer | undefined;
1639
- button?: "up" | "down" | undefined;
1640
- selectedElementIds?: Readonly<{
1641
- [id: string]: true;
1642
- }> | undefined;
1643
- username?: string | null | undefined;
1644
- userState?: import("@excalidraw/common").UserIdleState | undefined;
1645
- color?: {
1646
- background: string;
1647
- stroke: string;
1648
- } | undefined;
1649
- avatarUrl?: string | undefined;
1650
- id?: string | undefined;
1651
- socketId?: import("../types").SocketId | undefined;
1652
- isCurrentUser?: boolean | undefined;
1653
- isInCall?: boolean | undefined;
1654
- isSpeaking?: boolean | undefined;
1655
- isMuted?: boolean | undefined;
1656
- }>>;
1657
- stats: {
1658
- open: boolean;
1659
- panels: number;
1660
- };
1661
- currentChartType: import("@excalidraw/element/types").ChartType;
1662
- pasteDialog: {
1663
- shown: false;
1664
- data: null;
1242
+ sourceElementId: import("@excalidraw/element/types").ExcalidrawElement["id"];
1665
1243
  } | {
1666
- shown: true;
1244
+ name: "charts";
1667
1245
  data: import("../charts").Spreadsheet;
1246
+ rawText: string;
1668
1247
  };
1669
- showHyperlinkPopup: false | "editor" | "info";
1670
- selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
1671
- snapLines: readonly import("../snapping").SnapLine[];
1672
- originSnapOffset: {
1673
- x: number;
1674
- y: number;
1675
- } | null;
1676
- objectsSnapModeEnabled: boolean;
1677
- userToFollow: import("../types").UserToFollow | null;
1678
- followedBy: Set<import("../types").SocketId>;
1679
- isCropping: boolean;
1680
- croppingElementId: string | null;
1681
- searchMatches: Readonly<{
1682
- focusedId: string | null;
1683
- matches: readonly import("../types").SearchMatch[];
1684
- }> | null;
1685
- activeLockedId: string | null;
1686
- lockedMultiSelections: {
1687
- [groupId: string]: true;
1688
- };
1689
- };
1690
- captureUpdate: "EVENTUALLY";
1691
- };
1692
- keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
1693
- } & {
1694
- keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
1695
- };
1696
- export declare const actionToggleTheme: {
1697
- name: "toggleTheme";
1698
- label: (_: readonly ExcalidrawElement[], appState: Readonly<AppState>) => "buttons.lightMode" | "buttons.darkMode";
1699
- keywords: string[];
1700
- icon: (appState: import("../types").UIAppState) => import("react/jsx-runtime").JSX.Element;
1701
- viewMode: true;
1702
- trackEvent: {
1703
- category: "canvas";
1704
- };
1705
- perform: (_: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, value: any) => {
1706
- appState: {
1707
- theme: any;
1708
- contextMenu: {
1709
- items: import("../components/ContextMenu").ContextMenuItems;
1710
- top: number;
1711
- left: number;
1712
- } | null;
1713
- showWelcomeScreen: boolean;
1714
- isLoading: boolean;
1715
- errorMessage: import("react").ReactNode;
1716
- activeEmbeddable: {
1717
- element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
1718
- state: "active" | "hover";
1719
- } | null;
1720
- newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
1721
- resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1722
- multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
1723
- selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1724
- isBindingEnabled: boolean;
1725
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
1726
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
1727
- frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
1728
- frameRendering: {
1729
- enabled: boolean;
1730
- name: boolean;
1731
- outline: boolean;
1732
- clip: boolean;
1733
- };
1734
- editingFrame: string | null;
1735
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
1736
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1737
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
1738
- activeTool: {
1739
- lastActiveTool: import("../types").ActiveTool | null;
1740
- locked: boolean;
1741
- fromSelection: boolean;
1742
- } & import("../types").ActiveTool;
1743
- penMode: boolean;
1744
- penDetected: boolean;
1745
- exportBackground: boolean;
1746
- exportEmbedScene: boolean;
1747
- exportWithDarkMode: boolean;
1748
- exportScale: number;
1749
- currentItemStrokeColor: string;
1750
- currentItemBackgroundColor: string;
1751
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
1752
- currentItemStrokeWidth: number;
1753
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
1754
- currentItemRoughness: number;
1755
- currentItemOpacity: number;
1756
- currentItemFontFamily: number;
1757
- currentItemFontSize: number;
1758
- currentItemTextAlign: string;
1759
- currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1760
- currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1761
- currentHoveredFontFamily: number | null;
1762
- currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
1763
- currentItemArrowType: "round" | "sharp" | "elbow";
1764
- viewBackgroundColor: string;
1765
- scrollX: number;
1766
- scrollY: number;
1767
- cursorButton: "up" | "down";
1768
- scrolledOutside: boolean;
1769
- name: string | null;
1770
- isResizing: boolean;
1771
- isRotating: boolean;
1772
- zoom: Readonly<{
1773
- value: import("../types").NormalizedZoomValue;
1774
- }>;
1775
- openMenu: "canvas" | "shape" | null;
1776
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
1777
- openSidebar: {
1778
- name: string;
1779
- tab?: string | undefined;
1780
- } | null;
1781
- openDialog: {
1782
- name: "imageExport" | "help" | "jsonExport";
1783
- } | {
1784
- name: "ttd";
1785
- tab: "mermaid" | "text-to-diagram";
1786
- } | {
1787
- name: "commandPalette";
1788
- } | {
1789
- name: "elementLinkSelector";
1790
- sourceElementId: string;
1791
- } | null;
1792
1248
  defaultSidebarDockedPreference: boolean;
1793
1249
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
1794
1250
  selectedElementIds: Readonly<{
@@ -1803,11 +1259,12 @@ export declare const actionToggleTheme: {
1803
1259
  selectedElementsAreBeingDragged: boolean;
1804
1260
  shouldCacheIgnoreZoom: boolean;
1805
1261
  toast: {
1806
- message: string;
1807
- closable?: boolean | undefined;
1808
- duration?: number | undefined;
1262
+ message: React.ReactNode;
1263
+ closable?: boolean;
1264
+ duration?: number;
1809
1265
  } | null;
1810
1266
  zenModeEnabled: boolean;
1267
+ theme: import("@excalidraw/element/types").Theme;
1811
1268
  gridSize: number;
1812
1269
  gridStep: number;
1813
1270
  gridModeEnabled: boolean;
@@ -1815,45 +1272,18 @@ export declare const actionToggleTheme: {
1815
1272
  selectedGroupIds: {
1816
1273
  [groupId: string]: boolean;
1817
1274
  };
1818
- editingGroupId: string | null;
1275
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
1819
1276
  width: number;
1820
1277
  height: number;
1821
1278
  offsetTop: number;
1822
1279
  offsetLeft: number;
1823
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
1824
- collaborators: Map<import("../types").SocketId, Readonly<{
1825
- pointer?: import("../types").CollaboratorPointer | undefined;
1826
- button?: "up" | "down" | undefined;
1827
- selectedElementIds?: Readonly<{
1828
- [id: string]: true;
1829
- }> | undefined;
1830
- username?: string | null | undefined;
1831
- userState?: import("@excalidraw/common").UserIdleState | undefined;
1832
- color?: {
1833
- background: string;
1834
- stroke: string;
1835
- } | undefined;
1836
- avatarUrl?: string | undefined;
1837
- id?: string | undefined;
1838
- socketId?: import("../types").SocketId | undefined;
1839
- isCurrentUser?: boolean | undefined;
1840
- isInCall?: boolean | undefined;
1841
- isSpeaking?: boolean | undefined;
1842
- isMuted?: boolean | undefined;
1843
- }>>;
1280
+ fileHandle: FileSystemFileHandle | null;
1281
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
1844
1282
  stats: {
1845
1283
  open: boolean;
1846
1284
  panels: number;
1847
1285
  };
1848
- currentChartType: import("@excalidraw/element/types").ChartType;
1849
- pasteDialog: {
1850
- shown: false;
1851
- data: null;
1852
- } | {
1853
- shown: true;
1854
- data: import("../charts").Spreadsheet;
1855
- };
1856
- showHyperlinkPopup: false | "editor" | "info";
1286
+ showHyperlinkPopup: false | "info" | "editor";
1857
1287
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
1858
1288
  snapLines: readonly import("../snapping").SnapLine[];
1859
1289
  originSnapOffset: {
@@ -1861,556 +1291,31 @@ export declare const actionToggleTheme: {
1861
1291
  y: number;
1862
1292
  } | null;
1863
1293
  objectsSnapModeEnabled: boolean;
1864
- userToFollow: import("../types").UserToFollow | null;
1865
- followedBy: Set<import("../types").SocketId>;
1866
1294
  isCropping: boolean;
1867
- croppingElementId: string | null;
1295
+ croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
1868
1296
  searchMatches: Readonly<{
1869
- focusedId: string | null;
1297
+ focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
1870
1298
  matches: readonly import("../types").SearchMatch[];
1871
1299
  }> | null;
1872
1300
  activeLockedId: string | null;
1873
1301
  lockedMultiSelections: {
1874
1302
  [groupId: string]: true;
1875
1303
  };
1304
+ bindMode: import("@excalidraw/element/types").BindMode;
1305
+ colorTopPicks: {
1306
+ elementStroke: readonly string[] | null;
1307
+ elementBackground: readonly string[] | null;
1308
+ bucketFill: readonly string[] | null;
1309
+ stickyNoteStroke: readonly string[] | null;
1310
+ stickyNoteBackground: readonly string[] | null;
1311
+ };
1876
1312
  };
1877
1313
  captureUpdate: "EVENTUALLY";
1878
1314
  };
1879
1315
  keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
1880
- predicate: (elements: readonly ExcalidrawElement[], appState: AppState, props: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
1881
1316
  } & {
1882
1317
  keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
1883
1318
  };
1884
- export declare const actionToggleEraserTool: {
1885
- name: "toggleEraserTool";
1886
- label: string;
1887
- trackEvent: {
1888
- category: "toolbar";
1889
- };
1890
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>) => {
1891
- appState: {
1892
- selectedElementIds: {};
1893
- selectedGroupIds: {};
1894
- activeEmbeddable: null;
1895
- activeTool: {
1896
- lastActiveTool: import("../types").ActiveTool | null;
1897
- locked: boolean;
1898
- fromSelection: boolean;
1899
- } & import("../types").ActiveTool;
1900
- contextMenu: {
1901
- items: import("../components/ContextMenu").ContextMenuItems;
1902
- top: number;
1903
- left: number;
1904
- } | null;
1905
- showWelcomeScreen: boolean;
1906
- isLoading: boolean;
1907
- errorMessage: import("react").ReactNode;
1908
- newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
1909
- resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1910
- multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
1911
- selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1912
- isBindingEnabled: boolean;
1913
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
1914
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
1915
- frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
1916
- frameRendering: {
1917
- enabled: boolean;
1918
- name: boolean;
1919
- outline: boolean;
1920
- clip: boolean;
1921
- };
1922
- editingFrame: string | null;
1923
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
1924
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1925
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
1926
- penMode: boolean;
1927
- penDetected: boolean;
1928
- exportBackground: boolean;
1929
- exportEmbedScene: boolean;
1930
- exportWithDarkMode: boolean;
1931
- exportScale: number;
1932
- currentItemStrokeColor: string;
1933
- currentItemBackgroundColor: string;
1934
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
1935
- currentItemStrokeWidth: number;
1936
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
1937
- currentItemRoughness: number;
1938
- currentItemOpacity: number;
1939
- currentItemFontFamily: number;
1940
- currentItemFontSize: number;
1941
- currentItemTextAlign: string;
1942
- currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1943
- currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1944
- currentHoveredFontFamily: number | null;
1945
- currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
1946
- currentItemArrowType: "round" | "sharp" | "elbow";
1947
- viewBackgroundColor: string;
1948
- scrollX: number;
1949
- scrollY: number;
1950
- cursorButton: "up" | "down";
1951
- scrolledOutside: boolean;
1952
- name: string | null;
1953
- isResizing: boolean;
1954
- isRotating: boolean;
1955
- zoom: Readonly<{
1956
- value: import("../types").NormalizedZoomValue;
1957
- }>;
1958
- openMenu: "canvas" | "shape" | null;
1959
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
1960
- openSidebar: {
1961
- name: string;
1962
- tab?: string | undefined;
1963
- } | null;
1964
- openDialog: {
1965
- name: "imageExport" | "help" | "jsonExport";
1966
- } | {
1967
- name: "ttd";
1968
- tab: "mermaid" | "text-to-diagram";
1969
- } | {
1970
- name: "commandPalette";
1971
- } | {
1972
- name: "elementLinkSelector";
1973
- sourceElementId: string;
1974
- } | null;
1975
- defaultSidebarDockedPreference: boolean;
1976
- lastPointerDownWith: import("@excalidraw/element/types").PointerType;
1977
- hoveredElementIds: Readonly<{
1978
- [id: string]: true;
1979
- }>;
1980
- previousSelectedElementIds: {
1981
- [id: string]: true;
1982
- };
1983
- selectedElementsAreBeingDragged: boolean;
1984
- shouldCacheIgnoreZoom: boolean;
1985
- toast: {
1986
- message: string;
1987
- closable?: boolean | undefined;
1988
- duration?: number | undefined;
1989
- } | null;
1990
- zenModeEnabled: boolean;
1991
- theme: import("@excalidraw/element/types").Theme;
1992
- gridSize: number;
1993
- gridStep: number;
1994
- gridModeEnabled: boolean;
1995
- viewModeEnabled: boolean;
1996
- editingGroupId: string | null;
1997
- width: number;
1998
- height: number;
1999
- offsetTop: number;
2000
- offsetLeft: number;
2001
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
2002
- collaborators: Map<import("../types").SocketId, Readonly<{
2003
- pointer?: import("../types").CollaboratorPointer | undefined;
2004
- button?: "up" | "down" | undefined;
2005
- selectedElementIds?: Readonly<{
2006
- [id: string]: true;
2007
- }> | undefined;
2008
- username?: string | null | undefined;
2009
- userState?: import("@excalidraw/common").UserIdleState | undefined;
2010
- color?: {
2011
- background: string;
2012
- stroke: string;
2013
- } | undefined;
2014
- avatarUrl?: string | undefined;
2015
- id?: string | undefined;
2016
- socketId?: import("../types").SocketId | undefined;
2017
- isCurrentUser?: boolean | undefined;
2018
- isInCall?: boolean | undefined;
2019
- isSpeaking?: boolean | undefined;
2020
- isMuted?: boolean | undefined;
2021
- }>>;
2022
- stats: {
2023
- open: boolean;
2024
- panels: number;
2025
- };
2026
- currentChartType: import("@excalidraw/element/types").ChartType;
2027
- pasteDialog: {
2028
- shown: false;
2029
- data: null;
2030
- } | {
2031
- shown: true;
2032
- data: import("../charts").Spreadsheet;
2033
- };
2034
- showHyperlinkPopup: false | "editor" | "info";
2035
- selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
2036
- snapLines: readonly import("../snapping").SnapLine[];
2037
- originSnapOffset: {
2038
- x: number;
2039
- y: number;
2040
- } | null;
2041
- objectsSnapModeEnabled: boolean;
2042
- userToFollow: import("../types").UserToFollow | null;
2043
- followedBy: Set<import("../types").SocketId>;
2044
- isCropping: boolean;
2045
- croppingElementId: string | null;
2046
- searchMatches: Readonly<{
2047
- focusedId: string | null;
2048
- matches: readonly import("../types").SearchMatch[];
2049
- }> | null;
2050
- activeLockedId: string | null;
2051
- lockedMultiSelections: {
2052
- [groupId: string]: true;
2053
- };
2054
- };
2055
- captureUpdate: "IMMEDIATELY";
2056
- };
2057
- keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
2058
- } & {
2059
- keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
2060
- };
2061
- export declare const actionToggleLassoTool: {
2062
- name: "toggleLassoTool";
2063
- label: string;
2064
- icon: import("react/jsx-runtime").JSX.Element;
2065
- trackEvent: {
2066
- category: "toolbar";
2067
- };
2068
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: import("../types").AppClassProperties) => {
2069
- appState: {
2070
- selectedElementIds: {};
2071
- selectedGroupIds: {};
2072
- activeEmbeddable: null;
2073
- activeTool: {
2074
- lastActiveTool: import("../types").ActiveTool | null;
2075
- locked: boolean;
2076
- fromSelection: boolean;
2077
- } & import("../types").ActiveTool;
2078
- contextMenu: {
2079
- items: import("../components/ContextMenu").ContextMenuItems;
2080
- top: number;
2081
- left: number;
2082
- } | null;
2083
- showWelcomeScreen: boolean;
2084
- isLoading: boolean;
2085
- errorMessage: import("react").ReactNode;
2086
- newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
2087
- resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
2088
- multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
2089
- selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
2090
- isBindingEnabled: boolean;
2091
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
2092
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
2093
- frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
2094
- frameRendering: {
2095
- enabled: boolean;
2096
- name: boolean;
2097
- outline: boolean;
2098
- clip: boolean;
2099
- };
2100
- editingFrame: string | null;
2101
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
2102
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
2103
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
2104
- penMode: boolean;
2105
- penDetected: boolean;
2106
- exportBackground: boolean;
2107
- exportEmbedScene: boolean;
2108
- exportWithDarkMode: boolean;
2109
- exportScale: number;
2110
- currentItemStrokeColor: string;
2111
- currentItemBackgroundColor: string;
2112
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
2113
- currentItemStrokeWidth: number;
2114
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
2115
- currentItemRoughness: number;
2116
- currentItemOpacity: number;
2117
- currentItemFontFamily: number;
2118
- currentItemFontSize: number;
2119
- currentItemTextAlign: string;
2120
- currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
2121
- currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
2122
- currentHoveredFontFamily: number | null;
2123
- currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
2124
- currentItemArrowType: "round" | "sharp" | "elbow";
2125
- viewBackgroundColor: string;
2126
- scrollX: number;
2127
- scrollY: number;
2128
- cursorButton: "up" | "down";
2129
- scrolledOutside: boolean;
2130
- name: string | null;
2131
- isResizing: boolean;
2132
- isRotating: boolean;
2133
- zoom: Readonly<{
2134
- value: import("../types").NormalizedZoomValue;
2135
- }>;
2136
- openMenu: "canvas" | "shape" | null;
2137
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
2138
- openSidebar: {
2139
- name: string;
2140
- tab?: string | undefined;
2141
- } | null;
2142
- openDialog: {
2143
- name: "imageExport" | "help" | "jsonExport";
2144
- } | {
2145
- name: "ttd";
2146
- tab: "mermaid" | "text-to-diagram";
2147
- } | {
2148
- name: "commandPalette";
2149
- } | {
2150
- name: "elementLinkSelector";
2151
- sourceElementId: string;
2152
- } | null;
2153
- defaultSidebarDockedPreference: boolean;
2154
- lastPointerDownWith: import("@excalidraw/element/types").PointerType;
2155
- hoveredElementIds: Readonly<{
2156
- [id: string]: true;
2157
- }>;
2158
- previousSelectedElementIds: {
2159
- [id: string]: true;
2160
- };
2161
- selectedElementsAreBeingDragged: boolean;
2162
- shouldCacheIgnoreZoom: boolean;
2163
- toast: {
2164
- message: string;
2165
- closable?: boolean | undefined;
2166
- duration?: number | undefined;
2167
- } | null;
2168
- zenModeEnabled: boolean;
2169
- theme: import("@excalidraw/element/types").Theme;
2170
- gridSize: number;
2171
- gridStep: number;
2172
- gridModeEnabled: boolean;
2173
- viewModeEnabled: boolean;
2174
- editingGroupId: string | null;
2175
- width: number;
2176
- height: number;
2177
- offsetTop: number;
2178
- offsetLeft: number;
2179
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
2180
- collaborators: Map<import("../types").SocketId, Readonly<{
2181
- pointer?: import("../types").CollaboratorPointer | undefined;
2182
- button?: "up" | "down" | undefined;
2183
- selectedElementIds?: Readonly<{
2184
- [id: string]: true;
2185
- }> | undefined;
2186
- username?: string | null | undefined;
2187
- userState?: import("@excalidraw/common").UserIdleState | undefined;
2188
- color?: {
2189
- background: string;
2190
- stroke: string;
2191
- } | undefined;
2192
- avatarUrl?: string | undefined;
2193
- id?: string | undefined;
2194
- socketId?: import("../types").SocketId | undefined;
2195
- isCurrentUser?: boolean | undefined;
2196
- isInCall?: boolean | undefined;
2197
- isSpeaking?: boolean | undefined;
2198
- isMuted?: boolean | undefined;
2199
- }>>;
2200
- stats: {
2201
- open: boolean;
2202
- panels: number;
2203
- };
2204
- currentChartType: import("@excalidraw/element/types").ChartType;
2205
- pasteDialog: {
2206
- shown: false;
2207
- data: null;
2208
- } | {
2209
- shown: true;
2210
- data: import("../charts").Spreadsheet;
2211
- };
2212
- showHyperlinkPopup: false | "editor" | "info";
2213
- selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
2214
- snapLines: readonly import("../snapping").SnapLine[];
2215
- originSnapOffset: {
2216
- x: number;
2217
- y: number;
2218
- } | null;
2219
- objectsSnapModeEnabled: boolean;
2220
- userToFollow: import("../types").UserToFollow | null;
2221
- followedBy: Set<import("../types").SocketId>;
2222
- isCropping: boolean;
2223
- croppingElementId: string | null;
2224
- searchMatches: Readonly<{
2225
- focusedId: string | null;
2226
- matches: readonly import("../types").SearchMatch[];
2227
- }> | null;
2228
- activeLockedId: string | null;
2229
- lockedMultiSelections: {
2230
- [groupId: string]: true;
2231
- };
2232
- };
2233
- captureUpdate: "NEVER";
2234
- };
2235
- } & {
2236
- keyTest?: undefined;
2237
- };
2238
- export declare const actionToggleHandTool: {
2239
- name: "toggleHandTool";
2240
- label: string;
2241
- trackEvent: {
2242
- category: "toolbar";
2243
- };
2244
- icon: import("react/jsx-runtime").JSX.Element;
2245
- viewMode: false;
2246
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: import("../types").AppClassProperties) => {
2247
- appState: {
2248
- selectedElementIds: {};
2249
- selectedGroupIds: {};
2250
- activeEmbeddable: null;
2251
- activeTool: {
2252
- lastActiveTool: import("../types").ActiveTool | null;
2253
- locked: boolean;
2254
- fromSelection: boolean;
2255
- } & import("../types").ActiveTool;
2256
- contextMenu: {
2257
- items: import("../components/ContextMenu").ContextMenuItems;
2258
- top: number;
2259
- left: number;
2260
- } | null;
2261
- showWelcomeScreen: boolean;
2262
- isLoading: boolean;
2263
- errorMessage: import("react").ReactNode;
2264
- newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
2265
- resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
2266
- multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
2267
- selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
2268
- isBindingEnabled: boolean;
2269
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
2270
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
2271
- frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
2272
- frameRendering: {
2273
- enabled: boolean;
2274
- name: boolean;
2275
- outline: boolean;
2276
- clip: boolean;
2277
- };
2278
- editingFrame: string | null;
2279
- elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
2280
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
2281
- editingLinearElement: import("@excalidraw/element").LinearElementEditor | null;
2282
- penMode: boolean;
2283
- penDetected: boolean;
2284
- exportBackground: boolean;
2285
- exportEmbedScene: boolean;
2286
- exportWithDarkMode: boolean;
2287
- exportScale: number;
2288
- currentItemStrokeColor: string;
2289
- currentItemBackgroundColor: string;
2290
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
2291
- currentItemStrokeWidth: number;
2292
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
2293
- currentItemRoughness: number;
2294
- currentItemOpacity: number;
2295
- currentItemFontFamily: number;
2296
- currentItemFontSize: number;
2297
- currentItemTextAlign: string;
2298
- currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
2299
- currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
2300
- currentHoveredFontFamily: number | null;
2301
- currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
2302
- currentItemArrowType: "round" | "sharp" | "elbow";
2303
- viewBackgroundColor: string;
2304
- scrollX: number;
2305
- scrollY: number;
2306
- cursorButton: "up" | "down";
2307
- scrolledOutside: boolean;
2308
- name: string | null;
2309
- isResizing: boolean;
2310
- isRotating: boolean;
2311
- zoom: Readonly<{
2312
- value: import("../types").NormalizedZoomValue;
2313
- }>;
2314
- openMenu: "canvas" | "shape" | null;
2315
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
2316
- openSidebar: {
2317
- name: string;
2318
- tab?: string | undefined;
2319
- } | null;
2320
- openDialog: {
2321
- name: "imageExport" | "help" | "jsonExport";
2322
- } | {
2323
- name: "ttd";
2324
- tab: "mermaid" | "text-to-diagram";
2325
- } | {
2326
- name: "commandPalette";
2327
- } | {
2328
- name: "elementLinkSelector";
2329
- sourceElementId: string;
2330
- } | null;
2331
- defaultSidebarDockedPreference: boolean;
2332
- lastPointerDownWith: import("@excalidraw/element/types").PointerType;
2333
- hoveredElementIds: Readonly<{
2334
- [id: string]: true;
2335
- }>;
2336
- previousSelectedElementIds: {
2337
- [id: string]: true;
2338
- };
2339
- selectedElementsAreBeingDragged: boolean;
2340
- shouldCacheIgnoreZoom: boolean;
2341
- toast: {
2342
- message: string;
2343
- closable?: boolean | undefined;
2344
- duration?: number | undefined;
2345
- } | null;
2346
- zenModeEnabled: boolean;
2347
- theme: import("@excalidraw/element/types").Theme;
2348
- gridSize: number;
2349
- gridStep: number;
2350
- gridModeEnabled: boolean;
2351
- viewModeEnabled: boolean;
2352
- editingGroupId: string | null;
2353
- width: number;
2354
- height: number;
2355
- offsetTop: number;
2356
- offsetLeft: number;
2357
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
2358
- collaborators: Map<import("../types").SocketId, Readonly<{
2359
- pointer?: import("../types").CollaboratorPointer | undefined;
2360
- button?: "up" | "down" | undefined;
2361
- selectedElementIds?: Readonly<{
2362
- [id: string]: true;
2363
- }> | undefined;
2364
- username?: string | null | undefined;
2365
- userState?: import("@excalidraw/common").UserIdleState | undefined;
2366
- color?: {
2367
- background: string;
2368
- stroke: string;
2369
- } | undefined;
2370
- avatarUrl?: string | undefined;
2371
- id?: string | undefined;
2372
- socketId?: import("../types").SocketId | undefined;
2373
- isCurrentUser?: boolean | undefined;
2374
- isInCall?: boolean | undefined;
2375
- isSpeaking?: boolean | undefined;
2376
- isMuted?: boolean | undefined;
2377
- }>>;
2378
- stats: {
2379
- open: boolean;
2380
- panels: number;
2381
- };
2382
- currentChartType: import("@excalidraw/element/types").ChartType;
2383
- pasteDialog: {
2384
- shown: false;
2385
- data: null;
2386
- } | {
2387
- shown: true;
2388
- data: import("../charts").Spreadsheet;
2389
- };
2390
- showHyperlinkPopup: false | "editor" | "info";
2391
- selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
2392
- snapLines: readonly import("../snapping").SnapLine[];
2393
- originSnapOffset: {
2394
- x: number;
2395
- y: number;
2396
- } | null;
2397
- objectsSnapModeEnabled: boolean;
2398
- userToFollow: import("../types").UserToFollow | null;
2399
- followedBy: Set<import("../types").SocketId>;
2400
- isCropping: boolean;
2401
- croppingElementId: string | null;
2402
- searchMatches: Readonly<{
2403
- focusedId: string | null;
2404
- matches: readonly import("../types").SearchMatch[];
2405
- }> | null;
2406
- activeLockedId: string | null;
2407
- lockedMultiSelections: {
2408
- [groupId: string]: true;
2409
- };
2410
- };
2411
- captureUpdate: "IMMEDIATELY";
2412
- };
2413
- keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
2414
- } & {
2415
- keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
1319
+ export declare const actionToggleTheme: import("./types").Action<import("@excalidraw/element/types").Theme> & {
1320
+ keyTest?: ((event: React.KeyboardEvent | KeyboardEvent, appState: AppState, elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], app: import("../types").AppClassProperties) => boolean) | undefined;
2416
1321
  };