@excalidraw/common 0.18.0-200a6bd94 → 0.18.0-2a82821

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 (294) hide show
  1. package/dist/dev/index.js +1693 -262
  2. package/dist/dev/index.js.map +4 -4
  3. package/dist/prod/index.js +3 -3
  4. package/dist/types/common/debug.d.ts +21 -0
  5. package/dist/types/common/src/appEventBus.d.ts +27 -0
  6. package/dist/types/common/src/bounds.d.ts +10 -0
  7. package/dist/types/common/src/colors.d.ts +59 -39
  8. package/dist/types/common/src/constants.d.ts +47 -34
  9. package/dist/types/common/src/editorInterface.d.ts +34 -0
  10. package/dist/types/common/src/font-metadata.d.ts +1 -3
  11. package/dist/types/common/src/index.d.ts +5 -0
  12. package/dist/types/common/src/keys.d.ts +1 -1
  13. package/dist/types/common/src/utility-types.d.ts +0 -1
  14. package/dist/types/common/src/utils.d.ts +54 -42
  15. package/dist/types/common/src/versionedSnapshotStore.d.ts +17 -0
  16. package/dist/types/element/src/Scene.d.ts +17 -9
  17. package/dist/types/element/src/arrowheads.d.ts +3 -0
  18. package/dist/types/element/src/arrows/focus.d.ts +27 -0
  19. package/dist/types/element/src/arrows/helpers.d.ts +5 -0
  20. package/dist/types/element/src/binding.d.ts +67 -48
  21. package/dist/types/element/src/bounds.d.ts +25 -14
  22. package/dist/types/element/src/collision.d.ts +7 -2
  23. package/dist/types/element/src/comparisons.d.ts +8 -7
  24. package/dist/types/element/src/delta.d.ts +6 -4
  25. package/dist/types/element/src/distribute.d.ts +2 -1
  26. package/dist/types/element/src/dragElements.d.ts +3 -3
  27. package/dist/types/element/src/duplicate.d.ts +4 -3
  28. package/dist/types/element/src/elbowArrow.d.ts +2 -0
  29. package/dist/types/element/src/fractionalIndex.d.ts +2 -2
  30. package/dist/types/element/src/frame.d.ts +14 -9
  31. package/dist/types/element/src/heading.d.ts +2 -1
  32. package/dist/types/element/src/image.d.ts +1 -11
  33. package/dist/types/element/src/index.d.ts +5 -3
  34. package/dist/types/element/src/linearElementEditor.d.ts +23 -22
  35. package/dist/types/element/src/mutateElement.d.ts +5 -1
  36. package/dist/types/element/src/newElement.d.ts +7 -6
  37. package/dist/types/element/src/positionElementsOnGrid.d.ts +2 -0
  38. package/dist/types/element/src/renderElement.d.ts +4 -7
  39. package/dist/types/element/src/resizeElements.d.ts +10 -10
  40. package/dist/types/element/src/resizeTest.d.ts +6 -5
  41. package/dist/types/element/src/selection.d.ts +10 -10
  42. package/dist/types/element/src/shape.d.ts +9 -8
  43. package/dist/types/element/src/store.d.ts +6 -1
  44. package/dist/types/element/src/textElement.d.ts +2 -2
  45. package/dist/types/element/src/textMeasurements.d.ts +1 -3
  46. package/dist/types/element/src/textWrapping.d.ts +26 -0
  47. package/dist/types/{excalidraw/data → element/src}/transform.d.ts +3 -3
  48. package/dist/types/element/src/transformHandles.d.ts +8 -27
  49. package/dist/types/element/src/typeChecks.d.ts +5 -7
  50. package/dist/types/element/src/types.d.ts +18 -13
  51. package/dist/types/element/src/utils.d.ts +9 -4
  52. package/dist/types/element/src/zindex.d.ts +7 -1
  53. package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +173 -210
  54. package/dist/types/excalidraw/actions/actionAlign.d.ts +6 -7
  55. package/dist/types/excalidraw/actions/actionBoundText.d.ts +98 -123
  56. package/dist/types/excalidraw/actions/actionCanvas.d.ts +615 -947
  57. package/dist/types/excalidraw/actions/actionClipboard.d.ts +127 -893
  58. package/dist/types/excalidraw/actions/actionCropEditor.d.ts +47 -60
  59. package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +157 -198
  60. package/dist/types/excalidraw/actions/actionDeselect.d.ts +160 -0
  61. package/dist/types/excalidraw/actions/actionDistribute.d.ts +2 -3
  62. package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +3 -4
  63. package/dist/types/excalidraw/actions/actionElementLink.d.ts +55 -74
  64. package/dist/types/excalidraw/actions/actionElementLock.d.ts +96 -121
  65. package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +61 -74
  66. package/dist/types/excalidraw/actions/actionExport.d.ts +178 -1408
  67. package/dist/types/excalidraw/actions/actionFinalize.d.ts +10 -394
  68. package/dist/types/excalidraw/actions/actionFlip.d.ts +2 -3
  69. package/dist/types/excalidraw/actions/actionFrame.d.ts +313 -399
  70. package/dist/types/excalidraw/actions/actionGroup.d.ts +101 -134
  71. package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +183 -233
  72. package/dist/types/excalidraw/actions/actionLink.d.ts +61 -74
  73. package/dist/types/excalidraw/actions/actionMenu.d.ts +50 -435
  74. package/dist/types/excalidraw/actions/actionNavigate.d.ts +18 -359
  75. package/dist/types/excalidraw/actions/actionProperties.d.ts +164 -2510
  76. package/dist/types/excalidraw/actions/actionSelectAll.d.ts +50 -67
  77. package/dist/types/excalidraw/actions/actionStyles.d.ts +47 -59
  78. package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +4 -4
  79. package/dist/types/excalidraw/actions/actionToggleArrowBinding.d.ts +173 -0
  80. package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +61 -74
  81. package/dist/types/excalidraw/actions/actionToggleMidpointSnapping.d.ts +173 -0
  82. package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +61 -74
  83. package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +49 -68
  84. package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +1 -1
  85. package/dist/types/excalidraw/actions/actionToggleStats.d.ts +60 -73
  86. package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +61 -74
  87. package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +61 -74
  88. package/dist/types/excalidraw/actions/actionZindex.d.ts +8 -9
  89. package/dist/types/excalidraw/actions/index.d.ts +5 -2
  90. package/dist/types/excalidraw/actions/register.d.ts +2 -2
  91. package/dist/types/excalidraw/actions/shortcuts.d.ts +1 -1
  92. package/dist/types/excalidraw/actions/types.d.ts +4 -4
  93. package/dist/types/excalidraw/{animated-trail.d.ts → animatedTrail.d.ts} +4 -3
  94. package/dist/types/excalidraw/appState.d.ts +45 -36
  95. package/dist/types/excalidraw/charts/charts.bar.d.ts +2 -0
  96. package/dist/types/excalidraw/charts/charts.constants.d.ts +48 -0
  97. package/dist/types/excalidraw/charts/charts.helpers.d.ts +32 -0
  98. package/dist/types/excalidraw/charts/charts.line.d.ts +2 -0
  99. package/dist/types/excalidraw/charts/charts.parse.d.ts +10 -0
  100. package/dist/types/excalidraw/charts/charts.radar.d.ts +2 -0
  101. package/dist/types/excalidraw/charts/charts.types.d.ts +18 -0
  102. package/dist/types/excalidraw/charts/index.d.ts +7 -0
  103. package/dist/types/excalidraw/clipboard.d.ts +59 -21
  104. package/dist/types/excalidraw/components/Actions.d.ts +22 -5
  105. package/dist/types/excalidraw/components/ActiveConfirmDialog.d.ts +1 -1
  106. package/dist/types/excalidraw/components/App.d.ts +129 -79
  107. package/dist/types/excalidraw/components/AppStateObserver.d.ts +37 -0
  108. package/dist/types/excalidraw/components/Card.d.ts +1 -3
  109. package/dist/types/excalidraw/components/ColorPicker/ColorInput.d.ts +2 -4
  110. package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +0 -1
  111. package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +2 -0
  112. package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +2 -1
  113. package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +2 -1
  114. package/dist/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +1 -2
  115. package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +0 -1
  116. package/dist/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +1 -0
  117. package/dist/types/excalidraw/components/CommandPalette/defaultCommandPaletteItems.d.ts +1 -2
  118. package/dist/types/excalidraw/components/CommandPalette/types.d.ts +2 -4
  119. package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +3 -3
  120. package/dist/types/excalidraw/components/DarkModeToggle.d.ts +1 -1
  121. package/dist/types/excalidraw/components/DefaultSidebar.d.ts +9 -13
  122. package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +1 -1
  123. package/dist/types/excalidraw/components/Ellipsify.d.ts +1 -2
  124. package/dist/types/excalidraw/components/ErrorDialog.d.ts +1 -1
  125. package/dist/types/excalidraw/components/EyeDropper.d.ts +1 -2
  126. package/dist/types/excalidraw/components/FilledButton.d.ts +2 -1
  127. package/dist/types/excalidraw/components/FontPicker/FontPicker.d.ts +2 -1
  128. package/dist/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +3 -1
  129. package/dist/types/excalidraw/components/FontPicker/keyboardNavHandlers.d.ts +0 -1
  130. package/dist/types/excalidraw/components/HelpDialog.d.ts +1 -1
  131. package/dist/types/excalidraw/components/HintViewer.d.ts +4 -3
  132. package/dist/types/excalidraw/components/IconPicker.d.ts +14 -9
  133. package/dist/types/excalidraw/components/InlineIcon.d.ts +3 -1
  134. package/dist/types/excalidraw/components/LayerUI.d.ts +2 -1
  135. package/dist/types/excalidraw/components/LibraryMenu.d.ts +1 -1
  136. package/dist/types/excalidraw/components/LibraryMenuControlButtons.d.ts +1 -1
  137. package/dist/types/excalidraw/components/LibraryMenuHeaderContent.d.ts +1 -2
  138. package/dist/types/excalidraw/components/LibraryMenuSection.d.ts +1 -1
  139. package/dist/types/excalidraw/components/LibraryUnit.d.ts +2 -3
  140. package/dist/types/excalidraw/components/LoadingMessage.d.ts +0 -1
  141. package/dist/types/excalidraw/components/MobileMenu.d.ts +3 -5
  142. package/dist/types/excalidraw/components/MobileToolBar.d.ts +10 -0
  143. package/dist/types/excalidraw/components/Modal.d.ts +0 -1
  144. package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirm.d.ts +1 -1
  145. package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirmState.d.ts +1 -1
  146. package/dist/types/excalidraw/components/PasteChartDialog.d.ts +4 -5
  147. package/dist/types/excalidraw/components/Popover.d.ts +2 -1
  148. package/dist/types/excalidraw/components/PropertiesPopover.d.ts +2 -1
  149. package/dist/types/excalidraw/components/RadioGroup.d.ts +0 -1
  150. package/dist/types/excalidraw/components/RadioSelection.d.ts +4 -4
  151. package/dist/types/excalidraw/components/Range.d.ts +10 -4
  152. package/dist/types/excalidraw/components/SVGLayer.d.ts +1 -1
  153. package/dist/types/excalidraw/components/ScrollableList.d.ts +0 -1
  154. package/dist/types/excalidraw/components/SearchMenu.d.ts +1 -1
  155. package/dist/types/excalidraw/components/Sidebar/Sidebar.d.ts +16 -22
  156. package/dist/types/excalidraw/components/Sidebar/SidebarHeader.d.ts +1 -1
  157. package/dist/types/excalidraw/components/Sidebar/SidebarTab.d.ts +1 -2
  158. package/dist/types/excalidraw/components/Sidebar/SidebarTabTrigger.d.ts +1 -2
  159. package/dist/types/excalidraw/components/Sidebar/SidebarTabTriggers.d.ts +1 -2
  160. package/dist/types/excalidraw/components/Sidebar/SidebarTabs.d.ts +1 -2
  161. package/dist/types/excalidraw/components/Spinner.d.ts +4 -4
  162. package/dist/types/excalidraw/components/Stats/CanvasGrid.d.ts +0 -1
  163. package/dist/types/excalidraw/components/Stats/Collapsible.d.ts +0 -1
  164. package/dist/types/excalidraw/components/Stats/DragInput.d.ts +0 -1
  165. package/dist/types/excalidraw/components/Stats/index.d.ts +7 -8
  166. package/dist/types/excalidraw/components/Stats/utils.d.ts +1 -1
  167. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatHistoryMenu.d.ts +15 -0
  168. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatInterface.d.ts +23 -0
  169. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatMessage.d.ts +14 -0
  170. package/dist/types/excalidraw/components/TTDDialog/Chat/TTDChatPanel.d.ts +27 -0
  171. package/dist/types/excalidraw/components/TTDDialog/Chat/index.d.ts +3 -0
  172. package/dist/types/excalidraw/components/TTDDialog/Chat/useChatAgent.d.ts +8 -0
  173. package/dist/types/excalidraw/components/TTDDialog/CodeMirrorEditor.d.ts +11 -0
  174. package/dist/types/excalidraw/components/TTDDialog/MermaidToExcalidraw.d.ts +3 -2
  175. package/dist/types/excalidraw/components/TTDDialog/TTDContext.d.ts +13 -0
  176. package/dist/types/excalidraw/components/TTDDialog/TTDDialog.d.ts +12 -29
  177. package/dist/types/excalidraw/components/TTDDialog/TTDDialogInput.d.ts +3 -3
  178. package/dist/types/excalidraw/components/TTDDialog/TTDDialogOutput.d.ts +5 -2
  179. package/dist/types/excalidraw/components/TTDDialog/TTDDialogPanel.d.ts +13 -9
  180. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTab.d.ts +1 -2
  181. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTrigger.d.ts +1 -2
  182. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTriggers.d.ts +1 -2
  183. package/dist/types/excalidraw/components/TTDDialog/TTDPreviewPanel.d.ts +9 -0
  184. package/dist/types/excalidraw/components/TTDDialog/TTDWelcomeMessage.d.ts +1 -0
  185. package/dist/types/excalidraw/components/TTDDialog/TextToDiagram.d.ts +9 -0
  186. package/dist/types/excalidraw/components/TTDDialog/common.d.ts +16 -16
  187. package/dist/types/excalidraw/components/TTDDialog/hooks/useChatManagement.d.ts +13 -0
  188. package/dist/types/excalidraw/components/TTDDialog/hooks/useMermaidRenderer.d.ts +14 -0
  189. package/dist/types/excalidraw/components/TTDDialog/hooks/useTextGeneration.d.ts +7 -0
  190. package/dist/types/excalidraw/components/TTDDialog/mermaid-lang-lite.d.ts +2 -0
  191. package/dist/types/excalidraw/components/TTDDialog/types.d.ts +95 -0
  192. package/dist/types/excalidraw/components/TTDDialog/useTTDChatStorage.d.ts +22 -0
  193. package/dist/types/excalidraw/components/TTDDialog/utils/chat.d.ts +10 -0
  194. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidAutoFix.d.ts +1 -0
  195. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidError.d.ts +10 -0
  196. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidValidation.d.ts +1 -0
  197. package/dist/types/excalidraw/components/TextField.d.ts +1 -0
  198. package/dist/types/excalidraw/components/Toast.d.ts +11 -7
  199. package/dist/types/excalidraw/components/ToolPopover.d.ts +25 -0
  200. package/dist/types/excalidraw/components/Trans.d.ts +2 -2
  201. package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +8 -4
  202. package/dist/types/excalidraw/components/canvases/NewElementCanvas.d.ts +1 -0
  203. package/dist/types/excalidraw/components/canvases/StaticCanvas.d.ts +1 -1
  204. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +47 -35
  205. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +7 -5
  206. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +3 -3
  207. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +13 -22
  208. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCheckbox.d.ts +5 -0
  209. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +5 -4
  210. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +2 -2
  211. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.d.ts +2 -2
  212. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemLink.d.ts +6 -6
  213. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSub.d.ts +23 -0
  214. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubContent.d.ts +8 -0
  215. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubTrigger.d.ts +12 -0
  216. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuTrigger.d.ts +3 -4
  217. package/dist/types/excalidraw/components/dropdownMenu/common.d.ts +2 -2
  218. package/dist/types/excalidraw/components/dropdownMenu/dropdownMenuUtils.d.ts +2 -0
  219. package/dist/types/excalidraw/components/hoc/withInternalFallback.d.ts +1 -1
  220. package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +1 -1
  221. package/dist/types/excalidraw/components/icons.d.ts +51 -21
  222. package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +24 -3
  223. package/dist/types/excalidraw/components/main-menu/MainMenu.d.ts +39 -35
  224. package/dist/types/excalidraw/components/shapes.d.ts +209 -1
  225. package/dist/types/excalidraw/data/blob.d.ts +329 -12
  226. package/dist/types/excalidraw/data/encode.d.ts +4 -4
  227. package/dist/types/excalidraw/data/encryption.d.ts +5 -5
  228. package/dist/types/excalidraw/data/filesystem.d.ts +5 -7
  229. package/dist/types/excalidraw/data/index.d.ts +4 -5
  230. package/dist/types/excalidraw/data/json.d.ts +171 -4
  231. package/dist/types/excalidraw/data/library.d.ts +25 -10
  232. package/dist/types/excalidraw/data/resave.d.ts +7 -2
  233. package/dist/types/excalidraw/data/restore.d.ts +27 -7
  234. package/dist/types/excalidraw/data/types.d.ts +4 -1
  235. package/dist/types/excalidraw/editor-jotai.d.ts +11 -11
  236. package/dist/types/excalidraw/eraser/index.d.ts +2 -3
  237. package/dist/types/excalidraw/errors.d.ts +14 -0
  238. package/dist/types/excalidraw/hooks/useLibraryItemSvg.d.ts +2 -2
  239. package/dist/types/excalidraw/hooks/useOutsideClick.d.ts +4 -3
  240. package/dist/types/excalidraw/hooks/useScrollPosition.d.ts +1 -2
  241. package/dist/types/excalidraw/hooks/useTextEditorFocus.d.ts +14 -0
  242. package/dist/types/excalidraw/i18n.d.ts +2 -2
  243. package/dist/types/excalidraw/{laser-trails.d.ts → laserTrails.d.ts} +5 -7
  244. package/dist/types/excalidraw/lasso/index.d.ts +2 -3
  245. package/dist/types/excalidraw/renderer/animation.d.ts +15 -0
  246. package/dist/types/excalidraw/renderer/helpers.d.ts +6 -8
  247. package/dist/types/excalidraw/renderer/interactiveScene.d.ts +8 -14
  248. package/dist/types/excalidraw/scene/Renderer.d.ts +428 -18
  249. package/dist/types/excalidraw/scene/export.d.ts +2 -2
  250. package/dist/types/excalidraw/scene/index.d.ts +1 -1
  251. package/dist/types/excalidraw/scene/scroll.d.ts +1 -6
  252. package/dist/types/excalidraw/scene/types.d.ts +22 -5
  253. package/dist/types/excalidraw/shortcut.d.ts +1 -0
  254. package/dist/types/excalidraw/snapping.d.ts +5 -5
  255. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-bindings.d.ts +1 -1
  256. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-loader.d.ts +1 -1
  257. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-wasm.d.ts +1 -1
  258. package/dist/types/excalidraw/subset/woff2/woff2-loader.d.ts +2 -2
  259. package/dist/types/excalidraw/subset/woff2/woff2-wasm.d.ts +1 -1
  260. package/dist/types/excalidraw/textAutoResizeHandle.d.ts +15 -0
  261. package/dist/types/excalidraw/types.d.ts +149 -38
  262. package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +7 -3
  263. package/dist/types/fractional-indexing/src/index.d.ts +29 -0
  264. package/dist/types/laser-pointer/src/index.d.ts +2 -0
  265. package/dist/types/laser-pointer/src/math.d.ts +16 -0
  266. package/dist/types/laser-pointer/src/simplify.d.ts +2 -0
  267. package/dist/types/laser-pointer/src/state.d.ts +35 -0
  268. package/dist/types/math/src/constants.d.ts +0 -1
  269. package/dist/types/math/src/curve.d.ts +4 -1
  270. package/dist/types/math/src/point.d.ts +8 -2
  271. package/dist/types/math/src/polygon.d.ts +2 -2
  272. package/dist/types/math/src/range.d.ts +1 -3
  273. package/dist/types/math/src/segment.d.ts +4 -3
  274. package/dist/types/math/src/types.d.ts +25 -1
  275. package/dist/types/utils/src/export.d.ts +5 -5
  276. package/dist/types/utils/src/index.d.ts +1 -2
  277. package/dist/types/utils/src/shape.d.ts +6 -6
  278. package/package.json +7 -1
  279. package/dist/types/excalidraw/animation-frame-handler.d.ts +0 -16
  280. package/dist/types/excalidraw/charts.d.ts +0 -27
  281. package/dist/types/excalidraw/components/DiagramToCodePlugin/DiagramToCodePlugin.d.ts +0 -4
  282. package/dist/types/excalidraw/components/ExcalidrawLogo.d.ts +0 -16
  283. package/dist/types/excalidraw/components/InitializeApp.d.ts +0 -10
  284. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +0 -9
  285. package/dist/types/excalidraw/components/footer/FooterCenter.d.ts +0 -8
  286. package/dist/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +0 -10
  287. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Center.d.ts +0 -58
  288. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Hints.d.ts +0 -19
  289. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.d.ts +0 -85
  290. package/dist/types/excalidraw/data/reconcile.d.ts +0 -7
  291. package/dist/types/excalidraw/index.d.ts +0 -47
  292. package/dist/types/excalidraw/polyfill.d.ts +0 -2
  293. package/dist/types/utils/src/bbox.d.ts +0 -9
  294. package/dist/types/utils/src/withinBounds.d.ts +0 -19
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { ExcalidrawElement } from "@excalidraw/element/types";
3
2
  import type { AppClassProperties, AppState } from "../types";
