@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,6 +1,6 @@
1
- import type { AppState, InteractiveCanvasAppState } from "@excalidraw/excalidraw/types";
1
+ import type { AppState, BoxSelectionMode, InteractiveCanvasAppState } from "@excalidraw/excalidraw/types";
2
2
  import { LinearElementEditor } from "./linearElementEditor";
3
- import type { ElementsMap, ElementsMapOrArray, ExcalidrawElement, NonDeletedExcalidrawElement } from "./types";
3
+ import type { ElementsMap, ElementsMapOrArray, ExcalidrawElement, NonDeleted, NonDeletedExcalidrawElement } from "./types";
4
4
  /**
5
5
  * Frames and their containing elements are not to be selected at the same time.
6
6
  * Given an array of selected elements, if there are frames and their containing elements
@@ -8,8 +8,8 @@ import type { ElementsMap, ElementsMapOrArray, ExcalidrawElement, NonDeletedExca
8
8
  * @param selectedElements
9
9
  */
10
10
  export declare const excludeElementsInFramesFromSelection: <T extends ExcalidrawElement>(selectedElements: readonly T[]) => T[];
11
- export declare const getElementsWithinSelection: (elements: readonly NonDeletedExcalidrawElement[], selection: NonDeletedExcalidrawElement, elementsMap: ElementsMap, excludeElementsInFrames?: boolean) => NonDeletedExcalidrawElement[];
12
- export declare const getVisibleAndNonSelectedElements: (elements: readonly NonDeletedExcalidrawElement[], selectedElements: readonly NonDeletedExcalidrawElement[], appState: AppState, elementsMap: ElementsMap) => NonDeletedExcalidrawElement[];
11
+ export declare const getElementsWithinSelection: <T extends ExcalidrawElement>(elements: readonly T[], selection: ExcalidrawElement, elementsMap: ElementsMap, excludeElementsInFrames?: boolean, boxSelectionMode?: BoxSelectionMode) => T[];
12
+ export declare const getVisibleAndNonSelectedElements: <T extends NonDeletedExcalidrawElement>(elements: readonly T[], selectedElements: readonly ExcalidrawElement[], appState: AppState, elementsMap: ElementsMap) => T[];
13
13
  export declare const isSomeElementSelected: {
14
14
  (elements: readonly NonDeletedExcalidrawElement[], appState: Pick<AppState, "selectedElementIds">): boolean;
15
15
  clearCache(): void;
@@ -17,8 +17,8 @@ export declare const isSomeElementSelected: {
17
17
  export declare const getSelectedElements: (elements: ElementsMapOrArray, appState: Pick<InteractiveCanvasAppState, "selectedElementIds">, opts?: {
18
18
  includeBoundTextElement?: boolean;
19
19
  includeElementsInFrames?: boolean;
20
- }) => ExcalidrawElement[];
21
- export declare const getTargetElements: (elements: ElementsMapOrArray, appState: Pick<AppState, "selectedElementIds" | "editingTextElement" | "newElement">) => ExcalidrawElement[];
20
+ }) => NonDeletedExcalidrawElement[];
21
+ export declare const getTargetElements: (elements: ElementsMapOrArray, appState: Pick<AppState, "selectedElementIds" | "editingTextElement" | "newElement" | "activeTool">) => NonDeletedExcalidrawElement[] | import("./types").ExcalidrawTextElement[];
22
22
  /**
23
23
  * returns prevState's selectedElementids if no change from previous, so as to
24
24
  * retain reference identity for memoization
@@ -26,13 +26,13 @@ export declare const getTargetElements: (elements: ElementsMapOrArray, appState:
26
26
  export declare const makeNextSelectedElementIds: (nextSelectedElementIds: AppState["selectedElementIds"], prevState: Pick<AppState, "selectedElementIds">) => Readonly<{
27
27
  [id: string]: true;
28
28
  }>;
29
- export declare const getSelectionStateForElements: (targetElements: readonly ExcalidrawElement[], allElements: readonly NonDeletedExcalidrawElement[], appState: AppState) => {
30
- editingGroupId: string | null;
31
- selectedElementIds: Readonly<{
32
- [id: string]: true;
33
- }>;
34
- selectedGroupIds: {
35
- [groupId: string]: boolean;
36
- };
29
+ export declare const getSelectionStateForElements: (targetElements: readonly NonDeletedExcalidrawElement[], allElements: readonly NonDeletedExcalidrawElement[], appState: AppState) => {
30
+ editingGroupId: AppState["editingGroupId"];
31
+ selectedElementIds: AppState["selectedElementIds"];
32
+ selectedGroupIds: AppState["selectedGroupIds"];
37
33
  selectedLinearElement: LinearElementEditor | null;
38
34
  };
35
+ /**
36
+ * Returns editing or single-selected text element, if any.
37
+ */
38
+ export declare const getActiveTextElement: (selectedElements: readonly NonDeleted<ExcalidrawElement>[], appState: Pick<AppState, "editingTextElement">) => import("./types").ExcalidrawTextElement | null;
@@ -3,7 +3,7 @@ import { type LocalPoint } from "@excalidraw/math";
3
3
  import type { GlobalPoint } from "@excalidraw/math";
