@excalidraw/element 0.18.0-51ad895 → 0.18.0-6135548

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 (196) hide show
  1. package/dist/dev/index.js +1065 -175
  2. package/dist/dev/index.js.map +4 -4
  3. package/dist/prod/index.js +17 -17
  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 +13 -11
  7. package/dist/types/common/src/editorInterface.d.ts +1 -1
  8. package/dist/types/common/src/font-metadata.d.ts +1 -3
  9. package/dist/types/common/src/index.d.ts +1 -1
  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 +43 -34
  13. package/dist/types/element/src/Scene.d.ts +3 -3
  14. package/dist/types/element/src/binding.d.ts +6 -4
  15. package/dist/types/element/src/bounds.d.ts +2 -10
  16. package/dist/types/element/src/collision.d.ts +2 -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 +5 -1
  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 -0
  25. package/dist/types/element/src/linearElementEditor.d.ts +1 -2
  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 +0 -6
  29. package/dist/types/element/src/resizeElements.d.ts +10 -10
  30. package/dist/types/element/src/resizeTest.d.ts +1 -1
  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 +3 -23
  36. package/dist/types/element/src/typeChecks.d.ts +2 -4
  37. package/dist/types/element/src/utils.d.ts +3 -1
  38. package/dist/types/{common → element}/src/visualdebug.d.ts +20 -2
  39. package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +62 -126
  40. package/dist/types/excalidraw/actions/actionAlign.d.ts +0 -1
  41. package/dist/types/excalidraw/actions/actionBoundText.d.ts +44 -87
  42. package/dist/types/excalidraw/actions/actionCanvas.d.ts +263 -510
  43. package/dist/types/excalidraw/actions/actionClipboard.d.ts +44 -87
  44. package/dist/types/excalidraw/actions/actionCropEditor.d.ts +21 -43
  45. package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +74 -142
  46. package/dist/types/excalidraw/actions/actionDistribute.d.ts +0 -1
  47. package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +0 -1
  48. package/dist/types/excalidraw/actions/actionElementLink.d.ts +18 -40
  49. package/dist/types/excalidraw/actions/actionElementLock.d.ts +45 -88
  50. package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +22 -44
  51. package/dist/types/excalidraw/actions/actionExport.d.ts +85 -170
  52. package/dist/types/excalidraw/actions/actionFinalize.d.ts +1 -2
  53. package/dist/types/excalidraw/actions/actionFlip.d.ts +0 -1
  54. package/dist/types/excalidraw/actions/actionFrame.d.ts +181 -302
  55. package/dist/types/excalidraw/actions/actionGroup.d.ts +48 -99
  56. package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +122 -180
  57. package/dist/types/excalidraw/actions/actionLink.d.ts +22 -44
  58. package/dist/types/excalidraw/actions/actionMenu.d.ts +17 -39
  59. package/dist/types/excalidraw/actions/actionNavigate.d.ts +14 -17
  60. package/dist/types/excalidraw/actions/actionProperties.d.ts +59 -102
  61. package/dist/types/excalidraw/actions/actionSelectAll.d.ts +24 -50
  62. package/dist/types/excalidraw/actions/actionStyles.d.ts +20 -42
  63. package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +22 -44
  64. package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +22 -44
  65. package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +16 -38
  66. package/dist/types/excalidraw/actions/actionToggleStats.d.ts +22 -44
  67. package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +22 -44
  68. package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +22 -44
  69. package/dist/types/excalidraw/actions/actionZindex.d.ts +0 -1
  70. package/dist/types/excalidraw/actions/manager.d.ts +1 -1
  71. package/dist/types/excalidraw/actions/register.d.ts +2 -2
  72. package/dist/types/excalidraw/appState.d.ts +3 -3
  73. package/dist/types/excalidraw/clipboard.d.ts +7 -31
  74. package/dist/types/excalidraw/components/Actions.d.ts +1 -1
  75. package/dist/types/excalidraw/components/App.d.ts +33 -41
  76. package/dist/types/excalidraw/components/Card.d.ts +1 -3
  77. package/dist/types/excalidraw/components/ColorPicker/ColorInput.d.ts +2 -4
  78. package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +0 -1
  79. package/dist/types/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +0 -1
  80. package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +0 -1
  81. package/dist/types/excalidraw/components/CommandPalette/types.d.ts +0 -1
  82. package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +2 -2
  83. package/dist/types/excalidraw/components/DarkModeToggle.d.ts +1 -1
  84. package/dist/types/excalidraw/components/DefaultSidebar.d.ts +9 -13
  85. package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +1 -1
  86. package/dist/types/excalidraw/components/Ellipsify.d.ts +1 -2
  87. package/dist/types/excalidraw/components/ErrorDialog.d.ts +1 -1
  88. package/dist/types/excalidraw/components/ExcalidrawLogo.d.ts +0 -1
  89. package/dist/types/excalidraw/components/EyeDropper.d.ts +0 -1
  90. package/dist/types/excalidraw/components/FilledButton.d.ts +1 -0
  91. package/dist/types/excalidraw/components/FontPicker/keyboardNavHandlers.d.ts +0 -1
  92. package/dist/types/excalidraw/components/HelpDialog.d.ts +1 -1
  93. package/dist/types/excalidraw/components/InlineIcon.d.ts +2 -2
  94. package/dist/types/excalidraw/components/LibraryMenuControlButtons.d.ts +1 -1
  95. package/dist/types/excalidraw/components/LibraryMenuHeaderContent.d.ts +1 -2
  96. package/dist/types/excalidraw/components/LibraryUnit.d.ts +2 -3
  97. package/dist/types/excalidraw/components/LoadingMessage.d.ts +0 -1
  98. package/dist/types/excalidraw/components/MobileToolBar.d.ts +0 -1
  99. package/dist/types/excalidraw/components/Modal.d.ts +0 -1
  100. package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirm.d.ts +1 -1
  101. package/dist/types/excalidraw/components/RadioGroup.d.ts +0 -1
  102. package/dist/types/excalidraw/components/RadioSelection.d.ts +4 -4
  103. package/dist/types/excalidraw/components/ScrollableList.d.ts +0 -1
  104. package/dist/types/excalidraw/components/Sidebar/Sidebar.d.ts +15 -21
  105. package/dist/types/excalidraw/components/Sidebar/SidebarHeader.d.ts +1 -1
  106. package/dist/types/excalidraw/components/Sidebar/SidebarTab.d.ts +1 -2
  107. package/dist/types/excalidraw/components/Sidebar/SidebarTabTrigger.d.ts +1 -2
  108. package/dist/types/excalidraw/components/Sidebar/SidebarTabTriggers.d.ts +1 -2
  109. package/dist/types/excalidraw/components/Sidebar/SidebarTabs.d.ts +1 -2
  110. package/dist/types/excalidraw/components/Spinner.d.ts +4 -4
  111. package/dist/types/excalidraw/components/Stats/CanvasGrid.d.ts +0 -1
  112. package/dist/types/excalidraw/components/Stats/Collapsible.d.ts +0 -1
  113. package/dist/types/excalidraw/components/Stats/DragInput.d.ts +0 -1
  114. package/dist/types/excalidraw/components/Stats/index.d.ts +7 -8
  115. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatHistoryMenu.d.ts +15 -0
  116. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatInterface.d.ts +27 -0
  117. package/dist/types/excalidraw/components/TTDDialog/Chat/ChatMessage.d.ts +14 -0
  118. package/dist/types/excalidraw/components/TTDDialog/Chat/TTDChatPanel.d.ts +26 -0
  119. package/dist/types/excalidraw/components/TTDDialog/Chat/index.d.ts +3 -0
  120. package/dist/types/excalidraw/components/TTDDialog/Chat/useChatAgent.d.ts +8 -0
  121. package/dist/types/excalidraw/components/TTDDialog/MermaidToExcalidraw.d.ts +3 -2
  122. package/dist/types/excalidraw/components/TTDDialog/TTDContext.d.ts +13 -0
  123. package/dist/types/excalidraw/components/TTDDialog/TTDDialog.d.ts +4 -25
  124. package/dist/types/excalidraw/components/TTDDialog/TTDDialogOutput.d.ts +2 -2
  125. package/dist/types/excalidraw/components/TTDDialog/TTDDialogPanel.d.ts +13 -9
  126. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTab.d.ts +1 -2
  127. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTrigger.d.ts +1 -2
  128. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTriggers.d.ts +1 -2
  129. package/dist/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +1 -1
  130. package/dist/types/excalidraw/components/TTDDialog/TTDPreviewPanel.d.ts +9 -0
  131. package/dist/types/excalidraw/components/TTDDialog/TextToDiagram.d.ts +8 -0
  132. package/dist/types/excalidraw/components/TTDDialog/common.d.ts +16 -16
  133. package/dist/types/excalidraw/components/TTDDialog/hooks/useChatManagement.d.ts +13 -0
  134. package/dist/types/excalidraw/components/TTDDialog/hooks/useMermaidRenderer.d.ts +14 -0
  135. package/dist/types/excalidraw/components/TTDDialog/hooks/useTextGeneration.d.ts +7 -0
  136. package/dist/types/excalidraw/components/TTDDialog/types.d.ts +91 -0
  137. package/dist/types/excalidraw/components/TTDDialog/useTTDChatStorage.d.ts +22 -0
  138. package/dist/types/excalidraw/components/TTDDialog/utils/TTDStreamFetch.d.ts +24 -0
  139. package/dist/types/excalidraw/components/TTDDialog/utils/chat.d.ts +10 -0
  140. package/dist/types/excalidraw/components/TTDDialog/utils/mermaidValidation.d.ts +1 -0
  141. package/dist/types/excalidraw/components/Toast.d.ts +3 -3
  142. package/dist/types/excalidraw/components/Trans.d.ts +2 -2
  143. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +30 -33
  144. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +5 -5
  145. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +3 -3
  146. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +12 -19
  147. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +5 -4
  148. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +0 -1
  149. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.d.ts +2 -2
  150. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemLink.d.ts +6 -6
  151. package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuTrigger.d.ts +3 -4
  152. package/dist/types/excalidraw/components/dropdownMenu/common.d.ts +1 -1
  153. package/dist/types/excalidraw/components/hoc/withInternalFallback.d.ts +1 -1
  154. package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +1 -1
  155. package/dist/types/excalidraw/components/icons.d.ts +16 -12
  156. package/dist/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +2 -13
  157. package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +2 -2
  158. package/dist/types/excalidraw/components/main-menu/MainMenu.d.ts +26 -29
  159. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Center.d.ts +6 -6
  160. package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.d.ts +15 -16
  161. package/dist/types/excalidraw/data/blob.d.ts +321 -3
  162. package/dist/types/excalidraw/data/encode.d.ts +4 -4
  163. package/dist/types/excalidraw/data/encryption.d.ts +5 -5
  164. package/dist/types/excalidraw/data/filesystem.d.ts +2 -2
  165. package/dist/types/excalidraw/data/index.d.ts +3 -3
  166. package/dist/types/excalidraw/data/json.d.ts +159 -2
  167. package/dist/types/excalidraw/data/library.d.ts +24 -9
  168. package/dist/types/excalidraw/data/restore.d.ts +25 -10
  169. package/dist/types/excalidraw/editor-jotai.d.ts +11 -11
  170. package/dist/types/excalidraw/errors.d.ts +14 -0
  171. package/dist/types/excalidraw/hooks/useOutsideClick.d.ts +1 -2
  172. package/dist/types/excalidraw/hooks/useScrollPosition.d.ts +1 -2
  173. package/dist/types/excalidraw/i18n.d.ts +2 -2
  174. package/dist/types/excalidraw/index.d.ts +4 -4
  175. package/dist/types/excalidraw/renderer/helpers.d.ts +6 -4
  176. package/dist/types/excalidraw/renderer/interactiveScene.d.ts +8 -6
  177. package/dist/types/excalidraw/scene/Renderer.d.ts +5 -2
  178. package/dist/types/excalidraw/scene/export.d.ts +2 -2
  179. package/dist/types/excalidraw/scene/scroll.d.ts +1 -6
  180. package/dist/types/excalidraw/scene/types.d.ts +7 -2
  181. package/dist/types/excalidraw/snapping.d.ts +5 -5
  182. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-bindings.d.ts +1 -1
  183. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-loader.d.ts +1 -1
  184. package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-wasm.d.ts +1 -1
  185. package/dist/types/excalidraw/subset/woff2/woff2-loader.d.ts +2 -2
  186. package/dist/types/excalidraw/subset/woff2/woff2-wasm.d.ts +1 -1
  187. package/dist/types/excalidraw/types.d.ts +1 -2
  188. package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +2 -2
  189. package/dist/types/math/src/polygon.d.ts +2 -2
  190. package/dist/types/math/src/range.d.ts +1 -3
  191. package/dist/types/math/src/segment.d.ts +3 -3
  192. package/dist/types/utils/src/bbox.d.ts +1 -1
  193. package/dist/types/utils/src/export.d.ts +5 -5
  194. package/dist/types/utils/src/shape.d.ts +6 -6
  195. package/dist/types/utils/src/withinBounds.d.ts +2 -2
  196. package/package.json +9 -3
