@excalidraw/common 0.18.0-dda3affcb-8fc71066d → 0.18.0-e9c856d

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 (320) hide show
  1. package/dist/dev/index.js +1698 -328
  2. package/dist/dev/index.js.map +4 -4
  3. package/dist/prod/index.js +3 -3
  4. package/dist/types/common/debug.d.ts +21 -0
  5. package/dist/types/common/src/appEventBus.d.ts +27 -0
  6. package/dist/types/common/src/bounds.d.ts +10 -0
  7. package/dist/types/common/src/colors.d.ts +59 -39
  8. package/dist/types/common/src/constants.d.ts +47 -34
  9. package/dist/types/common/src/editorInterface.d.ts +34 -0
  10. package/dist/types/common/src/font-metadata.d.ts +1 -3
  11. package/dist/types/common/src/index.d.ts +5 -0
  12. package/dist/types/common/src/keys.d.ts +1 -1
  13. package/dist/types/common/src/points.d.ts +1 -1
  14. package/dist/types/common/src/utility-types.d.ts +0 -1
  15. package/dist/types/common/src/utils.d.ts +48 -78
  16. package/dist/types/common/src/versionedSnapshotStore.d.ts +17 -0
  17. package/dist/types/element/src/Scene.d.ts +12 -8
  18. package/dist/types/element/src/align.d.ts +2 -2
  19. package/dist/types/element/src/arrowheads.d.ts +3 -0
  20. package/dist/types/element/src/arrows/focus.d.ts +27 -0
  21. package/dist/types/element/src/arrows/helpers.d.ts +5 -0
  22. package/dist/types/element/src/binding.d.ts +72 -51
  23. package/dist/types/element/src/bounds.d.ts +26 -19
  24. package/dist/types/element/src/collision.d.ts +7 -2
  25. package/dist/types/element/src/comparisons.d.ts +8 -7
  26. package/dist/types/element/src/delta.d.ts +4 -5
  27. package/dist/types/element/src/distribute.d.ts +3 -2
  28. package/dist/types/element/src/dragElements.d.ts +3 -3
  29. package/dist/types/element/src/duplicate.d.ts +7 -6
  30. package/dist/types/element/src/elbowArrow.d.ts +2 -0
  31. package/dist/types/element/src/embeddable.d.ts +2 -2
  32. package/dist/types/element/src/flowchart.d.ts +7 -7
  33. package/dist/types/element/src/fractionalIndex.d.ts +4 -4
  34. package/dist/types/element/src/frame.d.ts +16 -11
  35. package/dist/types/element/src/groups.d.ts +9 -9
  36. package/dist/types/element/src/heading.d.ts +2 -1
  37. package/dist/types/element/src/image.d.ts +1 -11
  38. package/dist/types/element/src/index.d.ts +6 -4
  39. package/dist/types/element/src/linearElementEditor.d.ts +31 -30
  40. package/dist/types/element/src/mutateElement.d.ts +5 -1
  41. package/dist/types/element/src/newElement.d.ts +7 -6
  42. package/dist/types/element/src/positionElementsOnGrid.d.ts +2 -0
  43. package/dist/types/element/src/renderElement.d.ts +4 -10
  44. package/dist/types/element/src/resizeElements.d.ts +12 -12
  45. package/dist/types/element/src/resizeTest.d.ts +6 -5
  46. package/dist/types/element/src/selection.d.ts +14 -14
  47. package/dist/types/element/src/shape.d.ts +9 -8
  48. package/dist/types/element/src/store.d.ts +5 -0
  49. package/dist/types/element/src/textElement.d.ts +9 -9
  50. package/dist/types/element/src/textMeasurements.d.ts +1 -3
  51. package/dist/types/element/src/textWrapping.d.ts +26 -0
  52. package/dist/types/{excalidraw/data → element/src}/transform.d.ts +3 -3
  53. package/dist/types/element/src/transformHandles.d.ts +8 -27
  54. package/dist/types/element/src/typeChecks.d.ts +29 -31
  55. package/dist/types/element/src/types.d.ts +20 -14
  56. package/dist/types/element/src/utils.d.ts +9 -4
  57. package/dist/types/element/src/zindex.d.ts +7 -1
  58. package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +176 -210
  59. package/dist/types/excalidraw/actions/actionAlign.d.ts +12 -13
  60. package/dist/types/excalidraw/actions/actionBoundText.d.ts +102 -125
  61. package/dist/types/excalidraw/actions/actionCanvas.d.ts +406 -1576
  62. package/dist/types/excalidraw/actions/actionClipboard.d.ts +129 -893
  63. package/dist/types/excalidraw/actions/actionCropEditor.d.ts +49 -61
  64. package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +164 -202
  65. package/dist/types/excalidraw/actions/actionDeselect.d.ts +161 -0
  66. package/dist/types/excalidraw/actions/actionDistribute.d.ts +4 -6
  67. package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +3 -4
  68. package/dist/types/excalidraw/actions/actionElementLink.d.ts +56 -74
  69. package/dist/types/excalidraw/actions/actionElementLock.d.ts +101 -124
  70. package/dist/types/excalidraw/actions/actionExport.d.ts +180 -1408
  71. package/dist/types/excalidraw/actions/actionFinalize.d.ts +10 -394
  72. package/dist/types/excalidraw/actions/actionFlip.d.ts +2 -3
  73. package/dist/types/excalidraw/actions/actionFrame.d.ts +277 -534
  74. package/dist/types/excalidraw/actions/actionGroup.d.ts +112 -143
  75. package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +187 -236
  76. package/dist/types/excalidraw/actions/actionLink.d.ts +62 -74
  77. package/dist/types/excalidraw/actions/actionMenu.d.ts +51 -435
  78. package/dist/types/excalidraw/actions/actionNavigate.d.ts +18 -359
  79. package/dist/types/excalidraw/actions/actionProperties.d.ts +181 -2525
  80. package/dist/types/excalidraw/actions/actionSelectAll.d.ts +56 -72
  81. package/dist/types/excalidraw/actions/actionStyles.d.ts +49 -60
  82. package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +4 -4
  83. package/dist/types/excalidraw/actions/actionToggleArrowBinding.d.ts +174 -0
  84. package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +64 -77
  85. package/dist/types/excalidraw/actions/actionToggleMidpointSnapping.d.ts +174 -0
  86. package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +63 -75
  87. package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +52 -71
  88. package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +2 -2
  89. package/dist/types/excalidraw/actions/actionToggleStats.d.ts +62 -74
  90. package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +63 -75
  91. package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +63 -75
  92. package/dist/types/excalidraw/actions/actionZindex.d.ts +8 -9
  93. package/dist/types/excalidraw/actions/index.d.ts +5 -3
  94. package/dist/types/excalidraw/actions/register.d.ts +2 -2
  95. package/dist/types/excalidraw/actions/shortcuts.d.ts +1 -1
  96. package/dist/types/excalidraw/actions/types.d.ts +7 -7
  97. package/dist/types/excalidraw/{animated-trail.d.ts → animatedTrail.d.ts} +4 -3
  98. package/dist/types/excalidraw/appState.d.ts +45 -36
  99. package/dist/types/excalidraw/charts/charts.bar.d.ts +2 -0
  100. package/dist/types/excalidraw/charts/charts.constants.d.ts +48 -0
  101. package/dist/types/excalidraw/charts/charts.helpers.d.ts +32 -0
  102. package/dist/types/excalidraw/charts/charts.line.d.ts +2 -0
  103. package/dist/types/excalidraw/charts/charts.parse.d.ts +10 -0
  104. package/dist/types/excalidraw/charts/charts.radar.d.ts +2 -0
  105. package/dist/types/excalidraw/charts/charts.types.d.ts +18 -0
  106. package/dist/types/excalidraw/charts/index.d.ts +7 -0
  107. package/dist/types/excalidraw/clipboard.d.ts +59 -21
  108. package/dist/types/excalidraw/components/Actions.d.ts +33 -11
  109. package/dist/types/excalidraw/components/ActiveConfirmDialog.d.ts +1 -1
  110. package/dist/types/excalidraw/components/App.d.ts +200 -109
  111. package/dist/types/excalidraw/components/App.flowchart.d.ts +19 -0
  112. package/dist/types/excalidraw/components/AppStateObserver.d.ts +37 -0
  113. package/dist/types/excalidraw/components/Card.d.ts +1 -3
  114. package/dist/types/excalidraw/components/ColorPicker/ColorInput.d.ts +2 -4
  115. package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +2 -3
  116. package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +2 -0
  117. package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +2 -1
  118. package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +2 -1
  119. package/dist/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +1 -2
  120. package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +0 -1
  121. package/dist/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +1 -0
  122. package/dist/types/excalidraw/components/CommandPalette/defaultCommandPaletteItems.d.ts +1 -2
  123. package/dist/types/excalidraw/components/CommandPalette/types.d.ts +2 -4
  124. package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +4 -4
  125. package/dist/types/excalidraw/components/CursorHint.d.ts +46 -0
  126. package/dist/types/excalidraw/components/DarkModeToggle.d.ts +1 -1
  127. package/dist/types/excalidraw/components/DefaultSidebar.d.ts +9 -13
  128. package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +1 -1
  129. package/dist/types/excalidraw/components/Ellipsify.d.ts +1 -2
  130. package/dist/types/excalidraw/components/ErrorDialog.d.ts +1 -1
  131. package/dist/types/excalidraw/components/EyeDropper.d.ts +1 -2
  132. package/dist/types/excalidraw/components/FilledButton.d.ts +2 -1
  133. package/dist/types/excalidraw/components/FontPicker/FontPicker.d.ts +2 -1
  134. package/dist/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +3 -1
  135. package/dist/types/excalidraw/components/FontPicker/keyboardNavHandlers.d.ts +0 -1
  136. package/dist/types/excalidraw/components/HelpDialog.d.ts +1 -1
  137. package/dist/types/excalidraw/components/HintViewer.d.ts +4 -3
  138. package/dist/types/excalidraw/components/{ToolButton.d.ts → IconButton.d.ts} +16 -19
  139. package/dist/types/excalidraw/components/IconPicker.d.ts +14 -9
  140. package/dist/types/excalidraw/components/InlineIcon.d.ts +3 -1
  141. package/dist/types/excalidraw/components/Island.d.ts +7 -0
  142. package/dist/types/excalidraw/components/LaserPointerButton.d.ts +2 -4
  143. package/dist/types/excalidraw/components/LayerUI.d.ts +2 -2
  144. package/dist/types/excalidraw/components/LibraryMenu.d.ts +1 -1
  145. package/dist/types/excalidraw/components/LibraryMenuControlButtons.d.ts +1 -1
  146. package/dist/types/excalidraw/components/LibraryMenuHeaderContent.d.ts +1 -2
  147. package/dist/types/excalidraw/components/LibraryMenuSection.d.ts +1 -1
  148. package/dist/types/excalidraw/components/LibraryUnit.d.ts +2 -3
  149. package/dist/types/excalidraw/components/LoadingMessage.d.ts +0 -1
  150. package/dist/types/excalidraw/components/LockButton.d.ts +2 -4
  151. package/dist/types/excalidraw/components/MagicButton.d.ts +0 -2
  152. package/dist/types/excalidraw/components/MobileMenu.d.ts +3 -6
  153. package/dist/types/excalidraw/components/MobileToolbar.d.ts +9 -0
  154. package/dist/types/excalidraw/components/Modal.d.ts +0 -1
  155. package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirm.d.ts +1 -1
  156. package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirmState.d.ts +1 -1
  157. package/dist/types/excalidraw/components/PasteChartDialog.d.ts +4 -5
  158. package/dist/types/excalidraw/components/PenModeButton.d.ts +2 -5
  159. package/dist/types/excalidraw/components/Popover.d.ts +2 -1
  160. package/dist/types/excalidraw/components/PropertiesPopover.d.ts +2 -1
  161. package/dist/types/excalidraw/components/{ButtonIcon.d.ts → RadioButton.d.ts} +2 -5
  162. package/dist/types/excalidraw/components/RadioGroup.d.ts +0 -1
  163. package/dist/types/excalidraw/components/RadioSelection.d.ts +4 -4
  164. package/dist/types/excalidraw/components/Range.d.ts +10 -4
  165. package/dist/types/excalidraw/components/SVGLayer.d.ts +1 -1
  166. package/dist/types/excalidraw/components/ScrollableList.d.ts +0 -1
  167. package/dist/types/excalidraw/components/SearchMenu.d.ts +1 -1
  168. package/dist/types/excalidraw/components/Sidebar/Sidebar.d.ts +16 -22
  169. package/dist/types/excalidraw/components/Sidebar/SidebarHeader.d.ts +1 -1
  170. package/dist/types/excalidraw/components/Sidebar/SidebarTab.d.ts +1 -2
  171. package/dist/types/excalidraw/components/Sidebar/SidebarTabTrigger.d.ts +1 -2
  172. package/dist/types/excalidraw/components/Sidebar/SidebarTabTriggers.d.ts +1 -2
  173. package/dist/types/excalidraw/components/Sidebar/SidebarTabs.d.ts +1 -2
  174. package/dist/types/excalidraw/components/Spinner.d.ts +4 -4
  175. package/dist/types/excalidraw/components/Stats/Angle.d.ts +2 -2
  176. package/dist/types/excalidraw/components/Stats/CanvasGrid.d.ts +0 -1
  177. package/dist/types/excalidraw/components/Stats/Collapsible.d.ts +0 -1
  178. package/dist/types/excalidraw/components/Stats/Dimension.d.ts +2 -2
  179. package/dist/types/excalidraw/components/Stats/DragInput.d.ts +2 -3
  180. package/dist/types/excalidraw/components/Stats/MultiAngle.d.ts +2 -2
  181. package/dist/types/excalidraw/components/Stats/MultiDimension.d.ts +2 -2
  182. package/dist/types/excalidraw/components/Stats/MultiPosition.d.ts +2 -2
  183. package/dist/types/excalidraw/components/Stats/Position.d.ts +3 -3
  184. package/dist/types/excalidraw/components/Stats/index.d.ts +7 -8
  185. package/dist/types/excalidraw/components/Stats/utils.d.ts +1 -1
  186. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatHistoryMenu.d.ts +15 -0
  187. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatInterface.d.ts +23 -0
  188. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatMessage.d.ts +14 -0
  189. package/dist/types/excalidraw/components/TTDDialog/Chat/TTDChatPanel.d.ts +27 -0
  190. package/dist/types/excalidraw/components/TTDDialog/Chat/index.d.ts +3 -0
  191. package/dist/types/excalidraw/components/TTDDialog/Chat/useChatAgent.d.ts +8 -0
  192. package/dist/types/excalidraw/components/TTDDialog/CodeMirrorEditor.d.ts +11 -0
  193. package/dist/types/excalidraw/components/TTDDialog/MermaidToExcalidraw.d.ts +3 -2
  194. package/dist/types/excalidraw/components/TTDDialog/TTDContext.d.ts +13 -0
  195. package/dist/types/excalidraw/components/TTDDialog/TTDDialog.d.ts +12 -29
  196. package/dist/types/excalidraw/components/TTDDialog/TTDDialogInput.d.ts +3 -3
  197. package/dist/types/excalidraw/components/TTDDialog/TTDDialogOutput.d.ts +5 -2
  198. package/dist/types/excalidraw/components/TTDDialog/TTDDialogPanel.d.ts +13 -9
  199. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTab.d.ts +1 -2
  200. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTrigger.d.ts +1 -2
  201. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTriggers.d.ts +1 -2
  202. package/dist/types/excalidraw/components/TTDDialog/TTDPreviewPanel.d.ts +9 -0
  203. package/dist/types/excalidraw/components/TTDDialog/TTDWelcomeMessage.d.ts +1 -0
  204. package/dist/types/excalidraw/components/TTDDialog/TextToDiagram.d.ts +9 -0
  205. package/dist/types/excalidraw/components/TTDDialog/common.d.ts +16 -16
  206. package/dist/types/excalidraw/components/TTDDialog/hooks/useChatManagement.d.ts +13 -0
  207. package/dist/types/excalidraw/components/TTDDialog/hooks/useMermaidRenderer.d.ts +14 -0
  208. package/dist/types/excalidraw/components/TTDDialog/hooks/useTextGeneration.d.ts +7 -0
  209. package/dist/types/excalidraw/components/TTDDialog/mermaid-lang-lite.d.ts +2 -0
  210. package/dist/types/excalidraw/components/TTDDialog/types.d.ts +95 -0
  211. package/dist/types/excalidraw/components/TTDDialog/useTTDChatStorage.d.ts +22 -0
  212. package/dist/types/excalidraw/components/TTDDialog/utils/chat.d.ts +10 -0
  213. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidAutoFix.d.ts +1 -0
  214. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidError.d.ts +10 -0
  215. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidValidation.d.ts +1 -0
  216. package/dist/types/excalidraw/components/TextField.d.ts +1 -0
  217. package/dist/types/excalidraw/components/Toast.d.ts +11 -7
  218. package/dist/types/excalidraw/components/ToolPopover.d.ts +22 -0
  219. package/dist/types/excalidraw/components/Toolbar.d.ts +11 -0
  220. package/dist/types/excalidraw/components/Tools.d.ts +128 -0
  221. package/dist/types/excalidraw/components/Trans.d.ts +2 -2
  222. package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +8 -4
  223. package/dist/types/excalidraw/components/canvases/NewElementCanvas.d.ts +1 -0
  224. package/dist/types/excalidraw/components/canvases/StaticCanvas.d.ts +1 -1
  225. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +47 -35
  226. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +7 -5
  227. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +3 -3
  228. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +13 -22
  229. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCheckbox.d.ts +5 -0
  230. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +5 -4
  231. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +2 -2
  232. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.d.ts +2 -2
  233. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemLink.d.ts +6 -6
  234. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSub.d.ts +23 -0
  235. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubContent.d.ts +8 -0
  236. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuSubTrigger.d.ts +12 -0
  237. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuTrigger.d.ts +3 -4
  238. package/dist/types/excalidraw/components/dropdownMenu/common.d.ts +2 -2
  239. package/dist/types/excalidraw/components/dropdownMenu/dropdownMenuUtils.d.ts +2 -0
  240. package/dist/types/excalidraw/components/hoc/withInternalFallback.d.ts +1 -1
  241. package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +3 -3
  242. package/dist/types/excalidraw/components/icons.d.ts +51 -21
  243. package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +24 -3
  244. package/dist/types/excalidraw/components/main-menu/MainMenu.d.ts +39 -35
  245. package/dist/types/excalidraw/components/shapeActionPredicates.d.ts +36 -0
  246. package/dist/types/excalidraw/data/blob.d.ts +331 -12
  247. package/dist/types/excalidraw/data/encode.d.ts +4 -4
  248. package/dist/types/excalidraw/data/encryption.d.ts +5 -5
  249. package/dist/types/excalidraw/data/filesystem.d.ts +5 -7
  250. package/dist/types/excalidraw/data/index.d.ts +8 -9
  251. package/dist/types/excalidraw/data/json.d.ts +171 -3
  252. package/dist/types/excalidraw/data/library.d.ts +25 -10
  253. package/dist/types/excalidraw/data/resave.d.ts +7 -2
  254. package/dist/types/excalidraw/data/restore.d.ts +25 -10
  255. package/dist/types/excalidraw/data/types.d.ts +4 -1
  256. package/dist/types/excalidraw/editor-jotai.d.ts +11 -11
  257. package/dist/types/excalidraw/eraser/index.d.ts +2 -3
  258. package/dist/types/excalidraw/errors.d.ts +14 -0
  259. package/dist/types/excalidraw/hooks/useAppStateValue.d.ts +29 -0
  260. package/dist/types/excalidraw/hooks/useLibraryItemSvg.d.ts +2 -2
  261. package/dist/types/excalidraw/hooks/useOutsideClick.d.ts +4 -3
  262. package/dist/types/excalidraw/hooks/useScrollPosition.d.ts +1 -2
  263. package/dist/types/excalidraw/hooks/useTextEditorFocus.d.ts +14 -0
  264. package/dist/types/excalidraw/i18n.d.ts +2 -2
  265. package/dist/types/excalidraw/{laser-trails.d.ts → laserTrails.d.ts} +5 -7
  266. package/dist/types/excalidraw/lasso/index.d.ts +2 -3
  267. package/dist/types/excalidraw/renderer/animation.d.ts +16 -0
  268. package/dist/types/excalidraw/renderer/helpers.d.ts +6 -8
  269. package/dist/types/excalidraw/renderer/interactiveScene.d.ts +7 -15
  270. package/dist/types/excalidraw/scene/Renderer.d.ts +428 -18
  271. package/dist/types/excalidraw/scene/export.d.ts +4 -4
  272. package/dist/types/excalidraw/scene/index.d.ts +2 -2
  273. package/dist/types/excalidraw/scene/types.d.ts +23 -8
  274. package/dist/types/excalidraw/shortcut.d.ts +1 -0
  275. package/dist/types/excalidraw/snapping.d.ts +12 -12
  276. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-bindings.d.ts +1 -1
  277. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-loader.d.ts +1 -1
  278. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-wasm.d.ts +1 -1
  279. package/dist/types/excalidraw/subset/woff2/woff2-loader.d.ts +2 -2
  280. package/dist/types/excalidraw/subset/woff2/woff2-wasm.d.ts +1 -1
  281. package/dist/types/excalidraw/textAutoResizeHandle.d.ts +15 -0
  282. package/dist/types/excalidraw/types.d.ts +297 -46
  283. package/dist/types/excalidraw/viewport.d.ts +316 -0
  284. package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +8 -5
  285. package/dist/types/fractional-indexing/src/index.d.ts +29 -0
  286. package/dist/types/laser-pointer/src/index.d.ts +2 -0
  287. package/dist/types/laser-pointer/src/math.d.ts +16 -0
  288. package/dist/types/laser-pointer/src/simplify.d.ts +2 -0
  289. package/dist/types/laser-pointer/src/state.d.ts +35 -0
  290. package/dist/types/math/src/constants.d.ts +0 -1
  291. package/dist/types/math/src/curve.d.ts +4 -1
  292. package/dist/types/math/src/point.d.ts +8 -2
  293. package/dist/types/math/src/polygon.d.ts +2 -2
  294. package/dist/types/math/src/range.d.ts +1 -3
  295. package/dist/types/math/src/segment.d.ts +4 -3
  296. package/dist/types/math/src/types.d.ts +25 -1
  297. package/dist/types/utils/src/export.d.ts +8 -8
  298. package/dist/types/utils/src/index.d.ts +1 -2
  299. package/dist/types/utils/src/shape.d.ts +6 -6
  300. package/package.json +7 -1
  301. package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +0 -185
  302. package/dist/types/excalidraw/animation-frame-handler.d.ts +0 -16
  303. package/dist/types/excalidraw/charts.d.ts +0 -27
  304. package/dist/types/excalidraw/components/DiagramToCodePlugin/DiagramToCodePlugin.d.ts +0 -4
  305. package/dist/types/excalidraw/components/ExcalidrawLogo.d.ts +0 -16
  306. package/dist/types/excalidraw/components/HandButton.d.ts +0 -10
  307. package/dist/types/excalidraw/components/InitializeApp.d.ts +0 -10
  308. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +0 -9
  309. package/dist/types/excalidraw/components/footer/FooterCenter.d.ts +0 -8
  310. package/dist/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +0 -10
  311. package/dist/types/excalidraw/components/shapes.d.ts +0 -62
  312. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Center.d.ts +0 -58
  313. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Hints.d.ts +0 -19
  314. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.d.ts +0 -85
  315. package/dist/types/excalidraw/data/reconcile.d.ts +0 -7
  316. package/dist/types/excalidraw/index.d.ts +0 -47
  317. package/dist/types/excalidraw/polyfill.d.ts +0 -2
  318. package/dist/types/excalidraw/scene/scroll.d.ts +0 -23
  319. package/dist/types/utils/src/bbox.d.ts +0 -9
  320. package/dist/types/utils/src/withinBounds.d.ts +0 -19
