@zsviczian/excalidraw 0.10.0-obsidian-46 → 0.10.0-obsidian-47

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-46",
3
+ "version": "0.10.0-obsidian-47",
4
4
  "main": "main.js",
5
5
  "types": "types/packages/excalidraw/index.d.ts",
6
6
  "files": [
@@ -85,7 +85,6 @@ declare class App extends React.Component<AppProps, AppState> {
85
85
  addFiles: ExcalidrawImperativeAPI["addFiles"];
86
86
  setLocalFont: ExcalidrawImperativeAPI["setLocalFont"];
87
87
  selectElements: ExcalidrawImperativeAPI["selectElements"];
88
- setLinkOpacity: ExcalidrawImperativeAPI["setLinkOpacity"];
89
88
  bringToFront: ExcalidrawImperativeAPI["bringToFront"];
90
89
  bringForward: ExcalidrawImperativeAPI["bringForward"];
91
90
  sendToBack: ExcalidrawImperativeAPI["sendToBack"];
package/types/types.d.ts CHANGED
@@ -343,6 +343,5 @@ export declare type ExcalidrawImperativeAPI = {
343
343
  bringForward: (elements: readonly ExcalidrawElement[]) => void;
344
344
  sendToBack: (elements: readonly ExcalidrawElement[]) => void;
345
345
  bringToFront: (elements: readonly ExcalidrawElement[]) => void;
346
- setLinkOpacity: (opacity?: number) => void;
347
346
  };
348
347
  export {};