Merge pull request #148 from element-hq/langleyd/hideWidgets

EW module APi: add hideWidgets props to RoomViewProps
This commit is contained in:
David Langley
2025-12-04 16:40:59 +00:00
committed by GitHub
2 changed files with 5 additions and 0 deletions
@@ -361,6 +361,7 @@ export interface RoomViewProps {
hideHeader?: boolean;
hidePinnedMessageBanner?: boolean;
hideRightPanel?: boolean;
hideWidgets?: boolean;
}
// @alpha @deprecated (undocumented)
@@ -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;
}
/**