@excalidraw/common 0.18.0-c6f8ef9 → 0.18.0-d1cff91

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