@excalidraw-modify/element 0.18.0-8b71db27 → 0.18.2

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 (402) hide show
  1. package/README.md +19 -19
  2. package/dist/dev/index.js +3074 -2482
  3. package/dist/dev/index.js.map +4 -4
  4. package/dist/prod/index.js +17 -17
  5. package/dist/types/common/src/binary-heap.d.ts +12 -0
  6. package/dist/types/common/src/bounds.d.ts +10 -0
  7. package/dist/types/common/src/colors.d.ts +82 -0
  8. package/dist/types/common/src/constants.d.ts +355 -0
  9. package/dist/types/common/src/editorInterface.d.ts +34 -0
  10. package/dist/types/common/src/emitter.d.ts +16 -0
  11. package/dist/types/common/src/font-metadata.d.ts +46 -0
  12. package/dist/types/common/src/index.d.ts +14 -0
  13. package/dist/types/common/src/keys.d.ts +189 -0
  14. package/dist/types/common/src/points.d.ts +9 -0
  15. package/dist/types/common/src/promise-pool.d.ts +6 -0
  16. package/dist/types/common/src/queue.d.ts +9 -0
  17. package/dist/types/common/src/random.d.ts +3 -0
  18. package/dist/types/common/src/url.d.ts +7 -0
  19. package/dist/types/common/src/utility-types.d.ts +37 -0
  20. package/dist/types/common/src/utils.d.ts +282 -0
  21. package/dist/types/element/src/Scene.d.ts +80 -0
  22. package/dist/types/element/src/align.d.ts +8 -0
  23. package/dist/types/element/src/arrows/focus.d.ts +27 -0
  24. package/dist/types/element/src/arrows/helpers.d.ts +5 -0
  25. package/dist/types/element/src/binding.d.ts +130 -0
  26. package/dist/types/element/src/bounds.d.ts +81 -0
  27. package/dist/types/element/src/collision.d.ts +37 -0
  28. package/dist/types/element/src/comparisons.d.ts +8 -0
  29. package/dist/types/element/src/containerCache.d.ts +11 -0
  30. package/dist/types/element/src/cropElement.d.ts +19 -0
  31. package/dist/types/element/src/delta.d.ts +228 -0
  32. package/dist/types/element/src/distance.d.ts +3 -0
  33. package/dist/types/element/src/distribute.d.ts +8 -0
  34. package/dist/types/element/src/dragElements.d.ts +33 -0
  35. package/dist/types/element/src/duplicate.d.ts +63 -0
  36. package/dist/types/element/src/elbowArrow.d.ts +17 -0
  37. package/dist/types/element/src/elementLink.d.ts +13 -0
  38. package/dist/types/element/src/embeddable.d.ts +10 -0
  39. package/dist/types/element/src/flowchart.d.ts +26 -0
  40. package/dist/types/element/src/fractionalIndex.d.ts +57 -0
  41. package/dist/types/element/src/frame.d.ts +74 -0
  42. package/dist/types/element/src/groups.d.ts +34 -0
  43. package/dist/types/element/src/heading.d.ts +16 -0
  44. package/dist/types/element/src/image.d.ts +22 -0
  45. package/dist/types/element/src/index.d.ts +58 -0
  46. package/dist/types/element/src/linearElementEditor.d.ts +115 -0
  47. package/dist/types/element/src/mutateElement.d.ts +23 -0
  48. package/dist/types/element/src/newElement.d.ts +62 -0
  49. package/dist/types/element/src/positionElementsOnGrid.d.ts +2 -0
  50. package/dist/types/element/src/renderElement.d.ts +25 -0
  51. package/dist/types/element/src/resizeElements.d.ts +32 -0
  52. package/dist/types/element/src/resizeTest.d.ts +16 -0
  53. package/dist/types/element/src/selection.d.ts +34 -0
  54. package/dist/types/element/src/shape.d.ts +43 -0
  55. package/dist/types/element/src/showSelectedShapeActions.d.ts +3 -0
  56. package/dist/types/element/src/sizeHelpers.d.ts +35 -0
  57. package/dist/types/element/src/sortElements.d.ts +2 -0
  58. package/dist/types/element/src/store.d.ts +237 -0
  59. package/dist/types/element/src/textElement.d.ts +40 -0
  60. package/dist/types/element/src/textMeasurements.d.ts +39 -0
  61. package/dist/types/element/src/textWrapping.d.ts +13 -0
  62. package/dist/types/element/src/transform.d.ts +81 -0
  63. package/dist/types/element/src/transformHandles.d.ts +36 -0
  64. package/dist/types/element/src/typeChecks.d.ts +54 -0
  65. package/dist/types/element/src/types.d.ts +296 -0
  66. package/dist/types/element/src/utils.d.ts +34 -0
  67. package/dist/types/element/src/visualdebug.d.ts +59 -0
  68. package/dist/types/element/src/zindex.d.ts +13 -0
  69. package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +485 -0
  70. package/dist/types/excalidraw/actions/actionAlign.d.ts +109 -0
  71. package/dist/types/excalidraw/actions/actionBoundText.d.ts +360 -0
  72. package/dist/types/excalidraw/actions/actionCanvas.d.ts +2059 -0
  73. package/dist/types/excalidraw/actions/actionClipboard.d.ts +399 -0
  74. package/dist/types/excalidraw/actions/actionCropEditor.d.ts +174 -0
  75. package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +521 -0
  76. package/dist/types/excalidraw/actions/actionDistribute.d.ts +34 -0
  77. package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +17 -0
  78. package/dist/types/excalidraw/actions/actionElementLink.d.ts +194 -0
  79. package/dist/types/excalidraw/actions/actionElementLock.d.ts +346 -0
  80. package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +171 -0
  81. package/dist/types/excalidraw/actions/actionExport.d.ts +683 -0
  82. package/dist/types/excalidraw/actions/actionFinalize.d.ts +13 -0
  83. package/dist/types/excalidraw/actions/actionFlip.d.ts +34 -0
  84. package/dist/types/excalidraw/actions/actionFrame.d.ts +1162 -0
  85. package/dist/types/excalidraw/actions/actionGroup.d.ts +350 -0
  86. package/dist/types/excalidraw/actions/actionHistory.d.ts +6 -0
  87. package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +673 -0
  88. package/dist/types/excalidraw/actions/actionLink.d.ts +175 -0
  89. package/dist/types/excalidraw/actions/actionMenu.d.ts +163 -0
  90. package/dist/types/excalidraw/actions/actionNavigate.d.ts +20 -0
  91. package/dist/types/excalidraw/actions/actionProperties.d.ts +402 -0
  92. package/dist/types/excalidraw/actions/actionSelectAll.d.ts +170 -0
  93. package/dist/types/excalidraw/actions/actionStyles.d.ts +188 -0
  94. package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +17 -0
  95. package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +177 -0
  96. package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +175 -0
  97. package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +166 -0
  98. package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +19 -0
  99. package/dist/types/excalidraw/actions/actionToggleStats.d.ts +174 -0
  100. package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +175 -0
  101. package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +175 -0
  102. package/dist/types/excalidraw/actions/actionZindex.d.ts +74 -0
  103. package/dist/types/excalidraw/actions/index.d.ts +28 -0
  104. package/dist/types/excalidraw/actions/manager.d.ts +21 -0
  105. package/dist/types/excalidraw/actions/register.d.ts +5 -0
  106. package/dist/types/excalidraw/actions/shortcuts.d.ts +4 -0
  107. package/dist/types/excalidraw/actions/types.d.ts +47 -0
  108. package/dist/types/excalidraw/analytics.d.ts +1 -0
  109. package/dist/types/excalidraw/animated-trail.d.ts +39 -0
  110. package/dist/types/excalidraw/animation-frame-handler.d.ts +16 -0
  111. package/dist/types/excalidraw/appState.d.ts +101 -0
  112. package/dist/types/excalidraw/charts.d.ts +27 -0
  113. package/dist/types/excalidraw/clients.d.ts +14 -0
  114. package/dist/types/excalidraw/clipboard.d.ts +107 -0
  115. package/dist/types/excalidraw/components/Actions.d.ts +47 -0
  116. package/dist/types/excalidraw/components/ActiveConfirmDialog.d.ts +4 -0
  117. package/dist/types/excalidraw/components/App.d.ts +559 -0
  118. package/dist/types/excalidraw/components/Avatar.d.ts +11 -0
  119. package/dist/types/excalidraw/components/BraveMeasureTextError.d.ts +2 -0
  120. package/dist/types/excalidraw/components/Button.d.ts +17 -0
  121. package/dist/types/excalidraw/components/ButtonIcon.d.ts +16 -0
  122. package/dist/types/excalidraw/components/ButtonSeparator.d.ts +1 -0
  123. package/dist/types/excalidraw/components/Card.d.ts +5 -0
  124. package/dist/types/excalidraw/components/CheckboxItem.d.ts +8 -0
  125. package/dist/types/excalidraw/components/ColorPicker/ColorInput.d.ts +8 -0
  126. package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +22 -0
  127. package/dist/types/excalidraw/components/ColorPicker/CustomColorList.d.ts +8 -0
  128. package/dist/types/excalidraw/components/ColorPicker/HotkeyLabel.d.ts +7 -0
  129. package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +19 -0
  130. package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +10 -0
  131. package/dist/types/excalidraw/components/ColorPicker/PickerHeading.d.ts +5 -0
  132. package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +9 -0
  133. package/dist/types/excalidraw/components/ColorPicker/TopPicks.d.ts +9 -0
  134. package/dist/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +20 -0
  135. package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +20 -0
  136. package/dist/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +19 -0
  137. package/dist/types/excalidraw/components/CommandPalette/defaultCommandPaletteItems.d.ts +2 -0
  138. package/dist/types/excalidraw/components/CommandPalette/types.d.ts +24 -0
  139. package/dist/types/excalidraw/components/ConfirmDialog.d.ts +10 -0
  140. package/dist/types/excalidraw/components/ContextMenu.d.ts +16 -0
  141. package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +23 -0
  142. package/dist/types/excalidraw/components/DarkModeToggle.d.ts +7 -0
  143. package/dist/types/excalidraw/components/DefaultSidebar.d.ts +27 -0
  144. package/dist/types/excalidraw/components/DiagramToCodePlugin/DiagramToCodePlugin.d.ts +4 -0
  145. package/dist/types/excalidraw/components/Dialog.d.ts +13 -0
  146. package/dist/types/excalidraw/components/DialogActionButton.d.ts +10 -0
  147. package/dist/types/excalidraw/components/ElementCanvasButtons.d.ts +7 -0
  148. package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +12 -0
  149. package/dist/types/excalidraw/components/Ellipsify.d.ts +3 -0
  150. package/dist/types/excalidraw/components/ErrorDialog.d.ts +5 -0
  151. package/dist/types/excalidraw/components/ExcalidrawLogo.d.ts +15 -0
  152. package/dist/types/excalidraw/components/EyeDropper.d.ts +27 -0
  153. package/dist/types/excalidraw/components/FilledButton.d.ts +19 -0
  154. package/dist/types/excalidraw/components/FixedSideContainer.d.ts +9 -0
  155. package/dist/types/excalidraw/components/FollowMode/FollowMode.d.ts +10 -0
  156. package/dist/types/excalidraw/components/FontPicker/FontPicker.d.ts +22 -0
  157. package/dist/types/excalidraw/components/FontPicker/FontPickerList.d.ts +26 -0
  158. package/dist/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +8 -0
  159. package/dist/types/excalidraw/components/FontPicker/keyboardNavHandlers.d.ts +13 -0
  160. package/dist/types/excalidraw/components/HandButton.d.ts +10 -0
  161. package/dist/types/excalidraw/components/HelpButton.d.ts +7 -0
  162. package/dist/types/excalidraw/components/HelpDialog.d.ts +4 -0
  163. package/dist/types/excalidraw/components/HintViewer.d.ts +11 -0
  164. package/dist/types/excalidraw/components/IconPicker.d.ts +15 -0
  165. package/dist/types/excalidraw/components/ImageExportDialog.d.ts +14 -0
  166. package/dist/types/excalidraw/components/InitializeApp.d.ts +10 -0
  167. package/dist/types/excalidraw/components/InlineIcon.d.ts +5 -0
  168. package/dist/types/excalidraw/components/Island.d.ts +10 -0
  169. package/dist/types/excalidraw/components/JSONExportDialog.d.ts +15 -0
  170. package/dist/types/excalidraw/components/LaserPointerButton.d.ts +10 -0
  171. package/dist/types/excalidraw/components/LayerUI.d.ts +32 -0
  172. package/dist/types/excalidraw/components/LibraryMenu.d.ts +10 -0
  173. package/dist/types/excalidraw/components/LibraryMenuBrowseButton.d.ts +7 -0
  174. package/dist/types/excalidraw/components/LibraryMenuControlButtons.d.ts +9 -0
  175. package/dist/types/excalidraw/components/LibraryMenuHeaderContent.d.ts +17 -0
  176. package/dist/types/excalidraw/components/LibraryMenuItems.d.ts +14 -0
  177. package/dist/types/excalidraw/components/LibraryMenuSection.d.ts +23 -0
  178. package/dist/types/excalidraw/components/LibraryUnit.d.ts +14 -0
  179. package/dist/types/excalidraw/components/LoadingMessage.d.ts +5 -0
  180. package/dist/types/excalidraw/components/LockButton.d.ts +10 -0
  181. package/dist/types/excalidraw/components/MagicButton.d.ts +10 -0
  182. package/dist/types/excalidraw/components/MobileMenu.d.ts +23 -0
  183. package/dist/types/excalidraw/components/MobileToolBar.d.ts +10 -0
  184. package/dist/types/excalidraw/components/Modal.d.ts +11 -0
  185. package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirm.d.ts +17 -0
  186. package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirmActions.d.ts +17 -0
  187. package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirmState.d.ts +22 -0
  188. package/dist/types/excalidraw/components/PasteChartDialog.d.ts +8 -0
  189. package/dist/types/excalidraw/components/PenModeButton.d.ts +12 -0
  190. package/dist/types/excalidraw/components/Popover.d.ts +16 -0
  191. package/dist/types/excalidraw/components/ProjectName.d.ts +10 -0
  192. package/dist/types/excalidraw/components/PropertiesPopover.d.ts +16 -0
  193. package/dist/types/excalidraw/components/PublishLibrary.d.ts +16 -0
  194. package/dist/types/excalidraw/components/QuickSearch.d.ts +9 -0
  195. package/dist/types/excalidraw/components/RadioGroup.d.ts +13 -0
  196. package/dist/types/excalidraw/components/RadioSelection.d.ts +20 -0
  197. package/dist/types/excalidraw/components/Range.d.ts +8 -0
  198. package/dist/types/excalidraw/components/SVGLayer.d.ts +7 -0
  199. package/dist/types/excalidraw/components/ScrollableList.d.ts +8 -0
  200. package/dist/types/excalidraw/components/SearchMenu.d.ts +5 -0
  201. package/dist/types/excalidraw/components/Section.d.ts +6 -0
  202. package/dist/types/excalidraw/components/Sidebar/Sidebar.d.ts +70 -0
  203. package/dist/types/excalidraw/components/Sidebar/SidebarHeader.d.ts +7 -0
  204. package/dist/types/excalidraw/components/Sidebar/SidebarTab.d.ts +8 -0
  205. package/dist/types/excalidraw/components/Sidebar/SidebarTabTrigger.d.ts +9 -0
  206. package/dist/types/excalidraw/components/Sidebar/SidebarTabTriggers.d.ts +6 -0
  207. package/dist/types/excalidraw/components/Sidebar/SidebarTabs.d.ts +6 -0
  208. package/dist/types/excalidraw/components/Sidebar/SidebarTrigger.d.ts +6 -0
  209. package/dist/types/excalidraw/components/Sidebar/common.d.ts +34 -0
  210. package/dist/types/excalidraw/components/Spinner.d.ts +8 -0
  211. package/dist/types/excalidraw/components/Stack.d.ts +15 -0
  212. package/dist/types/excalidraw/components/Stats/Angle.d.ts +11 -0
  213. package/dist/types/excalidraw/components/Stats/CanvasGrid.d.ts +10 -0
  214. package/dist/types/excalidraw/components/Stats/Collapsible.d.ts +10 -0
  215. package/dist/types/excalidraw/components/Stats/Dimension.d.ts +11 -0
  216. package/dist/types/excalidraw/components/Stats/DragInput.d.ts +44 -0
  217. package/dist/types/excalidraw/components/Stats/FontSize.d.ts +11 -0
  218. package/dist/types/excalidraw/components/Stats/MultiAngle.d.ts +11 -0
  219. package/dist/types/excalidraw/components/Stats/MultiDimension.d.ts +14 -0
  220. package/dist/types/excalidraw/components/Stats/MultiFontSize.d.ts +12 -0
  221. package/dist/types/excalidraw/components/Stats/MultiPosition.d.ts +14 -0
  222. package/dist/types/excalidraw/components/Stats/Position.d.ts +12 -0
  223. package/dist/types/excalidraw/components/Stats/index.d.ts +35 -0
  224. package/dist/types/excalidraw/components/Stats/utils.d.ts +19 -0
  225. package/dist/types/excalidraw/components/Switch.d.ts +9 -0
  226. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatHistoryMenu.d.ts +15 -0
  227. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatInterface.d.ts +23 -0
  228. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatMessage.d.ts +14 -0
  229. package/dist/types/excalidraw/components/TTDDialog/Chat/TTDChatPanel.d.ts +27 -0
  230. package/dist/types/excalidraw/components/TTDDialog/Chat/index.d.ts +3 -0
  231. package/dist/types/excalidraw/components/TTDDialog/Chat/useChatAgent.d.ts +8 -0
  232. package/dist/types/excalidraw/components/TTDDialog/MermaidToExcalidraw.d.ts +7 -0
  233. package/dist/types/excalidraw/components/TTDDialog/TTDContext.d.ts +13 -0
  234. package/dist/types/excalidraw/components/TTDDialog/TTDDialog.d.ts +13 -0
  235. package/dist/types/excalidraw/components/TTDDialog/TTDDialogInput.d.ts +9 -0
  236. package/dist/types/excalidraw/components/TTDDialog/TTDDialogOutput.d.ts +8 -0
  237. package/dist/types/excalidraw/components/TTDDialog/TTDDialogPanel.d.ts +21 -0
  238. package/dist/types/excalidraw/components/TTDDialog/TTDDialogPanels.d.ts +4 -0
  239. package/dist/types/excalidraw/components/TTDDialog/TTDDialogSubmitShortcut.d.ts +1 -0
  240. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTab.d.ts +7 -0
  241. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTrigger.d.ts +8 -0
  242. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTriggers.d.ts +6 -0
  243. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabs.d.ts +11 -0
  244. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +8 -0
  245. package/dist/types/excalidraw/components/TTDDialog/TTDPreviewPanel.d.ts +9 -0
  246. package/dist/types/excalidraw/components/TTDDialog/TTDWelcomeMessage.d.ts +1 -0
  247. package/dist/types/excalidraw/components/TTDDialog/TextToDiagram.d.ts +9 -0
  248. package/dist/types/excalidraw/components/TTDDialog/common.d.ts +33 -0
  249. package/dist/types/excalidraw/components/TTDDialog/hooks/useChatManagement.d.ts +13 -0
  250. package/dist/types/excalidraw/components/TTDDialog/hooks/useMermaidRenderer.d.ts +14 -0
  251. package/dist/types/excalidraw/components/TTDDialog/hooks/useTextGeneration.d.ts +7 -0
  252. package/dist/types/excalidraw/components/TTDDialog/types.d.ts +95 -0
  253. package/dist/types/excalidraw/components/TTDDialog/useTTDChatStorage.d.ts +22 -0
  254. package/dist/types/excalidraw/components/TTDDialog/utils/TTDStreamFetch.d.ts +24 -0
  255. package/dist/types/excalidraw/components/TTDDialog/utils/chat.d.ts +10 -0
  256. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidValidation.d.ts +1 -0
  257. package/dist/types/excalidraw/components/TextField.d.ts +22 -0
  258. package/dist/types/excalidraw/components/Toast.d.ts +9 -0
  259. package/dist/types/excalidraw/components/ToolButton.d.ts +49 -0
  260. package/dist/types/excalidraw/components/ToolPopover.d.ts +25 -0
  261. package/dist/types/excalidraw/components/Tooltip.d.ts +18 -0
  262. package/dist/types/excalidraw/components/Trans.d.ts +9 -0
  263. package/dist/types/excalidraw/components/UnlockPopup.d.ts +8 -0
  264. package/dist/types/excalidraw/components/UserList.d.ts +18 -0
  265. package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +33 -0
  266. package/dist/types/excalidraw/components/canvases/NewElementCanvas.d.ts +14 -0
  267. package/dist/types/excalidraw/components/canvases/StaticCanvas.d.ts +19 -0
  268. package/dist/types/excalidraw/components/canvases/index.d.ts +3 -0
  269. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +98 -0
  270. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +17 -0
  271. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +11 -0
  272. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +37 -0
  273. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCheckbox.d.ts +5 -0
  274. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +9 -0
  275. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +17 -0
  276. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.d.ts +7 -0
  277. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemLink.d.ts +16 -0
  278. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSeparator.d.ts +5 -0
  279. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSub.d.ts +23 -0
  280. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubContent.d.ts +8 -0
  281. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubTrigger.d.ts +12 -0
  282. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuTrigger.d.ts +10 -0
  283. package/dist/types/excalidraw/components/dropdownMenu/common.d.ts +6 -0
  284. package/dist/types/excalidraw/components/dropdownMenu/dropdownMenuUtils.d.ts +5 -0
  285. package/dist/types/excalidraw/components/footer/Footer.d.ts +12 -0
  286. package/dist/types/excalidraw/components/footer/FooterCenter.d.ts +8 -0
  287. package/dist/types/excalidraw/components/hoc/withInternalFallback.d.ts +4 -0
  288. package/dist/types/excalidraw/components/hyperlink/Hyperlink.d.ts +19 -0
  289. package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +10 -0
  290. package/dist/types/excalidraw/components/icons.d.ts +242 -0
  291. package/dist/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +11 -0
  292. package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +79 -0
  293. package/dist/types/excalidraw/components/main-menu/MainMenu.d.ts +87 -0
  294. package/dist/types/excalidraw/components/shapes.d.ts +190 -0
  295. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Center.d.ts +58 -0
  296. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Hints.d.ts +19 -0
  297. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.d.ts +84 -0
  298. package/dist/types/excalidraw/context/tunnels.d.ts +21 -0
  299. package/dist/types/excalidraw/context/ui-appState.d.ts +4 -0
  300. package/dist/types/excalidraw/cursor.d.ts +5 -0
  301. package/dist/types/excalidraw/data/EditorLocalStorage.d.ts +8 -0
  302. package/dist/types/excalidraw/data/blob.d.ts +369 -0
  303. package/dist/types/excalidraw/data/encode.d.ts +55 -0
  304. package/dist/types/excalidraw/data/encryption.d.ts +9 -0
  305. package/dist/types/excalidraw/data/filesystem.d.ts +21 -0
  306. package/dist/types/excalidraw/data/image.d.ts +9 -0
  307. package/dist/types/excalidraw/data/index.d.ts +22 -0
  308. package/dist/types/excalidraw/data/json.d.ts +174 -0
  309. package/dist/types/excalidraw/data/library.d.ts +127 -0
  310. package/dist/types/excalidraw/data/reconcile.d.ts +7 -0
  311. package/dist/types/excalidraw/data/resave.d.ts +5 -0
  312. package/dist/types/excalidraw/data/restore.d.ts +41 -0
  313. package/dist/types/excalidraw/data/types.d.ts +48 -0
  314. package/dist/types/excalidraw/deburr.d.ts +1 -0
  315. package/dist/types/excalidraw/editor-jotai.d.ts +56 -0
  316. package/dist/types/excalidraw/eraser/index.d.ts +12 -0
  317. package/dist/types/excalidraw/errors.d.ts +43 -0
  318. package/dist/types/excalidraw/fonts/Cascadia/index.d.ts +2 -0
  319. package/dist/types/excalidraw/fonts/ComicShanns/index.d.ts +2 -0
  320. package/dist/types/excalidraw/fonts/Emoji/index.d.ts +2 -0
  321. package/dist/types/excalidraw/fonts/ExcalidrawFontFace.d.ts +25 -0
  322. package/dist/types/excalidraw/fonts/Excalifont/index.d.ts +2 -0
  323. package/dist/types/excalidraw/fonts/Fonts.d.ts +79 -0
  324. package/dist/types/excalidraw/fonts/Helvetica/index.d.ts +2 -0
  325. package/dist/types/excalidraw/fonts/Liberation/index.d.ts +2 -0
  326. package/dist/types/excalidraw/fonts/Lilita/index.d.ts +2 -0
  327. package/dist/types/excalidraw/fonts/Nunito/index.d.ts +2 -0
  328. package/dist/types/excalidraw/fonts/Virgil/index.d.ts +2 -0
  329. package/dist/types/excalidraw/fonts/Xiaolai/index.d.ts +8 -0
  330. package/dist/types/excalidraw/fonts/index.d.ts +1 -0
  331. package/dist/types/excalidraw/gesture.d.ts +6 -0
  332. package/dist/types/excalidraw/history.d.ts +48 -0
  333. package/dist/types/excalidraw/hooks/useCallbackRefState.d.ts +1 -0
  334. package/dist/types/excalidraw/hooks/useCopiedIndicator.d.ts +5 -0
  335. package/dist/types/excalidraw/hooks/useCreatePortalContainer.d.ts +4 -0
  336. package/dist/types/excalidraw/hooks/useEmitter.d.ts +2 -0
  337. package/dist/types/excalidraw/hooks/useLibraryItemSvg.d.ts +11 -0
  338. package/dist/types/excalidraw/hooks/useOutsideClick.d.ts +21 -0
  339. package/dist/types/excalidraw/hooks/useScrollPosition.d.ts +1 -0
  340. package/dist/types/excalidraw/hooks/useStable.d.ts +1 -0
  341. package/dist/types/excalidraw/hooks/useStableCallback.d.ts +4 -0
  342. package/dist/types/excalidraw/hooks/useTextEditorFocus.d.ts +14 -0
  343. package/dist/types/excalidraw/hooks/useTransition.d.ts +2 -0
  344. package/dist/types/excalidraw/i18n.d.ts +24 -0
  345. package/dist/types/excalidraw/index.d.ts +47 -0
  346. package/dist/types/excalidraw/laser-trails.d.ts +20 -0
  347. package/dist/types/excalidraw/lasso/index.d.ts +16 -0
  348. package/dist/types/excalidraw/lasso/utils.d.ts +13 -0
  349. package/dist/types/excalidraw/mermaid.d.ts +2 -0
  350. package/dist/types/excalidraw/polyfill.d.ts +2 -0
  351. package/dist/types/excalidraw/reactUtils.d.ts +14 -0
  352. package/dist/types/excalidraw/renderer/animation.d.ts +12 -0
  353. package/dist/types/excalidraw/renderer/helpers.d.ts +16 -0
  354. package/dist/types/excalidraw/renderer/interactiveScene.d.ts +14 -0
  355. package/dist/types/excalidraw/renderer/renderNewElementScene.d.ts +7 -0
  356. package/dist/types/excalidraw/renderer/renderSnaps.d.ts +2 -0
  357. package/dist/types/excalidraw/renderer/roundRect.d.ts +11 -0
  358. package/dist/types/excalidraw/renderer/staticScene.d.ts +14 -0
  359. package/dist/types/excalidraw/renderer/staticSvgScene.d.ts +5 -0
  360. package/dist/types/excalidraw/scene/Renderer.d.ts +30 -0
  361. package/dist/types/excalidraw/scene/export.d.ts +36 -0
  362. package/dist/types/excalidraw/scene/index.d.ts +4 -0
  363. package/dist/types/excalidraw/scene/normalize.d.ts +4 -0
  364. package/dist/types/excalidraw/scene/scroll.d.ts +18 -0
  365. package/dist/types/excalidraw/scene/scrollbars.d.ts +11 -0
  366. package/dist/types/excalidraw/scene/types.d.ts +137 -0
  367. package/dist/types/excalidraw/scene/zoom.d.ts +12 -0
  368. package/dist/types/excalidraw/shortcut.d.ts +1 -0
  369. package/dist/types/excalidraw/snapping.d.ts +111 -0
  370. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-bindings.d.ts +45 -0
  371. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-loader.d.ts +13 -0
  372. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-wasm.d.ts +2 -0
  373. package/dist/types/excalidraw/subset/subset-main.d.ts +12 -0
  374. package/dist/types/excalidraw/subset/subset-shared.chunk.d.ts +32 -0
  375. package/dist/types/excalidraw/subset/subset-worker.chunk.d.ts +15 -0
  376. package/dist/types/excalidraw/subset/woff2/woff2-bindings.d.ts +31 -0
  377. package/dist/types/excalidraw/subset/woff2/woff2-loader.d.ts +14 -0
  378. package/dist/types/excalidraw/subset/woff2/woff2-wasm.d.ts +2 -0
  379. package/dist/types/excalidraw/types.d.ts +728 -0
  380. package/dist/types/excalidraw/workers.d.ts +36 -0
  381. package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +24 -0
  382. package/dist/types/math/src/angle.d.ts +19 -0
  383. package/dist/types/math/src/constants.d.ts +3 -0
  384. package/dist/types/math/src/curve.d.ts +74 -0
  385. package/dist/types/math/src/ellipse.d.ts +44 -0
  386. package/dist/types/math/src/index.d.ts +13 -0
  387. package/dist/types/math/src/line.d.ts +17 -0
  388. package/dist/types/math/src/point.d.ts +122 -0
  389. package/dist/types/math/src/polygon.d.ts +6 -0
  390. package/dist/types/math/src/range.d.ts +42 -0
  391. package/dist/types/math/src/rectangle.d.ts +5 -0
  392. package/dist/types/math/src/segment.d.ts +40 -0
  393. package/dist/types/math/src/triangle.d.ts +11 -0
  394. package/dist/types/math/src/types.d.ts +106 -0
  395. package/dist/types/math/src/utils.d.ts +7 -0
  396. package/dist/types/math/src/vector.d.ts +94 -0
  397. package/dist/types/utils/src/bbox.d.ts +9 -0
  398. package/dist/types/utils/src/export.d.ts +35 -0
  399. package/dist/types/utils/src/index.d.ts +4 -0
  400. package/dist/types/utils/src/shape.d.ts +58 -0
  401. package/dist/types/utils/src/withinBounds.d.ts +19 -0
  402. package/package.json +9 -3