4
4
  import type { AppState, EmbedsValidationStatus } from "@excalidraw/excalidraw/types";
5
5
  import type { ElementShape, ElementShapes } from "@excalidraw/excalidraw/scene/types";
6
- import type { ExcalidrawElement, ExcalidrawLinearElement, ExcalidrawFreeDrawElement, ElementsMap, ExcalidrawLineElement } from "./types";
6
+ import type { ExcalidrawElement, ExcalidrawSelectionElement, ExcalidrawLinearElement, ExcalidrawFreeDrawElement, ElementsMap, ExcalidrawLineElement } from "./types";
7
7
  import type { Drawable, Options } from "roughjs/bin/core";
8
8
  export declare class ShapeCache {
9
9
  private static rg;
@@ -12,22 +12,22 @@ export declare class ShapeCache {
12
12
  * Retrieves shape from cache if available. Use this only if shape
13
13
  * is optional and you have a fallback in case it's not cached.
14
14
  */
15
- static get: <T extends ExcalidrawElement>(element: T) => T["type"] extends keyof ElementShapes ? ElementShapes[T["type"]] | undefined : ElementShape | undefined;
16
- static set: <T extends ExcalidrawElement>(element: T, shape: T["type"] extends keyof ElementShapes ? ElementShapes[T["type"]] : Drawable) => WeakMap<ExcalidrawElement, ElementShape>;
17
- static delete: (element: ExcalidrawElement) => boolean;
15
+ static get: <T extends ExcalidrawElement>(element: T, theme: AppState["theme"] | null) => (T["type"] extends keyof ElementShapes ? ElementShapes[T["type"]] | undefined : ElementShape | undefined) | undefined;
16
+ static delete: (element: ExcalidrawElement) => void;
18
17
  static destroy: () => void;
19
18
  /**
20
19
  * Generates & caches shape for element if not already cached, otherwise
21
20
  * returns cached shape.
22
21
  */
23
- static generateElementShape: <T extends ExcalidrawLinearElement | import("./types").ExcalidrawRectangleElement | import("./types").ExcalidrawDiamondElement | import("./types").ExcalidrawEllipseElement | import("./types").ExcalidrawEmbeddableElement | import("./types").ExcalidrawIframeElement | import("./types").ExcalidrawImageElement | import("./types").ExcalidrawFrameElement | import("./types").ExcalidrawMagicFrameElement | import("./types").ExcalidrawTextElement | ExcalidrawFreeDrawElement | import("./types").ExcalidrawArrowElement>(element: T, renderConfig: {
22
+ static generateElementShape: <T extends Exclude<ExcalidrawElement, ExcalidrawSelectionElement>>(element: T, renderConfig: {
24
23
  isExporting: boolean;
25
24
  canvasBackgroundColor: AppState["viewBackgroundColor"];
26
25
  embedsValidationStatus: EmbedsValidationStatus;
27
- } | null) => ((T["type"] extends keyof ElementShapes ? ElementShapes[T["type"]] | undefined : ElementShape | undefined) & ({} | null)) | (T["type"] extends keyof ElementShapes ? ElementShapes[T["type"]] : Drawable | null);
26
+ theme: AppState["theme"];
27
+ } | null) => ((T["type"] extends keyof ElementShapes ? ElementShapes[T["type"]] | undefined : ElementShape | undefined) & {}) | (T["type"] extends keyof ElementShapes ? ElementShapes[T["type"]] : Drawable | null);
28
28
  }
29
- export declare const generateRoughOptions: (element: ExcalidrawElement, continuousPath?: boolean) => Options;
30
- export declare const generateLinearCollisionShape: (element: ExcalidrawLinearElement | ExcalidrawFreeDrawElement) => {
29
+ export declare const generateRoughOptions: (element: ExcalidrawElement, continuousPath?: boolean, isDarkMode?: boolean) => Options;
30
+ export declare const generateLinearCollisionShape: (element: ExcalidrawLinearElement | ExcalidrawFreeDrawElement, elementsMap: ElementsMap) => {
31
31
  op: string;
32
32
  data: number[];
33
33
  }[];
@@ -40,3 +40,16 @@ export declare const toggleLinePolygonState: (element: ExcalidrawLineElement, ne
40
40
  polygon: ExcalidrawLineElement["polygon"];
41
41
  points: ExcalidrawLineElement["points"];
42
42
  } | null;
43
+ export declare const getFreedrawOutlinePoints: (element: ExcalidrawFreeDrawElement) => [number, number][];
44
+ /**
45
+ * The streamline-smoothed centerline the freedraw stroke is rendered
46
+ * around, in element-local coordinates. Boundary-sensitive consumers (e.g.
47
+ * bucket fill) should use this instead of `element.points`: raw input
48
+ * points can sit 20px+ apart and the rendered stroke is smoothed between
49
+ * them, so raw chords visibly deviate from what's on screen.
50
+ *
51
+ * Constant-width ("laser geometry") strokes technically smooth via
52
+ * `LaserPointer` instead; the perfect-freehand centerline with the same
53
+ * `streamline` is a close approximation the stroke width hides.
54
+ */
55
+ export declare const getFreedrawStrokeCenterPoints: (element: ExcalidrawFreeDrawElement) => [number, number][];
@@ -1,5 +1,11 @@
1
1
  import type { AppState, Offsets, Zoom } from "@excalidraw/excalidraw/types";
2
2
  import type { ElementsMap, ExcalidrawElement } from "./types";
3
+ export type VerticalResizeAnchor = "top" | "bottom" | "center";
4
+ /** Keeps the chosen edge or center fixed when an element's height changes. */
5
+ export declare const getPositionAfterHeightChange: (element: Pick<ExcalidrawElement, "x" | "y" | "height" | "angle">, nextHeight: number, anchor?: VerticalResizeAnchor) => {
6
+ x: number;
7
+ y: number;
8
+ };
3
9
  export declare const INVISIBLY_SMALL_ELEMENT_SIZE = 0.1;
4
10
  export declare const isInvisiblySmallElement: (element: ExcalidrawElement) => boolean;
5
11
  export declare const isElementInViewport: (element: ExcalidrawElement, width: number, height: number, viewTransformations: {
@@ -1,2 +1,12 @@
1
1
  import type { ExcalidrawElement } from "./types";
2
+ /**
3
+ * In theory, when we have text elements bound to a container, they
4
+ * should be right after the container element in the elements array.
5
+ * However, this is not guaranteed due to old and potential future bugs.
6
+ *
7
+ * This function sorts containers and their bound texts together. It prefers
8
+ * original z-index of container (i.e. it moves bound text elements after
9
+ * containers).
10
+ */
11
+ export declare const normalizeBoundElementsOrder: <T extends ExcalidrawElement>(elements: readonly T[]) => readonly T[];
2
12
  export declare const normalizeElementOrder: (elements: readonly ExcalidrawElement[]) => readonly ExcalidrawElement[];
@@ -0,0 +1,183 @@
1
+ import type { Scene } from "./Scene";
2
+ import type { VerticalResizeAnchor } from "./sizeHelpers";
3
+ import type { TransformHandleDirection } from "./transformHandles";
4
+ import type { ElementsMap, ExcalidrawElement, ExcalidrawStickyNoteElement, ExcalidrawTextElement, NonDeletedExcalidrawElement } from "./types";
5
+ export type StickyNoteRenderPoint = {
6
+ x: number;
7
+ y: number;
8
+ };
9
+ export type StickyNotePathCommand = {
10
+ type: "move";
11
+ point: StickyNoteRenderPoint;
12
+ } | {
13
+ type: "line";
14
+ point: StickyNoteRenderPoint;
15
+ } | {
16
+ type: "quadratic";
17
+ control: StickyNoteRenderPoint;
18
+ point: StickyNoteRenderPoint;
19
+ };
20
+ export declare const normalizeStickyNoteStrokeColor: (strokeColor: string | null | undefined) => string;
21
+ export declare const normalizeStickyNoteBackgroundColor: (backgroundColor: string | null | undefined) => string;
22
+ /**
23
+ * The update that applies a picked color to an element under the sticky
24
+ * note policy: a note is always filled and its label — the visible text,
25
+ * which the note's own `strokeColor` seeds — never goes transparent. Every
26
+ * color surface (actions, both eyedroppers, paste styles, bind) routes
27
+ * through this instead of re-deriving the rule.
28
+ */
29
+ /**
30
+ * The element a color pick on `element` lands on. A note's label has no fill
31
+ * of its own, so a background pick on the label — the styles panel while
32
+ * editing it — goes to the note; everything else colors itself.
33
+ */
34
+ export declare const getColorTargetElement: (element: ExcalidrawElement, property: "strokeColor" | "backgroundColor", elementsMap: ElementsMap) => ExcalidrawElement;
35
+ export declare const getColorUpdate: (element: ExcalidrawElement, property: "strokeColor" | "backgroundColor", color: string, elementsMap: ElementsMap) => {
36
+ strokeColor: string;
37
+ } | {
38
+ backgroundColor: string;
39
+ };
40
+ /**
41
+ * A note's ink is one color: the container's `strokeColor` — the seed for a
42
+ * new label and what the creation-date footer paints with — and its label's.
43
+ * Run after a property write to copy the side that changed onto the other;
44
+ * when both changed, or neither (data that drifted), the label wins: it is
45
+ * the text the user styled. A transparent label always takes the note's
46
+ * color. Returns the same array when nothing needs to change.
47
+ */
48
+ export declare const syncStickyNoteInk: <T extends ExcalidrawElement>(elements: readonly T[], prevElementsMap: ElementsMap) => readonly T[];
49
+ export declare const getStickyNoteCornerRadius: (element: ExcalidrawStickyNoteElement) => number;
50
+ export declare const getStickyNoteRenderPoints: (element: ExcalidrawStickyNoteElement, { offsetX, offsetY, seedOffset, }?: {
51
+ offsetX?: number;
52
+ offsetY?: number;
53
+ seedOffset?: number;
54
+ }) => StickyNoteRenderPoint[];
55
+ export declare const getStickyNotePathCommands: (element: ExcalidrawStickyNoteElement, { shadow }?: {
56
+ shadow?: boolean;
57
+ }) => StickyNotePathCommand[];
58
+ export declare const normalizeStickyNoteFontSize: (fontSize: number) => number;
59
+ /** whether the text element is the label of a sticky note */
60
+ export declare const isStickyNoteBoundText: (textElement: ExcalidrawTextElement, elementsMap: ElementsMap) => boolean;
61
+ /**
62
+ * The font size the user picked: the ceiling the auto-fit shrinks from for a
63
+ * sticky note label, plain `fontSize` for any other text.
64
+ *
65
+ * Container-aware on purpose — generic binding repair (duplication, history)
66
+ * rewrites `containerId` without touching the ceiling, so a numeric
67
+ * `baseFontSize` alone does not prove the text is still sticky-bound.
68
+ */
69
+ export declare const getBaseFontSize: (textElement: ExcalidrawTextElement, elementsMap: ElementsMap) => number;
70
+ /** the update that applies a user-picked font size (see `getBaseFontSize`) */
71
+ export declare const getBaseFontSizeUpdate: (textElement: ExcalidrawTextElement, fontSize: number, elementsMap: ElementsMap) => {
72
+ fontSize: number;
73
+ } | {
74
+ baseFontSize: number;
75
+ };
76
+ /**
77
+ * The creation-date label: absolute, so painting needs no clock and exports
78
+ * don't go stale, and short ("7 Sep") while the year is the current one.
79
+ * `null` when the note has no usable timestamp (files restored without one).
80
+ * Fixed English in the viewer's local time zone — the element package has no
81
+ * locale, and the footer is chosen by width bucket rather than measured.
82
+ */
83
+ export declare const getStickyNoteDateLabel: (created: ExcalidrawStickyNoteElement["created"], { short, now }?: {
84
+ short?: boolean;
85
+ now?: number;
86
+ }) => string | null;
87
+ /**
88
+ * What the footer paints and where, in note-local coordinates — shared by the
89
+ * canvas and SVG renderers, which take the font and opacity from
90
+ * `STICKY_NOTE_FOOTER`. `null` for the 0×0 creation draft and anything under
91
+ * the data floor, where the band would overlap the top padding.
92
+ */
93
+ export declare const getStickyNoteFooter: (element: Pick<ExcalidrawStickyNoteElement, "created" | "width" | "height">, now?: number) => {
94
+ text: string;
95
+ x: number;
96
+ y: number;
97
+ } | null;
98
+ /**
99
+ * The smallest note the UI lets a user create or resize to: one line at the
100
+ * label's font ceiling plus padding (and, vertically, the footer), never below
101
+ * `STICKY_NOTE_MIN_SIZE`. Without the font term a fresh note would grow on
102
+ * the very first keystroke. Data-level passes (restore, action post-passes)
103
+ * only enforce the constant floor — the layout grows a note as needed.
104
+ */
105
+ export declare const getStickyNoteMinSize: ({ fontSize, fontFamily, }: Pick<ExcalidrawTextElement, "fontSize" | "fontFamily">) => {
106
+ width: number;
107
+ height: number;
108
+ };
109
+ export type StickyNoteLayoutAnchor = VerticalResizeAnchor;
110
+ export type StickyNoteLayoutOpts = {
111
+ /** unwrapped text to lay out; defaults to the label's `originalText` */
112
+ originalText?: string;
113
+ /**
114
+ * absolute base-height intent — the gesture-start value to preserve, or the
115
+ * height a resize asked for. Omitted = keep the note's live `baseHeight`
116
+ * (typing, style changes, restore).
117
+ */
118
+ baseHeight?: number;
119
+ /**
120
+ * absolute font-ceiling intent (a proportional resize passes
121
+ * `gesture-start ceiling × scale`). Omitted = keep the label's live ceiling.
122
+ * Never a multiplier on the live value — that compounds across pointer-moves.
123
+ */
124
+ baseFontSize?: number;
125
+ /** the edge that stays put when the content correction changes the height */
126
+ anchor?: StickyNoteLayoutAnchor;
127
+ };
128
+ export type StickyNoteLayout = {
129
+ container: Pick<ExcalidrawStickyNoteElement, "x" | "y" | "width" | "height" | "baseHeight">;
130
+ text: Pick<ExcalidrawTextElement, "text" | "fontSize" | "baseFontSize" | "width" | "height" | "x" | "y" | "angle"> | null;
131
+ };
132
+ /**
133
+ * The single source of truth for a sticky note's geometry: wraps the label at
134
+ * the note's width, fits the font under the ceiling, grows the note past
135
+ * `baseHeight` only when the text still overflows at the minimum size, and
136
+ * positions the label inside. Pure — returns the updates for both elements.
137
+ */
138
+ export declare const getStickyNoteLayout: (container: ExcalidrawStickyNoteElement, textElement: ExcalidrawTextElement | null, opts?: StickyNoteLayoutOpts) => StickyNoteLayout;
139
+ /**
140
+ * Resize intents for a sticky note — the §3.3 matrix of the plan. Every value
141
+ * is absolute and derived from the gesture-start snapshot on each pointer-move,
142
+ * so releasing Shift (or Alt) mid-gesture restores the original base height
143
+ * and ceiling instead of keeping values a previous move scaled.
144
+ *
145
+ * - width-only gestures (free E/W, Stats W) preserve the base height
146
+ * - height-changing gestures use the requested height as the new base
147
+ * - proportional gestures (Shift on any handle, aspect-locked multi-select,
148
+ * Stats group) additionally scale the font ceiling with the note
149
+ * - flips preserve everything
150
+ * - the content correction anchors at the edge the gesture holds still
151
+ */
152
+ export declare const getStickyNoteResizeIntent: (
153
+ /** the note with the requested geometry already applied */
154
+ container: ExcalidrawStickyNoteElement, originalElementsMap: ElementsMap, handleDirection: TransformHandleDirection, { proportional, fromCenter, flip, }: {
155
+ proportional: boolean;
156
+ fromCenter: boolean;
157
+ flip?: boolean;
158
+ }) => Pick<StickyNoteLayoutOpts, "baseHeight" | "baseFontSize" | "anchor">;
159
+ /**
160
+ * Applies `getStickyNoteLayout` to a live scene, then runs the bound-arrow
161
+ * pass unless the caller already owns one (`bindings: false`) or needs to
162
+ * forward its context (`bindings: { simultaneouslyUpdated }` — arrows resized
163
+ * in the same gesture must not be moved by the pass, `updateBoundElements`
164
+ * skips them only when told).
165
+ */
166
+ export declare const updateStickyNoteLayout: (container: ExcalidrawStickyNoteElement, scene: Scene, { text, bindings, ...layoutOpts }?: StickyNoteLayoutOpts & {
167
+ /** the label to lay out when it is an uncommitted clone (font actions clone before install) */
168
+ text?: ExcalidrawTextElement | null;
169
+ bindings?: {
170
+ simultaneouslyUpdated?: readonly NonDeletedExcalidrawElement[];
171
+ } | false;
172
+ }) => StickyNoteLayout;
173
+ /**
174
+ * Applies `getStickyNoteLayout` inside an immutable elements array (property
175
+ * actions, paste styles, restore): the notes among `affectedIds` — or the
176
+ * notes whose labels are — get both halves merged into their clones. Elements
177
+ * that need no change keep their identity and version; when `prevElementsMap`
178
+ * is given, notes whose layout inputs did not change skip the fit entirely.
179
+ * Bound arrows are the caller's job once the result is installed.
180
+ */
181
+ export declare const relayoutStickyNotes: <T extends ExcalidrawElement>(elements: readonly T[], affectedIds: ReadonlySet<ExcalidrawElement["id"]>, opts?: {
182
+ prevElementsMap?: ElementsMap;
183
+ }) => readonly T[];
@@ -169,7 +169,11 @@ export declare class StoreDelta {
169
169
  /**
170
170
  * Parse and load the delta from the remote payload.
171
171
  */
172
- static load({ id, elements: { added, removed, updated }, }: DTO<StoreDelta>): StoreDelta;
172
+ static load({ id, elements: { added, removed, updated }, appState: { delta: appStateDelta }, }: DTO<StoreDelta>): StoreDelta;
173
+ /**
174
+ * Squash the passed deltas into the aggregated delta instance.
175
+ */
176
+ static squash(...deltas: StoreDelta[]): StoreDelta;
173
177
  /**
174
178
  * Inverse store delta, creates new instance of `StoreDelta`.
175
179
  */
@@ -182,6 +186,7 @@ export declare class StoreDelta {
182
186
  * Apply latest (remote) changes to the delta, creates new instance of `StoreDelta`.
183
187
  */
184
188
  static applyLatestChanges(delta: StoreDelta, prevElements: SceneElementsMap, nextElements: SceneElementsMap, modifierOptions?: "deleted" | "inserted"): StoreDelta;
189
+ static empty(): StoreDelta;
185
190
  isEmpty(): boolean;
186
191
  }
187
192
  /**
@@ -1,23 +1,26 @@
1
- import type { AppState } from "@excalidraw/excalidraw/types";
1
+ import { type Radians } from "@excalidraw/math";
2
2
  import type { ExtractSetType } from "@excalidraw/common/utility-types";
3
- import type { Radians } from "@excalidraw/math";
4
3
  import type { Scene } from "./Scene";
5
4
  import type { MaybeTransformHandleType } from "./transformHandles";
6
- import type { ElementsMap, ExcalidrawElement, ExcalidrawElementType, ExcalidrawTextContainer, ExcalidrawTextElement, ExcalidrawTextElementWithContainer, NonDeletedExcalidrawElement } from "./types";
5
+ import type { ElementsMap, ExcalidrawElement, ExcalidrawElementType, ExcalidrawTextContainer, ExcalidrawTextElement, ExcalidrawTextElementWithContainer, NonDeleted } from "./types";
7
6
  export declare const redrawTextBoundingBox: (textElement: ExcalidrawTextElement, container: ExcalidrawElement | null, scene: Scene) => void;
8
- export declare const handleBindTextResize: (container: NonDeletedExcalidrawElement, scene: Scene, transformHandleType: MaybeTransformHandleType, shouldMaintainAspectRatio?: boolean) => void;
7
+ export declare const handleBindTextResize: (container: ExcalidrawElement, scene: Scene, transformHandleType: MaybeTransformHandleType, shouldMaintainAspectRatio?: boolean, shouldResizeFromCenter?: boolean, flipByY?: boolean) => void;
9
8
  export declare const computeBoundTextPosition: (container: ExcalidrawElement, boundTextElement: ExcalidrawTextElementWithContainer, elementsMap: ElementsMap) => {
10
9
  x: number;
11
10
  y: number;
12
11
  };
13
12
  export declare const getBoundTextElementId: (container: ExcalidrawElement | null) => string | null;
14
- export declare const getBoundTextElement: (element: ExcalidrawElement | null, elementsMap: ElementsMap) => ExcalidrawTextElementWithContainer | null;
15
- export declare const getContainerElement: (element: ExcalidrawTextElement | null, elementsMap: ElementsMap) => ExcalidrawTextContainer | null;
16
- export declare const getContainerCenter: (container: ExcalidrawElement, appState: AppState, elementsMap: ElementsMap) => {
13
+ export declare const getBoundTextElement: (element: ExcalidrawElement | null, elementsMap: ElementsMap) => NonDeleted<ExcalidrawTextElementWithContainer> | null;
14
+ export declare const getContainerElement: <T extends ExcalidrawTextElement, R extends ExcalidrawTextContainer>(element: T | null, elementsMap: ElementsMap) => R | null;
15
+ /**
16
+ * The point a text bound to this container centers on — and, for arrows, the
17
+ * point the text tool snaps a new label to.
18
+ */
19
+ export declare const getContainerCenter: (container: ExcalidrawElement, elementsMap: ElementsMap) => {
17
20
  x: number;
18
21
  y: number;
19
22
  };
20
- export declare const getContainerCoords: (container: NonDeletedExcalidrawElement) => {
23
+ export declare const getContainerCoords: (container: ExcalidrawElement) => {
21
24
  x: number;
22
25
  y: number;
23
26
  };
@@ -26,15 +29,16 @@ export declare const getBoundTextElementPosition: (container: ExcalidrawElement,
26
29
  x: number;
27
30
  y: number;
28
31
  } | undefined;
29
- export declare const shouldAllowVerticalAlign: (selectedElements: NonDeletedExcalidrawElement[], elementsMap: ElementsMap) => boolean;
30
- export declare const suppportsHorizontalAlign: (selectedElements: NonDeletedExcalidrawElement[], elementsMap: ElementsMap) => boolean;
32
+ export declare const shouldAllowVerticalAlign: (selectedElements: readonly ExcalidrawElement[], elementsMap: ElementsMap) => boolean;
33
+ export declare const suppportsHorizontalAlign: (selectedElements: readonly ExcalidrawElement[], elementsMap: ElementsMap) => boolean;
31
34
  declare const VALID_CONTAINER_TYPES: Set<string>;
32
35
  export declare const isValidTextContainer: (element: {
33
36
  type: ExcalidrawElementType;
34
- }) => boolean;
37
+ }) => element is ExcalidrawTextContainer;
35
38
  export declare const computeContainerDimensionForBoundText: (dimension: number, containerType: ExtractSetType<typeof VALID_CONTAINER_TYPES>) => number;
36
39
  export declare const getBoundTextMaxWidth: (container: ExcalidrawElement, boundTextElement: ExcalidrawTextElement | null) => number;
37
40
  export declare const getBoundTextMaxHeight: (container: ExcalidrawElement, boundTextElement: ExcalidrawTextElementWithContainer) => number;
38
41
  /** retrieves text from text elements and concatenates to a single string */
39
42
  export declare const getTextFromElements: (elements: readonly ExcalidrawElement[], separator?: string) => string;
43
+ export declare const DEFAULT_BOUND_TEXT_LABEL_POSITION = 0.5;
40
44
  export {};
@@ -11,9 +11,7 @@ export declare const normalizeText: (text: string) => string;
11
11
  * To get unitless line-height (if unknown) we can calculate it by dividing
12
12
  * height-per-line by fontSize.
13
13
  */
14
- export declare const detectLineHeight: (textElement: ExcalidrawTextElement) => number & {
15
- _brand: "unitlessLineHeight";
16
- };
14
+ export declare const detectLineHeight: (textElement: ExcalidrawTextElement) => ExcalidrawTextElement["lineHeight"];
17
15
  /**
18
16
  * We calculate the line height from the font size and the unitless line height,
19
17
  * aligning with the W3C spec.
@@ -5,9 +5,35 @@ import type { FontString } from "./types";
5
5
  export declare const containsCJK: (text: string) => boolean;
6
6
  /**
7
7
  * Breaks the line into the tokens based on the found line break opporutnities.
8
+ *
9
+ * Note: tokenization normalizes to NFC first so decomposed graphemes are treated as
10
+ * their composed variants for wrapping. Any code that needs exact source offsets should
11
+ * keep in mind that this assumes the input text is already NFC-normalized.
8
12
  */
9
13
  export declare const parseTokens: (line: string) => string[];
10
14
  /**
11
15
  * Wraps the original text into the lines based on the given width.
16
+ *
17
+ * This is a convenience adapter over `getWrappedTextLines()` for call sites
18
+ * that only need the rendered wrapped string and not the source offsets.
12
19
  */
13
20
  export declare const wrapText: (text: string, font: FontString, maxWidth: number) => string;
21
+ /**
22
+ * A single rendered visual line produced from the original text.
23
+ *
24
+ * `start` and `end` are end-exclusive code-unit offsets into the original text, and do
25
+ * not include synthetic soft line breaks inserted by this module. If trailing whitespace
26
+ * was trimmed away at a wrap boundary, `end` points to the last rendered character.
27
+ */
28
+ export type WrappedTextLine = {
29
+ text: string;
30
+ start: number;
31
+ end: number;
32
+ };
33
+ /**
34
+ * Returns the rendered visual lines together with their source offsets.
35
+ *
36
+ * This is the source-of-truth wrapping pipeline for callers that need more than the
37
+ * final wrapped string, for example caret placement or future editor/rich-text mapping.
38
+ */
39
+ export declare const getWrappedTextLines: (text: string, font: FontString, maxWidth: number) => WrappedTextLine[];
@@ -1,6 +1,12 @@
1
- import type { ElementConstructorOpts } from "@excalidraw/element";
2
- import type { ExcalidrawBindableElement, ExcalidrawElement, ExcalidrawFrameElement, ExcalidrawFreeDrawElement, ExcalidrawGenericElement, ExcalidrawIframeLikeElement, ExcalidrawImageElement, ExcalidrawLinearElement, ExcalidrawMagicFrameElement, ExcalidrawSelectionElement, ExcalidrawTextElement, FileId, FontFamilyValues, TextAlign, VerticalAlign } from "@excalidraw/element/types";
3
1
  import type { MarkOptional } from "@excalidraw/common/utility-types";
2
+ import { type ElementConstructorOpts } from "./newElement";
3
+ import type { ExcalidrawBindableElement, ExcalidrawElement, ExcalidrawFrameElement, ExcalidrawFreeDrawElement, ExcalidrawGenericElement, ExcalidrawIframeLikeElement, ExcalidrawImageElement, ExcalidrawLinearElement, ExcalidrawMagicFrameElement, ExcalidrawSelectionElement, ExcalidrawTextElement, FileId, FontFamilyValues, NonDeletedExcalidrawElement, Ordered, TextAlign, VerticalAlign, ExcalidrawStickyNoteElement } from "./types";
4
+ /**
5
+ * Options for elements generated from a skeleton fragment (bound labels and
6
+ * binding endpoints). Such elements are always constructed fresh, hence they
7
+ * never carry a creation time of their own.
8
+ */
9
+ type FragmentConstructorOpts = MarkOptional<Omit<ElementConstructorOpts, "created">, "x" | "y">;
4
10
  export type ValidLinearElement = {
5
11
  type: "arrow" | "line";
6
12
  x: number;
@@ -11,7 +17,7 @@ export type ValidLinearElement = {
11
17
  fontFamily?: FontFamilyValues;
12
18
  textAlign?: TextAlign;
13
19
  verticalAlign?: VerticalAlign;
14
- } & MarkOptional<ElementConstructorOpts, "x" | "y">;
20
+ } & FragmentConstructorOpts;
15
21
  end?: (({
16
22
  type: Exclude<ExcalidrawBindableElement["type"], "image" | "text" | "frame" | "magicframe" | "embeddable" | "iframe">;
17
23
  id?: ExcalidrawGenericElement["id"];
@@ -25,7 +31,7 @@ export type ValidLinearElement = {
25
31
  type?: "text";
26
32
  id: ExcalidrawTextElement["id"];
27
33
  text: string;
28
- }) & Partial<ExcalidrawTextElement>)) & MarkOptional<ElementConstructorOpts, "x" | "y">;
34
+ }) & Partial<Omit<ExcalidrawTextElement, "created">>)) & FragmentConstructorOpts;
29
35
  start?: (({
30
36
  type: Exclude<ExcalidrawBindableElement["type"], "image" | "text" | "frame" | "magicframe" | "embeddable" | "iframe">;
31
37
  id?: ExcalidrawGenericElement["id"];
@@ -39,7 +45,7 @@ export type ValidLinearElement = {
39
45
  type?: "text";
40
46
  id: ExcalidrawTextElement["id"];
41
47
  text: string;
42
- }) & Partial<ExcalidrawTextElement>)) & MarkOptional<ElementConstructorOpts, "x" | "y">;
48
+ }) & Partial<Omit<ExcalidrawTextElement, "created">>)) & FragmentConstructorOpts;
43
49
  } & Partial<ExcalidrawLinearElement>;
