Skip to content

Commit 10be90e

Browse files
authored
Merge pull request #131 from element-hq/florianduros/room-hide-right-panel
EW module APi: add `hideRightPanel` props to `RoomViewProps`
2 parents b48fb00 + 121e500 commit 10be90e

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

packages/element-web-module-api/element-web-module-api.api.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,8 @@ export interface RoomViewProps {
358358
hideComposer?: boolean;
359359
// (undocumented)
360360
hideHeader?: boolean;
361+
// (undocumented)
362+
hideRightPanel?: boolean;
361363
}
362364

363365
// @alpha @deprecated (undocumented)

packages/element-web-module-api/src/api/builtins.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ export interface RoomViewProps {
1818
* If true, the message composer will be hidden.
1919
*/
2020
hideComposer?: boolean;
21+
/*
22+
* If true, the right panel will be hidden.
23+
*/
24+
hideRightPanel?: boolean;
2125
}
2226

2327
/**

0 commit comments

Comments
 (0)