@@ -0,0 +1,19 @@
1
+ import React from "react";
2
+ import type { ExcalidrawElement } from "@excalidraw-modify/element/types";
3
+ import type { ColorPaletteCustom } from "@excalidraw-modify/common";
4
+ import type { ColorPickerType } from "./colorPickerUtils";
5
+ interface PickerProps {
6
+ color: string | null;
7
+ onChange: (color: string) => void;
8
+ type: ColorPickerType;
9
+ elements: readonly ExcalidrawElement[];
10
+ palette: ColorPaletteCustom;
11
+ updateData: (formData?: any) => void;
12
+ children?: React.ReactNode;
13
+ showTitle?: boolean;
14
+ onEyeDropperToggle: (force?: boolean) => void;
15
+ onEscape: (event: React.KeyboardEvent | KeyboardEvent) => void;
16
+ showHotKey?: boolean;
17
+ }
18
+ export declare const Picker: React.ForwardRefExoticComponent<PickerProps & React.RefAttributes<unknown>>;
19
+ export {};
@@ -0,0 +1,10 @@
1
+ import type { ColorPaletteCustom } from "@excalidraw-modify/common";
2
+ interface PickerColorListProps {
3
+ palette: ColorPaletteCustom;
4
+ color: string | null;
5
+ onChange: (color: string) => void;
6
+ activeShade: number;
7
+ showHotKey?: boolean;
8
+ }
9
+ declare const PickerColorList: ({ palette, color, onChange, activeShade, showHotKey, }: PickerColorListProps) => import("react/jsx-runtime").JSX.Element;
10
+ export default PickerColorList;
@@ -0,0 +1,5 @@
1
+ import type { ReactNode } from "react";
2
+ declare const PickerHeading: ({ children }: {
3
+ children: ReactNode;
4
+ }) => import("react/jsx-runtime").JSX.Element;
5
+ export default PickerHeading;
@@ -0,0 +1,9 @@
1
+ import type { ColorPaletteCustom } from "@excalidraw-modify/common";
2
+ interface ShadeListProps {
3
+ color: string | null;
4
+ onChange: (color: string) => void;
5
+ palette: ColorPaletteCustom;
6
+ showHotKey?: boolean;
7
+ }
8
+ export declare const ShadeList: ({ color, onChange, palette, showHotKey, }: ShadeListProps) => import("react/jsx-runtime").JSX.Element;
9
+ export {};
@@ -0,0 +1,9 @@
1
+ import type { ColorPickerType } from "./colorPickerUtils";
2
+ interface TopPicksProps {
3
+ onChange: (color: string) => void;
4
+ type: ColorPickerType;
5
+ activeColor: string | null;
6
+ topPicks?: readonly string[];
7
+ }
8
+ export declare const TopPicks: ({ onChange, type, activeColor, topPicks, }: TopPicksProps) => import("react/jsx-runtime").JSX.Element | null;
9
+ export {};
@@ -0,0 +1,20 @@
1
+ import type { ExcalidrawElement } from "@excalidraw-modify/element/types";
2
+ import type { ColorPickerColor, ColorPaletteCustom } from "@excalidraw-modify/common";
3
+ export declare const getColorNameAndShadeFromColor: ({ palette, color, }: {
4
+ palette: ColorPaletteCustom;
5
+ color: string | null;
6
+ }) => {
7
+ colorName: ColorPickerColor;
8
+ shade: number | null;
9
+ } | null;
10
+ export declare const colorPickerHotkeyBindings: string[];
11
+ export declare const isCustomColor: ({ color, palette, }: {
12
+ color: string;
13
+ palette: ColorPaletteCustom;
14
+ }) => boolean;
15
+ export declare const getMostUsedCustomColors: (elements: readonly ExcalidrawElement[], type: "elementBackground" | "elementStroke", palette: ColorPaletteCustom) => string[];
16
+ export type ActiveColorPickerSectionAtomType = "custom" | "baseColors" | "shades" | "hex" | null;
17
+ export declare const activeColorPickerSectionAtom: import("jotai/vanilla/atom").PrimitiveAtom<ActiveColorPickerSectionAtomType> & {
18
+ init: ActiveColorPickerSectionAtomType;
19
+ };
20
+ export type ColorPickerType = "canvasBackground" | "elementBackground" | "elementStroke";
@@ -0,0 +1,20 @@
1
+ import type { ColorPaletteCustom } from "@excalidraw-modify/common";
2
+ import type { ActiveColorPickerSectionAtomType } from "./colorPickerUtils";
3
+ interface ColorPickerKeyNavHandlerProps {
4
+ event: React.KeyboardEvent;
5
+ activeColorPickerSection: ActiveColorPickerSectionAtomType;
6
+ palette: ColorPaletteCustom;
7
+ color: string | null;
8
+ onChange: (color: string) => void;
9
+ customColors: string[];
10
+ setActiveColorPickerSection: (update: React.SetStateAction<ActiveColorPickerSectionAtomType>) => void;
11
+ updateData: (formData?: any) => void;
12
+ activeShade: number;
13
+ onEyeDropperToggle: (force?: boolean) => void;
14
+ onEscape: (event: React.KeyboardEvent | KeyboardEvent) => void;
15
+ }
16
+ /**
17
+ * @returns true if the event was handled
18
+ */
19
+ export declare const colorPickerKeyNavHandler: ({ event, activeColorPickerSection, palette, color, onChange, customColors, setActiveColorPickerSection, updateData, activeShade, onEyeDropperToggle, onEscape, }: ColorPickerKeyNavHandlerProps) => boolean;
20
+ export {};
@@ -0,0 +1,19 @@
1
+ import * as defaultItems from "./defaultCommandPaletteItems";
2
+ import "./CommandPalette.scss";
3
+ import type { CommandPaletteItem } from "./types";
4
+ export declare const DEFAULT_CATEGORIES: {
5
+ app: string;
6
+ export: string;
7
+ tools: string;
8
+ editor: string;
9
+ elements: string;
10
+ links: string;
11
+ library: string;
12
+ };
13
+ type CommandPaletteProps = {
14
+ customCommandPaletteItems?: CommandPaletteItem[];
15
+ };
16
+ export declare const CommandPalette: ((props: CommandPaletteProps) => import("react/jsx-runtime").JSX.Element | null) & {
17
+ defaultItems: typeof defaultItems;
18
+ };
19
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { CommandPaletteItem } from "./types";
2
+ export declare const toggleTheme: CommandPaletteItem;
@@ -0,0 +1,24 @@
1
+ import type { ActionManager } from "../../actions/manager";
2
+ import type { Action } from "../../actions/types";
3
+ export type CommandPaletteItem = {
4
+ label: string;
5
+ /** additional keywords to match against
6
+ * (appended to haystack, not displayed) */
7
+ keywords?: string[];
8
+ /**
9
+ * string we should match against when searching
10
+ * (deburred name + keywords)
11
+ */
12
+ haystack?: string;
13
+ icon?: Action["icon"];
14
+ category: string;
15
+ order?: number;
16
+ predicate?: boolean | Action["predicate"];
17
+ shortcut?: string;
18
+ /** if false, command will not show while in view mode */
19
+ viewMode?: boolean;
20
+ perform: (data: {
21
+ actionManager: ActionManager;
22
+ event: React.MouseEvent | React.KeyboardEvent | KeyboardEvent;
23
+ }) => void;
24
+ };
@@ -0,0 +1,10 @@
1
+ import "./ConfirmDialog.scss";
2
+ import type { DialogProps } from "./Dialog";
3
+ interface Props extends Omit<DialogProps, "onCloseRequest"> {
4
+ onConfirm: () => void;
5
+ onCancel: () => void;
6
+ confirmText?: string;
7
+ cancelText?: string;
8
+ }
9
+ declare const ConfirmDialog: (props: Props) => import("react/jsx-runtime").JSX.Element;
10
+ export default ConfirmDialog;
@@ -0,0 +1,16 @@
1
+ import React from "react";
2
+ import "./ContextMenu.scss";
3
+ import type { ActionManager } from "../actions/manager";
4
+ import type { Action } from "../actions/types";
5
+ export type ContextMenuItem = typeof CONTEXT_MENU_SEPARATOR | Action;
6
+ export type ContextMenuItems = (ContextMenuItem | false | null | undefined)[];
7
+ type ContextMenuProps = {
8
+ actionManager: ActionManager;
9
+ items: ContextMenuItems;
10
+ top: number;
11
+ left: number;
12
+ onClose: (callback?: () => void) => void;
13
+ };
14
+ export declare const CONTEXT_MENU_SEPARATOR = "separator";
15
+ export declare const ContextMenu: React.MemoExoticComponent<({ actionManager, items, top, left, onClose }: ContextMenuProps) => import("react/jsx-runtime").JSX.Element>;
16
+ export {};
@@ -0,0 +1,23 @@
1
+ import type { ConvertibleTypes, ExcalidrawElement, ExcalidrawTextContainer, ExcalidrawTextElementWithContainer } from "@excalidraw-modify/element/types";
2
+ import type { Scene } from "@excalidraw-modify/element";
3
+ import "./ConvertElementTypePopup.scss";
4
+ import type App from "./App";
5
+ export declare const convertElementTypePopupAtom: import("jotai/vanilla/atom").PrimitiveAtom<{
6
+ type: "panel";
7
+ } | null> & {
8
+ init: {
9
+ type: "panel";
10
+ } | null;
11
+ };
12
+ declare const ConvertElementTypePopup: ({ app }: {
13
+ app: App;
14
+ }) => import("react/jsx-runtime").JSX.Element;
15
+ export declare const adjustBoundTextSize: (container: ExcalidrawTextContainer, boundText: ExcalidrawTextElementWithContainer, scene: Scene) => void;
16
+ type ConversionType = "generic" | "linear" | null;
17
+ export declare const convertElementTypes: (app: App, { conversionType, nextType, direction, }: {
18
+ conversionType: ConversionType;
19
+ nextType?: ConvertibleTypes;
20
+ direction?: "left" | "right";
21
+ }) => boolean;
22
+ export declare const getConversionTypeFromElements: (elements: ExcalidrawElement[]) => ConversionType;
23
+ export default ConvertElementTypePopup;
@@ -0,0 +1,7 @@
1
+ import type { Theme } from "@excalidraw-modify/element/types";
2
+ import "./ToolIcon.scss";
3
+ export declare const DarkModeToggle: (props: {
4
+ value: Theme;
5
+ onChange: (value: Theme) => void;
6
+ title?: string;
7
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,27 @@
1
+ import type { MarkOptional } from "@excalidraw-modify/common/utility-types";
2
+ import "../components/dropdownMenu/DropdownMenu.scss";
3
+ import type { SidebarProps, SidebarTriggerProps } from "./Sidebar/common";
4
+ export declare const DefaultSidebar: import("react").FC<Omit<MarkOptional<Omit<{
5
+ name: import("../types").SidebarName;
6
+ children: React.ReactNode;
7
+ onStateChange?: (state: import("../types").AppState["openSidebar"]) => void;
8
+ onDock?: (docked: boolean) => void;
9
+ docked?: boolean;
10
+ className?: string;
11
+ __fallback?: boolean;
12
+ }, "name">, "children">, "onDock"> & {
13
+ /** pass `false` to disable docking */
14
+ onDock?: SidebarProps["onDock"] | false;
15
+ } & {
16
+ __fallback?: boolean;
17
+ }> & {
18
+ Trigger: import("react").FC<Omit<SidebarTriggerProps, "name"> & import("react").HTMLAttributes<HTMLDivElement> & {
19
+ __fallback?: boolean;
20
+ }>;
21
+ TabTriggers: {
22
+ ({ children }: {
23
+ children: React.ReactNode;
24
+ }): import("react/jsx-runtime").JSX.Element;
25
+ displayName: string;
26
+ };
27
+ };
@@ -0,0 +1,4 @@
1
+ import type { GenerateDiagramToCode } from "../../types";
2
+ export declare const DiagramToCodePlugin: (props: {
3
+ generate: GenerateDiagramToCode;
4
+ }) => null;
@@ -0,0 +1,13 @@
1
+ import React from "react";
2
+ import "./Dialog.scss";
3
+ export type DialogSize = number | "small" | "regular" | "wide" | undefined;
4
+ export interface DialogProps {
5
+ children: React.ReactNode;
6
+ className?: string;
7
+ size?: DialogSize;
8
+ onCloseRequest(): void;
9
+ title: React.ReactNode | false;
10
+ autofocus?: boolean;
11
+ closeOnClickOutside?: boolean;
12
+ }
13
+ export declare const Dialog: (props: DialogProps) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ import "./DialogActionButton.scss";
2
+ import type { ReactNode } from "react";
3
+ interface DialogActionButtonProps {
4
+ label: string;
5
+ children?: ReactNode;
6
+ actionType?: "primary" | "danger";
7
+ isLoading?: boolean;
8
+ }
9
+ declare const DialogActionButton: ({ label, onClick, className, children, actionType, type, isLoading, ...rest }: DialogActionButtonProps & React.ButtonHTMLAttributes<HTMLButtonElement>) => import("react/jsx-runtime").JSX.Element;
10
+ export default DialogActionButton;
@@ -0,0 +1,7 @@
1
+ import type { ElementsMap, NonDeletedExcalidrawElement } from "@excalidraw-modify/element/types";
2
+ import "./ElementCanvasButtons.scss";
3
+ export declare const ElementCanvasButtons: ({ children, element, elementsMap, }: {
4
+ children: React.ReactNode;
5
+ element: NonDeletedExcalidrawElement;
6
+ elementsMap: ElementsMap;
7
+ }) => import("react/jsx-runtime").JSX.Element | null;
@@ -0,0 +1,12 @@
1
+ import type { ExcalidrawElement } from "@excalidraw-modify/element/types";
2
+ import type { Scene } from "@excalidraw-modify/element";
3
+ import "./ElementLinkDialog.scss";
4
+ import type { AppProps, UIAppState } from "../types";
5
+ declare const ElementLinkDialog: ({ sourceElementId, onClose, appState, scene, generateLinkForSelection, }: {
6
+ sourceElementId: ExcalidrawElement["id"];
7
+ appState: UIAppState;
8
+ scene: Scene;
9
+ onClose?: () => void;
10
+ generateLinkForSelection: AppProps["generateLinkForSelection"];
11
+ }) => import("react/jsx-runtime").JSX.Element;
12
+ export default ElementLinkDialog;
@@ -0,0 +1,3 @@
1
+ export declare const Ellipsify: ({ children, ...rest }: {
2
+ children: React.ReactNode;
3
+ } & React.HTMLAttributes<HTMLSpanElement>) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ export declare const ErrorDialog: ({ children, onClose, }: {
3
+ children?: React.ReactNode;
4
+ onClose?: () => void;
5
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,15 @@
1
+ import "./ExcalidrawLogo.scss";
2
+ type LogoSize = "xs" | "small" | "normal" | "large" | "custom" | "mobile";
3
+ interface LogoProps {
4
+ size?: LogoSize;
5
+ withText?: boolean;
6
+ style?: React.CSSProperties;
7
+ /**
8
+ * If true, the logo will not be wrapped in a Link component.
9
+ * The link prop will be ignored as well.
10
+ * It will merely be a plain div.
11
+ */
12
+ isNotLink?: boolean;
13
+ }
14
+ export declare const ExcalidrawLogo: ({ style, size, withText, }: LogoProps) => import("react/jsx-runtime").JSX.Element;
15
+ export {};
@@ -0,0 +1,27 @@
1
+ import type { ExcalidrawElement } from "@excalidraw-modify/element/types";
2
+ import "./EyeDropper.scss";
3
+ import type { ColorPickerType } from "./ColorPicker/colorPickerUtils";
4
+ export type EyeDropperProperties = {
5
+ keepOpenOnAlt: boolean;
6
+ swapPreviewOnAlt?: boolean;
7
+ /** called when user picks color (on pointerup) */
8
+ onSelect: (color: string, event: PointerEvent) => void;
9
+ /**
10
+ * property of selected elements to update live when alt-dragging.
11
+ * Supply `null` if not applicable (e.g. updating the canvas bg instead of
12
+ * elements)
13
+ **/
14
+ colorPickerType: ColorPickerType;
15
+ };
16
+ export declare const activeEyeDropperAtom: import("jotai/vanilla/atom").PrimitiveAtom<EyeDropperProperties | null> & {
17
+ init: EyeDropperProperties | null;
18
+ };
19
+ export declare const EyeDropper: React.FC<{
20
+ onCancel: () => void;
21
+ onSelect: EyeDropperProperties["onSelect"];
22
+ /** called when color changes, on pointerdown for preview */
23
+ onChange: (type: ColorPickerType, color: string, selectedElements: ExcalidrawElement[], event: {
24
+ altKey: boolean;
25
+ }) => void;
26
+ colorPickerType: EyeDropperProperties["colorPickerType"];
27
+ }>;
@@ -0,0 +1,19 @@
1
+ import React from "react";
2
+ import "./FilledButton.scss";
3
+ export type ButtonVariant = "filled" | "outlined" | "icon";
4
+ export type ButtonColor = "primary" | "danger" | "warning" | "muted" | "success";
5
+ export type ButtonSize = "medium" | "large";
6
+ export type FilledButtonProps = {
7
+ label?: string;
8
+ children?: React.ReactNode;
9
+ onClick?: (event: React.MouseEvent) => void;
10
+ status?: null | "loading" | "success";
11
+ variant?: ButtonVariant;
12
+ color?: ButtonColor;
13
+ size?: ButtonSize;
14
+ className?: string;
15
+ fullWidth?: boolean;
16
+ icon?: React.ReactNode;
17
+ disabled?: boolean;
18
+ };
19
+ export declare const FilledButton: React.ForwardRefExoticComponent<FilledButtonProps & React.RefAttributes<HTMLButtonElement>>;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import "./FixedSideContainer.scss";
3
+ type FixedSideContainerProps = {
4
+ children: React.ReactNode;
5
+ side: "top" | "left" | "right";
6
+ className?: string;
7
+ };
8
+ export declare const FixedSideContainer: ({ children, side, className, }: FixedSideContainerProps) => import("react/jsx-runtime").JSX.Element;
9
+ export {};
@@ -0,0 +1,10 @@
1
+ import "./FollowMode.scss";
2
+ import type { UserToFollow } from "../../types";
3
+ interface FollowModeProps {
4
+ width: number;
5
+ height: number;
6
+ userToFollow: UserToFollow;
7
+ onDisconnect: () => void;
8
+ }
9
+ declare const FollowMode: ({ height, width, userToFollow, onDisconnect, }: FollowModeProps) => import("react/jsx-runtime").JSX.Element;
10
+ export default FollowMode;
@@ -0,0 +1,22 @@
1
+ import React from "react";
2
+ import type { FontFamilyValues } from "@excalidraw-modify/element/types";
3
+ import "./FontPicker.scss";
4
+ export declare const DEFAULT_FONTS: {
5
+ value: number;
6
+ icon: import("react/jsx-runtime").JSX.Element;
7
+ text: string;
8
+ testId: string;
9
+ }[];
10
+ export declare const isDefaultFont: (fontFamily: number | null) => boolean;
11
+ interface FontPickerProps {
12
+ isOpened: boolean;
13
+ selectedFontFamily: FontFamilyValues | null;
14
+ hoveredFontFamily: FontFamilyValues | null;
15
+ onSelect: (fontFamily: FontFamilyValues) => void;
16
+ onHover: (fontFamily: FontFamilyValues) => void;
17
+ onLeave: () => void;
18
+ onPopupChange: (open: boolean) => void;
19
+ compactMode?: boolean;
20
+ }
21
+ export declare const FontPicker: React.MemoExoticComponent<({ isOpened, selectedFontFamily, hoveredFontFamily, onSelect, onHover, onLeave, onPopupChange, compactMode, }: FontPickerProps) => import("react/jsx-runtime").JSX.Element>;
22
+ export {};
@@ -0,0 +1,26 @@
1
+ import React from "react";
2
+ import { type FontFamilyValues } from "@excalidraw-modify/element/types";
3
+ import type { ValueOf } from "@excalidraw-modify/common/utility-types";
4
+ import { DropDownMenuItemBadgeType } from "../dropdownMenu/DropdownMenuItem";
5
+ import type { JSX } from "react";
6
+ export interface FontDescriptor {
7
+ value: number;
8
+ icon: JSX.Element;
9
+ text: string;
10
+ deprecated?: true;
11
+ badge?: {
12
+ type: ValueOf<typeof DropDownMenuItemBadgeType>;
13
+ placeholder: string;
14
+ };
15
+ }
16
+ interface FontPickerListProps {
17
+ selectedFontFamily: FontFamilyValues | null;
18
+ hoveredFontFamily: FontFamilyValues | null;
19
+ onSelect: (value: number) => void;
20
+ onHover: (value: number) => void;
21
+ onLeave: () => void;
22
+ onOpen: () => void;
23
+ onClose: () => void;
24
+ }
25
+ export declare const FontPickerList: React.MemoExoticComponent<({ selectedFontFamily, hoveredFontFamily, onSelect, onHover, onLeave, onOpen, onClose, }: FontPickerListProps) => import("react/jsx-runtime").JSX.Element>;
26
+ export {};
@@ -0,0 +1,8 @@
1
+ import type { FontFamilyValues } from "@excalidraw-modify/element/types";
2
+ interface FontPickerTriggerProps {
3
+ selectedFontFamily: FontFamilyValues | null;
4
+ isOpened?: boolean;
5
+ compactMode?: boolean;
6
+ }
7
+ export declare const FontPickerTrigger: ({ selectedFontFamily, isOpened, compactMode, }: FontPickerTriggerProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,13 @@
1
+ import type { Node } from "@excalidraw-modify/common";
2
+ import { type FontDescriptor } from "./FontPickerList";
3
+ interface FontPickerKeyNavHandlerProps {
4
+ event: React.KeyboardEvent<HTMLDivElement>;
5
+ inputRef: React.RefObject<HTMLInputElement | null>;
6
+ hoveredFont: Node<FontDescriptor> | undefined;
7
+ filteredFonts: Node<FontDescriptor>[];
8
+ onClose: () => void;
9
+ onSelect: (value: number) => void;
10
+ onHover: (value: number) => void;
11
+ }
12
+ export declare const fontPickerKeyHandler: ({ event, inputRef, hoveredFont, filteredFonts, onClose, onSelect, onHover, }: FontPickerKeyNavHandlerProps) => true | undefined;
13
+ export {};
@@ -0,0 +1,10 @@
1
+ import "./ToolIcon.scss";
2
+ type LockIconProps = {
3
+ title?: string;
4
+ name?: string;
5
+ checked: boolean;
6
+ onChange?(): void;
7
+ isMobile?: boolean;
8
+ };
9
+ export declare const HandButton: (props: LockIconProps) => import("react/jsx-runtime").JSX.Element;
10
+ export {};
@@ -0,0 +1,7 @@
1
+ type HelpButtonProps = {
2
+ name?: string;
3
+ id?: string;
4
+ onClick?(): void;
5
+ };
6
+ export declare const HelpButton: (props: HelpButtonProps) => import("react/jsx-runtime").JSX.Element;
7
+ export {};
@@ -0,0 +1,4 @@
1
+ import "./HelpDialog.scss";
2
+ export declare const HelpDialog: ({ onClose }: {
3
+ onClose?: () => void;
4
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,11 @@
1
+ import type { EditorInterface } from "@excalidraw-modify/common";
2
+ import "./HintViewer.scss";
3
+ import type { AppClassProperties, UIAppState } from "../types";
4
+ interface HintViewerProps {
5
+ appState: UIAppState;
6
+ isMobile: boolean;
7
+ editorInterface: EditorInterface;
8
+ app: AppClassProperties;
9
+ }
10
+ export declare const HintViewer: ({ appState, isMobile, editorInterface, app, }: HintViewerProps) => import("react/jsx-runtime").JSX.Element | null;
11
+ export {};
@@ -0,0 +1,15 @@
1
+ import "./IconPicker.scss";
2
+ import type { JSX } from "react";
3
+ export declare function IconPicker<T>({ value, label, options, onChange, group, numberOfOptionsToAlwaysShow, }: {
4
+ label: string;
5
+ value: T;
6
+ options: readonly {
7
+ value: T;
8
+ text: string;
9
+ icon: JSX.Element;
10
+ keyBinding: string | null;
11
+ }[];
12
+ onChange: (value: T) => void;
13
+ numberOfOptionsToAlwaysShow?: number;
14
+ group?: string;
15
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,14 @@
1
+ import type { NonDeletedExcalidrawElement } from "@excalidraw-modify/element/types";
2
+ import "./ImageExportDialog.scss";
3
+ import type { ActionManager } from "../actions/manager";
4
+ import type { AppClassProperties, BinaryFiles, UIAppState } from "../types";
5
+ export declare const ErrorCanvasPreview: () => import("react/jsx-runtime").JSX.Element;
6
+ export declare const ImageExportDialog: ({ elements, appState, files, actionManager, onExportImage, onCloseRequest, name, }: {
7
+ appState: UIAppState;
8
+ elements: readonly NonDeletedExcalidrawElement[];
9
+ files: BinaryFiles;
10
+ actionManager: ActionManager;
11
+ onExportImage: AppClassProperties["onExportImage"];
12
+ onCloseRequest: () => void;
13
+ name: string;
14
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ import type { Theme } from "@excalidraw-modify/element/types";
3
+ import type { Language } from "../i18n";
4
+ interface Props {
5
+ langCode: Language["code"];
6
+ children: React.ReactElement;
7
+ theme?: Theme;
8
+ }
9
+ export declare const InitializeApp: (props: Props) => import("react/jsx-runtime").JSX.Element;
10
+ export {};
@@ -0,0 +1,5 @@
1
+ export declare const InlineIcon: ({ className, icon, size, }: {
2
+ className?: string;
3
+ icon: React.ReactNode;
4
+ size?: string;
5
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ import "./Island.scss";
3
+ type IslandProps = {
4
+ children: React.ReactNode;
5
+ padding?: number;
6
+ className?: string | boolean;
7
+ style?: object;
8
+ };
9
+ export declare const Island: React.ForwardRefExoticComponent<IslandProps & React.RefAttributes<HTMLDivElement>>;
10
+ export {};
@@ -0,0 +1,15 @@
1
+ import React from "react";
2
+ import type { NonDeletedExcalidrawElement } from "@excalidraw-modify/element/types";
3
+ import "./ExportDialog.scss";
4
+ import type { ActionManager } from "../actions/manager";
5
+ import type { ExportOpts, BinaryFiles, UIAppState } from "../types";
6
+ export type ExportCB = (elements: readonly NonDeletedExcalidrawElement[], scale?: number) => void;
7
+ export declare const JSONExportDialog: ({ elements, appState, files, actionManager, exportOpts, canvas, setAppState, }: {
8
+ elements: readonly NonDeletedExcalidrawElement[];
9
+ appState: UIAppState;
10
+ files: BinaryFiles;
11
+ actionManager: ActionManager;
12
+ exportOpts: ExportOpts;
13
+ canvas: HTMLCanvasElement;
14
+ setAppState: React.Component<any, UIAppState>["setState"];
15
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,10 @@
1
+ import "./ToolIcon.scss";
2
+ type LaserPointerIconProps = {
3
+ title?: string;
4
+ name?: string;
5
+ checked: boolean;
6
+ onChange?(): void;
7
+ isMobile?: boolean;
8
+ };
9
+ export declare const LaserPointerButton: (props: LaserPointerIconProps) => import("react/jsx-runtime").JSX.Element;
10
+ export {};