@dwelle/excalidraw 0.4.0-9db4535 → 0.4.0-9fa56da
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/CHANGELOG.md +255 -1
- package/README.md +4 -0
- package/dist/excalidraw-assets/{vendor-2002fe1b8862917b36c1.js → vendor-d415b28e9024dee4bb1b.js} +2 -2
- package/dist/excalidraw-assets-dev/{vendor-e6df8519da951026ff69.js → vendor-a14cd58fa2db417e42b2.js} +6 -6
- package/dist/excalidraw.development.js +2123 -1783
- package/dist/excalidraw.production.min.js +1 -1
- package/package.json +7 -2
- package/types/actions/actionAddToLibrary.d.ts +84 -43
- package/types/actions/actionAlign.d.ts +33 -28
- package/types/actions/actionBoundText.d.ts +60 -32
- package/types/actions/actionCanvas.d.ts +436 -164
- package/types/actions/actionClipboard.d.ts +140 -74
- package/types/actions/actionDeleteSelected.d.ts +80 -42
- package/types/actions/actionDistribute.d.ts +11 -12
- package/types/actions/actionDuplicateSelection.d.ts +2 -3
- package/types/actions/actionElementLock.d.ts +58 -30
- package/types/actions/actionExport.d.ts +303 -177
- package/types/actions/actionFinalize.d.ts +56 -32
- package/types/actions/actionFlip.d.ts +8 -9
- package/types/actions/actionFrame.d.ts +423 -0
- package/types/actions/actionGroup.d.ts +250 -13
- package/types/actions/actionLinearEditor.d.ts +30 -17
- package/types/actions/actionMenu.d.ts +87 -47
- package/types/actions/actionNavigate.d.ts +1 -1
- package/types/actions/actionProperties.d.ts +370 -187
- package/types/actions/actionSelectAll.d.ts +123 -4
- package/types/actions/actionStyles.d.ts +32 -19
- package/types/actions/actionToggleGridMode.d.ts +30 -17
- package/types/actions/actionToggleObjectsSnapMode.d.ts +137 -0
- package/types/actions/actionToggleStats.d.ts +30 -17
- package/types/actions/actionToggleViewMode.d.ts +30 -17
- package/types/actions/actionToggleZenMode.d.ts +30 -17
- package/types/actions/actionZindex.d.ts +12 -12
- package/types/actions/index.d.ts +1 -0
- package/types/actions/shortcuts.d.ts +1 -1
- package/types/actions/types.d.ts +4 -3
- package/types/appState.d.ts +10 -15
- package/types/clients.d.ts +1 -5
- package/types/clipboard.d.ts +1 -0
- package/types/colors.d.ts +9 -9
- package/types/components/Actions.d.ts +4 -5
- package/types/components/App.d.ts +61 -28
- package/types/components/Avatar.d.ts +0 -1
- package/types/components/Button.d.ts +0 -1
- package/types/components/Card.d.ts +0 -1
- package/types/components/ColorPicker/ColorInput.d.ts +3 -1
- package/types/components/ColorPicker/keyboardNavHandlers.d.ts +0 -1
- package/types/components/DefaultSidebar.d.ts +0 -1
- package/types/components/Dialog.d.ts +2 -1
- package/types/components/ExcalidrawLogo.d.ts +15 -0
- package/types/components/EyeDropper.d.ts +18 -8
- package/types/components/FilledButton.d.ts +2 -1
- package/types/components/HintViewer.d.ts +3 -4
- package/types/components/JSONExportDialog.d.ts +1 -1
- package/types/components/LaserTool/LaserPathManager.d.ts +28 -0
- package/types/components/LaserTool/LaserPointerButton.d.ts +10 -0
- package/types/components/LaserTool/LaserTool.d.ts +7 -0
- package/types/components/LayerUI.d.ts +6 -2
- package/types/components/LibraryMenuHeaderContent.d.ts +0 -1
- package/types/components/LibraryUnit.d.ts +0 -1
- package/types/components/LoadingMessage.d.ts +0 -1
- package/types/components/MobileMenu.d.ts +4 -3
- package/types/components/OverwriteConfirm/OverwriteConfirm.d.ts +17 -0
- package/types/components/OverwriteConfirm/OverwriteConfirmActions.d.ts +17 -0
- package/types/components/OverwriteConfirm/OverwriteConfirmState.d.ts +22 -0
- package/types/components/Section.d.ts +1 -1
- package/types/components/Sidebar/Sidebar.d.ts +1 -1
- package/types/components/Sidebar/SidebarTab.d.ts +0 -1
- package/types/components/Sidebar/SidebarTabTrigger.d.ts +0 -1
- package/types/components/Sidebar/SidebarTabTriggers.d.ts +0 -1
- package/types/components/Sidebar/SidebarTabs.d.ts +0 -1
- package/types/components/Stack.d.ts +2 -2
- package/types/components/ToolButton.d.ts +2 -1
- package/types/components/Trans.d.ts +2 -1
- package/types/components/canvases/InteractiveCanvas.d.ts +27 -0
- package/types/components/canvases/StaticCanvas.d.ts +18 -0
- package/types/components/canvases/index.d.ts +3 -0
- package/types/components/dropdownMenu/DropdownMenu.d.ts +9 -5
- package/types/components/dropdownMenu/DropdownMenuItem.d.ts +2 -1
- package/types/components/dropdownMenu/DropdownMenuItemCustom.d.ts +2 -1
- package/types/components/dropdownMenu/DropdownMenuItemLink.d.ts +2 -1
- package/types/components/dropdownMenu/DropdownMenuTrigger.d.ts +3 -2
- package/types/components/dropdownMenu/common.d.ts +1 -1
- package/types/components/icons.d.ts +6 -0
- package/types/components/live-collaboration/LiveCollaborationTrigger.d.ts +0 -1
- package/types/components/main-menu/MainMenu.d.ts +9 -5
- package/types/components/welcome-screen/WelcomeScreen.Center.d.ts +0 -1
- package/types/components/welcome-screen/WelcomeScreen.d.ts +0 -1
- package/types/constants.d.ts +35 -3
- package/types/context/tunnels.d.ts +1 -0
- package/types/data/transform.d.ts +71 -0
- package/types/data/url.d.ts +7 -0
- package/types/element/Hyperlink.d.ts +40 -23
- package/types/element/binding.d.ts +2 -1
- package/types/element/bounds.d.ts +30 -6
- package/types/element/collision.d.ts +7 -7
- package/types/element/dragElements.d.ts +12 -2
- package/types/element/embeddable.d.ts +153 -0
- package/types/element/index.d.ts +3 -2
- package/types/element/linearElementEditor.d.ts +33 -20
- package/types/element/newElement.d.ts +15 -6
- package/types/element/resizeElements.d.ts +2 -2
- package/types/element/sizeHelpers.d.ts +8 -1
- package/types/element/textElement.d.ts +5 -7
- package/types/element/textWysiwyg.d.ts +1 -1
- package/types/element/transformHandles.d.ts +10 -3
- package/types/element/typeChecks.d.ts +3 -1
- package/types/element/types.d.ts +19 -3
- package/types/frame.d.ts +40 -0
- package/types/groups.d.ts +15 -11
- package/types/history.d.ts +3 -3
- package/types/hooks/useOutsideClick.d.ts +0 -1
- package/types/hooks/useScrollPosition.d.ts +0 -1
- package/types/hooks/useStable.d.ts +1 -0
- package/types/i18n.d.ts +5 -2
- package/types/keys.d.ts +4 -0
- package/types/math.d.ts +3 -0
- package/types/packages/excalidraw/example/initialData.d.ts +182 -64
- package/types/packages/excalidraw/index.d.ts +3 -1
- package/types/packages/excalidraw/webpack.dev.config.d.ts +5 -2
- package/types/packages/excalidraw/webpack.prod.config.d.ts +3 -0
- package/types/packages/utils.d.ts +4 -1
- package/types/renderer/renderElement.d.ts +11 -22
- package/types/renderer/renderScene.d.ts +19 -27
- package/types/renderer/renderSnaps.d.ts +2 -0
- package/types/renderer/roundRect.d.ts +1 -1
- package/types/scene/Renderer.d.ts +25 -0
- package/types/scene/Scene.d.ts +23 -1
- package/types/scene/Shape.d.ts +12 -0
- package/types/scene/ShapeCache.d.ts +20 -0
- package/types/scene/export.d.ts +35 -9
- package/types/scene/scroll.d.ts +1 -1
- package/types/scene/scrollbars.d.ts +2 -6
- package/types/scene/selection.d.ts +26 -5
- package/types/scene/types.d.ts +66 -31
- package/types/snapping.d.ts +108 -0
- package/types/types.d.ts +130 -25
- package/types/utility-types.d.ts +3 -1
- package/types/utils.d.ts +60 -23
- package/types/zindex.d.ts +4 -4
- /package/dist/excalidraw-assets/{vendor-2002fe1b8862917b36c1.js.LICENSE.txt → vendor-d415b28e9024dee4bb1b.js.LICENSE.txt} +0 -0
- /package/types/packages/excalidraw/dist/excalidraw-assets/{vendor-2002fe1b8862917b36c1.d.ts → vendor-d415b28e9024dee4bb1b.d.ts} +0 -0
- /package/types/packages/excalidraw/dist/excalidraw-assets-dev/{vendor-e6df8519da951026ff69.d.ts → vendor-a14cd58fa2db417e42b2.d.ts} +0 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { Drawable } from "roughjs/bin/core";
|
|
2
|
+
import { ExcalidrawElement } from "../element/types";
|
|
3
|
+
import { ElementShape, ElementShapes } from "./types";
|
|
4
|
+
export declare class ShapeCache {
|
|
5
|
+
private static rg;
|
|
6
|
+
private static cache;
|
|
7
|
+
/**
|
|
8
|
+
* Retrieves shape from cache if available. Use this only if shape
|
|
9
|
+
* is optional and you have a fallback in case it's not cached.
|
|
10
|
+
*/
|
|
11
|
+
static get: <T extends ExcalidrawElement>(element: T) => T["type"] extends keyof ElementShapes ? ElementShapes[T["type"]] | undefined : ElementShape | undefined;
|
|
12
|
+
static set: <T extends ExcalidrawElement>(element: T, shape: T["type"] extends keyof ElementShapes ? ElementShapes[T["type"]] : Drawable) => WeakMap<ExcalidrawElement, ElementShape>;
|
|
13
|
+
static delete: (element: ExcalidrawElement) => boolean;
|
|
14
|
+
static destroy: () => void;
|
|
15
|
+
/**
|
|
16
|
+
* Generates & caches shape for element if not already cached, otherwise
|
|
17
|
+
* returns cached shape.
|
|
18
|
+
*/
|
|
19
|
+
static generateElementShape: <T extends import("../element/types").ExcalidrawLinearElement | import("../element/types").ExcalidrawRectangleElement | import("../element/types").ExcalidrawDiamondElement | import("../element/types").ExcalidrawEllipseElement | import("../element/types").ExcalidrawEmbeddableElement | import("../element/types").ExcalidrawImageElement | import("../element/types").ExcalidrawFrameElement | import("../element/types").ExcalidrawTextElement | import("../element/types").ExcalidrawFreeDrawElement>(element: T, isExporting?: boolean) => ((T["type"] extends keyof ElementShapes ? ElementShapes[T["type"]] | undefined : ElementShape | undefined) & ({} | null)) | (T["type"] extends keyof ElementShapes ? ElementShapes[T["type"]] : Drawable | null);
|
|
20
|
+
}
|
package/types/scene/export.d.ts
CHANGED
|
@@ -20,10 +20,28 @@ export type ExportToCanvasConfig = {
|
|
|
20
20
|
*/
|
|
21
21
|
canvasBackgroundColor?: string | false;
|
|
22
22
|
/**
|
|
23
|
-
* Canvas padding in pixels. Affected by scale
|
|
24
|
-
* `cover`.
|
|
23
|
+
* Canvas padding in pixels. Affected by `scale`.
|
|
25
24
|
*
|
|
26
|
-
*
|
|
25
|
+
* When `fit` is set to `none`, padding is added to the content bounding box
|
|
26
|
+
* (including if you set `width` or `height` or `maxWidthOrHeight` or
|
|
27
|
+
* `widthOrHeight`).
|
|
28
|
+
*
|
|
29
|
+
* When `fit` set to `contain`, padding is subtracted from the content
|
|
30
|
+
* bounding box (ensuring the size doesn't exceed the supplied values, with
|
|
31
|
+
* the exeception of using alongside `scale` as noted above), and the padding
|
|
32
|
+
* serves as a minimum distance between the content and the canvas edges, as
|
|
33
|
+
* it may exceed the supplied padding value from one side or the other in
|
|
34
|
+
* order to maintain the aspect ratio. It is recommended to set `position`
|
|
35
|
+
* to `center` when using `fit=contain`.
|
|
36
|
+
*
|
|
37
|
+
* When `fit` is set to `cover`, padding is disabled (set to 0).
|
|
38
|
+
*
|
|
39
|
+
* When `fit` is set to `none` and either `width` or `height` or
|
|
40
|
+
* `maxWidthOrHeight` is set, padding is simply adding to the bounding box
|
|
41
|
+
* and the content may overflow the canvas, thus right or bottom padding
|
|
42
|
+
* may be ignored.
|
|
43
|
+
*
|
|
44
|
+
* @default 0
|
|
27
45
|
*/
|
|
28
46
|
padding?: number;
|
|
29
47
|
/**
|
|
@@ -35,7 +53,8 @@ export type ExportToCanvasConfig = {
|
|
|
35
53
|
*/
|
|
36
54
|
maxWidthOrHeight?: number;
|
|
37
55
|
/**
|
|
38
|
-
* Scale the canvas content to be excatly this many pixels wide/tall
|
|
56
|
+
* Scale the canvas content to be excatly this many pixels wide/tall,
|
|
57
|
+
* maintaining the aspect ratio.
|
|
39
58
|
*
|
|
40
59
|
* Cannot be used in conjunction with `maxWidthOrHeight`.
|
|
41
60
|
*
|
|
@@ -94,12 +113,15 @@ export type ExportToCanvasConfig = {
|
|
|
94
113
|
* Behavior aligns with the `object-fit` CSS property.
|
|
95
114
|
*
|
|
96
115
|
* - `none` - no scaling.
|
|
97
|
-
* - `contain` - scale to fit the frame.
|
|
116
|
+
* - `contain` - scale to fit the frame. Includes `padding`.
|
|
98
117
|
* - `cover` - scale to fill the frame while maintaining aspect ratio. If
|
|
99
118
|
* content overflows, it will be cropped.
|
|
100
119
|
*
|
|
101
|
-
*
|
|
102
|
-
*
|
|
120
|
+
* If `maxWidthOrHeight` or `widthOrHeight` is set, `fit` is ignored.
|
|
121
|
+
*
|
|
122
|
+
* @default "contain" unless `width`, `height`, `maxWidthOrHeight`, or
|
|
123
|
+
* `widthOrHeight` is specified in which case `none` is the default (can be
|
|
124
|
+
* changed). If `x` or `y` are specified, `none` is forced.
|
|
103
125
|
*/
|
|
104
126
|
fit?: "none" | "contain" | "cover";
|
|
105
127
|
/**
|
|
@@ -110,9 +132,11 @@ export type ExportToCanvasConfig = {
|
|
|
110
132
|
* - `center` - canvas is centered on the axis which is not specified
|
|
111
133
|
* (or both).
|
|
112
134
|
*
|
|
135
|
+
* If `maxWidthOrHeight` or `widthOrHeight` is set, `position` is ignored.
|
|
136
|
+
*
|
|
113
137
|
* @default "center"
|
|
114
138
|
*/
|
|
115
|
-
position?: "center" | "
|
|
139
|
+
position?: "center" | "topLeft";
|
|
116
140
|
/**
|
|
117
141
|
* A multiplier to increase/decrease the frame dimensions
|
|
118
142
|
* (content resolution).
|
|
@@ -160,7 +184,9 @@ export declare const exportToSvg: (elements: readonly NonDeletedExcalidrawElemen
|
|
|
160
184
|
viewBackgroundColor: string;
|
|
161
185
|
exportWithDarkMode?: boolean;
|
|
162
186
|
exportEmbedScene?: boolean;
|
|
187
|
+
renderFrame?: boolean;
|
|
163
188
|
}, files: BinaryFiles | null, opts?: {
|
|
164
189
|
serializeAsJSON?: () => string;
|
|
190
|
+
renderEmbeddables?: boolean;
|
|
165
191
|
}) => Promise<SVGSVGElement>;
|
|
166
|
-
export declare const
|
|
192
|
+
export declare const getCanvasSize: (elements: readonly NonDeletedExcalidrawElement[]) => [minX: number, minY: number, width: number, height: number];
|
package/types/scene/scroll.d.ts
CHANGED
|
@@ -11,7 +11,7 @@ export declare const centerScrollOn: ({ scenePoint, viewportDimensions, zoom, }:
|
|
|
11
11
|
scrollX: number;
|
|
12
12
|
scrollY: number;
|
|
13
13
|
};
|
|
14
|
-
export declare const calculateScrollCenter: (elements: readonly ExcalidrawElement[], appState: AppState
|
|
14
|
+
export declare const calculateScrollCenter: (elements: readonly ExcalidrawElement[], appState: AppState) => {
|
|
15
15
|
scrollX: number;
|
|
16
16
|
scrollY: number;
|
|
17
17
|
};
|
|
@@ -1,14 +1,10 @@
|
|
|
1
1
|
import { ExcalidrawElement } from "../element/types";
|
|
2
|
-
import {
|
|
2
|
+
import { InteractiveCanvasAppState } from "../types";
|
|
3
3
|
import { ScrollBars } from "./types";
|
|
4
4
|
export declare const SCROLLBAR_MARGIN = 4;
|
|
5
5
|
export declare const SCROLLBAR_WIDTH = 6;
|
|
6
6
|
export declare const SCROLLBAR_COLOR = "rgba(0,0,0,0.3)";
|
|
7
|
-
export declare const getScrollBars: (elements: readonly ExcalidrawElement[], viewportWidth: number, viewportHeight: number,
|
|
8
|
-
scrollX: number;
|
|
9
|
-
scrollY: number;
|
|
10
|
-
zoom: Zoom;
|
|
11
|
-
}) => ScrollBars;
|
|
7
|
+
export declare const getScrollBars: (elements: readonly ExcalidrawElement[], viewportWidth: number, viewportHeight: number, appState: InteractiveCanvasAppState) => ScrollBars;
|
|
12
8
|
export declare const isOverScrollBars: (scrollBars: ScrollBars, x: number, y: number) => {
|
|
13
9
|
isOverEither: boolean;
|
|
14
10
|
isOverHorizontal: boolean;
|
|
@@ -1,11 +1,32 @@
|
|
|
1
1
|
import { ExcalidrawElement, NonDeletedExcalidrawElement } from "../element/types";
|
|
2
|
-
import { AppState } from "../types";
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
import { AppState, InteractiveCanvasAppState } from "../types";
|
|
3
|
+
/**
|
|
4
|
+
* Frames and their containing elements are not to be selected at the same time.
|
|
5
|
+
* Given an array of selected elements, if there are frames and their containing elements
|
|
6
|
+
* we only keep the frames.
|
|
7
|
+
* @param selectedElements
|
|
8
|
+
*/
|
|
9
|
+
export declare const excludeElementsInFramesFromSelection: <T extends ExcalidrawElement>(selectedElements: readonly T[]) => T[];
|
|
10
|
+
export declare const getElementsWithinSelection: (elements: readonly NonDeletedExcalidrawElement[], selection: NonDeletedExcalidrawElement, excludeElementsInFrames?: boolean) => NonDeletedExcalidrawElement[];
|
|
11
|
+
export declare const getVisibleAndNonSelectedElements: (elements: readonly NonDeletedExcalidrawElement[], selectedElements: readonly NonDeletedExcalidrawElement[], appState: AppState) => NonDeletedExcalidrawElement[];
|
|
12
|
+
export declare const isSomeElementSelected: {
|
|
13
|
+
(elements: readonly NonDeletedExcalidrawElement[], appState: Pick<AppState, "selectedElementIds">): boolean;
|
|
14
|
+
clearCache(): void;
|
|
15
|
+
};
|
|
5
16
|
/**
|
|
6
17
|
* Returns common attribute (picked by `getAttribute` callback) of selected
|
|
7
18
|
* elements. If elements don't share the same value, returns `null`.
|
|
8
19
|
*/
|
|
9
20
|
export declare const getCommonAttributeOfSelectedElements: <T>(elements: readonly NonDeletedExcalidrawElement[], appState: Pick<AppState, "selectedElementIds">, getAttribute: (element: ExcalidrawElement) => T) => T | null;
|
|
10
|
-
export declare const getSelectedElements: (elements: readonly NonDeletedExcalidrawElement[], appState: Pick<
|
|
11
|
-
|
|
21
|
+
export declare const getSelectedElements: (elements: readonly NonDeletedExcalidrawElement[], appState: Pick<InteractiveCanvasAppState, "selectedElementIds">, opts?: {
|
|
22
|
+
includeBoundTextElement?: boolean;
|
|
23
|
+
includeElementsInFrames?: boolean;
|
|
24
|
+
}) => ExcalidrawElement[];
|
|
25
|
+
export declare const getTargetElements: (elements: readonly NonDeletedExcalidrawElement[], appState: Pick<AppState, "selectedElementIds" | "editingElement">) => ExcalidrawElement[];
|
|
26
|
+
/**
|
|
27
|
+
* returns prevState's selectedElementids if no change from previous, so as to
|
|
28
|
+
* retain reference identity for memoization
|
|
29
|
+
*/
|
|
30
|
+
export declare const makeNextSelectedElementIds: (nextSelectedElementIds: AppState["selectedElementIds"], prevState: Pick<AppState, "selectedElementIds">) => Readonly<{
|
|
31
|
+
[id: string]: true;
|
|
32
|
+
}>;
|
package/types/scene/types.d.ts
CHANGED
|
@@ -1,47 +1,69 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import type { RoughCanvas } from "roughjs/bin/canvas";
|
|
2
|
+
import { Drawable } from "roughjs/bin/core";
|
|
3
|
+
import { ExcalidrawTextElement, NonDeletedExcalidrawElement } from "../element/types";
|
|
4
|
+
import { AppClassProperties, InteractiveCanvasAppState, StaticCanvasAppState } from "../types";
|
|
5
|
+
export type RenderConfig = {};
|
|
6
|
+
export type StaticCanvasRenderConfig = {
|
|
7
|
+
imageCache: AppClassProperties["imageCache"];
|
|
8
|
+
renderGrid: boolean;
|
|
9
|
+
/** when exporting the behavior is slightly different (e.g. we can't use
|
|
10
|
+
CSS filters), and we disable render optimizations for best output */
|
|
11
|
+
isExporting: boolean;
|
|
6
12
|
/** null indicates transparent bg */
|
|
7
|
-
canvasBackgroundColor:
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
* devicePixelRatio. For export, it's the `appState.exportScale`
|
|
14
|
-
* (user setting) or whatever scale you want to use when exporting elsewhere.
|
|
15
|
-
*
|
|
16
|
-
* Bigger the scale, the more pixels (=quality).
|
|
17
|
-
*/
|
|
18
|
-
canvasScale: number;
|
|
13
|
+
canvasBackgroundColor: string | null;
|
|
14
|
+
};
|
|
15
|
+
export type InteractiveCanvasRenderConfig = {
|
|
16
|
+
remoteSelectedElementIds: {
|
|
17
|
+
[elementId: string]: string[];
|
|
18
|
+
};
|
|
19
19
|
remotePointerViewportCoords: {
|
|
20
20
|
[id: string]: {
|
|
21
21
|
x: number;
|
|
22
22
|
y: number;
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
|
-
|
|
26
|
-
[id: string]: string
|
|
27
|
-
};
|
|
28
|
-
remoteSelectedElementIds: {
|
|
29
|
-
[elementId: string]: string[];
|
|
25
|
+
remotePointerUserStates: {
|
|
26
|
+
[id: string]: string;
|
|
30
27
|
};
|
|
31
28
|
remotePointerUsernames: {
|
|
32
29
|
[id: string]: string;
|
|
33
30
|
};
|
|
34
|
-
|
|
35
|
-
[id: string]: string;
|
|
31
|
+
remotePointerButton?: {
|
|
32
|
+
[id: string]: string | undefined;
|
|
36
33
|
};
|
|
37
|
-
imageCache: AppClassProperties["imageCache"];
|
|
38
|
-
renderScrollbars?: boolean;
|
|
39
|
-
renderSelection?: boolean;
|
|
40
|
-
renderGrid?: boolean;
|
|
41
|
-
/** when exporting the behavior is slightly different (e.g. we can't use
|
|
42
|
-
CSS filters), and we disable render optimizations for best output */
|
|
43
|
-
isExporting: boolean;
|
|
44
34
|
selectionColor?: string;
|
|
35
|
+
renderScrollbars?: boolean;
|
|
36
|
+
};
|
|
37
|
+
export type RenderInteractiveSceneCallback = {
|
|
38
|
+
atLeastOneVisibleElement: boolean;
|
|
39
|
+
elements: readonly NonDeletedExcalidrawElement[];
|
|
40
|
+
scrollBars?: ScrollBars;
|
|
41
|
+
};
|
|
42
|
+
export type StaticSceneRenderConfig = {
|
|
43
|
+
canvas: HTMLCanvasElement;
|
|
44
|
+
rc: RoughCanvas;
|
|
45
|
+
elements: readonly NonDeletedExcalidrawElement[];
|
|
46
|
+
visibleElements: readonly NonDeletedExcalidrawElement[];
|
|
47
|
+
/**
|
|
48
|
+
* canvas scale factor. Not related to zoom. In browsers, it's the
|
|
49
|
+
* devicePixelRatio. For export, it's the `appState.exportScale`
|
|
50
|
+
* (user setting) or whatever scale you want to use when exporting elsewhere.
|
|
51
|
+
*
|
|
52
|
+
* Bigger the scale, the more pixels (=quality).
|
|
53
|
+
*/
|
|
54
|
+
scale: number;
|
|
55
|
+
appState: StaticCanvasAppState;
|
|
56
|
+
renderConfig: StaticCanvasRenderConfig;
|
|
57
|
+
};
|
|
58
|
+
export type InteractiveSceneRenderConfig = {
|
|
59
|
+
canvas: HTMLCanvasElement | null;
|
|
60
|
+
elements: readonly NonDeletedExcalidrawElement[];
|
|
61
|
+
visibleElements: readonly NonDeletedExcalidrawElement[];
|
|
62
|
+
selectedElements: readonly NonDeletedExcalidrawElement[];
|
|
63
|
+
scale: number;
|
|
64
|
+
appState: InteractiveCanvasAppState;
|
|
65
|
+
renderConfig: InteractiveCanvasRenderConfig;
|
|
66
|
+
callback: (data: RenderInteractiveSceneCallback) => void;
|
|
45
67
|
};
|
|
46
68
|
export type SceneScroll = {
|
|
47
69
|
scrollX: number;
|
|
@@ -65,3 +87,16 @@ export type ScrollBars = {
|
|
|
65
87
|
height: number;
|
|
66
88
|
} | null;
|
|
67
89
|
};
|
|
90
|
+
export type ElementShape = Drawable | Drawable[] | null;
|
|
91
|
+
export type ElementShapes = {
|
|
92
|
+
rectangle: Drawable;
|
|
93
|
+
ellipse: Drawable;
|
|
94
|
+
diamond: Drawable;
|
|
95
|
+
embeddable: Drawable;
|
|
96
|
+
freedraw: Drawable | null;
|
|
97
|
+
arrow: Drawable[];
|
|
98
|
+
line: Drawable[];
|
|
99
|
+
text: null;
|
|
100
|
+
image: null;
|
|
101
|
+
frame: null;
|
|
102
|
+
};
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { Bounds } from "./element/bounds";
|
|
2
|
+
import { MaybeTransformHandleType } from "./element/transformHandles";
|
|
3
|
+
import { ExcalidrawElement, NonDeletedExcalidrawElement } from "./element/types";
|
|
4
|
+
import { AppState, KeyboardModifiersObject, Point } from "./types";
|
|
5
|
+
export declare const getSnapDistance: (zoomValue: number) => number;
|
|
6
|
+
type Vector2D = {
|
|
7
|
+
x: number;
|
|
8
|
+
y: number;
|
|
9
|
+
};
|
|
10
|
+
type PointPair = [Point, Point];
|
|
11
|
+
export type PointSnap = {
|
|
12
|
+
type: "point";
|
|
13
|
+
points: PointPair;
|
|
14
|
+
offset: number;
|
|
15
|
+
};
|
|
16
|
+
export type Gap = {
|
|
17
|
+
startBounds: Bounds;
|
|
18
|
+
endBounds: Bounds;
|
|
19
|
+
startSide: [Point, Point];
|
|
20
|
+
endSide: [Point, Point];
|
|
21
|
+
overlap: [number, number];
|
|
22
|
+
length: number;
|
|
23
|
+
};
|
|
24
|
+
export type GapSnap = {
|
|
25
|
+
type: "gap";
|
|
26
|
+
direction: "center_horizontal" | "center_vertical" | "side_left" | "side_right" | "side_top" | "side_bottom";
|
|
27
|
+
gap: Gap;
|
|
28
|
+
offset: number;
|
|
29
|
+
};
|
|
30
|
+
export type GapSnaps = GapSnap[];
|
|
31
|
+
export type Snap = GapSnap | PointSnap;
|
|
32
|
+
export type Snaps = Snap[];
|
|
33
|
+
export type PointSnapLine = {
|
|
34
|
+
type: "points";
|
|
35
|
+
points: Point[];
|
|
36
|
+
};
|
|
37
|
+
export type PointerSnapLine = {
|
|
38
|
+
type: "pointer";
|
|
39
|
+
points: PointPair;
|
|
40
|
+
direction: "horizontal" | "vertical";
|
|
41
|
+
};
|
|
42
|
+
export type GapSnapLine = {
|
|
43
|
+
type: "gap";
|
|
44
|
+
direction: "horizontal" | "vertical";
|
|
45
|
+
points: PointPair;
|
|
46
|
+
};
|
|
47
|
+
export type SnapLine = PointSnapLine | GapSnapLine | PointerSnapLine;
|
|
48
|
+
export declare class SnapCache {
|
|
49
|
+
private static referenceSnapPoints;
|
|
50
|
+
private static visibleGaps;
|
|
51
|
+
static setReferenceSnapPoints: (snapPoints: Point[] | null) => void;
|
|
52
|
+
static getReferenceSnapPoints: () => (readonly [number, number])[] | null;
|
|
53
|
+
static setVisibleGaps: (gaps: {
|
|
54
|
+
verticalGaps: Gap[];
|
|
55
|
+
horizontalGaps: Gap[];
|
|
56
|
+
} | null) => void;
|
|
57
|
+
static getVisibleGaps: () => {
|
|
58
|
+
verticalGaps: Gap[];
|
|
59
|
+
horizontalGaps: Gap[];
|
|
60
|
+
} | null;
|
|
61
|
+
static destroy: () => void;
|
|
62
|
+
}
|
|
63
|
+
export declare const isSnappingEnabled: ({ event, appState, selectedElements, }: {
|
|
64
|
+
appState: AppState;
|
|
65
|
+
event: KeyboardModifiersObject;
|
|
66
|
+
selectedElements: NonDeletedExcalidrawElement[];
|
|
67
|
+
}) => boolean;
|
|
68
|
+
export declare const areRoughlyEqual: (a: number, b: number, precision?: number) => boolean;
|
|
69
|
+
export declare const getElementsCorners: (elements: ExcalidrawElement[], { omitCenter, boundingBoxCorners, dragOffset, }?: {
|
|
70
|
+
omitCenter?: boolean | undefined;
|
|
71
|
+
boundingBoxCorners?: boolean | undefined;
|
|
72
|
+
dragOffset?: Vector2D | undefined;
|
|
73
|
+
}) => Point[];
|
|
74
|
+
export declare const getVisibleGaps: (elements: readonly NonDeletedExcalidrawElement[], selectedElements: ExcalidrawElement[], appState: AppState) => {
|
|
75
|
+
horizontalGaps: Gap[];
|
|
76
|
+
verticalGaps: Gap[];
|
|
77
|
+
};
|
|
78
|
+
export declare const getReferenceSnapPoints: (elements: readonly NonDeletedExcalidrawElement[], selectedElements: ExcalidrawElement[], appState: AppState) => (readonly [number, number])[];
|
|
79
|
+
export declare const snapDraggedElements: (selectedElements: ExcalidrawElement[], dragOffset: Vector2D, appState: AppState, event: KeyboardModifiersObject) => {
|
|
80
|
+
snapOffset: {
|
|
81
|
+
x: number;
|
|
82
|
+
y: number;
|
|
83
|
+
};
|
|
84
|
+
snapLines: (PointSnapLine | GapSnapLine)[];
|
|
85
|
+
};
|
|
86
|
+
export declare const snapResizingElements: (selectedElements: ExcalidrawElement[], selectedOriginalElements: ExcalidrawElement[], appState: AppState, event: KeyboardModifiersObject, dragOffset: Vector2D, transformHandle: MaybeTransformHandleType) => {
|
|
87
|
+
snapOffset: {
|
|
88
|
+
x: number;
|
|
89
|
+
y: number;
|
|
90
|
+
};
|
|
91
|
+
snapLines: PointSnapLine[];
|
|
92
|
+
};
|
|
93
|
+
export declare const snapNewElement: (draggingElement: ExcalidrawElement, appState: AppState, event: KeyboardModifiersObject, origin: Vector2D, dragOffset: Vector2D) => {
|
|
94
|
+
snapOffset: {
|
|
95
|
+
x: number;
|
|
96
|
+
y: number;
|
|
97
|
+
};
|
|
98
|
+
snapLines: PointSnapLine[];
|
|
99
|
+
};
|
|
100
|
+
export declare const getSnapLinesAtPointer: (elements: readonly ExcalidrawElement[], appState: AppState, pointer: Vector2D, event: KeyboardModifiersObject) => {
|
|
101
|
+
originOffset: {
|
|
102
|
+
x: number;
|
|
103
|
+
y: number;
|
|
104
|
+
};
|
|
105
|
+
snapLines: PointerSnapLine[];
|
|
106
|
+
};
|
|
107
|
+
export declare const isActiveToolNonLinearSnappable: (activeToolType: AppState["activeTool"]["type"]) => boolean;
|
|
108
|
+
export {};
|