@zsviczian/excalidraw 0.17.1-obsidian-42 → 0.17.1-obsidian-44

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