@excalidraw/common 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 +1390 -59
- package/dist/dev/index.js.map +4 -4
- package/dist/prod/index.js +3 -3
- 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 +23 -25
- 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 +50 -34
- package/dist/types/common/src/visualdebug.d.ts +41 -0
- package/dist/types/element/src/Scene.d.ts +4 -4
- 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 +7 -3
- 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 +138 -181
- 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 +103 -873
- 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 +3 -4
- package/dist/types/excalidraw/actions/actionElementLink.d.ts +47 -64
- package/dist/types/excalidraw/actions/actionElementLock.d.ts +66 -95
- package/dist/types/excalidraw/actions/actionEmbeddable.d.ts +49 -64
- 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 +252 -347
- package/dist/types/excalidraw/actions/actionGroup.d.ts +70 -107
- package/dist/types/excalidraw/actions/actionLinearEditor.d.ts +165 -220
- package/dist/types/excalidraw/actions/actionLink.d.ts +49 -64
- package/dist/types/excalidraw/actions/actionMenu.d.ts +42 -425
- 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 +3 -3
- package/dist/types/excalidraw/actions/actionToggleGridMode.d.ts +49 -64
- package/dist/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +49 -64
- package/dist/types/excalidraw/actions/actionToggleSearchMenu.d.ts +41 -58
- package/dist/types/excalidraw/actions/actionToggleShapeSwitch.d.ts +1 -1
- package/dist/types/excalidraw/actions/actionToggleStats.d.ts +48 -63
- package/dist/types/excalidraw/actions/actionToggleViewMode.d.ts +49 -64
- package/dist/types/excalidraw/actions/actionToggleZenMode.d.ts +49 -64
- package/dist/types/excalidraw/actions/actionZindex.d.ts +8 -9
- 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 +20 -15
- 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/shapes.d.ts +1 -1
- 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 +7 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import "./ToolIcon.scss";
|
|
2
|
+
import "./MobileToolBar.scss";
|
|
3
|
+
import type { AppClassProperties, UIAppState } from "../types";
|
|
4
|
+
type MobileToolBarProps = {
|
|
5
|
+
app: AppClassProperties;
|
|
6
|
+
onHandToolToggle: () => void;
|
|
7
|
+
setAppState: React.Component<any, UIAppState>["setState"];
|
|
8
|
+
};
|
|
9
|
+
export declare const MobileToolBar: ({ app, onHandToolToggle, setAppState, }: MobileToolBarProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -4,7 +4,7 @@ export type OverwriteConfirmDialogProps = {
|
|
|
4
4
|
children: React.ReactNode;
|
|
5
5
|
};
|
|
6
6
|
declare const OverwriteConfirmDialog: React.FC<OverwriteConfirmDialogProps & {
|
|
7
|
-
__fallback?: boolean
|
|
7
|
+
__fallback?: boolean;
|
|
8
8
|
}> & {
|
|
9
9
|
Actions: (({ children }: {
|
|
10
10
|
children: React.ReactNode;
|
|
@@ -10,6 +10,7 @@ type Props = {
|
|
|
10
10
|
offsetTop?: number;
|
|
11
11
|
viewportWidth?: number;
|
|
12
12
|
viewportHeight?: number;
|
|
13
|
+
className?: string;
|
|
13
14
|
};
|
|
14
|
-
export declare const Popover: ({ children, left, top, onCloseRequest, fitInViewport, offsetLeft, offsetTop, viewportWidth, viewportHeight, }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export declare const Popover: ({ children, left, top, onCloseRequest, fitInViewport, offsetLeft, offsetTop, viewportWidth, viewportHeight, className, }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
15
16
|
export {};
|
|
@@ -10,6 +10,7 @@ interface PropertiesPopoverProps {
|
|
|
10
10
|
onPointerLeave?: React.PointerEventHandler<HTMLDivElement>;
|
|
11
11
|
onFocusOutside?: Popover.PopoverContentProps["onFocusOutside"];
|
|
12
12
|
onPointerDownOutside?: Popover.PopoverContentProps["onPointerDownOutside"];
|
|
13
|
+
preventAutoFocusOnTouch?: boolean;
|
|
13
14
|
}
|
|
14
15
|
export declare const PropertiesPopover: React.ForwardRefExoticComponent<PropertiesPopoverProps & React.RefAttributes<HTMLDivElement>>;
|
|
15
16
|
export {};
|
|
@@ -4,14 +4,14 @@ export declare const RadioSelection: <T extends Object>(props: {
|
|
|
4
4
|
value: T;
|
|
5
5
|
text: string;
|
|
6
6
|
icon: JSX.Element;
|
|
7
|
-
testId?: string
|
|
7
|
+
testId?: string;
|
|
8
8
|
/** if not supplied, defaults to value identity check */
|
|
9
|
-
active?: boolean
|
|
9
|
+
active?: boolean;
|
|
10
10
|
}[];
|
|
11
11
|
value: T | null;
|
|
12
|
-
type?: "
|
|
12
|
+
type?: "radio" | "button";
|
|
13
13
|
} & ({
|
|
14
|
-
type?: "radio"
|
|
14
|
+
type?: "radio";
|
|
15
15
|
group: string;
|
|
16
16
|
onChange: (value: T) => void;
|
|
17
17
|
} | {
|
|
@@ -12,33 +12,27 @@ export declare const isSidebarDockedAtom: import("jotai/vanilla/atom").Primitive
|
|
|
12
12
|
init: boolean;
|
|
13
13
|
};
|
|
14
14
|
export declare const SidebarInner: React.ForwardRefExoticComponent<Omit<{
|
|
15
|
-
name:
|
|
15
|
+
name: import("../../types").SidebarName;
|
|
16
16
|
children: React.ReactNode;
|
|
17
|
-
onStateChange?: (
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
docked?: boolean | undefined;
|
|
23
|
-
className?: string | undefined;
|
|
24
|
-
__fallback?: boolean | undefined;
|
|
17
|
+
onStateChange?: (state: import("../../types").AppState["openSidebar"]) => void;
|
|
18
|
+
onDock?: (docked: boolean) => void;
|
|
19
|
+
docked?: boolean;
|
|
20
|
+
className?: string;
|
|
21
|
+
__fallback?: boolean;
|
|
25
22
|
} & Omit<React.RefAttributes<HTMLDivElement>, "onSelect">, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
26
23
|
export declare const Sidebar: React.ForwardRefExoticComponent<{
|
|
27
|
-
name:
|
|
24
|
+
name: import("../../types").SidebarName;
|
|
28
25
|
children: React.ReactNode;
|
|
29
|
-
onStateChange?: (
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
docked?: boolean | undefined;
|
|
35
|
-
className?: string | undefined;
|
|
36
|
-
__fallback?: boolean | undefined;
|
|
26
|
+
onStateChange?: (state: import("../../types").AppState["openSidebar"]) => void;
|
|
27
|
+
onDock?: (docked: boolean) => void;
|
|
28
|
+
docked?: boolean;
|
|
29
|
+
className?: string;
|
|
30
|
+
__fallback?: boolean;
|
|
37
31
|
} & React.RefAttributes<HTMLDivElement>> & {
|
|
38
32
|
Header: {
|
|
39
33
|
({ children, className, }: {
|
|
40
34
|
children?: React.ReactNode;
|
|
41
|
-
className?: string
|
|
35
|
+
className?: string;
|
|
42
36
|
}): import("react/jsx-runtime").JSX.Element;
|
|
43
37
|
displayName: string;
|
|
44
38
|
};
|
|
@@ -51,7 +45,7 @@ export declare const Sidebar: React.ForwardRefExoticComponent<{
|
|
|
51
45
|
TabTrigger: {
|
|
52
46
|
({ children, tab, onSelect, ...rest }: {
|
|
53
47
|
children: React.ReactNode;
|
|
54
|
-
tab:
|
|
48
|
+
tab: import("../../types").SidebarTabName;
|
|
55
49
|
onSelect?: React.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
56
50
|
} & Omit<React.HTMLAttributes<HTMLButtonElement>, "onSelect">): import("react/jsx-runtime").JSX.Element;
|
|
57
51
|
displayName: string;
|
|
@@ -64,7 +58,7 @@ export declare const Sidebar: React.ForwardRefExoticComponent<{
|
|
|
64
58
|
};
|
|
65
59
|
Tab: {
|
|
66
60
|
({ tab, children, ...rest }: {
|
|
67
|
-
tab:
|
|
61
|
+
tab: import("../../types").SidebarTabName;
|
|
68
62
|
children: React.ReactNode;
|
|
69
63
|
} & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
70
64
|
displayName: string;
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { SidebarTabName } from "../../types";
|
|
3
2
|
export declare const SidebarTab: {
|
|
4
3
|
({ tab, children, ...rest }: {
|
|
5
4
|
tab: SidebarTabName;
|
|
6
5
|
children: React.ReactNode;
|
|
7
|
-
} &
|
|
6
|
+
} & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
8
7
|
displayName: string;
|
|
9
8
|
};
|
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { SidebarTabName } from "../../types";
|
|
3
2
|
export declare const SidebarTabTrigger: {
|
|
4
3
|
({ children, tab, onSelect, ...rest }: {
|
|
5
4
|
children: React.ReactNode;
|
|
6
5
|
tab: SidebarTabName;
|
|
7
6
|
onSelect?: React.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
8
|
-
} & Omit<
|
|
7
|
+
} & Omit<React.HTMLAttributes<HTMLButtonElement>, "onSelect">): import("react/jsx-runtime").JSX.Element;
|
|
9
8
|
displayName: string;
|
|
10
9
|
};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export declare const SidebarTabTriggers: {
|
|
3
2
|
({ children, ...rest }: {
|
|
4
3
|
children: React.ReactNode;
|
|
5
|
-
} & Omit<
|
|
4
|
+
} & Omit<React.RefAttributes<HTMLDivElement>, "onSelect">): import("react/jsx-runtime").JSX.Element;
|
|
6
5
|
displayName: string;
|
|
7
6
|
};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export declare const SidebarTabs: {
|
|
3
2
|
({ children, ...rest }: {
|
|
4
3
|
children: React.ReactNode;
|
|
5
|
-
} & Omit<
|
|
4
|
+
} & Omit<React.RefAttributes<HTMLDivElement>, "onSelect">): import("react/jsx-runtime").JSX.Element | null;
|
|
6
5
|
displayName: string;
|
|
7
6
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import "./Spinner.scss";
|
|
2
2
|
declare const Spinner: ({ size, circleWidth, synchronized, className, }: {
|
|
3
|
-
size?: string | number
|
|
4
|
-
circleWidth?: number
|
|
5
|
-
synchronized?: boolean
|
|
6
|
-
className?: string
|
|
3
|
+
size?: string | number;
|
|
4
|
+
circleWidth?: number;
|
|
5
|
+
synchronized?: boolean;
|
|
6
|
+
className?: string;
|
|
7
7
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
export default Spinner;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { NonDeletedExcalidrawElement } from "@excalidraw/element/types";
|
|
3
2
|
import "./Stats.scss";
|
|
4
3
|
import type { AppClassProperties, AppState, ExcalidrawProps } from "../../types";
|
|
@@ -12,18 +11,18 @@ export declare const Stats: {
|
|
|
12
11
|
StatsRow: {
|
|
13
12
|
({ children, columns, heading, style, ...rest }: {
|
|
14
13
|
children: React.ReactNode;
|
|
15
|
-
columns?: number
|
|
16
|
-
heading?: boolean
|
|
17
|
-
style?:
|
|
18
|
-
} &
|
|
14
|
+
columns?: number;
|
|
15
|
+
heading?: boolean;
|
|
16
|
+
style?: React.CSSProperties;
|
|
17
|
+
} & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
19
18
|
displayName: string;
|
|
20
19
|
};
|
|
21
20
|
StatsRows: {
|
|
22
21
|
({ children, order, style, ...rest }: {
|
|
23
22
|
children: React.ReactNode;
|
|
24
|
-
order?: number
|
|
25
|
-
style?:
|
|
26
|
-
} &
|
|
23
|
+
order?: number;
|
|
24
|
+
style?: React.CSSProperties;
|
|
25
|
+
} & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
27
26
|
displayName: string;
|
|
28
27
|
};
|
|
29
28
|
};
|
|
@@ -15,5 +15,5 @@ export declare const newOrigin: (x1: number, y1: number, w1: number, h1: number,
|
|
|
15
15
|
x: number;
|
|
16
16
|
y: number;
|
|
17
17
|
};
|
|
18
|
-
export declare const moveElement: (newTopLeftX: number, newTopLeftY: number, originalElement: ExcalidrawElement, scene: Scene, originalElementsMap: ElementsMap, shouldInformMutation?: boolean) => void;
|
|
18
|
+
export declare const moveElement: (newTopLeftX: number, newTopLeftY: number, originalElement: ExcalidrawElement, scene: Scene, appState: AppState, originalElementsMap: ElementsMap, shouldInformMutation?: boolean) => void;
|
|
19
19
|
export declare const getAtomicUnits: (targetElements: readonly ExcalidrawElement[], appState: AppState) => AtomicUnit[];
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import "./TTDDialog.scss";
|
|
3
2
|
type OnTestSubmitRetValue = {
|
|
4
3
|
rateLimit?: number | null;
|
|
@@ -25,6 +24,6 @@ export declare const TTDDialogBase: import("react").FC<({
|
|
|
25
24
|
} | {
|
|
26
25
|
__fallback: true;
|
|
27
26
|
})) & {
|
|
28
|
-
__fallback?: boolean
|
|
27
|
+
__fallback?: boolean;
|
|
29
28
|
}>;
|
|
30
29
|
export {};
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export declare const TTDDialogTab: {
|
|
3
2
|
({ tab, children, ...rest }: {
|
|
4
3
|
tab: string;
|
|
5
4
|
children: React.ReactNode;
|
|
6
|
-
} &
|
|
5
|
+
} & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
7
6
|
displayName: string;
|
|
8
7
|
};
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export declare const TTDDialogTabTrigger: {
|
|
3
2
|
({ children, tab, onSelect, ...rest }: {
|
|
4
3
|
children: React.ReactNode;
|
|
5
4
|
tab: string;
|
|
6
5
|
onSelect?: React.ReactEventHandler<HTMLButtonElement> | undefined;
|
|
7
|
-
} & Omit<
|
|
6
|
+
} & Omit<React.HTMLAttributes<HTMLButtonElement>, "onSelect">): import("react/jsx-runtime").JSX.Element;
|
|
8
7
|
displayName: string;
|
|
9
8
|
};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
export declare const TTDDialogTabTriggers: {
|
|
3
2
|
({ children, ...rest }: {
|
|
4
3
|
children: React.ReactNode;
|
|
5
|
-
} &
|
|
4
|
+
} & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
|
|
6
5
|
displayName: string;
|
|
7
6
|
};
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import type { ReactNode } from "react";
|
|
2
|
-
import type { JSX } from "react";
|
|
1
|
+
import type { JSX, ReactNode } from "react";
|
|
3
2
|
export declare const TTDDialogTrigger: {
|
|
4
3
|
({ children, icon, }: {
|
|
5
4
|
children?: ReactNode;
|
|
6
|
-
icon?: JSX.Element
|
|
5
|
+
icon?: JSX.Element;
|
|
7
6
|
}): import("react/jsx-runtime").JSX.Element;
|
|
8
7
|
displayName: string;
|
|
9
8
|
};
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="react" />
|
|
2
1
|
import type { MermaidConfig } from "@excalidraw/mermaid-to-excalidraw";
|
|
3
2
|
import type { MermaidToExcalidrawResult } from "@excalidraw/mermaid-to-excalidraw/dist/interfaces";
|
|
4
3
|
import type { NonDeletedExcalidrawElement } from "@excalidraw/element/types";
|
|
@@ -27,7 +26,7 @@ export declare const insertToEditor: ({ app, data, text, shouldSaveMermaidDataTo
|
|
|
27
26
|
elements: readonly NonDeletedExcalidrawElement[];
|
|
28
27
|
files: BinaryFiles | null;
|
|
29
28
|
}>;
|
|
30
|
-
text?: string
|
|
31
|
-
shouldSaveMermaidDataToStorage?: boolean
|
|
29
|
+
text?: string;
|
|
30
|
+
shouldSaveMermaidDataToStorage?: boolean;
|
|
32
31
|
}) => void;
|
|
33
32
|
export {};
|
|
@@ -3,7 +3,7 @@ import type { CSSProperties } from "react";
|
|
|
3
3
|
export declare const Toast: ({ message, onClose, closable, duration, style, }: {
|
|
4
4
|
message: string;
|
|
5
5
|
onClose: () => void;
|
|
6
|
-
closable?: boolean
|
|
7
|
-
duration?: number
|
|
8
|
-
style?: CSSProperties
|
|
6
|
+
closable?: boolean;
|
|
7
|
+
duration?: number;
|
|
8
|
+
style?: CSSProperties;
|
|
9
9
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import "./ToolPopover.scss";
|
|
3
|
+
import type { AppClassProperties } from "../types";
|
|
4
|
+
type ToolOption = {
|
|
5
|
+
type: string;
|
|
6
|
+
icon: React.ReactNode;
|
|
7
|
+
title?: string;
|
|
8
|
+
};
|
|
9
|
+
type ToolPopoverProps = {
|
|
10
|
+
app: AppClassProperties;
|
|
11
|
+
options: readonly ToolOption[];
|
|
12
|
+
activeTool: {
|
|
13
|
+
type: string;
|
|
14
|
+
};
|
|
15
|
+
defaultOption: string;
|
|
16
|
+
className?: string;
|
|
17
|
+
namePrefix: string;
|
|
18
|
+
title: string;
|
|
19
|
+
"data-testid": string;
|
|
20
|
+
onToolChange: (type: string) => void;
|
|
21
|
+
displayedOption: ToolOption;
|
|
22
|
+
fillable?: boolean;
|
|
23
|
+
};
|
|
24
|
+
export declare const ToolPopover: ({ app, options, activeTool, defaultOption, className, namePrefix, title, "data-testid": dataTestId, onToolChange, displayedOption, fillable, }: ToolPopoverProps) => import("react/jsx-runtime").JSX.Element;
|
|
25
|
+
export {};
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import type { TranslationKeys } from "../i18n";
|
|
3
3
|
declare const Trans: ({ i18nKey, children, ...props }: {
|
|
4
|
-
[key: string]: React.ReactNode | ((el: React.ReactNode) => React.ReactNode);
|
|
5
4
|
i18nKey: TranslationKeys;
|
|
5
|
+
[key: string]: React.ReactNode | ((el: React.ReactNode) => React.ReactNode);
|
|
6
6
|
}) => React.FunctionComponentElement<{
|
|
7
|
-
children?: React.ReactNode;
|
|
7
|
+
children?: React.ReactNode | undefined;
|
|
8
8
|
}>;
|
|
9
9
|
export default Trans;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
+
import { type EditorInterface } from "@excalidraw/common";
|
|
3
|
+
import type { RenderableElementsMap, RenderInteractiveSceneCallback } from "@excalidraw/excalidraw/scene/types";
|
|
2
4
|
import type { NonDeletedExcalidrawElement, NonDeletedSceneElementsMap } from "@excalidraw/element/types";
|
|
3
|
-
import type {
|
|
4
|
-
import type { Device, InteractiveCanvasAppState } from "../../types";
|
|
5
|
+
import type { AppClassProperties, InteractiveCanvasAppState } from "../../types";
|
|
5
6
|
import type { DOMAttributes } from "react";
|
|
6
7
|
type InteractiveCanvasProps = {
|
|
7
8
|
containerRef: React.RefObject<HTMLDivElement | null>;
|
|
@@ -15,7 +16,8 @@ type InteractiveCanvasProps = {
|
|
|
15
16
|
scale: number;
|
|
16
17
|
appState: InteractiveCanvasAppState;
|
|
17
18
|
renderScrollbars: boolean;
|
|
18
|
-
|
|
19
|
+
editorInterface: EditorInterface;
|
|
20
|
+
app: AppClassProperties;
|
|
19
21
|
renderInteractiveSceneCallback: (data: RenderInteractiveSceneCallback) => void;
|
|
20
22
|
handleCanvasRef: (canvas: HTMLCanvasElement | null) => void;
|
|
21
23
|
onContextMenu: Exclude<DOMAttributes<HTMLCanvasElement | HTMLDivElement>["onContextMenu"], undefined>;
|
|
@@ -26,5 +28,6 @@ type InteractiveCanvasProps = {
|
|
|
26
28
|
onPointerDown: Exclude<DOMAttributes<HTMLCanvasElement>["onPointerDown"], undefined>;
|
|
27
29
|
onDoubleClick: Exclude<DOMAttributes<HTMLCanvasElement>["onDoubleClick"], undefined>;
|
|
28
30
|
};
|
|
31
|
+
export declare const INTERACTIVE_SCENE_ANIMATION_KEY = "animateInteractiveScene";
|
|
29
32
|
declare const _default: React.MemoExoticComponent<(props: InteractiveCanvasProps) => import("react/jsx-runtime").JSX.Element>;
|
|
30
33
|
export default _default;
|
|
@@ -1,50 +1,48 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
import "./DropdownMenu.scss";
|
|
3
3
|
declare const DropdownMenu: {
|
|
4
|
-
({ children, open, }: {
|
|
4
|
+
({ children, open, placement, }: {
|
|
5
5
|
children?: React.ReactNode;
|
|
6
6
|
open: boolean;
|
|
7
|
+
placement?: "top" | "bottom";
|
|
7
8
|
}): import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
Trigger: {
|
|
9
10
|
({ className, children, onToggle, title, ...rest }: {
|
|
10
|
-
className?: string
|
|
11
|
+
className?: string;
|
|
11
12
|
children: React.ReactNode;
|
|
12
13
|
onToggle: () => void;
|
|
13
|
-
title?: string
|
|
14
|
+
title?: string;
|
|
14
15
|
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onSelect">): import("react/jsx-runtime").JSX.Element;
|
|
15
16
|
displayName: string;
|
|
16
17
|
};
|
|
17
18
|
Content: {
|
|
18
|
-
({ children, onClickOutside, className, onSelect, style, }: {
|
|
19
|
+
({ children, onClickOutside, className, onSelect, style, placement, }: {
|
|
19
20
|
children?: React.ReactNode;
|
|
20
|
-
onClickOutside?: (
|
|
21
|
-
className?: string
|
|
22
|
-
onSelect?: (
|
|
23
|
-
style?: React.CSSProperties
|
|
21
|
+
onClickOutside?: () => void;
|
|
22
|
+
className?: string;
|
|
23
|
+
onSelect?: (event: Event) => void;
|
|
24
|
+
style?: React.CSSProperties;
|
|
25
|
+
placement?: "top" | "bottom";
|
|
24
26
|
}): import("react/jsx-runtime").JSX.Element;
|
|
25
27
|
displayName: string;
|
|
26
28
|
};
|
|
27
29
|
Item: {
|
|
28
30
|
({ icon, value, order, children, shortcut, className, hovered, selected, textStyle, onSelect, onClick, ...rest }: {
|
|
29
|
-
icon?: React.JSX.Element
|
|
31
|
+
icon?: React.JSX.Element;
|
|
30
32
|
value?: string | number | undefined;
|
|
31
|
-
order?: number
|
|
32
|
-
onSelect?: (
|
|
33
|
+
order?: number;
|
|
34
|
+
onSelect?: (event: Event) => void;
|
|
33
35
|
children: React.ReactNode;
|
|
34
|
-
shortcut?: string
|
|
35
|
-
hovered?: boolean
|
|
36
|
-
selected?: boolean
|
|
37
|
-
textStyle?: React.CSSProperties
|
|
38
|
-
className?: string
|
|
36
|
+
shortcut?: string;
|
|
37
|
+
hovered?: boolean;
|
|
38
|
+
selected?: boolean;
|
|
39
|
+
textStyle?: React.CSSProperties;
|
|
40
|
+
className?: string;
|
|
39
41
|
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onSelect">): import("react/jsx-runtime").JSX.Element;
|
|
40
42
|
displayName: string;
|
|
41
43
|
Badge: {
|
|
42
44
|
({ type, children, }: {
|
|
43
|
-
type?: import("@excalidraw/common/utility-types").ValueOf<
|
|
44
|
-
readonly GREEN: "green";
|
|
45
|
-
readonly RED: "red";
|
|
46
|
-
readonly BLUE: "blue";
|
|
47
|
-
}> | undefined;
|
|
45
|
+
type?: import("@excalidraw/common/utility-types").ValueOf<typeof import("./DropdownMenuItem").DropDownMenuItemBadgeType>;
|
|
48
46
|
children: React.ReactNode;
|
|
49
47
|
}): import("react/jsx-runtime").JSX.Element;
|
|
50
48
|
displayName: string;
|
|
@@ -53,27 +51,27 @@ declare const DropdownMenu: {
|
|
|
53
51
|
ItemLink: {
|
|
54
52
|
({ icon, shortcut, href, children, onSelect, className, selected, rel, ...rest }: {
|
|
55
53
|
href: string;
|
|
56
|
-
icon?: React.JSX.Element
|
|
54
|
+
icon?: React.JSX.Element;
|
|
57
55
|
children: React.ReactNode;
|
|
58
|
-
shortcut?: string
|
|
59
|
-
className?: string
|
|
60
|
-
selected?: boolean
|
|
61
|
-
onSelect?: (
|
|
62
|
-
rel?: string
|
|
56
|
+
shortcut?: string;
|
|
57
|
+
className?: string;
|
|
58
|
+
selected?: boolean;
|
|
59
|
+
onSelect?: (event: Event) => void;
|
|
60
|
+
rel?: string;
|
|
63
61
|
} & React.AnchorHTMLAttributes<HTMLAnchorElement>): import("react/jsx-runtime").JSX.Element;
|
|
64
62
|
displayName: string;
|
|
65
63
|
};
|
|
66
64
|
ItemCustom: ({ children, className, selected, ...rest }: {
|
|
67
65
|
children: React.ReactNode;
|
|
68
|
-
className?: string
|
|
69
|
-
selected?: boolean
|
|
66
|
+
className?: string;
|
|
67
|
+
selected?: boolean;
|
|
70
68
|
} & React.HTMLAttributes<HTMLDivElement>) => import("react/jsx-runtime").JSX.Element;
|
|
71
69
|
Group: {
|
|
72
70
|
({ children, className, style, title, }: {
|
|
73
71
|
children: React.ReactNode;
|
|
74
|
-
className?: string
|
|
75
|
-
style?: React.CSSProperties
|
|
76
|
-
title?: string
|
|
72
|
+
className?: string;
|
|
73
|
+
style?: React.CSSProperties;
|
|
74
|
+
title?: string;
|
|
77
75
|
}): import("react/jsx-runtime").JSX.Element;
|
|
78
76
|
displayName: string;
|
|
79
77
|
};
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
declare const MenuContent: {
|
|
3
|
-
({ children, onClickOutside, className, onSelect, style, }: {
|
|
3
|
+
({ children, onClickOutside, className, onSelect, style, placement, }: {
|
|
4
4
|
children?: React.ReactNode;
|
|
5
|
-
onClickOutside?: (
|
|
6
|
-
className?: string
|
|
5
|
+
onClickOutside?: () => void;
|
|
6
|
+
className?: string;
|
|
7
7
|
/**
|
|
8
8
|
* Called when any menu item is selected (clicked on).
|
|
9
9
|
*/
|
|
10
|
-
onSelect?: (
|
|
11
|
-
style?: React.CSSProperties
|
|
10
|
+
onSelect?: (event: Event) => void;
|
|
11
|
+
style?: React.CSSProperties;
|
|
12
|
+
placement?: "top" | "bottom";
|
|
12
13
|
}): import("react/jsx-runtime").JSX.Element;
|
|
13
14
|
displayName: string;
|
|
14
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
|
|
6
|
-
style?: React.CSSProperties
|
|
7
|
-
title?: string
|
|
5
|
+
className?: string;
|
|
6
|
+
style?: React.CSSProperties;
|
|
7
|
+
title?: string;
|
|
8
8
|
}): import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
displayName: string;
|
|
10
10
|
};
|
|
@@ -3,25 +3,21 @@ import type { ValueOf } from "@excalidraw/common/utility-types";
|
|
|
3
3
|
import type { JSX } from "react";
|
|
4
4
|
declare const DropdownMenuItem: {
|
|
5
5
|
({ icon, value, order, children, shortcut, className, hovered, selected, textStyle, onSelect, onClick, ...rest }: {
|
|
6
|
-
icon?: JSX.Element
|
|
6
|
+
icon?: JSX.Element;
|
|
7
7
|
value?: string | number | undefined;
|
|
8
|
-
order?: number
|
|
9
|
-
onSelect?: (
|
|
8
|
+
order?: number;
|
|
9
|
+
onSelect?: (event: Event) => void;
|
|
10
10
|
children: React.ReactNode;
|
|
11
|
-
shortcut?: string
|
|
12
|
-
hovered?: boolean
|
|
13
|
-
selected?: boolean
|
|
14
|
-
textStyle?: React.CSSProperties
|
|
15
|
-
className?: string
|
|
11
|
+
shortcut?: string;
|
|
12
|
+
hovered?: boolean;
|
|
13
|
+
selected?: boolean;
|
|
14
|
+
textStyle?: React.CSSProperties;
|
|
15
|
+
className?: string;
|
|
16
16
|
} & Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "onSelect">): import("react/jsx-runtime").JSX.Element;
|
|
17
17
|
displayName: string;
|
|
18
18
|
Badge: {
|
|
19
19
|
({ type, children, }: {
|
|
20
|
-
type?: ValueOf<
|
|
21
|
-
readonly GREEN: "green";
|
|
22
|
-
readonly RED: "red";
|
|
23
|
-
readonly BLUE: "blue";
|
|
24
|
-
}> | undefined;
|
|
20
|
+
type?: ValueOf<typeof DropDownMenuItemBadgeType>;
|
|
25
21
|
children: React.ReactNode;
|
|
26
22
|
}): import("react/jsx-runtime").JSX.Element;
|
|
27
23
|
displayName: string;
|
|
@@ -34,11 +30,7 @@ export declare const DropDownMenuItemBadgeType: {
|
|
|
34
30
|
};
|
|
35
31
|
export declare const DropDownMenuItemBadge: {
|
|
36
32
|
({ type, children, }: {
|
|
37
|
-
type?: ValueOf<
|
|
38
|
-
readonly GREEN: "green";
|
|
39
|
-
readonly RED: "red";
|
|
40
|
-
readonly BLUE: "blue";
|
|
41
|
-
}> | undefined;
|
|
33
|
+
type?: ValueOf<typeof DropDownMenuItemBadgeType>;
|
|
42
34
|
children: React.ReactNode;
|
|
43
35
|
}): import("react/jsx-runtime").JSX.Element;
|
|
44
36
|
displayName: string;
|