@@ -2,14 +2,14 @@ import React from "react";
2
2
  declare const MenuContent: {
3
3
  ({ children, onClickOutside, className, onSelect, style, placement, }: {
4
4
  children?: React.ReactNode;
5
- onClickOutside?: (() => void) | undefined;
6
- className?: string | undefined;
5
+ onClickOutside?: () => void;
6
+ className?: string;
7
7
  /**
8
8
  * Called when any menu item is selected (clicked on).
9
9
  */
10
- onSelect?: ((event: Event) => void) | undefined;
11
- style?: React.CSSProperties | undefined;
12
- placement?: "top" | "bottom" | undefined;
10
+ onSelect?: (event: Event) => void;
11
+ style?: React.CSSProperties;
12
+ placement?: "top" | "bottom";
13
13
  }): import("react/jsx-runtime").JSX.Element;
14
14
  displayName: string;
15
15
  };
@@ -2,9 +2,9 @@ import React from "react";
2
2
  declare const MenuGroup: {
3
3
  ({ children, className, style, title, }: {
4
4
  children: React.ReactNode;
5
- className?: string | undefined;
6
- style?: React.CSSProperties | undefined;
7
- title?: string | undefined;
5
+ className?: string;
6
+ style?: React.CSSProperties;
7
+ title?: string;
8
8
  }): import("react/jsx-runtime").JSX.Element;
9
9
  displayName: string;
10
10
  };
