@devtable/dashboard 14.4.3 → 14.5.0

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.
@@ -3,4 +3,5 @@ interface IViz {
3
3
  data: TPanelData;
4
4
  }
5
5
  export declare const Viz: import('./react').FunctionComponent<IViz>;
6
+ export declare const PanelVizAddons: () => import('./react').ReactPortal | null;
6
7
  export {};
@@ -0,0 +1,2 @@
1
+ export * from './panel-addon-manager';
2
+ export * from './panel-addon-context';
@@ -0,0 +1,5 @@
1
+ import React from './react';
2
+ export declare function PanelAddonProvider({ children }: {
3
+ children: React.ReactNode;
4
+ }): import('./react/jsx-runtime').JSX.Element;
5
+ export declare function usePanelAddonSlot(): HTMLElement | null;
@@ -0,0 +1,6 @@
1
+ import { IPanelAddonRenderProps, IPluginManager } from '../../../types/plugin';
2
+ export declare class PanelAddonManager {
3
+ private pluginManager;
4
+ constructor(pluginManager: IPluginManager);
5
+ createPanelAddonNode(props: IPanelAddonRenderProps): import('./react/jsx-runtime').JSX.Element;
6
+ }