@zsviczian/excalidraw 0.10.0-obsidian-29 → 0.10.0-obsidian-30
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
|
@@ -71,7 +71,6 @@ declare class App extends React.Component<AppProps, AppState> {
|
|
|
71
71
|
toggleStats: () => void;
|
|
72
72
|
scrollToContent: (target?: ExcalidrawElement | readonly ExcalidrawElement[]) => void;
|
|
73
73
|
zoomToFit: (target?: readonly ExcalidrawElement[], maxZoom?: number, margin?: number) => void;
|
|
74
|
-
handleBindTextResize: (containerElements: NonDeletedExcalidrawElement[]) => void;
|
|
75
74
|
updateContainerSize: (containers: NonDeletedExcalidrawElement[]) => void;
|
|
76
75
|
clearToast: () => void;
|
|
77
76
|
setToastMessage: (toastMessage: string) => void;
|
package/types/types.d.ts
CHANGED
|
@@ -326,7 +326,6 @@ export declare type ExcalidrawImperativeAPI = {
|
|
|
326
326
|
importLibrary: InstanceType<typeof App>["importLibraryFromUrl"];
|
|
327
327
|
setToastMessage: InstanceType<typeof App>["setToastMessage"];
|
|
328
328
|
addFiles: (data: BinaryFileData[]) => void;
|
|
329
|
-
handleBindTextResize: InstanceType<typeof App>["handleBindTextResize"];
|
|
330
329
|
updateContainerSize: InstanceType<typeof App>["updateContainerSize"];
|
|
331
330
|
readyPromise: ResolvablePromise<ExcalidrawImperativeAPI>;
|
|
332
331
|
ready: true;
|