@zsviczian/excalidraw 0.10.0-obsidian-42 → 0.10.0-obsidian-43

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.10.0-obsidian-42",
3
+ "version": "0.10.0-obsidian-43",
4
4
  "main": "main.js",
5
5
  "types": "types/packages/excalidraw/index.d.ts",
6
6
  "files": [
package/types/types.d.ts CHANGED
@@ -205,6 +205,7 @@ export interface ExcalidrawProps {
205
205
  generateIdForFile?: (file: File) => string | Promise<string>;
206
206
  onThemeChange?: (newTheme: string) => void;
207
207
  onLinkOpen?: (link: string, event: MouseEvent) => void;
208
+ onLinkHover?: (element: NonDeletedExcalidrawElement, event: React.PointerEvent<HTMLCanvasElement>) => void;
208
209
  }
209
210
  export declare type SceneData = {
210
211
  elements?: ImportedDataState["elements"];