@@ -2,26 +2,23 @@ import React from "react";
2
2
  import type { ValueOf } from "@excalidraw/common/utility-types";
3
3
  import type { JSX } from "react";
4
4
  declare const DropdownMenuItem: {
5
- ({ icon, value, order, children, shortcut, className, hovered, selected, textStyle, onSelect, onClick, ...rest }: {
6
- icon?: JSX.Element | undefined;
5
+ ({ icon, value, order, children, shortcut, className, hovered, selected, textStyle, onSelect, onClick, badge, ...rest }: {
6
+ icon?: JSX.Element;
7
7
  value?: string | number | undefined;
8
- order?: number | undefined;
9
- onSelect?: ((event: Event) => void) | undefined;
8
+ order?: number;
9
+ onSelect?: (event: Event) => void;
10
10
  children: React.ReactNode;
11
- shortcut?: string | undefined;
12
- hovered?: boolean | undefined;
13
- selected?: boolean | undefined;
14
- textStyle?: React.CSSProperties | undefined;
15
- className?: string | undefined;
11
+ shortcut?: string;
12
+ hovered?: boolean;
13
+ selected?: boolean;
14
+ textStyle?: React.CSSProperties;
15
+ className?: string;
16
+ badge?: React.ReactNode;
16
17
  } & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onSelect">): import("react/jsx-runtime").JSX.Element;
17
18
  displayName: string;
18
19
  Badge: {
19
20
  ({ type, children, }: {
20
- type?: ValueOf<{
21
- readonly GREEN: "green";
22
- readonly RED: "red";
23
- readonly BLUE: "blue";
24
- }> | undefined;
21
+ type?: ValueOf<typeof DropDownMenuItemBadgeType>;
25
22
  children: React.ReactNode;
26
23
  }): import("react/jsx-runtime").JSX.Element;
27
24
  displayName: string;
@@ -34,11 +31,7 @@ export declare const DropDownMenuItemBadgeType: {
34
31
  };
35
32
  export declare const DropDownMenuItemBadge: {
36
33
  ({ type, children, }: {
37
- type?: ValueOf<{
38
- readonly GREEN: "green";
39
- readonly RED: "red";
40
- readonly BLUE: "blue";
41
- }> | undefined;
34
+ type?: ValueOf<typeof DropDownMenuItemBadgeType>;
42
35
  children: React.ReactNode;
43
36
  }): import("react/jsx-runtime").JSX.Element;
44
37
  displayName: string;
@@ -1,8 +1,9 @@
1
1
  import type { JSX } from "react";
2
- declare const MenuItemContent: ({ textStyle, icon, shortcut, children, }: {
3
- icon?: JSX.Element | undefined;
4
- shortcut?: string | undefined;
5
- textStyle?: import("react").CSSProperties | undefined;
2
+ declare const MenuItemContent: ({ textStyle, icon, shortcut, children, badge, }: {
3
+ icon?: JSX.Element;
4
+ shortcut?: string;
5
+ textStyle?: React.CSSProperties;
6
6
  children: React.ReactNode;
7
+ badge?: React.ReactNode;
7
8
  }) => import("react/jsx-runtime").JSX.Element;
8
9
  export default MenuItemContent;
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  type Props<T> = {
3
2
  value: T;
4
3
  shortcut?: string;
@@ -1,7 +1,7 @@
1
1
  import React from "react";
2
2
  declare const DropdownMenuItemCustom: ({ children, className, selected, ...rest }: {
3
3
  children: React.ReactNode;
4
- className?: string | undefined;
5
- selected?: boolean | undefined;
4
+ className?: string;
5
+ selected?: boolean;
6
6
  } & React.HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
7
7
  export default DropdownMenuItemCustom;
@@ -3,13 +3,13 @@ import type { JSX } from "react";
3
3
  declare const DropdownMenuItemLink: {
4
4
  ({ icon, shortcut, href, children, onSelect, className, selected, rel, ...rest }: {
5
5
  href: string;
6
- icon?: JSX.Element | undefined;
6
+ icon?: JSX.Element;
7
7
  children: React.ReactNode;
8
- shortcut?: string | undefined;
9
- className?: string | undefined;
10
- selected?: boolean | undefined;
11
- onSelect?: ((event: Event) => void) | undefined;
12
- rel?: string | undefined;
8
+ shortcut?: string;
9
+ className?: string;
10
+ selected?: boolean;
11
+ onSelect?: (event: Event) => void;
12
+ rel?: string;
13
13
  } & React.AnchorHTMLAttributes<HTMLAnchorElement>): import("react/jsx-runtime").JSX.Element;
14
14
  displayName: string;
15
15
  };
@@ -1,11 +1,10 @@
1
- /// <reference types="react" />
2
1
  declare const MenuTrigger: {
3
2
  ({ className, children, onToggle, title, ...rest }: {
4
- className?: string | undefined;
3
+ className?: string;
5
4
  children: React.ReactNode;
6
5
  onToggle: () => void;
7
- title?: string | undefined;
8
- } & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onSelect">): import("react/jsx-runtime").JSX.Element;
6
+ title?: string;
7
+ } & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onSelect">): import("react/jsx-runtime").JSX.Element;
9
8
  displayName: string;
10
9
  };
11
10
  export default MenuTrigger;
@@ -1,6 +1,6 @@
1
1
  import React from "react";
2
2
  export declare const DropdownMenuContentPropsContext: React.Context<{
3
- onSelect?: ((event: Event) => void) | undefined;
3
+ onSelect?: (event: Event) => void;
4
4
  }>;
5
5
  export declare const getDropdownMenuItemClassName: (className?: string, selected?: boolean, hovered?: boolean) => string;
6
6
  export declare const useHandleDropdownMenuItemClick: (origOnClick: React.MouseEventHandler<HTMLAnchorElement | HTMLButtonElement> | undefined, onSelect: ((event: Event) => void) | undefined) => (event: React.MouseEvent<HTMLAnchorElement | HTMLButtonElement, MouseEvent>) => void;
@@ -1,4 +1,4 @@
1
1
  import React from "react";
2
2
  export declare const withInternalFallback: <P>(componentName: string, Component: React.FC<P>) => React.FC<P & {
3
- __fallback?: boolean | undefined;
3
+ __fallback?: boolean;
4
4
  }>;
@@ -1,5 +1,5 @@
1
1
  import type { GlobalPoint, Radians } from "@excalidraw/math";
2
- import type { Bounds } from "@excalidraw/element";
2
+ import type { Bounds } from "@excalidraw/common";
3
3
  import type { ElementsMap, NonDeletedExcalidrawElement } from "@excalidraw/element/types";
4
4
  import type { AppState, UIAppState } from "../../types";
5
5
  export declare const DEFAULT_LINK_SIZE = 12;
@@ -118,37 +118,37 @@ export declare const EdgeSharpIcon: import("react/jsx-runtime").JSX.Element;
118
118
  export declare const EdgeRoundIcon: import("react/jsx-runtime").JSX.Element;
119
119
  export declare const ArrowheadNoneIcon: import("react/jsx-runtime").JSX.Element;
120
120
  export declare const ArrowheadArrowIcon: React.MemoExoticComponent<({ flip }: {
121
- flip?: boolean | undefined;
121
+ flip?: boolean;
122
122
  }) => import("react/jsx-runtime").JSX.Element>;
123
123
  export declare const ArrowheadCircleIcon: React.MemoExoticComponent<({ flip }: {
124
- flip?: boolean | undefined;
124
+ flip?: boolean;
125
125
  }) => import("react/jsx-runtime").JSX.Element>;
126
126
  export declare const ArrowheadCircleOutlineIcon: React.MemoExoticComponent<({ flip }: {
127
- flip?: boolean | undefined;
127
+ flip?: boolean;
128
128
  }) => import("react/jsx-runtime").JSX.Element>;
129
129
  export declare const ArrowheadBarIcon: React.MemoExoticComponent<({ flip }: {
130
- flip?: boolean | undefined;
130
+ flip?: boolean;
131
131
  }) => import("react/jsx-runtime").JSX.Element>;
132
132
  export declare const ArrowheadTriangleIcon: React.MemoExoticComponent<({ flip }: {
133
- flip?: boolean | undefined;
133
+ flip?: boolean;
134
134
  }) => import("react/jsx-runtime").JSX.Element>;
135
135
  export declare const ArrowheadTriangleOutlineIcon: React.MemoExoticComponent<({ flip }: {
136
- flip?: boolean | undefined;
136
+ flip?: boolean;
137
137
  }) => import("react/jsx-runtime").JSX.Element>;
138
138
  export declare const ArrowheadDiamondIcon: React.MemoExoticComponent<({ flip }: {
139
- flip?: boolean | undefined;
139
+ flip?: boolean;
140
140
  }) => import("react/jsx-runtime").JSX.Element>;
141
141
  export declare const ArrowheadDiamondOutlineIcon: React.MemoExoticComponent<({ flip }: {
142
- flip?: boolean | undefined;
142
+ flip?: boolean;
143
143
  }) => import("react/jsx-runtime").JSX.Element>;
144
144
  export declare const ArrowheadCrowfootIcon: React.MemoExoticComponent<({ flip }: {
145
- flip?: boolean | undefined;
145
+ flip?: boolean;
146
146
  }) => import("react/jsx-runtime").JSX.Element>;
147
147
  export declare const ArrowheadCrowfootOneIcon: React.MemoExoticComponent<({ flip }: {
148
- flip?: boolean | undefined;
148
+ flip?: boolean;
149
149
  }) => import("react/jsx-runtime").JSX.Element>;
150
150
  export declare const ArrowheadCrowfootOneOrManyIcon: React.MemoExoticComponent<({ flip }: {
151
- flip?: boolean | undefined;
151
+ flip?: boolean;
152
152
  }) => import("react/jsx-runtime").JSX.Element>;
153
153
  export declare const FontSizeSmallIcon: import("react/jsx-runtime").JSX.Element;
154
154
  export declare const FontSizeMediumIcon: import("react/jsx-runtime").JSX.Element;
@@ -157,6 +157,7 @@ export declare const FontSizeExtraLargeIcon: import("react/jsx-runtime").JSX.Ele
157
157
  export declare const fontSizeIcon: import("react/jsx-runtime").JSX.Element;
158
158
  export declare const FontFamilyHeadingIcon: import("react/jsx-runtime").JSX.Element;
159
159
  export declare const FontFamilyNormalIcon: import("react/jsx-runtime").JSX.Element;
160
+ export declare const codeIcon: import("react/jsx-runtime").JSX.Element;
160
161
  export declare const FontFamilyCodeIcon: import("react/jsx-runtime").JSX.Element;
161
162
  export declare const TextAlignLeftIcon: import("react/jsx-runtime").JSX.Element;
162
163
  export declare const TextAlignCenterIcon: import("react/jsx-runtime").JSX.Element;
@@ -186,6 +187,8 @@ export declare const eyeDropperIcon: import("react/jsx-runtime").JSX.Element;
186
187
  export declare const extraToolsIcon: import("react/jsx-runtime").JSX.Element;
187
188
  export declare const frameToolIcon: import("react/jsx-runtime").JSX.Element;
188
189
  export declare const mermaidLogoIcon: import("react/jsx-runtime").JSX.Element;
190
+ export declare const RetryIcon: import("react/jsx-runtime").JSX.Element;
191
+ export declare const stackPushIcon: import("react/jsx-runtime").JSX.Element;
189
192
  export declare const ArrowRightIcon: import("react/jsx-runtime").JSX.Element;
190
193
  export declare const laserPointerToolIcon: import("react/jsx-runtime").JSX.Element;
191
194
  export declare const MagicIcon: import("react/jsx-runtime").JSX.Element;
@@ -197,7 +200,8 @@ export declare const eyeClosedIcon: import("react/jsx-runtime").JSX.Element;
197
200
  export declare const brainIcon: import("react/jsx-runtime").JSX.Element;
198
201
  export declare const brainIconThin: import("react/jsx-runtime").JSX.Element;
199
202
  export declare const searchIcon: import("react/jsx-runtime").JSX.Element;
200
- export declare const clockIcon: import("react/jsx-runtime").JSX.Element;
203
+ export declare const historyCommandIcon: import("react/jsx-runtime").JSX.Element;
204
+ export declare const historyIcon: import("react/jsx-runtime").JSX.Element;
201
205
  export declare const microphoneIcon: import("react/jsx-runtime").JSX.Element;
202
206
  export declare const microphoneMutedIcon: import("react/jsx-runtime").JSX.Element;
203
207
  export declare const boltIcon: import("react/jsx-runtime").JSX.Element;
@@ -1,22 +1,11 @@
1
- /// <reference types="react" />
2
1
  import { type EditorInterface } from "@excalidraw/common";
3
2
  import "./LiveCollaborationTrigger.scss";
4
3
  declare const LiveCollaborationTrigger: {
5
4
  ({ isCollaborating, onSelect, editorInterface, ...rest }: {
6
5
  isCollaborating: boolean;
7
6
  onSelect: () => void;
8
- editorInterface?: Readonly<{
9
- formFactor: "phone" | "tablet" | "desktop";
10
- desktopUIMode: "compact" | "full";
11
- userAgent: Readonly<{
12
- isMobileDevice: boolean;
13
- platform: "other" | "ios" | "android" | "unknown";
14
- }>;
15
- isTouchScreen: boolean;
16
- canFitSidebar: boolean;
17
- isLandscape: boolean;
18
- }> | undefined;
19
- } & import("react").ButtonHTMLAttributes<HTMLButtonElement>): import("react/jsx-runtime").JSX.Element;
7
+ editorInterface?: EditorInterface;
8
+ } & React.ButtonHTMLAttributes<HTMLButtonElement>): import("react/jsx-runtime").JSX.Element;
20
9
  displayName: string;
21
10
  };
22
11
  export default LiveCollaborationTrigger;
@@ -38,8 +38,8 @@ export declare const ToggleTheme: {
38
38
  theme: Theme | "system";
39
39
  onSelect: (theme: Theme | "system") => void;
40
40
  } | {
41
- allowSystemTheme?: false | undefined;
42
- onSelect?: ((theme: Theme) => void) | undefined;
41
+ allowSystemTheme?: false;
42
+ onSelect?: (theme: Theme) => void;
43
43
  }): import("react/jsx-runtime").JSX.Element | null;
44
44
  displayName: string;
45
45
  };
@@ -5,40 +5,37 @@ declare const MainMenu: React.FC<{
5
5
  /**
6
6
  * Called when any menu item is selected (clicked on).
7
7
  */
8
- onSelect?: ((event: Event) => void) | undefined;
8
+ onSelect?: (event: Event) => void;
9
9
  } & {
10
- __fallback?: boolean | undefined;
10
+ __fallback?: boolean;
11
11
  }> & {
12
12
  Trigger: {
13
13
  ({ className, children, onToggle, title, ...rest }: {
14
- className?: string | undefined;
14
+ className?: string;
15
15
  children: React.ReactNode;
16
16
  onToggle: () => void;
17
- title?: string | undefined;
17
+ title?: string;
18
18
  } & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onSelect">): import("react/jsx-runtime").JSX.Element;
19
19
  displayName: string;
20
20
  };
21
21
  Item: {
22
- ({ icon, value, order, children, shortcut, className, hovered, selected, textStyle, onSelect, onClick, ...rest }: {
23
- icon?: React.JSX.Element | undefined;
22
+ ({ icon, value, order, children, shortcut, className, hovered, selected, textStyle, onSelect, onClick, badge, ...rest }: {
23
+ icon?: React.JSX.Element;
24
24
  value?: string | number | undefined;
25
- order?: number | undefined;
26
- onSelect?: ((event: Event) => void) | undefined;
25
+ order?: number;
26
+ onSelect?: (event: Event) => void;
27
27
  children: React.ReactNode;
28
- shortcut?: string | undefined;
29
- hovered?: boolean | undefined;
30
- selected?: boolean | undefined;
31
- textStyle?: React.CSSProperties | undefined;
32
- className?: string | undefined;
28
+ shortcut?: string;
29
+ hovered?: boolean;
30
+ selected?: boolean;
31
+ textStyle?: React.CSSProperties;
32
+ className?: string;
33
+ badge?: React.ReactNode;
33
34
  } & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onSelect">): import("react/jsx-runtime").JSX.Element;
34
35
  displayName: string;
35
36
  Badge: {
36
37
  ({ type, children, }: {
37
- type?: import("../../../common/src/utility-types").ValueOf<{
38
- readonly GREEN: "green";
39
- readonly RED: "red";
40
- readonly BLUE: "blue";
41
- }> | undefined;
38
+ type?: import("@excalidraw/common/utility-types").ValueOf<typeof import("../dropdownMenu/DropdownMenuItem").DropDownMenuItemBadgeType>;
42
39
  children: React.ReactNode;
43
40
  }): import("react/jsx-runtime").JSX.Element;
44
41
  displayName: string;
@@ -47,27 +44,27 @@ declare const MainMenu: React.FC<{
47
44
  ItemLink: {
48
45
  ({ icon, shortcut, href, children, onSelect, className, selected, rel, ...rest }: {
49
46
  href: string;
50
- icon?: React.JSX.Element | undefined;
47
+ icon?: React.JSX.Element;
51
48
  children: React.ReactNode;
52
- shortcut?: string | undefined;
53
- className?: string | undefined;
54
- selected?: boolean | undefined;
55
- onSelect?: ((event: Event) => void) | undefined;
56
- rel?: string | undefined;
49
+ shortcut?: string;
50
+ className?: string;
51
+ selected?: boolean;
52
+ onSelect?: (event: Event) => void;
53
+ rel?: string;
57
54
  } & React.AnchorHTMLAttributes<HTMLAnchorElement>): import("react/jsx-runtime").JSX.Element;
58
55
  displayName: string;
59
56
  };
60
57
  ItemCustom: ({ children, className, selected, ...rest }: {
61
58
  children: React.ReactNode;
62
- className?: string | undefined;
63
- selected?: boolean | undefined;
59
+ className?: string;
60
+ selected?: boolean;
64
61
  } & React.HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
65
62
  Group: {
66
63
  ({ children, className, style, title, }: {
67
64
  children: React.ReactNode;
68
- className?: string | undefined;
69
- style?: React.CSSProperties | undefined;
70
- title?: string | undefined;
65
+ className?: string;
66
+ style?: React.CSSProperties;
67
+ title?: string;
71
68
  }): import("react/jsx-runtime").JSX.Element;
72
69
  displayName: string;
73
70
  };
@@ -26,18 +26,18 @@ declare const Center: {
26
26
  ({ onSelect, children, icon, shortcut, className, ...props }: {
27
27
  onSelect: () => void;
28
28
  children: React.ReactNode;
29
- icon?: JSX.Element | undefined;
30
- shortcut?: string | null | undefined;
31
- } & import("react").ButtonHTMLAttributes<HTMLButtonElement>): import("react/jsx-runtime").JSX.Element;
29
+ icon?: JSX.Element;
30
+ shortcut?: string | null;
31
+ } & React.ButtonHTMLAttributes<HTMLButtonElement>): import("react/jsx-runtime").JSX.Element;
32
32
  displayName: string;
33
33
  };
34
34
  MenuItemLink: {
35
35
  ({ children, href, icon, shortcut, className, ...props }: {
36
36
  children: React.ReactNode;
37
37
  href: string;
38
- icon?: JSX.Element | undefined;
39
- shortcut?: string | null | undefined;
40
- } & import("react").AnchorHTMLAttributes<HTMLAnchorElement>): import("react/jsx-runtime").JSX.Element;
38
+ icon?: JSX.Element;
39
+ shortcut?: string | null;
40
+ } & React.AnchorHTMLAttributes<HTMLAnchorElement>): import("react/jsx-runtime").JSX.Element;
41
41
  displayName: string;
42
42
  };
43
43
  MenuItemHelp: {
@@ -1,4 +1,3 @@
1
- /// <reference types="react" />
2
1
  import "./WelcomeScreen.scss";
3
2
  declare const WelcomeScreen: {
4
3
  (props: {
@@ -7,43 +6,43 @@ declare const WelcomeScreen: {
7
6
  displayName: string;
8
7
  Center: {
9
8
  ({ children }: {
10
- children?: import("react").ReactNode;
9
+ children?: React.ReactNode;
11
10
  }): import("react/jsx-runtime").JSX.Element;
12
11
  displayName: string;
13
12
  Logo: {
14
13
  ({ children }: {
15
- children?: import("react").ReactNode;
14
+ children?: React.ReactNode;
16
15
  }): import("react/jsx-runtime").JSX.Element;
17
16
  displayName: string;
18
17
  };
19
18
  Heading: {
20
19
  ({ children }: {
21
- children: import("react").ReactNode;
20
+ children: React.ReactNode;
22
21
  }): import("react/jsx-runtime").JSX.Element;
23
22
  displayName: string;
24
23
  };
25
24
  Menu: {
26
25
  ({ children }: {
27
- children?: import("react").ReactNode;
26
+ children?: React.ReactNode;
28
27
  }): import("react/jsx-runtime").JSX.Element;
29
28
  displayName: string;
30
29
  };
31
30
  MenuItem: {
32
31
  ({ onSelect, children, icon, shortcut, className, ...props }: {
33
32
  onSelect: () => void;
34
- children: import("react").ReactNode;
35
- icon?: import("react").JSX.Element | undefined;
36
- shortcut?: string | null | undefined;
37
- } & import("react").ButtonHTMLAttributes<HTMLButtonElement>): import("react/jsx-runtime").JSX.Element;
33
+ children: React.ReactNode;
34
+ icon?: import("react").JSX.Element;
35
+ shortcut?: string | null;
36
+ } & React.ButtonHTMLAttributes<HTMLButtonElement>): import("react/jsx-runtime").JSX.Element;
38
37
  displayName: string;
39
38
  };
40
39
  MenuItemLink: {
41
40
  ({ children, href, icon, shortcut, className, ...props }: {
42
- children: import("react").ReactNode;
41
+ children: React.ReactNode;
43
42
  href: string;
44
- icon?: import("react").JSX.Element | undefined;
45
- shortcut?: string | null | undefined;
46
- } & import("react").AnchorHTMLAttributes<HTMLAnchorElement>): import("react/jsx-runtime").JSX.Element;
43
+ icon?: import("react").JSX.Element;
44
+ shortcut?: string | null;
45
+ } & React.AnchorHTMLAttributes<HTMLAnchorElement>): import("react/jsx-runtime").JSX.Element;
47
46
  displayName: string;
48
47
  };
49
48
  MenuItemHelp: {
@@ -64,19 +63,19 @@ declare const WelcomeScreen: {
64
63
  Hints: {
65
64
  MenuHint: {
66
65
  ({ children }: {
67
- children?: import("react").ReactNode;
66
+ children?: React.ReactNode;
68
67
  }): import("react/jsx-runtime").JSX.Element;
69
68
  displayName: string;
70
69
  };
71
70
  ToolbarHint: {
72
71
  ({ children }: {
73
- children?: import("react").ReactNode;
72
+ children?: React.ReactNode;
74
73
  }): import("react/jsx-runtime").JSX.Element;
75
74
  displayName: string;
76
75
  };
77
76
  HelpHint: {
78
77
  ({ children }: {
79
- children?: import("react").ReactNode;
78
+ children?: React.ReactNode;
80
79
  }): import("react/jsx-runtime").JSX.Element;
81
80
  displayName: string;
82
81
  };