@excalidraw/common 0.18.0-91c7748 → 0.18.0-9ba0f5d

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 (218) hide show
  1. package/dist/dev/index.js +1327 -276
  2. package/dist/dev/index.js.map +4 -4
  3. package/dist/prod/index.js +3 -3
  4. package/dist/types/common/src/bounds.d.ts +10 -0
  5. package/dist/types/common/src/colors.d.ts +59 -39
  6. package/dist/types/common/src/constants.d.ts +20 -28
  7. package/dist/types/common/src/editorInterface.d.ts +34 -0
  8. package/dist/types/common/src/font-metadata.d.ts +1 -3
  9. package/dist/types/common/src/index.d.ts +2 -0
  10. package/dist/types/common/src/keys.d.ts +1 -1
  11. package/dist/types/common/src/utility-types.d.ts +0 -1
  12. package/dist/types/common/src/utils.d.ts +50 -36
  13. package/dist/types/element/src/Scene.d.ts +4 -4
  14. package/dist/types/element/src/binding.d.ts +58 -44
  15. package/dist/types/element/src/bounds.d.ts +2 -10
  16. package/dist/types/element/src/collision.d.ts +6 -2
  17. package/dist/types/element/src/comparisons.d.ts +7 -7
  18. package/dist/types/element/src/dragElements.d.ts +3 -3
  19. package/dist/types/element/src/duplicate.d.ts +3 -3
  20. package/dist/types/element/src/fractionalIndex.d.ts +2 -2
  21. package/dist/types/element/src/frame.d.ts +7 -3
  22. package/dist/types/element/src/heading.d.ts +2 -1
  23. package/dist/types/element/src/image.d.ts +1 -11
  24. package/dist/types/element/src/index.d.ts +1 -3
  25. package/dist/types/element/src/linearElementEditor.d.ts +16 -20
  26. package/dist/types/element/src/mutateElement.d.ts +3 -1
  27. package/dist/types/element/src/newElement.d.ts +6 -6
  28. package/dist/types/element/src/renderElement.d.ts +1 -7
  29. package/dist/types/element/src/resizeElements.d.ts +10 -10
  30. package/dist/types/element/src/resizeTest.d.ts +6 -5
  31. package/dist/types/element/src/selection.d.ts +3 -7
  32. package/dist/types/element/src/shape.d.ts +8 -7
  33. package/dist/types/element/src/textMeasurements.d.ts +1 -3
  34. package/dist/types/{excalidraw/data → element/src}/transform.d.ts +3 -3
  35. package/dist/types/element/src/transformHandles.d.ts +8 -27
  36. package/dist/types/element/src/typeChecks.d.ts +4 -7
  37. package/dist/types/element/src/types.d.ts +7 -11
  38. package/dist/types/element/src/utils.d.ts +5 -2
  39. package/dist/types/element/src/zindex.d.ts +7 -1
  40. package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +138 -184
  41. package/dist/types/excalidraw/actions/actionAlign.d.ts +6 -7
  42. package/dist/types/excalidraw/actions/actionBoundText.d.ts +67 -98
  43. package/dist/types/excalidraw/actions/actionCanvas.d.ts +401 -771
  44. package/dist/types/excalidraw/actions/actionClipboard.d.ts +103 -879
  45. package/dist/types/excalidraw/actions/actionCropEditor.d.ts +32 -48
  46. package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +110 -162
  47. package/dist/types/excalidraw/actions/actionDistribute.d.ts +2 -3
  48. package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +3 -4
  49. package/dist/types/excalidraw/actions/actionElementLink.d.ts +47 -65
  50. package/dist/types/excalidraw/actions/actionElementLock.d.ts +66 -97
  51. package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +49 -65
  52. package/dist/types/excalidraw/actions/actionExport.d.ts +144 -1113
  53. package/dist/types/excalidraw/actions/actionFinalize.d.ts +10 -396
  54. package/dist/types/excalidraw/actions/actionFlip.d.ts +2 -3
  55. package/dist/types/excalidraw/actions/actionFrame.d.ts +252 -351
  56. package/dist/types/excalidraw/actions/actionGroup.d.ts +70 -109
  57. package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +164 -220
  58. package/dist/types/excalidraw/actions/actionLink.d.ts +49 -65
  59. package/dist/types/excalidraw/actions/actionMenu.d.ts +42 -428
  60. package/dist/types/excalidraw/actions/actionNavigate.d.ts +18 -361
  61. package/dist/types/excalidraw/actions/actionProperties.d.ts +127 -2510
  62. package/dist/types/excalidraw/actions/actionSelectAll.d.ts +35 -55
  63. package/dist/types/excalidraw/actions/actionStyles.d.ts +32 -48
  64. package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +3 -3
  65. package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +49 -65
  66. package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +49 -65
  67. package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +41 -59
  68. package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +1 -1
  69. package/dist/types/excalidraw/actions/actionToggleStats.d.ts +48 -64
  70. package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +49 -65
  71. package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +49 -65
  72. package/dist/types/excalidraw/actions/actionZindex.d.ts +8 -9
  73. package/dist/types/excalidraw/actions/index.d.ts +1 -1
  74. package/dist/types/excalidraw/actions/register.d.ts +2 -2
  75. package/dist/types/excalidraw/actions/types.d.ts +4 -4
  76. package/dist/types/excalidraw/appState.d.ts +20 -16
  77. package/dist/types/excalidraw/clipboard.d.ts +7 -31
  78. package/dist/types/excalidraw/components/Actions.d.ts +14 -4
  79. package/dist/types/excalidraw/components/App.d.ts +58 -59
  80. package/dist/types/excalidraw/components/Card.d.ts +1 -3
  81. package/dist/types/excalidraw/components/ColorPicker/ColorInput.d.ts +2 -4
  82. package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +1 -3
  83. package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +2 -0
  84. package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +2 -1
  85. package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +2 -1
  86. package/dist/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +0 -1
  87. package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +0 -1
  88. package/dist/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +1 -0
  89. package/dist/types/excalidraw/components/CommandPalette/types.d.ts +1 -3
  90. package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +2 -2
  91. package/dist/types/excalidraw/components/DarkModeToggle.d.ts +1 -1
  92. package/dist/types/excalidraw/components/DefaultSidebar.d.ts +9 -13
  93. package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +1 -1
  94. package/dist/types/excalidraw/components/Ellipsify.d.ts +1 -2
  95. package/dist/types/excalidraw/components/ErrorDialog.d.ts +1 -1
  96. package/dist/types/excalidraw/components/ExcalidrawLogo.d.ts +1 -2
  97. package/dist/types/excalidraw/components/EyeDropper.d.ts +0 -1
  98. package/dist/types/excalidraw/components/FilledButton.d.ts +2 -1
  99. package/dist/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +2 -1
  100. package/dist/types/excalidraw/components/FontPicker/keyboardNavHandlers.d.ts +0 -1
  101. package/dist/types/excalidraw/components/HelpDialog.d.ts +1 -1
  102. package/dist/types/excalidraw/components/HintViewer.d.ts +4 -3
  103. package/dist/types/excalidraw/components/InlineIcon.d.ts +3 -1
  104. package/dist/types/excalidraw/components/LayerUI.d.ts +2 -1
  105. package/dist/types/excalidraw/components/LibraryMenuControlButtons.d.ts +1 -1
  106. package/dist/types/excalidraw/components/LibraryMenuHeaderContent.d.ts +1 -2
  107. package/dist/types/excalidraw/components/LibraryMenuSection.d.ts +1 -1
  108. package/dist/types/excalidraw/components/LibraryUnit.d.ts +2 -3
  109. package/dist/types/excalidraw/components/LoadingMessage.d.ts +0 -1
  110. package/dist/types/excalidraw/components/MobileMenu.d.ts +3 -5
  111. package/dist/types/excalidraw/components/MobileToolBar.d.ts +10 -0
  112. package/dist/types/excalidraw/components/Modal.d.ts +0 -1
  113. package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirm.d.ts +1 -1
  114. package/dist/types/excalidraw/components/Popover.d.ts +2 -1
  115. package/dist/types/excalidraw/components/RadioGroup.d.ts +0 -1
  116. package/dist/types/excalidraw/components/RadioSelection.d.ts +4 -4
  117. package/dist/types/excalidraw/components/ScrollableList.d.ts +0 -1
  118. package/dist/types/excalidraw/components/Sidebar/Sidebar.d.ts +15 -21
  119. package/dist/types/excalidraw/components/Sidebar/SidebarHeader.d.ts +1 -1
  120. package/dist/types/excalidraw/components/Sidebar/SidebarTab.d.ts +1 -2
  121. package/dist/types/excalidraw/components/Sidebar/SidebarTabTrigger.d.ts +1 -2
  122. package/dist/types/excalidraw/components/Sidebar/SidebarTabTriggers.d.ts +1 -2
  123. package/dist/types/excalidraw/components/Sidebar/SidebarTabs.d.ts +1 -2
  124. package/dist/types/excalidraw/components/Spinner.d.ts +4 -4
  125. package/dist/types/excalidraw/components/Stats/CanvasGrid.d.ts +0 -1
  126. package/dist/types/excalidraw/components/Stats/Collapsible.d.ts +0 -1
  127. package/dist/types/excalidraw/components/Stats/DragInput.d.ts +0 -1
  128. package/dist/types/excalidraw/components/Stats/index.d.ts +7 -8
  129. package/dist/types/excalidraw/components/Stats/utils.d.ts +1 -1
  130. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatHistoryMenu.d.ts +15 -0
  131. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatInterface.d.ts +27 -0
  132. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatMessage.d.ts +14 -0
  133. package/dist/types/excalidraw/components/TTDDialog/Chat/TTDChatPanel.d.ts +26 -0
  134. package/dist/types/excalidraw/components/TTDDialog/Chat/index.d.ts +3 -0
  135. package/dist/types/excalidraw/components/TTDDialog/Chat/useChatAgent.d.ts +8 -0
  136. package/dist/types/excalidraw/components/TTDDialog/MermaidToExcalidraw.d.ts +3 -2
  137. package/dist/types/excalidraw/components/TTDDialog/TTDContext.d.ts +13 -0
  138. package/dist/types/excalidraw/components/TTDDialog/TTDDialog.d.ts +4 -25
  139. package/dist/types/excalidraw/components/TTDDialog/TTDDialogOutput.d.ts +2 -2
  140. package/dist/types/excalidraw/components/TTDDialog/TTDDialogPanel.d.ts +13 -9
  141. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTab.d.ts +1 -2
  142. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTrigger.d.ts +1 -2
  143. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTriggers.d.ts +1 -2
  144. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +2 -3
  145. package/dist/types/excalidraw/components/TTDDialog/TTDPreviewPanel.d.ts +9 -0
  146. package/dist/types/excalidraw/components/TTDDialog/TextToDiagram.d.ts +8 -0
  147. package/dist/types/excalidraw/components/TTDDialog/common.d.ts +16 -16
  148. package/dist/types/excalidraw/components/TTDDialog/hooks/useChatManagement.d.ts +13 -0
  149. package/dist/types/excalidraw/components/TTDDialog/hooks/useMermaidRenderer.d.ts +14 -0
  150. package/dist/types/excalidraw/components/TTDDialog/hooks/useTextGeneration.d.ts +7 -0
  151. package/dist/types/excalidraw/components/TTDDialog/types.d.ts +91 -0
  152. package/dist/types/excalidraw/components/TTDDialog/useTTDChatStorage.d.ts +22 -0
  153. package/dist/types/excalidraw/components/TTDDialog/utils/TTDStreamFetch.d.ts +24 -0
  154. package/dist/types/excalidraw/components/TTDDialog/utils/chat.d.ts +10 -0
  155. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidValidation.d.ts +1 -0
  156. package/dist/types/excalidraw/components/TextField.d.ts +1 -0
  157. package/dist/types/excalidraw/components/Toast.d.ts +3 -3
  158. package/dist/types/excalidraw/components/ToolPopover.d.ts +25 -0
  159. package/dist/types/excalidraw/components/Trans.d.ts +2 -2
  160. package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +6 -3
  161. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +30 -32
  162. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +6 -5
  163. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +3 -3
  164. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +10 -18
  165. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +3 -3
  166. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +0 -1
  167. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.d.ts +2 -2
  168. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemLink.d.ts +6 -6
  169. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuTrigger.d.ts +3 -4
  170. package/dist/types/excalidraw/components/dropdownMenu/common.d.ts +1 -1
  171. package/dist/types/excalidraw/components/hoc/withInternalFallback.d.ts +1 -1
  172. package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +1 -1
  173. package/dist/types/excalidraw/components/icons.d.ts +21 -13
  174. package/dist/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +4 -3
  175. package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +2 -2
  176. package/dist/types/excalidraw/components/main-menu/MainMenu.d.ts +25 -30
  177. package/dist/types/excalidraw/components/shapes.d.ts +1 -1
  178. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Center.d.ts +6 -6
  179. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.d.ts +15 -16
  180. package/dist/types/excalidraw/data/blob.d.ts +323 -5
  181. package/dist/types/excalidraw/data/encode.d.ts +4 -4
  182. package/dist/types/excalidraw/data/encryption.d.ts +5 -5
  183. package/dist/types/excalidraw/data/filesystem.d.ts +2 -2
  184. package/dist/types/excalidraw/data/index.d.ts +3 -3
  185. package/dist/types/excalidraw/data/json.d.ts +159 -2
  186. package/dist/types/excalidraw/data/library.d.ts +24 -9
  187. package/dist/types/excalidraw/data/restore.d.ts +25 -10
  188. package/dist/types/excalidraw/editor-jotai.d.ts +11 -11
  189. package/dist/types/excalidraw/errors.d.ts +14 -0
  190. package/dist/types/excalidraw/hooks/useLibraryItemSvg.d.ts +1 -1
  191. package/dist/types/excalidraw/hooks/useOutsideClick.d.ts +4 -3
  192. package/dist/types/excalidraw/hooks/useScrollPosition.d.ts +1 -2
  193. package/dist/types/excalidraw/i18n.d.ts +2 -2
  194. package/dist/types/excalidraw/index.d.ts +6 -7
  195. package/dist/types/excalidraw/renderer/animation.d.ts +12 -0
  196. package/dist/types/excalidraw/renderer/helpers.d.ts +6 -8
  197. package/dist/types/excalidraw/renderer/interactiveScene.d.ts +8 -14
  198. package/dist/types/excalidraw/scene/Renderer.d.ts +5 -2
  199. package/dist/types/excalidraw/scene/export.d.ts +2 -2
  200. package/dist/types/excalidraw/scene/scroll.d.ts +1 -6
  201. package/dist/types/excalidraw/scene/types.d.ts +22 -5
  202. package/dist/types/excalidraw/shortcut.d.ts +1 -0
  203. package/dist/types/excalidraw/snapping.d.ts +5 -5
  204. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-bindings.d.ts +1 -1
  205. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-loader.d.ts +1 -1
  206. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-wasm.d.ts +1 -1
  207. package/dist/types/excalidraw/subset/woff2/woff2-loader.d.ts +2 -2
  208. package/dist/types/excalidraw/subset/woff2/woff2-wasm.d.ts +1 -1
  209. package/dist/types/excalidraw/types.d.ts +29 -22
  210. package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +2 -2
  211. package/dist/types/math/src/polygon.d.ts +2 -2
  212. package/dist/types/math/src/range.d.ts +1 -3
  213. package/dist/types/math/src/segment.d.ts +3 -3
  214. package/dist/types/utils/src/bbox.d.ts +1 -1
  215. package/dist/types/utils/src/export.d.ts +5 -5
  216. package/dist/types/utils/src/shape.d.ts +6 -6
  217. package/dist/types/utils/src/withinBounds.d.ts +2 -2
  218. package/package.json +7 -1
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import type { ExcalidrawLinearElement } from "@excalidraw/element/types";
3
2
  export declare const actionToggleLinearEditor: {
4
3
  name: "toggleLinearEditor";
@@ -9,40 +8,38 @@ export declare const actionToggleLinearEditor: {
9
8
  category: "element";
10
9
  };
11
10
  predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: import("../types").AppState, _: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
12
- perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: any, app: import("../types").AppClassProperties): {
11
+ perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: unknown, app: import("../types").AppClassProperties): {
13
12
  appState: {
14
13
  selectedLinearElement: {
15
14
  isEditing: boolean;
16
- elementId: string & {
15
+ elementId: import("@excalidraw/element/types").ExcalidrawElement["id"] & {
17
16
  _brand: "excalidrawLinearElementId";
18
17
  };
19
18
  selectedPointsIndices: readonly number[] | null;
20
- pointerDownState: Readonly<{
19
+ initialState: Readonly<{
21
20
  prevSelectedPointsIndices: readonly number[] | null;
22
21
  lastClickedPoint: number;
23
- lastClickedIsEndPoint: boolean;
24
- origin: Readonly<{
25
- x: number;
26
- y: number;
27
- }> | null;
22
+ origin: Readonly<import("@excalidraw/math").GlobalPoint> | null;
28
23
  segmentMidpoint: {
29
- value: import("../../math/src").GlobalPoint | null;
24
+ value: import("@excalidraw/math").GlobalPoint | null;
30
25
  index: number | null;
31
26
  added: boolean;
32
27
  };
28
+ arrowStartIsInside: boolean;
29
+ altFocusPoint: Readonly<import("@excalidraw/math").GlobalPoint> | null;
33
30
  }>;
34
31
  isDragging: boolean;
35
- lastUncommittedPoint: import("../../math/src").LocalPoint | null;
32
+ lastUncommittedPoint: import("@excalidraw/math").LocalPoint | null;
33
+ lastCommittedPoint: import("@excalidraw/math").LocalPoint | null;
36
34
  pointerOffset: Readonly<{
37
35
  x: number;
38
36
  y: number;
39
37
  }>;
40
- startBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
41
- endBindingElement: import("@excalidraw/element/types").ExcalidrawBindableElement | "keep" | null;
42
38
  hoverPointIndex: number;
43
- segmentMidPointHoveredCoords: import("../../math/src").GlobalPoint | null;
39
+ segmentMidPointHoveredCoords: import("@excalidraw/math").GlobalPoint | null;
44
40
  elbowed: boolean;
45
41
  customLineAngle: number | null;
42
+ pointerDownState: never;
46
43
  };
47
44
  contextMenu: {
48
45
  items: import("../components/ContextMenu").ContextMenuItems;
@@ -51,10 +48,10 @@ export declare const actionToggleLinearEditor: {
51
48
  } | null;
52
49
  showWelcomeScreen: boolean;
53
50
  isLoading: boolean;
54
- errorMessage: import("react").ReactNode;
51
+ errorMessage: React.ReactNode;
55
52
  activeEmbeddable: {
56
53
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
57
- state: "active" | "hover";
54
+ state: "hover" | "active";
58
55
  } | null;
59
56
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
60
57
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
@@ -62,7 +59,7 @@ export declare const actionToggleLinearEditor: {
62
59
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
63
60
  isBindingEnabled: boolean;
64
61
  startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
65
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
62
+ suggestedBinding: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
66
63
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
67
64
  frameRendering: {
68
65
  enabled: boolean;
@@ -78,6 +75,10 @@ export declare const actionToggleLinearEditor: {
78
75
  locked: boolean;
79
76
  fromSelection: boolean;
80
77
  } & import("../types").ActiveTool;
78
+ preferredSelectionTool: {
79
+ type: "selection" | "lasso";
80
+ initialized: boolean;
81
+ };
81
82
  penMode: boolean;
82
83
  penDetected: boolean;
83
84
  exportBackground: boolean;
@@ -86,19 +87,19 @@ export declare const actionToggleLinearEditor: {
86
87
  exportScale: number;
87
88
  currentItemStrokeColor: string;
88
89
  currentItemBackgroundColor: string;
89
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
90
+ currentItemFillStyle: import("@excalidraw/element/types").ExcalidrawElement["fillStyle"];
90
91
  currentItemStrokeWidth: number;
91
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
92
+ currentItemStrokeStyle: import("@excalidraw/element/types").ExcalidrawElement["strokeStyle"];
92
93
  currentItemRoughness: number;
93
94
  currentItemOpacity: number;
94
- currentItemFontFamily: number;
95
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
95
96
  currentItemFontSize: number;
96
- currentItemTextAlign: string;
97
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
97
98
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
98
99
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
99
- currentHoveredFontFamily: number | null;
100
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
100
101
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
101
- currentItemArrowType: "round" | "sharp" | "elbow";
102
+ currentItemArrowType: "sharp" | "round" | "elbow";
102
103
  viewBackgroundColor: string;
103
104
  scrollX: number;
104
105
  scrollY: number;
@@ -107,26 +108,26 @@ export declare const actionToggleLinearEditor: {
107
108
  name: string | null;
108
109
  isResizing: boolean;
109
110
  isRotating: boolean;
110
- zoom: Readonly<{
111
- value: import("../types").NormalizedZoomValue;
112
- }>;
113
- openMenu: "canvas" | "shape" | null;
114
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
111
+ zoom: import("../types").Zoom;
112
+ openMenu: "canvas" | null;
113
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
115
114
  openSidebar: {
116
- name: string;
117
- tab?: string | undefined;
115
+ name: import("../types").SidebarName;
116
+ tab?: import("../types").SidebarTabName;
118
117
  } | null;
119
- openDialog: {
118
+ openDialog: null | {
120
119
  name: "imageExport" | "help" | "jsonExport";
121
120
  } | {
122
121
  name: "ttd";
123
- tab: "mermaid" | "text-to-diagram";
122
+ tab: "text-to-diagram" | "mermaid";
124
123
  } | {
125
124
  name: "commandPalette";
125
+ } | {
126
+ name: "settings";
126
127
  } | {
127
128
  name: "elementLinkSelector";
128
- sourceElementId: string;
129
- } | null;
129
+ sourceElementId: import("@excalidraw/element/types").ExcalidrawElement["id"];
130
+ };
130
131
  defaultSidebarDockedPreference: boolean;
131
132
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
132
133
  selectedElementIds: Readonly<{
@@ -142,8 +143,8 @@ export declare const actionToggleLinearEditor: {
142
143
  shouldCacheIgnoreZoom: boolean;
143
144
  toast: {
144
145
  message: string;
145
- closable?: boolean | undefined;
146
- duration?: number | undefined;
146
+ closable?: boolean;
147
+ duration?: number;
147
148
  } | null;
148
149
  zenModeEnabled: boolean;
149
150
  theme: import("@excalidraw/element/types").Theme;
@@ -154,32 +155,13 @@ export declare const actionToggleLinearEditor: {
154
155
  selectedGroupIds: {
155
156
  [groupId: string]: boolean;
156
157
  };
157
- editingGroupId: string | null;
158
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
158
159
  width: number;
159
160
  height: number;
160
161
  offsetTop: number;
161
162
  offsetLeft: number;
162
163
  fileHandle: import("browser-fs-access").FileSystemHandle | null;
163
- collaborators: Map<import("../types").SocketId, Readonly<{
164
- pointer?: import("../types").CollaboratorPointer | undefined;
165
- button?: "up" | "down" | undefined;
166
- selectedElementIds?: Readonly<{
167
- [id: string]: true;
168
- }> | undefined;
169
- username?: string | null | undefined;
170
- userState?: import("@excalidraw/common").UserIdleState | undefined;
171
- color?: {
172
- background: string;
173
- stroke: string;
174
- } | undefined;
175
- avatarUrl?: string | undefined;
176
- id?: string | undefined;
177
- socketId?: import("../types").SocketId | undefined;
178
- isCurrentUser?: boolean | undefined;
179
- isInCall?: boolean | undefined;
180
- isSpeaking?: boolean | undefined;
181
- isMuted?: boolean | undefined;
182
- }>>;
164
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
183
165
  stats: {
184
166
  open: boolean;
185
167
  panels: number;
@@ -192,7 +174,7 @@ export declare const actionToggleLinearEditor: {
192
174
  shown: true;
193
175
  data: import("../charts").Spreadsheet;
194
176
  };
195
- showHyperlinkPopup: false | "editor" | "info";
177
+ showHyperlinkPopup: false | "info" | "editor";
196
178
  snapLines: readonly import("../snapping").SnapLine[];
197
179
  originSnapOffset: {
198
180
  x: number;
@@ -202,16 +184,16 @@ export declare const actionToggleLinearEditor: {
202
184
  userToFollow: import("../types").UserToFollow | null;
203
185
  followedBy: Set<import("../types").SocketId>;
204
186
  isCropping: boolean;
205
- croppingElementId: string | null;
187
+ croppingElementId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
206
188
  searchMatches: Readonly<{
207
- focusedId: string | null;
189
+ focusedId: import("@excalidraw/element/types").ExcalidrawElement["id"] | null;
208
190
  matches: readonly import("../types").SearchMatch[];
209
191
  }> | null;
210
192
  activeLockedId: string | null;
211
193
  lockedMultiSelections: {
212
194
  [groupId: string]: true;
213
195
  };
214
- stylesPanelMode: "compact" | "full";
196
+ bindMode: import("@excalidraw/element/types").BindMode;
215
197
  };
216
198
  captureUpdate: "IMMEDIATELY";
217
199
  };
@@ -229,7 +211,7 @@ export declare const actionTogglePolygon: {
229
211
  category: "element";
230
212
  };
231
213
  predicate: (elements: readonly import("@excalidraw/element/types").ExcalidrawElement[], appState: import("../types").AppState, _: import("../types").ExcalidrawProps, app: import("../types").AppClassProperties) => boolean;
232
- perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: any, app: import("../types").AppClassProperties): false | {
214
+ perform(elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<import("../types").AppState>, _: unknown, app: import("../types").AppClassProperties): false | {
233
215
  elements: ((Readonly<{
234
216
  id: string;
235
217
  x: number;
@@ -239,43 +221,34 @@ export declare const actionTogglePolygon: {
239
221
  fillStyle: import("@excalidraw/element/types").FillStyle;
240
222
  strokeWidth: number;
241
223
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
242
- roundness: {
224
+ roundness: null | {
243
225
  type: import("@excalidraw/element/types").RoundnessType;
244
- value?: number | undefined;
245
- } | null;
226
+ value?: number;
227
+ };
246
228
  roughness: number;
247
229
  opacity: number;
248
230
  width: number;
249
231
  height: number;
250
- angle: import("../../math/src").Radians;
232
+ angle: import("@excalidraw/math").Radians;
251
233
  seed: number;
252
234
  version: number;
253
235
  versionNonce: number;
254
236
  index: import("@excalidraw/element/types").FractionalIndex | null;
255
237
  isDeleted: boolean;
256
- groupIds: readonly string[];
238
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
257
239
  frameId: string | null;
258
- boundElements: readonly Readonly<{
259
- id: string;
260
- type: "text" | "arrow";
261
- }>[] | null;
240
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
262
241
  updated: number;
263
242
  link: string | null;
264
243
  locked: boolean;
265
- customData?: Record<string, any> | undefined;
244
+ customData?: Record<string, any>;
266
245
  }> & Readonly<{
267
- type: "text";
268
- fontSize: number;
269
- fontFamily: number;
270
- text: string;
271
- textAlign: string;
272
- verticalAlign: string;
273
- containerId: string | null;
274
- originalText: string;
275
- autoResize: boolean;
276
- lineHeight: number & {
277
- _brand: "unitlessLineHeight";
278
- };
246
+ type: "line" | "arrow";
247
+ points: readonly import("@excalidraw/math").LocalPoint[];
248
+ startBinding: import("@excalidraw/element/types").FixedPointBinding | null;
249
+ endBinding: import("@excalidraw/element/types").FixedPointBinding | null;
250
+ startArrowhead: import("@excalidraw/element/types").Arrowhead | null;
251
+ endArrowhead: import("@excalidraw/element/types").Arrowhead | null;
279
252
  }> & {
280
253
  index: import("@excalidraw/element/types").FractionalIndex;
281
254
  }) | (Readonly<{
@@ -287,32 +260,29 @@ export declare const actionTogglePolygon: {
287
260
  fillStyle: import("@excalidraw/element/types").FillStyle;
288
261
  strokeWidth: number;
289
262
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
290
- roundness: {
263
+ roundness: null | {
291
264
  type: import("@excalidraw/element/types").RoundnessType;
292
- value?: number | undefined;
293
- } | null;
265
+ value?: number;
266
+ };
294
267
  roughness: number;
295
268
  opacity: number;
296
269
  width: number;
297
270
  height: number;
298
- angle: import("../../math/src").Radians;
271
+ angle: import("@excalidraw/math").Radians;
299
272
  seed: number;
300
273
  version: number;
301
274
  versionNonce: number;
302
275
  index: import("@excalidraw/element/types").FractionalIndex | null;
303
276
  isDeleted: boolean;
304
- groupIds: readonly string[];
277
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
305
278
  frameId: string | null;
306
- boundElements: readonly Readonly<{
307
- id: string;
308
- type: "text" | "arrow";
309
- }>[] | null;
279
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
310
280
  updated: number;
311
281
  link: string | null;
312
282
  locked: boolean;
313
- customData?: Record<string, any> | undefined;
283
+ customData?: Record<string, any>;
314
284
  }> & {
315
- type: "rectangle";
285
+ type: "selection";
316
286
  } & {
317
287
  index: import("@excalidraw/element/types").FractionalIndex;
318
288
  }) | (Readonly<{
@@ -324,32 +294,29 @@ export declare const actionTogglePolygon: {
324
294
  fillStyle: import("@excalidraw/element/types").FillStyle;
325
295
  strokeWidth: number;
326
296
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
327
- roundness: {
297
+ roundness: null | {
328
298
  type: import("@excalidraw/element/types").RoundnessType;
329
- value?: number | undefined;
330
- } | null;
299
+ value?: number;
300
+ };
331
301
  roughness: number;
332
302
  opacity: number;
333
303
  width: number;
334
304
  height: number;
335
- angle: import("../../math/src").Radians;
305
+ angle: import("@excalidraw/math").Radians;
336
306
  seed: number;
337
307
  version: number;
338
308
  versionNonce: number;
339
309
  index: import("@excalidraw/element/types").FractionalIndex | null;
340
310
  isDeleted: boolean;
341
- groupIds: readonly string[];
311
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
342
312
  frameId: string | null;
343
- boundElements: readonly Readonly<{
344
- id: string;
345
- type: "text" | "arrow";
346
- }>[] | null;
313
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
347
314
  updated: number;
348
315
  link: string | null;
349
316
  locked: boolean;
350
- customData?: Record<string, any> | undefined;
317
+ customData?: Record<string, any>;
351
318
  }> & {
352
- type: "diamond";
319
+ type: "rectangle";
353
320
  } & {
354
321
  index: import("@excalidraw/element/types").FractionalIndex;
355
322
  }) | (Readonly<{
@@ -361,33 +328,29 @@ export declare const actionTogglePolygon: {
361
328
  fillStyle: import("@excalidraw/element/types").FillStyle;
362
329
  strokeWidth: number;
363
330
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
364
- roundness: {
331
+ roundness: null | {
365
332
  type: import("@excalidraw/element/types").RoundnessType;
366
- value?: number | undefined;
367
- } | null;
333
+ value?: number;
334
+ };
368
335
  roughness: number;
369
336
  opacity: number;
370
337
  width: number;
371
338
  height: number;
372
- angle: import("../../math/src").Radians;
339
+ angle: import("@excalidraw/math").Radians;
373
340
  seed: number;
374
341
  version: number;
375
342
  versionNonce: number;
376
343
  index: import("@excalidraw/element/types").FractionalIndex | null;
377
344
  isDeleted: boolean;
378
- groupIds: readonly string[];
345
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
379
346
  frameId: string | null;
380
- boundElements: readonly Readonly<{
381
- id: string;
382
- type: "text" | "arrow";
383
- }>[] | null;
347
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
384
348
  updated: number;
385
349
  link: string | null;
386
350
  locked: boolean;
387
- customData?: Record<string, any> | undefined;
351
+ customData?: Record<string, any>;
388
352
  }> & {
389
- type: "frame";
390
- name: string | null;
353
+ type: "diamond";
391
354
  } & {
392
355
  index: import("@excalidraw/element/types").FractionalIndex;
393
356
  }) | (Readonly<{
@@ -399,33 +362,29 @@ export declare const actionTogglePolygon: {
399
362
  fillStyle: import("@excalidraw/element/types").FillStyle;
400
363
  strokeWidth: number;
401
364
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
402
- roundness: {
365
+ roundness: null | {
403
366
  type: import("@excalidraw/element/types").RoundnessType;
404
- value?: number | undefined;
405
- } | null;
367
+ value?: number;
368
+ };
406
369
  roughness: number;
407
370
  opacity: number;
408
371
  width: number;
409
372
  height: number;
410
- angle: import("../../math/src").Radians;
373
+ angle: import("@excalidraw/math").Radians;
411
374
  seed: number;
412
375
  version: number;
413
376
  versionNonce: number;
414
377
  index: import("@excalidraw/element/types").FractionalIndex | null;
415
378
  isDeleted: boolean;
416
- groupIds: readonly string[];
379
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
417
380
  frameId: string | null;
418
- boundElements: readonly Readonly<{
419
- id: string;
420
- type: "text" | "arrow";
421
- }>[] | null;
381
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
422
382
  updated: number;
423
383
  link: string | null;
424
384
  locked: boolean;
425
- customData?: Record<string, any> | undefined;
385
+ customData?: Record<string, any>;
426
386
  }> & {
427
- type: "magicframe";
428
- name: string | null;
387
+ type: "ellipse";
429
388
  } & {
430
389
  index: import("@excalidraw/element/types").FractionalIndex;
431
390
  }) | (Readonly<{
@@ -437,30 +396,27 @@ export declare const actionTogglePolygon: {
437
396
  fillStyle: import("@excalidraw/element/types").FillStyle;
438
397
  strokeWidth: number;
439
398
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
440
- roundness: {
399
+ roundness: null | {
441
400
  type: import("@excalidraw/element/types").RoundnessType;
442
- value?: number | undefined;
443
- } | null;
401
+ value?: number;
402
+ };
444
403
  roughness: number;
445
404
  opacity: number;
446
405
  width: number;
447
406
  height: number;
448
- angle: import("../../math/src").Radians;
407
+ angle: import("@excalidraw/math").Radians;
449
408
  seed: number;
450
409
  version: number;
451
410
  versionNonce: number;
452
411
  index: import("@excalidraw/element/types").FractionalIndex | null;
453
412
  isDeleted: boolean;
454
- groupIds: readonly string[];
413
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
455
414
  frameId: string | null;
456
- boundElements: readonly Readonly<{
457
- id: string;
458
- type: "text" | "arrow";
459
- }>[] | null;
415
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
460
416
  updated: number;
461
417
  link: string | null;
462
418
  locked: boolean;
463
- customData?: Record<string, any> | undefined;
419
+ customData?: Record<string, any>;
464
420
  }> & Readonly<{
465
421
  type: "embeddable";
466
422
  }> & {
@@ -474,36 +430,32 @@ export declare const actionTogglePolygon: {
474
430
  fillStyle: import("@excalidraw/element/types").FillStyle;
475
431
  strokeWidth: number;
476
432
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
477
- roundness: {
433
+ roundness: null | {
478
434
  type: import("@excalidraw/element/types").RoundnessType;
479
- value?: number | undefined;
480
- } | null;
435
+ value?: number;
436
+ };
481
437
  roughness: number;
482
438
  opacity: number;
483
439
  width: number;
484
440
  height: number;
485
- angle: import("../../math/src").Radians;
441
+ angle: import("@excalidraw/math").Radians;
486
442
  seed: number;
487
443
  version: number;
488
444
  versionNonce: number;
489
445
  index: import("@excalidraw/element/types").FractionalIndex | null;
490
446
  isDeleted: boolean;
491
- groupIds: readonly string[];
447
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
492
448
  frameId: string | null;
493
- boundElements: readonly Readonly<{
494
- id: string;
495
- type: "text" | "arrow";
496
- }>[] | null;
449
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
497
450
  updated: number;
498
451
  link: string | null;
499
452
  locked: boolean;
500
- customData?: Record<string, any> | undefined;
453
+ customData?: Record<string, any>;
501
454
  }> & Readonly<{
502
- type: "image";
503
- fileId: import("@excalidraw/element/types").FileId | null;
504
- status: "pending" | "saved" | "error";
505
- scale: [number, number];
506
- crop: import("@excalidraw/element/types").ImageCrop | null;
455
+ type: "iframe";
456
+ customData?: {
457
+ generationData?: import("@excalidraw/element/types").MagicGenerationData;
458
+ };
507
459
  }> & {
508
460
  index: import("@excalidraw/element/types").FractionalIndex;
509
461
  }) | (Readonly<{
@@ -515,35 +467,33 @@ export declare const actionTogglePolygon: {
515
467
  fillStyle: import("@excalidraw/element/types").FillStyle;
516
468
  strokeWidth: number;
517
469
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
518
- roundness: {
470
+ roundness: null | {
519
471
  type: import("@excalidraw/element/types").RoundnessType;
520
- value?: number | undefined;
521
- } | null;
472
+ value?: number;
473
+ };
522
474
  roughness: number;
523
475
  opacity: number;
524
476
  width: number;
525
477
  height: number;
526
- angle: import("../../math/src").Radians;
478
+ angle: import("@excalidraw/math").Radians;
527
479
  seed: number;
528
480
  version: number;
529
481
  versionNonce: number;
530
482
  index: import("@excalidraw/element/types").FractionalIndex | null;
531
483
  isDeleted: boolean;
532
- groupIds: readonly string[];
484
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
533
485
  frameId: string | null;
534
- boundElements: readonly Readonly<{
535
- id: string;
536
- type: "text" | "arrow";
537
- }>[] | null;
486
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
538
487
  updated: number;
539
488
  link: string | null;
540
489
  locked: boolean;
541
- customData?: Record<string, any> | undefined;
490
+ customData?: Record<string, any>;
542
491
  }> & Readonly<{
543
- type: "iframe";
544
- customData?: {
545
- generationData?: import("@excalidraw/element/types").MagicGenerationData | undefined;
546
- } | undefined;
492
+ type: "image";
493
+ fileId: import("@excalidraw/element/types").FileId | null;
494
+ status: "pending" | "saved" | "error";
495
+ scale: [number, number];
496
+ crop: import("@excalidraw/element/types").ImageCrop | null;
547
497
  }> & {
548
498
  index: import("@excalidraw/element/types").FractionalIndex;
549
499
  }) | (Readonly<{
@@ -555,32 +505,30 @@ export declare const actionTogglePolygon: {
555
505
  fillStyle: import("@excalidraw/element/types").FillStyle;
556
506
  strokeWidth: number;
557
507
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
558
- roundness: {
508
+ roundness: null | {
559
509
  type: import("@excalidraw/element/types").RoundnessType;
560
- value?: number | undefined;
561
- } | null;
510
+ value?: number;
511
+ };
562
512
  roughness: number;
563
513
  opacity: number;
564
514
  width: number;
565
515
  height: number;
566
- angle: import("../../math/src").Radians;
516
+ angle: import("@excalidraw/math").Radians;
567
517
  seed: number;
568
518
  version: number;
569
519
  versionNonce: number;
570
520
  index: import("@excalidraw/element/types").FractionalIndex | null;
571
521
  isDeleted: boolean;
572
- groupIds: readonly string[];
522
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
573
523
  frameId: string | null;
574
- boundElements: readonly Readonly<{
575
- id: string;
576
- type: "text" | "arrow";
577
- }>[] | null;
524
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
578
525
  updated: number;
579
526
  link: string | null;
580
527
  locked: boolean;
581
- customData?: Record<string, any> | undefined;
528
+ customData?: Record<string, any>;
582
529
  }> & {
583
- type: "selection";
530
+ type: "frame";
531
+ name: string | null;
584
532
  } & {
585
533
  index: import("@excalidraw/element/types").FractionalIndex;
586
534
  }) | (Readonly<{
@@ -592,32 +540,30 @@ export declare const actionTogglePolygon: {
592
540
  fillStyle: import("@excalidraw/element/types").FillStyle;
593
541
  strokeWidth: number;
594
542
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
595
- roundness: {
543
+ roundness: null | {
596
544
  type: import("@excalidraw/element/types").RoundnessType;
597
- value?: number | undefined;
598
- } | null;
545
+ value?: number;
546
+ };
599
547
  roughness: number;
600
548
  opacity: number;
601
549
  width: number;
602
550
  height: number;
603
- angle: import("../../math/src").Radians;
551
+ angle: import("@excalidraw/math").Radians;
604
552
  seed: number;
605
553
  version: number;
606
554
  versionNonce: number;
607
555
  index: import("@excalidraw/element/types").FractionalIndex | null;
608
556
  isDeleted: boolean;
609
- groupIds: readonly string[];
557
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
610
558
  frameId: string | null;
611
- boundElements: readonly Readonly<{
612
- id: string;
613
- type: "text" | "arrow";
614
- }>[] | null;
559
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
615
560
  updated: number;
616
561
  link: string | null;
617
562
  locked: boolean;
618
- customData?: Record<string, any> | undefined;
563
+ customData?: Record<string, any>;
619
564
  }> & {
620
- type: "ellipse";
565
+ type: "magicframe";
566
+ name: string | null;
621
567
  } & {
622
568
  index: import("@excalidraw/element/types").FractionalIndex;
623
569
  }) | (Readonly<{
@@ -629,38 +575,40 @@ export declare const actionTogglePolygon: {
629
575
  fillStyle: import("@excalidraw/element/types").FillStyle;
630
576
  strokeWidth: number;
631
577
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
632
- roundness: {
578
+ roundness: null | {
633
579
  type: import("@excalidraw/element/types").RoundnessType;
634
- value?: number | undefined;
635
- } | null;
580
+ value?: number;
581
+ };
636
582
  roughness: number;
637
583
  opacity: number;
638
584
  width: number;
639
585
  height: number;
640
- angle: import("../../math/src").Radians;
586
+ angle: import("@excalidraw/math").Radians;
641
587
  seed: number;
642
588
  version: number;
643
589
  versionNonce: number;
644
590
  index: import("@excalidraw/element/types").FractionalIndex | null;
645
591
  isDeleted: boolean;
646
- groupIds: readonly string[];
592
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
647
593
  frameId: string | null;
648
- boundElements: readonly Readonly<{
649
- id: string;
650
- type: "text" | "arrow";
651
- }>[] | null;
594
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
652
595
  updated: number;
653
596
  link: string | null;
654
597
  locked: boolean;
655
- customData?: Record<string, any> | undefined;
598
+ customData?: Record<string, any>;
656
599
  }> & Readonly<{
657
- type: "line" | "arrow";
658
- points: readonly import("../../math/src").LocalPoint[];
659
- lastCommittedPoint: import("../../math/src").LocalPoint | null;
660
- startBinding: import("@excalidraw/element/types").PointBinding | null;
661
- endBinding: import("@excalidraw/element/types").PointBinding | null;
662
- startArrowhead: import("@excalidraw/element/types").Arrowhead | null;
663
- endArrowhead: import("@excalidraw/element/types").Arrowhead | null;
600
+ type: "text";
601
+ fontSize: number;
602
+ fontFamily: import("@excalidraw/element/types").FontFamilyValues;
603
+ text: string;
604
+ textAlign: import("@excalidraw/element/types").TextAlign;
605
+ verticalAlign: import("@excalidraw/element/types").VerticalAlign;
606
+ containerId: import("@excalidraw/element/types").ExcalidrawGenericElement["id"] | null;
607
+ originalText: string;
608
+ autoResize: boolean;
609
+ lineHeight: number & {
610
+ _brand: "unitlessLineHeight";
611
+ };
664
612
  }> & {
665
613
  index: import("@excalidraw/element/types").FractionalIndex;
666
614
  }) | (Readonly<{
@@ -672,36 +620,32 @@ export declare const actionTogglePolygon: {
672
620
  fillStyle: import("@excalidraw/element/types").FillStyle;
673
621
  strokeWidth: number;
674
622
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
675
- roundness: {
623
+ roundness: null | {
676
624
  type: import("@excalidraw/element/types").RoundnessType;
677
- value?: number | undefined;
678
- } | null;
625
+ value?: number;
626
+ };
679
627
  roughness: number;
680
628
  opacity: number;
681
629
  width: number;
682
630
  height: number;
683
- angle: import("../../math/src").Radians;
631
+ angle: import("@excalidraw/math").Radians;
684
632
  seed: number;
685
633
  version: number;
686
634
  versionNonce: number;
687
635
  index: import("@excalidraw/element/types").FractionalIndex | null;
688
636
  isDeleted: boolean;
689
- groupIds: readonly string[];
637
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
690
638
  frameId: string | null;
691
- boundElements: readonly Readonly<{
692
- id: string;
693
- type: "text" | "arrow";
694
- }>[] | null;
639
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
695
640
  updated: number;
696
641
  link: string | null;
697
642
  locked: boolean;
698
- customData?: Record<string, any> | undefined;
643
+ customData?: Record<string, any>;
699
644
  }> & Readonly<{
700
645
  type: "freedraw";
701
- points: readonly import("../../math/src").LocalPoint[];
646
+ points: readonly import("@excalidraw/math").LocalPoint[];
702
647
  pressures: readonly number[];
703
648
  simulatePressure: boolean;
704
- lastCommittedPoint: import("../../math/src").LocalPoint | null;
705
649
  }> & {
706
650
  index: import("@excalidraw/element/types").FractionalIndex;
707
651
  }))[];