@zsviczian/excalidraw 0.18.0-4 → 0.18.0-6

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 (388) hide show
  1. package/dist/excalidraw.development.js +2079 -2266
  2. package/dist/excalidraw.production.min.js +1 -1
  3. package/dist/styles.development.css +46 -49
  4. package/dist/styles.production.css +7 -7
  5. package/package.json +14 -2
  6. package/types/{excalidraw/binaryheap.d.ts → common/src/binary-heap.d.ts} +12 -12
  7. package/types/{excalidraw → common/src}/colors.d.ts +62 -61
  8. package/types/{excalidraw → common/src}/constants.d.ts +336 -333
  9. package/types/{excalidraw/fonts/FontMetadata.d.ts → common/src/font-metadata.d.ts} +46 -38
  10. package/types/common/src/index.d.ts +11 -0
  11. package/types/{excalidraw → common/src}/keys.d.ts +189 -189
  12. package/types/{excalidraw → common/src}/points.d.ts +9 -7
  13. package/types/common/src/promise-pool.d.ts +6 -0
  14. package/types/{excalidraw → common/src}/queue.d.ts +9 -9
  15. package/types/{excalidraw → common/src}/random.d.ts +4 -4
  16. package/types/{excalidraw/data → common/src}/url.d.ts +7 -7
  17. package/types/{excalidraw → common/src}/utility-types.d.ts +32 -32
  18. package/types/{excalidraw → common/src}/utils.d.ts +254 -256
  19. package/types/{excalidraw/scene → element/src}/Shape.d.ts +17 -17
  20. package/types/{excalidraw/scene → element/src}/ShapeCache.d.ts +25 -25
  21. package/types/{excalidraw → element/src}/align.d.ts +7 -7
  22. package/types/{excalidraw/element → element/src}/binding.d.ts +101 -100
  23. package/types/{excalidraw/element → element/src}/bounds.d.ts +81 -76
  24. package/types/{excalidraw/element → element/src}/collision.d.ts +26 -26
  25. package/types/{excalidraw/scene → element/src}/comparisons.d.ts +8 -8
  26. package/types/{excalidraw/element → element/src}/containerCache.d.ts +11 -11
  27. package/types/{excalidraw/element → element/src}/cropElement.d.ts +19 -19
  28. package/types/{excalidraw/element → element/src}/distance.d.ts +3 -3
  29. package/types/{excalidraw → element/src}/distribute.d.ts +6 -6
  30. package/types/{excalidraw/element → element/src}/dragElements.d.ts +32 -32
  31. package/types/element/src/duplicate.d.ts +66 -0
  32. package/types/{excalidraw/renderer → element/src}/easingFunctions.d.ts +6 -6
  33. package/types/{excalidraw/element → element/src}/elbowArrow.d.ts +17 -17
  34. package/types/{excalidraw/element → element/src}/elementLink.d.ts +13 -13
  35. package/types/element/src/embeddable.d.ts +10 -0
  36. package/types/{excalidraw/element → element/src}/flowchart.d.ts +25 -25
  37. package/types/{excalidraw → element/src}/fractionalIndex.d.ts +51 -48
  38. package/types/{excalidraw → element/src}/frame.d.ts +69 -69
  39. package/types/{excalidraw → element/src}/groups.d.ts +33 -33
  40. package/types/{excalidraw/element → element/src}/heading.d.ts +15 -16
  41. package/types/{excalidraw/element → element/src}/image.d.ts +32 -32
  42. package/types/{excalidraw/element → element/src}/index.d.ts +16 -26
  43. package/types/{excalidraw/element → element/src}/linearElementEditor.d.ts +129 -129
  44. package/types/{excalidraw/element → element/src}/mutateElement.d.ts +13 -13
  45. package/types/{excalidraw/element → element/src}/newElement.d.ts +62 -102
  46. package/types/{excalidraw/renderer → element/src}/renderElement.d.ts +28 -28
  47. package/types/{excalidraw/element → element/src}/resizeElements.d.ts +38 -38
  48. package/types/{excalidraw/element → element/src}/resizeTest.d.ts +15 -15
  49. package/types/{excalidraw/scene → element/src}/selection.d.ts +32 -32
  50. package/types/element/src/shapes.d.ts +23 -0
  51. package/types/{excalidraw/element → element/src}/showSelectedShapeActions.d.ts +3 -3
  52. package/types/{excalidraw/element → element/src}/sizeHelpers.d.ts +35 -35
  53. package/types/{excalidraw/element → element/src}/sortElements.d.ts +2 -2
  54. package/types/{excalidraw/element → element/src}/textElement.d.ts +39 -39
  55. package/types/{excalidraw/element → element/src}/textMeasurements.d.ts +41 -41
  56. package/types/{excalidraw/element → element/src}/textWrapping.d.ts +13 -13
  57. package/types/{excalidraw/element → element/src}/transformHandles.d.ts +55 -55
  58. package/types/{excalidraw/element → element/src}/typeChecks.d.ts +39 -39
  59. package/types/{excalidraw/element → element/src}/types.d.ts +285 -285
  60. package/types/{excalidraw/element → element/src}/utils.d.ts +21 -21
  61. package/types/{excalidraw → element/src}/zindex.d.ts +7 -6
  62. package/types/excalidraw/actions/actionAddToLibrary.d.ts +632 -629
  63. package/types/excalidraw/actions/actionAlign.d.ts +109 -109
  64. package/types/excalidraw/actions/actionBoundText.d.ts +458 -456
  65. package/types/excalidraw/actions/actionCanvas.d.ts +3293 -3070
  66. package/types/excalidraw/actions/actionClipboard.d.ts +1380 -1374
  67. package/types/excalidraw/actions/actionCropEditor.d.ts +223 -222
  68. package/types/excalidraw/actions/actionDeleteSelected.d.ts +671 -668
  69. package/types/excalidraw/actions/actionDistribute.d.ts +34 -34
  70. package/types/excalidraw/actions/actionDuplicateSelection.d.ts +17 -21
  71. package/types/excalidraw/actions/actionElementLink.d.ts +245 -244
  72. package/types/excalidraw/actions/actionElementLock.d.ts +445 -444
  73. package/types/excalidraw/{element/embeddable.d.ts → actions/actionEmbeddable.d.ts} +220 -229
  74. package/types/excalidraw/actions/actionExport.d.ts +1962 -1953
  75. package/types/excalidraw/actions/actionFinalize.d.ts +427 -425
  76. package/types/excalidraw/actions/actionFlip.d.ts +34 -34
  77. package/types/excalidraw/actions/actionFrame.d.ts +1388 -1384
  78. package/types/excalidraw/actions/actionGroup.d.ts +456 -454
  79. package/types/excalidraw/actions/actionHistory.d.ts +7 -7
  80. package/types/excalidraw/actions/actionLinearEditor.d.ts +224 -223
  81. package/types/excalidraw/actions/actionLink.d.ts +224 -223
  82. package/types/excalidraw/actions/actionMenu.d.ts +652 -649
  83. package/types/excalidraw/actions/actionNavigate.d.ts +432 -430
  84. package/types/excalidraw/actions/actionProperties.d.ts +3291 -3276
  85. package/types/excalidraw/actions/actionSelectAll.d.ts +223 -222
  86. package/types/excalidraw/actions/actionStyles.d.ts +237 -236
  87. package/types/excalidraw/actions/actionTextAutoResize.d.ts +17 -17
  88. package/types/excalidraw/actions/actionToggleGridMode.d.ts +226 -225
  89. package/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +224 -223
  90. package/types/excalidraw/actions/actionToggleSearchMenu.d.ts +422 -420
  91. package/types/excalidraw/actions/actionToggleStats.d.ts +223 -223
  92. package/types/excalidraw/actions/actionToggleViewMode.d.ts +224 -224
  93. package/types/excalidraw/actions/actionToggleZenMode.d.ts +224 -224
  94. package/types/excalidraw/actions/actionZindex.d.ts +74 -74
  95. package/types/excalidraw/actions/index.d.ts +28 -27
  96. package/types/excalidraw/actions/manager.d.ts +21 -21
  97. package/types/excalidraw/actions/register.d.ts +5 -5
  98. package/types/excalidraw/actions/shortcuts.d.ts +4 -4
  99. package/types/excalidraw/actions/types.d.ts +46 -46
  100. package/types/excalidraw/analytics.d.ts +1 -1
  101. package/types/excalidraw/animated-trail.d.ts +39 -33
  102. package/types/excalidraw/animation-frame-handler.d.ts +16 -16
  103. package/types/excalidraw/appState.d.ts +90 -89
  104. package/types/excalidraw/change.d.ts +191 -191
  105. package/types/excalidraw/charts.d.ts +27 -27
  106. package/types/excalidraw/clients.d.ts +14 -14
  107. package/types/excalidraw/clipboard.d.ts +66 -66
  108. package/types/excalidraw/components/Actions.d.ts +35 -35
  109. package/types/excalidraw/components/ActiveConfirmDialog.d.ts +4 -4
  110. package/types/excalidraw/components/App.d.ts +559 -561
  111. package/types/excalidraw/components/Avatar.d.ts +11 -11
  112. package/types/excalidraw/components/BraveMeasureTextError.d.ts +2 -2
  113. package/types/excalidraw/components/Button.d.ts +17 -17
  114. package/types/excalidraw/components/ButtonIcon.d.ts +15 -15
  115. package/types/excalidraw/components/ButtonIconCycle.d.ts +11 -11
  116. package/types/excalidraw/components/ButtonIconSelect.d.ts +20 -20
  117. package/types/excalidraw/components/ButtonSelect.d.ts +9 -9
  118. package/types/excalidraw/components/ButtonSeparator.d.ts +1 -1
  119. package/types/excalidraw/components/Card.d.ts +6 -6
  120. package/types/excalidraw/components/CheckboxItem.d.ts +8 -8
  121. package/types/excalidraw/components/ColorPicker/ColorInput.d.ts +9 -9
  122. package/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +19 -19
  123. package/types/excalidraw/components/ColorPicker/CustomColorList.d.ts +8 -8
  124. package/types/excalidraw/components/ColorPicker/HotkeyLabel.d.ts +7 -8
  125. package/types/excalidraw/components/ColorPicker/Picker.d.ts +18 -18
  126. package/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +10 -10
  127. package/types/excalidraw/components/ColorPicker/PickerHeading.d.ts +5 -5
  128. package/types/excalidraw/components/ColorPicker/ShadeList.d.ts +8 -8
  129. package/types/excalidraw/components/ColorPicker/TopPicks.d.ts +9 -9
  130. package/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +21 -21
  131. package/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +20 -20
  132. package/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +18 -18
  133. package/types/excalidraw/components/CommandPalette/defaultCommandPaletteItems.d.ts +2 -2
  134. package/types/excalidraw/components/CommandPalette/types.d.ts +25 -25
  135. package/types/excalidraw/components/ConfirmDialog.d.ts +10 -10
  136. package/types/excalidraw/components/ContextMenu.d.ts +16 -16
  137. package/types/excalidraw/components/DarkModeToggle.d.ts +7 -7
  138. package/types/excalidraw/components/DefaultSidebar.d.ts +30 -30
  139. package/types/excalidraw/components/DiagramToCodePlugin/DiagramToCodePlugin.d.ts +4 -4
  140. package/types/excalidraw/components/Dialog.d.ts +13 -13
  141. package/types/excalidraw/components/DialogActionButton.d.ts +10 -10
  142. package/types/excalidraw/{element → components}/ElementCanvasButtons.d.ts +7 -7
  143. package/types/excalidraw/components/ElementLinkDialog.d.ts +11 -11
  144. package/types/excalidraw/components/ErrorDialog.d.ts +5 -5
  145. package/types/excalidraw/components/ExcalidrawLogo.d.ts +15 -15
  146. package/types/excalidraw/components/EyeDropper.d.ts +27 -27
  147. package/types/excalidraw/components/FilledButton.d.ts +18 -18
  148. package/types/excalidraw/components/FixedSideContainer.d.ts +9 -9
  149. package/types/excalidraw/components/FollowMode/FollowMode.d.ts +10 -10
  150. package/types/excalidraw/components/FontPicker/FontPicker.d.ts +21 -21
  151. package/types/excalidraw/components/FontPicker/FontPickerList.d.ts +26 -26
  152. package/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +6 -6
  153. package/types/excalidraw/components/FontPicker/keyboardNavHandlers.d.ts +13 -13
  154. package/types/excalidraw/components/HandButton.d.ts +10 -10
  155. package/types/excalidraw/components/HelpButton.d.ts +7 -7
  156. package/types/excalidraw/components/HelpDialog.d.ts +4 -4
  157. package/types/excalidraw/components/HintViewer.d.ts +10 -10
  158. package/types/excalidraw/components/IconPicker.d.ts +15 -15
  159. package/types/excalidraw/components/ImageExportDialog.d.ts +14 -14
  160. package/types/excalidraw/components/InitializeApp.d.ts +10 -10
  161. package/types/excalidraw/components/InlineIcon.d.ts +3 -3
  162. package/types/excalidraw/components/Island.d.ts +10 -10
  163. package/types/excalidraw/components/JSONExportDialog.d.ts +15 -15
  164. package/types/excalidraw/components/LaserPointerButton.d.ts +10 -10
  165. package/types/excalidraw/components/LayerUI.d.ts +31 -31
  166. package/types/excalidraw/components/LibraryMenu.d.ts +10 -10
  167. package/types/excalidraw/components/LibraryMenuBrowseButton.d.ts +7 -7
  168. package/types/excalidraw/components/LibraryMenuControlButtons.d.ts +9 -9
  169. package/types/excalidraw/components/LibraryMenuHeaderContent.d.ts +17 -17
  170. package/types/excalidraw/components/LibraryMenuItems.d.ts +14 -14
  171. package/types/excalidraw/components/LibraryMenuSection.d.ts +23 -23
  172. package/types/excalidraw/components/LibraryUnit.d.ts +14 -14
  173. package/types/excalidraw/components/LoadingMessage.d.ts +5 -5
  174. package/types/excalidraw/components/LockButton.d.ts +10 -10
  175. package/types/excalidraw/components/MagicButton.d.ts +10 -10
  176. package/types/excalidraw/components/MobileMenu.d.ts +25 -25
  177. package/types/excalidraw/components/Modal.d.ts +14 -14
  178. package/types/excalidraw/components/OverwriteConfirm/OverwriteConfirm.d.ts +17 -17
  179. package/types/excalidraw/components/OverwriteConfirm/OverwriteConfirmActions.d.ts +17 -17
  180. package/types/excalidraw/components/OverwriteConfirm/OverwriteConfirmState.d.ts +22 -22
  181. package/types/excalidraw/components/Paragraph.d.ts +4 -4
  182. package/types/excalidraw/components/PasteChartDialog.d.ts +8 -8
  183. package/types/excalidraw/components/PenModeButton.d.ts +12 -12
  184. package/types/excalidraw/components/Popover.d.ts +15 -15
  185. package/types/excalidraw/components/ProjectName.d.ts +10 -10
  186. package/types/excalidraw/components/PropertiesPopover.d.ts +15 -15
  187. package/types/excalidraw/components/PublishLibrary.d.ts +16 -16
  188. package/types/excalidraw/components/QuickSearch.d.ts +9 -9
  189. package/types/excalidraw/components/RadioGroup.d.ts +13 -13
  190. package/types/excalidraw/components/Range.d.ts +8 -8
  191. package/types/excalidraw/components/SVGLayer.d.ts +7 -7
  192. package/types/excalidraw/components/ScrollableList.d.ts +8 -8
  193. package/types/excalidraw/components/SearchMenu.d.ts +5 -5
  194. package/types/excalidraw/components/Section.d.ts +6 -6
  195. package/types/excalidraw/components/ShareableLinkDialog.d.ts +7 -7
  196. package/types/excalidraw/components/Sidebar/Sidebar.d.ts +76 -76
  197. package/types/excalidraw/components/Sidebar/SidebarHeader.d.ts +7 -7
  198. package/types/excalidraw/components/Sidebar/SidebarTab.d.ts +8 -8
  199. package/types/excalidraw/components/Sidebar/SidebarTabTrigger.d.ts +9 -9
  200. package/types/excalidraw/components/Sidebar/SidebarTabTriggers.d.ts +6 -6
  201. package/types/excalidraw/components/Sidebar/SidebarTabs.d.ts +6 -6
  202. package/types/excalidraw/components/Sidebar/SidebarTrigger.d.ts +6 -6
  203. package/types/excalidraw/components/Sidebar/common.d.ts +34 -34
  204. package/types/excalidraw/components/Spinner.d.ts +8 -8
  205. package/types/excalidraw/components/Stack.d.ts +15 -15
  206. package/types/excalidraw/components/Stats/Angle.d.ts +11 -11
  207. package/types/excalidraw/components/Stats/CanvasGrid.d.ts +10 -10
  208. package/types/excalidraw/components/Stats/CanvasGridSize.d.ts +10 -10
  209. package/types/excalidraw/components/Stats/Collapsible.d.ts +9 -9
  210. package/types/excalidraw/components/Stats/Dimension.d.ts +11 -11
  211. package/types/excalidraw/components/Stats/DragInput.d.ts +34 -34
  212. package/types/excalidraw/components/Stats/FontSize.d.ts +11 -11
  213. package/types/excalidraw/components/Stats/MultiAngle.d.ts +11 -11
  214. package/types/excalidraw/components/Stats/MultiDimension.d.ts +14 -14
  215. package/types/excalidraw/components/Stats/MultiFontSize.d.ts +12 -12
  216. package/types/excalidraw/components/Stats/MultiPosition.d.ts +14 -14
  217. package/types/excalidraw/components/Stats/Position.d.ts +12 -12
  218. package/types/excalidraw/components/Stats/index.d.ts +35 -35
  219. package/types/excalidraw/components/Stats/utils.d.ts +26 -26
  220. package/types/excalidraw/components/Switch.d.ts +9 -9
  221. package/types/excalidraw/components/TTDDialog/MermaidToExcalidraw.d.ts +8 -8
  222. package/types/excalidraw/components/TTDDialog/MermaidToExcalidrawLib.d.ts +10 -10
  223. package/types/excalidraw/components/TTDDialog/TTDDialog.d.ts +29 -29
  224. package/types/excalidraw/components/TTDDialog/TTDDialogInput.d.ts +9 -9
  225. package/types/excalidraw/components/TTDDialog/TTDDialogOutput.d.ts +7 -7
  226. package/types/excalidraw/components/TTDDialog/TTDDialogPanel.d.ts +17 -17
  227. package/types/excalidraw/components/TTDDialog/TTDDialogPanels.d.ts +4 -4
  228. package/types/excalidraw/components/TTDDialog/TTDDialogSubmitShortcut.d.ts +1 -1
  229. package/types/excalidraw/components/TTDDialog/TTDDialogTab.d.ts +7 -7
  230. package/types/excalidraw/components/TTDDialog/TTDDialogTabTrigger.d.ts +8 -8
  231. package/types/excalidraw/components/TTDDialog/TTDDialogTabTriggers.d.ts +6 -6
  232. package/types/excalidraw/components/TTDDialog/TTDDialogTabs.d.ts +11 -11
  233. package/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +9 -9
  234. package/types/excalidraw/components/TTDDialog/common.d.ts +32 -32
  235. package/types/excalidraw/components/TextField.d.ts +21 -21
  236. package/types/excalidraw/components/Toast.d.ts +9 -9
  237. package/types/excalidraw/components/ToolButton.d.ts +49 -49
  238. package/types/excalidraw/components/Tooltip.d.ts +18 -18
  239. package/types/excalidraw/components/Trans.d.ts +9 -9
  240. package/types/excalidraw/components/UserList.d.ts +18 -18
  241. package/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +29 -29
  242. package/types/excalidraw/components/canvases/NewElementCanvas.d.ts +14 -14
  243. package/types/excalidraw/components/canvases/StaticCanvas.d.ts +19 -19
  244. package/types/excalidraw/components/canvases/index.d.ts +3 -3
  245. package/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +86 -86
  246. package/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +15 -15
  247. package/types/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +11 -11
  248. package/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +46 -46
  249. package/types/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +8 -8
  250. package/types/excalidraw/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +17 -17
  251. package/types/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.d.ts +7 -7
  252. package/types/excalidraw/components/dropdownMenu/DropdownMenuItemLink.d.ts +16 -16
  253. package/types/excalidraw/components/dropdownMenu/DropdownMenuSeparator.d.ts +5 -5
  254. package/types/excalidraw/components/dropdownMenu/DropdownMenuTrigger.d.ts +10 -10
  255. package/types/excalidraw/components/dropdownMenu/common.d.ts +6 -6
  256. package/types/excalidraw/components/dropdownMenu/dropdownMenuUtils.d.ts +3 -3
  257. package/types/excalidraw/components/footer/Footer.d.ts +12 -12
  258. package/types/excalidraw/components/footer/FooterCenter.d.ts +8 -8
  259. package/types/excalidraw/components/hoc/withInternalFallback.d.ts +4 -4
  260. package/types/excalidraw/components/hyperlink/Hyperlink.d.ts +18 -18
  261. package/types/excalidraw/components/hyperlink/helpers.d.ts +9 -9
  262. package/types/excalidraw/components/icons.d.ts +224 -223
  263. package/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +9 -9
  264. package/types/excalidraw/components/main-menu/DefaultItems.d.ts +64 -64
  265. package/types/excalidraw/components/main-menu/MainMenu.d.ts +83 -80
  266. package/types/excalidraw/components/shapes.d.ts +62 -0
  267. package/types/excalidraw/components/welcome-screen/WelcomeScreen.Center.d.ts +60 -60
  268. package/types/excalidraw/components/welcome-screen/WelcomeScreen.Hints.d.ts +19 -19
  269. package/types/excalidraw/components/welcome-screen/WelcomeScreen.d.ts +86 -86
  270. package/types/excalidraw/context/tunnels.d.ts +21 -21
  271. package/types/excalidraw/context/ui-appState.d.ts +4 -4
  272. package/types/excalidraw/cursor.d.ts +6 -6
  273. package/types/excalidraw/data/EditorLocalStorage.d.ts +8 -8
  274. package/types/excalidraw/data/ai/types.d.ts +242 -242
  275. package/types/excalidraw/data/blob.d.ts +53 -53
  276. package/types/excalidraw/data/encode.d.ts +55 -55
  277. package/types/excalidraw/data/encryption.d.ts +9 -9
  278. package/types/excalidraw/data/filesystem.d.ts +21 -21
  279. package/types/excalidraw/data/image.d.ts +9 -9
  280. package/types/excalidraw/data/index.d.ts +22 -22
  281. package/types/excalidraw/data/json.d.ts +16 -16
  282. package/types/excalidraw/data/library.d.ts +112 -112
  283. package/types/excalidraw/data/reconcile.d.ts +6 -6
  284. package/types/excalidraw/data/resave.d.ts +5 -5
  285. package/types/excalidraw/data/restore.d.ts +21 -21
  286. package/types/excalidraw/data/transform.d.ts +81 -81
  287. package/types/excalidraw/data/types.d.ts +45 -45
  288. package/types/excalidraw/deburr.d.ts +1 -1
  289. package/types/excalidraw/dist/excalidraw.development.d.ts +2 -2
  290. package/types/excalidraw/dist/excalidraw.production.min.d.ts +3 -3
  291. package/types/excalidraw/editor-jotai.d.ts +56 -56
  292. package/types/excalidraw/emitter.d.ts +16 -16
  293. package/types/excalidraw/entry.d.ts +1 -1
  294. package/types/excalidraw/env.d.cts +1 -1
  295. package/types/excalidraw/env.d.ts +1 -1
  296. package/types/excalidraw/eraser/index.d.ts +14 -0
  297. package/types/excalidraw/errors.d.ts +29 -32
  298. package/types/excalidraw/fonts/Cascadia/index.d.ts +2 -2
  299. package/types/excalidraw/fonts/ComicShanns/index.d.ts +2 -2
  300. package/types/excalidraw/fonts/Emoji/index.d.ts +2 -2
  301. package/types/excalidraw/fonts/ExcalidrawFontFace.d.ts +29 -29
  302. package/types/excalidraw/fonts/Excalifont/index.d.ts +2 -2
  303. package/types/excalidraw/fonts/Fonts.d.ts +90 -100
  304. package/types/excalidraw/fonts/Helvetica/index.d.ts +2 -2
  305. package/types/excalidraw/fonts/Liberation/index.d.ts +2 -2
  306. package/types/excalidraw/fonts/Lilita/index.d.ts +2 -2
  307. package/types/excalidraw/fonts/Nunito/index.d.ts +2 -2
  308. package/types/excalidraw/fonts/Virgil/index.d.ts +2 -2
  309. package/types/excalidraw/fonts/Xiaolai/index.d.ts +8 -8
  310. package/types/excalidraw/fonts/index.d.ts +1 -1
  311. package/types/excalidraw/gesture.d.ts +6 -6
  312. package/types/excalidraw/history.d.ts +40 -40
  313. package/types/excalidraw/hooks/useCallbackRefState.d.ts +1 -1
  314. package/types/excalidraw/hooks/useCopiedIndicator.d.ts +5 -5
  315. package/types/excalidraw/hooks/useCreatePortalContainer.d.ts +7 -7
  316. package/types/excalidraw/hooks/useEmitter.d.ts +2 -2
  317. package/types/excalidraw/hooks/useLibraryItemSvg.d.ts +11 -11
  318. package/types/excalidraw/hooks/useOutsideClick.d.ts +19 -19
  319. package/types/excalidraw/hooks/useScrollPosition.d.ts +1 -1
  320. package/types/excalidraw/hooks/useStable.d.ts +1 -1
  321. package/types/excalidraw/hooks/useStableCallback.d.ts +4 -4
  322. package/types/excalidraw/hooks/useTransition.d.ts +2 -2
  323. package/types/excalidraw/i18n.d.ts +24 -24
  324. package/types/excalidraw/index-node.d.ts +1 -1
  325. package/types/excalidraw/index.d.ts +59 -65
  326. package/types/excalidraw/laser-trails.d.ts +20 -20
  327. package/types/excalidraw/lasso/index.d.ts +15 -0
  328. package/types/excalidraw/lasso/utils.d.ts +12 -0
  329. package/types/excalidraw/main.d.ts +2 -2
  330. package/types/excalidraw/mermaid.d.ts +2 -2
  331. package/types/excalidraw/obsidianUtils.d.ts +28 -28
  332. package/types/excalidraw/polyfill.d.ts +2 -2
  333. package/types/excalidraw/publicPath.d.ts +1 -1
  334. package/types/excalidraw/reactUtils.d.ts +14 -14
  335. package/types/excalidraw/renderer/helpers.d.ts +13 -13
  336. package/types/excalidraw/renderer/interactiveScene.d.ts +20 -20
  337. package/types/excalidraw/renderer/renderNewElementScene.d.ts +7 -7
  338. package/types/excalidraw/renderer/renderSnaps.d.ts +2 -2
  339. package/types/excalidraw/renderer/roundRect.d.ts +11 -11
  340. package/types/excalidraw/renderer/staticScene.d.ts +11 -11
  341. package/types/excalidraw/renderer/staticSvgScene.d.ts +5 -5
  342. package/types/excalidraw/scene/Renderer.d.ts +28 -28
  343. package/types/excalidraw/scene/Scene.d.ts +79 -79
  344. package/types/excalidraw/scene/export.d.ts +37 -37
  345. package/types/excalidraw/scene/index.d.ts +4 -4
  346. package/types/excalidraw/scene/normalize.d.ts +4 -4
  347. package/types/excalidraw/scene/scroll.d.ts +23 -23
  348. package/types/excalidraw/scene/scrollbars.d.ts +12 -12
  349. package/types/excalidraw/scene/types.d.ts +120 -120
  350. package/types/excalidraw/scene/zoom.d.ts +12 -12
  351. package/types/excalidraw/snapping.d.ts +111 -112
  352. package/types/excalidraw/store.d.ts +129 -129
  353. package/types/excalidraw/subset/harfbuzz/harfbuzz-bindings.d.ts +45 -45
  354. package/types/excalidraw/subset/harfbuzz/harfbuzz-loader.d.ts +13 -13
  355. package/types/excalidraw/subset/harfbuzz/harfbuzz-wasm.d.ts +2 -2
  356. package/types/excalidraw/subset/subset-main.d.ts +12 -12
  357. package/types/excalidraw/subset/subset-shared.chunk.d.ts +32 -32
  358. package/types/excalidraw/subset/subset-worker.chunk.d.ts +15 -15
  359. package/types/excalidraw/subset/woff2/woff2-bindings.d.ts +31 -31
  360. package/types/excalidraw/subset/woff2/woff2-loader.d.ts +14 -14
  361. package/types/excalidraw/subset/woff2/woff2-wasm.d.ts +2 -2
  362. package/types/excalidraw/types.d.ts +751 -753
  363. package/types/excalidraw/visualdebug.d.ts +41 -41
  364. package/types/excalidraw/webpack.dev.config.d.ts +114 -112
  365. package/types/excalidraw/webpack.prod.config.d.ts +128 -126
  366. package/types/excalidraw/workers.d.ts +36 -36
  367. package/types/excalidraw/{element → wysiwyg}/textWysiwyg.d.ts +22 -22
  368. package/types/math/{angle.d.ts → src/angle.d.ts} +17 -17
  369. package/types/math/{curve.d.ts → src/curve.d.ts} +40 -40
  370. package/types/math/{ellipse.d.ts → src/ellipse.d.ts} +44 -44
  371. package/types/math/{index.d.ts → src/index.d.ts} +12 -12
  372. package/types/math/{line.d.ts → src/line.d.ts} +17 -17
  373. package/types/math/{point.d.ts → src/point.d.ts} +122 -122
  374. package/types/math/{polygon.d.ts → src/polygon.d.ts} +6 -5
  375. package/types/math/{range.d.ts → src/range.d.ts} +44 -44
  376. package/types/math/{rectangle.d.ts → src/rectangle.d.ts} +3 -3
  377. package/types/math/{segment.d.ts → src/segment.d.ts} +39 -39
  378. package/types/math/{triangle.d.ts → src/triangle.d.ts} +11 -11
  379. package/types/math/{types.d.ts → src/types.d.ts} +106 -105
  380. package/types/math/{utils.d.ts → src/utils.d.ts} +7 -7
  381. package/types/math/{vector.d.ts → src/vector.d.ts} +88 -88
  382. package/types/utils/{bbox.d.ts → src/bbox.d.ts} +9 -9
  383. package/types/utils/{collision.d.ts → src/collision.d.ts} +8 -9
  384. package/types/utils/{export.d.ts → src/export.d.ts} +35 -45
  385. package/types/utils/{index.d.ts → src/index.d.ts} +4 -4
  386. package/types/utils/{geometry → src}/shape.d.ts +58 -71
  387. package/types/utils/{withinBounds.d.ts → src/withinBounds.d.ts} +19 -19
  388. package/types/excalidraw/shapes.d.ts +0 -85
