@excalidraw/common 0.18.0-ac0d305 → 0.18.0-b1c6bfc

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 (268) hide show
  1. package/dist/dev/index.js +1644 -296
  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 +26 -28
  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 -43
  15. package/dist/types/common/src/versionedSnapshotStore.d.ts +17 -0
  16. package/dist/types/element/src/Scene.d.ts +6 -4
  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 +7 -13
  22. package/dist/types/element/src/collision.d.ts +7 -2
  23. package/dist/types/element/src/comparisons.d.ts +7 -7
  24. package/dist/types/element/src/distribute.d.ts +2 -1
  25. package/dist/types/element/src/dragElements.d.ts +3 -3
  26. package/dist/types/element/src/duplicate.d.ts +3 -3
  27. package/dist/types/element/src/elbowArrow.d.ts +2 -0
  28. package/dist/types/element/src/fractionalIndex.d.ts +2 -2
  29. package/dist/types/element/src/frame.d.ts +8 -4
  30. package/dist/types/element/src/heading.d.ts +2 -1
  31. package/dist/types/element/src/image.d.ts +1 -11
  32. package/dist/types/element/src/index.d.ts +4 -3
  33. package/dist/types/element/src/linearElementEditor.d.ts +23 -22
  34. package/dist/types/element/src/mutateElement.d.ts +5 -1
  35. package/dist/types/element/src/newElement.d.ts +6 -6
  36. package/dist/types/element/src/renderElement.d.ts +1 -7
  37. package/dist/types/element/src/resizeElements.d.ts +10 -10
  38. package/dist/types/element/src/resizeTest.d.ts +6 -5
  39. package/dist/types/element/src/selection.d.ts +10 -10
  40. package/dist/types/element/src/shape.d.ts +9 -8
  41. package/dist/types/element/src/textElement.d.ts +1 -1
  42. package/dist/types/element/src/textMeasurements.d.ts +1 -3
  43. package/dist/types/element/src/textWrapping.d.ts +26 -0
  44. package/dist/types/{excalidraw/data → element/src}/transform.d.ts +3 -3
  45. package/dist/types/element/src/transformHandles.d.ts +8 -27
  46. package/dist/types/element/src/typeChecks.d.ts +4 -7
  47. package/dist/types/element/src/types.d.ts +12 -13
  48. package/dist/types/element/src/utils.d.ts +9 -4
  49. package/dist/types/element/src/zindex.d.ts +7 -1
  50. package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +170 -210
  51. package/dist/types/excalidraw/actions/actionAlign.d.ts +6 -7
  52. package/dist/types/excalidraw/actions/actionBoundText.d.ts +94 -121
  53. package/dist/types/excalidraw/actions/actionCanvas.d.ts +590 -936
  54. package/dist/types/excalidraw/actions/actionClipboard.d.ts +125 -897
  55. package/dist/types/excalidraw/actions/actionCropEditor.d.ts +45 -59
  56. package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +151 -195
  57. package/dist/types/excalidraw/actions/actionDeselect.d.ts +160 -0
  58. package/dist/types/excalidraw/actions/actionDistribute.d.ts +2 -3
  59. package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +3 -4
  60. package/dist/types/excalidraw/actions/actionElementLink.d.ts +54 -74
  61. package/dist/types/excalidraw/actions/actionElementLock.d.ts +92 -119
  62. package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +60 -74
  63. package/dist/types/excalidraw/actions/actionExport.d.ts +174 -1413
  64. package/dist/types/excalidraw/actions/actionFinalize.d.ts +10 -396
  65. package/dist/types/excalidraw/actions/actionFlip.d.ts +2 -3
  66. package/dist/types/excalidraw/actions/actionFrame.d.ts +304 -395
  67. package/dist/types/excalidraw/actions/actionGroup.d.ts +97 -132
  68. package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +179 -231
  69. package/dist/types/excalidraw/actions/actionLink.d.ts +60 -74
  70. package/dist/types/excalidraw/actions/actionMenu.d.ts +49 -437
  71. package/dist/types/excalidraw/actions/actionNavigate.d.ts +18 -361
  72. package/dist/types/excalidraw/actions/actionProperties.d.ts +154 -2533
  73. package/dist/types/excalidraw/actions/actionSelectAll.d.ts +48 -66
  74. package/dist/types/excalidraw/actions/actionStyles.d.ts +45 -58
  75. package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +4 -4
  76. package/dist/types/excalidraw/actions/actionToggleArrowBinding.d.ts +173 -0
  77. package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +60 -74
  78. package/dist/types/excalidraw/actions/actionToggleMidpointSnapping.d.ts +173 -0
  79. package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +60 -74
  80. package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +48 -68
  81. package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +1 -1
  82. package/dist/types/excalidraw/actions/actionToggleStats.d.ts +59 -73
  83. package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +60 -74
  84. package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +60 -74
  85. package/dist/types/excalidraw/actions/actionZindex.d.ts +8 -9
  86. package/dist/types/excalidraw/actions/index.d.ts +4 -1
  87. package/dist/types/excalidraw/actions/register.d.ts +2 -2
  88. package/dist/types/excalidraw/actions/shortcuts.d.ts +1 -1
  89. package/dist/types/excalidraw/actions/types.d.ts +4 -4
  90. package/dist/types/excalidraw/appState.d.ts +43 -36
  91. package/dist/types/excalidraw/charts/charts.bar.d.ts +2 -0
  92. package/dist/types/excalidraw/charts/charts.constants.d.ts +48 -0
  93. package/dist/types/excalidraw/charts/charts.helpers.d.ts +32 -0
  94. package/dist/types/excalidraw/charts/charts.line.d.ts +2 -0
  95. package/dist/types/excalidraw/charts/charts.parse.d.ts +10 -0
  96. package/dist/types/excalidraw/charts/charts.radar.d.ts +2 -0
  97. package/dist/types/excalidraw/charts/charts.types.d.ts +18 -0
  98. package/dist/types/excalidraw/charts/index.d.ts +7 -0
  99. package/dist/types/excalidraw/clipboard.d.ts +15 -38
  100. package/dist/types/excalidraw/components/Actions.d.ts +14 -4
  101. package/dist/types/excalidraw/components/App.d.ts +109 -70
  102. package/dist/types/excalidraw/components/AppStateObserver.d.ts +37 -0
  103. package/dist/types/excalidraw/components/Card.d.ts +1 -3
  104. package/dist/types/excalidraw/components/ColorPicker/ColorInput.d.ts +2 -4
  105. package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +1 -3
  106. package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +2 -0
  107. package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +2 -1
  108. package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +2 -1
  109. package/dist/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +0 -1
  110. package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +0 -1
  111. package/dist/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +1 -0
  112. package/dist/types/excalidraw/components/CommandPalette/types.d.ts +2 -4
  113. package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +2 -2
  114. package/dist/types/excalidraw/components/DarkModeToggle.d.ts +1 -1
  115. package/dist/types/excalidraw/components/DefaultSidebar.d.ts +9 -13
  116. package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +1 -1
  117. package/dist/types/excalidraw/components/Ellipsify.d.ts +1 -2
  118. package/dist/types/excalidraw/components/ErrorDialog.d.ts +1 -1
  119. package/dist/types/excalidraw/components/EyeDropper.d.ts +0 -1
  120. package/dist/types/excalidraw/components/FilledButton.d.ts +2 -1
  121. package/dist/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +2 -1
  122. package/dist/types/excalidraw/components/FontPicker/keyboardNavHandlers.d.ts +0 -1
  123. package/dist/types/excalidraw/components/HelpDialog.d.ts +1 -1
  124. package/dist/types/excalidraw/components/HintViewer.d.ts +4 -3
  125. package/dist/types/excalidraw/components/IconPicker.d.ts +14 -9
  126. package/dist/types/excalidraw/components/InlineIcon.d.ts +3 -1
  127. package/dist/types/excalidraw/components/LayerUI.d.ts +2 -1
  128. package/dist/types/excalidraw/components/LibraryMenuControlButtons.d.ts +1 -1
  129. package/dist/types/excalidraw/components/LibraryMenuHeaderContent.d.ts +1 -2
  130. package/dist/types/excalidraw/components/LibraryMenuSection.d.ts +1 -1
  131. package/dist/types/excalidraw/components/LibraryUnit.d.ts +2 -3
  132. package/dist/types/excalidraw/components/LoadingMessage.d.ts +0 -1
  133. package/dist/types/excalidraw/components/MobileMenu.d.ts +3 -5
  134. package/dist/types/excalidraw/components/MobileToolBar.d.ts +10 -0
  135. package/dist/types/excalidraw/components/Modal.d.ts +0 -1
  136. package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirm.d.ts +1 -1
  137. package/dist/types/excalidraw/components/PasteChartDialog.d.ts +4 -5
  138. package/dist/types/excalidraw/components/Popover.d.ts +2 -1
  139. package/dist/types/excalidraw/components/PropertiesPopover.d.ts +1 -1
  140. package/dist/types/excalidraw/components/RadioGroup.d.ts +0 -1
  141. package/dist/types/excalidraw/components/RadioSelection.d.ts +4 -4
  142. package/dist/types/excalidraw/components/Range.d.ts +10 -4
  143. package/dist/types/excalidraw/components/ScrollableList.d.ts +0 -1
  144. package/dist/types/excalidraw/components/Sidebar/Sidebar.d.ts +15 -21
  145. package/dist/types/excalidraw/components/Sidebar/SidebarHeader.d.ts +1 -1
  146. package/dist/types/excalidraw/components/Sidebar/SidebarTab.d.ts +1 -2
  147. package/dist/types/excalidraw/components/Sidebar/SidebarTabTrigger.d.ts +1 -2
  148. package/dist/types/excalidraw/components/Sidebar/SidebarTabTriggers.d.ts +1 -2
  149. package/dist/types/excalidraw/components/Sidebar/SidebarTabs.d.ts +1 -2
  150. package/dist/types/excalidraw/components/Spinner.d.ts +4 -4
  151. package/dist/types/excalidraw/components/Stats/CanvasGrid.d.ts +0 -1
  152. package/dist/types/excalidraw/components/Stats/Collapsible.d.ts +0 -1
  153. package/dist/types/excalidraw/components/Stats/DragInput.d.ts +0 -1
  154. package/dist/types/excalidraw/components/Stats/index.d.ts +7 -8
  155. package/dist/types/excalidraw/components/Stats/utils.d.ts +1 -1
  156. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatHistoryMenu.d.ts +15 -0
  157. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatInterface.d.ts +23 -0
  158. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatMessage.d.ts +14 -0
  159. package/dist/types/excalidraw/components/TTDDialog/Chat/TTDChatPanel.d.ts +27 -0
  160. package/dist/types/excalidraw/components/TTDDialog/Chat/index.d.ts +3 -0
  161. package/dist/types/excalidraw/components/TTDDialog/Chat/useChatAgent.d.ts +8 -0
  162. package/dist/types/excalidraw/components/TTDDialog/CodeMirrorEditor.d.ts +11 -0
  163. package/dist/types/excalidraw/components/TTDDialog/MermaidToExcalidraw.d.ts +3 -2
  164. package/dist/types/excalidraw/components/TTDDialog/TTDContext.d.ts +13 -0
  165. package/dist/types/excalidraw/components/TTDDialog/TTDDialog.d.ts +12 -29
  166. package/dist/types/excalidraw/components/TTDDialog/TTDDialogInput.d.ts +3 -3
  167. package/dist/types/excalidraw/components/TTDDialog/TTDDialogOutput.d.ts +5 -2
  168. package/dist/types/excalidraw/components/TTDDialog/TTDDialogPanel.d.ts +13 -9
  169. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTab.d.ts +1 -2
  170. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTrigger.d.ts +1 -2
  171. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTriggers.d.ts +1 -2
  172. package/dist/types/excalidraw/components/TTDDialog/TTDPreviewPanel.d.ts +9 -0
  173. package/dist/types/excalidraw/components/TTDDialog/TTDWelcomeMessage.d.ts +1 -0
  174. package/dist/types/excalidraw/components/TTDDialog/TextToDiagram.d.ts +9 -0
  175. package/dist/types/excalidraw/components/TTDDialog/common.d.ts +16 -16
  176. package/dist/types/excalidraw/components/TTDDialog/hooks/useChatManagement.d.ts +13 -0
  177. package/dist/types/excalidraw/components/TTDDialog/hooks/useMermaidRenderer.d.ts +14 -0
  178. package/dist/types/excalidraw/components/TTDDialog/hooks/useTextGeneration.d.ts +7 -0
  179. package/dist/types/excalidraw/components/TTDDialog/mermaid-lang-lite.d.ts +2 -0
  180. package/dist/types/excalidraw/components/TTDDialog/types.d.ts +95 -0
  181. package/dist/types/excalidraw/components/TTDDialog/useTTDChatStorage.d.ts +22 -0
  182. package/dist/types/excalidraw/components/TTDDialog/utils/chat.d.ts +10 -0
  183. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidAutoFix.d.ts +1 -0
  184. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidError.d.ts +10 -0
  185. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidValidation.d.ts +1 -0
  186. package/dist/types/excalidraw/components/TextField.d.ts +1 -0
  187. package/dist/types/excalidraw/components/Toast.d.ts +11 -7
  188. package/dist/types/excalidraw/components/ToolPopover.d.ts +25 -0
  189. package/dist/types/excalidraw/components/Trans.d.ts +2 -2
  190. package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +7 -3
  191. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +47 -35
  192. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +7 -5
  193. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +3 -3
  194. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +13 -22
  195. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCheckbox.d.ts +5 -0
  196. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +5 -4
  197. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +2 -2
  198. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.d.ts +2 -2
  199. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemLink.d.ts +6 -6
  200. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSub.d.ts +23 -0
  201. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubContent.d.ts +8 -0
  202. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubTrigger.d.ts +12 -0
  203. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuTrigger.d.ts +3 -4
  204. package/dist/types/excalidraw/components/dropdownMenu/common.d.ts +2 -2
  205. package/dist/types/excalidraw/components/dropdownMenu/dropdownMenuUtils.d.ts +2 -0
  206. package/dist/types/excalidraw/components/hoc/withInternalFallback.d.ts +1 -1
  207. package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +1 -1
  208. package/dist/types/excalidraw/components/icons.d.ts +44 -22
  209. package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +20 -2
  210. package/dist/types/excalidraw/components/main-menu/MainMenu.d.ts +39 -35
  211. package/dist/types/excalidraw/components/shapes.d.ts +74 -1
  212. package/dist/types/excalidraw/data/blob.d.ts +329 -8
  213. package/dist/types/excalidraw/data/encode.d.ts +4 -4
  214. package/dist/types/excalidraw/data/encryption.d.ts +5 -5
  215. package/dist/types/excalidraw/data/filesystem.d.ts +5 -7
  216. package/dist/types/excalidraw/data/index.d.ts +4 -5
  217. package/dist/types/excalidraw/data/json.d.ts +171 -4
  218. package/dist/types/excalidraw/data/library.d.ts +24 -9
  219. package/dist/types/excalidraw/data/resave.d.ts +7 -2
  220. package/dist/types/excalidraw/data/restore.d.ts +25 -10
  221. package/dist/types/excalidraw/data/types.d.ts +4 -1
  222. package/dist/types/excalidraw/editor-jotai.d.ts +11 -11
  223. package/dist/types/excalidraw/errors.d.ts +14 -0
  224. package/dist/types/excalidraw/hooks/useLibraryItemSvg.d.ts +1 -1
  225. package/dist/types/excalidraw/hooks/useOutsideClick.d.ts +4 -3
  226. package/dist/types/excalidraw/hooks/useScrollPosition.d.ts +1 -2
  227. package/dist/types/excalidraw/i18n.d.ts +2 -2
  228. package/dist/types/excalidraw/renderer/animation.d.ts +12 -0
  229. package/dist/types/excalidraw/renderer/helpers.d.ts +6 -8
  230. package/dist/types/excalidraw/renderer/interactiveScene.d.ts +8 -14
  231. package/dist/types/excalidraw/scene/Renderer.d.ts +5 -2
  232. package/dist/types/excalidraw/scene/export.d.ts +2 -2
  233. package/dist/types/excalidraw/scene/scroll.d.ts +1 -6
  234. package/dist/types/excalidraw/scene/types.d.ts +22 -5
  235. package/dist/types/excalidraw/shortcut.d.ts +1 -0
  236. package/dist/types/excalidraw/snapping.d.ts +5 -5
  237. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-bindings.d.ts +1 -1
  238. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-loader.d.ts +1 -1
  239. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-wasm.d.ts +1 -1
  240. package/dist/types/excalidraw/subset/woff2/woff2-loader.d.ts +2 -2
  241. package/dist/types/excalidraw/subset/woff2/woff2-wasm.d.ts +1 -1
  242. package/dist/types/excalidraw/textAutoResizeHandle.d.ts +15 -0
  243. package/dist/types/excalidraw/types.d.ts +123 -36
  244. package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +7 -3
  245. package/dist/types/math/src/curve.d.ts +4 -1
  246. package/dist/types/math/src/point.d.ts +7 -2
  247. package/dist/types/math/src/polygon.d.ts +2 -2
  248. package/dist/types/math/src/range.d.ts +1 -3
  249. package/dist/types/math/src/segment.d.ts +3 -3
  250. package/dist/types/math/src/types.d.ts +25 -1
  251. package/dist/types/utils/src/bbox.d.ts +1 -1
  252. package/dist/types/utils/src/export.d.ts +5 -5
  253. package/dist/types/utils/src/shape.d.ts +6 -6
  254. package/dist/types/utils/src/withinBounds.d.ts +2 -2
  255. package/package.json +7 -1
  256. package/dist/types/excalidraw/charts.d.ts +0 -27
  257. package/dist/types/excalidraw/components/DiagramToCodePlugin/DiagramToCodePlugin.d.ts +0 -4
  258. package/dist/types/excalidraw/components/ExcalidrawLogo.d.ts +0 -16
  259. package/dist/types/excalidraw/components/InitializeApp.d.ts +0 -10
  260. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +0 -9
  261. package/dist/types/excalidraw/components/footer/FooterCenter.d.ts +0 -8
  262. package/dist/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +0 -10
  263. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Center.d.ts +0 -58
  264. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Hints.d.ts +0 -19
  265. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.d.ts +0 -85
  266. package/dist/types/excalidraw/data/reconcile.d.ts +0 -7
  267. package/dist/types/excalidraw/index.d.ts +0 -47
  268. package/dist/types/excalidraw/polyfill.d.ts +0 -2
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { ExcalidrawLinearElement } from "@excalidraw/element/types";
3
2
  export declare const actionToggleLinearEditor: {
4
3
  name: "toggleLinearEditor";
@@ -9,40 +8,40 @@ export declare const actionToggleLinearEditor: {
9
8
  category: "element";
10
9
  };
11
10
  predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: import("../types").AppState, _: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
12
- perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: any, app: import("../types").AppClassProperties): {
11
+ perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: unknown, app: import("../types").AppClassProperties): {
13
12
  appState: {
14
13
  selectedLinearElement: {
15
14
  isEditing: boolean;
16
- elementId: string & {
15
+ elementId: import("@excalidraw/element/types").ExcalidrawElement["id"] & {
17
16
  _brand: "excalidrawLinearElementId";
18
17
  };
19
18
  selectedPointsIndices: readonly number[] | null;
20
- pointerDownState: Readonly<{
19
+ initialState: Readonly<{
21
20
  prevSelectedPointsIndices: readonly number[] | null;
22
21
  lastClickedPoint: number;
23
- lastClickedIsEndPoint: boolean;
24
- origin: Readonly<{
25
- x: number;
26
- y: number;
27
- }> | null;
22
+ origin: Readonly<import("@excalidraw/math").GlobalPoint> | null;
28
23
  segmentMidpoint: {
29
- value: import("../../math/src").GlobalPoint | null;
24
+ value: import("@excalidraw/math").GlobalPoint | null;
30
25
  index: number | null;
31
26
  added: boolean;
32
27
  };
28
+ arrowStartIsInside: boolean;
29
+ altFocusPoint: Readonly<import("@excalidraw/math").GlobalPoint> | null;
33
30
  }>;
34
31
  isDragging: boolean;
35
- lastUncommittedPoint: import("../../math/src").LocalPoint | null;
32
+ lastUncommittedPoint: import("@excalidraw/math").LocalPoint | null;
33
+ lastCommittedPoint: import("@excalidraw/math").LocalPoint | null;
36
34
  pointerOffset: Readonly<{
37
35
  x: number;
38
36
  y: number;
39
37
  }>;
40
- startBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
41
- endBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
42
38
  hoverPointIndex: number;
43
- segmentMidPointHoveredCoords: import("../../math/src").GlobalPoint | null;
39
+ segmentMidPointHoveredCoords: import("@excalidraw/math").GlobalPoint | null;
40
+ hoveredFocusPointBinding: "start" | "end" | null;
41
+ draggedFocusPointBinding: "start" | "end" | null;
44
42
  elbowed: boolean;
45
43
  customLineAngle: number | null;
44
+ pointerDownState: never;
46
45
  };
47
46
  contextMenu: {
48
47
  items: import("../components/ContextMenu").ContextMenuItems;
@@ -51,18 +50,24 @@ export declare const actionToggleLinearEditor: {
51
50
  } | null;
52
51
  showWelcomeScreen: boolean;
53
52
  isLoading: boolean;
54
- errorMessage: import("react").ReactNode;
53
+ errorMessage: React.ReactNode;
55
54
  activeEmbeddable: {
56
55
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
57
- state: "active" | "hover";
56
+ state: "hover" | "active";
58
57
  } | null;
59
58
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
60
59
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
61
60
  multiElement: import("@excalidraw/element/types").NonDeleted<ExcalidrawLinearElement> | null;
62
61
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
63
62
  isBindingEnabled: boolean;
63
+ boxSelectionMode: import("../types").BoxSelectionMode;
64
+ bindingPreference: "enabled" | "disabled";
65
+ isMidpointSnappingEnabled: boolean;
64
66
  startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
65
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
67
+ suggestedBinding: {
68
+ element: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement>;
69
+ midPoint?: import("@excalidraw/math").GlobalPoint;
70
+ } | null;
66
71
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
67
72
  frameRendering: {
68
73
  enabled: boolean;
@@ -72,12 +77,16 @@ export declare const actionToggleLinearEditor: {
72
77
  };
73
78
  editingFrame: string | null;
74
79
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
75
- editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
80
+ editingTextElement: import("@excalidraw/element/types").ExcalidrawTextElement | null;
76
81
  activeTool: {
77
82
  lastActiveTool: import("../types").ActiveTool | null;
78
83
  locked: boolean;
79
84
  fromSelection: boolean;
80
85
  } & import("../types").ActiveTool;
86
+ preferredSelectionTool: {
87
+ type: "selection" | "lasso";
88
+ initialized: boolean;
89
+ };
81
90
  penMode: boolean;
82
91
  penDetected: boolean;
83
92
  exportBackground: boolean;
@@ -86,19 +95,19 @@ export declare const actionToggleLinearEditor: {
86
95
  exportScale: number;
87
96
  currentItemStrokeColor: string;
88
97
  currentItemBackgroundColor: string;
89
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
98
+ currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
90
99
  currentItemStrokeWidth: number;
91
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
100
+ currentItemStrokeStyle: import("@excalidraw/element/types").ExcalidrawElement["strokeStyle"];
92
101
  currentItemRoughness: number;
93
102
  currentItemOpacity: number;
94
- currentItemFontFamily: number;
103
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
95
104
  currentItemFontSize: number;
96
- currentItemTextAlign: string;
105
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
97
106
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
98
107
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
99
- currentHoveredFontFamily: number | null;
108
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
100
109
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
101
- currentItemArrowType: "round" | "sharp" | "elbow";
110
+ currentItemArrowType: "sharp" | "round" | "elbow";
102
111
  viewBackgroundColor: string;
103
112
  scrollX: number;
104
113
  scrollY: number;
@@ -107,26 +116,30 @@ export declare const actionToggleLinearEditor: {
107
116
  name: string | null;
108
117
  isResizing: boolean;
109
118
  isRotating: boolean;
110
- zoom: Readonly<{
111
- value: import("../types").NormalizedZoomValue;
112
- }>;
113
- openMenu: "canvas" | "shape" | null;
114
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
119
+ zoom: import("../types").Zoom;
120
+ openMenu: "canvas" | null;
121
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
115
122
  openSidebar: {
116
- name: string;
117
- tab?: string | undefined;
123
+ name: import("../types").SidebarName;
124
+ tab?: import("../types").SidebarTabName;
118
125
  } | null;
119
- openDialog: {
126
+ openDialog: null | {
120
127
  name: "imageExport" | "help" | "jsonExport";
121
128
  } | {
122
129
  name: "ttd";
123
- tab: "mermaid" | "text-to-diagram";
130
+ tab: "text-to-diagram" | "mermaid";
124
131
  } | {
125
132
  name: "commandPalette";
133
+ } | {
134
+ name: "settings";
126
135
  } | {
127
136
  name: "elementLinkSelector";
128
- sourceElementId: string;
129
- } | null;
137
+ sourceElementId: import("@excalidraw/element/types").ExcalidrawElement["id"];
138
+ } | {
139
+ name: "charts";
140
+ data: import("../charts").Spreadsheet;
141
+ rawText: string;
142
+ };
130
143
  defaultSidebarDockedPreference: boolean;
131
144
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
132
145
  selectedElementIds: Readonly<{
@@ -141,9 +154,9 @@ export declare const actionToggleLinearEditor: {
141
154
  selectedElementsAreBeingDragged: boolean;
142
155
  shouldCacheIgnoreZoom: boolean;
143
156
  toast: {
144
- message: string;
145
- closable?: boolean | undefined;
146
- duration?: number | undefined;
157
+ message: React.ReactNode;
158
+ closable?: boolean;
159
+ duration?: number;
147
160
  } | null;
148
161
  zenModeEnabled: boolean;
149
162
  theme: import("@excalidraw/element/types").Theme;
@@ -154,45 +167,18 @@ export declare const actionToggleLinearEditor: {
154
167
  selectedGroupIds: {
155
168
  [groupId: string]: boolean;
156
169
  };
157
- editingGroupId: string | null;
170
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
158
171
  width: number;
159
172
  height: number;
160
173
  offsetTop: number;
161
174
  offsetLeft: number;
162
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
163
- collaborators: Map<import("../types").SocketId, Readonly<{
164
- pointer?: import("../types").CollaboratorPointer | undefined;
165
- button?: "up" | "down" | undefined;
166
- selectedElementIds?: Readonly<{
167
- [id: string]: true;
168
- }> | undefined;
169
- username?: string | null | undefined;
170
- userState?: import("@excalidraw/common").UserIdleState | undefined;
171
- color?: {
172
- background: string;
173
- stroke: string;
174
- } | undefined;
175
- avatarUrl?: string | undefined;
176
- id?: string | undefined;
177
- socketId?: import("../types").SocketId | undefined;
178
- isCurrentUser?: boolean | undefined;
179
- isInCall?: boolean | undefined;
180
- isSpeaking?: boolean | undefined;
181
- isMuted?: boolean | undefined;
182
- }>>;
175
+ fileHandle: FileSystemFileHandle | null;
176
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
183
177
  stats: {
184
178
  open: boolean;
185
179
  panels: number;
186
180
  };
187
- currentChartType: import("@excalidraw/element/types").ChartType;
188
- pasteDialog: {
189
- shown: false;
190
- data: null;
191
- } | {
192
- shown: true;
193
- data: import("../charts").Spreadsheet;
194
- };
195
- showHyperlinkPopup: false | "editor" | "info";
181
+ showHyperlinkPopup: false | "info" | "editor";
196
182
  snapLines: readonly import("../snapping").SnapLine[];
197
183
  originSnapOffset: {
198
184
  x: number;
@@ -202,16 +188,16 @@ export declare const actionToggleLinearEditor: {
202
188
  userToFollow: import("../types").UserToFollow | null;
203
189
  followedBy: Set<import("../types").SocketId>;
204
190
  isCropping: boolean;
205
- croppingElementId: string | null;
191
+ croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
206
192
  searchMatches: Readonly<{
207
- focusedId: string | null;
193
+ focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
208
194
  matches: readonly import("../types").SearchMatch[];
209
195
  }> | null;
210
196
  activeLockedId: string | null;
211
197
  lockedMultiSelections: {
212
198
  [groupId: string]: true;
213
199
  };
214
- stylesPanelMode: "compact" | "full";
200
+ bindMode: import("@excalidraw/element/types").BindMode;
215
201
  };
216
202
  captureUpdate: "IMMEDIATELY";
217
203
  };
@@ -229,7 +215,7 @@ export declare const actionTogglePolygon: {
229
215
  category: "element";
230
216
  };
231
217
  predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: import("../types").AppState, _: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
232
- perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: any, app: import("../types").AppClassProperties): false | {
218
+ perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: unknown, app: import("../types").AppClassProperties): false | {
233
219
  elements: ((Readonly<{
234
220
  id: string;
235
221
  x: number;
@@ -239,43 +225,34 @@ export declare const actionTogglePolygon: {
239
225
  fillStyle: import("@excalidraw/element/types").FillStyle;
240
226
  strokeWidth: number;
241
227
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
242
- roundness: {
228
+ roundness: null | {
243
229
  type: import("@excalidraw/element/types").RoundnessType;
244
- value?: number | undefined;
245
- } | null;
230
+ value?: number;
231
+ };
246
232
  roughness: number;
247
233
  opacity: number;
248
234
  width: number;
249
235
  height: number;
250
- angle: import("../../math/src").Radians;
236
+ angle: import("@excalidraw/math").Radians;
251
237
  seed: number;
252
238
  version: number;
253
239
  versionNonce: number;
254
240
  index: import("@excalidraw/element/types").FractionalIndex | null;
255
241
  isDeleted: boolean;
256
- groupIds: readonly string[];
242
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
257
243
  frameId: string | null;
258
- boundElements: readonly Readonly<{
259
- id: string;
260
- type: "text" | "arrow";
261
- }>[] | null;
244
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
262
245
  updated: number;
263
246
  link: string | null;
264
247
  locked: boolean;
265
- customData?: Record<string, any> | undefined;
248
+ customData?: Record<string, any>;
266
249
  }> & Readonly<{
267
- type: "text";
268
- fontSize: number;
269
- fontFamily: number;
270
- text: string;
271
- textAlign: string;
272
- verticalAlign: string;
273
- containerId: string | null;
274
- originalText: string;
275
- autoResize: boolean;
276
- lineHeight: number & {
277
- _brand: "unitlessLineHeight";
278
- };
250
+ type: "line" | "arrow";
251
+ points: readonly import("@excalidraw/math").LocalPoint[];
252
+ startBinding: import("@excalidraw/element/types").FixedPointBinding | null;
253
+ endBinding: import("@excalidraw/element/types").FixedPointBinding | null;
254
+ startArrowhead: import("@excalidraw/element/types").Arrowhead | null;
255
+ endArrowhead: import("@excalidraw/element/types").Arrowhead | null;
279
256
  }> & {
280
257
  index: import("@excalidraw/element/types").FractionalIndex;
281
258
  }) | (Readonly<{
@@ -287,32 +264,29 @@ export declare const actionTogglePolygon: {
287
264
  fillStyle: import("@excalidraw/element/types").FillStyle;
288
265
  strokeWidth: number;
289
266
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
290
- roundness: {
267
+ roundness: null | {
291
268
  type: import("@excalidraw/element/types").RoundnessType;
292
- value?: number | undefined;
293
- } | null;
269
+ value?: number;
270
+ };
294
271
  roughness: number;
295
272
  opacity: number;
296
273
  width: number;
297
274
  height: number;
298
- angle: import("../../math/src").Radians;
275
+ angle: import("@excalidraw/math").Radians;
299
276
  seed: number;
300
277
  version: number;
301
278
  versionNonce: number;
302
279
  index: import("@excalidraw/element/types").FractionalIndex | null;
303
280
  isDeleted: boolean;
304
- groupIds: readonly string[];
281
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
305
282
  frameId: string | null;
306
- boundElements: readonly Readonly<{
307
- id: string;
308
- type: "text" | "arrow";
309
- }>[] | null;
283
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
310
284
  updated: number;
311
285
  link: string | null;
312
286
  locked: boolean;
313
- customData?: Record<string, any> | undefined;
287
+ customData?: Record<string, any>;
314
288
  }> & {
315
- type: "rectangle";
289
+ type: "selection";
316
290
  } & {
317
291
  index: import("@excalidraw/element/types").FractionalIndex;
318
292
  }) | (Readonly<{
@@ -324,32 +298,29 @@ export declare const actionTogglePolygon: {
324
298
  fillStyle: import("@excalidraw/element/types").FillStyle;
325
299
  strokeWidth: number;
326
300
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
327
- roundness: {
301
+ roundness: null | {
328
302
  type: import("@excalidraw/element/types").RoundnessType;
329
- value?: number | undefined;
330
- } | null;
303
+ value?: number;
304
+ };
331
305
  roughness: number;
332
306
  opacity: number;
333
307
  width: number;
334
308
  height: number;
335
- angle: import("../../math/src").Radians;
309
+ angle: import("@excalidraw/math").Radians;
336
310
  seed: number;
337
311
  version: number;
338
312
  versionNonce: number;
339
313
  index: import("@excalidraw/element/types").FractionalIndex | null;
340
314
  isDeleted: boolean;
341
- groupIds: readonly string[];
315
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
342
316
  frameId: string | null;
343
- boundElements: readonly Readonly<{
344
- id: string;
345
- type: "text" | "arrow";
346
- }>[] | null;
317
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
347
318
  updated: number;
348
319
  link: string | null;
349
320
  locked: boolean;
350
- customData?: Record<string, any> | undefined;
321
+ customData?: Record<string, any>;
351
322
  }> & {
352
- type: "diamond";
323
+ type: "rectangle";
353
324
  } & {
354
325
  index: import("@excalidraw/element/types").FractionalIndex;
355
326
  }) | (Readonly<{
@@ -361,33 +332,29 @@ export declare const actionTogglePolygon: {
361
332
  fillStyle: import("@excalidraw/element/types").FillStyle;
362
333
  strokeWidth: number;
363
334
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
364
- roundness: {
335
+ roundness: null | {
365
336
  type: import("@excalidraw/element/types").RoundnessType;
366
- value?: number | undefined;
367
- } | null;
337
+ value?: number;
338
+ };
368
339
  roughness: number;
369
340
  opacity: number;
370
341
  width: number;
371
342
  height: number;
372
- angle: import("../../math/src").Radians;
343
+ angle: import("@excalidraw/math").Radians;
373
344
  seed: number;
374
345
  version: number;
375
346
  versionNonce: number;
376
347
  index: import("@excalidraw/element/types").FractionalIndex | null;
377
348
  isDeleted: boolean;
378
- groupIds: readonly string[];
349
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
379
350
  frameId: string | null;
380
- boundElements: readonly Readonly<{
381
- id: string;
382
- type: "text" | "arrow";
383
- }>[] | null;
351
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
384
352
  updated: number;
385
353
  link: string | null;
386
354
  locked: boolean;
387
- customData?: Record<string, any> | undefined;
355
+ customData?: Record<string, any>;
388
356
  }> & {
389
- type: "frame";
390
- name: string | null;
357
+ type: "diamond";
391
358
  } & {
392
359
  index: import("@excalidraw/element/types").FractionalIndex;
393
360
  }) | (Readonly<{
@@ -399,33 +366,29 @@ export declare const actionTogglePolygon: {
399
366
  fillStyle: import("@excalidraw/element/types").FillStyle;
400
367
  strokeWidth: number;
401
368
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
402
- roundness: {
369
+ roundness: null | {
403
370
  type: import("@excalidraw/element/types").RoundnessType;
404
- value?: number | undefined;
405
- } | null;
371
+ value?: number;
372
+ };
406
373
  roughness: number;
407
374
  opacity: number;
408
375
  width: number;
409
376
  height: number;
410
- angle: import("../../math/src").Radians;
377
+ angle: import("@excalidraw/math").Radians;
411
378
  seed: number;
412
379
  version: number;
413
380
  versionNonce: number;
414
381
  index: import("@excalidraw/element/types").FractionalIndex | null;
415
382
  isDeleted: boolean;
416
- groupIds: readonly string[];
383
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
417
384
  frameId: string | null;
418
- boundElements: readonly Readonly<{
419
- id: string;
420
- type: "text" | "arrow";
421
- }>[] | null;
385
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
422
386
  updated: number;
423
387
  link: string | null;
424
388
  locked: boolean;
425
- customData?: Record<string, any> | undefined;
389
+ customData?: Record<string, any>;
426
390
  }> & {
427
- type: "magicframe";
428
- name: string | null;
391
+ type: "ellipse";
429
392
  } & {
430
393
  index: import("@excalidraw/element/types").FractionalIndex;
431
394
  }) | (Readonly<{
@@ -437,30 +400,27 @@ export declare const actionTogglePolygon: {
437
400
  fillStyle: import("@excalidraw/element/types").FillStyle;
438
401
  strokeWidth: number;
439
402
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
440
- roundness: {
403
+ roundness: null | {
441
404
  type: import("@excalidraw/element/types").RoundnessType;
442
- value?: number | undefined;
443
- } | null;
405
+ value?: number;
406
+ };
444
407
  roughness: number;
445
408
  opacity: number;
446
409
  width: number;
447
410
  height: number;
448
- angle: import("../../math/src").Radians;
411
+ angle: import("@excalidraw/math").Radians;
449
412
  seed: number;
450
413
  version: number;
451
414
  versionNonce: number;
452
415
  index: import("@excalidraw/element/types").FractionalIndex | null;
453
416
  isDeleted: boolean;
454
- groupIds: readonly string[];
417
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
455
418
  frameId: string | null;
456
- boundElements: readonly Readonly<{
457
- id: string;
458
- type: "text" | "arrow";
459
- }>[] | null;
419
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
460
420
  updated: number;
461
421
  link: string | null;
462
422
  locked: boolean;
463
- customData?: Record<string, any> | undefined;
423
+ customData?: Record<string, any>;
464
424
  }> & Readonly<{
465
425
  type: "embeddable";
466
426
  }> & {
@@ -474,36 +434,32 @@ export declare const actionTogglePolygon: {
474
434
  fillStyle: import("@excalidraw/element/types").FillStyle;
475
435
  strokeWidth: number;
476
436
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
477
- roundness: {
437
+ roundness: null | {
478
438
  type: import("@excalidraw/element/types").RoundnessType;
479
- value?: number | undefined;
480
- } | null;
439
+ value?: number;
440
+ };
481
441
  roughness: number;
482
442
  opacity: number;
483
443
  width: number;
484
444
  height: number;
485
- angle: import("../../math/src").Radians;
445
+ angle: import("@excalidraw/math").Radians;
486
446
  seed: number;
487
447
  version: number;
488
448
  versionNonce: number;
489
449
  index: import("@excalidraw/element/types").FractionalIndex | null;
490
450
  isDeleted: boolean;
491
- groupIds: readonly string[];
451
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
492
452
  frameId: string | null;
493
- boundElements: readonly Readonly<{
494
- id: string;
495
- type: "text" | "arrow";
496
- }>[] | null;
453
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
497
454
  updated: number;
498
455
  link: string | null;
499
456
  locked: boolean;
500
- customData?: Record<string, any> | undefined;
457
+ customData?: Record<string, any>;
501
458
  }> & Readonly<{
502
- type: "image";
503
- fileId: import("@excalidraw/element/types").FileId | null;
504
- status: "pending" | "saved" | "error";
505
- scale: [number, number];
506
- crop: import("@excalidraw/element/types").ImageCrop | null;
459
+ type: "iframe";
460
+ customData?: {
461
+ generationData?: import("@excalidraw/element/types").MagicGenerationData;
462
+ };
507
463
  }> & {
508
464
  index: import("@excalidraw/element/types").FractionalIndex;
509
465
  }) | (Readonly<{
@@ -515,35 +471,33 @@ export declare const actionTogglePolygon: {
515
471
  fillStyle: import("@excalidraw/element/types").FillStyle;
516
472
  strokeWidth: number;
517
473
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
518
- roundness: {
474
+ roundness: null | {
519
475
  type: import("@excalidraw/element/types").RoundnessType;
520
- value?: number | undefined;
521
- } | null;
476
+ value?: number;
477
+ };
522
478
  roughness: number;
523
479
  opacity: number;
524
480
  width: number;
525
481
  height: number;
526
- angle: import("../../math/src").Radians;
482
+ angle: import("@excalidraw/math").Radians;
527
483
  seed: number;
528
484
  version: number;
529
485
  versionNonce: number;
530
486
  index: import("@excalidraw/element/types").FractionalIndex | null;
531
487
  isDeleted: boolean;
532
- groupIds: readonly string[];
488
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
533
489
  frameId: string | null;
534
- boundElements: readonly Readonly<{
535
- id: string;
536
- type: "text" | "arrow";
537
- }>[] | null;
490
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
538
491
  updated: number;
539
492
  link: string | null;
540
493
  locked: boolean;
541
- customData?: Record<string, any> | undefined;
494
+ customData?: Record<string, any>;
542
495
  }> & Readonly<{
543
- type: "iframe";
544
- customData?: {
545
- generationData?: import("@excalidraw/element/types").MagicGenerationData | undefined;
546
- } | undefined;
496
+ type: "image";
497
+ fileId: import("@excalidraw/element/types").FileId | null;
498
+ status: "pending" | "saved" | "error";
499
+ scale: [number, number];
500
+ crop: import("@excalidraw/element/types").ImageCrop | null;
547
501
  }> & {
548
502
  index: import("@excalidraw/element/types").FractionalIndex;
549
503
  }) | (Readonly<{
@@ -555,32 +509,30 @@ export declare const actionTogglePolygon: {
555
509
  fillStyle: import("@excalidraw/element/types").FillStyle;
556
510
  strokeWidth: number;
557
511
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
558
- roundness: {
512
+ roundness: null | {
559
513
  type: import("@excalidraw/element/types").RoundnessType;
560
- value?: number | undefined;
561
- } | null;
514
+ value?: number;
515
+ };
562
516
  roughness: number;
563
517
  opacity: number;
564
518
  width: number;
565
519
  height: number;
566
- angle: import("../../math/src").Radians;
520
+ angle: import("@excalidraw/math").Radians;
567
521
  seed: number;
568
522
  version: number;
569
523
  versionNonce: number;
570
524
  index: import("@excalidraw/element/types").FractionalIndex | null;
571
525
  isDeleted: boolean;
572
- groupIds: readonly string[];
526
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
573
527
  frameId: string | null;
574
- boundElements: readonly Readonly<{
575
- id: string;
576
- type: "text" | "arrow";
577
- }>[] | null;
528
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
578
529
  updated: number;
579
530
  link: string | null;
580
531
  locked: boolean;
581
- customData?: Record<string, any> | undefined;
532
+ customData?: Record<string, any>;
582
533
  }> & {
583
- type: "selection";
534
+ type: "frame";
535
+ name: string | null;
584
536
  } & {
585
537
  index: import("@excalidraw/element/types").FractionalIndex;
586
538
  }) | (Readonly<{
@@ -592,32 +544,30 @@ export declare const actionTogglePolygon: {
592
544
  fillStyle: import("@excalidraw/element/types").FillStyle;
593
545
  strokeWidth: number;
594
546
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
595
- roundness: {
547
+ roundness: null | {
596
548
  type: import("@excalidraw/element/types").RoundnessType;
597
- value?: number | undefined;
598
- } | null;
549
+ value?: number;
550
+ };
599
551
  roughness: number;
600
552
  opacity: number;
601
553
  width: number;
602
554
  height: number;
603
- angle: import("../../math/src").Radians;
555
+ angle: import("@excalidraw/math").Radians;
604
556
  seed: number;
605
557
  version: number;
606
558
  versionNonce: number;
607
559
  index: import("@excalidraw/element/types").FractionalIndex | null;
608
560
  isDeleted: boolean;
609
- groupIds: readonly string[];
561
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
610
562
  frameId: string | null;
611
- boundElements: readonly Readonly<{
612
- id: string;
613
- type: "text" | "arrow";
614
- }>[] | null;
563
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
615
564
  updated: number;
616
565
  link: string | null;
617
566
  locked: boolean;
618
- customData?: Record<string, any> | undefined;
567
+ customData?: Record<string, any>;
619
568
  }> & {
620
- type: "ellipse";
569
+ type: "magicframe";
570
+ name: string | null;
621
571
  } & {
622
572
  index: import("@excalidraw/element/types").FractionalIndex;
623
573
  }) | (Readonly<{
@@ -629,38 +579,40 @@ export declare const actionTogglePolygon: {
629
579
  fillStyle: import("@excalidraw/element/types").FillStyle;
630
580
  strokeWidth: number;
631
581
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
632
- roundness: {
582
+ roundness: null | {
633
583
  type: import("@excalidraw/element/types").RoundnessType;
634
- value?: number | undefined;
635
- } | null;
584
+ value?: number;
585
+ };
636
586
  roughness: number;
637
587
  opacity: number;
638
588
  width: number;
639
589
  height: number;
640
- angle: import("../../math/src").Radians;
590
+ angle: import("@excalidraw/math").Radians;
641
591
  seed: number;
642
592
  version: number;
643
593
  versionNonce: number;
644
594
  index: import("@excalidraw/element/types").FractionalIndex | null;
645
595
  isDeleted: boolean;
646
- groupIds: readonly string[];
596
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
647
597
  frameId: string | null;
648
- boundElements: readonly Readonly<{
649
- id: string;
650
- type: "text" | "arrow";
651
- }>[] | null;
598
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
652
599
  updated: number;
653
600
  link: string | null;
654
601
  locked: boolean;
655
- customData?: Record<string, any> | undefined;
602
+ customData?: Record<string, any>;
656
603
  }> & Readonly<{
657
- type: "line" | "arrow";
658
- points: readonly import("../../math/src").LocalPoint[];
659
- lastCommittedPoint: import("../../math/src").LocalPoint | null;
660
- startBinding: import("@excalidraw/element/types").PointBinding | null;
661
- endBinding: import("@excalidraw/element/types").PointBinding | null;
662
- startArrowhead: import("@excalidraw/element/types").Arrowhead | null;
663
- endArrowhead: import("@excalidraw/element/types").Arrowhead | null;
604
+ type: "text";
605
+ fontSize: number;
606
+ fontFamily: import("@excalidraw/element/types").FontFamilyValues;
607
+ text: string;
608
+ textAlign: import("@excalidraw/element/types").TextAlign;
609
+ verticalAlign: import("@excalidraw/element/types").VerticalAlign;
610
+ containerId: import("@excalidraw/element/types").ExcalidrawGenericElement["id"] | null;
611
+ originalText: string;
612
+ autoResize: boolean;
613
+ lineHeight: number & {
614
+ _brand: "unitlessLineHeight";
615
+ };
664
616
  }> & {
665
617
  index: import("@excalidraw/element/types").FractionalIndex;
666
618
  }) | (Readonly<{
@@ -672,36 +624,32 @@ export declare const actionTogglePolygon: {
672
624
  fillStyle: import("@excalidraw/element/types").FillStyle;
673
625
  strokeWidth: number;
674
626
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
675
- roundness: {
627
+ roundness: null | {
676
628
  type: import("@excalidraw/element/types").RoundnessType;
677
- value?: number | undefined;
678
- } | null;
629
+ value?: number;
630
+ };
679
631
  roughness: number;
680
632
  opacity: number;
681
633
  width: number;
682
634
  height: number;
683
- angle: import("../../math/src").Radians;
635
+ angle: import("@excalidraw/math").Radians;
684
636
  seed: number;
685
637
  version: number;
686
638
  versionNonce: number;
687
639
  index: import("@excalidraw/element/types").FractionalIndex | null;
688
640
  isDeleted: boolean;
689
- groupIds: readonly string[];
641
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
690
642
  frameId: string | null;
691
- boundElements: readonly Readonly<{
692
- id: string;
693
- type: "text" | "arrow";
694
- }>[] | null;
643
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
695
644
  updated: number;
696
645
  link: string | null;
697
646
  locked: boolean;
698
- customData?: Record<string, any> | undefined;
647
+ customData?: Record<string, any>;
699
648
  }> & Readonly<{
700
649
  type: "freedraw";
701
- points: readonly import("../../math/src").LocalPoint[];
650
+ points: readonly import("@excalidraw/math").LocalPoint[];
702
651
  pressures: readonly number[];
703
652
  simulatePressure: boolean;
704
- lastCommittedPoint: import("../../math/src").LocalPoint | null;
705
653
  }> & {
706
654
  index: import("@excalidraw/element/types").FractionalIndex;
707
655
  }))[];