@excalidraw/element 0.18.0-2a82821 → 0.18.0-2b1c2a9

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 (160) hide show
  1. package/dist/dev/index.js +5570 -3546
  2. package/dist/dev/index.js.map +4 -4
  3. package/dist/prod/index.js +12 -12
  4. package/dist/types/common/src/colors.d.ts +19 -0
  5. package/dist/types/common/src/constants.d.ts +3 -0
  6. package/dist/types/common/src/keys.d.ts +2 -0
  7. package/dist/types/common/src/points.d.ts +1 -1
  8. package/dist/types/common/src/utils.d.ts +1 -43
  9. package/dist/types/element/src/Scene.d.ts +1 -1
  10. package/dist/types/element/src/align.d.ts +2 -2
  11. package/dist/types/element/src/arrowEndpointText.d.ts +49 -0
  12. package/dist/types/element/src/arrows/focus.d.ts +5 -2
  13. package/dist/types/element/src/binding.d.ts +17 -8
  14. package/dist/types/element/src/bounds.d.ts +5 -9
  15. package/dist/types/element/src/bucketFill.d.ts +110 -0
  16. package/dist/types/element/src/collision.d.ts +1 -1
  17. package/dist/types/element/src/comparisons.d.ts +4 -4
  18. package/dist/types/element/src/convertToShape.d.ts +23 -0
  19. package/dist/types/element/src/distribute.d.ts +2 -2
  20. package/dist/types/element/src/dragElements.d.ts +27 -0
  21. package/dist/types/element/src/duplicate.d.ts +3 -3
  22. package/dist/types/element/src/embeddable.d.ts +2 -2
  23. package/dist/types/element/src/flowchart.d.ts +7 -7
  24. package/dist/types/element/src/fractionalIndex.d.ts +2 -2
  25. package/dist/types/element/src/frame.d.ts +4 -4
  26. package/dist/types/element/src/groups.d.ts +9 -9
  27. package/dist/types/element/src/index.d.ts +4 -1
  28. package/dist/types/element/src/linearElementEditor.d.ts +27 -10
  29. package/dist/types/element/src/newElement.d.ts +14 -0
  30. package/dist/types/element/src/renderElement.d.ts +0 -3
  31. package/dist/types/element/src/resizeElements.d.ts +2 -2
  32. package/dist/types/element/src/selection.d.ts +5 -5
  33. package/dist/types/element/src/shape.d.ts +12 -0
  34. package/dist/types/element/src/sortElements.d.ts +10 -0
  35. package/dist/types/element/src/textElement.d.ts +13 -9
  36. package/dist/types/element/src/transform.d.ts +2 -2
  37. package/dist/types/element/src/typeChecks.d.ts +25 -25
  38. package/dist/types/element/src/types.d.ts +9 -1
  39. package/dist/types/element/src/utils.d.ts +7 -3
  40. package/dist/types/element/src/zindex.d.ts +2 -2
  41. package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +36 -12
  42. package/dist/types/excalidraw/actions/actionAlign.d.ts +6 -6
  43. package/dist/types/excalidraw/actions/actionBoundText.d.ts +24 -8
  44. package/dist/types/excalidraw/actions/actionCanvas.d.ts +146 -931
  45. package/dist/types/excalidraw/actions/actionClipboard.d.ts +24 -8
  46. package/dist/types/excalidraw/actions/actionCropEditor.d.ts +12 -4
  47. package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +38 -13
  48. package/dist/types/excalidraw/actions/actionDeselect.d.ts +9 -4
  49. package/dist/types/excalidraw/actions/actionDistribute.d.ts +2 -3
  50. package/dist/types/excalidraw/actions/actionElementLink.d.ts +12 -4
  51. package/dist/types/excalidraw/actions/actionElementLock.d.ts +25 -9
  52. package/dist/types/excalidraw/actions/actionExport.d.ts +26 -10
  53. package/dist/types/excalidraw/actions/actionFinalize.d.ts +1 -0
  54. package/dist/types/excalidraw/actions/actionFrame.d.ts +48 -197
  55. package/dist/types/excalidraw/actions/actionGroup.d.ts +39 -23
  56. package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +16 -6
  57. package/dist/types/excalidraw/actions/actionLink.d.ts +13 -5
  58. package/dist/types/excalidraw/actions/actionMenu.d.ts +12 -4
  59. package/dist/types/excalidraw/actions/actionProperties.d.ts +43 -24
  60. package/dist/types/excalidraw/actions/actionSelectAll.d.ts +17 -9
  61. package/dist/types/excalidraw/actions/actionStyles.d.ts +12 -4
  62. package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +1 -1
  63. package/dist/types/excalidraw/actions/actionToggleArrowBinding.d.ts +13 -5
  64. package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +16 -9
  65. package/dist/types/excalidraw/actions/actionToggleMidpointSnapping.d.ts +13 -5
  66. package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +13 -5
  67. package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +16 -9
  68. package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +1 -1
  69. package/dist/types/excalidraw/actions/actionToggleStats.d.ts +13 -5
  70. package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +14 -6
  71. package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +13 -5
  72. package/dist/types/excalidraw/actions/index.d.ts +1 -2
  73. package/dist/types/excalidraw/actions/manager.d.ts +1 -0
  74. package/dist/types/excalidraw/actions/shortcuts.d.ts +1 -1
  75. package/dist/types/excalidraw/actions/types.d.ts +8 -4
  76. package/dist/types/excalidraw/appState.d.ts +9 -4
  77. package/dist/types/excalidraw/components/Actions.d.ts +17 -12
  78. package/dist/types/excalidraw/components/App.arrowText.d.ts +104 -0
  79. package/dist/types/excalidraw/components/App.bucketFill.d.ts +48 -0
  80. package/dist/types/excalidraw/components/App.cursor.d.ts +38 -0
  81. package/dist/types/excalidraw/components/App.d.ts +372 -67
  82. package/dist/types/excalidraw/components/App.drawshape.d.ts +55 -0
  83. package/dist/types/excalidraw/components/App.flowchart.d.ts +21 -0
  84. package/dist/types/excalidraw/components/App.viewport.d.ts +73 -0
  85. package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +9 -3
  86. package/dist/types/excalidraw/components/ColorPicker/CustomColorList.d.ts +3 -1
  87. package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +3 -1
  88. package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +9 -2
  89. package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +4 -2
  90. package/dist/types/excalidraw/components/ColorPicker/TopPicks.d.ts +8 -1
  91. package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +2 -1
  92. package/dist/types/excalidraw/components/ColorPicker/topPicksDnD.d.ts +31 -0
  93. package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +1 -1
  94. package/dist/types/excalidraw/components/CursorHint.d.ts +46 -0
  95. package/dist/types/excalidraw/components/{ToolButton.d.ts → IconButton.d.ts} +16 -19
  96. package/dist/types/excalidraw/components/Island.d.ts +7 -0
  97. package/dist/types/excalidraw/components/LaserPointerButton.d.ts +2 -4
  98. package/dist/types/excalidraw/components/LayerUI.d.ts +5 -2
  99. package/dist/types/excalidraw/components/LockButton.d.ts +3 -4
  100. package/dist/types/excalidraw/components/MagicButton.d.ts +0 -2
  101. package/dist/types/excalidraw/components/MobileMenu.d.ts +4 -4
  102. package/dist/types/excalidraw/components/MobileToolbar.d.ts +9 -0
  103. package/dist/types/excalidraw/components/PenModeButton.d.ts +2 -5
  104. package/dist/types/excalidraw/components/Popover.d.ts +1 -3
  105. package/dist/types/excalidraw/components/{ButtonIcon.d.ts → RadioButton.d.ts} +2 -5
  106. package/dist/types/excalidraw/components/Stats/Angle.d.ts +2 -2
  107. package/dist/types/excalidraw/components/Stats/Dimension.d.ts +2 -2
  108. package/dist/types/excalidraw/components/Stats/DragInput.d.ts +2 -2
  109. package/dist/types/excalidraw/components/Stats/MultiAngle.d.ts +2 -2
  110. package/dist/types/excalidraw/components/Stats/MultiDimension.d.ts +2 -2
  111. package/dist/types/excalidraw/components/Stats/MultiPosition.d.ts +2 -2
  112. package/dist/types/excalidraw/components/Stats/Position.d.ts +3 -3
  113. package/dist/types/excalidraw/components/Stats/utils.d.ts +1 -1
  114. package/dist/types/excalidraw/components/ToolPopover.d.ts +3 -6
  115. package/dist/types/excalidraw/components/Toolbar.d.ts +11 -0
  116. package/dist/types/excalidraw/components/Tools.d.ts +146 -0
  117. package/dist/types/excalidraw/components/UserList.d.ts +3 -2
  118. package/dist/types/excalidraw/components/ViewportStatusFrame/ViewportStatusFrame.d.ts +11 -0
  119. package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +2 -0
  120. package/dist/types/excalidraw/components/footer/Footer.d.ts +3 -1
  121. package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +2 -2
  122. package/dist/types/excalidraw/components/icons.d.ts +4 -1
  123. package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +1 -1
  124. package/dist/types/excalidraw/components/positionElementBesideCursor.d.ts +26 -0
  125. package/dist/types/excalidraw/components/shapeActionPredicates.d.ts +39 -0
  126. package/dist/types/excalidraw/data/blob.d.ts +28 -12
  127. package/dist/types/excalidraw/data/index.d.ts +4 -4
  128. package/dist/types/excalidraw/data/json.d.ts +20 -12
  129. package/dist/types/excalidraw/drawShapeTrail.d.ts +16 -0
  130. package/dist/types/excalidraw/fonts/Fonts.d.ts +3 -2
  131. package/dist/types/excalidraw/hooks/useAppStateValue.d.ts +29 -0
  132. package/dist/types/excalidraw/hooks/useTextEditorFocus.d.ts +5 -5
  133. package/dist/types/excalidraw/lasso/utils.d.ts +2 -0
  134. package/dist/types/excalidraw/renderer/animation.d.ts +1 -0
  135. package/dist/types/excalidraw/renderer/helpers.d.ts +7 -0
  136. package/dist/types/excalidraw/renderer/interactiveScene.d.ts +1 -3
  137. package/dist/types/excalidraw/scene/Renderer.d.ts +12 -11
  138. package/dist/types/excalidraw/scene/export.d.ts +3 -3
  139. package/dist/types/excalidraw/scene/index.d.ts +1 -1
  140. package/dist/types/excalidraw/scene/types.d.ts +4 -3
  141. package/dist/types/excalidraw/snapping.d.ts +7 -7
  142. package/dist/types/excalidraw/types.d.ts +410 -20
  143. package/dist/types/excalidraw/viewport.d.ts +275 -0
  144. package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +2 -3
  145. package/dist/types/laser-pointer/src/state.d.ts +1 -0
  146. package/dist/types/math/src/curve.d.ts +19 -12
  147. package/dist/types/math/src/index.d.ts +1 -0
  148. package/dist/types/math/src/pca.d.ts +79 -0
  149. package/dist/types/math/src/polygon.d.ts +25 -1
  150. package/dist/types/math/src/segment.d.ts +6 -0
  151. package/dist/types/utils/src/export.d.ts +3 -3
  152. package/package.json +4 -4
  153. package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +0 -172
  154. package/dist/types/excalidraw/components/FollowMode/FollowMode.d.ts +0 -10
  155. package/dist/types/excalidraw/components/HandButton.d.ts +0 -10
  156. package/dist/types/excalidraw/components/MobileToolBar.d.ts +0 -10
  157. package/dist/types/excalidraw/components/shapes.d.ts +0 -270
  158. package/dist/types/excalidraw/cursor.d.ts +0 -5
  159. package/dist/types/excalidraw/scene/scroll.d.ts +0 -18
  160. package/dist/types/excalidraw/scene/zoom.d.ts +0 -12
