@zsviczian/excalidraw 0.17.6-2 → 0.17.6-20

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 (425) hide show
  1. package/dist/excalidraw.development.js +13047 -1542
  2. package/dist/excalidraw.production.min.js +1 -1
  3. package/dist/excalidraw.production.min.js.LICENSE.txt +21 -1
  4. package/dist/styles.development.css +425 -347
  5. package/dist/styles.production.css +3 -2
  6. package/package.json +2 -3
  7. package/types/excalidraw/actions/actionAddToLibrary.d.ts +629 -605
  8. package/types/excalidraw/actions/actionAlign.d.ts +108 -108
  9. package/types/excalidraw/actions/actionBoundText.d.ts +456 -440
  10. package/types/excalidraw/actions/actionCanvas.d.ts +3070 -2958
  11. package/types/excalidraw/actions/actionClipboard.d.ts +1370 -1322
  12. package/types/excalidraw/actions/actionCropEditor.d.ts +222 -0
  13. package/types/excalidraw/actions/actionDeleteSelected.d.ts +664 -640
  14. package/types/excalidraw/actions/actionDistribute.d.ts +34 -34
  15. package/types/excalidraw/actions/actionDuplicateSelection.d.ts +21 -21
  16. package/types/excalidraw/actions/actionElementLink.d.ts +244 -0
  17. package/types/excalidraw/actions/actionElementLock.d.ts +444 -428
  18. package/types/excalidraw/actions/actionExport.d.ts +1953 -1884
  19. package/types/excalidraw/actions/actionFinalize.d.ts +425 -409
  20. package/types/excalidraw/actions/actionFlip.d.ts +34 -34
  21. package/types/excalidraw/actions/actionFrame.d.ts +887 -855
  22. package/types/excalidraw/actions/actionGroup.d.ts +454 -438
  23. package/types/excalidraw/actions/actionHistory.d.ts +7 -7
  24. package/types/excalidraw/actions/actionLinearEditor.d.ts +223 -215
  25. package/types/excalidraw/actions/actionLink.d.ts +223 -215
  26. package/types/excalidraw/actions/actionMenu.d.ts +649 -628
  27. package/types/excalidraw/actions/actionNavigate.d.ts +430 -414
  28. package/types/excalidraw/actions/actionProperties.d.ts +3276 -3156
  29. package/types/excalidraw/actions/actionSelectAll.d.ts +222 -214
  30. package/types/excalidraw/actions/actionStyles.d.ts +236 -228
  31. package/types/excalidraw/actions/actionTextAutoResize.d.ts +17 -17
  32. package/types/excalidraw/actions/actionToggleGridMode.d.ts +225 -217
  33. package/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +223 -215
  34. package/types/excalidraw/actions/actionToggleSearchMenu.d.ts +420 -407
  35. package/types/excalidraw/actions/actionToggleStats.d.ts +223 -215
  36. package/types/excalidraw/actions/actionToggleViewMode.d.ts +224 -216
  37. package/types/excalidraw/actions/actionToggleZenMode.d.ts +224 -216
  38. package/types/excalidraw/actions/actionZindex.d.ts +74 -74
  39. package/types/excalidraw/actions/index.d.ts +27 -26
  40. package/types/excalidraw/actions/manager.d.ts +21 -21
  41. package/types/excalidraw/actions/register.d.ts +5 -5
  42. package/types/excalidraw/actions/shortcuts.d.ts +4 -4
  43. package/types/excalidraw/actions/types.d.ts +46 -46
  44. package/types/excalidraw/align.d.ts +6 -6
  45. package/types/excalidraw/analytics.d.ts +1 -1
  46. package/types/excalidraw/animated-trail.d.ts +33 -33
  47. package/types/excalidraw/animation-frame-handler.d.ts +16 -16
  48. package/types/excalidraw/appState.d.ts +89 -89
  49. package/types/excalidraw/binaryheap.d.ts +12 -12
  50. package/types/excalidraw/change.d.ts +191 -191
  51. package/types/excalidraw/charts.d.ts +27 -27
  52. package/types/excalidraw/clients.d.ts +14 -14
  53. package/types/excalidraw/clipboard.d.ts +44 -44
  54. package/types/excalidraw/colors.d.ts +61 -61
  55. package/types/excalidraw/components/Actions.d.ts +34 -34
  56. package/types/excalidraw/components/ActiveConfirmDialog.d.ts +4 -4
  57. package/types/excalidraw/components/App.d.ts +550 -535
  58. package/types/excalidraw/components/Avatar.d.ts +11 -11
  59. package/types/excalidraw/components/BraveMeasureTextError.d.ts +2 -2
  60. package/types/excalidraw/components/Button.d.ts +17 -17
  61. package/types/excalidraw/components/ButtonIcon.d.ts +14 -14
  62. package/types/excalidraw/components/ButtonIconCycle.d.ts +10 -10
  63. package/types/excalidraw/components/ButtonIconSelect.d.ts +19 -19
  64. package/types/excalidraw/components/ButtonSelect.d.ts +9 -9
  65. package/types/excalidraw/components/ButtonSeparator.d.ts +1 -1
  66. package/types/excalidraw/components/Card.d.ts +6 -6
  67. package/types/excalidraw/components/CheckboxItem.d.ts +8 -8
  68. package/types/excalidraw/components/ColorPicker/ColorInput.d.ts +9 -9
  69. package/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +19 -19
  70. package/types/excalidraw/components/ColorPicker/CustomColorList.d.ts +8 -8
  71. package/types/excalidraw/components/ColorPicker/HotkeyLabel.d.ts +8 -8
  72. package/types/excalidraw/components/ColorPicker/Picker.d.ts +18 -18
  73. package/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +10 -10
  74. package/types/excalidraw/components/ColorPicker/PickerHeading.d.ts +5 -5
  75. package/types/excalidraw/components/ColorPicker/ShadeList.d.ts +8 -8
  76. package/types/excalidraw/components/ColorPicker/TopPicks.d.ts +9 -9
  77. package/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +21 -21
  78. package/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +20 -20
  79. package/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +18 -18
  80. package/types/excalidraw/components/CommandPalette/defaultCommandPaletteItems.d.ts +2 -2
  81. package/types/excalidraw/components/CommandPalette/types.d.ts +25 -25
  82. package/types/excalidraw/components/ConfirmDialog.d.ts +10 -10
  83. package/types/excalidraw/components/ContextMenu.d.ts +16 -16
  84. package/types/excalidraw/components/DarkModeToggle.d.ts +7 -7
  85. package/types/excalidraw/components/DefaultSidebar.d.ts +30 -30
  86. package/types/excalidraw/components/DiagramToCodePlugin/DiagramToCodePlugin.d.ts +4 -4
  87. package/types/excalidraw/components/Dialog.d.ts +13 -13
  88. package/types/excalidraw/components/DialogActionButton.d.ts +10 -10
  89. package/types/excalidraw/components/ElementLinkDialog.d.ts +11 -0
  90. package/types/excalidraw/components/ErrorDialog.d.ts +5 -5
  91. package/types/excalidraw/components/ExcalidrawLogo.d.ts +15 -15
  92. package/types/excalidraw/components/EyeDropper.d.ts +27 -27
  93. package/types/excalidraw/components/FilledButton.d.ts +18 -18
  94. package/types/excalidraw/components/FixedSideContainer.d.ts +9 -9
  95. package/types/excalidraw/components/FollowMode/FollowMode.d.ts +10 -10
  96. package/types/excalidraw/components/FontPicker/FontPicker.d.ts +21 -21
  97. package/types/excalidraw/components/FontPicker/FontPickerList.d.ts +25 -25
  98. package/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +6 -6
  99. package/types/excalidraw/components/FontPicker/keyboardNavHandlers.d.ts +13 -13
  100. package/types/excalidraw/components/HandButton.d.ts +10 -10
  101. package/types/excalidraw/components/HelpButton.d.ts +7 -7
  102. package/types/excalidraw/components/HelpDialog.d.ts +4 -4
  103. package/types/excalidraw/components/HintViewer.d.ts +10 -10
  104. package/types/excalidraw/components/IconPicker.d.ts +14 -14
  105. package/types/excalidraw/components/ImageExportDialog.d.ts +14 -14
  106. package/types/excalidraw/components/InitializeApp.d.ts +10 -10
  107. package/types/excalidraw/components/InlineIcon.d.ts +3 -3
  108. package/types/excalidraw/components/Island.d.ts +10 -10
  109. package/types/excalidraw/components/JSONExportDialog.d.ts +15 -15
  110. package/types/excalidraw/components/LaserPointerButton.d.ts +10 -10
  111. package/types/excalidraw/components/LayerUI.d.ts +31 -30
  112. package/types/excalidraw/components/LibraryMenu.d.ts +24 -24
  113. package/types/excalidraw/components/LibraryMenuBrowseButton.d.ts +7 -7
  114. package/types/excalidraw/components/LibraryMenuControlButtons.d.ts +9 -9
  115. package/types/excalidraw/components/LibraryMenuHeaderContent.d.ts +17 -17
  116. package/types/excalidraw/components/LibraryMenuItems.d.ts +14 -14
  117. package/types/excalidraw/components/LibraryMenuSection.d.ts +23 -23
  118. package/types/excalidraw/components/LibraryUnit.d.ts +14 -14
  119. package/types/excalidraw/components/LoadingMessage.d.ts +5 -5
  120. package/types/excalidraw/components/LockButton.d.ts +10 -10
  121. package/types/excalidraw/components/MagicButton.d.ts +9 -9
  122. package/types/excalidraw/components/MobileMenu.d.ts +24 -24
  123. package/types/excalidraw/components/Modal.d.ts +14 -14
  124. package/types/excalidraw/components/OverwriteConfirm/OverwriteConfirm.d.ts +17 -17
  125. package/types/excalidraw/components/OverwriteConfirm/OverwriteConfirmActions.d.ts +17 -17
  126. package/types/excalidraw/components/OverwriteConfirm/OverwriteConfirmState.d.ts +22 -22
  127. package/types/excalidraw/components/Paragraph.d.ts +4 -4
  128. package/types/excalidraw/components/PasteChartDialog.d.ts +8 -8
  129. package/types/excalidraw/components/PenModeButton.d.ts +12 -12
  130. package/types/excalidraw/components/Popover.d.ts +15 -15
  131. package/types/excalidraw/components/ProjectName.d.ts +10 -10
  132. package/types/excalidraw/components/PropertiesPopover.d.ts +15 -15
  133. package/types/excalidraw/components/PublishLibrary.d.ts +16 -16
  134. package/types/excalidraw/components/QuickSearch.d.ts +9 -9
  135. package/types/excalidraw/components/RadioGroup.d.ts +13 -13
  136. package/types/excalidraw/components/SVGLayer.d.ts +7 -7
  137. package/types/excalidraw/components/ScrollableList.d.ts +8 -8
  138. package/types/excalidraw/components/SearchMenu.d.ts +5 -5
  139. package/types/excalidraw/components/SearchSidebar.d.ts +1 -0
  140. package/types/excalidraw/components/Section.d.ts +6 -6
  141. package/types/excalidraw/components/ShareableLinkDialog.d.ts +7 -7
  142. package/types/excalidraw/components/Sidebar/Sidebar.d.ts +76 -76
  143. package/types/excalidraw/components/Sidebar/SidebarHeader.d.ts +7 -7
  144. package/types/excalidraw/components/Sidebar/SidebarTab.d.ts +8 -8
  145. package/types/excalidraw/components/Sidebar/SidebarTabTrigger.d.ts +9 -9
  146. package/types/excalidraw/components/Sidebar/SidebarTabTriggers.d.ts +6 -6
  147. package/types/excalidraw/components/Sidebar/SidebarTabs.d.ts +6 -6
  148. package/types/excalidraw/components/Sidebar/SidebarTrigger.d.ts +6 -6
  149. package/types/excalidraw/components/Sidebar/common.d.ts +33 -33
  150. package/types/excalidraw/components/Spinner.d.ts +8 -8
  151. package/types/excalidraw/components/Stack.d.ts +16 -16
  152. package/types/excalidraw/components/Stats/Angle.d.ts +11 -11
  153. package/types/excalidraw/components/Stats/CanvasGrid.d.ts +10 -10
  154. package/types/excalidraw/components/Stats/CanvasGridSize.d.ts +10 -10
  155. package/types/excalidraw/components/Stats/Collapsible.d.ts +8 -8
  156. package/types/excalidraw/components/Stats/Dimension.d.ts +11 -11
  157. package/types/excalidraw/components/Stats/DragInput.d.ts +34 -34
  158. package/types/excalidraw/components/Stats/FontSize.d.ts +11 -11
  159. package/types/excalidraw/components/Stats/MultiAngle.d.ts +11 -11
  160. package/types/excalidraw/components/Stats/MultiDimension.d.ts +14 -14
  161. package/types/excalidraw/components/Stats/MultiFontSize.d.ts +12 -12
  162. package/types/excalidraw/components/Stats/MultiPosition.d.ts +14 -14
  163. package/types/excalidraw/components/Stats/Position.d.ts +12 -12
  164. package/types/excalidraw/components/Stats/index.d.ts +35 -35
  165. package/types/excalidraw/components/Stats/utils.d.ts +26 -26
  166. package/types/excalidraw/components/Switch.d.ts +9 -9
  167. package/types/excalidraw/components/TTDDialog/MermaidToExcalidraw.d.ts +8 -14
  168. package/types/excalidraw/components/TTDDialog/MermaidToExcalidrawLib.d.ts +9 -0
  169. package/types/excalidraw/components/TTDDialog/TTDDialog.d.ts +29 -29
  170. package/types/excalidraw/components/TTDDialog/TTDDialogInput.d.ts +9 -9
  171. package/types/excalidraw/components/TTDDialog/TTDDialogOutput.d.ts +7 -7
  172. package/types/excalidraw/components/TTDDialog/TTDDialogPanel.d.ts +17 -17
  173. package/types/excalidraw/components/TTDDialog/TTDDialogPanels.d.ts +4 -4
  174. package/types/excalidraw/components/TTDDialog/TTDDialogSubmitShortcut.d.ts +1 -1
  175. package/types/excalidraw/components/TTDDialog/TTDDialogTab.d.ts +7 -7
  176. package/types/excalidraw/components/TTDDialog/TTDDialogTabTrigger.d.ts +8 -8
  177. package/types/excalidraw/components/TTDDialog/TTDDialogTabTriggers.d.ts +6 -6
  178. package/types/excalidraw/components/TTDDialog/TTDDialogTabs.d.ts +11 -11
  179. package/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +8 -8
  180. package/types/excalidraw/components/TTDDialog/common.d.ts +32 -32
  181. package/types/excalidraw/components/TextField.d.ts +21 -21
  182. package/types/excalidraw/components/Toast.d.ts +9 -9
  183. package/types/excalidraw/components/ToolButton.d.ts +49 -49
  184. package/types/excalidraw/components/Tooltip.d.ts +18 -18
  185. package/types/excalidraw/components/Trans.d.ts +9 -9
  186. package/types/excalidraw/components/UserList.d.ts +18 -18
  187. package/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +29 -29
  188. package/types/excalidraw/components/canvases/NewElementCanvas.d.ts +14 -14
  189. package/types/excalidraw/components/canvases/StaticCanvas.d.ts +19 -19
  190. package/types/excalidraw/components/canvases/index.d.ts +3 -3
  191. package/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +86 -86
  192. package/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +15 -15
  193. package/types/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +11 -11
  194. package/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +45 -45
  195. package/types/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +7 -7
  196. package/types/excalidraw/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +17 -17
  197. package/types/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.d.ts +7 -7
  198. package/types/excalidraw/components/dropdownMenu/DropdownMenuItemLink.d.ts +15 -15
  199. package/types/excalidraw/components/dropdownMenu/DropdownMenuSeparator.d.ts +5 -5
  200. package/types/excalidraw/components/dropdownMenu/DropdownMenuTrigger.d.ts +10 -10
  201. package/types/excalidraw/components/dropdownMenu/common.d.ts +6 -6
  202. package/types/excalidraw/components/dropdownMenu/dropdownMenuUtils.d.ts +3 -3
  203. package/types/excalidraw/components/footer/Footer.d.ts +12 -12
  204. package/types/excalidraw/components/footer/FooterCenter.d.ts +8 -8
  205. package/types/excalidraw/components/hoc/withInternalFallback.d.ts +4 -4
  206. package/types/excalidraw/components/hyperlink/Hyperlink.d.ts +18 -18
  207. package/types/excalidraw/components/hyperlink/helpers.d.ts +9 -8
  208. package/types/excalidraw/components/icons.d.ts +214 -212
  209. package/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +9 -9
  210. package/types/excalidraw/components/main-menu/DefaultItems.d.ts +64 -64
  211. package/types/excalidraw/components/main-menu/MainMenu.d.ts +80 -80
  212. package/types/excalidraw/components/welcome-screen/WelcomeScreen.Center.d.ts +59 -59
  213. package/types/excalidraw/components/welcome-screen/WelcomeScreen.Hints.d.ts +19 -19
  214. package/types/excalidraw/components/welcome-screen/WelcomeScreen.d.ts +86 -86
  215. package/types/excalidraw/constants.d.ts +324 -322
  216. package/types/excalidraw/context/tunnels.d.ts +20 -20
  217. package/types/excalidraw/context/ui-appState.d.ts +4 -4
  218. package/types/excalidraw/cursor.d.ts +6 -6
  219. package/types/excalidraw/data/EditorLocalStorage.d.ts +8 -8
  220. package/types/excalidraw/data/ai/types.d.ts +242 -242
  221. package/types/excalidraw/data/blob.d.ts +52 -49
  222. package/types/excalidraw/data/encode.d.ts +55 -54
  223. package/types/excalidraw/data/encryption.d.ts +9 -9
  224. package/types/excalidraw/data/filesystem.d.ts +20 -20
  225. package/types/excalidraw/data/image.d.ts +15 -15
  226. package/types/excalidraw/data/index.d.ts +22 -22
  227. package/types/excalidraw/data/json.d.ts +16 -16
  228. package/types/excalidraw/data/library.d.ts +106 -106
  229. package/types/excalidraw/data/reconcile.d.ts +6 -6
  230. package/types/excalidraw/data/resave.d.ts +5 -5
  231. package/types/excalidraw/data/restore.d.ts +21 -21
  232. package/types/excalidraw/data/transform.d.ts +81 -81
  233. package/types/excalidraw/data/types.d.ts +45 -45
  234. package/types/excalidraw/data/url.d.ts +8 -8
  235. package/types/excalidraw/deburr.d.ts +1 -1
  236. package/types/excalidraw/dist/excalidraw.development.d.ts +2 -2
  237. package/types/excalidraw/dist/excalidraw.production.min.d.ts +3 -1
  238. package/types/excalidraw/distribute.d.ts +6 -6
  239. package/types/excalidraw/element/ElementCanvasButtons.d.ts +7 -7
  240. package/types/excalidraw/element/binding.d.ts +99 -99
  241. package/types/excalidraw/element/bounds.d.ts +76 -76
  242. package/types/excalidraw/element/collision.d.ts +17 -17
  243. package/types/excalidraw/element/containerCache.d.ts +11 -11
  244. package/types/excalidraw/element/cropElement.d.ts +14 -0
  245. package/types/excalidraw/element/dragElements.d.ts +32 -32
  246. package/types/excalidraw/element/elementLink.d.ts +13 -0
  247. package/types/excalidraw/element/embeddable.d.ts +229 -221
  248. package/types/excalidraw/element/flowchart.d.ts +25 -25
  249. package/types/excalidraw/element/heading.d.ts +12 -12
  250. package/types/excalidraw/element/image.d.ts +32 -32
  251. package/types/excalidraw/element/index.d.ts +26 -26
  252. package/types/excalidraw/element/linearElementEditor.d.ts +128 -128
  253. package/types/excalidraw/element/mutateElement.d.ts +11 -11
  254. package/types/excalidraw/element/newElement.d.ts +106 -105
  255. package/types/excalidraw/element/resizeElements.d.ts +16 -16
  256. package/types/excalidraw/element/resizeTest.d.ts +15 -15
  257. package/types/excalidraw/element/routing.d.ts +12 -12
  258. package/types/excalidraw/element/showSelectedShapeActions.d.ts +3 -3
  259. package/types/excalidraw/element/sizeHelpers.d.ts +35 -35
  260. package/types/excalidraw/element/sortElements.d.ts +2 -2
  261. package/types/excalidraw/element/textElement.d.ts +83 -73
  262. package/types/excalidraw/element/textWrapping.d.ts +13 -0
  263. package/types/excalidraw/element/textWysiwyg.d.ts +22 -22
  264. package/types/excalidraw/element/transformHandles.d.ts +55 -55
  265. package/types/excalidraw/element/typeChecks.d.ts +39 -39
  266. package/types/excalidraw/element/types.d.ts +263 -253
  267. package/types/excalidraw/emitter.d.ts +16 -16
  268. package/types/excalidraw/entry.d.ts +1 -1
  269. package/types/excalidraw/env.d.cts +1 -1
  270. package/types/excalidraw/env.d.ts +1 -1
  271. package/types/excalidraw/errors.d.ts +32 -25
  272. package/types/excalidraw/fonts/{woff2/Cascadia → Cascadia}/index.d.ts +2 -2
  273. package/types/excalidraw/fonts/ComicShanns/index.d.ts +2 -0
  274. package/types/excalidraw/fonts/{woff2/Emoji → Emoji}/index.d.ts +2 -2
  275. package/types/excalidraw/fonts/ExcalidrawFont.d.ts +37 -37
  276. package/types/excalidraw/fonts/ExcalidrawFontFace.d.ts +29 -35
  277. package/types/excalidraw/fonts/{woff2/Excalifont → Excalifont}/index.d.ts +2 -2
  278. package/types/excalidraw/fonts/FontMetadata.d.ts +37 -0
  279. package/types/excalidraw/fonts/Fonts.d.ts +117 -0
  280. package/types/excalidraw/fonts/{woff2/Helvetica → Helvetica}/index.d.ts +2 -2
  281. package/types/excalidraw/fonts/{woff2/Liberation → Liberation}/index.d.ts +2 -2
  282. package/types/excalidraw/fonts/{woff2/Lilita → Lilita}/index.d.ts +2 -2
  283. package/types/excalidraw/fonts/{woff2/Nunito → Nunito}/index.d.ts +2 -2
  284. package/types/excalidraw/fonts/{woff2/Virgil → Virgil}/index.d.ts +2 -2
  285. package/types/excalidraw/fonts/{woff2/Xiaolai → Xiaolai}/index.d.ts +8 -8
  286. package/types/excalidraw/fonts/index.d.ts +1 -87
  287. package/types/excalidraw/fonts/metadata.d.ts +35 -37
  288. package/types/excalidraw/fonts/wasm/hb-subset.bindings.d.ts +45 -45
  289. package/types/excalidraw/fonts/wasm/hb-subset.loader.d.ts +5 -5
  290. package/types/excalidraw/fonts/wasm/hb-subset.wasm.d.ts +2 -2
  291. package/types/excalidraw/fonts/wasm/woff2.bindings.d.ts +31 -31
  292. package/types/excalidraw/fonts/wasm/woff2.loader.d.ts +6 -6
  293. package/types/excalidraw/fonts/wasm/woff2.wasm.d.ts +2 -2
  294. package/types/excalidraw/fractionalIndex.d.ts +48 -48
  295. package/types/excalidraw/frame.d.ts +63 -63
  296. package/types/excalidraw/ga.d.ts +63 -63
  297. package/types/excalidraw/gadirections.d.ts +8 -8
  298. package/types/excalidraw/galines.d.ts +22 -22
  299. package/types/excalidraw/gapoints.d.ts +7 -7
  300. package/types/excalidraw/gatransforms.d.ts +10 -10
  301. package/types/excalidraw/gesture.d.ts +6 -6
  302. package/types/excalidraw/groups.d.ts +33 -33
  303. package/types/excalidraw/history.d.ts +40 -40
  304. package/types/excalidraw/hooks/useCallbackRefState.d.ts +1 -1
  305. package/types/excalidraw/hooks/useCopiedIndicator.d.ts +5 -5
  306. package/types/excalidraw/hooks/useCreatePortalContainer.d.ts +7 -7
  307. package/types/excalidraw/hooks/useEmitter.d.ts +2 -2
  308. package/types/excalidraw/hooks/useLibraryItemSvg.d.ts +11 -11
  309. package/types/excalidraw/hooks/useOutsideClick.d.ts +19 -19
  310. package/types/excalidraw/hooks/useScrollPosition.d.ts +1 -1
  311. package/types/excalidraw/hooks/useStable.d.ts +1 -1
  312. package/types/excalidraw/hooks/useStableCallback.d.ts +4 -4
  313. package/types/excalidraw/hooks/useTransition.d.ts +2 -2
  314. package/types/excalidraw/i18n.d.ts +24 -24
  315. package/types/excalidraw/index-node.d.ts +1 -1
  316. package/types/excalidraw/index.d.ts +63 -62
  317. package/types/excalidraw/jotai.d.ts +34 -34
  318. package/types/excalidraw/keys.d.ts +189 -82
  319. package/types/excalidraw/laser-trails.d.ts +20 -20
  320. package/types/excalidraw/main.d.ts +2 -2
  321. package/types/excalidraw/math.d.ts +79 -79
  322. package/types/excalidraw/mermaid.d.ts +2 -2
  323. package/types/excalidraw/obsidianUtils.d.ts +23 -21
  324. package/types/excalidraw/points.d.ts +7 -7
  325. package/types/excalidraw/polyfill.d.ts +2 -2
  326. package/types/excalidraw/publicPath.d.ts +1 -1
  327. package/types/excalidraw/queue.d.ts +9 -9
  328. package/types/excalidraw/random.d.ts +4 -4
  329. package/types/excalidraw/reactUtils.d.ts +14 -14
  330. package/types/excalidraw/renderer/easingFunctions.d.ts +6 -6
  331. package/types/excalidraw/renderer/helpers.d.ts +13 -13
  332. package/types/excalidraw/renderer/interactiveScene.d.ts +20 -20
  333. package/types/excalidraw/renderer/renderElement.d.ts +28 -27
  334. package/types/excalidraw/renderer/renderNewElementScene.d.ts +7 -7
  335. package/types/excalidraw/renderer/renderSnaps.d.ts +2 -2
  336. package/types/excalidraw/renderer/roundRect.d.ts +11 -11
  337. package/types/excalidraw/renderer/staticScene.d.ts +11 -11
  338. package/types/excalidraw/renderer/staticSvgScene.d.ts +5 -5
  339. package/types/excalidraw/scene/Renderer.d.ts +28 -28
  340. package/types/excalidraw/scene/Scene.d.ts +79 -78
  341. package/types/excalidraw/scene/Shape.d.ts +17 -17
  342. package/types/excalidraw/scene/ShapeCache.d.ts +25 -25
  343. package/types/excalidraw/scene/comparisons.d.ts +488 -487
  344. package/types/excalidraw/scene/export.d.ts +30 -29
  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/selection.d.ts +32 -32
  350. package/types/excalidraw/scene/types.d.ts +119 -112
  351. package/types/excalidraw/scene/zoom.d.ts +12 -12
  352. package/types/excalidraw/shapes.d.ts +85 -85
  353. package/types/excalidraw/snapping.d.ts +112 -112
  354. package/types/excalidraw/store.d.ts +129 -129
  355. package/types/excalidraw/{fonts/wasm/hb-subset-bindings.d.ts → subset/harfbuzz/harfbuzz-bindings.d.ts} +45 -45
  356. package/types/excalidraw/{fonts/wasm/hb-subset-loader.d.ts → subset/harfbuzz/harfbuzz-loader.d.ts} +13 -13
  357. package/types/excalidraw/{fonts/wasm/hb-subset-wasm.d.ts → subset/harfbuzz/harfbuzz-wasm.d.ts} +2 -2
  358. package/types/excalidraw/{fonts/subset → subset}/subset-main.d.ts +12 -12
  359. package/types/excalidraw/{fonts/subset → subset}/subset-shared.chunk.d.ts +32 -32
  360. package/types/excalidraw/{fonts/subset → subset}/subset-worker.chunk.d.ts +15 -15
  361. package/types/excalidraw/{fonts/wasm → subset/woff2}/woff2-bindings.d.ts +31 -31
  362. package/types/excalidraw/{fonts/wasm → subset/woff2}/woff2-loader.d.ts +14 -14
  363. package/types/excalidraw/{fonts/wasm → subset/woff2}/woff2-wasm.d.ts +2 -2
  364. package/types/excalidraw/types.d.ts +741 -719
  365. package/types/excalidraw/utility-types.d.ts +31 -31
  366. package/types/excalidraw/utils.d.ts +249 -249
  367. package/types/excalidraw/visualdebug.d.ts +35 -35
  368. package/types/excalidraw/webpack.dev.config.d.ts +81 -81
  369. package/types/excalidraw/webpack.prod.config.d.ts +97 -97
  370. package/types/excalidraw/workers.d.ts +36 -36
  371. package/types/excalidraw/zindex.d.ts +6 -6
  372. package/types/math/angle.d.ts +17 -17
  373. package/types/math/arc.d.ts +6 -6
  374. package/types/math/curve.d.ts +32 -32
  375. package/types/math/ga/ga.d.ts +63 -63
  376. package/types/math/ga/gadirections.d.ts +8 -8
  377. package/types/math/ga/galines.d.ts +22 -22
  378. package/types/math/ga/gapoints.d.ts +7 -7
  379. package/types/math/ga/gatransforms.d.ts +10 -10
  380. package/types/math/index.d.ts +12 -12
  381. package/types/math/line.d.ts +26 -26
  382. package/types/math/point.d.ts +140 -140
  383. package/types/math/polygon.d.ts +5 -5
  384. package/types/math/range.d.ts +44 -44
  385. package/types/math/segment.d.ts +32 -32
  386. package/types/math/triangle.d.ts +11 -11
  387. package/types/math/types.d.ts +96 -96
  388. package/types/math/utils.d.ts +7 -6
  389. package/types/math/vector.d.ts +92 -88
  390. package/types/utils/bbox.d.ts +9 -9
  391. package/types/utils/collision.d.ts +9 -9
  392. package/types/utils/export.d.ts +46 -44
  393. package/types/utils/geometry/geometry.d.ts +89 -89
  394. package/types/utils/geometry/shape.d.ts +71 -71
  395. package/types/utils/index.d.ts +4 -4
  396. package/types/utils/withinBounds.d.ts +19 -19
  397. package/dist/excalidraw-assets/CascadiaCode-Regular.woff2 +0 -0
  398. package/dist/excalidraw-assets/ComicShanns-Regular.woff2 +0 -0
  399. package/dist/excalidraw-assets/Excalifont-Regular.woff2 +0 -0
  400. package/dist/excalidraw-assets/LiberationSans-Regular.woff2 +0 -0
  401. package/dist/excalidraw-assets/Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYE98RXi4EwSsbg.woff2 +0 -0
  402. package/dist/excalidraw-assets/Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYEF8RXi4EwQ.woff2 +0 -0
  403. package/dist/excalidraw-assets/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTA3j6zbXWjgevT5.woff2 +0 -0
  404. package/dist/excalidraw-assets/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTQ3j6zbXWjgeg.woff2 +0 -0
  405. package/dist/excalidraw-assets/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTk3j6zbXWjgevT5.woff2 +0 -0
  406. package/dist/excalidraw-assets/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTo3j6zbXWjgevT5.woff2 +0 -0
  407. package/dist/excalidraw-assets/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTs3j6zbXWjgevT5.woff2 +0 -0
  408. package/dist/excalidraw-assets/Virgil-Regular.woff2 +0 -0
  409. package/dist/excalidraw-assets-dev/CascadiaCode-Regular.woff2 +0 -0
  410. package/dist/excalidraw-assets-dev/ComicShanns-Regular.woff2 +0 -0
  411. package/dist/excalidraw-assets-dev/Excalifont-Regular.woff2 +0 -0
  412. package/dist/excalidraw-assets-dev/LiberationSans-Regular.woff2 +0 -0
  413. package/dist/excalidraw-assets-dev/Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYE98RXi4EwSsbg.woff2 +0 -0
  414. package/dist/excalidraw-assets-dev/Lilita-Regular-i7dPIFZ9Zz-WBtRtedDbYEF8RXi4EwQ.woff2 +0 -0
  415. package/dist/excalidraw-assets-dev/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTA3j6zbXWjgevT5.woff2 +0 -0
  416. package/dist/excalidraw-assets-dev/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTQ3j6zbXWjgeg.woff2 +0 -0
  417. package/dist/excalidraw-assets-dev/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTk3j6zbXWjgevT5.woff2 +0 -0
  418. package/dist/excalidraw-assets-dev/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTo3j6zbXWjgevT5.woff2 +0 -0
  419. package/dist/excalidraw-assets-dev/Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTs3j6zbXWjgevT5.woff2 +0 -0
  420. package/dist/excalidraw-assets-dev/Virgil-Regular.woff2 +0 -0
  421. package/types/excalidraw/components/MagicSettings.d.ts +0 -8
  422. package/types/excalidraw/components/Stats.d.ts +0 -11
  423. package/types/excalidraw/data/magic.d.ts +0 -23
  424. package/types/excalidraw/fonts/woff2/Comic/index.d.ts +0 -2
  425. package/types/excalidraw/scene/Fonts.d.ts +0 -19