44
50
  export type ValidContainer = {
45
51
  type: Exclude<ExcalidrawGenericElement["type"], "selection">;
@@ -50,13 +56,25 @@ export type ValidContainer = {
50
56
  fontFamily?: FontFamilyValues;
51
57
  textAlign?: TextAlign;
52
58
  verticalAlign?: VerticalAlign;
53
- } & MarkOptional<ElementConstructorOpts, "x" | "y">;
59
+ } & FragmentConstructorOpts;
54
60
  } & ElementConstructorOpts;
61
+ /**
62
+ * A sticky note: an always-filled note whose label auto-fits. `label.fontSize`
63
+ * is the font ceiling the fit shrinks from; the note grows past its height
64
+ * (kept as `baseHeight`) only once the label hits the minimum font size.
65
+ */
66
+ export type ValidStickyNote = {
67
+ type: "stickynote";
68
+ id?: ExcalidrawStickyNoteElement["id"];
69
+ label?: Extract<ValidContainer, {
70
+ label?: unknown;
71
+ }>["label"];
72
+ } & ElementConstructorOpts & Partial<Pick<ExcalidrawStickyNoteElement, "baseHeight">>;
55
73
  export type ExcalidrawElementSkeleton = Extract<Exclude<ExcalidrawElement, ExcalidrawSelectionElement>, ExcalidrawIframeLikeElement | ExcalidrawFreeDrawElement> | ({
56
74
  type: Extract<ExcalidrawLinearElement["type"], "line">;
57
75
  x: number;
58
76
  y: number;
59
- } & Partial<ExcalidrawLinearElement>) | ValidContainer | ValidLinearElement | ({
77
+ } & Partial<ExcalidrawLinearElement>) | ValidContainer | ValidStickyNote | ValidLinearElement | ({
60
78
  type: "text";
61
79
  text: string;
62
80
  x: number;
@@ -78,4 +96,5 @@ export type ExcalidrawElementSkeleton = Extract<Exclude<ExcalidrawElement, Excal
78
96
  } & Partial<ExcalidrawMagicFrameElement>);