@@ -1,7 +1,7 @@
1
1
  import type { IMAGE_MIME_TYPES, UserIdleState, throttleRAF, MIME_TYPES, EditorInterface, StrokeWidthKey } from "@excalidraw/common";
2
2
  import type { LinearElementEditor } from "@excalidraw/element";
3
3
  import type { MaybeTransformHandleType } from "@excalidraw/element";
4
- import type { PointerType, ExcalidrawLinearElement, NonDeletedExcalidrawElement, NonDeleted, TextAlign, ExcalidrawElement, GroupId, ExcalidrawBindableElement, Arrowhead, FontFamilyValues, FileId, Theme, StrokeRoundness, ExcalidrawEmbeddableElement, ExcalidrawMagicFrameElement, ExcalidrawFrameLikeElement, ExcalidrawElementType, ExcalidrawIframeLikeElement, OrderedExcalidrawElement, ExcalidrawNonSelectionElement, BindMode, ExcalidrawTextElement, StrokeVariability } from "@excalidraw/element/types";
4
+ import type { PointerType, ExcalidrawLinearElement, NonDeletedExcalidrawElement, NonDeleted, TextAlign, ExcalidrawElement, GroupId, ExcalidrawBindableElement, ExcalidrawArrowElement, Arrowhead, FontFamilyValues, FileId, Theme, StrokeRoundness, ExcalidrawEmbeddableElement, ExcalidrawMagicFrameElement, ExcalidrawFrameLikeElement, ExcalidrawElementType, ExcalidrawIframeLikeElement, OrderedExcalidrawElement, ExcalidrawNonSelectionElement, BindMode, ExcalidrawTextElement, StrokeVariability } from "@excalidraw/element/types";
5
5
  import type { Merge, MaybePromise, ValueOf, MakeBrand } from "@excalidraw/common/utility-types";
