From e4a0a6a4eebfb26f89e76ac2ce45495fc3a3b865 Mon Sep 17 00:00:00 2001 From: Haris Rozajac <58232930+harisrozajac@users.noreply.github.com> Date: Tue, 23 Jan 2024 07:13:17 -0700 Subject: [PATCH] PanelContext: Remove deprecated onSplitOpen (#80087) Remove deprecated onSplitOpen --- .../grafana-ui/src/components/PanelChrome/PanelContext.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packages/grafana-ui/src/components/PanelChrome/PanelContext.ts b/packages/grafana-ui/src/components/PanelChrome/PanelContext.ts index ede3ffbe4eb..8159f3a5a4a 100644 --- a/packages/grafana-ui/src/components/PanelChrome/PanelContext.ts +++ b/packages/grafana-ui/src/components/PanelChrome/PanelContext.ts @@ -6,7 +6,6 @@ import { DashboardCursorSync, AnnotationEventUIModel, ThresholdsConfig, - SplitOpen, CoreApp, DataFrame, DataLinkPostProcessor, @@ -70,13 +69,6 @@ export interface PanelContext { */ onThresholdsChange?: (thresholds: ThresholdsConfig) => void; - /** - * onSplitOpen is used in Explore to open the split view. It can be used in panels which has intercations and used in Explore as well. - * For example TimeSeries panel. - * @deprecated will be removed in the future. It's not needed as visualization can just field.getLinks now - */ - onSplitOpen?: SplitOpen; - /** For instance state that can be shared between panel & options UI */ instanceState?: any;