PanelChrome: move showMenuAlways prop to base types (#103553)

fix: move showMenuAlways prop to base types
This commit is contained in:
Galen Kistler
2025-04-08 08:54:45 -05:00
committed by GitHub
parent 1bbe970e59
commit 290d2aaa8a
@@ -70,6 +70,10 @@ interface BaseProps {
*/
onMouseMove?: () => void;
onMouseEnter?: () => void;
/**
* If true, the VizPanelMenu will always be visible in the panel header. Defaults to false.
*/
showMenuAlways?: boolean;
}
interface FixedDimensions extends BaseProps {
@@ -87,10 +91,6 @@ interface AutoSize extends BaseProps {
interface Collapsible {
collapsible: boolean;
collapsed?: boolean;
/**
* If true, the VizPanelMenu will always be visible in the panel header. Defaults to false.
*/
showMenuAlways?: boolean;
/**
* callback when collapsing or expanding the panel
*/