@@ -0,0 +1,32 @@
1
+ import { getFontString } from "@excalidraw/common";
2
+ import type { ChartType } from "@excalidraw/element/types";
3
+ import type { NonDeletedExcalidrawElement } from "@excalidraw/element/types";
4
+ import { type CartesianChartLayout, type CartesianChartType } from "./charts.constants";
5
+ import type { ChartElements, Spreadsheet, SpreadsheetSeries } from "./charts.types";
6
+ export declare const isSpreadsheetValidForChartType: (spreadsheet: Spreadsheet | null, chartType: ChartType) => boolean;
7
+ export declare const getCartesianChartLayout: (chartType: CartesianChartType, seriesCount: number) => CartesianChartLayout;
8
+ export declare const getChartDimensions: (spreadsheet: Spreadsheet, layout: CartesianChartLayout) => {
9
+ chartWidth: number;
10
+ chartHeight: number;
11
+ };
12
+ export declare const getRadarDimensions: () => {
13
+ chartWidth: number;
14
+ chartHeight: number;
15
+ };
16
+ export declare const getSeriesColors: (seriesCount: number, colorOffset: number) => readonly string[];
17
+ export declare const getColorOffset: (colorSeed?: number) => number;
18
+ export declare const getBackgroundColor: (colorOffset: number) => "#fff5f5" | "#ffc9c9" | "#ff8787" | "#fa5252" | "#e03131" | "#fff0f6" | "#fcc2d7" | "#f783ac" | "#e64980" | "#c2255c" | "#f8f0fc" | "#eebefa" | "#da77f2" | "#be4bdb" | "#9c36b5" | "#f3f0ff" | "#d0bfff" | "#9775fa" | "#7950f2" | "#6741d9" | "#e7f5ff" | "#a5d8ff" | "#4dabf7" | "#228be6" | "#1971c2" | "#e3fafc" | "#99e9f2" | "#3bc9db" | "#15aabf" | "#0c8599" | "#e6fcf5" | "#96f2d7" | "#38d9a9" | "#12b886" | "#099268" | "#ebfbee" | "#b2f2bb" | "#69db7c" | "#40c057" | "#2f9e44" | "#fff9db" | "#ffec99" | "#ffd43b" | "#fab005" | "#f08c00" | "#fff4e6" | "#ffd8a8" | "#ffa94d" | "#fd7e14" | "#e8590c";
19
+ export declare const getRadarValueScale: (series: SpreadsheetSeries[], _labelsLength: number) => {
20
+ renderSteps: boolean;
21
+ normalize: (value: number, _axisIndex: number) => number;
22
+ };
23
+ export declare const getRadarDisplayText: (text: string, fontString: ReturnType<typeof getFontString>, maxWidth: number) => string;
24
+ export declare const createRadarAxisLabels: (labels: readonly string[], angles: readonly number[], centerX: number, centerY: number, radius: number, backgroundColor: string) => {
25
+ axisLabels: ChartElements;
26
+ axisLabelTopY: number;
27
+ axisLabelBottomY: number;
28
+ };
29
+ export declare const createSeriesLegend: (series: SpreadsheetSeries[], seriesColors: readonly string[], centerX: number, minLegendTopY: number, fallbackLegendY: number, backgroundColor: string) => ChartElements;
30
+ export declare const getRotatedTextElementBottom: (element: NonDeletedExcalidrawElement) => number;
31
+ export declare const chartXLabels: (spreadsheet: Spreadsheet, x: number, y: number, backgroundColor: string, layout: CartesianChartLayout) => ChartElements;
32
+ export declare const chartBaseElements: (spreadsheet: Spreadsheet, x: number, y: number, backgroundColor: string, layout: CartesianChartLayout, maxValue?: number, debug?: boolean) => ChartElements;
@@ -0,0 +1,2 @@
1
+ import type { ChartElements, Spreadsheet } from "./charts.types";
2
+ export declare const renderLineChart: (spreadsheet: Spreadsheet, x: number, y: number, colorSeed?: number) => ChartElements;
@@ -0,0 +1,10 @@
1
+ import { type ParseSpreadsheetResult } from "./charts.types";
2
+ /**
3
+ * @private exported for testing
4
+ */
5
+ export declare const tryParseNumber: (s: string) => number | null;
6
+ /**
7
+ * @private exported for testing
8
+ */
9
+ export declare const tryParseCells: (cells: string[][]) => ParseSpreadsheetResult;
10
+ export declare const tryParseSpreadsheet: (text: string) => ParseSpreadsheetResult;
@@ -0,0 +1,2 @@
1
+ import type { ChartElements, Spreadsheet } from "./charts.types";
2
+ export declare const renderRadarChart: (spreadsheet: Spreadsheet, x: number, y: number, colorSeed?: number) => ChartElements | null;
@@ -0,0 +1,18 @@
1
+ import type { NonDeletedExcalidrawElement } from "@excalidraw/element/types";
2
+ export type ChartElements = readonly NonDeletedExcalidrawElement[];
3
+ export interface Spreadsheet {
4
+ title: string | null;
5
+ labels: string[] | null;
6
+ series: SpreadsheetSeries[];
7
+ }
8
+ export interface SpreadsheetSeries {
9
+ title: string | null;
10
+ values: number[];
11
+ }
12
+ export type ParseSpreadsheetResult = {
13
+ ok: false;
14
+ reason: string;
15
+ } | {
16
+ ok: true;
17
+ data: Spreadsheet;
18
+ };
@@ -0,0 +1,7 @@
1
+ import type { ChartType } from "@excalidraw/element/types";
2
+ import { tryParseCells, tryParseNumber, tryParseSpreadsheet } from "./charts.parse";
3
+ import type { ChartElements, Spreadsheet } from "./charts.types";
4
+ export { type ParseSpreadsheetResult, type Spreadsheet, type SpreadsheetSeries, type ChartElements, } from "./charts.types";
5
+ export { isSpreadsheetValidForChartType } from "./charts.helpers";
6
+ export { tryParseCells, tryParseNumber, tryParseSpreadsheet };
7
+ export declare const renderSpreadsheet: (chartType: ChartType, spreadsheet: Spreadsheet, x: number, y: number, colorSeed?: number) => ChartElements | null;
@@ -1,13 +1,13 @@
1
1
  import { ALLOWED_PASTE_MIME_TYPES } from "@excalidraw/common";
