From 03642d50a28318c358c60cfbf52ed383a4b5c0a1 Mon Sep 17 00:00:00 2001 From: mathuo <6710312+mathuo@users.noreply.github.com> Date: Sat, 21 May 2022 19:08:13 +0100 Subject: [PATCH] feat: remove panel.api.focus() from public api --- packages/dockview/src/gridview/basePanelView.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/dockview/src/gridview/basePanelView.ts b/packages/dockview/src/gridview/basePanelView.ts index 61445fa21..d2a6e4565 100644 --- a/packages/dockview/src/gridview/basePanelView.ts +++ b/packages/dockview/src/gridview/basePanelView.ts @@ -20,7 +20,6 @@ export interface BasePanelViewExported { readonly width: number; readonly height: number; readonly params: Record | undefined; - focus(): void; toJSON(): object; update(event: PanelUpdateEvent): void; }