@zsviczian/excalidraw 0.18.0-48 → 0.18.0-49

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zsviczian/excalidraw",
3
- "version": "0.18.0-48",
3
+ "version": "0.18.0-49",
4
4
  "main": "main.js",
5
5
  "module": "./dist/prod/index.js",
6
6
  "source": "./index.tsx",
@@ -10,3 +10,4 @@ export type ObsidianDeviceType = {
10
10
  isAndroid: boolean;
11
11
  };
12
12
  export declare const getObsidianDeviceInfo: () => ObsidianDeviceType | null;
13
+ export declare const getDesktopUIMode: () => any;
@@ -31,5 +31,5 @@ export declare const isTabletBreakpoint: (editorWidth: number, editorHeight: num
31
31
  export declare const getFormFactor: (editorWidth: number, editorHeight: number) => EditorInterface["formFactor"];
32
32
  export declare const deriveStylesPanelMode: (editorInterface: EditorInterface) => StylesPanelMode;
33
33
  export declare const createUserAgentDescriptor: (userAgentString: string) => EditorInterface["userAgent"];
34
- export declare const loadDesktopUIModePreference: () => "compact" | "full" | "tray" | null;
34
+ export declare const loadDesktopUIModePreference: () => any;
35
35
  export declare const setDesktopUIMode: (mode: EditorInterface["desktopUIMode"]) => "compact" | "full" | "tray" | undefined;