@zsviczian/excalidraw 0.17.1-obsidian-52 → 0.17.1-obsidian-54
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/excalidraw.development.js +20 -20
- package/dist/excalidraw.production.min.js +1 -1
- package/dist/styles.development.css +2 -2
- package/dist/styles.production.css +1 -1
- package/package.json +1 -1
- package/types/excalidraw/actions/actionClipboard.d.ts +1 -0
- package/types/excalidraw/actions/actionDeleteSelected.d.ts +1 -0
- package/types/excalidraw/data/encode.d.ts +1 -0
- package/types/excalidraw/element/linearElementEditor.d.ts +1 -0
- package/types/excalidraw/element/routing.d.ts +8 -6
- package/types/excalidraw/element/typeChecks.d.ts +1 -1
- package/types/excalidraw/element/types.d.ts +1 -2
- package/types/excalidraw/obsidianUtils.d.ts +0 -1
- package/types/excalidraw/scene/Scene.d.ts +1 -1
- package/types/excalidraw/scene/ShapeCache.d.ts +1 -1
- package/types/excalidraw/scene/comparisons.d.ts +477 -1
- package/types/excalidraw/visualdebug.d.ts +2 -2
|
@@ -28,8 +28,8 @@ export declare const debugDrawBoundingBox: (box: BoundingBox | BoundingBox[], op
|
|
|
28
28
|
permanent?: boolean;
|
|
29
29
|
}) => void;
|
|
30
30
|
export declare const debugDrawBounds: (box: Bounds | Bounds[], opts?: {
|
|
31
|
-
color
|
|
32
|
-
permanent
|
|
31
|
+
color?: string;
|
|
32
|
+
permanent?: boolean;
|
|
33
33
|
}) => void;
|
|
34
34
|
export declare const debugCloseFrame: () => void;
|
|
35
35
|
export declare const debugClear: () => void;
|