@excalidraw/element 0.18.0-b9d27d3 → 0.18.0-c158187
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.
- package/dist/dev/index.js +3381 -1901
- package/dist/dev/index.js.map +4 -4
- package/dist/prod/index.js +17 -17
- package/dist/types/common/src/bounds.d.ts +10 -0
- package/dist/types/common/src/colors.d.ts +5 -2
- package/dist/types/common/src/constants.d.ts +22 -24
- package/dist/types/common/src/editorInterface.d.ts +34 -0
- package/dist/types/common/src/font-metadata.d.ts +1 -3
- package/dist/types/common/src/index.d.ts +3 -0
- package/dist/types/common/src/keys.d.ts +1 -1
- package/dist/types/common/src/utility-types.d.ts +0 -1
- package/dist/types/common/src/utils.d.ts +49 -33
- package/dist/types/common/src/visualdebug.d.ts +41 -0
- package/dist/types/element/src/Scene.d.ts +3 -3
- package/dist/types/element/src/binding.d.ts +58 -44
- package/dist/types/element/src/bounds.d.ts +2 -10
- package/dist/types/element/src/collision.d.ts +6 -2
- package/dist/types/element/src/comparisons.d.ts +7 -7
- package/dist/types/element/src/dragElements.d.ts +3 -3
- package/dist/types/element/src/duplicate.d.ts +3 -3
- package/dist/types/element/src/fractionalIndex.d.ts +2 -2
- package/dist/types/element/src/frame.d.ts +5 -1
- package/dist/types/element/src/heading.d.ts +2 -1
- package/dist/types/element/src/image.d.ts +1 -11
- package/dist/types/element/src/index.d.ts +1 -3
- package/dist/types/element/src/linearElementEditor.d.ts +16 -20
- package/dist/types/element/src/mutateElement.d.ts +3 -1
- package/dist/types/element/src/newElement.d.ts +6 -6
- package/dist/types/element/src/renderElement.d.ts +4 -7
- package/dist/types/element/src/resizeElements.d.ts +10 -10
- package/dist/types/element/src/resizeTest.d.ts +6 -5
- package/dist/types/element/src/selection.d.ts +3 -7
- package/dist/types/element/src/shape.d.ts +8 -7
- package/dist/types/element/src/textMeasurements.d.ts +1 -3
- package/dist/types/{excalidraw/data → element/src}/transform.d.ts +3 -3
- package/dist/types/element/src/transformHandles.d.ts +8 -27
- package/dist/types/element/src/typeChecks.d.ts +4 -7
- package/dist/types/element/src/types.d.ts +7 -11
- package/dist/types/element/src/utils.d.ts +5 -2
- package/dist/types/element/src/zindex.d.ts +7 -1
- package/dist/types/excalidraw/actions/actionAddToLibrary.d.ts +93 -136
- package/dist/types/excalidraw/actions/actionAlign.d.ts +6 -7
- package/dist/types/excalidraw/actions/actionBoundText.d.ts +67 -96
- package/dist/types/excalidraw/actions/actionCanvas.d.ts +401 -771
- package/dist/types/excalidraw/actions/actionClipboard.d.ts +86 -856
- package/dist/types/excalidraw/actions/actionCropEditor.d.ts +32 -47
- package/dist/types/excalidraw/actions/actionDeleteSelected.d.ts +110 -159
- package/dist/types/excalidraw/actions/actionDistribute.d.ts +2 -3
- package/dist/types/excalidraw/actions/actionDuplicateSelection.d.ts +2 -3
- package/dist/types/excalidraw/actions/actionElementLink.d.ts +28 -45
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +66 -95
- package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +33 -48
- package/dist/types/excalidraw/actions/actionExport.d.ts +144 -1104
- package/dist/types/excalidraw/actions/actionFinalize.d.ts +10 -394
- package/dist/types/excalidraw/actions/actionFlip.d.ts +2 -3
- package/dist/types/excalidraw/actions/actionFrame.d.ts +227 -322
- package/dist/types/excalidraw/actions/actionGroup.d.ts +70 -107
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +140 -195
- package/dist/types/excalidraw/actions/actionLink.d.ts +30 -45
- package/dist/types/excalidraw/actions/actionMenu.d.ts +27 -410
- package/dist/types/excalidraw/actions/actionNavigate.d.ts +18 -359
- package/dist/types/excalidraw/actions/actionProperties.d.ts +129 -2488
- package/dist/types/excalidraw/actions/actionSelectAll.d.ts +35 -54
- package/dist/types/excalidraw/actions/actionStyles.d.ts +32 -47
- package/dist/types/excalidraw/actions/actionTextAutoResize.d.ts +1 -1
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +32 -47
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +32 -47
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +25 -42
- package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +1 -1
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +32 -47
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +32 -47
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +33 -48
- package/dist/types/excalidraw/actions/actionZindex.d.ts +2 -3
- package/dist/types/excalidraw/actions/index.d.ts +2 -2
- package/dist/types/excalidraw/actions/register.d.ts +2 -2
- package/dist/types/excalidraw/actions/types.d.ts +4 -4
- package/dist/types/excalidraw/appState.d.ts +12 -7
- package/dist/types/excalidraw/clipboard.d.ts +7 -29
- package/dist/types/excalidraw/components/Actions.d.ts +22 -5
- package/dist/types/excalidraw/components/App.d.ts +58 -59
- package/dist/types/excalidraw/components/Card.d.ts +0 -1
- package/dist/types/excalidraw/components/ColorPicker/ColorInput.d.ts +7 -4
- package/dist/types/excalidraw/components/ColorPicker/ColorPicker.d.ts +0 -1
- package/dist/types/excalidraw/components/ColorPicker/Picker.d.ts +2 -0
- package/dist/types/excalidraw/components/ColorPicker/PickerColorList.d.ts +2 -1
- package/dist/types/excalidraw/components/ColorPicker/ShadeList.d.ts +2 -1
- package/dist/types/excalidraw/components/ColorPicker/keyboardNavHandlers.d.ts +0 -1
- package/dist/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +1 -0
- package/dist/types/excalidraw/components/CommandPalette/types.d.ts +1 -3
- package/dist/types/excalidraw/components/ConvertElementTypePopup.d.ts +2 -2
- package/dist/types/excalidraw/components/DarkModeToggle.d.ts +1 -1
- package/dist/types/excalidraw/components/DefaultSidebar.d.ts +9 -13
- package/dist/types/excalidraw/components/ElementLinkDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/Ellipsify.d.ts +1 -2
- package/dist/types/excalidraw/components/ErrorDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/ExcalidrawLogo.d.ts +1 -2
- package/dist/types/excalidraw/components/EyeDropper.d.ts +0 -1
- package/dist/types/excalidraw/components/FilledButton.d.ts +1 -1
- package/dist/types/excalidraw/components/FontPicker/FontPicker.d.ts +2 -1
- package/dist/types/excalidraw/components/FontPicker/FontPickerTrigger.d.ts +3 -1
- package/dist/types/excalidraw/components/FontPicker/keyboardNavHandlers.d.ts +0 -1
- package/dist/types/excalidraw/components/HelpDialog.d.ts +1 -1
- package/dist/types/excalidraw/components/HintViewer.d.ts +4 -3
- package/dist/types/excalidraw/components/InlineIcon.d.ts +3 -1
- package/dist/types/excalidraw/components/LayerUI.d.ts +2 -1
- package/dist/types/excalidraw/components/LibraryMenuControlButtons.d.ts +1 -1
- package/dist/types/excalidraw/components/LibraryMenuHeaderContent.d.ts +1 -2
- package/dist/types/excalidraw/components/LibraryMenuSection.d.ts +1 -1
- package/dist/types/excalidraw/components/LibraryUnit.d.ts +2 -3
- package/dist/types/excalidraw/components/LoadingMessage.d.ts +0 -1
- package/dist/types/excalidraw/components/MobileMenu.d.ts +3 -5
- package/dist/types/excalidraw/components/MobileToolBar.d.ts +10 -0
- package/dist/types/excalidraw/components/Modal.d.ts +0 -1
- package/dist/types/excalidraw/components/OverwriteConfirm/OverwriteConfirm.d.ts +1 -1
- package/dist/types/excalidraw/components/Popover.d.ts +2 -1
- package/dist/types/excalidraw/components/PropertiesPopover.d.ts +1 -0
- package/dist/types/excalidraw/components/RadioGroup.d.ts +0 -1
- package/dist/types/excalidraw/components/RadioSelection.d.ts +4 -4
- package/dist/types/excalidraw/components/ScrollableList.d.ts +0 -1
- package/dist/types/excalidraw/components/Sidebar/Sidebar.d.ts +15 -21
- package/dist/types/excalidraw/components/Sidebar/SidebarHeader.d.ts +1 -1
- package/dist/types/excalidraw/components/Sidebar/SidebarTab.d.ts +1 -2
- package/dist/types/excalidraw/components/Sidebar/SidebarTabTrigger.d.ts +1 -2
- package/dist/types/excalidraw/components/Sidebar/SidebarTabTriggers.d.ts +1 -2
- package/dist/types/excalidraw/components/Sidebar/SidebarTabs.d.ts +1 -2
- package/dist/types/excalidraw/components/Spinner.d.ts +4 -4
- package/dist/types/excalidraw/components/Stats/CanvasGrid.d.ts +0 -1
- package/dist/types/excalidraw/components/Stats/Collapsible.d.ts +0 -1
- package/dist/types/excalidraw/components/Stats/DragInput.d.ts +0 -1
- package/dist/types/excalidraw/components/Stats/index.d.ts +7 -8
- package/dist/types/excalidraw/components/Stats/utils.d.ts +1 -1
- package/dist/types/excalidraw/components/TTDDialog/TTDDialog.d.ts +1 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogOutput.d.ts +0 -1
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTab.d.ts +1 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTrigger.d.ts +1 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTabTriggers.d.ts +1 -2
- package/dist/types/excalidraw/components/TTDDialog/TTDDialogTrigger.d.ts +2 -3
- package/dist/types/excalidraw/components/TTDDialog/common.d.ts +2 -3
- package/dist/types/excalidraw/components/TextField.d.ts +1 -0
- package/dist/types/excalidraw/components/Toast.d.ts +3 -3
- package/dist/types/excalidraw/components/ToolPopover.d.ts +25 -0
- package/dist/types/excalidraw/components/Trans.d.ts +2 -2
- package/dist/types/excalidraw/components/canvases/InteractiveCanvas.d.ts +6 -3
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenu.d.ts +30 -32
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuContent.d.ts +6 -5
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuGroup.d.ts +3 -3
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItem.d.ts +10 -18
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContent.d.ts +3 -3
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemContentRadio.d.ts +0 -1
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemCustom.d.ts +2 -2
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuItemLink.d.ts +6 -6
- package/dist/types/excalidraw/components/dropdownMenu/DropdownMenuTrigger.d.ts +3 -4
- package/dist/types/excalidraw/components/dropdownMenu/common.d.ts +1 -1
- package/dist/types/excalidraw/components/hoc/withInternalFallback.d.ts +1 -1
- package/dist/types/excalidraw/components/hyperlink/helpers.d.ts +1 -1
- package/dist/types/excalidraw/components/icons.d.ts +21 -11
- package/dist/types/excalidraw/components/live-collaboration/LiveCollaborationTrigger.d.ts +4 -3
- package/dist/types/excalidraw/components/main-menu/DefaultItems.d.ts +2 -2
- package/dist/types/excalidraw/components/main-menu/MainMenu.d.ts +25 -30
- package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.Center.d.ts +6 -6
- package/dist/types/excalidraw/components/welcome-screen/WelcomeScreen.d.ts +15 -16
- package/dist/types/excalidraw/data/blob.d.ts +323 -5
- package/dist/types/excalidraw/data/encode.d.ts +4 -4
- package/dist/types/excalidraw/data/encryption.d.ts +5 -5
- package/dist/types/excalidraw/data/filesystem.d.ts +2 -2
- package/dist/types/excalidraw/data/index.d.ts +3 -3
- package/dist/types/excalidraw/data/json.d.ts +159 -2
- package/dist/types/excalidraw/data/library.d.ts +24 -9
- package/dist/types/excalidraw/data/restore.d.ts +25 -10
- package/dist/types/excalidraw/data/types.d.ts +4 -1
- package/dist/types/excalidraw/editor-jotai.d.ts +11 -11
- package/dist/types/excalidraw/hooks/useLibraryItemSvg.d.ts +1 -1
- package/dist/types/excalidraw/hooks/useOutsideClick.d.ts +4 -3
- package/dist/types/excalidraw/hooks/useScrollPosition.d.ts +1 -2
- package/dist/types/excalidraw/hooks/useTextEditorFocus.d.ts +14 -0
- package/dist/types/excalidraw/i18n.d.ts +2 -2
- package/dist/types/excalidraw/index.d.ts +4 -7
- package/dist/types/excalidraw/renderer/animation.d.ts +12 -0
- package/dist/types/excalidraw/renderer/helpers.d.ts +6 -8
- package/dist/types/excalidraw/renderer/interactiveScene.d.ts +8 -14
- package/dist/types/excalidraw/scene/Renderer.d.ts +5 -2
- package/dist/types/excalidraw/scene/export.d.ts +2 -2
- package/dist/types/excalidraw/scene/scroll.d.ts +1 -6
- package/dist/types/excalidraw/scene/types.d.ts +22 -5
- package/dist/types/excalidraw/shortcut.d.ts +1 -0
- package/dist/types/excalidraw/snapping.d.ts +5 -5
- package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-bindings.d.ts +1 -1
- package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-loader.d.ts +1 -1
- package/dist/types/excalidraw/subset/harfbuzz/harfbuzz-wasm.d.ts +1 -1
- package/dist/types/excalidraw/subset/woff2/woff2-loader.d.ts +2 -2
- package/dist/types/excalidraw/subset/woff2/woff2-wasm.d.ts +1 -1
- package/dist/types/excalidraw/types.d.ts +31 -21
- package/dist/types/excalidraw/wysiwyg/textWysiwyg.d.ts +2 -2
- package/dist/types/math/src/polygon.d.ts +2 -2
- package/dist/types/math/src/range.d.ts +1 -3
- package/dist/types/math/src/segment.d.ts +4 -3
- package/dist/types/utils/src/bbox.d.ts +1 -1
- package/dist/types/utils/src/export.d.ts +5 -5
- package/dist/types/utils/src/shape.d.ts +6 -6
- package/dist/types/utils/src/withinBounds.d.ts +2 -2
- package/package.json +3 -3
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import type { JSX } from "react";
|
|
2
2
|
declare const MenuItemContent: ({ textStyle, icon, shortcut, children, }: {
|
|
3
|
-
icon?: JSX.Element
|
|
4
|
-
shortcut?: string
|
|
5
|
-
textStyle?:
|
|
3
|
+
icon?: JSX.Element;
|
|
4
|
+
shortcut?: string;
|
|
5
|
+
textStyle?: React.CSSProperties;
|
|
6
6
|
children: React.ReactNode;
|
|
7
7
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
export default MenuItemContent;
|
|
@@ -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
|
|
5
|
-
selected?: boolean
|
|
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
|
|
6
|
+
icon?: JSX.Element;
|
|
7
7
|
children: React.ReactNode;
|
|
8
|
-
shortcut?: string
|
|
9
|
-
className?: string
|
|
10
|
-
selected?: boolean
|
|
11
|
-
onSelect?: (
|
|
12
|
-
rel?: string
|
|
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
|
|
3
|
+
className?: string;
|
|
5
4
|
children: React.ReactNode;
|
|
6
5
|
onToggle: () => void;
|
|
7
|
-
title?: string
|
|
8
|
-
} & Omit<
|
|
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?: (
|
|
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,5 +1,5 @@
|
|
|
1
1
|
import type { GlobalPoint, Radians } from "@excalidraw/math";
|
|
2
|
-
import type { Bounds } from "@excalidraw/
|
|
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;
|
|
@@ -11,6 +11,7 @@ export declare const PlusPromoIcon: import("react/jsx-runtime").JSX.Element;
|
|
|
11
11
|
export declare const LibraryIcon: import("react/jsx-runtime").JSX.Element;
|
|
12
12
|
export declare const PlusIcon: import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
export declare const DotsIcon: import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export declare const DotsHorizontalIcon: import("react/jsx-runtime").JSX.Element;
|
|
14
15
|
export declare const PinIcon: import("react/jsx-runtime").JSX.Element;
|
|
15
16
|
export declare const polygonIcon: import("react/jsx-runtime").JSX.Element;
|
|
16
17
|
export declare const UnlockedIcon: import("react/jsx-runtime").JSX.Element;
|
|
@@ -30,6 +31,7 @@ export declare const LineIcon: import("react/jsx-runtime").JSX.Element;
|
|
|
30
31
|
export declare const PenModeIcon: import("react/jsx-runtime").JSX.Element;
|
|
31
32
|
export declare const FreedrawIcon: import("react/jsx-runtime").JSX.Element;
|
|
32
33
|
export declare const TextIcon: import("react/jsx-runtime").JSX.Element;
|
|
34
|
+
export declare const TextSizeIcon: import("react/jsx-runtime").JSX.Element;
|
|
33
35
|
export declare const ImageIcon: import("react/jsx-runtime").JSX.Element;
|
|
34
36
|
export declare const EraserIcon: import("react/jsx-runtime").JSX.Element;
|
|
35
37
|
export declare const ZoomInIcon: import("react/jsx-runtime").JSX.Element;
|
|
@@ -116,37 +118,37 @@ export declare const EdgeSharpIcon: import("react/jsx-runtime").JSX.Element;
|
|
|
116
118
|
export declare const EdgeRoundIcon: import("react/jsx-runtime").JSX.Element;
|
|
117
119
|
export declare const ArrowheadNoneIcon: import("react/jsx-runtime").JSX.Element;
|
|
118
120
|
export declare const ArrowheadArrowIcon: React.MemoExoticComponent<({ flip }: {
|
|
119
|
-
flip?: boolean
|
|
121
|
+
flip?: boolean;
|
|
120
122
|
}) => import("react/jsx-runtime").JSX.Element>;
|
|
121
123
|
export declare const ArrowheadCircleIcon: React.MemoExoticComponent<({ flip }: {
|
|
122
|
-
flip?: boolean
|
|
124
|
+
flip?: boolean;
|
|
123
125
|
}) => import("react/jsx-runtime").JSX.Element>;
|
|
124
126
|
export declare const ArrowheadCircleOutlineIcon: React.MemoExoticComponent<({ flip }: {
|
|
125
|
-
flip?: boolean
|
|
127
|
+
flip?: boolean;
|
|
126
128
|
}) => import("react/jsx-runtime").JSX.Element>;
|
|
127
129
|
export declare const ArrowheadBarIcon: React.MemoExoticComponent<({ flip }: {
|
|
128
|
-
flip?: boolean
|
|
130
|
+
flip?: boolean;
|
|
129
131
|
}) => import("react/jsx-runtime").JSX.Element>;
|
|
130
132
|
export declare const ArrowheadTriangleIcon: React.MemoExoticComponent<({ flip }: {
|
|
131
|
-
flip?: boolean
|
|
133
|
+
flip?: boolean;
|
|
132
134
|
}) => import("react/jsx-runtime").JSX.Element>;
|
|
133
135
|
export declare const ArrowheadTriangleOutlineIcon: React.MemoExoticComponent<({ flip }: {
|
|
134
|
-
flip?: boolean
|
|
136
|
+
flip?: boolean;
|
|
135
137
|
}) => import("react/jsx-runtime").JSX.Element>;
|
|
136
138
|
export declare const ArrowheadDiamondIcon: React.MemoExoticComponent<({ flip }: {
|
|
137
|
-
flip?: boolean
|
|
139
|
+
flip?: boolean;
|
|
138
140
|
}) => import("react/jsx-runtime").JSX.Element>;
|
|
139
141
|
export declare const ArrowheadDiamondOutlineIcon: React.MemoExoticComponent<({ flip }: {
|
|
140
|
-
flip?: boolean
|
|
142
|
+
flip?: boolean;
|
|
141
143
|
}) => import("react/jsx-runtime").JSX.Element>;
|
|
142
144
|
export declare const ArrowheadCrowfootIcon: React.MemoExoticComponent<({ flip }: {
|
|
143
|
-
flip?: boolean
|
|
145
|
+
flip?: boolean;
|
|
144
146
|
}) => import("react/jsx-runtime").JSX.Element>;
|
|
145
147
|
export declare const ArrowheadCrowfootOneIcon: React.MemoExoticComponent<({ flip }: {
|
|
146
|
-
flip?: boolean
|
|
148
|
+
flip?: boolean;
|
|
147
149
|
}) => import("react/jsx-runtime").JSX.Element>;
|
|
148
150
|
export declare const ArrowheadCrowfootOneOrManyIcon: React.MemoExoticComponent<({ flip }: {
|
|
149
|
-
flip?: boolean
|
|
151
|
+
flip?: boolean;
|
|
150
152
|
}) => import("react/jsx-runtime").JSX.Element>;
|
|
151
153
|
export declare const FontSizeSmallIcon: import("react/jsx-runtime").JSX.Element;
|
|
152
154
|
export declare const FontSizeMediumIcon: import("react/jsx-runtime").JSX.Element;
|
|
@@ -222,4 +224,12 @@ export declare const collapseUpIcon: import("react/jsx-runtime").JSX.Element;
|
|
|
222
224
|
export declare const upIcon: import("react/jsx-runtime").JSX.Element;
|
|
223
225
|
export declare const cropIcon: import("react/jsx-runtime").JSX.Element;
|
|
224
226
|
export declare const elementLinkIcon: import("react/jsx-runtime").JSX.Element;
|
|
227
|
+
export declare const resizeIcon: import("react/jsx-runtime").JSX.Element;
|
|
228
|
+
export declare const adjustmentsIcon: import("react/jsx-runtime").JSX.Element;
|
|
229
|
+
export declare const strokeIcon: import("react/jsx-runtime").JSX.Element;
|
|
230
|
+
export declare const pencilIcon: import("react/jsx-runtime").JSX.Element;
|
|
231
|
+
export declare const chevronLeftIcon: import("react/jsx-runtime").JSX.Element;
|
|
232
|
+
export declare const sidebarRightIcon: import("react/jsx-runtime").JSX.Element;
|
|
233
|
+
export declare const messageCircleIcon: import("react/jsx-runtime").JSX.Element;
|
|
234
|
+
export declare const presentationIcon: import("react/jsx-runtime").JSX.Element;
|
|
225
235
|
export {};
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
import { type EditorInterface } from "@excalidraw/common";
|
|
2
2
|
import "./LiveCollaborationTrigger.scss";
|
|
3
3
|
declare const LiveCollaborationTrigger: {
|
|
4
|
-
({ isCollaborating, onSelect, ...rest }: {
|
|
4
|
+
({ isCollaborating, onSelect, editorInterface, ...rest }: {
|
|
5
5
|
isCollaborating: boolean;
|
|
6
6
|
onSelect: () => void;
|
|
7
|
-
|
|
7
|
+
editorInterface?: EditorInterface;
|
|
8
|
+
} & React.ButtonHTMLAttributes<HTMLButtonElement>): import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
displayName: string;
|
|
9
10
|
};
|
|
10
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
|
|
42
|
-
onSelect?: (
|
|
41
|
+
allowSystemTheme?: false;
|
|
42
|
+
onSelect?: (theme: Theme) => void;
|
|
43
43
|
}): import("react/jsx-runtime").JSX.Element | null;
|
|
44
44
|
displayName: string;
|
|
45
45
|
};
|
|
@@ -5,43 +5,38 @@ declare const MainMenu: React.FC<{
|
|
|
5
5
|
/**
|
|
6
6
|
* Called when any menu item is selected (clicked on).
|
|
7
7
|
*/
|
|
8
|
-
onSelect?: (
|
|
8
|
+
onSelect?: (event: Event) => void;
|
|
9
9
|
} & {
|
|
10
|
-
__fallback?: boolean
|
|
10
|
+
__fallback?: boolean;
|
|
11
11
|
}> & {
|
|
12
12
|
Trigger: {
|
|
13
13
|
({ className, children, onToggle, title, ...rest }: {
|
|
14
|
-
className?: string
|
|
14
|
+
className?: string;
|
|
15
15
|
children: React.ReactNode;
|
|
16
16
|
onToggle: () => void;
|
|
17
|
-
title?: string
|
|
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
22
|
({ icon, value, order, children, shortcut, className, hovered, selected, textStyle, onSelect, onClick, ...rest }: {
|
|
23
|
-
icon?: React.JSX.Element
|
|
23
|
+
icon?: React.JSX.Element;
|
|
24
24
|
value?: string | number | undefined;
|
|
25
|
-
order?: number
|
|
26
|
-
onSelect?: (
|
|
25
|
+
order?: number;
|
|
26
|
+
onSelect?: (event: Event) => void;
|
|
27
27
|
children: React.ReactNode;
|
|
28
|
-
/**
|
|
28
|
+
shortcut? /**
|
|
29
29
|
* Called when any menu item is selected (clicked on).
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
className?: string | undefined;
|
|
30
|
+
*/: string;
|
|
31
|
+
hovered?: boolean;
|
|
32
|
+
selected?: boolean;
|
|
33
|
+
textStyle?: React.CSSProperties;
|
|
34
|
+
className?: string;
|
|
36
35
|
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onSelect">): import("react/jsx-runtime").JSX.Element;
|
|
37
36
|
displayName: string;
|
|
38
37
|
Badge: {
|
|
39
38
|
({ type, children, }: {
|
|
40
|
-
type?: import("
|
|
41
|
-
readonly GREEN: "green";
|
|
42
|
-
readonly RED: "red";
|
|
43
|
-
readonly BLUE: "blue";
|
|
44
|
-
}> | undefined;
|
|
39
|
+
type?: import("@excalidraw/common/utility-types").ValueOf<typeof import("../dropdownMenu/DropdownMenuItem").DropDownMenuItemBadgeType>;
|
|
45
40
|
children: React.ReactNode;
|
|
46
41
|
}): import("react/jsx-runtime").JSX.Element;
|
|
47
42
|
displayName: string;
|
|
@@ -50,27 +45,27 @@ declare const MainMenu: React.FC<{
|
|
|
50
45
|
ItemLink: {
|
|
51
46
|
({ icon, shortcut, href, children, onSelect, className, selected, rel, ...rest }: {
|
|
52
47
|
href: string;
|
|
53
|
-
icon?: React.JSX.Element
|
|
48
|
+
icon?: React.JSX.Element;
|
|
54
49
|
children: React.ReactNode;
|
|
55
|
-
shortcut?: string
|
|
56
|
-
className?: string
|
|
57
|
-
selected?: boolean
|
|
58
|
-
onSelect?: (
|
|
59
|
-
rel?: string
|
|
50
|
+
shortcut?: string;
|
|
51
|
+
className?: string;
|
|
52
|
+
selected?: boolean;
|
|
53
|
+
onSelect?: (event: Event) => void;
|
|
54
|
+
rel?: string;
|
|
60
55
|
} & React.AnchorHTMLAttributes<HTMLAnchorElement>): import("react/jsx-runtime").JSX.Element;
|
|
61
56
|
displayName: string;
|
|
62
57
|
};
|
|
63
58
|
ItemCustom: ({ children, className, selected, ...rest }: {
|
|
64
59
|
children: React.ReactNode;
|
|
65
|
-
className?: string
|
|
66
|
-
selected?: boolean
|
|
60
|
+
className?: string;
|
|
61
|
+
selected?: boolean;
|
|
67
62
|
} & React.HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
|
|
68
63
|
Group: {
|
|
69
64
|
({ children, className, style, title, }: {
|
|
70
65
|
children: React.ReactNode;
|
|
71
|
-
className?: string
|
|
72
|
-
style?: React.CSSProperties
|
|
73
|
-
title?: string
|
|
66
|
+
className?: string;
|
|
67
|
+
style?: React.CSSProperties;
|
|
68
|
+
title?: string;
|
|
74
69
|
}): import("react/jsx-runtime").JSX.Element;
|
|
75
70
|
displayName: string;
|
|
76
71
|
};
|
|
@@ -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
|
|
30
|
-
shortcut?: string | null
|
|
31
|
-
} &
|
|
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
|
|
39
|
-
shortcut?: string | null
|
|
40
|
-
} &
|
|
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?:
|
|
9
|
+
children?: React.ReactNode;
|
|
11
10
|
}): import("react/jsx-runtime").JSX.Element;
|
|
12
11
|
displayName: string;
|
|
13
12
|
Logo: {
|
|
14
13
|
({ children }: {
|
|
15
|
-
children?:
|
|
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:
|
|
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?:
|
|
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:
|
|
35
|
-
icon?: import("react").JSX.Element
|
|
36
|
-
shortcut?: string | null
|
|
37
|
-
} &
|
|
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:
|
|
41
|
+
children: React.ReactNode;
|
|
43
42
|
href: string;
|
|
44
|
-
icon?: import("react").JSX.Element
|
|
45
|
-
shortcut?: string | null
|
|
46
|
-
} &
|
|
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?:
|
|
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?:
|
|
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?:
|
|
78
|
+
children?: React.ReactNode;
|
|
80
79
|
}): import("react/jsx-runtime").JSX.Element;
|
|
81
80
|
displayName: string;
|
|
82
81
|
};
|