@zsviczian/excalidraw 0.18.0-43 → 0.18.0-44
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
|
@@ -225,7 +225,7 @@ export declare const EXPORT_DATA_TYPES: {
|
|
|
225
225
|
export declare const getExportSource: () => string;
|
|
226
226
|
export declare const IMAGE_RENDER_TIMEOUT = 500;
|
|
227
227
|
export declare const TAP_TWICE_TIMEOUT = 300;
|
|
228
|
-
export declare const TOUCH_CTX_MENU_TIMEOUT =
|
|
228
|
+
export declare const TOUCH_CTX_MENU_TIMEOUT = 500;
|
|
229
229
|
export declare const TITLE_TIMEOUT = 10000;
|
|
230
230
|
export declare const VERSION_TIMEOUT = 30000;
|
|
231
231
|
export declare const SCROLL_TIMEOUT = 100;
|
|
@@ -45,6 +45,7 @@ export declare const actionClearCanvas: {
|
|
|
45
45
|
shown: true;
|
|
46
46
|
data: import("../charts").Spreadsheet;
|
|
47
47
|
};
|
|
48
|
+
stylesPanelMode: "compact" | "full" | "mobile" | "tray";
|
|
48
49
|
activeTool: {
|
|
49
50
|
lastActiveTool: import("../types").ActiveTool | null;
|
|
50
51
|
locked: boolean;
|
|
@@ -233,7 +234,6 @@ export declare const actionClearCanvas: {
|
|
|
233
234
|
lockedMultiSelections: {
|
|
234
235
|
[groupId: string]: true;
|
|
235
236
|
};
|
|
236
|
-
stylesPanelMode: "compact" | "full" | "mobile" | "tray";
|
|
237
237
|
};
|
|
238
238
|
captureUpdate: "IMMEDIATELY";
|
|
239
239
|
};
|
|
@@ -43,3 +43,4 @@ export declare const runAction: (action: string) => void;
|
|
|
43
43
|
export declare const t2: (key: string) => string;
|
|
44
44
|
export declare const shouldDisableZoom: (appState: AppState) => boolean;
|
|
45
45
|
export declare const isFullPanelMode: (appState: AppState) => boolean;
|
|
46
|
+
export declare const isContextMenuDisabled: () => boolean;
|