@zsviczian/excalidraw 0.12.0-obsidian-6 → 0.12.0-obsidian-7
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/package.json
CHANGED
|
@@ -16,9 +16,10 @@ export declare const ShapesSwitcher: ({ canvas, activeTool, setAppState, onImage
|
|
|
16
16
|
}) => void;
|
|
17
17
|
appState: AppState;
|
|
18
18
|
}) => JSX.Element;
|
|
19
|
-
export declare const ZoomActions: ({ renderAction, zoom, }: {
|
|
19
|
+
export declare const ZoomActions: ({ renderAction, zoom, trayMode, }: {
|
|
20
20
|
renderAction: ActionManager["renderAction"];
|
|
21
21
|
zoom: Zoom;
|
|
22
|
+
trayMode?: boolean | undefined;
|
|
22
23
|
}) => JSX.Element;
|
|
23
24
|
export declare const UndoRedoActions: ({ renderAction, className, }: {
|
|
24
25
|
renderAction: ActionManager["renderAction"];
|
package/types/constants.d.ts
CHANGED
|
@@ -101,7 +101,7 @@ export declare const TOUCH_CTX_MENU_TIMEOUT = 500;
|
|
|
101
101
|
export declare const TITLE_TIMEOUT = 10000;
|
|
102
102
|
export declare const VERSION_TIMEOUT = 30000;
|
|
103
103
|
export declare const SCROLL_TIMEOUT = 100;
|
|
104
|
-
export declare const ZOOM_STEP = 0.
|
|
104
|
+
export declare const ZOOM_STEP = 0.05;
|
|
105
105
|
export declare const HYPERLINK_TOOLTIP_DELAY = 300;
|
|
106
106
|
export declare const IDLE_THRESHOLD = 60000;
|
|
107
107
|
export declare const ACTIVE_THRESHOLD = 3000;
|