6
6
  import type { CaptureUpdateActionType, DurableIncrement, EphemeralIncrement } from "@excalidraw/element";
7
7
  import type { GlobalPoint } from "@excalidraw/math";
@@ -13,6 +13,7 @@ import type Library from "./data/library";
13
13
  import type { ContextMenuItems } from "./components/ContextMenu";
14
14
  import type { SnapLine } from "./snapping";
15
15
  import type { ImportedDataState } from "./data/types";
16
+ import type { SetViewportOptions } from "./viewport";
16
17
  import type { Language } from "./i18n";
17
18
  import type { isOverScrollBars } from "./scene/scrollbars";
18
19
  import type React from "react";
@@ -84,7 +85,7 @@ export type BinaryFileData = {
84
85
  };
85
86
  export type BinaryFileMetadata = Omit<BinaryFileData, "dataURL">;
86
87
  export type BinaryFiles = Record<ExcalidrawElement["id"], BinaryFileData>;
87
- export type ToolType = "selection" | "lasso" | "rectangle" | "diamond" | "ellipse" | "arrow" | "line" | "freedraw" | "text" | "image" | "eraser" | "hand" | "frame" | "magicframe" | "embeddable" | "laser";
88
+ export type ToolType = "selection" | "lasso" | "rectangle" | "diamond" | "ellipse" | "arrow" | "line" | "freedraw" | "text" | "image" | "eraser" | "hand" | "frame" | "magicframe" | "embeddable" | "laser" | "autoshape" | "bucketfill";
88
89
  export type ElementOrToolType = ExcalidrawElementType | ToolType | "custom";
