mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-12 10:02:30 +00:00
* feat(settings): setting dialog - Move device selection, profile edit, language select, moderator options, and server auth into one modal with tabs. - Remove side panel profile and settings and logic used to update them. - Pipe server auth status into redux to display in the settings dialog. - Change filmstrip only device selection popup to use the new stateless settings dialog component. * squash: do not show profile tab if not guest * squash: profile button not clickable if no profile to show * squash: nits * ref: Settings dialog.
10 lines
446 B
JavaScript
10 lines
446 B
JavaScript
// @flow
|
|
|
|
export { default as BottomSheet } from './BottomSheet';
|
|
export { default as DialogContainer } from './DialogContainer';
|
|
export { default as Dialog } from './Dialog';
|
|
export { default as StatelessDialog } from './StatelessDialog';
|
|
export { default as DialogWithTabs } from './DialogWithTabs';
|
|
export { default as AbstractDialogTab } from './AbstractDialogTab';
|
|
export type { Props as AbstractDialogTabProps } from './AbstractDialogTab';
|