2
+ import type { ValueOf } from "@excalidraw/common/utility-types";
3
+ import type { IMAGE_MIME_TYPES, STRING_MIME_TYPES } from "@excalidraw/common";
2
4
  import type { ExcalidrawElement, NonDeletedExcalidrawElement } from "@excalidraw/element/types";
3
- import type { Spreadsheet } from "./charts";
4
5
  import type { BinaryFiles } from "./types";
5
6
  export type PastedMixedContent = {
6
7
  type: "text" | "imageUrl";
7
8
  value: string;
8
9
  }[];
9
10
  export interface ClipboardData {
10
- spreadsheet?: Spreadsheet;
11
11
  elements?: readonly ExcalidrawElement[];
12
12
  files?: BinaryFiles;
13
13
  text?: string;
@@ -20,33 +20,21 @@ export declare const probablySupportsClipboardReadText: boolean;
20
20
  export declare const probablySupportsClipboardWriteText: boolean;
21
21
  export declare const probablySupportsClipboardBlob: boolean;
22
22
  export declare const createPasteEvent: ({ types, files, }: {
23
- types?: {
24
- "text/plain"?: string | File | undefined;
25
- "text/html"?: string | File | undefined;
26
- "image/svg+xml"?: string | File | undefined;
27
- "image/png"?: string | File | undefined;
28
- "image/jpeg"?: string | File | undefined;
29
- "image/gif"?: string | File | undefined;
30
- "image/webp"?: string | File | undefined;
31
- "image/bmp"?: string | File | undefined;
32
- "image/x-icon"?: string | File | undefined;
33
- "image/avif"?: string | File | undefined;
34
- "image/jfif"?: string | File | undefined;
35
- } | undefined;
36
- files?: File[] | undefined;
23
+ types?: { [key in AllowedPasteMimeTypes]?: string | File; };
24
+ files?: File[];
37
25
  }) => ClipboardEvent;
38
26
  export declare const serializeAsClipboardJSON: ({ elements, files, }: {
39
27
  elements: readonly NonDeletedExcalidrawElement[];
40
28
  files: BinaryFiles | null;
41
29
  }) => string;
42
- export declare const copyToClipboard: (elements: readonly NonDeletedExcalidrawElement[], files: BinaryFiles | null, clipboardEvent?: ClipboardEvent | null) => Promise<void>;
30
+ export declare const copyToClipboard: (elements: readonly NonDeletedExcalidrawElement[], files: BinaryFiles | null,
31
+ /** supply if available to make the operation more certain to succeed */
32
+ clipboardEvent?: ClipboardEvent | null) => Promise<void>;
43
33
  /**
44
34
  * Reads OS clipboard programmatically. May not work on all browsers.
45
35
  * Will prompt user for permission if not granted.
46
36
  */
47
37
  export declare const readSystemClipboard: () => Promise<{
48
- "text/plain"?: string | File | undefined;
49
- "text/html"?: string | File | undefined;
50
38
  "image/svg+xml"?: string | File | undefined;
51
39
  "image/png"?: string | File | undefined;
52
40
  "image/jpeg"?: string | File | undefined;
@@ -56,11 +44,61 @@ export declare const readSystemClipboard: () => Promise<{
56
44
  "image/x-icon"?: string | File | undefined;
57
45
  "image/avif"?: string | File | undefined;
58
46
  "image/jfif"?: string | File | undefined;
47
+ "text/plain"?: string | File | undefined;
48
+ "text/html"?: string | File | undefined;
49
+ }>;
50
+ type AllowedParsedDataTransferItem = {
51
+ type: ValueOf<typeof IMAGE_MIME_TYPES>;
52
+ kind: "file";
53
+ file: File;
54
+ fileHandle: FileSystemFileHandle | null;
55
+ } | {
56
+ type: ValueOf<typeof STRING_MIME_TYPES>;
57
+ kind: "string";
58
+ value: string;
59
+ };
60
+ type ParsedDataTransferItem = {
61
+ type: string;
62
+ kind: "file";
63
+ file: File;
64
+ fileHandle: FileSystemFileHandle | null;
65
+ } | {
66
+ type: string;
67
+ kind: "string";
68
+ value: string;
69
+ };
70
+ type ParsedDataTransferItemType<T extends AllowedParsedDataTransferItem["type"]> = AllowedParsedDataTransferItem & {
71
+ type: T;
72
+ };
73
+ export type ParsedDataTransferFile = Extract<AllowedParsedDataTransferItem, {
74
+ kind: "file";
59
75
  }>;
76
+ export type ParsedDataTranferList = ParsedDataTransferItem[] & {
77
+ /**
78
+ * Only allows filtering by known `string` data types, since `file`
79
+ * types can have multiple items of the same type (e.g. multiple image files)
80
+ * unlike `string` data transfer items.
81
+ */
82
+ findByType: typeof findDataTransferItemType;
83
+ /**
84
+ * Only allows filtering by known `string` data types, since `file`
85
+ * types can have multiple items of the same type (e.g. multiple image files)
86
+ * unlike `string` data transfer items.
87
+ */
88
+ getData: typeof getDataTransferItemData;
89
+ getFiles: typeof getDataTransferFiles;
90
+ };
91
+ declare const findDataTransferItemType: <T extends ValueOf<typeof STRING_MIME_TYPES>>(this: ParsedDataTranferList, type: T) => ParsedDataTransferItemType<T> | null;
92
+ declare const getDataTransferItemData: <T extends ValueOf<typeof STRING_MIME_TYPES>>(this: ParsedDataTranferList, type: T) => ParsedDataTransferItemType<ValueOf<typeof STRING_MIME_TYPES>>["value"] | null;
93
+ declare const getDataTransferFiles: (this: ParsedDataTranferList) => ParsedDataTransferFile[];
94
+ /** @returns list of MIME types, synchronously */
95
+ export declare const parseDataTransferEventMimeTypes: (event: ClipboardEvent | DragEvent | React.DragEvent<HTMLDivElement>) => Set<string>;
96
+ export declare const parseDataTransferEvent: (event: ClipboardEvent | DragEvent | React.DragEvent<HTMLDivElement>) => Promise<ParsedDataTranferList>;
60
97
  /**
61
98
  * Attempts to parse clipboard event.
62
99
  */
63
- export declare const parseClipboard: (event: ClipboardEvent, isPlainPaste?: boolean) => Promise<ClipboardData>;
100
+ export declare const parseClipboard: (dataList: ParsedDataTranferList, isPlainPaste?: boolean) => Promise<ClipboardData>;
64
101
  export declare const copyBlobToClipboardAsPng: (blob: Blob | Promise<Blob>) => Promise<void>;
65
- export declare const copyTextToSystemClipboard: (text: string | null, clipboardEvent?: ClipboardEvent | null) => Promise<void>;
102
+ export declare const copyTextToSystemClipboard: <MimeType extends ValueOf<typeof STRING_MIME_TYPES>>(text: string | { [K in MimeType]: string; } | null, clipboardEvent?: ClipboardEvent | null) => Promise<void>;
103
+ export declare const isClipboardEvent: (event: React.SyntheticEvent | Event) => event is ClipboardEvent;
66
104
  export {};
@@ -1,30 +1,52 @@
1
- import type { ExcalidrawElement, NonDeletedElementsMap, NonDeletedSceneElementsMap } from "@excalidraw/element/types";
1
+ import type { NonDeletedElementsMap, NonDeletedSceneElementsMap } from "@excalidraw/element/types";
2
2
  import "./Actions.scss";
3
- import type { AppClassProperties, AppProps, UIAppState, Zoom } from "../types";
3
+ import type { AppClassProperties, UIAppState, AppState } from "../types";
4
4
  import type { ActionManager } from "../actions/manager";
5
- export declare const canChangeStrokeColor: (appState: UIAppState, targetElements: ExcalidrawElement[]) => boolean;
6
- export declare const canChangeBackgroundColor: (appState: UIAppState, targetElements: ExcalidrawElement[]) => boolean;
5
+ export { canChangeStrokeColor, canChangeBackgroundColor, } from "./shapeActionPredicates";
6
+ /**
7
+ * Full styles panel: the wide, always-expanded layout used on desktop when the
8
+ * UI is in "full" mode.
9
+ */
7
10
  export declare const SelectedShapeActions: ({ appState, elementsMap, renderAction, app, }: {
8
11
  appState: UIAppState;
9
12
  elementsMap: NonDeletedElementsMap | NonDeletedSceneElementsMap;
10
13
  renderAction: ActionManager["renderAction"];
11
14
  app: AppClassProperties;
12
15
  }) => import("react/jsx-runtime").JSX.Element;
13
- export declare const ShapesSwitcher: ({ activeTool, appState, app, UIOptions, }: {
14
- activeTool: UIAppState["activeTool"];
16
+ /**
17
+ * Compact styles panel — the collapsed, popover-driven layout used on tablets
18
+ * and on desktop when the UI is in "compact" mode.
19
+ */
20
+ export declare const CompactShapeActions: ({ appState, elementsMap, renderAction, app, setAppState, }: {
15
21
  appState: UIAppState;
22
+ elementsMap: NonDeletedElementsMap | NonDeletedSceneElementsMap;
23
+ renderAction: ActionManager["renderAction"];
16
24
  app: AppClassProperties;
17
- UIOptions: AppProps["UIOptions"];
25
+ setAppState: React.Component<any, AppState>["setState"];
18
26
  }) => import("react/jsx-runtime").JSX.Element;
19
- export declare const ZoomActions: ({ renderAction, zoom, }: {
27
+ /**
28
+ * Mobile styles panel — the horizontal action bar used on phones, with an
29
+ * overflow measurement that promotes duplicate/delete out of the popover when
30
+ * there is room.
31
+ */
32
+ export declare const MobileShapeActions: ({ appState, elementsMap, renderAction, app, setAppState, }: {
33
+ appState: UIAppState;
34
+ elementsMap: NonDeletedElementsMap | NonDeletedSceneElementsMap;
35
+ renderAction: ActionManager["renderAction"];
36
+ app: AppClassProperties;
37
+ setAppState: React.Component<any, AppState>["setState"];
38
+ }) => import("react/jsx-runtime").JSX.Element;
39
+ export declare const ZoomActions: ({ renderAction, }: {
20
40
  renderAction: ActionManager["renderAction"];
21
- zoom: Zoom;
22
41
  }) => import("react/jsx-runtime").JSX.Element;
23
42
  export declare const UndoRedoActions: ({ renderAction, className, }: {
24
43
  renderAction: ActionManager["renderAction"];
25
- className?: string | undefined;
44
+ className?: string;
26
45
  }) => import("react/jsx-runtime").JSX.Element;
27
- export declare const ExitZenModeAction: ({ actionManager, showExitZenModeBtn, }: {
46
+ export declare const ExitZenModeButton: ({ actionManager, showExitZenModeBtn, }: {
28
47
  actionManager: ActionManager;
29
48
  showExitZenModeBtn: boolean;
30
49
  }) => import("react/jsx-runtime").JSX.Element;
50
+ export declare const ExitViewModeButton: ({ actionManager, }: {
51
+ actionManager: ActionManager;
52
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -1,4 +1,4 @@
1
- export declare const activeConfirmDialogAtom: import("jotai/vanilla/atom").PrimitiveAtom<"clearCanvas" | null> & {
1
+ export declare const activeConfirmDialogAtom: import("jotai").PrimitiveAtom<"clearCanvas" | null> & {
2
2
  init: "clearCanvas" | null;
3
3
  };
4
4
  export declare const ActiveConfirmDialog: () => import("react/jsx-runtime").JSX.Element | null;