79
97
  export declare const convertToExcalidrawElements: (elementsSkeleton: ExcalidrawElementSkeleton[] | null, opts?: {
80
98
  regenerateIds: boolean;
81
- }) => import("@excalidraw/element/types").OrderedExcalidrawElement[];
99
+ }) => Ordered<NonDeletedExcalidrawElement>[];
100
+ export {};
@@ -1,6 +1,7 @@
1
+ import { type EditorInterface } from "@excalidraw/common";
1
2
  import type { Radians } from "@excalidraw/math";
2
- import type { Device, InteractiveCanvasAppState, Zoom } from "@excalidraw/excalidraw/types";
3
- import type { Bounds } from "./bounds";
3
+ import type { InteractiveCanvasAppState, Zoom } from "@excalidraw/excalidraw/types";
4
+ import type { Bounds } from "@excalidraw/common";
4
5
  import type { ElementsMap, ExcalidrawElement, NonDeletedExcalidrawElement, PointerType } from "./types";
5
6
  export type TransformHandleDirection = "n" | "s" | "w" | "e" | "nw" | "ne" | "sw" | "se";
6
7
  export type TransformHandleType = TransformHandleDirection | "rotation";
@@ -28,28 +29,8 @@ export declare const OMIT_SIDES_FOR_FRAME: {
28
29
  w: boolean;
29
30
  rotation: boolean;
30
31
  };
