@zsviczian/excalidraw 0.10.0-obsidian-34 → 0.10.0-obsidian-35

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-34",
3
+ "version": "0.10.0-obsidian-35",
4
4
  "main": "main.js",
5
5
  "types": "types/packages/excalidraw/index.d.ts",
6
6
  "files": [
@@ -79,7 +79,6 @@ declare class App extends React.Component<AppProps, AppState> {
79
79
  /** adds supplied files to existing files in the appState */
80
80
  addFiles: ExcalidrawImperativeAPI["addFiles"];
81
81
  setLocalFont: ExcalidrawImperativeAPI["setLocalFont"];
82
- private setLocalFontUrl;
83
82
  updateScene: <K extends keyof AppState>(sceneData: {
84
83
  elements?: SceneData["elements"];
85
84
  appState?: Pick<AppState, K> | null | undefined;
package/types/types.d.ts CHANGED
@@ -331,6 +331,6 @@ export declare type ExcalidrawImperativeAPI = {
331
331
  readyPromise: ResolvablePromise<ExcalidrawImperativeAPI>;
332
332
  ready: true;
333
333
  id: string;
334
- setLocalFont: (url: string, showOnPanel: boolean) => void;
334
+ setLocalFont: (showOnPanel: boolean) => void;
335
335
  };
336
336
  export {};