Add api to hide widgets

This commit is contained in:
David Langley 2025-12-03 09:54:33 +00:00
parent 2d3b554649
commit f35357d3b3
2 changed files with 5 additions and 0 deletions

View File

@ -361,6 +361,7 @@ export interface RoomViewProps {
hideHeader?: boolean;
hidePinnedMessageBanner?: boolean;
hideRightPanel?: boolean;
hideWidgets?: boolean;
}
// @alpha @deprecated (undocumented)

View File

@ -26,6 +26,10 @@ export interface RoomViewProps {
* If true, the pinned message banner will be hidden.
*/
hidePinnedMessageBanner?: boolean;
/**
* If true, the widgets will be hidden.
*/
hideWidgets?: boolean;
}
/**