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
commit 84123065a7
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;
}
/**