31
- export declare const canResizeFromSides: (device: Device) => boolean;
32
- export declare const getOmitSidesForDevice: (device: Device) => {};
33
- export declare const getTransformHandlesFromCoords: ([x1, y1, x2, y2, cx, cy]: [number, number, number, number, number, number], angle: Radians, zoom: Zoom, pointerType: PointerType, omitSides?: {
34
- s?: boolean | undefined;
35
- n?: boolean | undefined;
36
- w?: boolean | undefined;
37
- e?: boolean | undefined;
38
- nw?: boolean | undefined;
39
- ne?: boolean | undefined;
40
- sw?: boolean | undefined;
41
- se?: boolean | undefined;
42
- rotation?: boolean | undefined;
43
- }, margin?: number, spacing?: number) => TransformHandles;
44
- export declare const getTransformHandles: (element: ExcalidrawElement, zoom: Zoom, elementsMap: ElementsMap, pointerType?: PointerType, omitSides?: {
45
- s?: boolean | undefined;
46
- n?: boolean | undefined;
47
- w?: boolean | undefined;
48
- e?: boolean | undefined;
49
- nw?: boolean | undefined;
50
- ne?: boolean | undefined;
51
- sw?: boolean | undefined;
52
- se?: boolean | undefined;
53
- rotation?: boolean | undefined;
54
- }) => TransformHandles;
55
- export declare const shouldShowBoundingBox: (elements: readonly NonDeletedExcalidrawElement[], appState: InteractiveCanvasAppState) => boolean;
32
+ export declare const canResizeFromSides: (editorInterface: EditorInterface) => boolean;
33
+ export declare const getOmitSidesForEditorInterface: (editorInterface: EditorInterface) => {};
34
+ export declare const getTransformHandlesFromCoords: ([x1, y1, x2, y2, cx, cy]: [number, number, number, number, number, number], angle: Radians, zoom: Zoom, pointerType: PointerType, omitSides?: { [T in TransformHandleType]?: boolean; }, margin?: number, spacing?: number) => TransformHandles;
35
+ export declare const getTransformHandles: (element: ExcalidrawElement, zoom: Zoom, elementsMap: ElementsMap, pointerType?: PointerType, omitSides?: { [T in TransformHandleType]?: boolean; }) => TransformHandles;
36
+ export declare const hasBoundingBox: (elements: readonly NonDeletedExcalidrawElement[], appState: InteractiveCanvasAppState, editorInterface: EditorInterface) => boolean;