@@ -1,855 +1,887 @@
1
- import type { ExcalidrawElement } from "../element/types";
2
- import type { AppClassProperties, AppState } from "../types";
3
- export declare const actionSelectAllElementsInFrame: {
4
- name: "selectAllElementsInFrame";
5
- label: string;
6
- trackEvent: {
7
- category: "canvas";
8
- };
9
- perform: (elements: readonly import("../element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: AppClassProperties) => {
10
- elements: readonly import("../element/types").OrderedExcalidrawElement[];
11
- appState: {
12
- selectedElementIds: Record<string, true>;
13
- contextMenu: {
14
- items: import("../components/ContextMenu").ContextMenuItems;
15
- top: number;
16
- left: number;
17
- } | null;
18
- showWelcomeScreen: boolean;
19
- isLoading: boolean;
20
- errorMessage: import("react").ReactNode;
21
- activeEmbeddable: {
22
- element: import("../element/types").NonDeletedExcalidrawElement;
23
- state: "active" | "hover";
24
- } | null;
25
- newElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawNonSelectionElement> | null;
26
- resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
27
- multiElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawLinearElement> | null;
28
- selectionElement: import("../element/types").NonDeletedExcalidrawElement | null;
29
- isBindingEnabled: boolean;
30
- startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
31
- suggestedBindings: import("../element/binding").SuggestedBinding[];
32
- frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
33
- frameRendering: {
34
- enabled: boolean;
35
- name: boolean;
36
- outline: boolean;
37
- clip: boolean;
38
- };
39
- editingFrame: string | null;
40
- elementsToHighlight: import("../element/types").NonDeleted<ExcalidrawElement>[] | null;
41
- editingTextElement: import("../element/types").NonDeletedExcalidrawElement | null;
42
- editingLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
43
- activeTool: {
44
- lastActiveTool: import("../types").ActiveTool | null;
45
- locked: boolean;
46
- } & import("../types").ActiveTool;
47
- penMode: boolean;
48
- penDetected: boolean;
49
- exportBackground: boolean;
50
- exportEmbedScene: boolean;
51
- exportWithDarkMode: boolean;
52
- exportScale: number;
53
- currentItemStrokeColor: string;
54
- currentItemBackgroundColor: string;
55
- currentItemFillStyle: import("../element/types").FillStyle;
56
- currentItemStrokeWidth: number;
57
- currentItemStrokeStyle: import("../element/types").StrokeStyle;
58
- currentItemRoughness: number;
59
- currentItemOpacity: number;
60
- currentItemFontFamily: number;
61
- currentItemFontSize: number;
62
- currentItemTextAlign: string;
63
- currentItemStartArrowhead: import("../element/types").Arrowhead | null;
64
- currentItemEndArrowhead: import("../element/types").Arrowhead | null;
65
- currentHoveredFontFamily: number | null;
66
- currentItemRoundness: import("../element/types").StrokeRoundness;
67
- currentItemArrowType: "round" | "sharp" | "elbow";
68
- viewBackgroundColor: string;
69
- scrollX: number;
70
- scrollY: number;
71
- cursorButton: "up" | "down";
72
- scrolledOutside: boolean;
73
- name: string | null;
74
- isResizing: boolean;
75
- isRotating: boolean;
76
- zoom: Readonly<{
77
- value: import("../types").NormalizedZoomValue;
78
- }>;
79
- openMenu: "canvas" | "shape" | null;
80
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
81
- openSidebar: {
82
- name: string;
83
- tab?: string | undefined;
84
- } | null;
85
- openDialog: {
86
- name: "imageExport" | "help" | "jsonExport";
87
- } | {
88
- name: "ttd";
89
- tab: "mermaid" | "text-to-diagram";
90
- } | {
91
- name: "commandPalette";
92
- } | null;
93
- defaultSidebarDockedPreference: boolean;
94
- lastPointerDownWith: import("../element/types").PointerType;
95
- previousSelectedElementIds: {
96
- [id: string]: true;
97
- };
98
- selectedElementsAreBeingDragged: boolean;
99
- shouldCacheIgnoreZoom: boolean;
100
- toast: {
101
- message: string;
102
- closable?: boolean | undefined;
103
- duration?: number | undefined;
104
- } | null;
105
- zenModeEnabled: boolean;
106
- theme: import("../element/types").Theme;
107
- gridSize: number;
108
- gridStep: number;
109
- gridModeEnabled: boolean;
110
- viewModeEnabled: boolean;
111
- selectedGroupIds: {
112
- [groupId: string]: boolean;
113
- };
114
- editingGroupId: string | null;
115
- width: number;
116
- height: number;
117
- offsetTop: number;
118
- offsetLeft: number;
119
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
120
- collaborators: Map<import("../types").SocketId, Readonly<{
121
- pointer?: import("../types").CollaboratorPointer | undefined;
122
- button?: "up" | "down" | undefined;
123
- selectedElementIds?: Readonly<{
124
- [id: string]: true;
125
- }> | undefined;
126
- username?: string | null | undefined;
127
- userState?: import("../types").UserIdleState | undefined;
128
- color?: {
129
- background: string;
130
- stroke: string;
131
- } | undefined;
132
- avatarUrl?: string | undefined;
133
- id?: string | undefined;
134
- socketId?: import("../types").SocketId | undefined;
135
- isCurrentUser?: boolean | undefined;
136
- isInCall?: boolean | undefined;
137
- isSpeaking?: boolean | undefined;
138
- isMuted?: boolean | undefined;
139
- }>>;
140
- stats: {
141
- open: boolean;
142
- panels: number;
143
- };
144
- currentChartType: import("../element/types").ChartType;
145
- pasteDialog: {
146
- shown: false;
147
- data: null;
148
- } | {
149
- shown: true;
150
- data: import("../charts").Spreadsheet;
151
- };
152
- pendingImageElementId: string | null;
153
- showHyperlinkPopup: false | "info" | "editor";
154
- linkOpacity: number;
155
- trayModeEnabled: boolean;
156
- colorPalette?: {
157
- canvasBackground: import("../colors").ColorPaletteCustom;
158
- elementBackground: import("../colors").ColorPaletteCustom;
159
- elementStroke: import("../colors").ColorPaletteCustom;
160
- topPicks: {
161
- canvasBackground: [string, string, string, string, string];
162
- elementStroke: [string, string, string, string, string];
163
- elementBackground: [string, string, string, string, string];
164
- };
165
- } | undefined;
166
- allowWheelZoom?: boolean | undefined;
167
- allowPinchZoom?: boolean | undefined;
168
- pinnedScripts?: string[] | undefined;
169
- customPens?: any[] | undefined;
170
- currentStrokeOptions?: any;
171
- resetCustomPen?: any;
172
- gridColor: {
173
- Bold: string;
174
- Regular: string;
175
- };
176
- highlightSearchResult: boolean;
177
- dynamicStyle: {
178
- [x: string]: string;
179
- };
180
- frameColor: {
181
- stroke: string;
182
- fill: string;
183
- nameColor: string;
184
- };
185
- invertBindingBehaviour: boolean;
186
- selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
187
- snapLines: readonly import("../snapping").SnapLine[];
188
- originSnapOffset: {
189
- x: number;
190
- y: number;
191
- } | null;
192
- objectsSnapModeEnabled: boolean;
193
- userToFollow: import("../types").UserToFollow | null;
194
- followedBy: Set<import("../types").SocketId>;
195
- searchMatches: readonly {
196
- id: string;
197
- focus: boolean;
198
- matchedLines: {
199
- offsetX: number;
200
- offsetY: number;
201
- width: number;
202
- height: number;
203
- }[];
204
- }[];
205
- };
206
- storeAction: "capture";
207
- } | {
208
- elements: readonly import("../element/types").OrderedExcalidrawElement[];
209
- appState: Readonly<AppState>;
210
- storeAction: "none";
211
- };
212
- predicate: (elements: readonly ExcalidrawElement[], appState: AppState, _: import("../types").ExcalidrawProps, app: AppClassProperties) => boolean;
213
- } & {
214
- keyTest?: undefined;
215
- };
216
- export declare const actionRemoveAllElementsFromFrame: {
217
- name: "removeAllElementsFromFrame";
218
- label: string;
219
- trackEvent: {
220
- category: "history";
221
- };
222
- perform: (elements: readonly import("../element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: AppClassProperties) => {
223
- elements: readonly import("../element/types").OrderedExcalidrawElement[];
224
- appState: {
225
- selectedElementIds: {
226
- [x: string]: true;
227
- };
228
- contextMenu: {
229
- items: import("../components/ContextMenu").ContextMenuItems;
230
- top: number;
231
- left: number;
232
- } | null;
233
- showWelcomeScreen: boolean;
234
- isLoading: boolean;
235
- errorMessage: import("react").ReactNode;
236
- activeEmbeddable: {
237
- element: import("../element/types").NonDeletedExcalidrawElement;
238
- state: "active" | "hover";
239
- } | null;
240
- newElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawNonSelectionElement> | null;
241
- resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
242
- multiElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawLinearElement> | null;
243
- selectionElement: import("../element/types").NonDeletedExcalidrawElement | null;
244
- isBindingEnabled: boolean;
245
- startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
246
- suggestedBindings: import("../element/binding").SuggestedBinding[];
247
- frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
248
- frameRendering: {
249
- enabled: boolean;
250
- name: boolean;
251
- outline: boolean;
252
- clip: boolean;
253
- };
254
- editingFrame: string | null;
255
- elementsToHighlight: import("../element/types").NonDeleted<ExcalidrawElement>[] | null;
256
- editingTextElement: import("../element/types").NonDeletedExcalidrawElement | null;
257
- editingLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
258
- activeTool: {
259
- lastActiveTool: import("../types").ActiveTool | null;
260
- locked: boolean;
261
- } & import("../types").ActiveTool;
262
- penMode: boolean;
263
- penDetected: boolean;
264
- exportBackground: boolean;
265
- exportEmbedScene: boolean;
266
- exportWithDarkMode: boolean;
267
- exportScale: number;
268
- currentItemStrokeColor: string;
269
- currentItemBackgroundColor: string;
270
- currentItemFillStyle: import("../element/types").FillStyle;
271
- currentItemStrokeWidth: number;
272
- currentItemStrokeStyle: import("../element/types").StrokeStyle;
273
- currentItemRoughness: number;
274
- currentItemOpacity: number;
275
- currentItemFontFamily: number;
276
- currentItemFontSize: number;
277
- currentItemTextAlign: string;
278
- currentItemStartArrowhead: import("../element/types").Arrowhead | null;
279
- currentItemEndArrowhead: import("../element/types").Arrowhead | null;
280
- currentHoveredFontFamily: number | null;
281
- currentItemRoundness: import("../element/types").StrokeRoundness;
282
- currentItemArrowType: "round" | "sharp" | "elbow";
283
- viewBackgroundColor: string;
284
- scrollX: number;
285
- scrollY: number;
286
- cursorButton: "up" | "down";
287
- scrolledOutside: boolean;
288
- name: string | null;
289
- isResizing: boolean;
290
- isRotating: boolean;
291
- zoom: Readonly<{
292
- value: import("../types").NormalizedZoomValue;
293
- }>;
294
- openMenu: "canvas" | "shape" | null;
295
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
296
- openSidebar: {
297
- name: string;
298
- tab?: string | undefined;
299
- } | null;
300
- openDialog: {
301
- name: "imageExport" | "help" | "jsonExport";
302
- } | {
303
- name: "ttd";
304
- tab: "mermaid" | "text-to-diagram";
305
- } | {
306
- name: "commandPalette";
307
- } | null;
308
- defaultSidebarDockedPreference: boolean;
309
- lastPointerDownWith: import("../element/types").PointerType;
310
- previousSelectedElementIds: {
311
- [id: string]: true;
312
- };
313
- selectedElementsAreBeingDragged: boolean;
314
- shouldCacheIgnoreZoom: boolean;
315
- toast: {
316
- message: string;
317
- closable?: boolean | undefined;
318
- duration?: number | undefined;
319
- } | null;
320
- zenModeEnabled: boolean;
321
- theme: import("../element/types").Theme;
322
- gridSize: number;
323
- gridStep: number;
324
- gridModeEnabled: boolean;
325
- viewModeEnabled: boolean;
326
- selectedGroupIds: {
327
- [groupId: string]: boolean;
328
- };
329
- editingGroupId: string | null;
330
- width: number;
331
- height: number;
332
- offsetTop: number;
333
- offsetLeft: number;
334
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
335
- collaborators: Map<import("../types").SocketId, Readonly<{
336
- pointer?: import("../types").CollaboratorPointer | undefined;
337
- button?: "up" | "down" | undefined;
338
- selectedElementIds?: Readonly<{
339
- [id: string]: true;
340
- }> | undefined;
341
- username?: string | null | undefined;
342
- userState?: import("../types").UserIdleState | undefined;
343
- color?: {
344
- background: string;
345
- stroke: string;
346
- } | undefined;
347
- avatarUrl?: string | undefined;
348
- id?: string | undefined;
349
- socketId?: import("../types").SocketId | undefined;
350
- isCurrentUser?: boolean | undefined;
351
- isInCall?: boolean | undefined;
352
- isSpeaking?: boolean | undefined;
353
- isMuted?: boolean | undefined;
354
- }>>;
355
- stats: {
356
- open: boolean;
357
- panels: number;
358
- };
359
- currentChartType: import("../element/types").ChartType;
360
- pasteDialog: {
361
- shown: false;
362
- data: null;
363
- } | {
364
- shown: true;
365
- data: import("../charts").Spreadsheet;
366
- };
367
- pendingImageElementId: string | null;
368
- showHyperlinkPopup: false | "info" | "editor";
369
- linkOpacity: number;
370
- trayModeEnabled: boolean;
371
- colorPalette?: {
372
- canvasBackground: import("../colors").ColorPaletteCustom;
373
- elementBackground: import("../colors").ColorPaletteCustom;
374
- elementStroke: import("../colors").ColorPaletteCustom;
375
- topPicks: {
376
- canvasBackground: [string, string, string, string, string];
377
- elementStroke: [string, string, string, string, string];
378
- elementBackground: [string, string, string, string, string];
379
- };
380
- } | undefined;
381
- allowWheelZoom?: boolean | undefined;
382
- allowPinchZoom?: boolean | undefined;
383
- pinnedScripts?: string[] | undefined;
384
- customPens?: any[] | undefined;
385
- currentStrokeOptions?: any;
386
- resetCustomPen?: any;
387
- gridColor: {
388
- Bold: string;
389
- Regular: string;
390
- };
391
- highlightSearchResult: boolean;
392
- dynamicStyle: {
393
- [x: string]: string;
394
- };
395
- frameColor: {
396
- stroke: string;
397
- fill: string;
398
- nameColor: string;
399
- };
400
- invertBindingBehaviour: boolean;
401
- selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
402
- snapLines: readonly import("../snapping").SnapLine[];
403
- originSnapOffset: {
404
- x: number;
405
- y: number;
406
- } | null;
407
- objectsSnapModeEnabled: boolean;
408
- userToFollow: import("../types").UserToFollow | null;
409
- followedBy: Set<import("../types").SocketId>;
410
- searchMatches: readonly {
411
- id: string;
412
- focus: boolean;
413
- matchedLines: {
414
- offsetX: number;
415
- offsetY: number;
416
- width: number;
417
- height: number;
418
- }[];
419
- }[];
420
- };
421
- storeAction: "capture";
422
- } | {
423
- elements: readonly import("../element/types").OrderedExcalidrawElement[];
424
- appState: Readonly<AppState>;
425
- storeAction: "none";
426
- };
427
- predicate: (elements: readonly ExcalidrawElement[], appState: AppState, _: import("../types").ExcalidrawProps, app: AppClassProperties) => boolean;
428
- } & {
429
- keyTest?: undefined;
430
- };
431
- export declare const actionupdateFrameRendering: {
432
- name: "updateFrameRendering";
433
- label: string;
434
- viewMode: true;
435
- trackEvent: {
436
- category: "canvas";
437
- };
438
- perform: (elements: readonly import("../element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>) => {
439
- elements: readonly import("../element/types").OrderedExcalidrawElement[];
440
- appState: {
441
- frameRendering: {
442
- enabled: boolean;
443
- name: boolean;
444
- outline: boolean;
445
- clip: boolean;
446
- };
447
- contextMenu: {
448
- items: import("../components/ContextMenu").ContextMenuItems;
449
- top: number;
450
- left: number;
451
- } | null;
452
- showWelcomeScreen: boolean;
453
- isLoading: boolean;
454
- errorMessage: import("react").ReactNode;
455
- activeEmbeddable: {
456
- element: import("../element/types").NonDeletedExcalidrawElement;
457
- state: "active" | "hover";
458
- } | null;
459
- newElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawNonSelectionElement> | null;
460
- resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
461
- multiElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawLinearElement> | null;
462
- selectionElement: import("../element/types").NonDeletedExcalidrawElement | null;
463
- isBindingEnabled: boolean;
464
- startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
465
- suggestedBindings: import("../element/binding").SuggestedBinding[];
466
- frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
467
- editingFrame: string | null;
468
- elementsToHighlight: import("../element/types").NonDeleted<ExcalidrawElement>[] | null;
469
- editingTextElement: import("../element/types").NonDeletedExcalidrawElement | null;
470
- editingLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
471
- activeTool: {
472
- lastActiveTool: import("../types").ActiveTool | null;
473
- locked: boolean;
474
- } & import("../types").ActiveTool;
475
- penMode: boolean;
476
- penDetected: boolean;
477
- exportBackground: boolean;
478
- exportEmbedScene: boolean;
479
- exportWithDarkMode: boolean;
480
- exportScale: number;
481
- currentItemStrokeColor: string;
482
- currentItemBackgroundColor: string;
483
- currentItemFillStyle: import("../element/types").FillStyle;
484
- currentItemStrokeWidth: number;
485
- currentItemStrokeStyle: import("../element/types").StrokeStyle;
486
- currentItemRoughness: number;
487
- currentItemOpacity: number;
488
- currentItemFontFamily: number;
489
- currentItemFontSize: number;
490
- currentItemTextAlign: string;
491
- currentItemStartArrowhead: import("../element/types").Arrowhead | null;
492
- currentItemEndArrowhead: import("../element/types").Arrowhead | null;
493
- currentHoveredFontFamily: number | null;
494
- currentItemRoundness: import("../element/types").StrokeRoundness;
495
- currentItemArrowType: "round" | "sharp" | "elbow";
496
- viewBackgroundColor: string;
497
- scrollX: number;
498
- scrollY: number;
499
- cursorButton: "up" | "down";
500
- scrolledOutside: boolean;
501
- name: string | null;
502
- isResizing: boolean;
503
- isRotating: boolean;
504
- zoom: Readonly<{
505
- value: import("../types").NormalizedZoomValue;
506
- }>;
507
- openMenu: "canvas" | "shape" | null;
508
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
509
- openSidebar: {
510
- name: string;
511
- tab?: string | undefined;
512
- } | null;
513
- openDialog: {
514
- name: "imageExport" | "help" | "jsonExport";
515
- } | {
516
- name: "ttd";
517
- tab: "mermaid" | "text-to-diagram";
518
- } | {
519
- name: "commandPalette";
520
- } | null;
521
- defaultSidebarDockedPreference: boolean;
522
- lastPointerDownWith: import("../element/types").PointerType;
523
- selectedElementIds: Readonly<{
524
- [id: string]: true;
525
- }>;
526
- previousSelectedElementIds: {
527
- [id: string]: true;
528
- };
529
- selectedElementsAreBeingDragged: boolean;
530
- shouldCacheIgnoreZoom: boolean;
531
- toast: {
532
- message: string;
533
- closable?: boolean | undefined;
534
- duration?: number | undefined;
535
- } | null;
536
- zenModeEnabled: boolean;
537
- theme: import("../element/types").Theme;
538
- gridSize: number;
539
- gridStep: number;
540
- gridModeEnabled: boolean;
541
- viewModeEnabled: boolean;
542
- selectedGroupIds: {
543
- [groupId: string]: boolean;
544
- };
545
- editingGroupId: string | null;
546
- width: number;
547
- height: number;
548
- offsetTop: number;
549
- offsetLeft: number;
550
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
551
- collaborators: Map<import("../types").SocketId, Readonly<{
552
- pointer?: import("../types").CollaboratorPointer | undefined;
553
- button?: "up" | "down" | undefined;
554
- selectedElementIds?: Readonly<{
555
- [id: string]: true;
556
- }> | undefined;
557
- username?: string | null | undefined;
558
- userState?: import("../types").UserIdleState | undefined;
559
- color?: {
560
- background: string;
561
- stroke: string;
562
- } | undefined;
563
- avatarUrl?: string | undefined;
564
- id?: string | undefined;
565
- socketId?: import("../types").SocketId | undefined;
566
- isCurrentUser?: boolean | undefined;
567
- isInCall?: boolean | undefined;
568
- isSpeaking?: boolean | undefined;
569
- isMuted?: boolean | undefined;
570
- }>>;
571
- stats: {
572
- open: boolean;
573
- panels: number;
574
- };
575
- currentChartType: import("../element/types").ChartType;
576
- pasteDialog: {
577
- shown: false;
578
- data: null;
579
- } | {
580
- shown: true;
581
- data: import("../charts").Spreadsheet;
582
- };
583
- pendingImageElementId: string | null;
584
- showHyperlinkPopup: false | "info" | "editor";
585
- linkOpacity: number;
586
- trayModeEnabled: boolean;
587
- colorPalette?: {
588
- canvasBackground: import("../colors").ColorPaletteCustom;
589
- elementBackground: import("../colors").ColorPaletteCustom;
590
- elementStroke: import("../colors").ColorPaletteCustom;
591
- topPicks: {
592
- canvasBackground: [string, string, string, string, string];
593
- elementStroke: [string, string, string, string, string];
594
- elementBackground: [string, string, string, string, string];
595
- };
596
- } | undefined;
597
- allowWheelZoom?: boolean | undefined;
598
- allowPinchZoom?: boolean | undefined;
599
- pinnedScripts?: string[] | undefined;
600
- customPens?: any[] | undefined;
601
- currentStrokeOptions?: any;
602
- resetCustomPen?: any;
603
- gridColor: {
604
- Bold: string;
605
- Regular: string;
606
- };
607
- highlightSearchResult: boolean;
608
- dynamicStyle: {
609
- [x: string]: string;
610
- };
611
- frameColor: {
612
- stroke: string;
613
- fill: string;
614
- nameColor: string;
615
- };
616
- invertBindingBehaviour: boolean;
617
- selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
618
- snapLines: readonly import("../snapping").SnapLine[];
619
- originSnapOffset: {
620
- x: number;
621
- y: number;
622
- } | null;
623
- objectsSnapModeEnabled: boolean;
624
- userToFollow: import("../types").UserToFollow | null;
625
- followedBy: Set<import("../types").SocketId>;
626
- searchMatches: readonly {
627
- id: string;
628
- focus: boolean;
629
- matchedLines: {
630
- offsetX: number;
631
- offsetY: number;
632
- width: number;
633
- height: number;
634
- }[];
635
- }[];
636
- };
637
- storeAction: "none";
638
- };
639
- checked: (appState: AppState) => boolean;
640
- } & {
641
- keyTest?: undefined;
642
- };
643
- export declare const actionSetFrameAsActiveTool: {
644
- name: "setFrameAsActiveTool";
645
- label: string;
646
- trackEvent: {
647
- category: "toolbar";
648
- };
649
- icon: JSX.Element;
650
- viewMode: false;
651
- perform: (elements: readonly import("../element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: AppClassProperties) => {
652
- elements: readonly import("../element/types").OrderedExcalidrawElement[];
653
- appState: {
654
- activeTool: {
655
- lastActiveTool: import("../types").ActiveTool | null;
656
- locked: boolean;
657
- } & import("../types").ActiveTool;
658
- contextMenu: {
659
- items: import("../components/ContextMenu").ContextMenuItems;
660
- top: number;
661
- left: number;
662
- } | null;
663
- showWelcomeScreen: boolean;
664
- isLoading: boolean;
665
- errorMessage: import("react").ReactNode;
666
- activeEmbeddable: {
667
- element: import("../element/types").NonDeletedExcalidrawElement;
668
- state: "active" | "hover";
669
- } | null;
670
- newElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawNonSelectionElement> | null;
671
- resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
672
- multiElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawLinearElement> | null;
673
- selectionElement: import("../element/types").NonDeletedExcalidrawElement | null;
674
- isBindingEnabled: boolean;
675
- startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
676
- suggestedBindings: import("../element/binding").SuggestedBinding[];
677
- frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
678
- frameRendering: {
679
- enabled: boolean;
680
- name: boolean;
681
- outline: boolean;
682
- clip: boolean;
683
- };
684
- editingFrame: string | null;
685
- elementsToHighlight: import("../element/types").NonDeleted<ExcalidrawElement>[] | null;
686
- editingTextElement: import("../element/types").NonDeletedExcalidrawElement | null;
687
- editingLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
688
- penMode: boolean;
689
- penDetected: boolean;
690
- exportBackground: boolean;
691
- exportEmbedScene: boolean;
692
- exportWithDarkMode: boolean;
693
- exportScale: number;
694
- currentItemStrokeColor: string;
695
- currentItemBackgroundColor: string;
696
- currentItemFillStyle: import("../element/types").FillStyle;
697
- currentItemStrokeWidth: number;
698
- currentItemStrokeStyle: import("../element/types").StrokeStyle;
699
- currentItemRoughness: number;
700
- currentItemOpacity: number;
701
- currentItemFontFamily: number;
702
- currentItemFontSize: number;
703
- currentItemTextAlign: string;
704
- currentItemStartArrowhead: import("../element/types").Arrowhead | null;
705
- currentItemEndArrowhead: import("../element/types").Arrowhead | null;
706
- currentHoveredFontFamily: number | null;
707
- currentItemRoundness: import("../element/types").StrokeRoundness;
708
- currentItemArrowType: "round" | "sharp" | "elbow";
709
- viewBackgroundColor: string;
710
- scrollX: number;
711
- scrollY: number;
712
- cursorButton: "up" | "down";
713
- scrolledOutside: boolean;
714
- name: string | null;
715
- isResizing: boolean;
716
- isRotating: boolean;
717
- zoom: Readonly<{
718
- value: import("../types").NormalizedZoomValue;
719
- }>;
720
- openMenu: "canvas" | "shape" | null;
721
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
722
- openSidebar: {
723
- name: string;
724
- tab?: string | undefined;
725
- } | null;
726
- openDialog: {
727
- name: "imageExport" | "help" | "jsonExport";
728
- } | {
729
- name: "ttd";
730
- tab: "mermaid" | "text-to-diagram";
731
- } | {
732
- name: "commandPalette";
733
- } | null;
734
- defaultSidebarDockedPreference: boolean;
735
- lastPointerDownWith: import("../element/types").PointerType;
736
- selectedElementIds: Readonly<{
737
- [id: string]: true;
738
- }>;
739
- previousSelectedElementIds: {
740
- [id: string]: true;
741
- };
742
- selectedElementsAreBeingDragged: boolean;
743
- shouldCacheIgnoreZoom: boolean;
744
- toast: {
745
- message: string;
746
- closable?: boolean | undefined;
747
- duration?: number | undefined;
748
- } | null;
749
- zenModeEnabled: boolean;
750
- theme: import("../element/types").Theme;
751
- gridSize: number;
752
- gridStep: number;
753
- gridModeEnabled: boolean;
754
- viewModeEnabled: boolean;
755
- selectedGroupIds: {
756
- [groupId: string]: boolean;
757
- };
758
- editingGroupId: string | null;
759
- width: number;
760
- height: number;
761
- offsetTop: number;
762
- offsetLeft: number;
763
- fileHandle: import("browser-fs-access").FileSystemHandle | null;
764
- collaborators: Map<import("../types").SocketId, Readonly<{
765
- pointer?: import("../types").CollaboratorPointer | undefined;
766
- button?: "up" | "down" | undefined;
767
- selectedElementIds?: Readonly<{
768
- [id: string]: true;
769
- }> | undefined;
770
- username?: string | null | undefined;
771
- userState?: import("../types").UserIdleState | undefined;
772
- color?: {
773
- background: string;
774
- stroke: string;
775
- } | undefined;
776
- avatarUrl?: string | undefined;
777
- id?: string | undefined;
778
- socketId?: import("../types").SocketId | undefined;
779
- isCurrentUser?: boolean | undefined;
780
- isInCall?: boolean | undefined;
781
- isSpeaking?: boolean | undefined;
782
- isMuted?: boolean | undefined;
783
- }>>;
784
- stats: {
785
- open: boolean;
786
- panels: number;
787
- };
788
- currentChartType: import("../element/types").ChartType;
789
- pasteDialog: {
790
- shown: false;
791
- data: null;
792
- } | {
793
- shown: true;
794
- data: import("../charts").Spreadsheet;
795
- };
796
- pendingImageElementId: string | null;
797
- showHyperlinkPopup: false | "info" | "editor";
798
- linkOpacity: number;
799
- trayModeEnabled: boolean;
800
- colorPalette?: {
801
- canvasBackground: import("../colors").ColorPaletteCustom;
802
- elementBackground: import("../colors").ColorPaletteCustom;
803
- elementStroke: import("../colors").ColorPaletteCustom;
804
- topPicks: {
805
- canvasBackground: [string, string, string, string, string];
806
- elementStroke: [string, string, string, string, string];
807
- elementBackground: [string, string, string, string, string];
808
- };
809
- } | undefined;
810
- allowWheelZoom?: boolean | undefined;
811
- allowPinchZoom?: boolean | undefined;
812
- pinnedScripts?: string[] | undefined;
813
- customPens?: any[] | undefined;
814
- currentStrokeOptions?: any;
815
- resetCustomPen?: any;
816
- gridColor: {
817
- Bold: string;
818
- Regular: string;
819
- };
820
- highlightSearchResult: boolean;
821
- dynamicStyle: {
822
- [x: string]: string;
823
- };
824
- frameColor: {
825
- stroke: string;
826
- fill: string;
827
- nameColor: string;
828
- };
829
- invertBindingBehaviour: boolean;
830
- selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
831
- snapLines: readonly import("../snapping").SnapLine[];
832
- originSnapOffset: {
833
- x: number;
834
- y: number;
835
- } | null;
836
- objectsSnapModeEnabled: boolean;
837
- userToFollow: import("../types").UserToFollow | null;
838
- followedBy: Set<import("../types").SocketId>;
839
- searchMatches: readonly {
840
- id: string;
841
- focus: boolean;
842
- matchedLines: {
843
- offsetX: number;
844
- offsetY: number;
845
- width: number;
846
- height: number;
847
- }[];
848
- }[];
849
- };
850
- storeAction: "none";
851
- };
852
- keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
853
- } & {
854
- keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
855
- };
1
+ import type { ExcalidrawElement } from "../element/types";
2
+ import type { AppClassProperties, AppState } from "../types";
3
+ export declare const actionSelectAllElementsInFrame: {
4
+ name: "selectAllElementsInFrame";
5
+ label: string;
6
+ trackEvent: {
7
+ category: "canvas";
8
+ };
9
+ perform: (elements: readonly import("../element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: AppClassProperties) => {
10
+ elements: readonly import("../element/types").OrderedExcalidrawElement[];
11
+ appState: {
12
+ selectedElementIds: Record<string, true>;
13
+ contextMenu: {
14
+ items: import("../components/ContextMenu").ContextMenuItems;
15
+ top: number;
16
+ left: number;
17
+ } | null;
18
+ showWelcomeScreen: boolean;
19
+ isLoading: boolean;
20
+ errorMessage: import("react").ReactNode;
21
+ activeEmbeddable: {
22
+ element: import("../element/types").NonDeletedExcalidrawElement;
23
+ state: "active" | "hover";
24
+ } | null;
25
+ newElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawNonSelectionElement> | null;
26
+ resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
27
+ multiElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawLinearElement> | null;
28
+ selectionElement: import("../element/types").NonDeletedExcalidrawElement | null;
29
+ isBindingEnabled: boolean;
30
+ startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
31
+ suggestedBindings: import("../element/binding").SuggestedBinding[];
32
+ frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
33
+ frameRendering: {
34
+ enabled: boolean;
35
+ name: boolean;
36
+ outline: boolean;
37
+ clip: boolean;
38
+ };
39
+ editingFrame: string | null;
40
+ elementsToHighlight: import("../element/types").NonDeleted<ExcalidrawElement>[] | null;
41
+ editingTextElement: import("../element/types").NonDeletedExcalidrawElement | null;
42
+ editingLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
43
+ activeTool: {
44
+ lastActiveTool: import("../types").ActiveTool | null;
45
+ locked: boolean;
46
+ } & import("../types").ActiveTool;
47
+ penMode: boolean;
48
+ penDetected: boolean;
49
+ exportBackground: boolean;
50
+ exportEmbedScene: boolean;
51
+ exportWithDarkMode: boolean;
52
+ exportScale: number;
53
+ currentItemStrokeColor: string;
54
+ currentItemBackgroundColor: string;
55
+ currentItemFillStyle: import("../element/types").FillStyle;
56
+ currentItemStrokeWidth: number;
57
+ currentItemStrokeStyle: import("../element/types").StrokeStyle;
58
+ currentItemRoughness: number;
59
+ currentItemOpacity: number;
60
+ currentItemFontFamily: number;
61
+ currentItemFontSize: number;
62
+ currentItemTextAlign: string;
63
+ currentItemStartArrowhead: import("../element/types").Arrowhead | null;
64
+ currentItemEndArrowhead: import("../element/types").Arrowhead | null;
65
+ currentHoveredFontFamily: number | null;
66
+ currentItemRoundness: import("../element/types").StrokeRoundness;
67
+ currentItemArrowType: "round" | "sharp" | "elbow";
68
+ viewBackgroundColor: string;
69
+ scrollX: number;
70
+ scrollY: number;
71
+ cursorButton: "up" | "down";
72
+ scrolledOutside: boolean;
73
+ name: string | null;
74
+ isResizing: boolean;
75
+ isRotating: boolean;
76
+ zoom: Readonly<{
77
+ value: import("../types").NormalizedZoomValue;
78
+ }>;
79
+ openMenu: "canvas" | "shape" | null;
80
+ openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
81
+ openSidebar: {
82
+ name: string;
83
+ tab?: string | undefined;
84
+ } | null;
85
+ openDialog: {
86
+ name: "imageExport" | "help" | "jsonExport";
87
+ } | {
88
+ name: "ttd";
89
+ tab: "mermaid" | "text-to-diagram";
90
+ } | {
91
+ name: "commandPalette";
92
+ } | {
93
+ name: "elementLinkSelector";
94
+ sourceElementId: string;
95
+ } | null;
96
+ defaultSidebarDockedPreference: boolean;
97
+ lastPointerDownWith: import("../element/types").PointerType;
98
+ hoveredElementIds: Readonly<{
99
+ [id: string]: true;
100
+ }>;
101
+ previousSelectedElementIds: {
102
+ [id: string]: true;
103
+ };
104
+ selectedElementsAreBeingDragged: boolean;
105
+ shouldCacheIgnoreZoom: boolean;
106
+ toast: {
107
+ message: string;
108
+ closable?: boolean | undefined;
109
+ duration?: number | undefined;
110
+ } | null;
111
+ zenModeEnabled: boolean;
112
+ theme: import("../element/types").Theme;
113
+ gridSize: number;
114
+ gridStep: number;
115
+ gridModeEnabled: boolean;
116
+ viewModeEnabled: boolean;
117
+ selectedGroupIds: {
118
+ [groupId: string]: boolean;
119
+ };
120
+ editingGroupId: string | null;
121
+ width: number;
122
+ height: number;
123
+ offsetTop: number;
124
+ offsetLeft: number;
125
+ fileHandle: import("browser-fs-access").FileSystemHandle | null;
126
+ collaborators: Map<import("../types").SocketId, Readonly<{
127
+ pointer?: import("../types").CollaboratorPointer | undefined;
128
+ button?: "up" | "down" | undefined;
129
+ selectedElementIds?: Readonly<{
130
+ [id: string]: true;
131
+ }> | undefined;
132
+ username?: string | null | undefined;
133
+ userState?: import("../types").UserIdleState | undefined;
134
+ color?: {
135
+ background: string;
136
+ stroke: string;
137
+ } | undefined;
138
+ avatarUrl?: string | undefined;
139
+ id?: string | undefined;
140
+ socketId?: import("../types").SocketId | undefined;
141
+ isCurrentUser?: boolean | undefined;
142
+ isInCall?: boolean | undefined;
143
+ isSpeaking?: boolean | undefined;
144
+ isMuted?: boolean | undefined;
145
+ }>>;
146
+ stats: {
147
+ open: boolean;
148
+ panels: number;
149
+ };
150
+ currentChartType: import("../element/types").ChartType;
151
+ pasteDialog: {
152
+ shown: false;
153
+ data: null;
154
+ } | {
155
+ shown: true;
156
+ data: import("../charts").Spreadsheet;
157
+ };
158
+ pendingImageElementId: string | null;
159
+ showHyperlinkPopup: false | "info" | "editor";
160
+ linkOpacity: number;
161
+ trayModeEnabled: boolean;
162
+ colorPalette?: {
163
+ canvasBackground: import("../colors").ColorPaletteCustom;
164
+ elementBackground: import("../colors").ColorPaletteCustom;
165
+ elementStroke: import("../colors").ColorPaletteCustom;
166
+ topPicks: {
167
+ canvasBackground: [string, string, string, string, string];
168
+ elementStroke: [string, string, string, string, string];
169
+ elementBackground: [string, string, string, string, string];
170
+ };
171
+ } | undefined;
172
+ allowWheelZoom?: boolean | undefined;
173
+ allowPinchZoom?: boolean | undefined;
174
+ pinnedScripts?: string[] | undefined;
175
+ customPens?: any[] | undefined;
176
+ currentStrokeOptions?: any;
177
+ resetCustomPen?: any;
178
+ gridColor: {
179
+ Bold: string;
180
+ Regular: string;
181
+ };
182
+ highlightSearchResult: boolean;
183
+ dynamicStyle: {
184
+ [x: string]: string;
185
+ };
186
+ frameColor: {
187
+ stroke: string;
188
+ fill: string;
189
+ nameColor: string;
190
+ };
191
+ invertBindingBehaviour: boolean;
192
+ selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
193
+ snapLines: readonly import("../snapping").SnapLine[];
194
+ originSnapOffset: {
195
+ x: number;
196
+ y: number;
197
+ } | null;
198
+ objectsSnapModeEnabled: boolean;
199
+ userToFollow: import("../types").UserToFollow | null;
200
+ followedBy: Set<import("../types").SocketId>;
201
+ isCropping: boolean;
202
+ croppingElementId: string | null;
203
+ searchMatches: readonly {
204
+ id: string;
205
+ focus: boolean;
206
+ matchedLines: {
207
+ offsetX: number;
208
+ offsetY: number;
209
+ width: number;
210
+ height: number;
211
+ }[];
212
+ }[];
213
+ };
214
+ storeAction: "capture";
215
+ } | {
216
+ elements: readonly import("../element/types").OrderedExcalidrawElement[];
217
+ appState: Readonly<AppState>;
218
+ storeAction: "none";
219
+ };
220
+ predicate: (elements: readonly ExcalidrawElement[], appState: AppState, _: import("../types").ExcalidrawProps, app: AppClassProperties) => boolean;
221
+ } & {
222
+ keyTest?: undefined;
223
+ };
224
+ export declare const actionRemoveAllElementsFromFrame: {
225
+ name: "removeAllElementsFromFrame";
226
+ label: string;
227
+ trackEvent: {
228
+ category: "history";
229
+ };
230
+ perform: (elements: readonly import("../element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: AppClassProperties) => {
231
+ elements: readonly import("../element/types").OrderedExcalidrawElement[];
232
+ appState: {
233
+ selectedElementIds: {
234
+ [x: string]: true;
235
+ };
236
+ contextMenu: {
237
+ items: import("../components/ContextMenu").ContextMenuItems;
238
+ top: number;
239
+ left: number;
240
+ } | null;
241
+ showWelcomeScreen: boolean;
242
+ isLoading: boolean;
243
+ errorMessage: import("react").ReactNode;
244
+ activeEmbeddable: {
245
+ element: import("../element/types").NonDeletedExcalidrawElement;
246
+ state: "active" | "hover";
247
+ } | null;
248
+ newElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawNonSelectionElement> | null;
249
+ resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
250
+ multiElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawLinearElement> | null;
251
+ selectionElement: import("../element/types").NonDeletedExcalidrawElement | null;
252
+ isBindingEnabled: boolean;
253
+ startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
254
+ suggestedBindings: import("../element/binding").SuggestedBinding[];
255
+ frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
256
+ frameRendering: {
257
+ enabled: boolean;
258
+ name: boolean;
259
+ outline: boolean;
260
+ clip: boolean;
261
+ };
262
+ editingFrame: string | null;
263
+ elementsToHighlight: import("../element/types").NonDeleted<ExcalidrawElement>[] | null;
264
+ editingTextElement: import("../element/types").NonDeletedExcalidrawElement | null;
265
+ editingLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
266
+ activeTool: {
267
+ lastActiveTool: import("../types").ActiveTool | null;
268
+ locked: boolean;
269
+ } & import("../types").ActiveTool;
270
+ penMode: boolean;
271
+ penDetected: boolean;
272
+ exportBackground: boolean;
273
+ exportEmbedScene: boolean;
274
+ exportWithDarkMode: boolean;
275
+ exportScale: number;
276
+ currentItemStrokeColor: string;
277
+ currentItemBackgroundColor: string;
278
+ currentItemFillStyle: import("../element/types").FillStyle;
279
+ currentItemStrokeWidth: number;
280
+ currentItemStrokeStyle: import("../element/types").StrokeStyle;
281
+ currentItemRoughness: number;
282
+ currentItemOpacity: number;
283
+ currentItemFontFamily: number;
284
+ currentItemFontSize: number;
285
+ currentItemTextAlign: string;
286
+ currentItemStartArrowhead: import("../element/types").Arrowhead | null;
287
+ currentItemEndArrowhead: import("../element/types").Arrowhead | null;
288
+ currentHoveredFontFamily: number | null;
289
+ currentItemRoundness: import("../element/types").StrokeRoundness;
290
+ currentItemArrowType: "round" | "sharp" | "elbow";
291
+ viewBackgroundColor: string;
292
+ scrollX: number;
293
+ scrollY: number;
294
+ cursorButton: "up" | "down";
295
+ scrolledOutside: boolean;
296
+ name: string | null;
297
+ isResizing: boolean;
298
+ isRotating: boolean;
299
+ zoom: Readonly<{
300
+ value: import("../types").NormalizedZoomValue;
301
+ }>;
302
+ openMenu: "canvas" | "shape" | null;
303
+ openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
304
+ openSidebar: {
305
+ name: string;
306
+ tab?: string | undefined;
307
+ } | null;
308
+ openDialog: {
309
+ name: "imageExport" | "help" | "jsonExport";
310
+ } | {
311
+ name: "ttd";
312
+ tab: "mermaid" | "text-to-diagram";
313
+ } | {
314
+ name: "commandPalette";
315
+ } | {
316
+ name: "elementLinkSelector";
317
+ sourceElementId: string;
318
+ } | null;
319
+ defaultSidebarDockedPreference: boolean;
320
+ lastPointerDownWith: import("../element/types").PointerType;
321
+ hoveredElementIds: Readonly<{
322
+ [id: string]: true;
323
+ }>;
324
+ previousSelectedElementIds: {
325
+ [id: string]: true;
326
+ };
327
+ selectedElementsAreBeingDragged: boolean;
328
+ shouldCacheIgnoreZoom: boolean;
329
+ toast: {
330
+ message: string;
331
+ closable?: boolean | undefined;
332
+ duration?: number | undefined;
333
+ } | null;
334
+ zenModeEnabled: boolean;
335
+ theme: import("../element/types").Theme;
336
+ gridSize: number;
337
+ gridStep: number;
338
+ gridModeEnabled: boolean;
339
+ viewModeEnabled: boolean;
340
+ selectedGroupIds: {
341
+ [groupId: string]: boolean;
342
+ };
343
+ editingGroupId: string | null;
344
+ width: number;
345
+ height: number;
346
+ offsetTop: number;
347
+ offsetLeft: number;
348
+ fileHandle: import("browser-fs-access").FileSystemHandle | null;
349
+ collaborators: Map<import("../types").SocketId, Readonly<{
350
+ pointer?: import("../types").CollaboratorPointer | undefined;
351
+ button?: "up" | "down" | undefined;
352
+ selectedElementIds?: Readonly<{
353
+ [id: string]: true;
354
+ }> | undefined;
355
+ username?: string | null | undefined;
356
+ userState?: import("../types").UserIdleState | undefined;
357
+ color?: {
358
+ background: string;
359
+ stroke: string;
360
+ } | undefined;
361
+ avatarUrl?: string | undefined;
362
+ id?: string | undefined;
363
+ socketId?: import("../types").SocketId | undefined;
364
+ isCurrentUser?: boolean | undefined;
365
+ isInCall?: boolean | undefined;
366
+ isSpeaking?: boolean | undefined;
367
+ isMuted?: boolean | undefined;
368
+ }>>;
369
+ stats: {
370
+ open: boolean;
371
+ panels: number;
372
+ };
373
+ currentChartType: import("../element/types").ChartType;
374
+ pasteDialog: {
375
+ shown: false;
376
+ data: null;
377
+ } | {
378
+ shown: true;
379
+ data: import("../charts").Spreadsheet;
380
+ };
381
+ pendingImageElementId: string | null;
382
+ showHyperlinkPopup: false | "info" | "editor";
383
+ linkOpacity: number;
384
+ trayModeEnabled: boolean;
385
+ colorPalette?: {
386
+ canvasBackground: import("../colors").ColorPaletteCustom;
387
+ elementBackground: import("../colors").ColorPaletteCustom;
388
+ elementStroke: import("../colors").ColorPaletteCustom;
389
+ topPicks: {
390
+ canvasBackground: [string, string, string, string, string];
391
+ elementStroke: [string, string, string, string, string];
392
+ elementBackground: [string, string, string, string, string];
393
+ };
394
+ } | undefined;
395
+ allowWheelZoom?: boolean | undefined;
396
+ allowPinchZoom?: boolean | undefined;
397
+ pinnedScripts?: string[] | undefined;
398
+ customPens?: any[] | undefined;
399
+ currentStrokeOptions?: any;
400
+ resetCustomPen?: any;
401
+ gridColor: {
402
+ Bold: string;
403
+ Regular: string;
404
+ };
405
+ highlightSearchResult: boolean;
406
+ dynamicStyle: {
407
+ [x: string]: string;
408
+ };
409
+ frameColor: {
410
+ stroke: string;
411
+ fill: string;
412
+ nameColor: string;
413
+ };
414
+ invertBindingBehaviour: boolean;
415
+ selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
416
+ snapLines: readonly import("../snapping").SnapLine[];
417
+ originSnapOffset: {
418
+ x: number;
419
+ y: number;
420
+ } | null;
421
+ objectsSnapModeEnabled: boolean;
422
+ userToFollow: import("../types").UserToFollow | null;
423
+ followedBy: Set<import("../types").SocketId>;
424
+ isCropping: boolean;
425
+ croppingElementId: string | null;
426
+ searchMatches: readonly {
427
+ id: string;
428
+ focus: boolean;
429
+ matchedLines: {
430
+ offsetX: number;
431
+ offsetY: number;
432
+ width: number;
433
+ height: number;
434
+ }[];
435
+ }[];
436
+ };
437
+ storeAction: "capture";
438
+ } | {
439
+ elements: readonly import("../element/types").OrderedExcalidrawElement[];
440
+ appState: Readonly<AppState>;
441
+ storeAction: "none";
442
+ };
443
+ predicate: (elements: readonly ExcalidrawElement[], appState: AppState, _: import("../types").ExcalidrawProps, app: AppClassProperties) => boolean;
444
+ } & {
445
+ keyTest?: undefined;
446
+ };
447
+ export declare const actionupdateFrameRendering: {
448
+ name: "updateFrameRendering";
449
+ label: string;
450
+ viewMode: true;
451
+ trackEvent: {
452
+ category: "canvas";
453
+ };
454
+ perform: (elements: readonly import("../element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>) => {
455
+ elements: readonly import("../element/types").OrderedExcalidrawElement[];
456
+ appState: {
457
+ frameRendering: {
458
+ enabled: boolean;
459
+ name: boolean;
460
+ outline: boolean;
461
+ clip: boolean;
462
+ };
463
+ contextMenu: {
464
+ items: import("../components/ContextMenu").ContextMenuItems;
465
+ top: number;
466
+ left: number;
467
+ } | null;
468
+ showWelcomeScreen: boolean;
469
+ isLoading: boolean;
470
+ errorMessage: import("react").ReactNode;
471
+ activeEmbeddable: {
472
+ element: import("../element/types").NonDeletedExcalidrawElement;
473
+ state: "active" | "hover";
474
+ } | null;
475
+ newElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawNonSelectionElement> | null;
476
+ resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
477
+ multiElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawLinearElement> | null;
478
+ selectionElement: import("../element/types").NonDeletedExcalidrawElement | null;
479
+ isBindingEnabled: boolean;
480
+ startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
481
+ suggestedBindings: import("../element/binding").SuggestedBinding[];
482
+ frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
483
+ editingFrame: string | null;
484
+ elementsToHighlight: import("../element/types").NonDeleted<ExcalidrawElement>[] | null;
485
+ editingTextElement: import("../element/types").NonDeletedExcalidrawElement | null;
486
+ editingLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
487
+ activeTool: {
488
+ lastActiveTool: import("../types").ActiveTool | null;
489
+ locked: 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("../element/types").FillStyle;
500
+ currentItemStrokeWidth: number;
501
+ currentItemStrokeStyle: import("../element/types").StrokeStyle;
502
+ currentItemRoughness: number;
503
+ currentItemOpacity: number;
504
+ currentItemFontFamily: number;
505
+ currentItemFontSize: number;
506
+ currentItemTextAlign: string;
507
+ currentItemStartArrowhead: import("../element/types").Arrowhead | null;
508
+ currentItemEndArrowhead: import("../element/types").Arrowhead | null;
509
+ currentHoveredFontFamily: number | null;
510
+ currentItemRoundness: import("../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: "canvas" | "shape" | null;
524
+ openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
525
+ openSidebar: {
526
+ name: string;
527
+ tab?: string | undefined;
528
+ } | null;
529
+ openDialog: {
530
+ name: "imageExport" | "help" | "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("../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("../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("../types").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("../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 | "info" | "editor";
607
+ linkOpacity: number;
608
+ trayModeEnabled: boolean;
609
+ colorPalette?: {
610
+ canvasBackground: import("../colors").ColorPaletteCustom;
611
+ elementBackground: import("../colors").ColorPaletteCustom;
612
+ elementStroke: import("../colors").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("../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
+ storeAction: "none";
662
+ };
663
+ checked: (appState: AppState) => boolean;
664
+ } & {
665
+ keyTest?: undefined;
666
+ };
667
+ export declare const actionSetFrameAsActiveTool: {
668
+ name: "setFrameAsActiveTool";
669
+ label: string;
670
+ trackEvent: {
671
+ category: "toolbar";
672
+ };
673
+ icon: JSX.Element;
674
+ viewMode: false;
675
+ perform: (elements: readonly import("../element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: AppClassProperties) => {
676
+ elements: readonly import("../element/types").OrderedExcalidrawElement[];
677
+ appState: {
678
+ activeTool: {
679
+ lastActiveTool: import("../types").ActiveTool | null;
680
+ locked: boolean;
681
+ } & import("../types").ActiveTool;
682
+ contextMenu: {
683
+ items: import("../components/ContextMenu").ContextMenuItems;
684
+ top: number;
685
+ left: number;
686
+ } | null;
687
+ showWelcomeScreen: boolean;
688
+ isLoading: boolean;
689
+ errorMessage: import("react").ReactNode;
690
+ activeEmbeddable: {
691
+ element: import("../element/types").NonDeletedExcalidrawElement;
692
+ state: "active" | "hover";
693
+ } | null;
694
+ newElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawNonSelectionElement> | null;
695
+ resizingElement: import("../element/types").NonDeletedExcalidrawElement | null;
696
+ multiElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawLinearElement> | null;
697
+ selectionElement: import("../element/types").NonDeletedExcalidrawElement | null;
698
+ isBindingEnabled: boolean;
699
+ startBoundElement: import("../element/types").NonDeleted<import("../element/types").ExcalidrawBindableElement> | null;
700
+ suggestedBindings: import("../element/binding").SuggestedBinding[];
701
+ frameToHighlight: import("../element/types").NonDeleted<import("../element/types").ExcalidrawFrameLikeElement> | null;
702
+ frameRendering: {
703
+ enabled: boolean;
704
+ name: boolean;
705
+ outline: boolean;
706
+ clip: boolean;
707
+ };
708
+ editingFrame: string | null;
709
+ elementsToHighlight: import("../element/types").NonDeleted<ExcalidrawElement>[] | null;
710
+ editingTextElement: import("../element/types").NonDeletedExcalidrawElement | null;
711
+ editingLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
712
+ penMode: boolean;
713
+ penDetected: boolean;
714
+ exportBackground: boolean;
715
+ exportEmbedScene: boolean;
716
+ exportWithDarkMode: boolean;
717
+ exportScale: number;
718
+ currentItemStrokeColor: string;
719
+ currentItemBackgroundColor: string;
720
+ currentItemFillStyle: import("../element/types").FillStyle;
721
+ currentItemStrokeWidth: number;
722
+ currentItemStrokeStyle: import("../element/types").StrokeStyle;
723
+ currentItemRoughness: number;
724
+ currentItemOpacity: number;
725
+ currentItemFontFamily: number;
726
+ currentItemFontSize: number;
727
+ currentItemTextAlign: string;
728
+ currentItemStartArrowhead: import("../element/types").Arrowhead | null;
729
+ currentItemEndArrowhead: import("../element/types").Arrowhead | null;
730
+ currentHoveredFontFamily: number | null;
731
+ currentItemRoundness: import("../element/types").StrokeRoundness;
732
+ currentItemArrowType: "round" | "sharp" | "elbow";
733
+ viewBackgroundColor: string;
734
+ scrollX: number;
735
+ scrollY: number;
736
+ cursorButton: "up" | "down";
737
+ scrolledOutside: boolean;
738
+ name: string | null;
739
+ isResizing: boolean;
740
+ isRotating: boolean;
741
+ zoom: Readonly<{
742
+ value: import("../types").NormalizedZoomValue;
743
+ }>;
744
+ openMenu: "canvas" | "shape" | null;
745
+ openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | null;
746
+ openSidebar: {
747
+ name: string;
748
+ tab?: string | undefined;
749
+ } | null;
750
+ openDialog: {
751
+ name: "imageExport" | "help" | "jsonExport";
752
+ } | {
753
+ name: "ttd";
754
+ tab: "mermaid" | "text-to-diagram";
755
+ } | {
756
+ name: "commandPalette";
757
+ } | {
758
+ name: "elementLinkSelector";
759
+ sourceElementId: string;
760
+ } | null;
761
+ defaultSidebarDockedPreference: boolean;
762
+ lastPointerDownWith: import("../element/types").PointerType;
763
+ selectedElementIds: Readonly<{
764
+ [id: string]: true;
765
+ }>;
766
+ hoveredElementIds: Readonly<{
767
+ [id: string]: true;
768
+ }>;
769
+ previousSelectedElementIds: {
770
+ [id: string]: true;
771
+ };
772
+ selectedElementsAreBeingDragged: boolean;
773
+ shouldCacheIgnoreZoom: boolean;
774
+ toast: {
775
+ message: string;
776
+ closable?: boolean | undefined;
777
+ duration?: number | undefined;
778
+ } | null;
779
+ zenModeEnabled: boolean;
780
+ theme: import("../element/types").Theme;
781
+ gridSize: number;
782
+ gridStep: number;
783
+ gridModeEnabled: boolean;
784
+ viewModeEnabled: boolean;
785
+ selectedGroupIds: {
786
+ [groupId: string]: boolean;
787
+ };
788
+ editingGroupId: string | null;
789
+ width: number;
790
+ height: number;
791
+ offsetTop: number;
792
+ offsetLeft: number;
793
+ fileHandle: import("browser-fs-access").FileSystemHandle | null;
794
+ collaborators: Map<import("../types").SocketId, Readonly<{
795
+ pointer?: import("../types").CollaboratorPointer | undefined;
796
+ button?: "up" | "down" | undefined;
797
+ selectedElementIds?: Readonly<{
798
+ [id: string]: true;
799
+ }> | undefined;
800
+ username?: string | null | undefined;
801
+ userState?: import("../types").UserIdleState | undefined;
802
+ color?: {
803
+ background: string;
804
+ stroke: string;
805
+ } | undefined;
806
+ avatarUrl?: string | undefined;
807
+ id?: string | undefined;
808
+ socketId?: import("../types").SocketId | undefined;
809
+ isCurrentUser?: boolean | undefined;
810
+ isInCall?: boolean | undefined;
811
+ isSpeaking?: boolean | undefined;
812
+ isMuted?: boolean | undefined;
813
+ }>>;
814
+ stats: {
815
+ open: boolean;
816
+ panels: number;
817
+ };
818
+ currentChartType: import("../element/types").ChartType;
819
+ pasteDialog: {
820
+ shown: false;
821
+ data: null;
822
+ } | {
823
+ shown: true;
824
+ data: import("../charts").Spreadsheet;
825
+ };
826
+ pendingImageElementId: string | null;
827
+ showHyperlinkPopup: false | "info" | "editor";
828
+ linkOpacity: number;
829
+ trayModeEnabled: boolean;
830
+ colorPalette?: {
831
+ canvasBackground: import("../colors").ColorPaletteCustom;
832
+ elementBackground: import("../colors").ColorPaletteCustom;
833
+ elementStroke: import("../colors").ColorPaletteCustom;
834
+ topPicks: {
835
+ canvasBackground: [string, string, string, string, string];
836
+ elementStroke: [string, string, string, string, string];
837
+ elementBackground: [string, string, string, string, string];
838
+ };
839
+ } | undefined;
840
+ allowWheelZoom?: boolean | undefined;
841
+ allowPinchZoom?: boolean | undefined;
842
+ pinnedScripts?: string[] | undefined;
843
+ customPens?: any[] | undefined;
844
+ currentStrokeOptions?: any;
845
+ resetCustomPen?: any;
846
+ gridColor: {
847
+ Bold: string;
848
+ Regular: string;
849
+ };
850
+ highlightSearchResult: boolean;
851
+ dynamicStyle: {
852
+ [x: string]: string;
853
+ };
854
+ frameColor: {
855
+ stroke: string;
856
+ fill: string;
857
+ nameColor: string;
858
+ };
859
+ invertBindingBehaviour: boolean;
860
+ selectedLinearElement: import("../element/linearElementEditor").LinearElementEditor | null;
861
+ snapLines: readonly import("../snapping").SnapLine[];
862
+ originSnapOffset: {
863
+ x: number;
864
+ y: number;
865
+ } | null;
866
+ objectsSnapModeEnabled: boolean;
867
+ userToFollow: import("../types").UserToFollow | null;
868
+ followedBy: Set<import("../types").SocketId>;
869
+ isCropping: boolean;
870
+ croppingElementId: string | null;
871
+ searchMatches: readonly {
872
+ id: string;
873
+ focus: boolean;
874
+ matchedLines: {
875
+ offsetX: number;
876
+ offsetY: number;
877
+ width: number;
878
+ height: number;
879
+ }[];
880
+ }[];
881
+ };
882
+ storeAction: "none";
883
+ };
884
+ keyTest: (event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean;
885
+ } & {
886
+ keyTest?: ((event: KeyboardEvent | import("react").KeyboardEvent<Element>) => boolean) | undefined;
887
+ };