@zsviczian/excalidraw 0.18.0-56 → 0.18.0-57

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-56",
3
+ "version": "0.18.0-57",
4
4
  "main": "main.js",
5
5
  "module": "./dist/prod/index.js",
6
6
  "source": "./index.tsx",
@@ -17,3 +17,4 @@ export declare const getObsidianDeviceInfo: () => ObsidianDeviceType | null;
17
17
  export declare const getDesktopUIMode: () => any;
18
18
  export declare function getAreaLimit(): any;
19
19
  export declare function getWidthHeightLimit(): any;
20
+ export declare function getHighlightColor(color: string, sceneBgColor: string, opacity?: number): string;
@@ -146,6 +146,7 @@ export type InteractiveCanvasAppState = Readonly<_CommonCanvasAppState & {
146
146
  snapLines: AppState["snapLines"];
147
147
  zenModeEnabled: AppState["zenModeEnabled"];
148
148
  editingTextElement: AppState["editingTextElement"];
149
+ viewBackgroundColor: AppState["viewBackgroundColor"];
149
150
  gridColor: AppState["gridColor"];
150
151
  gridDirection: AppState["gridDirection"];
151
152
  highlightSearchResult: AppState["highlightSearchResult"];