Skip to content

Commit

Permalink
fix: Publish WidgetPanelProps (#2210)
Browse files Browse the repository at this point in the history
- Wasn't being published, needed for the DHE refactoring of core plugins
- Specifically:
https://github.com/deephaven-ent/iris/pull/2114/files#diff-536d6ac232028a4ebbafc5ca79bb1a22844488a4b628196e43056379f9326a90R17
  • Loading branch information
mofojed authored Sep 5, 2024
1 parent 6c1196c commit 7331976
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/dashboard-core-plugins/src/panels/WidgetPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import WidgetPanelTooltip from './WidgetPanelTooltip';
import './WidgetPanel.scss';
import { WidgetPanelDescriptor } from './WidgetPanelTypes';

type WidgetPanelProps = {
export type WidgetPanelProps = {
children: ReactNode;

descriptor: WidgetPanelDescriptor;
Expand Down
2 changes: 1 addition & 1 deletion packages/dashboard-core-plugins/src/panels/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export { default as PandasPanel } from './PandasPanel';
export * from './PandasPanel';
export { default as Panel } from './Panel';
export * from './WidgetPanelTypes';
export { default as WidgetPanel } from './WidgetPanel';
export { default as WidgetPanel, type WidgetPanelProps } from './WidgetPanel';
export { default as WidgetPanelTooltip } from './WidgetPanelTooltip';
export { default as MockFileStorage } from './MockFileStorage';

0 comments on commit 7331976

Please sign in to comment.