89
90
  export type ActiveTool = {
90
91
  type: ToolType;
@@ -138,7 +139,9 @@ export type InteractiveCanvasAppState = Readonly<_CommonCanvasAppState & {
138
139
  newElement: AppState["newElement"];
139
140
  isBindingEnabled: AppState["isBindingEnabled"];
140
141
  isMidpointSnappingEnabled: AppState["isMidpointSnappingEnabled"];
142
+ gridModeEnabled: AppState["gridModeEnabled"];
141
143
  suggestedBinding: AppState["suggestedBinding"];
144
+ hoveredArrowTextAnchor: AppState["hoveredArrowTextAnchor"];
142
145
  isRotating: AppState["isRotating"];
143
146
  elementsToHighlight: AppState["elementsToHighlight"];
144
147
  collaborators: AppState["collaborators"];
@@ -173,6 +176,41 @@ export type ObservedElementsAppState = {
173
176
  activeLockedId: AppState["activeLockedId"];
174
177
  };
175
178
  export type BoxSelectionMode = "contain" | "overlap";
179
+ /**
180
+ * A box, in scene coordinates, that pan & zoom are constrained to.
181
+ *
182
+ * This is a private type. For public API, only use specific properties,
183
+ * needed.
184
+ */
185
+ export type ScrollConstraints = {
186
+ x: number;
187
+ y: number;
188
+ width: number;
189
+ height: number;
190
+ /** when set, panning is constrained so the viewport stays within the box */
191
+ lockScroll: boolean;
192
+ /** when set, the viewport cannot zoom out below `zoom` */
193
+ lockZoom: boolean;
194
+ /**
195
+ * The zoom resolved after the `setViewport` navigation settled.
196
+ */
197
+ zoom: number;
198
+ /**
199
+ * Pixel amount the viewport may overscroll past its resting clamp before
200
+ * snapping back (rubberband). Screen pixels, zoom-independent. Resolved
201
+ * from `lock.overscroll` at the time the lock was installed (`true` →
202
+ * default give, `false` → 0).
203
+ */
204
+ overscroll: number;
205
+ /**
206
+ * Extra scrollable margin around the box (CSS-style), letting the viewport
207
+ * scroll past each box edge to reveal that much empty space. Values are
208
+ * viewport pixels and zoom-independent (a fixed on-screen distance).
209
+ * Resolved from the `offsets` passed to `setViewport` (see
210
+ * {@link ViewportOffsets}) at the time the lock was installed.
211
+ */
212
+ offsets?: Offsets;
213
+ };
176
214
  export interface AppState {
177
215
  contextMenu: {
178
216
  items: ContextMenuItems;
@@ -225,6 +263,15 @@ export interface AppState {
225
263
  element: NonDeleted<ExcalidrawBindableElement>;
226
264
  midPoint?: GlobalPoint;
227
265
  } | null;
266
+ /**
267
+ * Where on a hovered arrow the text tool would attach text if clicked —
268
+ * a free endpoint (binds the arrow to a new text element positioned against
269
+ * that endpoint) or the arrow's midpoint (adds a label bound to the arrow).
270
+ */
271
+ hoveredArrowTextAnchor: {
272
+ elementId: ExcalidrawArrowElement["id"];
273
+ anchor: "start" | "end" | "label";
274
+ } | null;
228
275
  frameToHighlight: NonDeleted<ExcalidrawFrameLikeElement> | null;
229
276
  frameRendering: {
230
277
  enabled: boolean;
@@ -232,8 +279,11 @@ export interface AppState {
232
279
  outline: boolean;
233
280
  clip: boolean;
234
281
  };
235
- editingFrame: string | null;
236
- elementsToHighlight: NonDeleted<ExcalidrawElement>[] | null;
282
+ /**
283
+ * frame-like element whose name is currently being edited
284
+ */
285
+ editingFrame: ExcalidrawFrameLikeElement["id"] | null;
286
+ elementsToHighlight: readonly NonDeletedExcalidrawElement[] | null;
237
287
  /**
238
288
  * set when a new text is created or when an existing text is being edited
239
289
  */
@@ -276,6 +326,7 @@ export interface AppState {
276
326
  viewBackgroundColor: string;
277
327
  scrollX: number;
278
328
  scrollY: number;
329
+ scrollConstraints: ScrollConstraints | null;
279
330
  cursorButton: "up" | "down";
280
331
  scrolledOutside: boolean;
281
332
  name: string | null;
@@ -363,10 +414,6 @@ export interface AppState {
363
414
  y: number;
364
415
  } | null;
365
416
  objectsSnapModeEnabled: boolean;
366
- /** the user's socket id & username who is being followed on the canvas */
367
- userToFollow: UserToFollow | null;
368
- /** the socket ids of the users following the current user */
369
- followedBy: Set<SocketId>;
370
417
  /** image cropping */
371
418
  isCropping: boolean;
372
419
  croppingElementId: ExcalidrawElement["id"] | null;
@@ -381,6 +428,17 @@ export interface AppState {
381
428
  [groupId: string]: true;
382
429
  };
383
430
  bindMode: BindMode;
431
+ /** user-customized color-picker top picks (pinned via drag & drop from the
432
+ * color picker popup). `null` means no customization (defaults, or
433
+ * host-supplied `topPicks`, are used). Kept per picker. */
434
+ colorTopPicks: {
435
+ elementStroke: readonly string[] | null;
436
+ elementBackground: readonly string[] | null;
437
+ /** the bucket-fill tool keeps a list separate from `elementBackground`
438
+ * even though both drive `currentItemBackgroundColor` (its defaults and
439
+ * use case differ — no transparent) */
440
+ bucketFill: readonly string[] | null;
441
+ };
384
442
  }
385
443
  export type SearchMatch = {
386
444
  id: string;
@@ -393,7 +451,7 @@ export type SearchMatch = {
393
451
  showOnCanvas: boolean;
394
452
  }[];
395
453
  };
396
- export type UIAppState = Omit<AppState, "cursorButton" | "scrollX" | "scrollY">;
454
+ export type UIAppState = Omit<AppState, "cursorButton" | "scrollX" | "scrollY" | "zoom" | "shouldCacheIgnoreZoom" | "snapLines" | "originSnapOffset" | "suggestedBinding" | "hoveredArrowTextAnchor" | "frameToHighlight" | "elementsToHighlight">;
397
455
  export type NormalizedZoomValue = number & {
398
456
  _brand: "normalizedZoom";
399
457
  };
@@ -437,17 +495,153 @@ export type LibraryItemsSource = ((currentLibraryItems: LibraryItems) => MaybePr
437
495
  export type ExcalidrawInitialDataState = Merge<ImportedDataState, {
438
496
  libraryItems?: MaybePromise<Required<ImportedDataState>["libraryItems"]>;
439
497
  }>;
498
+ export type ExcalidrawInitialState = {
499
+ viewport?: Omit<SetViewportOptions, "animation">;
500
+ };
440
501
  export type OnUserFollowedPayload = {
441
502
  userToFollow: UserToFollow;
442
503
  action: "FOLLOW" | "UNFOLLOW";
443
504
  };
505
+ export type ViewportStatusFrame = {
506
+ /** the badge (bottom-center pill) */
507
+ label?: {
508
+ label: React.ReactNode;
509
+ icon?: React.ReactNode;
510
+ /** badge background; defaults to var(--color-primary-hover) */
511
+ background?: string;
512
+ /** badge text color; defaults to var(--color-primary-light) */
513
+ color?: string;
514
+ /** makes the badge label interactive */
515
+ onClick?: () => void;
516
+ /** renders a close button when set */
517
+ onClose?: () => void;
518
+ };
519
+ /** viewport-edge border: CSS color, or `false` for none */
520
+ border: false | string;
521
+ };
444
522
  export type OnExportProgress = {
445
523
  type: "progress";
446
524
  message?: React.ReactNode;
447
525
  /** 0-1 range */
448
526
  progress?: number;
449
527
  };
528
+ export type InteractionConfig = {
529
+ /**
530
+ * Interactions that stay enabled while the editor is otherwise
531
+ * non-interactive. Opt-in: anything omitted or `false` is disabled.
532
+ */
533
+ enabled?: {
534
+ /**
535
+ * Element links render their link icon and stay clickable — clicking
536
+ * anywhere on a linked element opens the link, same as in view mode.
537
+ * When disabled, link icons are not rendered at all.
538
+ *
539
+ * @default false
540
+ */
541
+ links?: boolean;
542
+ /**
543
+ * Embeddable & iframe elements stay interactive — hovering & clicking
544
+ * activates them so their content can be used, same as in view mode.
545
+ *
546
+ * @default false
547
+ */
548
+ embeds?: boolean;
549
+ /**
550
+ * Umbrella for all interactive content on canvas — shorthand for
551
+ * enabling `links` & `embeds` (and future interactive content kinds)
552
+ * together. Additive: `interactiveContent: true` enables them
553
+ * regardless of their individual values.
554
+ *
555
+ * @default false
556
+ */
557
+ interactiveContent?: boolean;
558
+ /**
559
+ * Canvas navigation — panning (pointer drag, wheel, PageUp/PageDown)
560
+ * and zooming (ctrl/cmd + wheel, pinch, and the canvas zoom &
561
+ * zoom-to-fit shortcuts: ctrl/cmd +/-/0, shift+1/2/3), same as in view
562
+ * mode. Respects `appState.scrollConstraints` if set, so it composes
563
+ * with viewport locking. The rest of the keyboard stays disabled. Note
564
+ * the editor consumes wheel & touch input again when enabled, so the
565
+ * page no longer scrolls over the editor.
566
+ *
567
+ * @default false
568
+ */
569
+ navigation?: boolean;
570
+ /**
571
+ * Whether the browser's own zoom remains available over the editor —
572
+ * ctrl/cmd + wheel, pinch, and (while the editor has focus)
573
+ * ctrl/cmd +/-/0 shortcuts. Prevented by default, mirroring the
574
+ * interactive editor. Regular page scrolling stays available either way.
575
+ * With `navigation` enabled, the zoom input (wheel, pinch, keyboard
576
+ * shortcuts) zooms the canvas instead either way, making this moot.
577
+ *
578
+ * @default false
579
+ */
580
+ browserZoom?: boolean;
581
+ /**
582
+ * Tools that stay user-driven while the editor is otherwise
583
+ * non-interactive: pointer input keeps driving the listed tool when it's
584
+ * the active tool. Does not enable user-driven tool *switching* — the
585
+ * keyboard stays disabled and tool selection remains host-driven
586
+ * (`ExcalidrawAPI.setActiveTool`).
587
+ *
588
+ * Composes with `navigation`: the enabled tool wins the primary-pointer
589
+ * drag, while wheel input (and wheel-button drag) still pans/zooms.
590
+ */
591
+ tools?: {
592
+ /**
593
+ * The laser pointer stays usable — pointer strokes draw laser trails
594
+ * and pointer positions keep broadcasting via `onPointerUpdate`, so
595
+ * e.g. collaborators see a presenter's laser & cursor.
596
+ *
597
+ * @default false
598
+ */
599
+ laser?: boolean;
600
+ /**
601
+ * Custom tools (`activeTool.type === "custom"`) stay usable — the
602
+ * editor keeps dispatching `onPointerDown` / `onPointerUp` for them.
603
+ * Tool behavior is host-implemented; activate custom tools with
604
+ * `locked: true` or they revert to the selection tool (and go inert)
605
+ * after the first pointer interaction.
606
+ *
607
+ * @default false
608
+ */
609
+ custom?: boolean;
610
+ };
611
+ };
612
+ };
613
+ export type UIConfig = {
614
+ /**
615
+ * Default UI controls that stay enabled while the rest of Excalidraw's
616
+ * default UI is hidden. Opt-in: anything omitted or `false` is disabled.
617
+ */
618
+ enabled: {
619
+ /**
620
+ * The zoom-out, reset-zoom, and zoom-in controls.
621
+ *
622
+ * @default false
623
+ */
624
+ zoom?: boolean;
625
+ /**
626
+ * The button shown when the viewport is scrolled away from all content.
627
+ *
628
+ * @default false
629
+ */
630
+ scrollBackToContent?: boolean;
631
+ };
632
+ };
450
633
  export interface ExcalidrawProps {
634
+ className?: string;
635
+ /**
636
+ * Document that owns Excalidraw's mounted DOM.
637
+ *
638
+ * Set only when it differs from the global `document`, such as when code
639
+ * executing in a parent window mounts Excalidraw into an iframe document.
640
+ * The value must remain stable for the editor's lifetime.
641
+ *
642
+ * @default document
643
+ */
644
+ ownerDocument?: Document;
451
645
  onChange?: (elements: readonly OrderedExcalidrawElement[], appState: AppState, files: BinaryFiles) => void;
452
646
  onThemeChange?: (theme: Theme | "system") => void;
453
647
  /**
@@ -455,6 +649,7 @@ export interface ExcalidrawProps {
455
649
  */
456
650
  onIncrement?: (event: DurableIncrement | EphemeralIncrement) => void;
457
651
  initialData?: (() => MaybePromise<ExcalidrawInitialDataState | null>) | MaybePromise<ExcalidrawInitialDataState | null>;
652
+ initialState?: ExcalidrawInitialState;
458
653
  /**
459
654
  * Invoked as soon as the Excalidraw API is available
460
655
  * NOTE editor is not yet mounted, and state is not yet initialized
@@ -501,6 +696,70 @@ export interface ExcalidrawProps {
501
696
  renderTopRightUI?: (isMobile: boolean, appState: UIAppState) => JSX.Element | null;
502
697
  langCode?: Language["code"];
503
698
  viewModeEnabled?: boolean;
699
+ /**
700
+ * Whether the editor accepts user input (pointer, keyboard, wheel, touch,
701
+ * clipboard, drag&drop). When `false`, the scene still renders and reacts
702
+ * to programmatic updates (imperative API), but the user cannot affect it
703
+ * in any way. Implies view mode.
704
+ *
705
+ * Pass a config object to keep specific interactions enabled while the
706
+ * editor is otherwise non-interactive (see `InteractionConfig`):
707
+ *
708
+ * ```tsx
709
+ * <Excalidraw interaction={{ enabled: { links: true } }} />
710
+ * ```
711
+ *
712
+ * @default true
713
+ */
714
+ interaction?: boolean | InteractionConfig;
715
+ /**
716
+ * Whether Excalidraw's default UI is rendered — toolbar, default menus,
717
+ * footer controls, sidebars, and canvas popups. Host UI passed through
718
+ * children (including exported components such as `MainMenu` and `Footer`)
719
+ * or render props continues to render, together with any supporting dialogs
720
+ * it opens.
721
+ *
722
+ * Canvas content (elements, text editing surface, frame names, embeds) still
723
+ * renders, and the editor remains interactive unless `interaction` is set to
724
+ * `false`.
725
+ *
726
+ * Pass a config object to keep specific default controls rendered while the
727
+ * rest of the default UI is hidden (see `UIConfig`):
728
+ *
729
+ * ```tsx
730
+ * <Excalidraw ui={{ enabled: { zoom: true } }} />
731
+ * ```
732
+ *
733
+ * NOTE: this is WIP and what default UI is/is not rendered when ui=false
734
+ * may yet change.
735
+ *
736
+ * @default true
737
+ */
738
+ ui?: boolean | UIConfig;
739
+ /**
740
+ * Forces the active editor tool (controlled). While set, user- and
741
+ * API-driven tool switching is ignored — `setActiveTool` refuses with a
742
+ * console warning, non-forced toolbar buttons render disabled — and the
743
+ * editor snaps back if internal flows reset the tool. The forced tool
744
+ * behaves as if locked (see the tool lock / padlock): it doesn't revert to
745
+ * the selection tool after use, and elements drawn with it aren't
746
+ * auto-selected — without mutating `appState.activeTool.locked`, so the
747
+ * user's persisted padlock preference stays untouched. Unset to return
748
+ * tool control to the editor (the current tool stays active).
749
+ *
750
+ * The forced tool must be activatable to take effect: not disabled via
751
+ * `UIOptions.tools`, and — while the editor is non-interactive — allowed
752
+ * via `interaction.enabled.tools`. Otherwise the editor stays on (or, when
753
+ * non-interactive, resets to) the `selection` tool, and the forced tool is
754
+ * applied once it becomes activatable. `image` cannot be forced (its
755
+ * activation opens the file picker).
756
+ */
757
+ activeTool?: {
758
+ type: Exclude<ToolType, "image">;
759
+ } | {
760
+ type: "custom";
761
+ customType: string;
762
+ };
504
763
  zenModeEnabled?: boolean;
505
764
  gridModeEnabled?: boolean;
506
765
  objectsSnapModeEnabled?: boolean;
@@ -532,6 +791,21 @@ export interface ExcalidrawProps {
532
791
  aiEnabled?: boolean;
533
792
  showDeprecatedFonts?: boolean;
534
793
  renderScrollbars?: boolean;
794
+ viewportStatusFrame?: ViewportStatusFrame | null;
795
+ /**
796
+ * Rendered inside the UserList "who's here" dropdown (desktop) and inline
797
+ * in the mobile menu's collaborators section, below a divider. Accepts a
798
+ * render function — called with `isMobile` so hosts can render different
799
+ * UI for each surface — in addition to a plain node.
800
+ */
801
+ currentUserControls?: React.ReactNode | ((isMobile: boolean) => React.ReactNode);
802
+ /**
803
+ * The user being followed on the canvas, if any. Controlled by the host —
804
+ * the editor never sets it; it emits follow/unfollow intents via
805
+ * `onUserFollow` (prop or imperative API) and renders the followed
806
+ * user's avatar highlight from this value.
807
+ */
808
+ userToFollow?: UserToFollow | null;
535
809
  /**
536
810
  * Called before exporting to a file.
537
811
  *
@@ -617,6 +891,8 @@ export type AppProps = Merge<ExcalidrawProps, {
617
891
  export type AppClassProperties = {
618
892
  props: AppProps;
619
893
  state: AppState;
894
+ readonly ownerDocument: Document;
895
+ readonly ownerWindow: Window & typeof globalThis;
620
896
  api: App["api"];
621
897
  sessionExportThemeOverride: App["sessionExportThemeOverride"];
622
898
  interactiveCanvas: HTMLCanvasElement | null;
@@ -637,8 +913,7 @@ export type AppClassProperties = {
637
913
  id: App["id"];
638
914
  onInsertElements: App["onInsertElements"];
639
915
  onExportImage: App["onExportImage"];
640
- lastViewportPosition: App["lastViewportPosition"];
641
- scrollToContent: App["scrollToContent"];
916
+ viewport: App["viewport"];
642
917
  addFiles: App["addFiles"];
643
918
  addElementsFromPasteOrLibrary: App["addElementsFromPasteOrLibrary"];
644
919
  togglePenMode: App["togglePenMode"];
@@ -649,11 +924,15 @@ export type AppClassProperties = {
649
924
  onMagicframeToolSelect: App["onMagicframeToolSelect"];
650
925
  getName: App["getName"];
651
926
  dismissLinearEditor: App["dismissLinearEditor"];
652
- flowChartCreator: App["flowChartCreator"];
927
+ flowchart: App["flowchart"];
928
+ drawShape: App["drawShape"];
929
+ arrowText: App["arrowText"];
930
+ cursor: App["cursor"];
931
+ bucketFill: App["bucketFill"];
932
+ isToolLocked: App["isToolLocked"];
653
933
  getEffectiveGridSize: App["getEffectiveGridSize"];
654
934
  setPlugins: App["setPlugins"];
655
935
  plugins: App["plugins"];
656
- getEditorUIOffsets: App["getEditorUIOffsets"];
657
936
  visibleElements: App["visibleElements"];
658
937
  excalidrawContainerValue: App["excalidrawContainerValue"];
659
938
  onPointerUpEmitter: App["onPointerUpEmitter"];
@@ -662,8 +941,13 @@ export type AppClassProperties = {
662
941
  onEvent: App["onEvent"];
663
942
  onStateChange: App["onStateChange"];
664
943
  lastPointerMoveCoords: App["lastPointerMoveCoords"];
944
+ lastPointerMoveEvent: App["lastPointerMoveEvent"];
665
945
  bindModeHandler: App["bindModeHandler"];
946
+ emitUserFollowIntent: App["emitUserFollowIntent"];
947
+ requestUnfollow: App["requestUnfollow"];
666
948
  setAppState: App["setAppState"];
949
+ isInteractionEnabled: App["isInteractionEnabled"];
950
+ isNavigationEnabled: App["isNavigationEnabled"];
667
951
  };
668
952
  export type PointerDownState = Readonly<{
669
953
  origin: Readonly<{
@@ -699,6 +983,7 @@ export type PointerDownState = Readonly<{
699
983
  wasAddedToSelection: boolean;
700
984
  hasBeenDuplicated: boolean;
701
985
  hasHitCommonBoundingBoxOfSelectedElements: boolean;
986
+ arrowLabel: boolean;
702
987
  };
703
988
  withCmdOrCtrl: boolean;
704
989
  drag: {
@@ -750,15 +1035,16 @@ export interface ExcalidrawImperativeAPI {
750
1035
  getAppState: () => InstanceType<typeof App>["state"];
751
1036
  getFiles: () => InstanceType<typeof App>["files"];
752
1037
  getName: InstanceType<typeof App>["getName"];
753
- scrollToContent: InstanceType<typeof App>["scrollToContent"];
1038
+ setViewport: InstanceType<typeof App>["viewport"]["setViewport"];
1039
+ getViewportOffsets: InstanceType<typeof App>["viewport"]["getOffsets"];
754
1040
  registerAction: (action: Action) => void;
755
1041
  refresh: InstanceType<typeof App>["refresh"];
756
1042
  setToast: InstanceType<typeof App>["setToast"];
757
1043
  addFiles: (data: BinaryFileData[]) => void;
758
1044
  id: string;
759
1045
  setActiveTool: InstanceType<typeof App>["setActiveTool"];
760
- setCursor: InstanceType<typeof App>["setCursor"];
761
- resetCursor: InstanceType<typeof App>["resetCursor"];
1046
+ setCursor: InstanceType<typeof App>["cursor"]["set"];
1047
+ resetCursor: InstanceType<typeof App>["cursor"]["reset"];
762
1048
  toggleSidebar: InstanceType<typeof App>["toggleSidebar"];
763
1049
  getEditorInterface: () => EditorInterface;
764
1050
  /**
@@ -781,7 +1067,6 @@ export type FrameNameBounds = {
781
1067
  y: number;
782
1068
  width: number;
783
1069
  height: number;
784
- angle: number;
785
1070
  };
786
1071
  export type FrameNameBoundsCache = {
787
1072
  get: (frameElement: ExcalidrawFrameLikeElement | ExcalidrawMagicFrameElement) => FrameNameBounds | null;
@@ -800,12 +1085,18 @@ export type Primitive = number | string | boolean | bigint | symbol | null | und
800
1085
  export type JSONValue = string | number | boolean | null | object;
801
1086
  export type EmbedsValidationStatus = Map<ExcalidrawIframeLikeElement["id"], boolean>;
802
1087
  export type ElementsPendingErasure = Set<ExcalidrawElement["id"]>;
803
- export type PendingExcalidrawElements = ExcalidrawElement[];
1088
+ export type PendingExcalidrawElements = NonDeletedExcalidrawElement[];
804
1089
  /** Runtime gridSize value. Null indicates disabled grid. */
805
1090
  export type NullableGridSize = (AppState["gridSize"] & MakeBrand<"NullableGridSize">) | null;
806
1091
  export type GenerateDiagramToCode = (props: {
807
- frame: ExcalidrawMagicFrameElement;
808
- children: readonly ExcalidrawElement[];
1092
+ frame: NonDeleted<ExcalidrawMagicFrameElement>;
1093
+ children: readonly NonDeletedExcalidrawElement[];
1094
+ /**
1095
+ * Optional streaming hook. Call with the accumulated response text as it
1096
+ * streams in so the editor can progressively render the partial HTML
1097
+ * inside the generated frame.
1098
+ */
1099
+ onPartial?: (html: string) => void;
809
1100
  }) => MaybePromise<{
810
1101
  html: string;
811
1102
  }>;
@@ -815,3 +1106,102 @@ export type Offsets = Partial<{
815
1106
  bottom: number;
816
1107
  left: number;
817
1108
  }>;
1109
+ /**
1110
+ * Value of the `data-viewport-ui` attribute, marking a DOM node as a UI
1111
+ * surface that occludes the canvas. Such nodes are measured by
1112
+ * `getViewportOffsets` to compute the default per-side viewport offsets:
1113
+ *
1114
+ * - `top` / `bottom` — offsets that side by the node's bottom/top edge
1115
+ * - `side` — a panel hugging the left or right edge. Which side is not
1116
+ * declared but resolved geometrically: if the node's horizontal center
1117
+ * lies in the left half of the viewport it counts against the left
1118
+ * offset (by its right edge), otherwise against the right offset (by
1119
+ * `viewportWidth - left edge`). Measuring the rendered position instead
1120
+ * of declaring a side means RTL layouts and host-configurable docking
1121
+ * (e.g. sidebar side) are handled for free — but it assumes the surface
1122
+ * actually hugs one edge; don't mark a centered/near-full-width node as
1123
+ * `side` (its midpoint would classify it to one side and the offset
1124
+ * would swallow most of the viewport).
1125
+ *
1126
+ * The attribute should only be present while the surface is actually
1127
+ * rendered — omit it (don't just hide the node) when the surface shouldn't
1128
+ * push the viewport around.
1129
+ */
1130
+ export type ViewportUIDock = "top" | "bottom" | "side";
1131
+ /**
1132
+ * Options for `getViewportOffsets` (and the `ui` key of
1133
+ * {@link ViewportOffsets}), controlling how offsets are derived from the
1134
+ * currently rendered editor UI.
1135
+ *
1136
+ * NOTE unlike the physical sides of {@link Offsets}, the horizontal values
1137
+ * here are logical, i.e. flipped in RTL layouts (`left` refers to the
1138
+ * reading-direction start side).
1139
+ */
1140
+ export type ViewportOffsetsOptions = {
1141
+ /** padding added to each measured side (default 24) */
1142
+ padding?: number;
1143
+ paddingTop?: number;
1144
+ paddingRight?: number;
1145
+ paddingBottom?: number;
1146
+ paddingLeft?: number;
1147
+ /** final value for the given side, replacing the measured UI size
1148
+ * (padding is not added on top) */
1149
+ top?: number;
1150
+ bottom?: number;
1151
+ left?: number;
1152
+ right?: number;
1153
+ /**
1154
+ * Reserve space for the given conditionally-rendered surfaces even while
1155
+ * they're hidden, so the resulting offsets don't shift when they
1156
+ * (dis)appear. Uses the surface's last-measured footprint, falling back
1157
+ * to an approximate default if it hasn't been rendered yet. Ignored on
1158
+ * phones (where these surfaces never occlude the canvas).
1159
+ */
1160
+ reserve?: {
1161
+ /** styles panel (rendered when a tool or selection is active) */
1162
+ stylesPanel?: boolean;
1163
+ /** sidebar (e.g. library) */
1164
+ sidebar?: boolean;
1165
+ };
1166
+ };
1167
+ /**
1168
+ * Viewport offsets accepted by the `setViewport`-family APIs (`setViewport`,
1169
+ * `props.initialState.viewport`), insetting the usable viewport area per
1170
+ * side so the target isn't fitted/centered underneath overlaid UI.
1171
+ *
1172
+ * Two (combinable) ways to specify:
1173
+ *
1174
+ * - **Static sides** (`top`/`right`/`bottom`/`left`) — absolute pixel
1175
+ * values, used as-is: physical (not flipped in RTL), zoom-independent,
1176
+ * no padding added. Sides not specified default to `0` (unless `ui` is
1177
+ * set, see below).
1178
+ *
1179
+ * - **`ui`** — derive the offsets from the editor UI (toolbar, styles
1180
+ * panel, sidebar...) as rendered at the time the viewport is set,
1181
+ * equivalent to calling `getViewportOffsets()`. Pass `true` for the
1182
+ * defaults, or options ({@link ViewportOffsetsOptions}) to customize
1183
+ * padding or reserve space for currently-hidden surfaces.
1184
+ *
1185
+ * When both are given, a static side always wins for that side — it
1186
+ * replaces whatever `ui` would yield (including `ui`'s own side overrides,
1187
+ * which — unlike the physical static sides — are RTL-relative). The
1188
+ * remaining sides fall back to the `ui`-derived values.
1189
+ *
1190
+ * @example
1191
+ * { top: 40 } // top 40px, other sides 0
1192
+ * { ui: true } // measured UI + default padding
1193
+ * { ui: { reserve: { stylesPanel: true } } } // + keep space for hidden panel
1194
+ * { top: 40, ui: true } // top exactly 40px, rest from UI
1195
+ */
1196
+ export type ViewportOffsets = Offsets & {
1197
+ ui?: true | ViewportOffsetsOptions;
1198
+ };
1199
+ /**
1200
+ * Value of the `data-viewport-ui-name` attribute, identifying a
1201
+ * conditionally-rendered surface (marked with `data-viewport-ui`) so that
1202
+ * `getViewportOffsets` can reserve space for it while it's hidden (see the
1203
+ * `reserve` option). Whenever a named surface is rendered, its measured
1204
+ * footprint is remembered; reserving uses that remembered footprint, or an
1205
+ * approximate default if the surface hasn't been rendered yet.
1206
+ */
1207
+ export type ViewportUIName = "sidebar" | "stylesPanel";