4
3
  export declare const actionSelectAllElementsInFrame: {
@@ -7,7 +6,7 @@ export declare const actionSelectAllElementsInFrame: {
7
6
  trackEvent: {
8
7
  category: "canvas";
9
8
  };
10
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: AppClassProperties) => {
9
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
11
10
  elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[];
12
11
  appState: {
13
12
  selectedElementIds: Record<string, true>;
@@ -18,18 +17,23 @@ export declare const actionSelectAllElementsInFrame: {
18
17
  } | null;
19
18
  showWelcomeScreen: boolean;
20
19
  isLoading: boolean;
21
- errorMessage: import("react").ReactNode;
20
+ errorMessage: React.ReactNode;
22
21
  activeEmbeddable: {
23
22
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
24
- state: "active" | "hover";
23
+ state: "hover" | "active";
25
24
  } | null;
26
25
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
27
26
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
28
27
  multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
29
28
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
30
29
  isBindingEnabled: boolean;
31
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
32
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
30
+ boxSelectionMode: import("../types").BoxSelectionMode;
31
+ bindingPreference: "enabled" | "disabled";
32
+ isMidpointSnappingEnabled: boolean;
33
+ suggestedBinding: {
34
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
35
+ midPoint?: import("@excalidraw/math").GlobalPoint;
36
+ } | null;
33
37
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
34
38
  frameRendering: {
35
39
  enabled: boolean;
@@ -39,12 +43,16 @@ export declare const actionSelectAllElementsInFrame: {
39
43
  };
40
44
  editingFrame: string | null;
41
45
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
42
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
46
+ editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
43
47
  activeTool: {
44
48
  lastActiveTool: import("../types").ActiveTool | null;
45
49
  locked: boolean;
46
50
  fromSelection: boolean;
47
51
  } & import("../types").ActiveTool;
52
+ preferredSelectionTool: {
53
+ type: "selection" | "lasso";
54
+ initialized: boolean;
55
+ };
48
56
  penMode: boolean;
49
57
  penDetected: boolean;
50
58
  exportBackground: boolean;
@@ -53,19 +61,20 @@ export declare const actionSelectAllElementsInFrame: {
53
61
  exportScale: number;
54
62
  currentItemStrokeColor: string;
55
63
  currentItemBackgroundColor: string;
56
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
57
- currentItemStrokeWidth: number;
58
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
64
+ currentItemFillStyle: ExcalidrawElement["fillStyle"];
65
+ currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
66
+ currentItemStrokeStyle: ExcalidrawElement["strokeStyle"];
59
67
  currentItemRoughness: number;
68
+ currentItemStrokeVariability: import("@excalidraw/element/types").StrokeVariability;
60
69
  currentItemOpacity: number;
61
- currentItemFontFamily: number;
70
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
62
71
  currentItemFontSize: number;
63
- currentItemTextAlign: string;
72
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
64
73
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
65
74
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
66
- currentHoveredFontFamily: number | null;
75
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
67
76
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
68
- currentItemArrowType: "round" | "sharp" | "elbow";
77
+ currentItemArrowType: "sharp" | "round" | "elbow";
69
78
  viewBackgroundColor: string;
70
79
  scrollX: number;
71
80
  scrollY: number;
@@ -74,26 +83,30 @@ export declare const actionSelectAllElementsInFrame: {
74
83
  name: string | null;
75
84
  isResizing: boolean;
76
85
  isRotating: boolean;
77
- zoom: Readonly<{
78
- value: import("../types").NormalizedZoomValue;
79
- }>;
80
- openMenu: "canvas" | "shape" | null;
81
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
86
+ zoom: import("../types").Zoom;
87
+ openMenu: "canvas" | null;
88
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
82
89
  openSidebar: {
83
- name: string;
84
- tab?: string | undefined;
90
+ name: import("../types").SidebarName;
91
+ tab?: import("../types").SidebarTabName;
85
92
  } | null;
86
- openDialog: {
93
+ openDialog: null | {
87
94
  name: "imageExport" | "help" | "jsonExport";
88
95
  } | {
89
96
  name: "ttd";
90
- tab: "mermaid" | "text-to-diagram";
97
+ tab: "text-to-diagram" | "mermaid";
91
98
  } | {
92
99
  name: "commandPalette";
100
+ } | {
101
+ name: "settings";
93
102
  } | {
94
103
  name: "elementLinkSelector";
95
- sourceElementId: string;
96
- } | null;
104
+ sourceElementId: ExcalidrawElement["id"];
105
+ } | {
106
+ name: "charts";
107
+ data: import("../charts").Spreadsheet;
108
+ rawText: string;
109
+ };
97
110
  defaultSidebarDockedPreference: boolean;
98
111
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
99
112
  hoveredElementIds: Readonly<{
@@ -105,9 +118,9 @@ export declare const actionSelectAllElementsInFrame: {
105
118
  selectedElementsAreBeingDragged: boolean;
106
119
  shouldCacheIgnoreZoom: boolean;
107
120
  toast: {
108
- message: string;
109
- closable?: boolean | undefined;
110
- duration?: number | undefined;
121
+ message: React.ReactNode;
122
+ closable?: boolean;
123
+ duration?: number;
111
124
  } | null;
112
125
  zenModeEnabled: boolean;
113
126
  theme: import("@excalidraw/element/types").Theme;
@@ -118,45 +131,18 @@ export declare const actionSelectAllElementsInFrame: {
118
131
  selectedGroupIds: {
119
132
  [groupId: string]: boolean;
120
133
  };
121
- editingGroupId: string | null;
134
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
122
135
  width: number;
123
136
  height: number;
124
137
  offsetTop: number;
125
138
  offsetLeft: number;
126
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
127
- collaborators: Map<import("../types").SocketId, Readonly<{
128
- pointer?: import("../types").CollaboratorPointer | undefined;
129
- button?: "up" | "down" | undefined;
130
- selectedElementIds?: Readonly<{
131
- [id: string]: true;
132
- }> | undefined;
133
- username?: string | null | undefined;
134
- userState?: import("@excalidraw/common").UserIdleState | undefined;
135
- color?: {
136
- background: string;
137
- stroke: string;
138
- } | undefined;
139
- avatarUrl?: string | undefined;
140
- id?: string | undefined;
141
- socketId?: import("../types").SocketId | undefined;
142
- isCurrentUser?: boolean | undefined;
143
- isInCall?: boolean | undefined;
144
- isSpeaking?: boolean | undefined;
145
- isMuted?: boolean | undefined;
146
- }>>;
139
+ fileHandle: FileSystemFileHandle | null;
140
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
147
141
  stats: {
148
142
  open: boolean;
149
143
  panels: number;
150
144
  };
151
- currentChartType: import("@excalidraw/element/types").ChartType;
152
- pasteDialog: {
153
- shown: false;
154
- data: null;
155
- } | {
156
- shown: true;
157
- data: import("../charts").Spreadsheet;
158
- };
159
- showHyperlinkPopup: false | "editor" | "info";
145
+ showHyperlinkPopup: false | "info" | "editor";
160
146
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
161
147
  snapLines: readonly import("../snapping").SnapLine[];
162
148
  originSnapOffset: {
@@ -167,15 +153,16 @@ export declare const actionSelectAllElementsInFrame: {
167
153
  userToFollow: import("../types").UserToFollow | null;
168
154
  followedBy: Set<import("../types").SocketId>;
169
155
  isCropping: boolean;
170
- croppingElementId: string | null;
156
+ croppingElementId: ExcalidrawElement["id"] | null;
171
157
  searchMatches: Readonly<{
172
- focusedId: string | null;
158
+ focusedId: ExcalidrawElement["id"] | null;
173
159
  matches: readonly import("../types").SearchMatch[];
174
160
  }> | null;
175
161
  activeLockedId: string | null;
176
162
  lockedMultiSelections: {
177
163
  [groupId: string]: true;
178
164
  };
165
+ bindMode: import("@excalidraw/element/types").BindMode;
179
166
  };
180
167
  captureUpdate: "IMMEDIATELY";
181
168
  } | {
@@ -193,7 +180,7 @@ export declare const actionRemoveAllElementsFromFrame: {
193
180
  trackEvent: {
194
181
  category: "history";
195
182
  };
196
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: AppClassProperties) => {
183
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
197
184
  elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[];
198
185
  appState: {
199
186
  selectedElementIds: {
@@ -206,18 +193,23 @@ export declare const actionRemoveAllElementsFromFrame: {
206
193
  } | null;
207
194
  showWelcomeScreen: boolean;
208
195
  isLoading: boolean;
209
- errorMessage: import("react").ReactNode;
196
+ errorMessage: React.ReactNode;
210
197
  activeEmbeddable: {
211
198
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
212
- state: "active" | "hover";
199
+ state: "hover" | "active";
213
200
  } | null;
214
201
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
215
202
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
216
203
  multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
217
204
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
218
205
  isBindingEnabled: boolean;
219
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
220
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
206
+ boxSelectionMode: import("../types").BoxSelectionMode;
207
+ bindingPreference: "enabled" | "disabled";
208
+ isMidpointSnappingEnabled: boolean;
209
+ suggestedBinding: {
210
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
211
+ midPoint?: import("@excalidraw/math").GlobalPoint;
212
+ } | null;
221
213
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
222
214
  frameRendering: {
223
215
  enabled: boolean;
@@ -227,12 +219,16 @@ export declare const actionRemoveAllElementsFromFrame: {
227
219
  };
228
220
  editingFrame: string | null;
229
221
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
230
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
222
+ editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
231
223
  activeTool: {
232
224
  lastActiveTool: import("../types").ActiveTool | null;
233
225
  locked: boolean;
234
226
  fromSelection: boolean;
235
227
  } & import("../types").ActiveTool;
228
+ preferredSelectionTool: {
229
+ type: "selection" | "lasso";
230
+ initialized: boolean;
231
+ };
236
232
  penMode: boolean;
237
233
  penDetected: boolean;
238
234
  exportBackground: boolean;
@@ -241,19 +237,20 @@ export declare const actionRemoveAllElementsFromFrame: {
241
237
  exportScale: number;
242
238
  currentItemStrokeColor: string;
243
239
  currentItemBackgroundColor: string;
244
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
245
- currentItemStrokeWidth: number;
246
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
240
+ currentItemFillStyle: ExcalidrawElement["fillStyle"];
241
+ currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
242
+ currentItemStrokeStyle: ExcalidrawElement["strokeStyle"];
247
243
  currentItemRoughness: number;
244
+ currentItemStrokeVariability: import("@excalidraw/element/types").StrokeVariability;
248
245
  currentItemOpacity: number;
249
- currentItemFontFamily: number;
246
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
250
247
  currentItemFontSize: number;
251
- currentItemTextAlign: string;
248
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
252
249
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
253
250
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
254
- currentHoveredFontFamily: number | null;
251
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
255
252
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
256
- currentItemArrowType: "round" | "sharp" | "elbow";
253
+ currentItemArrowType: "sharp" | "round" | "elbow";
257
254
  viewBackgroundColor: string;
258
255
  scrollX: number;
259
256
  scrollY: number;
@@ -262,26 +259,30 @@ export declare const actionRemoveAllElementsFromFrame: {
262
259
  name: string | null;
263
260
  isResizing: boolean;
264
261
  isRotating: boolean;
265
- zoom: Readonly<{
266
- value: import("../types").NormalizedZoomValue;
267
- }>;
268
- openMenu: "canvas" | "shape" | null;
269
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
262
+ zoom: import("../types").Zoom;
263
+ openMenu: "canvas" | null;
264
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
270
265
  openSidebar: {
271
- name: string;
272
- tab?: string | undefined;
266
+ name: import("../types").SidebarName;
267
+ tab?: import("../types").SidebarTabName;
273
268
  } | null;
274
- openDialog: {
269
+ openDialog: null | {
275
270
  name: "imageExport" | "help" | "jsonExport";
276
271
  } | {
277
272
  name: "ttd";
278
- tab: "mermaid" | "text-to-diagram";
273
+ tab: "text-to-diagram" | "mermaid";
279
274
  } | {
280
275
  name: "commandPalette";
276
+ } | {
277
+ name: "settings";
281
278
  } | {
282
279
  name: "elementLinkSelector";
283
- sourceElementId: string;
284
- } | null;
280
+ sourceElementId: ExcalidrawElement["id"];
281
+ } | {
282
+ name: "charts";
283
+ data: import("../charts").Spreadsheet;
284
+ rawText: string;
285
+ };
285
286
  defaultSidebarDockedPreference: boolean;
286
287
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
287
288
  hoveredElementIds: Readonly<{
@@ -293,9 +294,9 @@ export declare const actionRemoveAllElementsFromFrame: {
293
294
  selectedElementsAreBeingDragged: boolean;
294
295
  shouldCacheIgnoreZoom: boolean;
295
296
  toast: {
296
- message: string;
297
- closable?: boolean | undefined;
298
- duration?: number | undefined;
297
+ message: React.ReactNode;
298
+ closable?: boolean;
299
+ duration?: number;
299
300
  } | null;
300
301
  zenModeEnabled: boolean;
301
302
  theme: import("@excalidraw/element/types").Theme;
@@ -306,45 +307,18 @@ export declare const actionRemoveAllElementsFromFrame: {
306
307
  selectedGroupIds: {
307
308
  [groupId: string]: boolean;
308
309
  };
309
- editingGroupId: string | null;
310
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
310
311
  width: number;
311
312
  height: number;
312
313
  offsetTop: number;
313
314
  offsetLeft: number;
314
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
315
- collaborators: Map<import("../types").SocketId, Readonly<{
316
- pointer?: import("../types").CollaboratorPointer | undefined;
317
- button?: "up" | "down" | undefined;
318
- selectedElementIds?: Readonly<{
319
- [id: string]: true;
320
- }> | undefined;
321
- username?: string | null | undefined;
322
- userState?: import("@excalidraw/common").UserIdleState | undefined;
323
- color?: {
324
- background: string;
325
- stroke: string;
326
- } | undefined;
327
- avatarUrl?: string | undefined;
328
- id?: string | undefined;
329
- socketId?: import("../types").SocketId | undefined;
330
- isCurrentUser?: boolean | undefined;
331
- isInCall?: boolean | undefined;
332
- isSpeaking?: boolean | undefined;
333
- isMuted?: boolean | undefined;
334
- }>>;
315
+ fileHandle: FileSystemFileHandle | null;
316
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
335
317
  stats: {
336
318
  open: boolean;
337
319
  panels: number;
338
320
  };
339
- currentChartType: import("@excalidraw/element/types").ChartType;
340
- pasteDialog: {
341
- shown: false;
342
- data: null;
343
- } | {
344
- shown: true;
345
- data: import("../charts").Spreadsheet;
346
- };
347
- showHyperlinkPopup: false | "editor" | "info";
321
+ showHyperlinkPopup: false | "info" | "editor";
348
322
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
349
323
  snapLines: readonly import("../snapping").SnapLine[];
350
324
  originSnapOffset: {
@@ -355,15 +329,16 @@ export declare const actionRemoveAllElementsFromFrame: {
355
329
  userToFollow: import("../types").UserToFollow | null;
356
330
  followedBy: Set<import("../types").SocketId>;
357
331
  isCropping: boolean;
358
- croppingElementId: string | null;
332
+ croppingElementId: ExcalidrawElement["id"] | null;
359
333
  searchMatches: Readonly<{
360
- focusedId: string | null;
334
+ focusedId: ExcalidrawElement["id"] | null;
361
335
  matches: readonly import("../types").SearchMatch[];
362
336
  }> | null;
363
337
  activeLockedId: string | null;
364
338
  lockedMultiSelections: {
365
339
  [groupId: string]: true;
366
340
  };
341
+ bindMode: import("@excalidraw/element/types").BindMode;
367
342
  };
368
343
  captureUpdate: "IMMEDIATELY";
369
344
  } | {
@@ -398,27 +373,36 @@ export declare const actionupdateFrameRendering: {
398
373
  } | null;
399
374
  showWelcomeScreen: boolean;
400
375
  isLoading: boolean;
401
- errorMessage: import("react").ReactNode;
376
+ errorMessage: React.ReactNode;
402
377
  activeEmbeddable: {
403
378
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
404
- state: "active" | "hover";
379
+ state: "hover" | "active";
405
380
  } | null;
406
381
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
407
382
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
408
383
  multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
409
384
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
410
385
  isBindingEnabled: boolean;
411
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
412
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
386
+ boxSelectionMode: import("../types").BoxSelectionMode;
387
+ bindingPreference: "enabled" | "disabled";
388
+ isMidpointSnappingEnabled: boolean;
389
+ suggestedBinding: {
390
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
391
+ midPoint?: import("@excalidraw/math").GlobalPoint;
392
+ } | null;
413
393
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
414
394
  editingFrame: string | null;
415
395
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
416
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
396
+ editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
417
397
  activeTool: {
418
398
  lastActiveTool: import("../types").ActiveTool | null;
419
399
  locked: boolean;
420
400
  fromSelection: boolean;
421
401
  } & import("../types").ActiveTool;
402
+ preferredSelectionTool: {
403
+ type: "selection" | "lasso";
404
+ initialized: boolean;
405
+ };
422
406
  penMode: boolean;
423
407
  penDetected: boolean;
424
408
  exportBackground: boolean;
@@ -427,19 +411,20 @@ export declare const actionupdateFrameRendering: {
427
411
  exportScale: number;
428
412
  currentItemStrokeColor: string;
429
413
  currentItemBackgroundColor: string;
430
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
431
- currentItemStrokeWidth: number;
432
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
414
+ currentItemFillStyle: ExcalidrawElement["fillStyle"];
415
+ currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
416
+ currentItemStrokeStyle: ExcalidrawElement["strokeStyle"];
433
417
  currentItemRoughness: number;
418
+ currentItemStrokeVariability: import("@excalidraw/element/types").StrokeVariability;
434
419
  currentItemOpacity: number;
435
- currentItemFontFamily: number;
420
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
436
421
  currentItemFontSize: number;
437
- currentItemTextAlign: string;
422
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
438
423
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
439
424
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
440
- currentHoveredFontFamily: number | null;
425
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
441
426
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
442
- currentItemArrowType: "round" | "sharp" | "elbow";
427
+ currentItemArrowType: "sharp" | "round" | "elbow";
443
428
  viewBackgroundColor: string;
444
429
  scrollX: number;
445
430
  scrollY: number;
@@ -448,26 +433,30 @@ export declare const actionupdateFrameRendering: {
448
433
  name: string | null;
449
434
  isResizing: boolean;
450
435
  isRotating: boolean;
451
- zoom: Readonly<{
452
- value: import("../types").NormalizedZoomValue;
453
- }>;
454
- openMenu: "canvas" | "shape" | null;
455
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
436
+ zoom: import("../types").Zoom;
437
+ openMenu: "canvas" | null;
438
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
456
439
  openSidebar: {
457
- name: string;
458
- tab?: string | undefined;
440
+ name: import("../types").SidebarName;
441
+ tab?: import("../types").SidebarTabName;
459
442
  } | null;
460
- openDialog: {
443
+ openDialog: null | {
461
444
  name: "imageExport" | "help" | "jsonExport";
462
445
  } | {
463
446
  name: "ttd";
464
- tab: "mermaid" | "text-to-diagram";
447
+ tab: "text-to-diagram" | "mermaid";
465
448
  } | {
466
449
  name: "commandPalette";
450
+ } | {
451
+ name: "settings";
467
452
  } | {
468
453
  name: "elementLinkSelector";
469
- sourceElementId: string;
470
- } | null;
454
+ sourceElementId: ExcalidrawElement["id"];
455
+ } | {
456
+ name: "charts";
457
+ data: import("../charts").Spreadsheet;
458
+ rawText: string;
459
+ };
471
460
  defaultSidebarDockedPreference: boolean;
472
461
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
473
462
  selectedElementIds: Readonly<{
@@ -482,9 +471,9 @@ export declare const actionupdateFrameRendering: {
482
471
  selectedElementsAreBeingDragged: boolean;
483
472
  shouldCacheIgnoreZoom: boolean;
484
473
  toast: {
485
- message: string;
486
- closable?: boolean | undefined;
487
- duration?: number | undefined;
474
+ message: React.ReactNode;
475
+ closable?: boolean;
476
+ duration?: number;
488
477
  } | null;
489
478
  zenModeEnabled: boolean;
490
479
  theme: import("@excalidraw/element/types").Theme;
@@ -495,45 +484,18 @@ export declare const actionupdateFrameRendering: {
495
484
  selectedGroupIds: {
496
485
  [groupId: string]: boolean;
497
486
  };
498
- editingGroupId: string | null;
487
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
499
488
  width: number;
500
489
  height: number;
501
490
  offsetTop: number;
502
491
  offsetLeft: number;
503
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
504
- collaborators: Map<import("../types").SocketId, Readonly<{
505
- pointer?: import("../types").CollaboratorPointer | undefined;
506
- button?: "up" | "down" | undefined;
507
- selectedElementIds?: Readonly<{
508
- [id: string]: true;
509
- }> | undefined;
510
- username?: string | null | undefined;
511
- userState?: import("@excalidraw/common").UserIdleState | undefined;
512
- color?: {
513
- background: string;
514
- stroke: string;
515
- } | undefined;
516
- avatarUrl?: string | undefined;
517
- id?: string | undefined;
518
- socketId?: import("../types").SocketId | undefined;
519
- isCurrentUser?: boolean | undefined;
520
- isInCall?: boolean | undefined;
521
- isSpeaking?: boolean | undefined;
522
- isMuted?: boolean | undefined;
523
- }>>;
492
+ fileHandle: FileSystemFileHandle | null;
493
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
524
494
  stats: {
525
495
  open: boolean;
526
496
  panels: number;
527
497
  };
528
- currentChartType: import("@excalidraw/element/types").ChartType;
529
- pasteDialog: {
530
- shown: false;
531
- data: null;
532
- } | {
533
- shown: true;
534
- data: import("../charts").Spreadsheet;
535
- };
536
- showHyperlinkPopup: false | "editor" | "info";
498
+ showHyperlinkPopup: false | "info" | "editor";
537
499
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
538
500
  snapLines: readonly import("../snapping").SnapLine[];
539
501
  originSnapOffset: {
@@ -544,15 +506,16 @@ export declare const actionupdateFrameRendering: {
544
506
  userToFollow: import("../types").UserToFollow | null;
545
507
  followedBy: Set<import("../types").SocketId>;
546
508
  isCropping: boolean;
547
- croppingElementId: string | null;
509
+ croppingElementId: ExcalidrawElement["id"] | null;
548
510
  searchMatches: Readonly<{
549
- focusedId: string | null;
511
+ focusedId: ExcalidrawElement["id"] | null;
550
512
  matches: readonly import("../types").SearchMatch[];
551
513
  }> | null;
552
514
  activeLockedId: string | null;
553
515
  lockedMultiSelections: {
554
516
  [groupId: string]: true;
555
517
  };
518
+ bindMode: import("@excalidraw/element/types").BindMode;
556
519
  };
557
520
  captureUpdate: "EVENTUALLY";
558
521
  };
@@ -568,7 +531,7 @@ export declare const actionSetFrameAsActiveTool: {
568
531
  };
569
532
  icon: import("react/jsx-runtime").JSX.Element;
570
533
  viewMode: false;
571
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: AppClassProperties) => {
534
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
572
535
  elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[];
573
536
  appState: {
574
537
  activeTool: {
@@ -583,18 +546,23 @@ export declare const actionSetFrameAsActiveTool: {
583
546
  } | null;
584
547
  showWelcomeScreen: boolean;
585
548
  isLoading: boolean;
586
- errorMessage: import("react").ReactNode;
549
+ errorMessage: React.ReactNode;
587
550
  activeEmbeddable: {
588
551
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
589
- state: "active" | "hover";
552
+ state: "hover" | "active";
590
553
  } | null;
591
554
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
592
555
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
593
556
  multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
594
557
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
595
558
  isBindingEnabled: boolean;
596
- startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
597
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
559
+ boxSelectionMode: import("../types").BoxSelectionMode;
560
+ bindingPreference: "enabled" | "disabled";
561
+ isMidpointSnappingEnabled: boolean;
562
+ suggestedBinding: {
563
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
564
+ midPoint?: import("@excalidraw/math").GlobalPoint;
565
+ } | null;
598
566
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
599
567
  frameRendering: {
600
568
  enabled: boolean;
@@ -604,7 +572,11 @@ export declare const actionSetFrameAsActiveTool: {
604
572
  };
605
573
  editingFrame: string | null;
606
574
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
607
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
575
+ editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
576
+ preferredSelectionTool: {
577
+ type: "selection" | "lasso";
578
+ initialized: boolean;
579
+ };
608
580
  penMode: boolean;
609
581
  penDetected: boolean;
610
582
  exportBackground: boolean;
@@ -613,19 +585,20 @@ export declare const actionSetFrameAsActiveTool: {
613
585
  exportScale: number;
614
586
  currentItemStrokeColor: string;
615
587
  currentItemBackgroundColor: string;
616
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
617
- currentItemStrokeWidth: number;
618
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
588
+ currentItemFillStyle: ExcalidrawElement["fillStyle"];
589
+ currentItemStrokeWidthKey: import("@excalidraw/common").StrokeWidthKey;
590
+ currentItemStrokeStyle: ExcalidrawElement["strokeStyle"];
619
591
  currentItemRoughness: number;
592
+ currentItemStrokeVariability: import("@excalidraw/element/types").StrokeVariability;
620
593
  currentItemOpacity: number;
621
- currentItemFontFamily: number;
594
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
622
595
  currentItemFontSize: number;
623
- currentItemTextAlign: string;
596
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
624
597
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
625
598
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
626
- currentHoveredFontFamily: number | null;
599
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
627
600
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
628
- currentItemArrowType: "round" | "sharp" | "elbow";
601
+ currentItemArrowType: "sharp" | "round" | "elbow";
629
602
  viewBackgroundColor: string;
630
603
  scrollX: number;
631
604
  scrollY: number;
@@ -634,26 +607,30 @@ export declare const actionSetFrameAsActiveTool: {
634
607
  name: string | null;
635
608
  isResizing: boolean;
636
609
  isRotating: boolean;
637
- zoom: Readonly<{
638
- value: import("../types").NormalizedZoomValue;
639
- }>;
640
- openMenu: "canvas" | "shape" | null;
641
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
610
+ zoom: import("../types").Zoom;
611
+ openMenu: "canvas" | null;
612
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
642
613
  openSidebar: {
643
- name: string;
644
- tab?: string | undefined;
614
+ name: import("../types").SidebarName;
615
+ tab?: import("../types").SidebarTabName;
645
616
  } | null;
646
- openDialog: {
617
+ openDialog: null | {
647
618
  name: "imageExport" | "help" | "jsonExport";
648
619
  } | {
649
620
  name: "ttd";
650
- tab: "mermaid" | "text-to-diagram";
621
+ tab: "text-to-diagram" | "mermaid";
651
622
  } | {
652
623
  name: "commandPalette";
624
+ } | {
625
+ name: "settings";
653
626
  } | {
654
627
  name: "elementLinkSelector";
655
- sourceElementId: string;
656
- } | null;
628
+ sourceElementId: ExcalidrawElement["id"];
629
+ } | {
630
+ name: "charts";
631
+ data: import("../charts").Spreadsheet;
632
+ rawText: string;
633
+ };
657
634
  defaultSidebarDockedPreference: boolean;
658
635
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
659
636
  selectedElementIds: Readonly<{
@@ -668,9 +645,9 @@ export declare const actionSetFrameAsActiveTool: {
668
645
  selectedElementsAreBeingDragged: boolean;
669
646
  shouldCacheIgnoreZoom: boolean;
670
647
  toast: {
671
- message: string;
672
- closable?: boolean | undefined;
673
- duration?: number | undefined;
648
+ message: React.ReactNode;
649
+ closable?: boolean;
650
+ duration?: number;
674
651
  } | null;
675
652
  zenModeEnabled: boolean;
676
653
  theme: import("@excalidraw/element/types").Theme;
@@ -681,45 +658,18 @@ export declare const actionSetFrameAsActiveTool: {
681
658
  selectedGroupIds: {
682
659
  [groupId: string]: boolean;
683
660
  };
684
- editingGroupId: string | null;
661
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
685
662
  width: number;
686
663
  height: number;
687
664
  offsetTop: number;
688
665
  offsetLeft: number;
689
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
690
- collaborators: Map<import("../types").SocketId, Readonly<{
691
- pointer?: import("../types").CollaboratorPointer | undefined;
692
- button?: "up" | "down" | undefined;
693
- selectedElementIds?: Readonly<{
694
- [id: string]: true;
695
- }> | undefined;
696
- username?: string | null | undefined;
697
- userState?: import("@excalidraw/common").UserIdleState | undefined;
698
- color?: {
699
- background: string;
700
- stroke: string;
701
- } | undefined;
702
- avatarUrl?: string | undefined;
703
- id?: string | undefined;
704
- socketId?: import("../types").SocketId | undefined;
705
- isCurrentUser?: boolean | undefined;
706
- isInCall?: boolean | undefined;
707
- isSpeaking?: boolean | undefined;
708
- isMuted?: boolean | undefined;
709
- }>>;
666
+ fileHandle: FileSystemFileHandle | null;
667
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
710
668
  stats: {
711
669
  open: boolean;
712
670
  panels: number;
713
671
  };
714
- currentChartType: import("@excalidraw/element/types").ChartType;
715
- pasteDialog: {
716
- shown: false;
717
- data: null;
718
- } | {
719
- shown: true;
720
- data: import("../charts").Spreadsheet;
721
- };
722
- showHyperlinkPopup: false | "editor" | "info";
672
+ showHyperlinkPopup: false | "info" | "editor";
723
673
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
724
674
  snapLines: readonly import("../snapping").SnapLine[];
725
675
  originSnapOffset: {
@@ -730,15 +680,16 @@ export declare const actionSetFrameAsActiveTool: {
730
680
  userToFollow: import("../types").UserToFollow | null;
731
681
  followedBy: Set<import("../types").SocketId>;
732
682
  isCropping: boolean;
733
- croppingElementId: string | null;
683
+ croppingElementId: ExcalidrawElement["id"] | null;
734
684
  searchMatches: Readonly<{
735
- focusedId: string | null;
685
+ focusedId: ExcalidrawElement["id"] | null;
736
686
  matches: readonly import("../types").SearchMatch[];
737
687
  }> | null;
738
688
  activeLockedId: string | null;
739
689
  lockedMultiSelections: {
740
690
  [groupId: string]: true;
741
691
  };
692
+ bindMode: import("@excalidraw/element/types").BindMode;
742
693
  };
743
694
  captureUpdate: "EVENTUALLY";
744
695
  };
@@ -753,7 +704,7 @@ export declare const actionWrapSelectionInFrame: {
753
704
  category: "element";
754
705
  };
755
706
  predicate: (elements: readonly ExcalidrawElement[], appState: AppState, _: import("../types").ExcalidrawProps, app: AppClassProperties) => boolean;
756
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: AppClassProperties) => {
707
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
757
708
  elements: ((Readonly<{
758
709
  id: string;
759
710
  x: number;
@@ -763,43 +714,34 @@ export declare const actionWrapSelectionInFrame: {
763
714
  fillStyle: import("@excalidraw/element/types").FillStyle;
764
715
  strokeWidth: number;
765
716
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
766
- roundness: {
717
+ roundness: null | {
767
718
  type: import("@excalidraw/element/types").RoundnessType;
768
- value?: number | undefined;
769
- } | null;
719
+ value?: number;
720
+ };
770
721
  roughness: number;
771
722
  opacity: number;
772
723
  width: number;
773
724
  height: number;
774
- angle: import("../../math/src").Radians;
725
+ angle: import("@excalidraw/math").Radians;
775
726
  seed: number;
776
727
  version: number;
777
728
  versionNonce: number;
778
729
  index: import("@excalidraw/element/types").FractionalIndex | null;
779
730
  isDeleted: boolean;
780
- groupIds: readonly string[];
731
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
781
732
  frameId: string | null;
782
- boundElements: readonly Readonly<{
783
- id: string;
784
- type: "text" | "arrow";
785
- }>[] | null;
733
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
786
734
  updated: number;
787
735
  link: string | null;
788
736
  locked: boolean;
789
- customData?: Record<string, any> | undefined;
737
+ customData?: Record<string, any>;
790
738
  }> & Readonly<{
791
- type: "text";
792
- fontSize: number;
793
- fontFamily: number;
794
- text: string;
795
- textAlign: string;
796
- verticalAlign: string;
797
- containerId: string | null;
798
- originalText: string;
799
- autoResize: boolean;
800
- lineHeight: number & {
801
- _brand: "unitlessLineHeight";
802
- };
739
+ type: "line" | "arrow";
740
+ points: readonly import("@excalidraw/math").LocalPoint[];
741
+ startBinding: import("@excalidraw/element/types").FixedPointBinding | null;
742
+ endBinding: import("@excalidraw/element/types").FixedPointBinding | null;
743
+ startArrowhead: import("@excalidraw/element/types").Arrowhead | null;
744
+ endArrowhead: import("@excalidraw/element/types").Arrowhead | null;
803
745
  }> & {
804
746
  index: import("@excalidraw/element/types").FractionalIndex;
805
747
  }) | (Readonly<{
@@ -811,32 +753,29 @@ export declare const actionWrapSelectionInFrame: {
811
753
  fillStyle: import("@excalidraw/element/types").FillStyle;
812
754
  strokeWidth: number;
813
755
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
814
- roundness: {
756
+ roundness: null | {
815
757
  type: import("@excalidraw/element/types").RoundnessType;
816
- value?: number | undefined;
817
- } | null;
758
+ value?: number;
759
+ };
818
760
  roughness: number;
819
761
  opacity: number;
820
762
  width: number;
821
763
  height: number;
822
- angle: import("../../math/src").Radians;
764
+ angle: import("@excalidraw/math").Radians;
823
765
  seed: number;
824
766
  version: number;
825
767
  versionNonce: number;
826
768
  index: import("@excalidraw/element/types").FractionalIndex | null;
827
769
  isDeleted: boolean;
828
- groupIds: readonly string[];
770
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
829
771
  frameId: string | null;
830
- boundElements: readonly Readonly<{
831
- id: string;
832
- type: "text" | "arrow";
833
- }>[] | null;
772
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
834
773
  updated: number;
835
774
  link: string | null;
836
775
  locked: boolean;
837
- customData?: Record<string, any> | undefined;
776
+ customData?: Record<string, any>;
838
777
  }> & {
839
- type: "rectangle";
778
+ type: "selection";
840
779
  } & {
841
780
  index: import("@excalidraw/element/types").FractionalIndex;
842
781
  }) | (Readonly<{
@@ -848,32 +787,29 @@ export declare const actionWrapSelectionInFrame: {
848
787
  fillStyle: import("@excalidraw/element/types").FillStyle;
849
788
  strokeWidth: number;
850
789
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
851
- roundness: {
790
+ roundness: null | {
852
791
  type: import("@excalidraw/element/types").RoundnessType;
853
- value?: number | undefined;
854
- } | null;
792
+ value?: number;
793
+ };
855
794
  roughness: number;
856
795
  opacity: number;
857
796
  width: number;
858
797
  height: number;
859
- angle: import("../../math/src").Radians;
798
+ angle: import("@excalidraw/math").Radians;
860
799
  seed: number;
861
800
  version: number;
862
801
  versionNonce: number;
863
802
  index: import("@excalidraw/element/types").FractionalIndex | null;
864
803
  isDeleted: boolean;
865
- groupIds: readonly string[];
804
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
866
805
  frameId: string | null;
867
- boundElements: readonly Readonly<{
868
- id: string;
869
- type: "text" | "arrow";
870
- }>[] | null;
806
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
871
807
  updated: number;
872
808
  link: string | null;
873
809
  locked: boolean;
874
- customData?: Record<string, any> | undefined;
810
+ customData?: Record<string, any>;
875
811
  }> & {
876
- type: "diamond";
812
+ type: "rectangle";
877
813
  } & {
878
814
  index: import("@excalidraw/element/types").FractionalIndex;
879
815
  }) | (Readonly<{
@@ -885,33 +821,29 @@ export declare const actionWrapSelectionInFrame: {
885
821
  fillStyle: import("@excalidraw/element/types").FillStyle;
886
822
  strokeWidth: number;
887
823
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
888
- roundness: {
824
+ roundness: null | {
889
825
  type: import("@excalidraw/element/types").RoundnessType;
890
- value?: number | undefined;
891
- } | null;
826
+ value?: number;
827
+ };
892
828
  roughness: number;
893
829
  opacity: number;
894
830
  width: number;
895
831
  height: number;
896
- angle: import("../../math/src").Radians;
832
+ angle: import("@excalidraw/math").Radians;
897
833
  seed: number;
898
834
  version: number;
899
835
  versionNonce: number;
900
836
  index: import("@excalidraw/element/types").FractionalIndex | null;
901
837
  isDeleted: boolean;
902
- groupIds: readonly string[];
838
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
903
839
  frameId: string | null;
904
- boundElements: readonly Readonly<{
905
- id: string;
906
- type: "text" | "arrow";
907
- }>[] | null;
840
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
908
841
  updated: number;
909
842
  link: string | null;
910
843
  locked: boolean;
911
- customData?: Record<string, any> | undefined;
844
+ customData?: Record<string, any>;
912
845
  }> & {
913
- type: "frame";
914
- name: string | null;
846
+ type: "diamond";
915
847
  } & {
916
848
  index: import("@excalidraw/element/types").FractionalIndex;
917
849
  }) | (Readonly<{
@@ -923,33 +855,29 @@ export declare const actionWrapSelectionInFrame: {
923
855
  fillStyle: import("@excalidraw/element/types").FillStyle;
924
856
  strokeWidth: number;
925
857
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
926
- roundness: {
858
+ roundness: null | {
927
859
  type: import("@excalidraw/element/types").RoundnessType;
928
- value?: number | undefined;
929
- } | null;
860
+ value?: number;
861
+ };
930
862
  roughness: number;
931
863
  opacity: number;
932
864
  width: number;
933
865
  height: number;
934
- angle: import("../../math/src").Radians;
866
+ angle: import("@excalidraw/math").Radians;
935
867
  seed: number;
936
868
  version: number;
937
869
  versionNonce: number;
938
870
  index: import("@excalidraw/element/types").FractionalIndex | null;
939
871
  isDeleted: boolean;
940
- groupIds: readonly string[];
872
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
941
873
  frameId: string | null;
942
- boundElements: readonly Readonly<{
943
- id: string;
944
- type: "text" | "arrow";
945
- }>[] | null;
874
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
946
875
  updated: number;
947
876
  link: string | null;
948
877
  locked: boolean;
949
- customData?: Record<string, any> | undefined;
878
+ customData?: Record<string, any>;
950
879
  }> & {
951
- type: "magicframe";
952
- name: string | null;
880
+ type: "ellipse";
953
881
  } & {
954
882
  index: import("@excalidraw/element/types").FractionalIndex;
955
883
  }) | (Readonly<{
@@ -961,30 +889,27 @@ export declare const actionWrapSelectionInFrame: {
961
889
  fillStyle: import("@excalidraw/element/types").FillStyle;
962
890
  strokeWidth: number;
963
891
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
964
- roundness: {
892
+ roundness: null | {
965
893
  type: import("@excalidraw/element/types").RoundnessType;
966
- value?: number | undefined;
967
- } | null;
894
+ value?: number;
895
+ };
968
896
  roughness: number;
969
897
  opacity: number;
970
898
  width: number;
971
899
  height: number;
972
- angle: import("../../math/src").Radians;
900
+ angle: import("@excalidraw/math").Radians;
973
901
  seed: number;
974
902
  version: number;
975
903
  versionNonce: number;
976
904
  index: import("@excalidraw/element/types").FractionalIndex | null;
977
905
  isDeleted: boolean;
978
- groupIds: readonly string[];
906
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
979
907
  frameId: string | null;
980
- boundElements: readonly Readonly<{
981
- id: string;
982
- type: "text" | "arrow";
983
- }>[] | null;
908
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
984
909
  updated: number;
985
910
  link: string | null;
986
911
  locked: boolean;
987
- customData?: Record<string, any> | undefined;
912
+ customData?: Record<string, any>;
988
913
  }> & Readonly<{
989
914
  type: "embeddable";
990
915
  }> & {
@@ -998,36 +923,32 @@ export declare const actionWrapSelectionInFrame: {
998
923
  fillStyle: import("@excalidraw/element/types").FillStyle;
999
924
  strokeWidth: number;
1000
925
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
1001
- roundness: {
926
+ roundness: null | {
1002
927
  type: import("@excalidraw/element/types").RoundnessType;
1003
- value?: number | undefined;
1004
- } | null;
928
+ value?: number;
929
+ };
1005
930
  roughness: number;
1006
931
  opacity: number;
1007
932
  width: number;
1008
933
  height: number;
1009
- angle: import("../../math/src").Radians;
934
+ angle: import("@excalidraw/math").Radians;
1010
935
  seed: number;
1011
936
  version: number;
1012
937
  versionNonce: number;
1013
938
  index: import("@excalidraw/element/types").FractionalIndex | null;
1014
939
  isDeleted: boolean;
1015
- groupIds: readonly string[];
940
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
1016
941
  frameId: string | null;
1017
- boundElements: readonly Readonly<{
1018
- id: string;
1019
- type: "text" | "arrow";
1020
- }>[] | null;
942
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
1021
943
  updated: number;
1022
944
  link: string | null;
1023
945
  locked: boolean;
1024
- customData?: Record<string, any> | undefined;
946
+ customData?: Record<string, any>;
1025
947
  }> & Readonly<{
1026
- type: "image";
1027
- fileId: import("@excalidraw/element/types").FileId | null;
1028
- status: "pending" | "saved" | "error";
1029
- scale: [number, number];
1030
- crop: import("@excalidraw/element/types").ImageCrop | null;
948
+ type: "iframe";
949
+ customData?: {
950
+ generationData?: import("@excalidraw/element/types").MagicGenerationData;
951
+ };
1031
952
  }> & {
1032
953
  index: import("@excalidraw/element/types").FractionalIndex;
1033
954
  }) | (Readonly<{
@@ -1039,35 +960,33 @@ export declare const actionWrapSelectionInFrame: {
1039
960
  fillStyle: import("@excalidraw/element/types").FillStyle;
1040
961
  strokeWidth: number;
1041
962
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
1042
- roundness: {
963
+ roundness: null | {
1043
964
  type: import("@excalidraw/element/types").RoundnessType;
1044
- value?: number | undefined;
1045
- } | null;
965
+ value?: number;
966
+ };
1046
967
  roughness: number;
1047
968
  opacity: number;
1048
969
  width: number;
1049
970
  height: number;
1050
- angle: import("../../math/src").Radians;
971
+ angle: import("@excalidraw/math").Radians;
1051
972
  seed: number;
1052
973
  version: number;
1053
974
  versionNonce: number;
1054
975
  index: import("@excalidraw/element/types").FractionalIndex | null;
1055
976
  isDeleted: boolean;
1056
- groupIds: readonly string[];
977
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
1057
978
  frameId: string | null;
1058
- boundElements: readonly Readonly<{
1059
- id: string;
1060
- type: "text" | "arrow";
1061
- }>[] | null;
979
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
1062
980
  updated: number;
1063
981
  link: string | null;
1064
982
  locked: boolean;
1065
- customData?: Record<string, any> | undefined;
983
+ customData?: Record<string, any>;
1066
984
  }> & Readonly<{
1067
- type: "iframe";
1068
- customData?: {
1069
- generationData?: import("@excalidraw/element/types").MagicGenerationData | undefined;
1070
- } | undefined;
985
+ type: "image";
986
+ fileId: import("@excalidraw/element/types").FileId | null;
987
+ status: "pending" | "saved" | "error";
988
+ scale: [number, number];
989
+ crop: import("@excalidraw/element/types").ImageCrop | null;
1071
990
  }> & {
1072
991
  index: import("@excalidraw/element/types").FractionalIndex;
1073
992
  }) | (Readonly<{
@@ -1079,32 +998,30 @@ export declare const actionWrapSelectionInFrame: {
1079
998
  fillStyle: import("@excalidraw/element/types").FillStyle;
1080
999
  strokeWidth: number;
1081
1000
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
1082
- roundness: {
1001
+ roundness: null | {
1083
1002
  type: import("@excalidraw/element/types").RoundnessType;
1084
- value?: number | undefined;
1085
- } | null;
1003
+ value?: number;
1004
+ };
1086
1005
  roughness: number;
1087
1006
  opacity: number;
1088
1007
  width: number;
1089
1008
  height: number;
1090
- angle: import("../../math/src").Radians;
1009
+ angle: import("@excalidraw/math").Radians;
1091
1010
  seed: number;
1092
1011
  version: number;
1093
1012
  versionNonce: number;
1094
1013
  index: import("@excalidraw/element/types").FractionalIndex | null;
1095
1014
  isDeleted: boolean;
1096
- groupIds: readonly string[];
1015
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
1097
1016
  frameId: string | null;
1098
- boundElements: readonly Readonly<{
1099
- id: string;
1100
- type: "text" | "arrow";
1101
- }>[] | null;
1017
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
1102
1018
  updated: number;
1103
1019
  link: string | null;
1104
1020
  locked: boolean;
1105
- customData?: Record<string, any> | undefined;
1021
+ customData?: Record<string, any>;
1106
1022
  }> & {
1107
- type: "selection";
1023
+ type: "frame";
1024
+ name: string | null;
1108
1025
  } & {
1109
1026
  index: import("@excalidraw/element/types").FractionalIndex;
1110
1027
  }) | (Readonly<{
@@ -1116,32 +1033,30 @@ export declare const actionWrapSelectionInFrame: {
1116
1033
  fillStyle: import("@excalidraw/element/types").FillStyle;
1117
1034
  strokeWidth: number;
1118
1035
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
1119
- roundness: {
1036
+ roundness: null | {
1120
1037
  type: import("@excalidraw/element/types").RoundnessType;
1121
- value?: number | undefined;
1122
- } | null;
1038
+ value?: number;
1039
+ };
1123
1040
  roughness: number;
1124
1041
  opacity: number;
1125
1042
  width: number;
1126
1043
  height: number;
1127
- angle: import("../../math/src").Radians;
1044
+ angle: import("@excalidraw/math").Radians;
1128
1045
  seed: number;
1129
1046
  version: number;
1130
1047
  versionNonce: number;
1131
1048
  index: import("@excalidraw/element/types").FractionalIndex | null;
1132
1049
  isDeleted: boolean;
1133
- groupIds: readonly string[];
1050
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
1134
1051
  frameId: string | null;
1135
- boundElements: readonly Readonly<{
1136
- id: string;
1137
- type: "text" | "arrow";
1138
- }>[] | null;
1052
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
1139
1053
  updated: number;
1140
1054
  link: string | null;
1141
1055
  locked: boolean;
1142
- customData?: Record<string, any> | undefined;
1056
+ customData?: Record<string, any>;
1143
1057
  }> & {
1144
- type: "ellipse";
1058
+ type: "magicframe";
1059
+ name: string | null;
1145
1060
  } & {
1146
1061
  index: import("@excalidraw/element/types").FractionalIndex;
1147
1062
  }) | (Readonly<{
@@ -1153,38 +1068,40 @@ export declare const actionWrapSelectionInFrame: {
1153
1068
  fillStyle: import("@excalidraw/element/types").FillStyle;
1154
1069
  strokeWidth: number;
1155
1070
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
1156
- roundness: {
1071
+ roundness: null | {
1157
1072
  type: import("@excalidraw/element/types").RoundnessType;
1158
- value?: number | undefined;
1159
- } | null;
1073
+ value?: number;
1074
+ };
1160
1075
  roughness: number;
1161
1076
  opacity: number;
1162
1077
  width: number;
1163
1078
  height: number;
1164
- angle: import("../../math/src").Radians;
1079
+ angle: import("@excalidraw/math").Radians;
1165
1080
  seed: number;
1166
1081
  version: number;
1167
1082
  versionNonce: number;
1168
1083
  index: import("@excalidraw/element/types").FractionalIndex | null;
1169
1084
  isDeleted: boolean;
1170
- groupIds: readonly string[];
1085
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
1171
1086
  frameId: string | null;
1172
- boundElements: readonly Readonly<{
1173
- id: string;
1174
- type: "text" | "arrow";
1175
- }>[] | null;
1087
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
1176
1088
  updated: number;
1177
1089
  link: string | null;
1178
1090
  locked: boolean;
1179
- customData?: Record<string, any> | undefined;
1091
+ customData?: Record<string, any>;
1180
1092
  }> & Readonly<{
1181
- type: "line" | "arrow";
1182
- points: readonly import("../../math/src").LocalPoint[];
1183
- lastCommittedPoint: import("../../math/src").LocalPoint | null;
1184
- startBinding: import("@excalidraw/element/types").PointBinding | null;
1185
- endBinding: import("@excalidraw/element/types").PointBinding | null;
1186
- startArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1187
- endArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1093
+ type: "text";
1094
+ fontSize: number;
1095
+ fontFamily: import("@excalidraw/element/types").FontFamilyValues;
1096
+ text: string;
1097
+ textAlign: import("@excalidraw/element/types").TextAlign;
1098
+ verticalAlign: import("@excalidraw/element/types").VerticalAlign;
1099
+ containerId: import("@excalidraw/element/types").ExcalidrawGenericElement["id"] | null;
1100
+ originalText: string;
1101
+ autoResize: boolean;
1102
+ lineHeight: number & {
1103
+ _brand: "unitlessLineHeight";
1104
+ };
1188
1105
  }> & {
1189
1106
  index: import("@excalidraw/element/types").FractionalIndex;
1190
1107
  }) | (Readonly<{
@@ -1196,36 +1113,33 @@ export declare const actionWrapSelectionInFrame: {
1196
1113
  fillStyle: import("@excalidraw/element/types").FillStyle;
1197
1114
  strokeWidth: number;
1198
1115
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
1199
- roundness: {
1116
+ roundness: null | {
1200
1117
  type: import("@excalidraw/element/types").RoundnessType;
1201
- value?: number | undefined;
1202
- } | null;
1118
+ value?: number;
1119
+ };
1203
1120
  roughness: number;
1204
1121
  opacity: number;
1205
1122
  width: number;
1206
1123
  height: number;
1207
- angle: import("../../math/src").Radians;
1124
+ angle: import("@excalidraw/math").Radians;
1208
1125
  seed: number;
1209
1126
  version: number;
1210
1127
  versionNonce: number;
1211
1128
  index: import("@excalidraw/element/types").FractionalIndex | null;
1212
1129
  isDeleted: boolean;
1213
- groupIds: readonly string[];
1130
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
1214
1131
  frameId: string | null;
1215
- boundElements: readonly Readonly<{
1216
- id: string;
1217
- type: "text" | "arrow";
1218
- }>[] | null;
1132
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
1219
1133
  updated: number;
1220
1134
  link: string | null;
1221
1135
  locked: boolean;
1222
- customData?: Record<string, any> | undefined;
1136
+ customData?: Record<string, any>;
1223
1137
  }> & Readonly<{
1224
1138
  type: "freedraw";
1225
- points: readonly import("../../math/src").LocalPoint[];
1139
+ points: readonly import("@excalidraw/math").LocalPoint[];
1226
1140
  pressures: readonly number[];
1227
1141
  simulatePressure: boolean;
1228
- lastCommittedPoint: import("../../math/src").LocalPoint | null;
1142
+ strokeOptions: import("@excalidraw/element/types").StrokeOptions;
1229
1143
  }> & {
1230
1144
  index: import("@excalidraw/element/types").FractionalIndex;
1231
1145
  }) | import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameElement>)[];