Skip to content

Commit 7331976

Browse files
authored
fix: Publish WidgetPanelProps (#2210)
- Wasn't being published, needed for the DHE refactoring of core plugins - Specifically: https://github.com/deephaven-ent/iris/pull/2114/files#diff-536d6ac232028a4ebbafc5ca79bb1a22844488a4b628196e43056379f9326a90R17
1 parent 6c1196c commit 7331976

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/dashboard-core-plugins/src/panels/WidgetPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import WidgetPanelTooltip from './WidgetPanelTooltip';
1010
import './WidgetPanel.scss';
1111
import { WidgetPanelDescriptor } from './WidgetPanelTypes';
1212

13-
type WidgetPanelProps = {
13+
export type WidgetPanelProps = {
1414
children: ReactNode;
1515

1616
descriptor: WidgetPanelDescriptor;

packages/dashboard-core-plugins/src/panels/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ export { default as PandasPanel } from './PandasPanel';
1919
export * from './PandasPanel';
2020
export { default as Panel } from './Panel';
2121
export * from './WidgetPanelTypes';
22-
export { default as WidgetPanel } from './WidgetPanel';
22+
export { default as WidgetPanel, type WidgetPanelProps } from './WidgetPanel';
2323
export { default as WidgetPanelTooltip } from './WidgetPanelTooltip';
2424
export { default as MockFileStorage } from './MockFileStorage';

0 commit comments

Comments
 (0)