@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 { ExcalidrawElement } from "@excalidraw/element/types";
3
2
  import type { AppClassProperties, AppState } from "../types";
4
3
  export declare const actionSelectAllElementsInFrame: {
@@ -7,7 +6,7 @@ export declare const actionSelectAllElementsInFrame: {
7
6
  trackEvent: {
8
7
  category: "canvas";
9
8
  };
10
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: AppClassProperties) => {
9
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
11
10
  elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[];
12
11
  appState: {
13
12
  selectedElementIds: Record<string, true>;
@@ -18,10 +17,10 @@ export declare const actionSelectAllElementsInFrame: {
18
17
  } | null;
19
18
  showWelcomeScreen: boolean;
20
19
  isLoading: boolean;
21
- errorMessage: import("react").ReactNode;
20
+ errorMessage: React.ReactNode;
22
21
  activeEmbeddable: {
23
22
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
24
- state: "active" | "hover";
23
+ state: "hover" | "active";
25
24
  } | null;
26
25
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
27
26
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
@@ -29,7 +28,7 @@ export declare const actionSelectAllElementsInFrame: {
29
28
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
30
29
  isBindingEnabled: boolean;
31
30
  startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
32
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
31
+ suggestedBinding: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
33
32
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
34
33
  frameRendering: {
35
34
  enabled: boolean;
@@ -45,6 +44,10 @@ export declare const actionSelectAllElementsInFrame: {
45
44
  locked: boolean;
46
45
  fromSelection: boolean;
47
46
  } & import("../types").ActiveTool;
47
+ preferredSelectionTool: {
48
+ type: "selection" | "lasso";
49
+ initialized: boolean;
50
+ };
48
51
  penMode: boolean;
49
52
  penDetected: boolean;
50
53
  exportBackground: boolean;
@@ -53,19 +56,19 @@ export declare const actionSelectAllElementsInFrame: {
53
56
  exportScale: number;
54
57
  currentItemStrokeColor: string;
55
58
  currentItemBackgroundColor: string;
56
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
59
+ currentItemFillStyle: ExcalidrawElement["fillStyle"];
57
60
  currentItemStrokeWidth: number;
58
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
61
+ currentItemStrokeStyle: ExcalidrawElement["strokeStyle"];
59
62
  currentItemRoughness: number;
60
63
  currentItemOpacity: number;
61
- currentItemFontFamily: number;
64
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
62
65
  currentItemFontSize: number;
63
- currentItemTextAlign: string;
66
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
64
67
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
65
68
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
66
- currentHoveredFontFamily: number | null;
69
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
67
70
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
68
- currentItemArrowType: "round" | "sharp" | "elbow";
71
+ currentItemArrowType: "sharp" | "round" | "elbow";
69
72
  viewBackgroundColor: string;
70
73
  scrollX: number;
71
74
  scrollY: number;
@@ -74,26 +77,26 @@ export declare const actionSelectAllElementsInFrame: {
74
77
  name: string | null;
75
78
  isResizing: boolean;
76
79
  isRotating: boolean;
77
- zoom: Readonly<{
78
- value: import("../types").NormalizedZoomValue;
79
- }>;
80
- openMenu: "canvas" | "shape" | null;
81
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
80
+ zoom: import("../types").Zoom;
81
+ openMenu: "canvas" | null;
82
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
82
83
  openSidebar: {
83
- name: string;
84
- tab?: string | undefined;
84
+ name: import("../types").SidebarName;
85
+ tab?: import("../types").SidebarTabName;
85
86
  } | null;
86
- openDialog: {
87
+ openDialog: null | {
87
88
  name: "imageExport" | "help" | "jsonExport";
88
89
  } | {
89
90
  name: "ttd";
90
- tab: "mermaid" | "text-to-diagram";
91
+ tab: "text-to-diagram" | "mermaid";
91
92
  } | {
92
93
  name: "commandPalette";
94
+ } | {
95
+ name: "settings";
93
96
  } | {
94
97
  name: "elementLinkSelector";
95
- sourceElementId: string;
96
- } | null;
98
+ sourceElementId: ExcalidrawElement["id"];
99
+ };
97
100
  defaultSidebarDockedPreference: boolean;
98
101
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
99
102
  hoveredElementIds: Readonly<{
@@ -106,8 +109,8 @@ export declare const actionSelectAllElementsInFrame: {
106
109
  shouldCacheIgnoreZoom: boolean;
107
110
  toast: {
108
111
  message: string;
109
- closable?: boolean | undefined;
110
- duration?: number | undefined;
112
+ closable?: boolean;
113
+ duration?: number;
111
114
  } | null;
112
115
  zenModeEnabled: boolean;
113
116
  theme: import("@excalidraw/element/types").Theme;
@@ -118,32 +121,13 @@ export declare const actionSelectAllElementsInFrame: {
118
121
  selectedGroupIds: {
119
122
  [groupId: string]: boolean;
120
123
  };
121
- editingGroupId: string | null;
124
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
122
125
  width: number;
123
126
  height: number;
124
127
  offsetTop: number;
125
128
  offsetLeft: number;
126
129
  fileHandle: import("browser-fs-access").FileSystemHandle | null;
127
- collaborators: Map<import("../types").SocketId, Readonly<{
128
- pointer?: import("../types").CollaboratorPointer | undefined;
129
- button?: "up" | "down" | undefined;
130
- selectedElementIds?: Readonly<{
131
- [id: string]: true;
132
- }> | undefined;
133
- username?: string | null | undefined;
134
- userState?: import("@excalidraw/common").UserIdleState | undefined;
135
- color?: {
136
- background: string;
137
- stroke: string;
138
- } | undefined;
139
- avatarUrl?: string | undefined;
140
- id?: string | undefined;
141
- socketId?: import("../types").SocketId | undefined;
142
- isCurrentUser?: boolean | undefined;
143
- isInCall?: boolean | undefined;
144
- isSpeaking?: boolean | undefined;
145
- isMuted?: boolean | undefined;
146
- }>>;
130
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
147
131
  stats: {
148
132
  open: boolean;
149
133
  panels: number;
@@ -156,7 +140,7 @@ export declare const actionSelectAllElementsInFrame: {
156
140
  shown: true;
157
141
  data: import("../charts").Spreadsheet;
158
142
  };
159
- showHyperlinkPopup: false | "editor" | "info";
143
+ showHyperlinkPopup: false | "info" | "editor";
160
144
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
161
145
  snapLines: readonly import("../snapping").SnapLine[];
162
146
  originSnapOffset: {
@@ -167,16 +151,16 @@ export declare const actionSelectAllElementsInFrame: {
167
151
  userToFollow: import("../types").UserToFollow | null;
168
152
  followedBy: Set<import("../types").SocketId>;
169
153
  isCropping: boolean;
170
- croppingElementId: string | null;
154
+ croppingElementId: ExcalidrawElement["id"] | null;
171
155
  searchMatches: Readonly<{
172
- focusedId: string | null;
156
+ focusedId: ExcalidrawElement["id"] | null;
173
157
  matches: readonly import("../types").SearchMatch[];
174
158
  }> | null;
175
159
  activeLockedId: string | null;
176
160
  lockedMultiSelections: {
177
161
  [groupId: string]: true;
178
162
  };
179
- stylesPanelMode: "compact" | "full";
163
+ bindMode: import("@excalidraw/element/types").BindMode;
180
164
  };
181
165
  captureUpdate: "IMMEDIATELY";
182
166
  } | {
@@ -194,7 +178,7 @@ export declare const actionRemoveAllElementsFromFrame: {
194
178
  trackEvent: {
195
179
  category: "history";
196
180
  };
197
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: AppClassProperties) => {
181
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
198
182
  elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[];
199
183
  appState: {
200
184
  selectedElementIds: {
@@ -207,10 +191,10 @@ export declare const actionRemoveAllElementsFromFrame: {
207
191
  } | null;
208
192
  showWelcomeScreen: boolean;
209
193
  isLoading: boolean;
210
- errorMessage: import("react").ReactNode;
194
+ errorMessage: React.ReactNode;
211
195
  activeEmbeddable: {
212
196
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
213
- state: "active" | "hover";
197
+ state: "hover" | "active";
214
198
  } | null;
215
199
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
216
200
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
@@ -218,7 +202,7 @@ export declare const actionRemoveAllElementsFromFrame: {
218
202
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
219
203
  isBindingEnabled: boolean;
220
204
  startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
221
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
205
+ suggestedBinding: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
222
206
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
223
207
  frameRendering: {
224
208
  enabled: boolean;
@@ -234,6 +218,10 @@ export declare const actionRemoveAllElementsFromFrame: {
234
218
  locked: boolean;
235
219
  fromSelection: boolean;
236
220
  } & import("../types").ActiveTool;
221
+ preferredSelectionTool: {
222
+ type: "selection" | "lasso";
223
+ initialized: boolean;
224
+ };
237
225
  penMode: boolean;
238
226
  penDetected: boolean;
239
227
  exportBackground: boolean;
@@ -242,19 +230,19 @@ export declare const actionRemoveAllElementsFromFrame: {
242
230
  exportScale: number;
243
231
  currentItemStrokeColor: string;
244
232
  currentItemBackgroundColor: string;
245
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
233
+ currentItemFillStyle: ExcalidrawElement["fillStyle"];
246
234
  currentItemStrokeWidth: number;
247
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
235
+ currentItemStrokeStyle: ExcalidrawElement["strokeStyle"];
248
236
  currentItemRoughness: number;
249
237
  currentItemOpacity: number;
250
- currentItemFontFamily: number;
238
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
251
239
  currentItemFontSize: number;
252
- currentItemTextAlign: string;
240
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
253
241
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
254
242
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
255
- currentHoveredFontFamily: number | null;
243
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
256
244
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
257
- currentItemArrowType: "round" | "sharp" | "elbow";
245
+ currentItemArrowType: "sharp" | "round" | "elbow";
258
246
  viewBackgroundColor: string;
259
247
  scrollX: number;
260
248
  scrollY: number;
@@ -263,26 +251,26 @@ export declare const actionRemoveAllElementsFromFrame: {
263
251
  name: string | null;
264
252
  isResizing: boolean;
265
253
  isRotating: boolean;
266
- zoom: Readonly<{
267
- value: import("../types").NormalizedZoomValue;
268
- }>;
269
- openMenu: "canvas" | "shape" | null;
270
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
254
+ zoom: import("../types").Zoom;
255
+ openMenu: "canvas" | null;
256
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
271
257
  openSidebar: {
272
- name: string;
273
- tab?: string | undefined;
258
+ name: import("../types").SidebarName;
259
+ tab?: import("../types").SidebarTabName;
274
260
  } | null;
275
- openDialog: {
261
+ openDialog: null | {
276
262
  name: "imageExport" | "help" | "jsonExport";
277
263
  } | {
278
264
  name: "ttd";
279
- tab: "mermaid" | "text-to-diagram";
265
+ tab: "text-to-diagram" | "mermaid";
280
266
  } | {
281
267
  name: "commandPalette";
268
+ } | {
269
+ name: "settings";
282
270
  } | {
283
271
  name: "elementLinkSelector";
284
- sourceElementId: string;
285
- } | null;
272
+ sourceElementId: ExcalidrawElement["id"];
273
+ };
286
274
  defaultSidebarDockedPreference: boolean;
287
275
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
288
276
  hoveredElementIds: Readonly<{
@@ -295,8 +283,8 @@ export declare const actionRemoveAllElementsFromFrame: {
295
283
  shouldCacheIgnoreZoom: boolean;
296
284
  toast: {
297
285
  message: string;
298
- closable?: boolean | undefined;
299
- duration?: number | undefined;
286
+ closable?: boolean;
287
+ duration?: number;
300
288
  } | null;
301
289
  zenModeEnabled: boolean;
302
290
  theme: import("@excalidraw/element/types").Theme;
@@ -307,32 +295,13 @@ export declare const actionRemoveAllElementsFromFrame: {
307
295
  selectedGroupIds: {
308
296
  [groupId: string]: boolean;
309
297
  };
310
- editingGroupId: string | null;
298
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
311
299
  width: number;
312
300
  height: number;
313
301
  offsetTop: number;
314
302
  offsetLeft: number;
315
303
  fileHandle: import("browser-fs-access").FileSystemHandle | null;
316
- collaborators: Map<import("../types").SocketId, Readonly<{
317
- pointer?: import("../types").CollaboratorPointer | undefined;
318
- button?: "up" | "down" | undefined;
319
- selectedElementIds?: Readonly<{
320
- [id: string]: true;
321
- }> | undefined;
322
- username?: string | null | undefined;
323
- userState?: import("@excalidraw/common").UserIdleState | undefined;
324
- color?: {
325
- background: string;
326
- stroke: string;
327
- } | undefined;
328
- avatarUrl?: string | undefined;
329
- id?: string | undefined;
330
- socketId?: import("../types").SocketId | undefined;
331
- isCurrentUser?: boolean | undefined;
332
- isInCall?: boolean | undefined;
333
- isSpeaking?: boolean | undefined;
334
- isMuted?: boolean | undefined;
335
- }>>;
304
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
336
305
  stats: {
337
306
  open: boolean;
338
307
  panels: number;
@@ -345,7 +314,7 @@ export declare const actionRemoveAllElementsFromFrame: {
345
314
  shown: true;
346
315
  data: import("../charts").Spreadsheet;
347
316
  };
348
- showHyperlinkPopup: false | "editor" | "info";
317
+ showHyperlinkPopup: false | "info" | "editor";
349
318
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
350
319
  snapLines: readonly import("../snapping").SnapLine[];
351
320
  originSnapOffset: {
@@ -356,16 +325,16 @@ export declare const actionRemoveAllElementsFromFrame: {
356
325
  userToFollow: import("../types").UserToFollow | null;
357
326
  followedBy: Set<import("../types").SocketId>;
358
327
  isCropping: boolean;
359
- croppingElementId: string | null;
328
+ croppingElementId: ExcalidrawElement["id"] | null;
360
329
  searchMatches: Readonly<{
361
- focusedId: string | null;
330
+ focusedId: ExcalidrawElement["id"] | null;
362
331
  matches: readonly import("../types").SearchMatch[];
363
332
  }> | null;
364
333
  activeLockedId: string | null;
365
334
  lockedMultiSelections: {
366
335
  [groupId: string]: true;
367
336
  };
368
- stylesPanelMode: "compact" | "full";
337
+ bindMode: import("@excalidraw/element/types").BindMode;
369
338
  };
370
339
  captureUpdate: "IMMEDIATELY";
371
340
  } | {
@@ -400,10 +369,10 @@ export declare const actionupdateFrameRendering: {
400
369
  } | null;
401
370
  showWelcomeScreen: boolean;
402
371
  isLoading: boolean;
403
- errorMessage: import("react").ReactNode;
372
+ errorMessage: React.ReactNode;
404
373
  activeEmbeddable: {
405
374
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
406
- state: "active" | "hover";
375
+ state: "hover" | "active";
407
376
  } | null;
408
377
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
409
378
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
@@ -411,7 +380,7 @@ export declare const actionupdateFrameRendering: {
411
380
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
412
381
  isBindingEnabled: boolean;
413
382
  startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
414
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
383
+ suggestedBinding: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
415
384
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
416
385
  editingFrame: string | null;
417
386
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
@@ -421,6 +390,10 @@ export declare const actionupdateFrameRendering: {
421
390
  locked: boolean;
422
391
  fromSelection: boolean;
423
392
  } & import("../types").ActiveTool;
393
+ preferredSelectionTool: {
394
+ type: "selection" | "lasso";
395
+ initialized: boolean;
396
+ };
424
397
  penMode: boolean;
425
398
  penDetected: boolean;
426
399
  exportBackground: boolean;
@@ -429,19 +402,19 @@ export declare const actionupdateFrameRendering: {
429
402
  exportScale: number;
430
403
  currentItemStrokeColor: string;
431
404
  currentItemBackgroundColor: string;
432
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
405
+ currentItemFillStyle: ExcalidrawElement["fillStyle"];
433
406
  currentItemStrokeWidth: number;
434
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
407
+ currentItemStrokeStyle: ExcalidrawElement["strokeStyle"];
435
408
  currentItemRoughness: number;
436
409
  currentItemOpacity: number;
437
- currentItemFontFamily: number;
410
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
438
411
  currentItemFontSize: number;
439
- currentItemTextAlign: string;
412
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
440
413
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
441
414
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
442
- currentHoveredFontFamily: number | null;
415
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
443
416
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
444
- currentItemArrowType: "round" | "sharp" | "elbow";
417
+ currentItemArrowType: "sharp" | "round" | "elbow";
445
418
  viewBackgroundColor: string;
446
419
  scrollX: number;
447
420
  scrollY: number;
@@ -450,26 +423,26 @@ export declare const actionupdateFrameRendering: {
450
423
  name: string | null;
451
424
  isResizing: boolean;
452
425
  isRotating: boolean;
453
- zoom: Readonly<{
454
- value: import("../types").NormalizedZoomValue;
455
- }>;
456
- openMenu: "canvas" | "shape" | null;
457
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
426
+ zoom: import("../types").Zoom;
427
+ openMenu: "canvas" | null;
428
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
458
429
  openSidebar: {
459
- name: string;
460
- tab?: string | undefined;
430
+ name: import("../types").SidebarName;
431
+ tab?: import("../types").SidebarTabName;
461
432
  } | null;
462
- openDialog: {
433
+ openDialog: null | {
463
434
  name: "imageExport" | "help" | "jsonExport";
464
435
  } | {
465
436
  name: "ttd";
466
- tab: "mermaid" | "text-to-diagram";
437
+ tab: "text-to-diagram" | "mermaid";
467
438
  } | {
468
439
  name: "commandPalette";
440
+ } | {
441
+ name: "settings";
469
442
  } | {
470
443
  name: "elementLinkSelector";
471
- sourceElementId: string;
472
- } | null;
444
+ sourceElementId: ExcalidrawElement["id"];
445
+ };
473
446
  defaultSidebarDockedPreference: boolean;
474
447
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
475
448
  selectedElementIds: Readonly<{
@@ -485,8 +458,8 @@ export declare const actionupdateFrameRendering: {
485
458
  shouldCacheIgnoreZoom: boolean;
486
459
  toast: {
487
460
  message: string;
488
- closable?: boolean | undefined;
489
- duration?: number | undefined;
461
+ closable?: boolean;
462
+ duration?: number;
490
463
  } | null;
491
464
  zenModeEnabled: boolean;
492
465
  theme: import("@excalidraw/element/types").Theme;
@@ -497,32 +470,13 @@ export declare const actionupdateFrameRendering: {
497
470
  selectedGroupIds: {
498
471
  [groupId: string]: boolean;
499
472
  };
500
- editingGroupId: string | null;
473
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
501
474
  width: number;
502
475
  height: number;
503
476
  offsetTop: number;
504
477
  offsetLeft: number;
505
478
  fileHandle: import("browser-fs-access").FileSystemHandle | null;
506
- collaborators: Map<import("../types").SocketId, Readonly<{
507
- pointer?: import("../types").CollaboratorPointer | undefined;
508
- button?: "up" | "down" | undefined;
509
- selectedElementIds?: Readonly<{
510
- [id: string]: true;
511
- }> | undefined;
512
- username?: string | null | undefined;
513
- userState?: import("@excalidraw/common").UserIdleState | undefined;
514
- color?: {
515
- background: string;
516
- stroke: string;
517
- } | undefined;
518
- avatarUrl?: string | undefined;
519
- id?: string | undefined;
520
- socketId?: import("../types").SocketId | undefined;
521
- isCurrentUser?: boolean | undefined;
522
- isInCall?: boolean | undefined;
523
- isSpeaking?: boolean | undefined;
524
- isMuted?: boolean | undefined;
525
- }>>;
479
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
526
480
  stats: {
527
481
  open: boolean;
528
482
  panels: number;
@@ -535,7 +489,7 @@ export declare const actionupdateFrameRendering: {
535
489
  shown: true;
536
490
  data: import("../charts").Spreadsheet;
537
491
  };
538
- showHyperlinkPopup: false | "editor" | "info";
492
+ showHyperlinkPopup: false | "info" | "editor";
539
493
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
540
494
  snapLines: readonly import("../snapping").SnapLine[];
541
495
  originSnapOffset: {
@@ -546,16 +500,16 @@ export declare const actionupdateFrameRendering: {
546
500
  userToFollow: import("../types").UserToFollow | null;
547
501
  followedBy: Set<import("../types").SocketId>;
548
502
  isCropping: boolean;
549
- croppingElementId: string | null;
503
+ croppingElementId: ExcalidrawElement["id"] | null;
550
504
  searchMatches: Readonly<{
551
- focusedId: string | null;
505
+ focusedId: ExcalidrawElement["id"] | null;
552
506
  matches: readonly import("../types").SearchMatch[];
553
507
  }> | null;
554
508
  activeLockedId: string | null;
555
509
  lockedMultiSelections: {
556
510
  [groupId: string]: true;
557
511
  };
558
- stylesPanelMode: "compact" | "full";
512
+ bindMode: import("@excalidraw/element/types").BindMode;
559
513
  };
560
514
  captureUpdate: "EVENTUALLY";
561
515
  };
@@ -571,7 +525,7 @@ export declare const actionSetFrameAsActiveTool: {
571
525
  };
572
526
  icon: import("react/jsx-runtime").JSX.Element;
573
527
  viewMode: false;
574
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: AppClassProperties) => {
528
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
575
529
  elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[];
576
530
  appState: {
577
531
  activeTool: {
@@ -586,10 +540,10 @@ export declare const actionSetFrameAsActiveTool: {
586
540
  } | null;
587
541
  showWelcomeScreen: boolean;
588
542
  isLoading: boolean;
589
- errorMessage: import("react").ReactNode;
543
+ errorMessage: React.ReactNode;
590
544
  activeEmbeddable: {
591
545
  element: import("@excalidraw/element/types").NonDeletedExcalidrawElement;
592
- state: "active" | "hover";
546
+ state: "hover" | "active";
593
547
  } | null;
594
548
  newElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawNonSelectionElement> | null;
595
549
  resizingElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
@@ -597,7 +551,7 @@ export declare const actionSetFrameAsActiveTool: {
597
551
  selectionElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
598
552
  isBindingEnabled: boolean;
599
553
  startBoundElement: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
600
- suggestedBindings: import("@excalidraw/element").SuggestedBinding[];
554
+ suggestedBinding: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawBindableElement> | null;
601
555
  frameToHighlight: import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameLikeElement> | null;
602
556
  frameRendering: {
603
557
  enabled: boolean;
@@ -608,6 +562,10 @@ export declare const actionSetFrameAsActiveTool: {
608
562
  editingFrame: string | null;
609
563
  elementsToHighlight: import("@excalidraw/element/types").NonDeleted<ExcalidrawElement>[] | null;
610
564
  editingTextElement: import("@excalidraw/element/types").NonDeletedExcalidrawElement | null;
565
+ preferredSelectionTool: {
566
+ type: "selection" | "lasso";
567
+ initialized: boolean;
568
+ };
611
569
  penMode: boolean;
612
570
  penDetected: boolean;
613
571
  exportBackground: boolean;
@@ -616,19 +574,19 @@ export declare const actionSetFrameAsActiveTool: {
616
574
  exportScale: number;
617
575
  currentItemStrokeColor: string;
618
576
  currentItemBackgroundColor: string;
619
- currentItemFillStyle: import("@excalidraw/element/types").FillStyle;
577
+ currentItemFillStyle: ExcalidrawElement["fillStyle"];
620
578
  currentItemStrokeWidth: number;
621
- currentItemStrokeStyle: import("@excalidraw/element/types").StrokeStyle;
579
+ currentItemStrokeStyle: ExcalidrawElement["strokeStyle"];
622
580
  currentItemRoughness: number;
623
581
  currentItemOpacity: number;
624
- currentItemFontFamily: number;
582
+ currentItemFontFamily: import("@excalidraw/element/types").FontFamilyValues;
625
583
  currentItemFontSize: number;
626
- currentItemTextAlign: string;
584
+ currentItemTextAlign: import("@excalidraw/element/types").TextAlign;
627
585
  currentItemStartArrowhead: import("@excalidraw/element/types").Arrowhead | null;
628
586
  currentItemEndArrowhead: import("@excalidraw/element/types").Arrowhead | null;
629
- currentHoveredFontFamily: number | null;
587
+ currentHoveredFontFamily: import("@excalidraw/element/types").FontFamilyValues | null;
630
588
  currentItemRoundness: import("@excalidraw/element/types").StrokeRoundness;
631
- currentItemArrowType: "round" | "sharp" | "elbow";
589
+ currentItemArrowType: "sharp" | "round" | "elbow";
632
590
  viewBackgroundColor: string;
633
591
  scrollX: number;
634
592
  scrollY: number;
@@ -637,26 +595,26 @@ export declare const actionSetFrameAsActiveTool: {
637
595
  name: string | null;
638
596
  isResizing: boolean;
639
597
  isRotating: boolean;
640
- zoom: Readonly<{
641
- value: import("../types").NormalizedZoomValue;
642
- }>;
643
- openMenu: "canvas" | "shape" | null;
644
- openPopup: "fontFamily" | "canvasBackground" | "elementBackground" | "elementStroke" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
598
+ zoom: import("../types").Zoom;
599
+ openMenu: "canvas" | null;
600
+ openPopup: "canvasBackground" | "elementBackground" | "elementStroke" | "fontFamily" | "compactTextProperties" | "compactStrokeStyles" | "compactOtherProperties" | "compactArrowProperties" | null;
645
601
  openSidebar: {
646
- name: string;
647
- tab?: string | undefined;
602
+ name: import("../types").SidebarName;
603
+ tab?: import("../types").SidebarTabName;
648
604
  } | null;
649
- openDialog: {
605
+ openDialog: null | {
650
606
  name: "imageExport" | "help" | "jsonExport";
651
607
  } | {
652
608
  name: "ttd";
653
- tab: "mermaid" | "text-to-diagram";
609
+ tab: "text-to-diagram" | "mermaid";
654
610
  } | {
655
611
  name: "commandPalette";
612
+ } | {
613
+ name: "settings";
656
614
  } | {
657
615
  name: "elementLinkSelector";
658
- sourceElementId: string;
659
- } | null;
616
+ sourceElementId: ExcalidrawElement["id"];
617
+ };
660
618
  defaultSidebarDockedPreference: boolean;
661
619
  lastPointerDownWith: import("@excalidraw/element/types").PointerType;
662
620
  selectedElementIds: Readonly<{
@@ -672,8 +630,8 @@ export declare const actionSetFrameAsActiveTool: {
672
630
  shouldCacheIgnoreZoom: boolean;
673
631
  toast: {
674
632
  message: string;
675
- closable?: boolean | undefined;
676
- duration?: number | undefined;
633
+ closable?: boolean;
634
+ duration?: number;
677
635
  } | null;
678
636
  zenModeEnabled: boolean;
679
637
  theme: import("@excalidraw/element/types").Theme;
@@ -684,32 +642,13 @@ export declare const actionSetFrameAsActiveTool: {
684
642
  selectedGroupIds: {
685
643
  [groupId: string]: boolean;
686
644
  };
687
- editingGroupId: string | null;
645
+ editingGroupId: import("@excalidraw/element/types").GroupId | null;
688
646
  width: number;
689
647
  height: number;
690
648
  offsetTop: number;
691
649
  offsetLeft: number;
692
650
  fileHandle: import("browser-fs-access").FileSystemHandle | null;
693
- collaborators: Map<import("../types").SocketId, Readonly<{
694
- pointer?: import("../types").CollaboratorPointer | undefined;
695
- button?: "up" | "down" | undefined;
696
- selectedElementIds?: Readonly<{
697
- [id: string]: true;
698
- }> | undefined;
699
- username?: string | null | undefined;
700
- userState?: import("@excalidraw/common").UserIdleState | undefined;
701
- color?: {
702
- background: string;
703
- stroke: string;
704
- } | undefined;
705
- avatarUrl?: string | undefined;
706
- id?: string | undefined;
707
- socketId?: import("../types").SocketId | undefined;
708
- isCurrentUser?: boolean | undefined;
709
- isInCall?: boolean | undefined;
710
- isSpeaking?: boolean | undefined;
711
- isMuted?: boolean | undefined;
712
- }>>;
651
+ collaborators: Map<import("../types").SocketId, import("../types").Collaborator>;
713
652
  stats: {
714
653
  open: boolean;
715
654
  panels: number;
@@ -722,7 +661,7 @@ export declare const actionSetFrameAsActiveTool: {
722
661
  shown: true;
723
662
  data: import("../charts").Spreadsheet;
724
663
  };
725
- showHyperlinkPopup: false | "editor" | "info";
664
+ showHyperlinkPopup: false | "info" | "editor";
726
665
  selectedLinearElement: import("@excalidraw/element").LinearElementEditor | null;
727
666
  snapLines: readonly import("../snapping").SnapLine[];
728
667
  originSnapOffset: {
@@ -733,16 +672,16 @@ export declare const actionSetFrameAsActiveTool: {
733
672
  userToFollow: import("../types").UserToFollow | null;
734
673
  followedBy: Set<import("../types").SocketId>;
735
674
  isCropping: boolean;
736
- croppingElementId: string | null;
675
+ croppingElementId: ExcalidrawElement["id"] | null;
737
676
  searchMatches: Readonly<{
738
- focusedId: string | null;
677
+ focusedId: ExcalidrawElement["id"] | null;
739
678
  matches: readonly import("../types").SearchMatch[];
740
679
  }> | null;
741
680
  activeLockedId: string | null;
742
681
  lockedMultiSelections: {
743
682
  [groupId: string]: true;
744
683
  };
745
- stylesPanelMode: "compact" | "full";
684
+ bindMode: import("@excalidraw/element/types").BindMode;
746
685
  };
747
686
  captureUpdate: "EVENTUALLY";
748
687
  };
@@ -757,7 +696,7 @@ export declare const actionWrapSelectionInFrame: {
757
696
  category: "element";
758
697
  };
759
698
  predicate: (elements: readonly ExcalidrawElement[], appState: AppState, _: import("../types").ExcalidrawProps, app: AppClassProperties) => boolean;
760
- perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: any, app: AppClassProperties) => {
699
+ perform: (elements: readonly import("@excalidraw/element/types").OrderedExcalidrawElement[], appState: Readonly<AppState>, _: unknown, app: AppClassProperties) => {
761
700
  elements: ((Readonly<{
762
701
  id: string;
763
702
  x: number;
@@ -767,43 +706,34 @@ export declare const actionWrapSelectionInFrame: {
767
706
  fillStyle: import("@excalidraw/element/types").FillStyle;
768
707
  strokeWidth: number;
769
708
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
770
- roundness: {
709
+ roundness: null | {
771
710
  type: import("@excalidraw/element/types").RoundnessType;
772
- value?: number | undefined;
773
- } | null;
711
+ value?: number;
712
+ };
774
713
  roughness: number;
775
714
  opacity: number;
776
715
  width: number;
777
716
  height: number;
778
- angle: import("../../math/src").Radians;
717
+ angle: import("@excalidraw/math").Radians;
779
718
  seed: number;
780
719
  version: number;
781
720
  versionNonce: number;
782
721
  index: import("@excalidraw/element/types").FractionalIndex | null;
783
722
  isDeleted: boolean;
784
- groupIds: readonly string[];
723
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
785
724
  frameId: string | null;
786
- boundElements: readonly Readonly<{
787
- id: string;
788
- type: "text" | "arrow";
789
- }>[] | null;
725
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
790
726
  updated: number;
791
727
  link: string | null;
792
728
  locked: boolean;
793
- customData?: Record<string, any> | undefined;
729
+ customData?: Record<string, any>;
794
730
  }> & Readonly<{
795
- type: "text";
796
- fontSize: number;
797
- fontFamily: number;
798
- text: string;
799
- textAlign: string;
800
- verticalAlign: string;
801
- containerId: string | null;
802
- originalText: string;
803
- autoResize: boolean;
804
- lineHeight: number & {
805
- _brand: "unitlessLineHeight";
806
- };
731
+ type: "line" | "arrow";
732
+ points: readonly import("@excalidraw/math").LocalPoint[];
733
+ startBinding: import("@excalidraw/element/types").FixedPointBinding | null;
734
+ endBinding: import("@excalidraw/element/types").FixedPointBinding | null;
735
+ startArrowhead: import("@excalidraw/element/types").Arrowhead | null;
736
+ endArrowhead: import("@excalidraw/element/types").Arrowhead | null;
807
737
  }> & {
808
738
  index: import("@excalidraw/element/types").FractionalIndex;
809
739
  }) | (Readonly<{
@@ -815,32 +745,29 @@ export declare const actionWrapSelectionInFrame: {
815
745
  fillStyle: import("@excalidraw/element/types").FillStyle;
816
746
  strokeWidth: number;
817
747
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
818
- roundness: {
748
+ roundness: null | {
819
749
  type: import("@excalidraw/element/types").RoundnessType;
820
- value?: number | undefined;
821
- } | null;
750
+ value?: number;
751
+ };
822
752
  roughness: number;
823
753
  opacity: number;
824
754
  width: number;
825
755
  height: number;
826
- angle: import("../../math/src").Radians;
756
+ angle: import("@excalidraw/math").Radians;
827
757
  seed: number;
828
758
  version: number;
829
759
  versionNonce: number;
830
760
  index: import("@excalidraw/element/types").FractionalIndex | null;
831
761
  isDeleted: boolean;
832
- groupIds: readonly string[];
762
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
833
763
  frameId: string | null;
834
- boundElements: readonly Readonly<{
835
- id: string;
836
- type: "text" | "arrow";
837
- }>[] | null;
764
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
838
765
  updated: number;
839
766
  link: string | null;
840
767
  locked: boolean;
841
- customData?: Record<string, any> | undefined;
768
+ customData?: Record<string, any>;
842
769
  }> & {
843
- type: "rectangle";
770
+ type: "selection";
844
771
  } & {
845
772
  index: import("@excalidraw/element/types").FractionalIndex;
846
773
  }) | (Readonly<{
@@ -852,32 +779,29 @@ export declare const actionWrapSelectionInFrame: {
852
779
  fillStyle: import("@excalidraw/element/types").FillStyle;
853
780
  strokeWidth: number;
854
781
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
855
- roundness: {
782
+ roundness: null | {
856
783
  type: import("@excalidraw/element/types").RoundnessType;
857
- value?: number | undefined;
858
- } | null;
784
+ value?: number;
785
+ };
859
786
  roughness: number;
860
787
  opacity: number;
861
788
  width: number;
862
789
  height: number;
863
- angle: import("../../math/src").Radians;
790
+ angle: import("@excalidraw/math").Radians;
864
791
  seed: number;
865
792
  version: number;
866
793
  versionNonce: number;
867
794
  index: import("@excalidraw/element/types").FractionalIndex | null;
868
795
  isDeleted: boolean;
869
- groupIds: readonly string[];
796
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
870
797
  frameId: string | null;
871
- boundElements: readonly Readonly<{
872
- id: string;
873
- type: "text" | "arrow";
874
- }>[] | null;
798
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
875
799
  updated: number;
876
800
  link: string | null;
877
801
  locked: boolean;
878
- customData?: Record<string, any> | undefined;
802
+ customData?: Record<string, any>;
879
803
  }> & {
880
- type: "diamond";
804
+ type: "rectangle";
881
805
  } & {
882
806
  index: import("@excalidraw/element/types").FractionalIndex;
883
807
  }) | (Readonly<{
@@ -889,33 +813,29 @@ export declare const actionWrapSelectionInFrame: {
889
813
  fillStyle: import("@excalidraw/element/types").FillStyle;
890
814
  strokeWidth: number;
891
815
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
892
- roundness: {
816
+ roundness: null | {
893
817
  type: import("@excalidraw/element/types").RoundnessType;
894
- value?: number | undefined;
895
- } | null;
818
+ value?: number;
819
+ };
896
820
  roughness: number;
897
821
  opacity: number;
898
822
  width: number;
899
823
  height: number;
900
- angle: import("../../math/src").Radians;
824
+ angle: import("@excalidraw/math").Radians;
901
825
  seed: number;
902
826
  version: number;
903
827
  versionNonce: number;
904
828
  index: import("@excalidraw/element/types").FractionalIndex | null;
905
829
  isDeleted: boolean;
906
- groupIds: readonly string[];
830
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
907
831
  frameId: string | null;
908
- boundElements: readonly Readonly<{
909
- id: string;
910
- type: "text" | "arrow";
911
- }>[] | null;
832
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
912
833
  updated: number;
913
834
  link: string | null;
914
835
  locked: boolean;
915
- customData?: Record<string, any> | undefined;
836
+ customData?: Record<string, any>;
916
837
  }> & {
917
- type: "frame";
918
- name: string | null;
838
+ type: "diamond";
919
839
  } & {
920
840
  index: import("@excalidraw/element/types").FractionalIndex;
921
841
  }) | (Readonly<{
@@ -927,33 +847,29 @@ export declare const actionWrapSelectionInFrame: {
927
847
  fillStyle: import("@excalidraw/element/types").FillStyle;
928
848
  strokeWidth: number;
929
849
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
930
- roundness: {
850
+ roundness: null | {
931
851
  type: import("@excalidraw/element/types").RoundnessType;
932
- value?: number | undefined;
933
- } | null;
852
+ value?: number;
853
+ };
934
854
  roughness: number;
935
855
  opacity: number;
936
856
  width: number;
937
857
  height: number;
938
- angle: import("../../math/src").Radians;
858
+ angle: import("@excalidraw/math").Radians;
939
859
  seed: number;
940
860
  version: number;
941
861
  versionNonce: number;
942
862
  index: import("@excalidraw/element/types").FractionalIndex | null;
943
863
  isDeleted: boolean;
944
- groupIds: readonly string[];
864
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
945
865
  frameId: string | null;
946
- boundElements: readonly Readonly<{
947
- id: string;
948
- type: "text" | "arrow";
949
- }>[] | null;
866
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
950
867
  updated: number;
951
868
  link: string | null;
952
869
  locked: boolean;
953
- customData?: Record<string, any> | undefined;
870
+ customData?: Record<string, any>;
954
871
  }> & {
955
- type: "magicframe";
956
- name: string | null;
872
+ type: "ellipse";
957
873
  } & {
958
874
  index: import("@excalidraw/element/types").FractionalIndex;
959
875
  }) | (Readonly<{
@@ -965,30 +881,27 @@ export declare const actionWrapSelectionInFrame: {
965
881
  fillStyle: import("@excalidraw/element/types").FillStyle;
966
882
  strokeWidth: number;
967
883
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
968
- roundness: {
884
+ roundness: null | {
969
885
  type: import("@excalidraw/element/types").RoundnessType;
970
- value?: number | undefined;
971
- } | null;
886
+ value?: number;
887
+ };
972
888
  roughness: number;
973
889
  opacity: number;
974
890
  width: number;
975
891
  height: number;
976
- angle: import("../../math/src").Radians;
892
+ angle: import("@excalidraw/math").Radians;
977
893
  seed: number;
978
894
  version: number;
979
895
  versionNonce: number;
980
896
  index: import("@excalidraw/element/types").FractionalIndex | null;
981
897
  isDeleted: boolean;
982
- groupIds: readonly string[];
898
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
983
899
  frameId: string | null;
984
- boundElements: readonly Readonly<{
985
- id: string;
986
- type: "text" | "arrow";
987
- }>[] | null;
900
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
988
901
  updated: number;
989
902
  link: string | null;
990
903
  locked: boolean;
991
- customData?: Record<string, any> | undefined;
904
+ customData?: Record<string, any>;
992
905
  }> & Readonly<{
993
906
  type: "embeddable";
994
907
  }> & {
@@ -1002,36 +915,32 @@ export declare const actionWrapSelectionInFrame: {
1002
915
  fillStyle: import("@excalidraw/element/types").FillStyle;
1003
916
  strokeWidth: number;
1004
917
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
1005
- roundness: {
918
+ roundness: null | {
1006
919
  type: import("@excalidraw/element/types").RoundnessType;
1007
- value?: number | undefined;
1008
- } | null;
920
+ value?: number;
921
+ };
1009
922
  roughness: number;
1010
923
  opacity: number;
1011
924
  width: number;
1012
925
  height: number;
1013
- angle: import("../../math/src").Radians;
926
+ angle: import("@excalidraw/math").Radians;
1014
927
  seed: number;
1015
928
  version: number;
1016
929
  versionNonce: number;
1017
930
  index: import("@excalidraw/element/types").FractionalIndex | null;
1018
931
  isDeleted: boolean;
1019
- groupIds: readonly string[];
932
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
1020
933
  frameId: string | null;
1021
- boundElements: readonly Readonly<{
1022
- id: string;
1023
- type: "text" | "arrow";
1024
- }>[] | null;
934
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
1025
935
  updated: number;
1026
936
  link: string | null;
1027
937
  locked: boolean;
1028
- customData?: Record<string, any> | undefined;
938
+ customData?: Record<string, any>;
1029
939
  }> & Readonly<{
1030
- type: "image";
1031
- fileId: import("@excalidraw/element/types").FileId | null;
1032
- status: "pending" | "saved" | "error";
1033
- scale: [number, number];
1034
- crop: import("@excalidraw/element/types").ImageCrop | null;
940
+ type: "iframe";
941
+ customData?: {
942
+ generationData?: import("@excalidraw/element/types").MagicGenerationData;
943
+ };
1035
944
  }> & {
1036
945
  index: import("@excalidraw/element/types").FractionalIndex;
1037
946
  }) | (Readonly<{
@@ -1043,35 +952,33 @@ export declare const actionWrapSelectionInFrame: {
1043
952
  fillStyle: import("@excalidraw/element/types").FillStyle;
1044
953
  strokeWidth: number;
1045
954
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
1046
- roundness: {
955
+ roundness: null | {
1047
956
  type: import("@excalidraw/element/types").RoundnessType;
1048
- value?: number | undefined;
1049
- } | null;
957
+ value?: number;
958
+ };
1050
959
  roughness: number;
1051
960
  opacity: number;
1052
961
  width: number;
1053
962
  height: number;
1054
- angle: import("../../math/src").Radians;
963
+ angle: import("@excalidraw/math").Radians;
1055
964
  seed: number;
1056
965
  version: number;
1057
966
  versionNonce: number;
1058
967
  index: import("@excalidraw/element/types").FractionalIndex | null;
1059
968
  isDeleted: boolean;
1060
- groupIds: readonly string[];
969
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
1061
970
  frameId: string | null;
1062
- boundElements: readonly Readonly<{
1063
- id: string;
1064
- type: "text" | "arrow";
1065
- }>[] | null;
971
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
1066
972
  updated: number;
1067
973
  link: string | null;
1068
974
  locked: boolean;
1069
- customData?: Record<string, any> | undefined;
975
+ customData?: Record<string, any>;
1070
976
  }> & Readonly<{
1071
- type: "iframe";
1072
- customData?: {
1073
- generationData?: import("@excalidraw/element/types").MagicGenerationData | undefined;
1074
- } | undefined;
977
+ type: "image";
978
+ fileId: import("@excalidraw/element/types").FileId | null;
979
+ status: "pending" | "saved" | "error";
980
+ scale: [number, number];
981
+ crop: import("@excalidraw/element/types").ImageCrop | null;
1075
982
  }> & {
1076
983
  index: import("@excalidraw/element/types").FractionalIndex;
1077
984
  }) | (Readonly<{
@@ -1083,32 +990,30 @@ export declare const actionWrapSelectionInFrame: {
1083
990
  fillStyle: import("@excalidraw/element/types").FillStyle;
1084
991
  strokeWidth: number;
1085
992
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
1086
- roundness: {
993
+ roundness: null | {
1087
994
  type: import("@excalidraw/element/types").RoundnessType;
1088
- value?: number | undefined;
1089
- } | null;
995
+ value?: number;
996
+ };
1090
997
  roughness: number;
1091
998
  opacity: number;
1092
999
  width: number;
1093
1000
  height: number;
1094
- angle: import("../../math/src").Radians;
1001
+ angle: import("@excalidraw/math").Radians;
1095
1002
  seed: number;
1096
1003
  version: number;
1097
1004
  versionNonce: number;
1098
1005
  index: import("@excalidraw/element/types").FractionalIndex | null;
1099
1006
  isDeleted: boolean;
1100
- groupIds: readonly string[];
1007
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
1101
1008
  frameId: string | null;
1102
- boundElements: readonly Readonly<{
1103
- id: string;
1104
- type: "text" | "arrow";
1105
- }>[] | null;
1009
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
1106
1010
  updated: number;
1107
1011
  link: string | null;
1108
1012
  locked: boolean;
1109
- customData?: Record<string, any> | undefined;
1013
+ customData?: Record<string, any>;
1110
1014
  }> & {
1111
- type: "selection";
1015
+ type: "frame";
1016
+ name: string | null;
1112
1017
  } & {
1113
1018
  index: import("@excalidraw/element/types").FractionalIndex;
1114
1019
  }) | (Readonly<{
@@ -1120,32 +1025,30 @@ export declare const actionWrapSelectionInFrame: {
1120
1025
  fillStyle: import("@excalidraw/element/types").FillStyle;
1121
1026
  strokeWidth: number;
1122
1027
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
1123
- roundness: {
1028
+ roundness: null | {
1124
1029
  type: import("@excalidraw/element/types").RoundnessType;
1125
- value?: number | undefined;
1126
- } | null;
1030
+ value?: number;
1031
+ };
1127
1032
  roughness: number;
1128
1033
  opacity: number;
1129
1034
  width: number;
1130
1035
  height: number;
1131
- angle: import("../../math/src").Radians;
1036
+ angle: import("@excalidraw/math").Radians;
1132
1037
  seed: number;
1133
1038
  version: number;
1134
1039
  versionNonce: number;
1135
1040
  index: import("@excalidraw/element/types").FractionalIndex | null;
1136
1041
  isDeleted: boolean;
1137
- groupIds: readonly string[];
1042
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
1138
1043
  frameId: string | null;
1139
- boundElements: readonly Readonly<{
1140
- id: string;
1141
- type: "text" | "arrow";
1142
- }>[] | null;
1044
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
1143
1045
  updated: number;
1144
1046
  link: string | null;
1145
1047
  locked: boolean;
1146
- customData?: Record<string, any> | undefined;
1048
+ customData?: Record<string, any>;
1147
1049
  }> & {
1148
- type: "ellipse";
1050
+ type: "magicframe";
1051
+ name: string | null;
1149
1052
  } & {
1150
1053
  index: import("@excalidraw/element/types").FractionalIndex;
1151
1054
  }) | (Readonly<{
@@ -1157,38 +1060,40 @@ export declare const actionWrapSelectionInFrame: {
1157
1060
  fillStyle: import("@excalidraw/element/types").FillStyle;
1158
1061
  strokeWidth: number;
1159
1062
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
1160
- roundness: {
1063
+ roundness: null | {
1161
1064
  type: import("@excalidraw/element/types").RoundnessType;
1162
- value?: number | undefined;
1163
- } | null;
1065
+ value?: number;
1066
+ };
1164
1067
  roughness: number;
1165
1068
  opacity: number;
1166
1069
  width: number;
1167
1070
  height: number;
1168
- angle: import("../../math/src").Radians;
1071
+ angle: import("@excalidraw/math").Radians;
1169
1072
  seed: number;
1170
1073
  version: number;
1171
1074
  versionNonce: number;
1172
1075
  index: import("@excalidraw/element/types").FractionalIndex | null;
1173
1076
  isDeleted: boolean;
1174
- groupIds: readonly string[];
1077
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
1175
1078
  frameId: string | null;
1176
- boundElements: readonly Readonly<{
1177
- id: string;
1178
- type: "text" | "arrow";
1179
- }>[] | null;
1079
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
1180
1080
  updated: number;
1181
1081
  link: string | null;
1182
1082
  locked: boolean;
1183
- customData?: Record<string, any> | undefined;
1083
+ customData?: Record<string, any>;
1184
1084
  }> & Readonly<{
1185
- type: "line" | "arrow";
1186
- points: readonly import("../../math/src").LocalPoint[];
1187
- lastCommittedPoint: import("../../math/src").LocalPoint | null;
1188
- startBinding: import("@excalidraw/element/types").PointBinding | null;
1189
- endBinding: import("@excalidraw/element/types").PointBinding | null;
1190
- startArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1191
- endArrowhead: import("@excalidraw/element/types").Arrowhead | null;
1085
+ type: "text";
1086
+ fontSize: number;
1087
+ fontFamily: import("@excalidraw/element/types").FontFamilyValues;
1088
+ text: string;
1089
+ textAlign: import("@excalidraw/element/types").TextAlign;
1090
+ verticalAlign: import("@excalidraw/element/types").VerticalAlign;
1091
+ containerId: import("@excalidraw/element/types").ExcalidrawGenericElement["id"] | null;
1092
+ originalText: string;
1093
+ autoResize: boolean;
1094
+ lineHeight: number & {
1095
+ _brand: "unitlessLineHeight";
1096
+ };
1192
1097
  }> & {
1193
1098
  index: import("@excalidraw/element/types").FractionalIndex;
1194
1099
  }) | (Readonly<{
@@ -1200,36 +1105,32 @@ export declare const actionWrapSelectionInFrame: {
1200
1105
  fillStyle: import("@excalidraw/element/types").FillStyle;
1201
1106
  strokeWidth: number;
1202
1107
  strokeStyle: import("@excalidraw/element/types").StrokeStyle;
1203
- roundness: {
1108
+ roundness: null | {
1204
1109
  type: import("@excalidraw/element/types").RoundnessType;
1205
- value?: number | undefined;
1206
- } | null;
1110
+ value?: number;
1111
+ };
1207
1112
  roughness: number;
1208
1113
  opacity: number;
1209
1114
  width: number;
1210
1115
  height: number;
1211
- angle: import("../../math/src").Radians;
1116
+ angle: import("@excalidraw/math").Radians;
1212
1117
  seed: number;
1213
1118
  version: number;
1214
1119
  versionNonce: number;
1215
1120
  index: import("@excalidraw/element/types").FractionalIndex | null;
1216
1121
  isDeleted: boolean;
1217
- groupIds: readonly string[];
1122
+ groupIds: readonly import("@excalidraw/element/types").GroupId[];
1218
1123
  frameId: string | null;
1219
- boundElements: readonly Readonly<{
1220
- id: string;
1221
- type: "text" | "arrow";
1222
- }>[] | null;
1124
+ boundElements: readonly import("@excalidraw/element/types").BoundElement[] | null;
1223
1125
  updated: number;
1224
1126
  link: string | null;
1225
1127
  locked: boolean;
1226
- customData?: Record<string, any> | undefined;
1128
+ customData?: Record<string, any>;
1227
1129
  }> & Readonly<{
1228
1130
  type: "freedraw";
1229
- points: readonly import("../../math/src").LocalPoint[];
1131
+ points: readonly import("@excalidraw/math").LocalPoint[];
1230
1132
  pressures: readonly number[];
1231
1133
  simulatePressure: boolean;
1232
- lastCommittedPoint: import("../../math/src").LocalPoint | null;
1233
1134
  }> & {
1234
1135
  index: import("@excalidraw/element/types").FractionalIndex;
1235
1136
  }) | import("@excalidraw/element/types").NonDeleted<import("@excalidraw/element/types").ExcalidrawFrameElement>)[];