Merge pull request #135 from element-hq/florianduros/rooms-hide-pinned-message-banner

This commit is contained in:
Florian Duros
2025-11-21 15:38:33 +01:00
committed by GitHub
parent 7518d1c068
commit c570936d33
2 changed files with 8 additions and 6 deletions
@@ -355,11 +355,9 @@ export interface RoomListStoreApi {
// @alpha
export interface RoomViewProps {
// (undocumented)
hideComposer?: boolean;
// (undocumented)
hideHeader?: boolean;
// (undocumented)
hidePinnedMessageBanner?: boolean;
hideRightPanel?: boolean;
}
@@ -10,18 +10,22 @@ Please see LICENSE files in the repository root for full details.
* @alpha Subject to change.
*/
export interface RoomViewProps {
/*
/**
* If true, the room header will be hidden.
*/
hideHeader?: boolean;
/*
/**
* If true, the message composer will be hidden.
*/
hideComposer?: boolean;
/*
/**
* If true, the right panel will be hidden.
*/
hideRightPanel?: boolean;
/**
* If true, the pinned message banner will be hidden.
*/
hidePinnedMessageBanner?: boolean;
}
/**