@@ -1,1374 +1,1380 @@
1
- export declare const actionCopy: {
2
- name: "copy";
3
- label: string;
4
- icon: import("react/jsx-runtime").JSX.Element;
5
- trackEvent: {
6
- category: "element";
7
- };
8
- perform: (elements: readonly import("../element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, event: ClipboardEvent | null, app: import("../types").AppClassProperties) => Promise<{
9
- captureUpdate: "EVENTUALLY";
10
- appState: {
11
- errorMessage: any;
12
- contextMenu: {
13
- items: import("../components/ContextMenu").ContextMenuItems;
14
- top: number;
15
- left: number;
16
- } | null;
17
- showWelcomeScreen: boolean;
18
- isLoading: boolean;
19
- activeEmbeddable: {
20
- element: import("../element/types").NonDeletedExcalidrawElement;
21
- state: "active" | "hover";
22
- } | null;
23
- newElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawNonSelectionElement> | null;
24
- resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
25
- multiElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawLinearElement> | null;
26
- selectionElement: import("../element/types").NonDeletedExcalidrawElement | null;
27
- isBindingEnabled: boolean;
28
- startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
29
- suggestedBindings: import("../element/binding").SuggestedBinding[];
30
- frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
31
- frameRendering: {
32
- enabled: boolean;
33
- name: boolean;
34
- outline: boolean;
35
- clip: boolean;
36
- };
37
- editingFrame: string | null;
38
- elementsToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawElement>[] | null;
39
- editingTextElement: import("../element/types").NonDeletedExcalidrawElement | null;
40
- editingLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
41
- activeTool: {
42
- lastActiveTool: import("../types").ActiveTool | null;
43
- locked: boolean;
44
- } & import("../types").ActiveTool;
45
- penMode: boolean;
46
- penDetected: boolean;
47
- exportBackground: boolean;
48
- exportEmbedScene: boolean;
49
- exportWithDarkMode: boolean;
50
- exportScale: number;
51
- currentItemStrokeColor: string;
52
- currentItemBackgroundColor: string;
53
- currentItemFillStyle: import("../element/types").FillStyle;
54
- currentItemStrokeWidth: number;
55
- currentItemStrokeStyle: import("../element/types").StrokeStyle;
56
- currentItemRoughness: number;
57
- currentItemOpacity: number;
58
- currentItemFontFamily: number;
59
- currentItemFontSize: number;
60
- currentItemTextAlign: string;
61
- currentItemStartArrowhead: import("../element/types").Arrowhead | null;
62
- currentItemEndArrowhead: import("../element/types").Arrowhead | null;
63
- currentHoveredFontFamily: number | null;
64
- currentItemRoundness: import("../element/types").StrokeRoundness;
65
- currentItemArrowType: "round" | "sharp" | "elbow";
66
- viewBackgroundColor: string;
67
- scrollX: number;
68
- scrollY: number;
69
- cursorButton: "up" | "down";
70
- scrolledOutside: boolean;
71
- name: string | null;
72
- isResizing: boolean;
73
- isRotating: boolean;
74
- zoom: Readonly<{
75
- value: import("../types").NormalizedZoomValue;
76
- }>;
77
- openMenu: "canvas" | "shape" | null;
78
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
79
- openSidebar: {
80
- name: string;
81
- tab?: string | undefined;
82
- } | null;
83
- openDialog: {
84
- name: "help" | "imageExport" | "jsonExport";
85
- } | {
86
- name: "ttd";
87
- tab: "mermaid" | "text-to-diagram";
88
- } | {
89
- name: "commandPalette";
90
- } | {
91
- name: "elementLinkSelector";
92
- sourceElementId: string;
93
- } | null;
94
- defaultSidebarDockedPreference: boolean;
95
- lastPointerDownWith: import("../element/types").PointerType;
96
- selectedElementIds: Readonly<{
97
- [id: string]: true;
98
- }>;
99
- hoveredElementIds: Readonly<{
100
- [id: string]: true;
101
- }>;
102
- previousSelectedElementIds: {
103
- [id: string]: true;
104
- };
105
- selectedElementsAreBeingDragged: boolean;
106
- shouldCacheIgnoreZoom: boolean;
107
- toast: {
108
- message: string;
109
- closable?: boolean | undefined;
110
- duration?: number | undefined;
111
- } | null;
112
- zenModeEnabled: boolean;
113
- theme: import("../element/types").Theme;
114
- gridSize: number;
115
- gridStep: number;
116
- gridModeEnabled: boolean;
117
- viewModeEnabled: boolean;
118
- selectedGroupIds: {
119
- [groupId: string]: boolean;
120
- };
121
- editingGroupId: string | null;
122
- width: number;
123
- height: number;
124
- offsetTop: number;
125
- offsetLeft: number;
126
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
127
- collaborators: Map<import("../types").SocketId, Readonly<{
128
- pointer?: import("../types").CollaboratorPointer | undefined;
129
- button?: "up" | "down" | undefined;
130
- selectedElementIds?: Readonly<{
131
- [id: string]: true;
132
- }> | undefined;
133
- username?: string | null | undefined;
134
- userState?: import("../constants").UserIdleState | undefined;
135
- color?: {
136
- background: string;
137
- stroke: string;
138
- } | undefined;
139
- avatarUrl?: string | undefined;
140
- id?: string | undefined;
141
- socketId?: import("../types").SocketId | undefined;
142
- isCurrentUser?: boolean | undefined;
143
- isInCall?: boolean | undefined;
144
- isSpeaking?: boolean | undefined;
145
- isMuted?: boolean | undefined;
146
- }>>;
147
- stats: {
148
- open: boolean;
149
- panels: number;
150
- };
151
- currentChartType: import("../element/types").ChartType;
152
- pasteDialog: {
153
- shown: false;
154
- data: null;
155
- } | {
156
- shown: true;
157
- data: import("../charts").Spreadsheet;
158
- };
159
- pendingImageElementId: string | null;
160
- showHyperlinkPopup: false | "info" | "editor";
161
- linkOpacity: number;
162
- trayModeEnabled: boolean;
163
- colorPalette?: {
164
- canvasBackground: import("../colors").ColorPaletteCustom;
165
- elementBackground: import("../colors").ColorPaletteCustom;
166
- elementStroke: import("../colors").ColorPaletteCustom;
167
- topPicks: {
168
- canvasBackground: [string, string, string, string, string];
169
- elementStroke: [string, string, string, string, string];
170
- elementBackground: [string, string, string, string, string];
171
- };
172
- } | undefined;
173
- allowWheelZoom?: boolean | undefined;
174
- allowPinchZoom?: boolean | undefined;
175
- pinnedScripts?: string[] | undefined;
176
- customPens?: any[] | undefined;
177
- currentStrokeOptions?: any;
178
- resetCustomPen?: any;
179
- gridColor: {
180
- Bold: string;
181
- Regular: string;
182
- };
183
- highlightSearchResult: boolean;
184
- dynamicStyle: {
185
- [x: string]: string;
186
- };
187
- frameColor: {
188
- stroke: string;
189
- fill: string;
190
- nameColor: string;
191
- };
192
- invertBindingBehaviour: boolean;
193
- selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
194
- snapLines: readonly import("../snapping").SnapLine[];
195
- originSnapOffset: {
196
- x: number;
197
- y: number;
198
- } | null;
199
- objectsSnapModeEnabled: boolean;
200
- userToFollow: import("../types").UserToFollow | null;
201
- followedBy: Set<import("../types").SocketId>;
202
- isCropping: boolean;
203
- croppingElementId: string | null;
204
- searchMatches: readonly {
205
- id: string;
206
- focus: boolean;
207
- matchedLines: {
208
- offsetX: number;
209
- offsetY: number;
210
- width: number;
211
- height: number;
212
- }[];
213
- }[];
214
- };
215
- } | {
216
- captureUpdate: "EVENTUALLY";
217
- appState?: undefined;
218
- }>;
219
- keyTest: undefined;
220
- } & {
221
- keyTest?: undefined;
222
- };
223
- export declare const actionPaste: {
224
- name: "paste";
225
- label: string;
226
- trackEvent: {
227
- category: "element";
228
- };
229
- perform: (elements: readonly import("../element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, data: any, app: import("../types").AppClassProperties) => Promise<false | {
230
- captureUpdate: "EVENTUALLY";
231
- appState: {
232
- errorMessage: string;
233
- contextMenu: {
234
- items: import("../components/ContextMenu").ContextMenuItems;
235
- top: number;
236
- left: number;
237
- } | null;
238
- showWelcomeScreen: boolean;
239
- isLoading: boolean;
240
- activeEmbeddable: {
241
- element: import("../element/types").NonDeletedExcalidrawElement;
242
- state: "active" | "hover";
243
- } | null;
244
- newElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawNonSelectionElement> | null;
245
- resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
246
- multiElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawLinearElement> | null;
247
- selectionElement: import("../element/types").NonDeletedExcalidrawElement | null;
248
- isBindingEnabled: boolean;
249
- startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
250
- suggestedBindings: import("../element/binding").SuggestedBinding[];
251
- frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
252
- frameRendering: {
253
- enabled: boolean;
254
- name: boolean;
255
- outline: boolean;
256
- clip: boolean;
257
- };
258
- editingFrame: string | null;
259
- elementsToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawElement>[] | null;
260
- editingTextElement: import("../element/types").NonDeletedExcalidrawElement | null;
261
- editingLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
262
- activeTool: {
263
- lastActiveTool: import("../types").ActiveTool | null;
264
- locked: boolean;
265
- } & import("../types").ActiveTool;
266
- penMode: boolean;
267
- penDetected: boolean;
268
- exportBackground: boolean;
269
- exportEmbedScene: boolean;
270
- exportWithDarkMode: boolean;
271
- exportScale: number;
272
- currentItemStrokeColor: string;
273
- currentItemBackgroundColor: string;
274
- currentItemFillStyle: import("../element/types").FillStyle;
275
- currentItemStrokeWidth: number;
276
- currentItemStrokeStyle: import("../element/types").StrokeStyle;
277
- currentItemRoughness: number;
278
- currentItemOpacity: number;
279
- currentItemFontFamily: number;
280
- currentItemFontSize: number;
281
- currentItemTextAlign: string;
282
- currentItemStartArrowhead: import("../element/types").Arrowhead | null;
283
- currentItemEndArrowhead: import("../element/types").Arrowhead | null;
284
- currentHoveredFontFamily: number | null;
285
- currentItemRoundness: import("../element/types").StrokeRoundness;
286
- currentItemArrowType: "round" | "sharp" | "elbow";
287
- viewBackgroundColor: string;
288
- scrollX: number;
289
- scrollY: number;
290
- cursorButton: "up" | "down";
291
- scrolledOutside: boolean;
292
- name: string | null;
293
- isResizing: boolean;
294
- isRotating: boolean;
295
- zoom: Readonly<{
296
- value: import("../types").NormalizedZoomValue;
297
- }>;
298
- openMenu: "canvas" | "shape" | null;
299
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
300
- openSidebar: {
301
- name: string;
302
- tab?: string | undefined;
303
- } | null;
304
- openDialog: {
305
- name: "help" | "imageExport" | "jsonExport";
306
- } | {
307
- name: "ttd";
308
- tab: "mermaid" | "text-to-diagram";
309
- } | {
310
- name: "commandPalette";
311
- } | {
312
- name: "elementLinkSelector";
313
- sourceElementId: string;
314
- } | null;
315
- defaultSidebarDockedPreference: boolean;
316
- lastPointerDownWith: import("../element/types").PointerType;
317
- selectedElementIds: Readonly<{
318
- [id: string]: true;
319
- }>;
320
- hoveredElementIds: Readonly<{
321
- [id: string]: true;
322
- }>;
323
- previousSelectedElementIds: {
324
- [id: string]: true;
325
- };
326
- selectedElementsAreBeingDragged: boolean;
327
- shouldCacheIgnoreZoom: boolean;
328
- toast: {
329
- message: string;
330
- closable?: boolean | undefined;
331
- duration?: number | undefined;
332
- } | null;
333
- zenModeEnabled: boolean;
334
- theme: import("../element/types").Theme;
335
- gridSize: number;
336
- gridStep: number;
337
- gridModeEnabled: boolean;
338
- viewModeEnabled: boolean;
339
- selectedGroupIds: {
340
- [groupId: string]: boolean;
341
- };
342
- editingGroupId: string | null;
343
- width: number;
344
- height: number;
345
- offsetTop: number;
346
- offsetLeft: number;
347
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
348
- collaborators: Map<import("../types").SocketId, Readonly<{
349
- pointer?: import("../types").CollaboratorPointer | undefined;
350
- button?: "up" | "down" | undefined;
351
- selectedElementIds?: Readonly<{
352
- [id: string]: true;
353
- }> | undefined;
354
- username?: string | null | undefined;
355
- userState?: import("../constants").UserIdleState | undefined;
356
- color?: {
357
- background: string;
358
- stroke: string;
359
- } | undefined;
360
- avatarUrl?: string | undefined;
361
- id?: string | undefined;
362
- socketId?: import("../types").SocketId | undefined;
363
- isCurrentUser?: boolean | undefined;
364
- isInCall?: boolean | undefined;
365
- isSpeaking?: boolean | undefined;
366
- isMuted?: boolean | undefined;
367
- }>>;
368
- stats: {
369
- open: boolean;
370
- panels: number;
371
- };
372
- currentChartType: import("../element/types").ChartType;
373
- pasteDialog: {
374
- shown: false;
375
- data: null;
376
- } | {
377
- shown: true;
378
- data: import("../charts").Spreadsheet;
379
- };
380
- pendingImageElementId: string | null;
381
- showHyperlinkPopup: false | "info" | "editor";
382
- linkOpacity: number;
383
- trayModeEnabled: boolean;
384
- colorPalette?: {
385
- canvasBackground: import("../colors").ColorPaletteCustom;
386
- elementBackground: import("../colors").ColorPaletteCustom;
387
- elementStroke: import("../colors").ColorPaletteCustom;
388
- topPicks: {
389
- canvasBackground: [string, string, string, string, string];
390
- elementStroke: [string, string, string, string, string];
391
- elementBackground: [string, string, string, string, string];
392
- };
393
- } | undefined;
394
- allowWheelZoom?: boolean | undefined;
395
- allowPinchZoom?: boolean | undefined;
396
- pinnedScripts?: string[] | undefined;
397
- customPens?: any[] | undefined;
398
- currentStrokeOptions?: any;
399
- resetCustomPen?: any;
400
- gridColor: {
401
- Bold: string;
402
- Regular: string;
403
- };
404
- highlightSearchResult: boolean;
405
- dynamicStyle: {
406
- [x: string]: string;
407
- };
408
- frameColor: {
409
- stroke: string;
410
- fill: string;
411
- nameColor: string;
412
- };
413
- invertBindingBehaviour: boolean;
414
- selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
415
- snapLines: readonly import("../snapping").SnapLine[];
416
- originSnapOffset: {
417
- x: number;
418
- y: number;
419
- } | null;
420
- objectsSnapModeEnabled: boolean;
421
- userToFollow: import("../types").UserToFollow | null;
422
- followedBy: Set<import("../types").SocketId>;
423
- isCropping: boolean;
424
- croppingElementId: string | null;
425
- searchMatches: readonly {
426
- id: string;
427
- focus: boolean;
428
- matchedLines: {
429
- offsetX: number;
430
- offsetY: number;
431
- width: number;
432
- height: number;
433
- }[];
434
- }[];
435
- };
436
- } | {
437
- captureUpdate: "EVENTUALLY";
438
- appState?: undefined;
439
- }>;
440
- keyTest: undefined;
441
- } & {
442
- keyTest?: undefined;
443
- };
444
- export declare const actionCut: {
445
- name: "cut";
446
- label: string;
447
- icon: import("react/jsx-runtime").JSX.Element;
448
- trackEvent: {
449
- category: "element";
450
- };
451
- perform: (elements: readonly import("../element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, event: ClipboardEvent | null, app: import("../types").AppClassProperties) => false | {
452
- elements: import("../element/types").OrderedExcalidrawElement[];
453
- appState: {
454
- editingLinearElement: null;
455
- contextMenu: {
456
- items: import("../components/ContextMenu").ContextMenuItems;
457
- top: number;
458
- left: number;
459
- } | null;
460
- showWelcomeScreen: boolean;
461
- isLoading: boolean;
462
- errorMessage: import("react").ReactNode;
463
- activeEmbeddable: {
464
- element: import("../element/types").NonDeletedExcalidrawElement;
465
- state: "active" | "hover";
466
- } | null;
467
- newElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawNonSelectionElement> | null;
468
- resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
469
- multiElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawLinearElement> | null;
470
- selectionElement: import("../element/types").NonDeletedExcalidrawElement | null;
471
- isBindingEnabled: boolean;
472
- startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
473
- suggestedBindings: import("../element/binding").SuggestedBinding[];
474
- frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
475
- frameRendering: {
476
- enabled: boolean;
477
- name: boolean;
478
- outline: boolean;
479
- clip: boolean;
480
- };
481
- editingFrame: string | null;
482
- elementsToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawElement>[] | null;
483
- editingTextElement: import("../element/types").NonDeletedExcalidrawElement | null;
484
- activeTool: {
485
- lastActiveTool: import("../types").ActiveTool | null;
486
- locked: boolean;
487
- } & import("../types").ActiveTool;
488
- penMode: boolean;
489
- penDetected: boolean;
490
- exportBackground: boolean;
491
- exportEmbedScene: boolean;
492
- exportWithDarkMode: boolean;
493
- exportScale: number;
494
- currentItemStrokeColor: string;
495
- currentItemBackgroundColor: string;
496
- currentItemFillStyle: import("../element/types").FillStyle;
497
- currentItemStrokeWidth: number;
498
- currentItemStrokeStyle: import("../element/types").StrokeStyle;
499
- currentItemRoughness: number;
500
- currentItemOpacity: number;
501
- currentItemFontFamily: number;
502
- currentItemFontSize: number;
503
- currentItemTextAlign: string;
504
- currentItemStartArrowhead: import("../element/types").Arrowhead | null;
505
- currentItemEndArrowhead: import("../element/types").Arrowhead | null;
506
- currentHoveredFontFamily: number | null;
507
- currentItemRoundness: import("../element/types").StrokeRoundness;
508
- currentItemArrowType: "round" | "sharp" | "elbow";
509
- viewBackgroundColor: string;
510
- scrollX: number;
511
- scrollY: number;
512
- cursorButton: "up" | "down";
513
- scrolledOutside: boolean;
514
- name: string | null;
515
- isResizing: boolean;
516
- isRotating: boolean;
517
- zoom: Readonly<{
518
- value: import("../types").NormalizedZoomValue;
519
- }>;
520
- openMenu: "canvas" | "shape" | null;
521
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
522
- openSidebar: {
523
- name: string;
524
- tab?: string | undefined;
525
- } | null;
526
- openDialog: {
527
- name: "help" | "imageExport" | "jsonExport";
528
- } | {
529
- name: "ttd";
530
- tab: "mermaid" | "text-to-diagram";
531
- } | {
532
- name: "commandPalette";
533
- } | {
534
- name: "elementLinkSelector";
535
- sourceElementId: string;
536
- } | null;
537
- defaultSidebarDockedPreference: boolean;
538
- lastPointerDownWith: import("../element/types").PointerType;
539
- selectedElementIds: Readonly<{
540
- [id: string]: true;
541
- }>;
542
- hoveredElementIds: Readonly<{
543
- [id: string]: true;
544
- }>;
545
- previousSelectedElementIds: {
546
- [id: string]: true;
547
- };
548
- selectedElementsAreBeingDragged: boolean;
549
- shouldCacheIgnoreZoom: boolean;
550
- toast: {
551
- message: string;
552
- closable?: boolean | undefined;
553
- duration?: number | undefined;
554
- } | null;
555
- zenModeEnabled: boolean;
556
- theme: import("../element/types").Theme;
557
- gridSize: number;
558
- gridStep: number;
559
- gridModeEnabled: boolean;
560
- viewModeEnabled: boolean;
561
- selectedGroupIds: {
562
- [groupId: string]: boolean;
563
- };
564
- editingGroupId: string | null;
565
- width: number;
566
- height: number;
567
- offsetTop: number;
568
- offsetLeft: number;
569
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
570
- collaborators: Map<import("../types").SocketId, Readonly<{
571
- pointer?: import("../types").CollaboratorPointer | undefined;
572
- button?: "up" | "down" | undefined;
573
- selectedElementIds?: Readonly<{
574
- [id: string]: true;
575
- }> | undefined;
576
- username?: string | null | undefined;
577
- userState?: import("../constants").UserIdleState | undefined;
578
- color?: {
579
- background: string;
580
- stroke: string;
581
- } | undefined;
582
- avatarUrl?: string | undefined;
583
- id?: string | undefined;
584
- socketId?: import("../types").SocketId | undefined;
585
- isCurrentUser?: boolean | undefined;
586
- isInCall?: boolean | undefined;
587
- isSpeaking?: boolean | undefined;
588
- isMuted?: boolean | undefined;
589
- }>>;
590
- stats: {
591
- open: boolean;
592
- panels: number;
593
- };
594
- currentChartType: import("../element/types").ChartType;
595
- pasteDialog: {
596
- shown: false;
597
- data: null;
598
- } | {
599
- shown: true;
600
- data: import("../charts").Spreadsheet;
601
- };
602
- pendingImageElementId: string | null;
603
- showHyperlinkPopup: false | "info" | "editor";
604
- linkOpacity: number;
605
- trayModeEnabled: boolean;
606
- colorPalette?: {
607
- canvasBackground: import("../colors").ColorPaletteCustom;
608
- elementBackground: import("../colors").ColorPaletteCustom;
609
- elementStroke: import("../colors").ColorPaletteCustom;
610
- topPicks: {
611
- canvasBackground: [string, string, string, string, string];
612
- elementStroke: [string, string, string, string, string];
613
- elementBackground: [string, string, string, string, string];
614
- };
615
- } | undefined;
616
- allowWheelZoom?: boolean | undefined;
617
- allowPinchZoom?: boolean | undefined;
618
- pinnedScripts?: string[] | undefined;
619
- customPens?: any[] | undefined;
620
- currentStrokeOptions?: any;
621
- resetCustomPen?: any;
622
- gridColor: {
623
- Bold: string;
624
- Regular: string;
625
- };
626
- highlightSearchResult: boolean;
627
- dynamicStyle: {
628
- [x: string]: string;
629
- };
630
- frameColor: {
631
- stroke: string;
632
- fill: string;
633
- nameColor: string;
634
- };
635
- invertBindingBehaviour: boolean;
636
- selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
637
- snapLines: readonly import("../snapping").SnapLine[];
638
- originSnapOffset: {
639
- x: number;
640
- y: number;
641
- } | null;
642
- objectsSnapModeEnabled: boolean;
643
- userToFollow: import("../types").UserToFollow | null;
644
- followedBy: Set<import("../types").SocketId>;
645
- isCropping: boolean;
646
- croppingElementId: string | null;
647
- searchMatches: readonly {
648
- id: string;
649
- focus: boolean;
650
- matchedLines: {
651
- offsetX: number;
652
- offsetY: number;
653
- width: number;
654
- height: number;
655
- }[];
656
- }[];
657
- };
658
- captureUpdate: "IMMEDIATELY";
659
- } | {
660
- elements: readonly import("../element/types").OrderedExcalidrawElement[];
661
- appState: {
662
- editingLinearElement: {
663
- selectedPointsIndices: number[];
664
- startBindingElement: import("../element/types").ExcalidrawBindableElement | "keep" | null;
665
- endBindingElement: import("../element/types").ExcalidrawBindableElement | "keep" | null;
666
- elementId: string & {
667
- _brand: "excalidrawLinearElementId";
668
- };
669
- pointerDownState: Readonly<{
670
- prevSelectedPointsIndices: readonly number[] | null;
671
- lastClickedPoint: number;
672
- lastClickedIsEndPoint: boolean;
673
- origin: Readonly<{
674
- x: number;
675
- y: number;
676
- }> | null;
677
- segmentMidpoint: {
678
- value: import("@excalidraw/math").GlobalPoint | null;
679
- index: number | null;
680
- added: boolean;
681
- };
682
- }>;
683
- isDragging: boolean;
684
- lastUncommittedPoint: import("@excalidraw/math").LocalPoint | null;
685
- pointerOffset: Readonly<{
686
- x: number;
687
- y: number;
688
- }>;
689
- hoverPointIndex: number;
690
- segmentMidPointHoveredCoords: import("@excalidraw/math").GlobalPoint | null;
691
- elbowed: boolean;
692
- };
693
- contextMenu: {
694
- items: import("../components/ContextMenu").ContextMenuItems;
695
- top: number;
696
- left: number;
697
- } | null;
698
- showWelcomeScreen: boolean;
699
- isLoading: boolean;
700
- errorMessage: import("react").ReactNode;
701
- activeEmbeddable: {
702
- element: import("../element/types").NonDeletedExcalidrawElement;
703
- state: "active" | "hover";
704
- } | null;
705
- newElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawNonSelectionElement> | null;
706
- resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
707
- multiElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawLinearElement> | null;
708
- selectionElement: import("../element/types").NonDeletedExcalidrawElement | null;
709
- isBindingEnabled: boolean;
710
- startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
711
- suggestedBindings: import("../element/binding").SuggestedBinding[];
712
- frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
713
- frameRendering: {
714
- enabled: boolean;
715
- name: boolean;
716
- outline: boolean;
717
- clip: boolean;
718
- };
719
- editingFrame: string | null;
720
- elementsToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawElement>[] | null;
721
- editingTextElement: import("../element/types").NonDeletedExcalidrawElement | null;
722
- activeTool: {
723
- lastActiveTool: import("../types").ActiveTool | null;
724
- locked: boolean;
725
- } & import("../types").ActiveTool;
726
- penMode: boolean;
727
- penDetected: boolean;
728
- exportBackground: boolean;
729
- exportEmbedScene: boolean;
730
- exportWithDarkMode: boolean;
731
- exportScale: number;
732
- currentItemStrokeColor: string;
733
- currentItemBackgroundColor: string;
734
- currentItemFillStyle: import("../element/types").FillStyle;
735
- currentItemStrokeWidth: number;
736
- currentItemStrokeStyle: import("../element/types").StrokeStyle;
737
- currentItemRoughness: number;
738
- currentItemOpacity: number;
739
- currentItemFontFamily: number;
740
- currentItemFontSize: number;
741
- currentItemTextAlign: string;
742
- currentItemStartArrowhead: import("../element/types").Arrowhead | null;
743
- currentItemEndArrowhead: import("../element/types").Arrowhead | null;
744
- currentHoveredFontFamily: number | null;
745
- currentItemRoundness: import("../element/types").StrokeRoundness;
746
- currentItemArrowType: "round" | "sharp" | "elbow";
747
- viewBackgroundColor: string;
748
- scrollX: number;
749
- scrollY: number;
750
- cursorButton: "up" | "down";
751
- scrolledOutside: boolean;
752
- name: string | null;
753
- isResizing: boolean;
754
- isRotating: boolean;
755
- zoom: Readonly<{
756
- value: import("../types").NormalizedZoomValue;
757
- }>;
758
- openMenu: "canvas" | "shape" | null;
759
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
760
- openSidebar: {
761
- name: string;
762
- tab?: string | undefined;
763
- } | null;
764
- openDialog: {
765
- name: "help" | "imageExport" | "jsonExport";
766
- } | {
767
- name: "ttd";
768
- tab: "mermaid" | "text-to-diagram";
769
- } | {
770
- name: "commandPalette";
771
- } | {
772
- name: "elementLinkSelector";
773
- sourceElementId: string;
774
- } | null;
775
- defaultSidebarDockedPreference: boolean;
776
- lastPointerDownWith: import("../element/types").PointerType;
777
- selectedElementIds: Readonly<{
778
- [id: string]: true;
779
- }>;
780
- hoveredElementIds: Readonly<{
781
- [id: string]: true;
782
- }>;
783
- previousSelectedElementIds: {
784
- [id: string]: true;
785
- };
786
- selectedElementsAreBeingDragged: boolean;
787
- shouldCacheIgnoreZoom: boolean;
788
- toast: {
789
- message: string;
790
- closable?: boolean | undefined;
791
- duration?: number | undefined;
792
- } | null;
793
- zenModeEnabled: boolean;
794
- theme: import("../element/types").Theme;
795
- gridSize: number;
796
- gridStep: number;
797
- gridModeEnabled: boolean;
798
- viewModeEnabled: boolean;
799
- selectedGroupIds: {
800
- [groupId: string]: boolean;
801
- };
802
- editingGroupId: string | null;
803
- width: number;
804
- height: number;
805
- offsetTop: number;
806
- offsetLeft: number;
807
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
808
- collaborators: Map<import("../types").SocketId, Readonly<{
809
- pointer?: import("../types").CollaboratorPointer | undefined;
810
- button?: "up" | "down" | undefined;
811
- selectedElementIds?: Readonly<{
812
- [id: string]: true;
813
- }> | undefined;
814
- username?: string | null | undefined;
815
- userState?: import("../constants").UserIdleState | undefined;
816
- color?: {
817
- background: string;
818
- stroke: string;
819
- } | undefined;
820
- avatarUrl?: string | undefined;
821
- id?: string | undefined;
822
- socketId?: import("../types").SocketId | undefined;
823
- isCurrentUser?: boolean | undefined;
824
- isInCall?: boolean | undefined;
825
- isSpeaking?: boolean | undefined;
826
- isMuted?: boolean | undefined;
827
- }>>;
828
- stats: {
829
- open: boolean;
830
- panels: number;
831
- };
832
- currentChartType: import("../element/types").ChartType;
833
- pasteDialog: {
834
- shown: false;
835
- data: null;
836
- } | {
837
- shown: true;
838
- data: import("../charts").Spreadsheet;
839
- };
840
- pendingImageElementId: string | null;
841
- showHyperlinkPopup: false | "info" | "editor";
842
- linkOpacity: number;
843
- trayModeEnabled: boolean;
844
- colorPalette?: {
845
- canvasBackground: import("../colors").ColorPaletteCustom;
846
- elementBackground: import("../colors").ColorPaletteCustom;
847
- elementStroke: import("../colors").ColorPaletteCustom;
848
- topPicks: {
849
- canvasBackground: [string, string, string, string, string];
850
- elementStroke: [string, string, string, string, string];
851
- elementBackground: [string, string, string, string, string];
852
- };
853
- } | undefined;
854
- allowWheelZoom?: boolean | undefined;
855
- allowPinchZoom?: boolean | undefined;
856
- pinnedScripts?: string[] | undefined;
857
- customPens?: any[] | undefined;
858
- currentStrokeOptions?: any;
859
- resetCustomPen?: any;
860
- gridColor: {
861
- Bold: string;
862
- Regular: string;
863
- };
864
- highlightSearchResult: boolean;
865
- dynamicStyle: {
866
- [x: string]: string;
867
- };
868
- frameColor: {
869
- stroke: string;
870
- fill: string;
871
- nameColor: string;
872
- };
873
- invertBindingBehaviour: boolean;
874
- selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
875
- snapLines: readonly import("../snapping").SnapLine[];
876
- originSnapOffset: {
877
- x: number;
878
- y: number;
879
- } | null;
880
- objectsSnapModeEnabled: boolean;
881
- userToFollow: import("../types").UserToFollow | null;
882
- followedBy: Set<import("../types").SocketId>;
883
- isCropping: boolean;
884
- croppingElementId: string | null;
885
- searchMatches: readonly {
886
- id: string;
887
- focus: boolean;
888
- matchedLines: {
889
- offsetX: number;
890
- offsetY: number;
891
- width: number;
892
- height: number;
893
- }[];
894
- }[];
895
- };
896
- captureUpdate: "IMMEDIATELY";
897
- } | {
898
- elements: import("../element/types").ExcalidrawElement[];
899
- appState: {
900
- activeTool: {
901
- lastActiveTool: import("../types").ActiveTool | null;
902
- locked: boolean;
903
- } & import("../types").ActiveTool;
904
- multiElement: null;
905
- activeEmbeddable: null;
906
- selectedElementIds: Readonly<{
907
- [id: string]: true;
908
- }>;
909
- selectedGroupIds: {
910
- [groupId: string]: boolean;
911
- };
912
- editingGroupId: string | null;
913
- contextMenu: {
914
- items: import("../components/ContextMenu").ContextMenuItems;
915
- top: number;
916
- left: number;
917
- } | null;
918
- showWelcomeScreen: boolean;
919
- isLoading: boolean;
920
- errorMessage: import("react").ReactNode;
921
- newElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawNonSelectionElement> | null;
922
- resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
923
- selectionElement: import("../element/types").NonDeletedExcalidrawElement | null;
924
- isBindingEnabled: boolean;
925
- startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
926
- suggestedBindings: import("../element/binding").SuggestedBinding[];
927
- frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
928
- frameRendering: {
929
- enabled: boolean;
930
- name: boolean;
931
- outline: boolean;
932
- clip: boolean;
933
- };
934
- editingFrame: string | null;
935
- elementsToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawElement>[] | null;
936
- editingTextElement: import("../element/types").NonDeletedExcalidrawElement | null;
937
- editingLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
938
- penMode: boolean;
939
- penDetected: boolean;
940
- exportBackground: boolean;
941
- exportEmbedScene: boolean;
942
- exportWithDarkMode: boolean;
943
- exportScale: number;
944
- currentItemStrokeColor: string;
945
- currentItemBackgroundColor: string;
946
- currentItemFillStyle: import("../element/types").FillStyle;
947
- currentItemStrokeWidth: number;
948
- currentItemStrokeStyle: import("../element/types").StrokeStyle;
949
- currentItemRoughness: number;
950
- currentItemOpacity: number;
951
- currentItemFontFamily: number;
952
- currentItemFontSize: number;
953
- currentItemTextAlign: string;
954
- currentItemStartArrowhead: import("../element/types").Arrowhead | null;
955
- currentItemEndArrowhead: import("../element/types").Arrowhead | null;
956
- currentHoveredFontFamily: number | null;
957
- currentItemRoundness: import("../element/types").StrokeRoundness;
958
- currentItemArrowType: "round" | "sharp" | "elbow";
959
- viewBackgroundColor: string;
960
- scrollX: number;
961
- scrollY: number;
962
- cursorButton: "up" | "down";
963
- scrolledOutside: boolean;
964
- name: string | null;
965
- isResizing: boolean;
966
- isRotating: boolean;
967
- zoom: Readonly<{
968
- value: import("../types").NormalizedZoomValue;
969
- }>;
970
- openMenu: "canvas" | "shape" | null;
971
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
972
- openSidebar: {
973
- name: string;
974
- tab?: string | undefined;
975
- } | null;
976
- openDialog: {
977
- name: "help" | "imageExport" | "jsonExport";
978
- } | {
979
- name: "ttd";
980
- tab: "mermaid" | "text-to-diagram";
981
- } | {
982
- name: "commandPalette";
983
- } | {
984
- name: "elementLinkSelector";
985
- sourceElementId: string;
986
- } | null;
987
- defaultSidebarDockedPreference: boolean;
988
- lastPointerDownWith: import("../element/types").PointerType;
989
- hoveredElementIds: Readonly<{
990
- [id: string]: true;
991
- }>;
992
- previousSelectedElementIds: {
993
- [id: string]: true;
994
- };
995
- selectedElementsAreBeingDragged: boolean;
996
- shouldCacheIgnoreZoom: boolean;
997
- toast: {
998
- message: string;
999
- closable?: boolean | undefined;
1000
- duration?: number | undefined;
1001
- } | null;
1002
- zenModeEnabled: boolean;
1003
- theme: import("../element/types").Theme;
1004
- gridSize: number;
1005
- gridStep: number;
1006
- gridModeEnabled: boolean;
1007
- viewModeEnabled: boolean;
1008
- width: number;
1009
- height: number;
1010
- offsetTop: number;
1011
- offsetLeft: number;
1012
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
1013
- collaborators: Map<import("../types").SocketId, Readonly<{
1014
- pointer?: import("../types").CollaboratorPointer | undefined;
1015
- button?: "up" | "down" | undefined;
1016
- selectedElementIds?: Readonly<{
1017
- [id: string]: true;
1018
- }> | undefined;
1019
- username?: string | null | undefined;
1020
- userState?: import("../constants").UserIdleState | undefined;
1021
- color?: {
1022
- background: string;
1023
- stroke: string;
1024
- } | undefined;
1025
- avatarUrl?: string | undefined;
1026
- id?: string | undefined;
1027
- socketId?: import("../types").SocketId | undefined;
1028
- isCurrentUser?: boolean | undefined;
1029
- isInCall?: boolean | undefined;
1030
- isSpeaking?: boolean | undefined;
1031
- isMuted?: boolean | undefined;
1032
- }>>;
1033
- stats: {
1034
- open: boolean;
1035
- panels: number;
1036
- };
1037
- currentChartType: import("../element/types").ChartType;
1038
- pasteDialog: {
1039
- shown: false;
1040
- data: null;
1041
- } | {
1042
- shown: true;
1043
- data: import("../charts").Spreadsheet;
1044
- };
1045
- pendingImageElementId: string | null;
1046
- showHyperlinkPopup: false | "info" | "editor";
1047
- linkOpacity: number;
1048
- trayModeEnabled: boolean;
1049
- colorPalette?: {
1050
- canvasBackground: import("../colors").ColorPaletteCustom;
1051
- elementBackground: import("../colors").ColorPaletteCustom;
1052
- elementStroke: import("../colors").ColorPaletteCustom;
1053
- topPicks: {
1054
- canvasBackground: [string, string, string, string, string];
1055
- elementStroke: [string, string, string, string, string];
1056
- elementBackground: [string, string, string, string, string];
1057
- };
1058
- } | undefined;
1059
- allowWheelZoom?: boolean | undefined;
1060
- allowPinchZoom?: boolean | undefined;
1061
- pinnedScripts?: string[] | undefined;
1062
- customPens?: any[] | undefined;
1063
- currentStrokeOptions?: any;
1064
- resetCustomPen?: any;
1065
- gridColor: {
1066
- Bold: string;
1067
- Regular: string;
1068
- };
1069
- highlightSearchResult: boolean;
1070
- dynamicStyle: {
1071
- [x: string]: string;
1072
- };
1073
- frameColor: {
1074
- stroke: string;
1075
- fill: string;
1076
- nameColor: string;
1077
- };
1078
- invertBindingBehaviour: boolean;
1079
- selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
1080
- snapLines: readonly import("../snapping").SnapLine[];
1081
- originSnapOffset: {
1082
- x: number;
1083
- y: number;
1084
- } | null;
1085
- objectsSnapModeEnabled: boolean;
1086
- userToFollow: import("../types").UserToFollow | null;
1087
- followedBy: Set<import("../types").SocketId>;
1088
- isCropping: boolean;
1089
- croppingElementId: string | null;
1090
- searchMatches: readonly {
1091
- id: string;
1092
- focus: boolean;
1093
- matchedLines: {
1094
- offsetX: number;
1095
- offsetY: number;
1096
- width: number;
1097
- height: number;
1098
- }[];
1099
- }[];
1100
- };
1101
- captureUpdate: "IMMEDIATELY" | "EVENTUALLY";
1102
- };
1103
- keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
1104
- } & {
1105
- keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
1106
- };
1107
- export declare const actionCopyAsSvg: {
1108
- name: "copyAsSvg";
1109
- label: string;
1110
- icon: import("react/jsx-runtime").JSX.Element;
1111
- trackEvent: {
1112
- category: "element";
1113
- };
1114
- perform: (elements: readonly import("../element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _data: any, app: import("../types").AppClassProperties) => Promise<{
1115
- captureUpdate: "EVENTUALLY";
1116
- appState?: undefined;
1117
- } | {
1118
- appState: {
1119
- toast: {
1120
- message: string;
1121
- };
1122
- errorMessage?: undefined;
1123
- };
1124
- captureUpdate: "EVENTUALLY";
1125
- } | {
1126
- appState: {
1127
- errorMessage: any;
1128
- toast?: undefined;
1129
- };
1130
- captureUpdate: "EVENTUALLY";
1131
- }>;
1132
- predicate: (elements: readonly import("../element/types").ExcalidrawElement[]) => boolean;
1133
- keywords: string[];
1134
- } & {
1135
- keyTest?: undefined;
1136
- };
1137
- export declare const actionCopyAsPng: {
1138
- name: "copyAsPng";
1139
- label: string;
1140
- icon: import("react/jsx-runtime").JSX.Element;
1141
- trackEvent: {
1142
- category: "element";
1143
- };
1144
- perform: (elements: readonly import("../element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _data: any, app: import("../types").AppClassProperties) => Promise<{
1145
- captureUpdate: "EVENTUALLY";
1146
- appState?: undefined;
1147
- } | {
1148
- appState: {
1149
- errorMessage: any;
1150
- contextMenu: {
1151
- items: import("../components/ContextMenu").ContextMenuItems;
1152
- top: number;
1153
- left: number;
1154
- } | null;
1155
- showWelcomeScreen: boolean;
1156
- isLoading: boolean;
1157
- activeEmbeddable: {
1158
- element: import("../element/types").NonDeletedExcalidrawElement;
1159
- state: "active" | "hover";
1160
- } | null;
1161
- newElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawNonSelectionElement> | null;
1162
- resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
1163
- multiElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawLinearElement> | null;
1164
- selectionElement: import("../element/types").NonDeletedExcalidrawElement | null;
1165
- isBindingEnabled: boolean;
1166
- startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
1167
- suggestedBindings: import("../element/binding").SuggestedBinding[];
1168
- frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
1169
- frameRendering: {
1170
- enabled: boolean;
1171
- name: boolean;
1172
- outline: boolean;
1173
- clip: boolean;
1174
- };
1175
- editingFrame: string | null;
1176
- elementsToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawElement>[] | null;
1177
- editingTextElement: import("../element/types").NonDeletedExcalidrawElement | null;
1178
- editingLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
1179
- activeTool: {
1180
- lastActiveTool: import("../types").ActiveTool | null;
1181
- locked: boolean;
1182
- } & import("../types").ActiveTool;
1183
- penMode: boolean;
1184
- penDetected: boolean;
1185
- exportBackground: boolean;
1186
- exportEmbedScene: boolean;
1187
- exportWithDarkMode: boolean;
1188
- exportScale: number;
1189
- currentItemStrokeColor: string;
1190
- currentItemBackgroundColor: string;
1191
- currentItemFillStyle: import("../element/types").FillStyle;
1192
- currentItemStrokeWidth: number;
1193
- currentItemStrokeStyle: import("../element/types").StrokeStyle;
1194
- currentItemRoughness: number;
1195
- currentItemOpacity: number;
1196
- currentItemFontFamily: number;
1197
- currentItemFontSize: number;
1198
- currentItemTextAlign: string;
1199
- currentItemStartArrowhead: import("../element/types").Arrowhead | null;
1200
- currentItemEndArrowhead: import("../element/types").Arrowhead | null;
1201
- currentHoveredFontFamily: number | null;
1202
- currentItemRoundness: import("../element/types").StrokeRoundness;
1203
- currentItemArrowType: "round" | "sharp" | "elbow";
1204
- viewBackgroundColor: string;
1205
- scrollX: number;
1206
- scrollY: number;
1207
- cursorButton: "up" | "down";
1208
- scrolledOutside: boolean;
1209
- name: string | null;
1210
- isResizing: boolean;
1211
- isRotating: boolean;
1212
- zoom: Readonly<{
1213
- value: import("../types").NormalizedZoomValue;
1214
- }>;
1215
- openMenu: "canvas" | "shape" | null;
1216
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
1217
- openSidebar: {
1218
- name: string;
1219
- tab?: string | undefined;
1220
- } | null;
1221
- openDialog: {
1222
- name: "help" | "imageExport" | "jsonExport";
1223
- } | {
1224
- name: "ttd";
1225
- tab: "mermaid" | "text-to-diagram";
1226
- } | {
1227
- name: "commandPalette";
1228
- } | {
1229
- name: "elementLinkSelector";
1230
- sourceElementId: string;
1231
- } | null;
1232
- defaultSidebarDockedPreference: boolean;
1233
- lastPointerDownWith: import("../element/types").PointerType;
1234
- selectedElementIds: Readonly<{
1235
- [id: string]: true;
1236
- }>;
1237
- hoveredElementIds: Readonly<{
1238
- [id: string]: true;
1239
- }>;
1240
- previousSelectedElementIds: {
1241
- [id: string]: true;
1242
- };
1243
- selectedElementsAreBeingDragged: boolean;
1244
- shouldCacheIgnoreZoom: boolean;
1245
- toast: {
1246
- message: string;
1247
- closable?: boolean | undefined;
1248
- duration?: number | undefined;
1249
- } | null;
1250
- zenModeEnabled: boolean;
1251
- theme: import("../element/types").Theme;
1252
- gridSize: number;
1253
- gridStep: number;
1254
- gridModeEnabled: boolean;
1255
- viewModeEnabled: boolean;
1256
- selectedGroupIds: {
1257
- [groupId: string]: boolean;
1258
- };
1259
- editingGroupId: string | null;
1260
- width: number;
1261
- height: number;
1262
- offsetTop: number;
1263
- offsetLeft: number;
1264
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
1265
- collaborators: Map<import("../types").SocketId, Readonly<{
1266
- pointer?: import("../types").CollaboratorPointer | undefined;
1267
- button?: "up" | "down" | undefined;
1268
- selectedElementIds?: Readonly<{
1269
- [id: string]: true;
1270
- }> | undefined;
1271
- username?: string | null | undefined;
1272
- userState?: import("../constants").UserIdleState | undefined;
1273
- color?: {
1274
- background: string;
1275
- stroke: string;
1276
- } | undefined;
1277
- avatarUrl?: string | undefined;
1278
- id?: string | undefined;
1279
- socketId?: import("../types").SocketId | undefined;
1280
- isCurrentUser?: boolean | undefined;
1281
- isInCall?: boolean | undefined;
1282
- isSpeaking?: boolean | undefined;
1283
- isMuted?: boolean | undefined;
1284
- }>>;
1285
- stats: {
1286
- open: boolean;
1287
- panels: number;
1288
- };
1289
- currentChartType: import("../element/types").ChartType;
1290
- pasteDialog: {
1291
- shown: false;
1292
- data: null;
1293
- } | {
1294
- shown: true;
1295
- data: import("../charts").Spreadsheet;
1296
- };
1297
- pendingImageElementId: string | null;
1298
- showHyperlinkPopup: false | "info" | "editor";
1299
- linkOpacity: number;
1300
- trayModeEnabled: boolean;
1301
- colorPalette?: {
1302
- canvasBackground: import("../colors").ColorPaletteCustom;
1303
- elementBackground: import("../colors").ColorPaletteCustom;
1304
- elementStroke: import("../colors").ColorPaletteCustom;
1305
- topPicks: {
1306
- canvasBackground: [string, string, string, string, string];
1307
- elementStroke: [string, string, string, string, string];
1308
- elementBackground: [string, string, string, string, string];
1309
- };
1310
- } | undefined;
1311
- allowWheelZoom?: boolean | undefined;
1312
- allowPinchZoom?: boolean | undefined;
1313
- pinnedScripts?: string[] | undefined;
1314
- customPens?: any[] | undefined;
1315
- currentStrokeOptions?: any;
1316
- resetCustomPen?: any;
1317
- gridColor: {
1318
- Bold: string;
1319
- Regular: string;
1320
- };
1321
- highlightSearchResult: boolean;
1322
- dynamicStyle: {
1323
- [x: string]: string;
1324
- };
1325
- frameColor: {
1326
- stroke: string;
1327
- fill: string;
1328
- nameColor: string;
1329
- };
1330
- invertBindingBehaviour: boolean;
1331
- selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
1332
- snapLines: readonly import("../snapping").SnapLine[];
1333
- originSnapOffset: {
1334
- x: number;
1335
- y: number;
1336
- } | null;
1337
- objectsSnapModeEnabled: boolean;
1338
- userToFollow: import("../types").UserToFollow | null;
1339
- followedBy: Set<import("../types").SocketId>;
1340
- isCropping: boolean;
1341
- croppingElementId: string | null;
1342
- searchMatches: readonly {
1343
- id: string;
1344
- focus: boolean;
1345
- matchedLines: {
1346
- offsetX: number;
1347
- offsetY: number;
1348
- width: number;
1349
- height: number;
1350
- }[];
1351
- }[];
1352
- };
1353
- captureUpdate: "EVENTUALLY";
1354
- }>;
1355
- predicate: (elements: readonly import("../element/types").ExcalidrawElement[]) => boolean;
1356
- keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
1357
- keywords: string[];
1358
- } & {
1359
- keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
1360
- };
1361
- export declare const copyText: {
1362
- name: "copyText";
1363
- label: string;
1364
- trackEvent: {
1365
- category: "element";
1366
- };
1367
- perform: (elements: readonly import("../element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: any, app: import("../types").AppClassProperties) => {
1368
- captureUpdate: "EVENTUALLY";
1369
- };
1370
- predicate: (elements: readonly import("../element/types").ExcalidrawElement[], appState: import("../types").AppState, _: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
1371
- keywords: string[];
1372
- } & {
1373
- keyTest?: undefined;
1374
- };
1
+ export declare const actionCopy: {
2
+ name: "copy";
3
+ label: string;
4
+ icon: import("react/jsx-runtime").JSX.Element;
5
+ trackEvent: {
6
+ category: "element";
7
+ };
8
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, event: ClipboardEvent | null, app: import("../types").AppClassProperties) => Promise<{
9
+ captureUpdate: "EVENTUALLY";
10
+ appState: {
11
+ errorMessage: any;
12
+ contextMenu: {
13
+ items: import("../components/ContextMenu").ContextMenuItems;
14
+ top: number;
15
+ left: number;
16
+ } | null;
17
+ showWelcomeScreen: boolean;
18
+ isLoading: boolean;
19
+ activeEmbeddable: {
20
+ element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
21
+ state: "active" | "hover";
22
+ } | null;
23
+ newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
24
+ resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
25
+ multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
26
+ selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
27
+ isBindingEnabled: boolean;
28
+ startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
29
+ suggestedBindings: import("@excalidraw/element/binding").SuggestedBinding[];
30
+ frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
31
+ frameRendering: {
32
+ enabled: boolean;
33
+ name: boolean;
34
+ outline: boolean;
35
+ clip: boolean;
36
+ };
37
+ editingFrame: string | null;
38
+ elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
39
+ editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
40
+ editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
41
+ activeTool: {
42
+ lastActiveTool: import("../types").ActiveTool | null;
43
+ locked: boolean;
44
+ fromSelection: boolean;
45
+ } & import("../types").ActiveTool;
46
+ penMode: boolean;
47
+ penDetected: boolean;
48
+ exportBackground: boolean;
49
+ exportEmbedScene: boolean;
50
+ exportWithDarkMode: boolean;
51
+ exportScale: number;
52
+ currentItemStrokeColor: string;
53
+ currentItemBackgroundColor: string;
54
+ currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
55
+ currentItemStrokeWidth: number;
56
+ currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
57
+ currentItemRoughness: number;
58
+ currentItemOpacity: number;
59
+ currentItemFontFamily: number;
60
+ currentItemFontSize: number;
61
+ currentItemTextAlign: string;
62
+ currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
63
+ currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
64
+ currentHoveredFontFamily: number | null;
65
+ currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
66
+ currentItemArrowType: "round" | "sharp" | "elbow";
67
+ viewBackgroundColor: string;
68
+ scrollX: number;
69
+ scrollY: number;
70
+ cursorButton: "up" | "down";
71
+ scrolledOutside: boolean;
72
+ name: string | null;
73
+ isResizing: boolean;
74
+ isRotating: boolean;
75
+ zoom: Readonly<{
76
+ value: import("../types").NormalizedZoomValue;
77
+ }>;
78
+ openMenu: "shape" | "canvas" | null;
79
+ openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
80
+ openSidebar: {
81
+ name: string;
82
+ tab?: string | undefined;
83
+ } | null;
84
+ openDialog: {
85
+ name: "help" | "imageExport" | "jsonExport";
86
+ } | {
87
+ name: "ttd";
88
+ tab: "mermaid" | "text-to-diagram";
89
+ } | {
90
+ name: "commandPalette";
91
+ } | {
92
+ name: "elementLinkSelector";
93
+ sourceElementId: string;
94
+ } | null;
95
+ defaultSidebarDockedPreference: boolean;
96
+ lastPointerDownWith: import("@excalidraw/element/types").PointerType;
97
+ selectedElementIds: Readonly<{
98
+ [id: string]: true;
99
+ }>;
100
+ hoveredElementIds: Readonly<{
101
+ [id: string]: true;
102
+ }>;
103
+ previousSelectedElementIds: {
104
+ [id: string]: true;
105
+ };
106
+ selectedElementsAreBeingDragged: boolean;
107
+ shouldCacheIgnoreZoom: boolean;
108
+ toast: {
109
+ message: string;
110
+ closable?: boolean | undefined;
111
+ duration?: number | undefined;
112
+ } | null;
113
+ zenModeEnabled: boolean;
114
+ theme: import("@excalidraw/element/types").Theme;
115
+ gridSize: number;
116
+ gridStep: number;
117
+ gridModeEnabled: boolean;
118
+ viewModeEnabled: boolean;
119
+ selectedGroupIds: {
120
+ [groupId: string]: boolean;
121
+ };
122
+ editingGroupId: string | null;
123
+ width: number;
124
+ height: number;
125
+ offsetTop: number;
126
+ offsetLeft: number;
127
+ fileHandle: import("browser-fs-access").FileSystemHandle | null;
128
+ collaborators: Map<import("../types").SocketId, Readonly<{
129
+ pointer?: import("../types").CollaboratorPointer | undefined;
130
+ button?: "up" | "down" | undefined;
131
+ selectedElementIds?: Readonly<{
132
+ [id: string]: true;
133
+ }> | undefined;
134
+ username?: string | null | undefined;
135
+ userState?: import("@excalidraw/common").UserIdleState | undefined;
136
+ color?: {
137
+ background: string;
138
+ stroke: string;
139
+ } | undefined;
140
+ avatarUrl?: string | undefined;
141
+ id?: string | undefined;
142
+ socketId?: import("../types").SocketId | undefined;
143
+ isCurrentUser?: boolean | undefined;
144
+ isInCall?: boolean | undefined;
145
+ isSpeaking?: boolean | undefined;
146
+ isMuted?: boolean | undefined;
147
+ }>>;
148
+ stats: {
149
+ open: boolean;
150
+ panels: number;
151
+ };
152
+ currentChartType: import("@excalidraw/element/types").ChartType;
153
+ pasteDialog: {
154
+ shown: false;
155
+ data: null;
156
+ } | {
157
+ shown: true;
158
+ data: import("../charts").Spreadsheet;
159
+ };
160
+ pendingImageElementId: string | null;
161
+ showHyperlinkPopup: false | "editor" | "info";
162
+ linkOpacity: number;
163
+ trayModeEnabled: boolean;
164
+ colorPalette?: {
165
+ canvasBackground: import("@excalidraw/common").ColorPaletteCustom;
166
+ elementBackground: import("@excalidraw/common").ColorPaletteCustom;
167
+ elementStroke: import("@excalidraw/common").ColorPaletteCustom;
168
+ topPicks: {
169
+ canvasBackground: [string, string, string, string, string];
170
+ elementStroke: [string, string, string, string, string];
171
+ elementBackground: [string, string, string, string, string];
172
+ };
173
+ } | undefined;
174
+ allowWheelZoom?: boolean | undefined;
175
+ allowPinchZoom?: boolean | undefined;
176
+ pinnedScripts?: string[] | undefined;
177
+ customPens?: any[] | undefined;
178
+ currentStrokeOptions?: any;
179
+ resetCustomPen?: any;
180
+ gridColor: {
181
+ Bold: string;
182
+ Regular: string;
183
+ };
184
+ highlightSearchResult: boolean;
185
+ dynamicStyle: {
186
+ [x: string]: string;
187
+ };
188
+ frameColor: {
189
+ stroke: string;
190
+ fill: string;
191
+ nameColor: string;
192
+ };
193
+ invertBindingBehaviour: boolean;
194
+ selectedLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
195
+ snapLines: readonly import("../snapping").SnapLine[];
196
+ originSnapOffset: {
197
+ x: number;
198
+ y: number;
199
+ } | null;
200
+ objectsSnapModeEnabled: boolean;
201
+ userToFollow: import("../types").UserToFollow | null;
202
+ followedBy: Set<import("../types").SocketId>;
203
+ isCropping: boolean;
204
+ croppingElementId: string | null;
205
+ searchMatches: readonly {
206
+ id: string;
207
+ focus: boolean;
208
+ matchedLines: {
209
+ offsetX: number;
210
+ offsetY: number;
211
+ width: number;
212
+ height: number;
213
+ }[];
214
+ }[];
215
+ };
216
+ } | {
217
+ captureUpdate: "EVENTUALLY";
218
+ appState?: undefined;
219
+ }>;
220
+ keyTest: undefined;
221
+ } & {
222
+ keyTest?: undefined;
223
+ };
224
+ export declare const actionPaste: {
225
+ name: "paste";
226
+ label: string;
227
+ trackEvent: {
228
+ category: "element";
229
+ };
230
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, data: any, app: import("../types").AppClassProperties) => Promise<false | {
231
+ captureUpdate: "EVENTUALLY";
232
+ appState: {
233
+ errorMessage: string;
234
+ contextMenu: {
235
+ items: import("../components/ContextMenu").ContextMenuItems;
236
+ top: number;
237
+ left: number;
238
+ } | null;
239
+ showWelcomeScreen: boolean;
240
+ isLoading: boolean;
241
+ activeEmbeddable: {
242
+ element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
243
+ state: "active" | "hover";
244
+ } | null;
245
+ newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
246
+ resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
247
+ multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
248
+ selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
249
+ isBindingEnabled: boolean;
250
+ startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
251
+ suggestedBindings: import("@excalidraw/element/binding").SuggestedBinding[];
252
+ frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
253
+ frameRendering: {
254
+ enabled: boolean;
255
+ name: boolean;
256
+ outline: boolean;
257
+ clip: boolean;
258
+ };
259
+ editingFrame: string | null;
260
+ elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
261
+ editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
262
+ editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
263
+ activeTool: {
264
+ lastActiveTool: import("../types").ActiveTool | null;
265
+ locked: boolean;
266
+ fromSelection: boolean;
267
+ } & import("../types").ActiveTool;
268
+ penMode: boolean;
269
+ penDetected: boolean;
270
+ exportBackground: boolean;
271
+ exportEmbedScene: boolean;
272
+ exportWithDarkMode: boolean;
273
+ exportScale: number;
274
+ currentItemStrokeColor: string;
275
+ currentItemBackgroundColor: string;
276
+ currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
277
+ currentItemStrokeWidth: number;
278
+ currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
279
+ currentItemRoughness: number;
280
+ currentItemOpacity: number;
281
+ currentItemFontFamily: number;
282
+ currentItemFontSize: number;
283
+ currentItemTextAlign: string;
284
+ currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
285
+ currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
286
+ currentHoveredFontFamily: number | null;
287
+ currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
288
+ currentItemArrowType: "round" | "sharp" | "elbow";
289
+ viewBackgroundColor: string;
290
+ scrollX: number;
291
+ scrollY: number;
292
+ cursorButton: "up" | "down";
293
+ scrolledOutside: boolean;
294
+ name: string | null;
295
+ isResizing: boolean;
296
+ isRotating: boolean;
297
+ zoom: Readonly<{
298
+ value: import("../types").NormalizedZoomValue;
299
+ }>;
300
+ openMenu: "shape" | "canvas" | null;
301
+ openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
302
+ openSidebar: {
303
+ name: string;
304
+ tab?: string | undefined;
305
+ } | null;
306
+ openDialog: {
307
+ name: "help" | "imageExport" | "jsonExport";
308
+ } | {
309
+ name: "ttd";
310
+ tab: "mermaid" | "text-to-diagram";
311
+ } | {
312
+ name: "commandPalette";
313
+ } | {
314
+ name: "elementLinkSelector";
315
+ sourceElementId: string;
316
+ } | null;
317
+ defaultSidebarDockedPreference: boolean;
318
+ lastPointerDownWith: import("@excalidraw/element/types").PointerType;
319
+ selectedElementIds: Readonly<{
320
+ [id: string]: true;
321
+ }>;
322
+ hoveredElementIds: Readonly<{
323
+ [id: string]: true;
324
+ }>;
325
+ previousSelectedElementIds: {
326
+ [id: string]: true;
327
+ };
328
+ selectedElementsAreBeingDragged: boolean;
329
+ shouldCacheIgnoreZoom: boolean;
330
+ toast: {
331
+ message: string;
332
+ closable?: boolean | undefined;
333
+ duration?: number | undefined;
334
+ } | null;
335
+ zenModeEnabled: boolean;
336
+ theme: import("@excalidraw/element/types").Theme;
337
+ gridSize: number;
338
+ gridStep: number;
339
+ gridModeEnabled: boolean;
340
+ viewModeEnabled: boolean;
341
+ selectedGroupIds: {
342
+ [groupId: string]: boolean;
343
+ };
344
+ editingGroupId: string | null;
345
+ width: number;
346
+ height: number;
347
+ offsetTop: number;
348
+ offsetLeft: number;
349
+ fileHandle: import("browser-fs-access").FileSystemHandle | null;
350
+ collaborators: Map<import("../types").SocketId, Readonly<{
351
+ pointer?: import("../types").CollaboratorPointer | undefined;
352
+ button?: "up" | "down" | undefined;
353
+ selectedElementIds?: Readonly<{
354
+ [id: string]: true;
355
+ }> | undefined;
356
+ username?: string | null | undefined;
357
+ userState?: import("@excalidraw/common").UserIdleState | undefined;
358
+ color?: {
359
+ background: string;
360
+ stroke: string;
361
+ } | undefined;
362
+ avatarUrl?: string | undefined;
363
+ id?: string | undefined;
364
+ socketId?: import("../types").SocketId | undefined;
365
+ isCurrentUser?: boolean | undefined;
366
+ isInCall?: boolean | undefined;
367
+ isSpeaking?: boolean | undefined;
368
+ isMuted?: boolean | undefined;
369
+ }>>;
370
+ stats: {
371
+ open: boolean;
372
+ panels: number;
373
+ };
374
+ currentChartType: import("@excalidraw/element/types").ChartType;
375
+ pasteDialog: {
376
+ shown: false;
377
+ data: null;
378
+ } | {
379
+ shown: true;
380
+ data: import("../charts").Spreadsheet;
381
+ };
382
+ pendingImageElementId: string | null;
383
+ showHyperlinkPopup: false | "editor" | "info";
384
+ linkOpacity: number;
385
+ trayModeEnabled: boolean;
386
+ colorPalette?: {
387
+ canvasBackground: import("@excalidraw/common").ColorPaletteCustom;
388
+ elementBackground: import("@excalidraw/common").ColorPaletteCustom;
389
+ elementStroke: import("@excalidraw/common").ColorPaletteCustom;
390
+ topPicks: {
391
+ canvasBackground: [string, string, string, string, string];
392
+ elementStroke: [string, string, string, string, string];
393
+ elementBackground: [string, string, string, string, string];
394
+ };
395
+ } | undefined;
396
+ allowWheelZoom?: boolean | undefined;
397
+ allowPinchZoom?: boolean | undefined;
398
+ pinnedScripts?: string[] | undefined;
399
+ customPens?: any[] | undefined;
400
+ currentStrokeOptions?: any;
401
+ resetCustomPen?: any;
402
+ gridColor: {
403
+ Bold: string;
404
+ Regular: string;
405
+ };
406
+ highlightSearchResult: boolean;
407
+ dynamicStyle: {
408
+ [x: string]: string;
409
+ };
410
+ frameColor: {
411
+ stroke: string;
412
+ fill: string;
413
+ nameColor: string;
414
+ };
415
+ invertBindingBehaviour: boolean;
416
+ selectedLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
417
+ snapLines: readonly import("../snapping").SnapLine[];
418
+ originSnapOffset: {
419
+ x: number;
420
+ y: number;
421
+ } | null;
422
+ objectsSnapModeEnabled: boolean;
423
+ userToFollow: import("../types").UserToFollow | null;
424
+ followedBy: Set<import("../types").SocketId>;
425
+ isCropping: boolean;
426
+ croppingElementId: string | null;
427
+ searchMatches: readonly {
428
+ id: string;
429
+ focus: boolean;
430
+ matchedLines: {
431
+ offsetX: number;
432
+ offsetY: number;
433
+ width: number;
434
+ height: number;
435
+ }[];
436
+ }[];
437
+ };
438
+ } | {
439
+ captureUpdate: "EVENTUALLY";
440
+ appState?: undefined;
441
+ }>;
442
+ keyTest: undefined;
443
+ } & {
444
+ keyTest?: undefined;
445
+ };
446
+ export declare const actionCut: {
447
+ name: "cut";
448
+ label: string;
449
+ icon: import("react/jsx-runtime").JSX.Element;
450
+ trackEvent: {
451
+ category: "element";
452
+ };
453
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, event: ClipboardEvent | null, app: import("../types").AppClassProperties) => false | {
454
+ elements: import("@excalidraw/element/types").OrderedExcalidrawElement[];
455
+ appState: {
456
+ editingLinearElement: null;
457
+ contextMenu: {
458
+ items: import("../components/ContextMenu").ContextMenuItems;
459
+ top: number;
460
+ left: number;
461
+ } | null;
462
+ showWelcomeScreen: boolean;
463
+ isLoading: boolean;
464
+ errorMessage: import("react").ReactNode;
465
+ activeEmbeddable: {
466
+ element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
467
+ state: "active" | "hover";
468
+ } | null;
469
+ newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
470
+ resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
471
+ multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
472
+ selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
473
+ isBindingEnabled: boolean;
474
+ startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
475
+ suggestedBindings: import("@excalidraw/element/binding").SuggestedBinding[];
476
+ frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
477
+ frameRendering: {
478
+ enabled: boolean;
479
+ name: boolean;
480
+ outline: boolean;
481
+ clip: boolean;
482
+ };
483
+ editingFrame: string | null;
484
+ elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
485
+ editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
486
+ activeTool: {
487
+ lastActiveTool: import("../types").ActiveTool | null;
488
+ locked: boolean;
489
+ fromSelection: boolean;
490
+ } & import("../types").ActiveTool;
491
+ penMode: boolean;
492
+ penDetected: boolean;
493
+ exportBackground: boolean;
494
+ exportEmbedScene: boolean;
495
+ exportWithDarkMode: boolean;
496
+ exportScale: number;
497
+ currentItemStrokeColor: string;
498
+ currentItemBackgroundColor: string;
499
+ currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
500
+ currentItemStrokeWidth: number;
501
+ currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
502
+ currentItemRoughness: number;
503
+ currentItemOpacity: number;
504
+ currentItemFontFamily: number;
505
+ currentItemFontSize: number;
506
+ currentItemTextAlign: string;
507
+ currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
508
+ currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
509
+ currentHoveredFontFamily: number | null;
510
+ currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
511
+ currentItemArrowType: "round" | "sharp" | "elbow";
512
+ viewBackgroundColor: string;
513
+ scrollX: number;
514
+ scrollY: number;
515
+ cursorButton: "up" | "down";
516
+ scrolledOutside: boolean;
517
+ name: string | null;
518
+ isResizing: boolean;
519
+ isRotating: boolean;
520
+ zoom: Readonly<{
521
+ value: import("../types").NormalizedZoomValue;
522
+ }>;
523
+ openMenu: "shape" | "canvas" | null;
524
+ openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
525
+ openSidebar: {
526
+ name: string;
527
+ tab?: string | undefined;
528
+ } | null;
529
+ openDialog: {
530
+ name: "help" | "imageExport" | "jsonExport";
531
+ } | {
532
+ name: "ttd";
533
+ tab: "mermaid" | "text-to-diagram";
534
+ } | {
535
+ name: "commandPalette";
536
+ } | {
537
+ name: "elementLinkSelector";
538
+ sourceElementId: string;
539
+ } | null;
540
+ defaultSidebarDockedPreference: boolean;
541
+ lastPointerDownWith: import("@excalidraw/element/types").PointerType;
542
+ selectedElementIds: Readonly<{
543
+ [id: string]: true;
544
+ }>;
545
+ hoveredElementIds: Readonly<{
546
+ [id: string]: true;
547
+ }>;
548
+ previousSelectedElementIds: {
549
+ [id: string]: true;
550
+ };
551
+ selectedElementsAreBeingDragged: boolean;
552
+ shouldCacheIgnoreZoom: boolean;
553
+ toast: {
554
+ message: string;
555
+ closable?: boolean | undefined;
556
+ duration?: number | undefined;
557
+ } | null;
558
+ zenModeEnabled: boolean;
559
+ theme: import("@excalidraw/element/types").Theme;
560
+ gridSize: number;
561
+ gridStep: number;
562
+ gridModeEnabled: boolean;
563
+ viewModeEnabled: boolean;
564
+ selectedGroupIds: {
565
+ [groupId: string]: boolean;
566
+ };
567
+ editingGroupId: string | null;
568
+ width: number;
569
+ height: number;
570
+ offsetTop: number;
571
+ offsetLeft: number;
572
+ fileHandle: import("browser-fs-access").FileSystemHandle | null;
573
+ collaborators: Map<import("../types").SocketId, Readonly<{
574
+ pointer?: import("../types").CollaboratorPointer | undefined;
575
+ button?: "up" | "down" | undefined;
576
+ selectedElementIds?: Readonly<{
577
+ [id: string]: true;
578
+ }> | undefined;
579
+ username?: string | null | undefined;
580
+ userState?: import("@excalidraw/common").UserIdleState | undefined;
581
+ color?: {
582
+ background: string;
583
+ stroke: string;
584
+ } | undefined;
585
+ avatarUrl?: string | undefined;
586
+ id?: string | undefined;
587
+ socketId?: import("../types").SocketId | undefined;
588
+ isCurrentUser?: boolean | undefined;
589
+ isInCall?: boolean | undefined;
590
+ isSpeaking?: boolean | undefined;
591
+ isMuted?: boolean | undefined;
592
+ }>>;
593
+ stats: {
594
+ open: boolean;
595
+ panels: number;
596
+ };
597
+ currentChartType: import("@excalidraw/element/types").ChartType;
598
+ pasteDialog: {
599
+ shown: false;
600
+ data: null;
601
+ } | {
602
+ shown: true;
603
+ data: import("../charts").Spreadsheet;
604
+ };
605
+ pendingImageElementId: string | null;
606
+ showHyperlinkPopup: false | "editor" | "info";
607
+ linkOpacity: number;
608
+ trayModeEnabled: boolean;
609
+ colorPalette?: {
610
+ canvasBackground: import("@excalidraw/common").ColorPaletteCustom;
611
+ elementBackground: import("@excalidraw/common").ColorPaletteCustom;
612
+ elementStroke: import("@excalidraw/common").ColorPaletteCustom;
613
+ topPicks: {
614
+ canvasBackground: [string, string, string, string, string];
615
+ elementStroke: [string, string, string, string, string];
616
+ elementBackground: [string, string, string, string, string];
617
+ };
618
+ } | undefined;
619
+ allowWheelZoom?: boolean | undefined;
620
+ allowPinchZoom?: boolean | undefined;
621
+ pinnedScripts?: string[] | undefined;
622
+ customPens?: any[] | undefined;
623
+ currentStrokeOptions?: any;
624
+ resetCustomPen?: any;
625
+ gridColor: {
626
+ Bold: string;
627
+ Regular: string;
628
+ };
629
+ highlightSearchResult: boolean;
630
+ dynamicStyle: {
631
+ [x: string]: string;
632
+ };
633
+ frameColor: {
634
+ stroke: string;
635
+ fill: string;
636
+ nameColor: string;
637
+ };
638
+ invertBindingBehaviour: boolean;
639
+ selectedLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
640
+ snapLines: readonly import("../snapping").SnapLine[];
641
+ originSnapOffset: {
642
+ x: number;
643
+ y: number;
644
+ } | null;
645
+ objectsSnapModeEnabled: boolean;
646
+ userToFollow: import("../types").UserToFollow | null;
647
+ followedBy: Set<import("../types").SocketId>;
648
+ isCropping: boolean;
649
+ croppingElementId: string | null;
650
+ searchMatches: readonly {
651
+ id: string;
652
+ focus: boolean;
653
+ matchedLines: {
654
+ offsetX: number;
655
+ offsetY: number;
656
+ width: number;
657
+ height: number;
658
+ }[];
659
+ }[];
660
+ };
661
+ captureUpdate: "IMMEDIATELY";
662
+ } | {
663
+ elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[];
664
+ appState: {
665
+ editingLinearElement: {
666
+ selectedPointsIndices: number[];
667
+ startBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
668
+ endBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
669
+ elementId: string & {
670
+ _brand: "excalidrawLinearElementId";
671
+ };
672
+ pointerDownState: Readonly<{
673
+ prevSelectedPointsIndices: readonly number[] | null;
674
+ lastClickedPoint: number;
675
+ lastClickedIsEndPoint: boolean;
676
+ origin: Readonly<{
677
+ x: number;
678
+ y: number;
679
+ }> | null;
680
+ segmentMidpoint: {
681
+ value: import("@excalidraw/math").GlobalPoint | null;
682
+ index: number | null;
683
+ added: boolean;
684
+ };
685
+ }>;
686
+ isDragging: boolean;
687
+ lastUncommittedPoint: import("@excalidraw/math").LocalPoint | null;
688
+ pointerOffset: Readonly<{
689
+ x: number;
690
+ y: number;
691
+ }>;
692
+ hoverPointIndex: number;
693
+ segmentMidPointHoveredCoords: import("@excalidraw/math").GlobalPoint | null;
694
+ elbowed: boolean;
695
+ };
696
+ contextMenu: {
697
+ items: import("../components/ContextMenu").ContextMenuItems;
698
+ top: number;
699
+ left: number;
700
+ } | null;
701
+ showWelcomeScreen: boolean;
702
+ isLoading: boolean;
703
+ errorMessage: import("react").ReactNode;
704
+ activeEmbeddable: {
705
+ element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
706
+ state: "active" | "hover";
707
+ } | null;
708
+ newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
709
+ resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
710
+ multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
711
+ selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
712
+ isBindingEnabled: boolean;
713
+ startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
714
+ suggestedBindings: import("@excalidraw/element/binding").SuggestedBinding[];
715
+ frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
716
+ frameRendering: {
717
+ enabled: boolean;
718
+ name: boolean;
719
+ outline: boolean;
720
+ clip: boolean;
721
+ };
722
+ editingFrame: string | null;
723
+ elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
724
+ editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
725
+ activeTool: {
726
+ lastActiveTool: import("../types").ActiveTool | null;
727
+ locked: boolean;
728
+ fromSelection: boolean;
729
+ } & import("../types").ActiveTool;
730
+ penMode: boolean;
731
+ penDetected: boolean;
732
+ exportBackground: boolean;
733
+ exportEmbedScene: boolean;
734
+ exportWithDarkMode: boolean;
735
+ exportScale: number;
736
+ currentItemStrokeColor: string;
737
+ currentItemBackgroundColor: string;
738
+ currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
739
+ currentItemStrokeWidth: number;
740
+ currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
741
+ currentItemRoughness: number;
742
+ currentItemOpacity: number;
743
+ currentItemFontFamily: number;
744
+ currentItemFontSize: number;
745
+ currentItemTextAlign: string;
746
+ currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
747
+ currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
748
+ currentHoveredFontFamily: number | null;
749
+ currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
750
+ currentItemArrowType: "round" | "sharp" | "elbow";
751
+ viewBackgroundColor: string;
752
+ scrollX: number;
753
+ scrollY: number;
754
+ cursorButton: "up" | "down";
755
+ scrolledOutside: boolean;
756
+ name: string | null;
757
+ isResizing: boolean;
758
+ isRotating: boolean;
759
+ zoom: Readonly<{
760
+ value: import("../types").NormalizedZoomValue;
761
+ }>;
762
+ openMenu: "shape" | "canvas" | null;
763
+ openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
764
+ openSidebar: {
765
+ name: string;
766
+ tab?: string | undefined;
767
+ } | null;
768
+ openDialog: {
769
+ name: "help" | "imageExport" | "jsonExport";
770
+ } | {
771
+ name: "ttd";
772
+ tab: "mermaid" | "text-to-diagram";
773
+ } | {
774
+ name: "commandPalette";
775
+ } | {
776
+ name: "elementLinkSelector";
777
+ sourceElementId: string;
778
+ } | null;
779
+ defaultSidebarDockedPreference: boolean;
780
+ lastPointerDownWith: import("@excalidraw/element/types").PointerType;
781
+ selectedElementIds: Readonly<{
782
+ [id: string]: true;
783
+ }>;
784
+ hoveredElementIds: Readonly<{
785
+ [id: string]: true;
786
+ }>;
787
+ previousSelectedElementIds: {
788
+ [id: string]: true;
789
+ };
790
+ selectedElementsAreBeingDragged: boolean;
791
+ shouldCacheIgnoreZoom: boolean;
792
+ toast: {
793
+ message: string;
794
+ closable?: boolean | undefined;
795
+ duration?: number | undefined;
796
+ } | null;
797
+ zenModeEnabled: boolean;
798
+ theme: import("@excalidraw/element/types").Theme;
799
+ gridSize: number;
800
+ gridStep: number;
801
+ gridModeEnabled: boolean;
802
+ viewModeEnabled: boolean;
803
+ selectedGroupIds: {
804
+ [groupId: string]: boolean;
805
+ };
806
+ editingGroupId: string | null;
807
+ width: number;
808
+ height: number;
809
+ offsetTop: number;
810
+ offsetLeft: number;
811
+ fileHandle: import("browser-fs-access").FileSystemHandle | null;
812
+ collaborators: Map<import("../types").SocketId, Readonly<{
813
+ pointer?: import("../types").CollaboratorPointer | undefined;
814
+ button?: "up" | "down" | undefined;
815
+ selectedElementIds?: Readonly<{
816
+ [id: string]: true;
817
+ }> | undefined;
818
+ username?: string | null | undefined;
819
+ userState?: import("@excalidraw/common").UserIdleState | undefined;
820
+ color?: {
821
+ background: string;
822
+ stroke: string;
823
+ } | undefined;
824
+ avatarUrl?: string | undefined;
825
+ id?: string | undefined;
826
+ socketId?: import("../types").SocketId | undefined;
827
+ isCurrentUser?: boolean | undefined;
828
+ isInCall?: boolean | undefined;
829
+ isSpeaking?: boolean | undefined;
830
+ isMuted?: boolean | undefined;
831
+ }>>;
832
+ stats: {
833
+ open: boolean;
834
+ panels: number;
835
+ };
836
+ currentChartType: import("@excalidraw/element/types").ChartType;
837
+ pasteDialog: {
838
+ shown: false;
839
+ data: null;
840
+ } | {
841
+ shown: true;
842
+ data: import("../charts").Spreadsheet;
843
+ };
844
+ pendingImageElementId: string | null;
845
+ showHyperlinkPopup: false | "editor" | "info";
846
+ linkOpacity: number;
847
+ trayModeEnabled: boolean;
848
+ colorPalette?: {
849
+ canvasBackground: import("@excalidraw/common").ColorPaletteCustom;
850
+ elementBackground: import("@excalidraw/common").ColorPaletteCustom;
851
+ elementStroke: import("@excalidraw/common").ColorPaletteCustom;
852
+ topPicks: {
853
+ canvasBackground: [string, string, string, string, string];
854
+ elementStroke: [string, string, string, string, string];
855
+ elementBackground: [string, string, string, string, string];
856
+ };
857
+ } | undefined;
858
+ allowWheelZoom?: boolean | undefined;
859
+ allowPinchZoom?: boolean | undefined;
860
+ pinnedScripts?: string[] | undefined;
861
+ customPens?: any[] | undefined;
862
+ currentStrokeOptions?: any;
863
+ resetCustomPen?: any;
864
+ gridColor: {
865
+ Bold: string;
866
+ Regular: string;
867
+ };
868
+ highlightSearchResult: boolean;
869
+ dynamicStyle: {
870
+ [x: string]: string;
871
+ };
872
+ frameColor: {
873
+ stroke: string;
874
+ fill: string;
875
+ nameColor: string;
876
+ };
877
+ invertBindingBehaviour: boolean;
878
+ selectedLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
879
+ snapLines: readonly import("../snapping").SnapLine[];
880
+ originSnapOffset: {
881
+ x: number;
882
+ y: number;
883
+ } | null;
884
+ objectsSnapModeEnabled: boolean;
885
+ userToFollow: import("../types").UserToFollow | null;
886
+ followedBy: Set<import("../types").SocketId>;
887
+ isCropping: boolean;
888
+ croppingElementId: string | null;
889
+ searchMatches: readonly {
890
+ id: string;
891
+ focus: boolean;
892
+ matchedLines: {
893
+ offsetX: number;
894
+ offsetY: number;
895
+ width: number;
896
+ height: number;
897
+ }[];
898
+ }[];
899
+ };
900
+ captureUpdate: "IMMEDIATELY";
901
+ } | {
902
+ elements: import("@excalidraw/element/types").ExcalidrawElement[];
903
+ appState: {
904
+ activeTool: {
905
+ lastActiveTool: import("../types").ActiveTool | null;
906
+ locked: boolean;
907
+ fromSelection: boolean;
908
+ } & import("../types").ActiveTool;
909
+ multiElement: null;
910
+ activeEmbeddable: null;
911
+ selectedLinearElement: null;
912
+ editingGroupId: string | null;
913
+ selectedElementIds: Readonly<{
914
+ [id: string]: true;
915
+ }>;
916
+ selectedGroupIds: {
917
+ [groupId: string]: boolean;
918
+ };
919
+ contextMenu: {
920
+ items: import("../components/ContextMenu").ContextMenuItems;
921
+ top: number;
922
+ left: number;
923
+ } | null;
924
+ showWelcomeScreen: boolean;
925
+ isLoading: boolean;
926
+ errorMessage: import("react").ReactNode;
927
+ newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
928
+ resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
929
+ selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
930
+ isBindingEnabled: boolean;
931
+ startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
932
+ suggestedBindings: import("@excalidraw/element/binding").SuggestedBinding[];
933
+ frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
934
+ frameRendering: {
935
+ enabled: boolean;
936
+ name: boolean;
937
+ outline: boolean;
938
+ clip: boolean;
939
+ };
940
+ editingFrame: string | null;
941
+ elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
942
+ editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
943
+ editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
944
+ penMode: boolean;
945
+ penDetected: boolean;
946
+ exportBackground: boolean;
947
+ exportEmbedScene: boolean;
948
+ exportWithDarkMode: boolean;
949
+ exportScale: number;
950
+ currentItemStrokeColor: string;
951
+ currentItemBackgroundColor: string;
952
+ currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
953
+ currentItemStrokeWidth: number;
954
+ currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
955
+ currentItemRoughness: number;
956
+ currentItemOpacity: number;
957
+ currentItemFontFamily: number;
958
+ currentItemFontSize: number;
959
+ currentItemTextAlign: string;
960
+ currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
961
+ currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
962
+ currentHoveredFontFamily: number | null;
963
+ currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
964
+ currentItemArrowType: "round" | "sharp" | "elbow";
965
+ viewBackgroundColor: string;
966
+ scrollX: number;
967
+ scrollY: number;
968
+ cursorButton: "up" | "down";
969
+ scrolledOutside: boolean;
970
+ name: string | null;
971
+ isResizing: boolean;
972
+ isRotating: boolean;
973
+ zoom: Readonly<{
974
+ value: import("../types").NormalizedZoomValue;
975
+ }>;
976
+ openMenu: "shape" | "canvas" | null;
977
+ openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
978
+ openSidebar: {
979
+ name: string;
980
+ tab?: string | undefined;
981
+ } | null;
982
+ openDialog: {
983
+ name: "help" | "imageExport" | "jsonExport";
984
+ } | {
985
+ name: "ttd";
986
+ tab: "mermaid" | "text-to-diagram";
987
+ } | {
988
+ name: "commandPalette";
989
+ } | {
990
+ name: "elementLinkSelector";
991
+ sourceElementId: string;
992
+ } | null;
993
+ defaultSidebarDockedPreference: boolean;
994
+ lastPointerDownWith: import("@excalidraw/element/types").PointerType;
995
+ hoveredElementIds: Readonly<{
996
+ [id: string]: true;
997
+ }>;
998
+ previousSelectedElementIds: {
999
+ [id: string]: true;
1000
+ };
1001
+ selectedElementsAreBeingDragged: boolean;
1002
+ shouldCacheIgnoreZoom: boolean;
1003
+ toast: {
1004
+ message: string;
1005
+ closable?: boolean | undefined;
1006
+ duration?: number | undefined;
1007
+ } | null;
1008
+ zenModeEnabled: boolean;
1009
+ theme: import("@excalidraw/element/types").Theme;
1010
+ gridSize: number;
1011
+ gridStep: number;
1012
+ gridModeEnabled: boolean;
1013
+ viewModeEnabled: boolean;
1014
+ width: number;
1015
+ height: number;
1016
+ offsetTop: number;
1017
+ offsetLeft: number;
1018
+ fileHandle: import("browser-fs-access").FileSystemHandle | null;
1019
+ collaborators: Map<import("../types").SocketId, Readonly<{
1020
+ pointer?: import("../types").CollaboratorPointer | undefined;
1021
+ button?: "up" | "down" | undefined;
1022
+ selectedElementIds?: Readonly<{
1023
+ [id: string]: true;
1024
+ }> | undefined;
1025
+ username?: string | null | undefined;
1026
+ userState?: import("@excalidraw/common").UserIdleState | undefined;
1027
+ color?: {
1028
+ background: string;
1029
+ stroke: string;
1030
+ } | undefined;
1031
+ avatarUrl?: string | undefined;
1032
+ id?: string | undefined;
1033
+ socketId?: import("../types").SocketId | undefined;
1034
+ isCurrentUser?: boolean | undefined;
1035
+ isInCall?: boolean | undefined;
1036
+ isSpeaking?: boolean | undefined;
1037
+ isMuted?: boolean | undefined;
1038
+ }>>;
1039
+ stats: {
1040
+ open: boolean;
1041
+ panels: number;
1042
+ };
1043
+ currentChartType: import("@excalidraw/element/types").ChartType;
1044
+ pasteDialog: {
1045
+ shown: false;
1046
+ data: null;
1047
+ } | {
1048
+ shown: true;
1049
+ data: import("../charts").Spreadsheet;
1050
+ };
1051
+ pendingImageElementId: string | null;
1052
+ showHyperlinkPopup: false | "editor" | "info";
1053
+ linkOpacity: number;
1054
+ trayModeEnabled: boolean;
1055
+ colorPalette?: {
1056
+ canvasBackground: import("@excalidraw/common").ColorPaletteCustom;
1057
+ elementBackground: import("@excalidraw/common").ColorPaletteCustom;
1058
+ elementStroke: import("@excalidraw/common").ColorPaletteCustom;
1059
+ topPicks: {
1060
+ canvasBackground: [string, string, string, string, string];
1061
+ elementStroke: [string, string, string, string, string];
1062
+ elementBackground: [string, string, string, string, string];
1063
+ };
1064
+ } | undefined;
1065
+ allowWheelZoom?: boolean | undefined;
1066
+ allowPinchZoom?: boolean | undefined;
1067
+ pinnedScripts?: string[] | undefined;
1068
+ customPens?: any[] | undefined;
1069
+ currentStrokeOptions?: any;
1070
+ resetCustomPen?: any;
1071
+ gridColor: {
1072
+ Bold: string;
1073
+ Regular: string;
1074
+ };
1075
+ highlightSearchResult: boolean;
1076
+ dynamicStyle: {
1077
+ [x: string]: string;
1078
+ };
1079
+ frameColor: {
1080
+ stroke: string;
1081
+ fill: string;
1082
+ nameColor: string;
1083
+ };
1084
+ invertBindingBehaviour: boolean;
1085
+ snapLines: readonly import("../snapping").SnapLine[];
1086
+ originSnapOffset: {
1087
+ x: number;
1088
+ y: number;
1089
+ } | null;
1090
+ objectsSnapModeEnabled: boolean;
1091
+ userToFollow: import("../types").UserToFollow | null;
1092
+ followedBy: Set<import("../types").SocketId>;
1093
+ isCropping: boolean;
1094
+ croppingElementId: string | null;
1095
+ searchMatches: readonly {
1096
+ id: string;
1097
+ focus: boolean;
1098
+ matchedLines: {
1099
+ offsetX: number;
1100
+ offsetY: number;
1101
+ width: number;
1102
+ height: number;
1103
+ }[];
1104
+ }[];
1105
+ };
1106
+ captureUpdate: "IMMEDIATELY" | "EVENTUALLY";
1107
+ };
1108
+ keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
1109
+ } & {
1110
+ keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
1111
+ };
1112
+ export declare const actionCopyAsSvg: {
1113
+ name: "copyAsSvg";
1114
+ label: string;
1115
+ icon: import("react/jsx-runtime").JSX.Element;
1116
+ trackEvent: {
1117
+ category: "element";
1118
+ };
1119
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _data: any, app: import("../types").AppClassProperties) => Promise<{
1120
+ captureUpdate: "EVENTUALLY";
1121
+ appState?: undefined;
1122
+ } | {
1123
+ appState: {
1124
+ toast: {
1125
+ message: string;
1126
+ };
1127
+ errorMessage?: undefined;
1128
+ };
1129
+ captureUpdate: "EVENTUALLY";
1130
+ } | {
1131
+ appState: {
1132
+ errorMessage: any;
1133
+ toast?: undefined;
1134
+ };
1135
+ captureUpdate: "EVENTUALLY";
1136
+ }>;
1137
+ predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[]) => boolean;
1138
+ keywords: string[];
1139
+ } & {
1140
+ keyTest?: undefined;
1141
+ };
1142
+ export declare const actionCopyAsPng: {
1143
+ name: "copyAsPng";
1144
+ label: string;
1145
+ icon: import("react/jsx-runtime").JSX.Element;
1146
+ trackEvent: {
1147
+ category: "element";
1148
+ };
1149
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _data: any, app: import("../types").AppClassProperties) => Promise<{
1150
+ captureUpdate: "EVENTUALLY";
1151
+ appState?: undefined;
1152
+ } | {
1153
+ appState: {
1154
+ errorMessage: any;
1155
+ contextMenu: {
1156
+ items: import("../components/ContextMenu").ContextMenuItems;
1157
+ top: number;
1158
+ left: number;
1159
+ } | null;
1160
+ showWelcomeScreen: boolean;
1161
+ isLoading: boolean;
1162
+ activeEmbeddable: {
1163
+ element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
1164
+ state: "active" | "hover";
1165
+ } | null;
1166
+ newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
1167
+ resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1168
+ multiElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawLinearElement> | null;
1169
+ selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1170
+ isBindingEnabled: boolean;
1171
+ startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
1172
+ suggestedBindings: import("@excalidraw/element/binding").SuggestedBinding[];
1173
+ frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
1174
+ frameRendering: {
1175
+ enabled: boolean;
1176
+ name: boolean;
1177
+ outline: boolean;
1178
+ clip: boolean;
1179
+ };
1180
+ editingFrame: string | null;
1181
+ elementsToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawElement>[] | null;
1182
+ editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
1183
+ editingLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
1184
+ activeTool: {
1185
+ lastActiveTool: import("../types").ActiveTool | null;
1186
+ locked: boolean;
1187
+ fromSelection: boolean;
1188
+ } & import("../types").ActiveTool;
1189
+ penMode: boolean;
1190
+ penDetected: boolean;
1191
+ exportBackground: boolean;
1192
+ exportEmbedScene: boolean;
1193
+ exportWithDarkMode: boolean;
1194
+ exportScale: number;
1195
+ currentItemStrokeColor: string;
1196
+ currentItemBackgroundColor: string;
1197
+ currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
1198
+ currentItemStrokeWidth: number;
1199
+ currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
1200
+ currentItemRoughness: number;
1201
+ currentItemOpacity: number;
1202
+ currentItemFontFamily: number;
1203
+ currentItemFontSize: number;
1204
+ currentItemTextAlign: string;
1205
+ currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1206
+ currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1207
+ currentHoveredFontFamily: number | null;
1208
+ currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
1209
+ currentItemArrowType: "round" | "sharp" | "elbow";
1210
+ viewBackgroundColor: string;
1211
+ scrollX: number;
1212
+ scrollY: number;
1213
+ cursorButton: "up" | "down";
1214
+ scrolledOutside: boolean;
1215
+ name: string | null;
1216
+ isResizing: boolean;
1217
+ isRotating: boolean;
1218
+ zoom: Readonly<{
1219
+ value: import("../types").NormalizedZoomValue;
1220
+ }>;
1221
+ openMenu: "shape" | "canvas" | null;
1222
+ openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
1223
+ openSidebar: {
1224
+ name: string;
1225
+ tab?: string | undefined;
1226
+ } | null;
1227
+ openDialog: {
1228
+ name: "help" | "imageExport" | "jsonExport";
1229
+ } | {
1230
+ name: "ttd";
1231
+ tab: "mermaid" | "text-to-diagram";
1232
+ } | {
1233
+ name: "commandPalette";
1234
+ } | {
1235
+ name: "elementLinkSelector";
1236
+ sourceElementId: string;
1237
+ } | null;
1238
+ defaultSidebarDockedPreference: boolean;
1239
+ lastPointerDownWith: import("@excalidraw/element/types").PointerType;
1240
+ selectedElementIds: Readonly<{
1241
+ [id: string]: true;
1242
+ }>;
1243
+ hoveredElementIds: Readonly<{
1244
+ [id: string]: true;
1245
+ }>;
1246
+ previousSelectedElementIds: {
1247
+ [id: string]: true;
1248
+ };
1249
+ selectedElementsAreBeingDragged: boolean;
1250
+ shouldCacheIgnoreZoom: boolean;
1251
+ toast: {
1252
+ message: string;
1253
+ closable?: boolean | undefined;
1254
+ duration?: number | undefined;
1255
+ } | null;
1256
+ zenModeEnabled: boolean;
1257
+ theme: import("@excalidraw/element/types").Theme;
1258
+ gridSize: number;
1259
+ gridStep: number;
1260
+ gridModeEnabled: boolean;
1261
+ viewModeEnabled: boolean;
1262
+ selectedGroupIds: {
1263
+ [groupId: string]: boolean;
1264
+ };
1265
+ editingGroupId: string | null;
1266
+ width: number;
1267
+ height: number;
1268
+ offsetTop: number;
1269
+ offsetLeft: number;
1270
+ fileHandle: import("browser-fs-access").FileSystemHandle | null;
1271
+ collaborators: Map<import("../types").SocketId, Readonly<{
1272
+ pointer?: import("../types").CollaboratorPointer | undefined;
1273
+ button?: "up" | "down" | undefined;
1274
+ selectedElementIds?: Readonly<{
1275
+ [id: string]: true;
1276
+ }> | undefined;
1277
+ username?: string | null | undefined;
1278
+ userState?: import("@excalidraw/common").UserIdleState | undefined;
1279
+ color?: {
1280
+ background: string;
1281
+ stroke: string;
1282
+ } | undefined;
1283
+ avatarUrl?: string | undefined;
1284
+ id?: string | undefined;
1285
+ socketId?: import("../types").SocketId | undefined;
1286
+ isCurrentUser?: boolean | undefined;
1287
+ isInCall?: boolean | undefined;
1288
+ isSpeaking?: boolean | undefined;
1289
+ isMuted?: boolean | undefined;
1290
+ }>>;
1291
+ stats: {
1292
+ open: boolean;
1293
+ panels: number;
1294
+ };
1295
+ currentChartType: import("@excalidraw/element/types").ChartType;
1296
+ pasteDialog: {
1297
+ shown: false;
1298
+ data: null;
1299
+ } | {
1300
+ shown: true;
1301
+ data: import("../charts").Spreadsheet;
1302
+ };
1303
+ pendingImageElementId: string | null;
1304
+ showHyperlinkPopup: false | "editor" | "info";
1305
+ linkOpacity: number;
1306
+ trayModeEnabled: boolean;
1307
+ colorPalette?: {
1308
+ canvasBackground: import("@excalidraw/common").ColorPaletteCustom;
1309
+ elementBackground: import("@excalidraw/common").ColorPaletteCustom;
1310
+ elementStroke: import("@excalidraw/common").ColorPaletteCustom;
1311
+ topPicks: {
1312
+ canvasBackground: [string, string, string, string, string];
1313
+ elementStroke: [string, string, string, string, string];
1314
+ elementBackground: [string, string, string, string, string];
1315
+ };
1316
+ } | undefined;
1317
+ allowWheelZoom?: boolean | undefined;
1318
+ allowPinchZoom?: boolean | undefined;
1319
+ pinnedScripts?: string[] | undefined;
1320
+ customPens?: any[] | undefined;
1321
+ currentStrokeOptions?: any;
1322
+ resetCustomPen?: any;
1323
+ gridColor: {
1324
+ Bold: string;
1325
+ Regular: string;
1326
+ };
1327
+ highlightSearchResult: boolean;
1328
+ dynamicStyle: {
1329
+ [x: string]: string;
1330
+ };
1331
+ frameColor: {
1332
+ stroke: string;
1333
+ fill: string;
1334
+ nameColor: string;
1335
+ };
1336
+ invertBindingBehaviour: boolean;
1337
+ selectedLinearElement: import("@excalidraw/element/linearElementEditor").LinearElementEditor | null;
1338
+ snapLines: readonly import("../snapping").SnapLine[];
1339
+ originSnapOffset: {
1340
+ x: number;
1341
+ y: number;
1342
+ } | null;
1343
+ objectsSnapModeEnabled: boolean;
1344
+ userToFollow: import("../types").UserToFollow | null;
1345
+ followedBy: Set<import("../types").SocketId>;
1346
+ isCropping: boolean;
1347
+ croppingElementId: string | null;
1348
+ searchMatches: readonly {
1349
+ id: string;
1350
+ focus: boolean;
1351
+ matchedLines: {
1352
+ offsetX: number;
1353
+ offsetY: number;
1354
+ width: number;
1355
+ height: number;
1356
+ }[];
1357
+ }[];
1358
+ };
1359
+ captureUpdate: "EVENTUALLY";
1360
+ }>;
1361
+ predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[]) => boolean;
1362
+ keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
1363
+ keywords: string[];
1364
+ } & {
1365
+ keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
1366
+ };
1367
+ export declare const copyText: {
1368
+ name: "copyText";
1369
+ label: string;
1370
+ trackEvent: {
1371
+ category: "element";
1372
+ };
1373
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: any, app: import("../types").AppClassProperties) => {
1374
+ captureUpdate: "EVENTUALLY";
1375
+ };
1376
+ predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: import("../types").AppState, _: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
1377
+ keywords: string[];
1378
+ } & {
1379
+ keyTest?: undefined;
1380
+ };