fcr-ui-scene 3.5.0 → 3.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/installer/icons/icon.png +0 -0
- package/lib/base.js +3 -0
- package/lib/creator.d.ts +14 -0
- package/lib/creator.js +239 -14
- package/lib/electron/app.js +2 -21
- package/lib/electron/bootstrap-dev.js +2 -0
- package/lib/electron/bootstrap-sdk.js +138 -7
- package/lib/electron/injections.d.ts +19 -7
- package/lib/electron/injections.js +211 -77
- package/lib/electron/ipc/ipc.d.ts +26 -0
- package/lib/electron/ipc/ipc.js +137 -0
- package/lib/electron/ipc/type.d.ts +11 -0
- package/lib/electron/ipc/type.js +19 -0
- package/lib/electron/logger.js +1 -1
- package/lib/electron/main.js +1 -1
- package/lib/electron/plugins/meeting-state.d.ts +1 -0
- package/lib/electron/plugins/meeting-state.js +3 -3
- package/lib/electron/plugins/screenshot.js +2 -2
- package/lib/electron/preload.js +67 -5
- package/lib/electron/tools.js +4 -0
- package/lib/electron/window.js +2 -2
- package/lib/global.css +21 -0
- package/lib/modules/action-bar/components/apps/app-item/index.js +2 -0
- package/lib/modules/action-bar/components/apps/app-list.js +5 -2
- package/lib/modules/action-bar/components/apps/index.js +1 -0
- package/lib/modules/action-bar/components/apps/useAppItemOptions.js +1 -0
- package/lib/modules/action-bar/components/apps/useWidgetList.js +2 -3
- package/lib/modules/action-bar/components/collapse/index.js +4 -0
- package/lib/modules/action-bar/components/item/index.d.ts +2 -0
- package/lib/modules/action-bar/components/item/index.js +6 -2
- package/lib/modules/action-bar/components/leave/index.js +3 -0
- package/lib/modules/action-bar/components/more/index.js +1 -0
- package/lib/modules/action-bar/components/more/poppover-content.js +4 -0
- package/lib/modules/action-bar/components/notification-bar/components/interpreter/index.js +1 -2
- package/lib/modules/action-bar/components/notification-bar/index.js +2 -0
- package/lib/modules/action-bar/components/record/index.js +43 -106
- package/lib/modules/action-bar/components/record/popover.d.ts +4 -0
- package/lib/modules/action-bar/components/record/popover.js +57 -0
- package/lib/modules/action-bar/components/record/stop-record-dialog.js +1 -0
- package/lib/modules/action-bar/components/screen-share/index.js +15 -3
- package/lib/modules/action-bar/components/screen-share/submenu.js +4 -2
- package/lib/modules/action-bar/components/security/index.js +2 -1
- package/lib/modules/action-bar/components/smaller/index.js +1 -1
- package/lib/modules/action-bar/components/trigger-output-language/index.js +22 -24
- package/lib/modules/action-bar/components/trigger-subscribe-language/index.js +5 -1
- package/lib/modules/action-bar/index.css +3 -2
- package/lib/modules/action-bar/index.js +2 -1
- package/lib/modules/action-bar/store.d.ts +5 -0
- package/lib/modules/action-bar/store.js +34 -12
- package/lib/modules/action-bar/types.d.ts +1 -0
- package/lib/modules/audio-stream/index.js +3 -0
- package/lib/modules/chat/chat-room-store.js +5 -1
- package/lib/modules/chat/components/chat-bar/index.d.ts +1 -1
- package/lib/modules/chat/components/chat-bar/index.js +7 -3
- package/lib/modules/chat/components/chat-select/index.js +1 -0
- package/lib/modules/chat/components/chat-select/select-item/index.js +6 -3
- package/lib/modules/chat/components/message-list/index.js +2 -2
- package/lib/modules/chat/components/message-list/message-item/index.d.ts +0 -1
- package/lib/modules/chat/components/message-list/message-item/index.js +11 -10
- package/lib/modules/chat/index.css +24 -0
- package/lib/modules/chat/store.js +1 -0
- package/lib/modules/chat/view.js +17 -3
- package/lib/modules/components/device-control/components/audio-menu/index.js +1 -2
- package/lib/modules/components/device-control/components/carmera/index.js +4 -5
- package/lib/modules/components/device-control/components/microphone/index.js +4 -5
- package/lib/modules/components/device-control/components/video-menu/index.js +1 -2
- package/lib/modules/components/device-control/index.css +6 -3
- package/lib/modules/components/device-control/store.js +1 -0
- package/lib/modules/components/leave-meeting/components/assign-host.js +26 -4
- package/lib/modules/components/leave-meeting/components/index.css +35 -0
- package/lib/modules/components/leave-meeting/index.js +1 -0
- package/lib/modules/components/leave-meeting/store.js +27 -67
- package/lib/modules/components/member-window/components/member-actions/components/audio-control.js +3 -2
- package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.js +1 -1
- package/lib/modules/components/member-window/components/member-actions/components/icon-status.js +10 -9
- package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +2 -2
- package/lib/modules/components/member-window/components/member-actions/components/user-info.js +2 -1
- package/lib/modules/components/member-window/components/member-actions/index.js +3 -2
- package/lib/modules/components/member-window/components/video-player/components/remote-video-player.js +3 -14
- package/lib/modules/components/member-window/components/video-player/index.js +2 -0
- package/lib/modules/components/member-window/index.css +18 -7
- package/lib/modules/components/member-window/types.d.ts +1 -1
- package/lib/modules/components/security-menu/index.css +2 -2
- package/lib/modules/components/security-menu/index.js +84 -29
- package/lib/modules/components/tab-frame/index.css +1 -1
- package/lib/modules/components/tab-frame/index.js +4 -0
- package/lib/modules/connection-gateway/components/phone/components/callinfo/index.js +1 -2
- package/lib/modules/connection-gateway/components/phone/index.js +1 -2
- package/lib/modules/connection-gateway/store.js +4 -0
- package/lib/modules/control-bar/components/meeting-details/index.css +1 -1
- package/lib/modules/control-bar/components/meeting-details/index.js +16 -10
- package/lib/modules/control-bar/components/more-actions/index.js +5 -21
- package/lib/modules/control-bar/components/share-state-nav/index.js +4 -20
- package/lib/modules/control-bar/index.d.ts +2 -0
- package/lib/modules/control-bar/index.js +5 -1
- package/lib/modules/control-bar/store.d.ts +11 -2
- package/lib/modules/control-bar/store.js +104 -95
- package/lib/modules/control-bar/view.js +4 -7
- package/lib/modules/device-pretest/audio-preview/speaker-detection.js +1 -1
- package/lib/modules/device-pretest/settings/beauty.js +1 -2
- package/lib/modules/device-pretest/settings/virtual-background-setting.js +1 -2
- package/lib/modules/device-pretest/store.js +2 -0
- package/lib/modules/dialog/components/chat/electron.d.ts +1 -3
- package/lib/modules/dialog/components/chat/index.js +24 -17
- package/lib/modules/dialog/components/confirm-leave-meeting/index.d.ts +6 -0
- package/lib/modules/dialog/components/confirm-leave-meeting/index.js +86 -0
- package/lib/modules/dialog/components/control-bar/index.d.ts +2 -3
- package/lib/modules/dialog/components/control-bar/index.js +35 -48
- package/lib/modules/dialog/components/dialog-container/component/body.d.ts +1 -0
- package/lib/modules/dialog/components/dialog-container/component/body.js +6 -2
- package/lib/modules/dialog/components/dialog-container/index.css +2 -1
- package/lib/modules/dialog/components/dialog-container/index.d.ts +1 -0
- package/lib/modules/dialog/components/dialog-container/index.js +3 -1
- package/lib/modules/dialog/components/participant/index.d.ts +0 -1
- package/lib/modules/dialog/components/participant/index.js +15 -24
- package/lib/modules/dialog/components/pre-setting/electron.js +51 -0
- package/lib/modules/dialog/components/pre-setting/index.css +26 -0
- package/lib/modules/dialog/components/pre-setting/index.d.ts +6 -0
- package/lib/modules/dialog/components/pre-setting/index.js +38 -0
- package/lib/modules/dialog/components/pre-setting-container/component/body.d.ts +8 -0
- package/lib/modules/dialog/components/pre-setting-container/component/body.js +80 -0
- package/lib/modules/dialog/components/pre-setting-container/index.css +82 -0
- package/lib/modules/dialog/components/pre-setting-container/index.d.ts +18 -0
- package/lib/modules/dialog/components/pre-setting-container/index.js +117 -0
- package/lib/modules/dialog/components/rename/index.d.ts +4 -0
- package/lib/modules/dialog/components/rename/index.js +72 -0
- package/lib/modules/dialog/components/system-preference/index.js +5 -2
- package/lib/modules/dialog/components/video-window/index.js +20 -16
- package/lib/modules/dialog/components/widget/electron.d.ts +2 -1
- package/lib/modules/dialog/components/widget/electron.js +3 -2
- package/lib/modules/dialog/components/widget/index.d.ts +2 -1
- package/lib/modules/dialog/components/widget/index.js +4 -6
- package/lib/modules/dialog/dialogs.d.ts +1 -0
- package/lib/modules/dialog/dialogs.js +3 -2
- package/lib/modules/dialog/hooks/useElectron.d.ts +2 -0
- package/lib/modules/dialog/hooks/useElectron.js +42 -38
- package/lib/modules/dialog/index.d.ts +2 -0
- package/lib/modules/dialog/index.js +4 -1
- package/lib/modules/dialog/store.d.ts +8 -3
- package/lib/modules/dialog/store.js +42 -26
- package/lib/modules/dialog/type.d.ts +1 -0
- package/lib/modules/dialog/view.js +3 -3
- package/lib/modules/event-confirm/index.d.ts +2 -0
- package/lib/modules/event-confirm/index.js +2 -1
- package/lib/modules/event-confirm/store.d.ts +9 -1
- package/lib/modules/event-confirm/store.js +97 -8
- package/lib/modules/event-confirm/view.js +60 -48
- package/lib/modules/{sound-effect → event-sound}/index.d.ts +3 -2
- package/lib/modules/{sound-effect → event-sound}/index.js +10 -5
- package/lib/modules/event-toast/store.js +4 -0
- package/lib/modules/event-toast/view.js +1 -2
- package/lib/modules/interpreter/dialog-content/index.js +4 -1
- package/lib/modules/interpreter/index.d.ts +2 -0
- package/lib/modules/interpreter/index.js +2 -1
- package/lib/modules/interpreter/interpreter-list/index.js +2 -2
- package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/index.js +8 -2
- package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/useLanguageConfig/index.js +2 -0
- package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/index.js +4 -0
- package/lib/modules/interpreter/store.d.ts +2 -2
- package/lib/modules/interpreter/store.js +35 -24
- package/lib/modules/interpreter/type.d.ts +2 -0
- package/lib/modules/invite/components/pstn-invite.js +3 -9
- package/lib/modules/invite/components/voip-invite.css +26 -0
- package/lib/modules/invite/components/voip-invite.d.ts +1 -0
- package/lib/modules/invite/components/voip-invite.js +8 -11
- package/lib/modules/invite/enums.js +0 -1
- package/lib/modules/invite/index.css +16 -3
- package/lib/modules/invite/index.d.ts +2 -1
- package/lib/modules/invite/index.js +2 -1
- package/lib/modules/invite/store.d.ts +5 -1
- package/lib/modules/invite/store.js +9 -2
- package/lib/modules/layout/components/Carousel.d.ts +1 -1
- package/lib/modules/layout/components/Carousel.js +16 -119
- package/lib/modules/layout/components/CommonVideoRenderer.d.ts +13 -0
- package/lib/modules/layout/components/CommonVideoRenderer.js +214 -0
- package/lib/modules/layout/components/Gallery.d.ts +1 -0
- package/lib/modules/layout/components/Gallery.js +63 -206
- package/lib/modules/layout/components/index.css +17 -34
- package/lib/modules/layout/components/index.js +1 -0
- package/lib/modules/layout/index.d.ts +2 -0
- package/lib/modules/layout/index.js +2 -1
- package/lib/modules/layout/store.d.ts +5 -2
- package/lib/modules/layout/store.js +51 -39
- package/lib/modules/layout/type.d.ts +4 -0
- package/lib/modules/layout/type.js +6 -3
- package/lib/modules/live-streaming/store.d.ts +1 -0
- package/lib/modules/live-streaming/store.js +20 -8
- package/lib/modules/notification/interpreter-status/index.js +1 -2
- package/lib/modules/offscreen-pulling/index.js +1 -0
- package/lib/modules/participant/components/confirm-input/index.d.ts +4 -4
- package/lib/modules/participant/components/confirm-input/index.js +74 -6
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.css +27 -3
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.js +3 -0
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.css +4 -0
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.js +3 -2
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.css +4 -3
- package/lib/modules/participant/components/participants/components/participants/components/attendee/index.js +3 -0
- package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.css +9 -1
- package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.js +3 -1
- package/lib/modules/participant/components/participants/components/participants/components/user-row/index.js +2 -0
- package/lib/modules/participant/components/participants/components/participants/index.css +1 -0
- package/lib/modules/participant/components/participants/components/participants/index.js +2 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.js +1 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +18 -0
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.js +14 -5
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.js +1 -8
- package/lib/modules/participant/index.css +6 -0
- package/lib/modules/participant/index.d.ts +1 -0
- package/lib/modules/participant/index.js +11 -0
- package/lib/modules/participant/member-list-data-source.js +3 -0
- package/lib/modules/participant/store.d.ts +6 -1
- package/lib/modules/participant/store.js +139 -106
- package/lib/modules/pc-audio-connect/store.js +2 -1
- package/lib/modules/phone-audio-connect/components/callinfo/index.js +1 -2
- package/lib/modules/phone-audio-connect/index.d.ts +2 -0
- package/lib/modules/phone-audio-connect/index.js +2 -1
- package/lib/modules/phone-audio-connect/store.d.ts +4 -1
- package/lib/modules/phone-audio-connect/store.js +7 -2
- package/lib/modules/phone-audio-connect/view.js +1 -2
- package/lib/modules/setting/audio-settings/audio-settings.js +71 -49
- package/lib/modules/setting/audio-settings/index.css +23 -6
- package/lib/modules/setting/general-settings/general-settings.d.ts +1 -2
- package/lib/modules/setting/general-settings/general-settings.js +111 -37
- package/lib/modules/setting/general-settings/index.css +15 -0
- package/lib/modules/setting/index.d.ts +4 -1
- package/lib/modules/setting/index.js +7 -4
- package/lib/modules/setting/minutes-settings/minutes-settings.js +1 -2
- package/lib/modules/setting/state/index.js +5 -1
- package/lib/modules/setting/store.d.ts +24 -11
- package/lib/modules/setting/store.js +211 -146
- package/lib/modules/setting/translate-settings/translate-settings.js +1 -1
- package/lib/modules/setting/video-settings/index.css +13 -2
- package/lib/modules/setting/video-settings/video-settings-basic.js +18 -27
- package/lib/modules/setting/video-settings/video-settings.d.ts +0 -2
- package/lib/modules/setting/video-settings/video-settings.js +3 -2
- package/lib/modules/setting/view.d.ts +11 -2
- package/lib/modules/setting/view.js +93 -71
- package/lib/modules/share-screen/components/selection/index.js +7 -3
- package/lib/modules/share-screen/index.d.ts +4 -1
- package/lib/modules/share-screen/index.js +3 -1
- package/lib/modules/share-screen/store.d.ts +15 -5
- package/lib/modules/share-screen/store.js +127 -71
- package/lib/modules/share-screen/view.js +1 -1
- package/lib/modules/state-bar/index.css +4 -2
- package/lib/modules/state-bar/index.d.ts +2 -0
- package/lib/modules/state-bar/index.js +2 -1
- package/lib/modules/state-bar/layout-config.js +2 -2
- package/lib/modules/state-bar/live-streaming-state.js +2 -0
- package/lib/modules/state-bar/meeting-detail.css +10 -1
- package/lib/modules/state-bar/meeting-details.js +43 -26
- package/lib/modules/state-bar/meeting-network-state.css +8 -0
- package/lib/modules/state-bar/meeting-time.js +9 -20
- package/lib/modules/state-bar/store.d.ts +6 -2
- package/lib/modules/state-bar/store.js +12 -4
- package/lib/modules/state-bar/view.js +17 -6
- package/lib/modules/video-window/components/members/index.js +1 -5
- package/lib/modules/video-window/components/topControl/index.js +2 -0
- package/lib/modules/video-window/store.js +4 -0
- package/lib/modules/waiting-room-layout/index.css +13 -0
- package/lib/modules/waiting-room-layout/index.d.ts +2 -1
- package/lib/modules/waiting-room-layout/index.js +2 -1
- package/lib/modules/waiting-room-layout/store.d.ts +12 -1
- package/lib/modules/waiting-room-layout/store.js +42 -6
- package/lib/modules/waiting-room-layout/view.js +22 -5
- package/lib/modules/whiteboard/components/control-bar/index.css +1 -1
- package/lib/modules/whiteboard/components/switch-theme/index.js +2 -0
- package/lib/modules/whiteboard/components/switch-theme/item.js +1 -2
- package/lib/modules/whiteboard/components/switch-theme/libs.d.ts +1 -1
- package/lib/modules/whiteboard/components/switch-theme/libs.js +3 -1
- package/lib/modules/whiteboard/components/toolbar/ style.css +1 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/panel.js +2 -2
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/components/picker.js +1 -0
- package/lib/modules/whiteboard/components/toolbar/components/color-picker/index.js +1 -2
- package/lib/modules/whiteboard/components/toolbar/components/eraser-picker.js +3 -14
- package/lib/modules/whiteboard/components/toolbar/components/extra-tool-picker.js +3 -3
- package/lib/modules/whiteboard/components/toolbar/components/history.js +3 -3
- package/lib/modules/whiteboard/components/toolbar/components/move-handle.js +2 -0
- package/lib/modules/whiteboard/components/toolbar/components/pen-picker.js +3 -4
- package/lib/modules/whiteboard/components/toolbar/components/screen-capture-picker.js +2 -2
- package/lib/modules/whiteboard/components/toolbar/components/shape-picker.js +4 -5
- package/lib/modules/whiteboard/components/toolbar/hooks/index.js +8 -6
- package/lib/modules/whiteboard/components/toolbar/index.js +10 -111
- package/lib/modules/whiteboard/components/toolbar/store.d.ts +18 -0
- package/lib/modules/whiteboard/components/toolbar/store.js +276 -83
- package/lib/modules/whiteboard/context.d.ts +1 -2
- package/lib/modules/whiteboard/index.d.ts +1 -14
- package/lib/modules/whiteboard/index.js +135 -426
- package/lib/modules/whiteboard/view.js +12 -10
- package/lib/modules/widget/sdk.js +2 -1
- package/lib/object-manager.d.ts +8 -0
- package/lib/object-manager.js +75 -0
- package/lib/plugins/browser-runtime-plugin.js +19 -14
- package/lib/providers/ability-provider.d.ts +8 -0
- package/lib/providers/ability-provider.js +14 -0
- package/lib/providers/device-privilege-provider.d.ts +1 -0
- package/lib/providers/device-privilege-provider.js +55 -75
- package/lib/providers/device-provider.d.ts +18 -8
- package/lib/providers/device-provider.js +402 -209
- package/lib/providers/device-stream-provider.js +3 -4
- package/lib/providers/dialog-provider.d.ts +1 -0
- package/lib/providers/dialog-provider.js +4 -16
- package/lib/providers/event-provider.js +47 -2
- package/lib/providers/interpreter-provider.d.ts +4 -0
- package/lib/providers/interpreter-provider.js +169 -137
- package/lib/providers/message-provider.js +46 -2
- package/lib/providers/phone-audio-provider.js +3 -0
- package/lib/providers/privilege-provider.d.ts +33 -0
- package/lib/providers/privilege-provider.js +124 -45
- package/lib/providers/renderer-provider.js +1 -0
- package/lib/providers/room-provider.d.ts +12 -10
- package/lib/providers/room-provider.js +164 -261
- package/lib/providers/screen-share-provider.d.ts +4 -0
- package/lib/providers/screen-share-provider.js +6 -6
- package/lib/providers/widget-provider.js +7 -4
- package/lib/runtime.d.ts +20 -8
- package/lib/scenes/main-scene.d.ts +2 -0
- package/lib/scenes/main-scene.js +97 -37
- package/lib/scenes/waiting-scene.js +16 -13
- package/lib/schema.d.ts +55 -32
- package/lib/schema.js +23 -9
- package/lib/shared-data-source/chat-data.js +2 -0
- package/lib/shared-data-source/config.d.ts +6 -2
- package/lib/shared-data-source/config.js +81 -10
- package/lib/shared-data-source/interpreter.js +2 -0
- package/lib/shared-data-source/layout-data.js +4 -1
- package/lib/shared-data-source/member-data.d.ts +16 -20
- package/lib/shared-data-source/member-data.js +125 -126
- package/lib/shared-data-source/pin-data.js +1 -0
- package/lib/shared-data-source/screen-share-data-source.d.ts +37 -0
- package/lib/{modules/components/toast/store.js → shared-data-source/screen-share-data-source.js} +69 -84
- package/lib/shared-data-source/security-data.d.ts +1 -0
- package/lib/shared-data-source/security-data.js +4 -5
- package/lib/shared-data-source/setting.d.ts +1 -0
- package/lib/shared-data-source/setting.js +35 -17
- package/lib/shared-data-source/video-window.d.ts +3 -3
- package/lib/shared-data-source/video-window.js +59 -38
- package/lib/shared-data-source/waiting-room.js +2 -0
- package/lib/translations/enUS.d.ts +48 -1
- package/lib/translations/enUS.js +65 -17
- package/lib/translations/zhCN.d.ts +49 -1
- package/lib/translations/zhCN.js +54 -5
- package/lib/type.d.ts +40 -20
- package/lib/type.js +14 -15
- package/lib/ui-manager.d.ts +11 -9
- package/lib/ui-manager.js +118 -29
- package/lib/ui-scene.d.ts +7 -4
- package/lib/ui-scene.js +112 -128
- package/lib/utilities/constant.d.ts +5 -2
- package/lib/utilities/constant.js +3 -7
- package/lib/utilities/copyText.js +15 -11
- package/lib/utilities/default-config.d.ts +2 -0
- package/lib/utilities/default-config.js +11 -5
- package/lib/utilities/i18n-common-data.d.ts +2 -0
- package/lib/utilities/i18n-common-data.js +15 -0
- package/lib/utilities/logger.d.ts +0 -1
- package/lib/utilities/logger.js +4 -4
- package/lib/utilities/privilege.js +2 -0
- package/lib/utilities/renderer-event.js +2 -0
- package/lib/utilities/renderer.d.ts +1 -9
- package/lib/utilities/renderer.js +3 -68
- package/lib/utilities/screen.js +3 -1
- package/lib/utilities/setting-config-storage.d.ts +6 -1
- package/lib/utilities/setting-config-storage.js +23 -4
- package/lib/utilities/tools.d.ts +7 -6
- package/lib/utilities/tools.js +58 -43
- package/lib/utilities/ui-resources.d.ts +6 -0
- package/lib/utilities/ui-resources.js +47 -9
- package/lib/waiting-room-control-manager.d.ts +4 -4
- package/lib/waiting-room-control-manager.js +31 -9
- package/package.json +6 -6
- package/public/assets/browser/images/default1.jpg +0 -0
- package/public/assets/browser/images/default2.jpg +0 -0
- package/public/assets/browser/images/default3.jpg +0 -0
- package/public/assets/browser/images/default4.jpg +0 -0
- package/public/assets/browser/images/default5.jpg +0 -0
- package/public/assets/browser/images/default6.jpg +0 -0
- package/public/assets/browser/images/default7.jpg +0 -0
- package/public/assets/browser/sound_effects/pretest.mp3 +0 -0
- package/public/assets/browser/sound_effects/recording_started.mp3 +0 -0
- package/public/assets/browser/sound_effects/remote_user_joined.mp3 +0 -0
- package/public/assets/browser/sound_effects/speaker_test.mp3 +0 -0
- package/public/assets/browser/videos/default8.mp4 +0 -0
- package/public/assets/browser/videos/default9.mp4 +0 -0
- package/public/assets/electron/images/default1.jpg +0 -0
- package/public/assets/electron/images/default2.jpg +0 -0
- package/public/assets/electron/sound_effects/pretest.mp3 +0 -0
- package/public/assets/electron/videos/default8.mp4 +0 -0
- package/public/index.html +104 -83
- package/lib/common/device-store.d.ts +0 -149
- package/lib/common/device-store.js +0 -1551
- package/lib/common/device-stream-store.d.ts +0 -51
- package/lib/common/device-stream-store.js +0 -546
- package/lib/common/event-store.d.ts +0 -135
- package/lib/common/event-store.js +0 -280
- package/lib/common/room-store.d.ts +0 -58
- package/lib/common/room-store.js +0 -402
- package/lib/common/security-store.d.ts +0 -131
- package/lib/common/security-store.js +0 -957
- package/lib/fragments/base.d.ts +0 -10
- package/lib/fragments/base.js +0 -44
- package/lib/fragments/control-bar/cloud-recording-buttons.d.ts +0 -1
- package/lib/fragments/control-bar/cloud-recording-buttons.js +0 -67
- package/lib/fragments/control-bar/context.d.ts +0 -2
- package/lib/fragments/control-bar/context.js +0 -9
- package/lib/fragments/control-bar/control-bar-store.d.ts +0 -196
- package/lib/fragments/control-bar/control-bar-store.js +0 -1678
- package/lib/fragments/control-bar/device/index.d.ts +0 -31
- package/lib/fragments/control-bar/device/index.js +0 -212
- package/lib/fragments/control-bar/index.css +0 -281
- package/lib/fragments/control-bar/index.d.ts +0 -26
- package/lib/fragments/control-bar/index.js +0 -257
- package/lib/fragments/control-bar/meeting-details/meeting-detail.css +0 -128
- package/lib/fragments/control-bar/meeting-details/meeting-details-portal.d.ts +0 -3
- package/lib/fragments/control-bar/meeting-details/meeting-details-portal.js +0 -60
- package/lib/fragments/control-bar/meeting-details/meeting-details.d.ts +0 -2
- package/lib/fragments/control-bar/meeting-details/meeting-details.js +0 -280
- package/lib/fragments/control-bar/more-actions/index.css +0 -72
- package/lib/fragments/control-bar/more-actions/index.d.ts +0 -7
- package/lib/fragments/control-bar/more-actions/index.js +0 -299
- package/lib/fragments/control-bar/security-content/index.css +0 -99
- package/lib/fragments/control-bar/security-content/index.d.ts +0 -2
- package/lib/fragments/control-bar/security-content/index.js +0 -234
- package/lib/fragments/control-bar/share-state-nav/index.css +0 -70
- package/lib/fragments/control-bar/share-state-nav/index.d.ts +0 -10
- package/lib/fragments/control-bar/share-state-nav/index.js +0 -134
- package/lib/fragments/control-bar/stop-live-streaming/index.d.ts +0 -1
- package/lib/fragments/control-bar/stop-live-streaming/index.js +0 -82
- package/lib/fragments/control-bar/transfer-position-icon/index.d.ts +0 -11
- package/lib/fragments/control-bar/transfer-position-icon/index.js +0 -46
- package/lib/fragments/control-bar/view.d.ts +0 -1
- package/lib/fragments/control-bar/view.js +0 -336
- package/lib/fragments/live-streaming/context.d.ts +0 -2
- package/lib/fragments/live-streaming/context.js +0 -9
- package/lib/fragments/live-streaming/index.css +0 -11
- package/lib/fragments/live-streaming/index.d.ts +0 -11
- package/lib/fragments/live-streaming/index.js +0 -79
- package/lib/fragments/live-streaming/store.d.ts +0 -21
- package/lib/fragments/live-streaming/store.js +0 -238
- package/lib/fragments/live-streaming/view.d.ts +0 -2
- package/lib/fragments/live-streaming/view.js +0 -46
- package/lib/fragments/share-screen-selection/context.d.ts +0 -2
- package/lib/fragments/share-screen-selection/context.js +0 -9
- package/lib/fragments/share-screen-selection/index.css +0 -66
- package/lib/fragments/share-screen-selection/index.d.ts +0 -9
- package/lib/fragments/share-screen-selection/index.js +0 -94
- package/lib/fragments/share-screen-selection/open-mic-tips.d.ts +0 -9
- package/lib/fragments/share-screen-selection/open-mic-tips.js +0 -55
- package/lib/fragments/share-screen-selection/selection-store.d.ts +0 -35
- package/lib/fragments/share-screen-selection/selection-store.js +0 -352
- package/lib/fragments/share-screen-selection/tips.css +0 -33
- package/lib/fragments/share-screen-selection/view.d.ts +0 -9
- package/lib/fragments/share-screen-selection/view.js +0 -262
- package/lib/fragments/toolbar/components/color-picker/components/color.d.ts +0 -5
- package/lib/fragments/toolbar/components/color-picker/components/color.js +0 -56
- package/lib/fragments/toolbar/components/color-picker/components/panel.d.ts +0 -1
- package/lib/fragments/toolbar/components/color-picker/components/panel.js +0 -118
- package/lib/fragments/toolbar/components/color-picker/components/picker.d.ts +0 -1
- package/lib/fragments/toolbar/components/color-picker/components/picker.js +0 -77
- package/lib/fragments/toolbar/components/color-picker/index.d.ts +0 -2
- package/lib/fragments/toolbar/components/color-picker/index.js +0 -57
- package/lib/fragments/toolbar/components/color-picker.d.ts +0 -2
- package/lib/fragments/toolbar/components/color-picker.js +0 -129
- package/lib/fragments/toolbar/components/eraser-picker.d.ts +0 -4
- package/lib/fragments/toolbar/components/eraser-picker.js +0 -75
- package/lib/fragments/toolbar/components/extra-tool-picker.d.ts +0 -1
- package/lib/fragments/toolbar/components/extra-tool-picker.js +0 -64
- package/lib/fragments/toolbar/components/fold-icon.d.ts +0 -2
- package/lib/fragments/toolbar/components/fold-icon.js +0 -41
- package/lib/fragments/toolbar/components/history.d.ts +0 -2
- package/lib/fragments/toolbar/components/history.js +0 -46
- package/lib/fragments/toolbar/components/pen-picker.d.ts +0 -4
- package/lib/fragments/toolbar/components/pen-picker.js +0 -134
- package/lib/fragments/toolbar/components/screen-capture-picker.d.ts +0 -4
- package/lib/fragments/toolbar/components/screen-capture-picker.js +0 -86
- package/lib/fragments/toolbar/components/shape-picker.d.ts +0 -4
- package/lib/fragments/toolbar/components/shape-picker.js +0 -148
- package/lib/fragments/toolbar/components/transfer-position-icon/index.d.ts +0 -11
- package/lib/fragments/toolbar/components/transfer-position-icon/index.js +0 -46
- package/lib/fragments/toolbar/components/wrapper.d.ts +0 -1
- package/lib/fragments/toolbar/components/wrapper.js +0 -138
- package/lib/fragments/toolbar/hooks.d.ts +0 -16
- package/lib/fragments/toolbar/hooks.js +0 -256
- package/lib/fragments/toolbar/index.d.ts +0 -12
- package/lib/fragments/toolbar/index.js +0 -80
- package/lib/fragments/toolbar/store.d.ts +0 -62
- package/lib/fragments/toolbar/store.js +0 -297
- package/lib/fragments/toolbar/style.css +0 -347
- package/lib/fragments/toolbar/view.d.ts +0 -1
- package/lib/fragments/toolbar/view.js +0 -36
- package/lib/hooks/meeting-time.d.ts +0 -15
- package/lib/hooks/meeting-time.js +0 -92
- package/lib/login-confirm-dialog.d.ts +0 -13
- package/lib/login-confirm-dialog.js +0 -85
- package/lib/modules/action-bar/action-bar-collapes-items.d.ts +0 -20
- package/lib/modules/action-bar/action-bar-collapes-items.js +0 -225
- package/lib/modules/action-bar/apps/app-item/index.css +0 -35
- package/lib/modules/action-bar/apps/app-item/index.d.ts +0 -12
- package/lib/modules/action-bar/apps/app-item/index.js +0 -61
- package/lib/modules/action-bar/apps/appitems.d.ts +0 -5
- package/lib/modules/action-bar/apps/appitems.js +0 -45
- package/lib/modules/action-bar/apps/index.css +0 -8
- package/lib/modules/action-bar/apps/index.d.ts +0 -4
- package/lib/modules/action-bar/apps/index.js +0 -57
- package/lib/modules/action-bar/apps/useAppItemOptions.d.ts +0 -9
- package/lib/modules/action-bar/apps/useAppItemOptions.js +0 -29
- package/lib/modules/action-bar/apps/useBeautyBackground.d.ts +0 -10
- package/lib/modules/action-bar/apps/useBeautyBackground.js +0 -34
- package/lib/modules/action-bar/apps/useInterpreter.d.ts +0 -14
- package/lib/modules/action-bar/apps/useInterpreter.js +0 -35
- package/lib/modules/action-bar/apps/useLiveStreaming.d.ts +0 -16
- package/lib/modules/action-bar/apps/useLiveStreaming.js +0 -41
- package/lib/modules/action-bar/board/index.d.ts +0 -4
- package/lib/modules/action-bar/board/index.js +0 -34
- package/lib/modules/action-bar/breakout-room/index.d.ts +0 -4
- package/lib/modules/action-bar/breakout-room/index.js +0 -32
- package/lib/modules/action-bar/chat/index.css +0 -80
- package/lib/modules/action-bar/chat/index.d.ts +0 -5
- package/lib/modules/action-bar/chat/index.js +0 -152
- package/lib/modules/action-bar/components/apps/appitems.d.ts +0 -3
- package/lib/modules/action-bar/components/apps/appitems.js +0 -42
- package/lib/modules/action-bar/components/leave/assign-host.d.ts +0 -3
- package/lib/modules/action-bar/components/leave/assign-host.js +0 -64
- package/lib/modules/action-bar/components/leave/index.css +0 -126
- package/lib/modules/action-bar/components/leave/leave-meeting.d.ts +0 -3
- package/lib/modules/action-bar/components/leave/leave-meeting.js +0 -153
- package/lib/modules/action-bar/context.d.ts +0 -2
- package/lib/modules/action-bar/context.js +0 -9
- package/lib/modules/action-bar/device/index.css +0 -162
- package/lib/modules/action-bar/device/index.d.ts +0 -8
- package/lib/modules/action-bar/device/index.js +0 -613
- package/lib/modules/action-bar/interpreter/index.d.ts +0 -6
- package/lib/modules/action-bar/interpreter/index.js +0 -41
- package/lib/modules/action-bar/item-placement.d.ts +0 -7
- package/lib/modules/action-bar/item-placement.js +0 -18
- package/lib/modules/action-bar/item.d.ts +0 -27
- package/lib/modules/action-bar/item.js +0 -159
- package/lib/modules/action-bar/leave/assign-host.d.ts +0 -10
- package/lib/modules/action-bar/leave/assign-host.js +0 -64
- package/lib/modules/action-bar/leave/index.css +0 -126
- package/lib/modules/action-bar/leave/index.d.ts +0 -3
- package/lib/modules/action-bar/leave/index.js +0 -165
- package/lib/modules/action-bar/leave/leave-meeting.d.ts +0 -18
- package/lib/modules/action-bar/leave/leave-meeting.js +0 -153
- package/lib/modules/action-bar/live-streaming/index.d.ts +0 -4
- package/lib/modules/action-bar/live-streaming/index.js +0 -39
- package/lib/modules/action-bar/more/index.css +0 -114
- package/lib/modules/action-bar/more/index.d.ts +0 -5
- package/lib/modules/action-bar/more/index.js +0 -80
- package/lib/modules/action-bar/more/poppover-content.d.ts +0 -8
- package/lib/modules/action-bar/more/poppover-content.js +0 -400
- package/lib/modules/action-bar/participants/index.css +0 -21
- package/lib/modules/action-bar/participants/index.d.ts +0 -5
- package/lib/modules/action-bar/participants/index.js +0 -82
- package/lib/modules/action-bar/record/index.css +0 -39
- package/lib/modules/action-bar/record/index.d.ts +0 -5
- package/lib/modules/action-bar/record/index.js +0 -161
- package/lib/modules/action-bar/record/stop-record-dialog.d.ts +0 -5
- package/lib/modules/action-bar/record/stop-record-dialog.js +0 -48
- package/lib/modules/action-bar/respond/index.d.ts +0 -4
- package/lib/modules/action-bar/respond/index.js +0 -32
- package/lib/modules/action-bar/screen-share/index.d.ts +0 -4
- package/lib/modules/action-bar/screen-share/index.js +0 -101
- package/lib/modules/action-bar/screen-share/submenu.d.ts +0 -1
- package/lib/modules/action-bar/screen-share/submenu.js +0 -154
- package/lib/modules/action-bar/security/drop-menu.d.ts +0 -1
- package/lib/modules/action-bar/security/drop-menu.js +0 -312
- package/lib/modules/action-bar/security/index.d.ts +0 -4
- package/lib/modules/action-bar/security/index.js +0 -56
- package/lib/modules/action-bar/settings/index.d.ts +0 -4
- package/lib/modules/action-bar/settings/index.js +0 -41
- package/lib/modules/action-bar/smaller.d.ts +0 -1
- package/lib/modules/action-bar/smaller.js +0 -52
- package/lib/modules/action-bar/switch-input-language-room/fcr_translateswitch.png +0 -0
- package/lib/modules/action-bar/switch-input-language-room/index.css +0 -86
- package/lib/modules/action-bar/switch-input-language-room/index.d.ts +0 -16
- package/lib/modules/action-bar/switch-input-language-room/index.js +0 -236
- package/lib/modules/action-bar/switch-output-language-room/drop-menu.d.ts +0 -1
- package/lib/modules/action-bar/switch-output-language-room/drop-menu.js +0 -197
- package/lib/modules/action-bar/switch-output-language-room/guide-tooltip/index.css +0 -18
- package/lib/modules/action-bar/switch-output-language-room/guide-tooltip/index.d.ts +0 -14
- package/lib/modules/action-bar/switch-output-language-room/guide-tooltip/index.js +0 -72
- package/lib/modules/action-bar/switch-output-language-room/index.d.ts +0 -12
- package/lib/modules/action-bar/switch-output-language-room/index.js +0 -309
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/interpreter/index.css +0 -58
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/interpreter/index.d.ts +0 -8
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/interpreter/index.js +0 -100
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/virtual-image/index.css +0 -56
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/virtual-image/index.d.ts +0 -5
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/components/virtual-image/index.js +0 -33
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/dome.png +0 -0
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/fcr_translateswitch.png +0 -0
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/index.css +0 -74
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/index.d.ts +0 -2
- package/lib/modules/action-bar/switch-output-language-room/notification-bar/index.js +0 -99
- package/lib/modules/action-bar/type.d.ts +0 -6
- package/lib/modules/action-bar/type.js +0 -13
- package/lib/modules/chat/chat-bar/index.css +0 -80
- package/lib/modules/chat/chat-bar/index.d.ts +0 -11
- package/lib/modules/chat/chat-bar/index.js +0 -142
- package/lib/modules/chat/chat-select/index.css +0 -178
- package/lib/modules/chat/chat-select/index.d.ts +0 -12
- package/lib/modules/chat/chat-select/index.js +0 -212
- package/lib/modules/chat/chat.d.ts +0 -11
- package/lib/modules/chat/chat.js +0 -386
- package/lib/modules/chat/contex.d.ts +0 -2
- package/lib/modules/chat/contex.js +0 -9
- package/lib/modules/chat/demo-wrapper.d.ts +0 -1
- package/lib/modules/chat/demo-wrapper.js +0 -42
- package/lib/modules/chat/message-list.d.ts +0 -22
- package/lib/modules/chat/message-list.js +0 -630
- package/lib/modules/components/device-control/type.d.ts +0 -6
- package/lib/modules/components/device-control/type.js +0 -13
- package/lib/modules/components/member-window/components/member-board.d.ts +0 -2
- package/lib/modules/components/member-window/components/member-board.js +0 -63
- package/lib/modules/components/toast/index.css +0 -12
- package/lib/modules/components/toast/index.d.ts +0 -10
- package/lib/modules/components/toast/index.js +0 -66
- package/lib/modules/components/toast/store.d.ts +0 -17
- package/lib/modules/components/toast/view.d.ts +0 -2
- package/lib/modules/components/toast/view.js +0 -35
- package/lib/modules/connection-gateway/components/tabs/index.css +0 -31
- package/lib/modules/connection-gateway/components/tabs/index.d.ts +0 -4
- package/lib/modules/connection-gateway/components/tabs/index.js +0 -44
- package/lib/modules/control-bar/type.d.ts +0 -10
- package/lib/modules/control-bar/type.js +0 -18
- package/lib/modules/device-pretest/context.d.ts +0 -2
- package/lib/modules/device-pretest/context.js +0 -9
- package/lib/modules/dialog/components/confirm/electron.d.ts +0 -10
- package/lib/modules/dialog/components/confirm/electron.js +0 -54
- package/lib/modules/dialog/components/connection-gateway/index.css +0 -25
- package/lib/modules/dialog/components/operation-waiting-room/electron.d.ts +0 -5
- package/lib/modules/dialog/components/operation-waiting-room/electron.js +0 -42
- package/lib/modules/dialog/components/operation-waiting-room/index.css +0 -44
- package/lib/modules/dialog/components/operation-waiting-room/index.d.ts +0 -5
- package/lib/modules/dialog/components/operation-waiting-room/index.js +0 -156
- package/lib/modules/dialog/components/remove-admit-waiting-room/electron.d.ts +0 -12
- package/lib/modules/dialog/components/remove-admit-waiting-room/electron.js +0 -36
- package/lib/modules/dialog/components/remove-admit-waiting-room/index.css +0 -50
- package/lib/modules/dialog/components/remove-admit-waiting-room/index.d.ts +0 -5
- package/lib/modules/dialog/components/remove-admit-waiting-room/index.js +0 -90
- package/lib/modules/dialog/components/switch-language-channels/electron.js +0 -72
- package/lib/modules/dialog/components/switch-language-channels/index.css +0 -30
- package/lib/modules/dialog/components/switch-language-channels/index.d.ts +0 -4
- package/lib/modules/dialog/components/switch-language-channels/index.js +0 -63
- package/lib/modules/dialog/components/switch-language-channels/user-queue/index.css +0 -36
- package/lib/modules/dialog/components/switch-language-channels/user-queue/index.d.ts +0 -3
- package/lib/modules/dialog/components/switch-language-channels/user-queue/index.js +0 -47
- package/lib/modules/dialog/components/system-preference/bg1.png +0 -0
- package/lib/modules/dialog/components/system-preference/bg2.png +0 -0
- package/lib/modules/dialog/context.d.ts +0 -2
- package/lib/modules/dialog/context.js +0 -9
- package/lib/modules/dialog/types/index.d.ts +0 -70
- package/lib/modules/event-notification/context.d.ts +0 -2
- package/lib/modules/event-notification/context.js +0 -9
- package/lib/modules/event-notification/index.css +0 -58
- package/lib/modules/event-notification/index.d.ts +0 -13
- package/lib/modules/event-notification/index.js +0 -48
- package/lib/modules/event-notification/store.d.ts +0 -17
- package/lib/modules/event-notification/store.js +0 -133
- package/lib/modules/event-notification/view.d.ts +0 -5
- package/lib/modules/event-notification/view.js +0 -114
- package/lib/modules/event-toast/context.d.ts +0 -2
- package/lib/modules/event-toast/context.js +0 -9
- package/lib/modules/interpreter/action/edit-btn/index.css +0 -3
- package/lib/modules/interpreter/add-button/index.css +0 -4
- package/lib/modules/interpreter/add-button/index.d.ts +0 -11
- package/lib/modules/interpreter/add-button/index.js +0 -43
- package/lib/modules/interpreter/config.d.ts +0 -16
- package/lib/modules/interpreter/config.js +0 -17
- package/lib/modules/interpreter/constant.d.ts +0 -51
- package/lib/modules/interpreter/constant.js +0 -58
- package/lib/modules/interpreter/footer/components/interpreter-btn/index.d.ts +0 -5
- package/lib/modules/interpreter/footer/components/interpreter-btn/index.js +0 -53
- package/lib/modules/interpreter/footer/components/set-btn/index.d.ts +0 -5
- package/lib/modules/interpreter/footer/components/set-btn/index.js +0 -49
- package/lib/modules/interpreter/footer/components/tooltip-wrapper/index.d.ts +0 -6
- package/lib/modules/interpreter/footer/components/tooltip-wrapper/index.js +0 -30
- package/lib/modules/interpreter/index.css +0 -15
- package/lib/modules/invite/context.d.ts +0 -2
- package/lib/modules/invite/context.js +0 -9
- package/lib/modules/invite/pstn-invite.d.ts +0 -2
- package/lib/modules/invite/pstn-invite.js +0 -271
- package/lib/modules/invite/voip-invite.d.ts +0 -1
- package/lib/modules/invite/voip-invite.js +0 -293
- package/lib/modules/layout/components/Layout.d.ts +0 -2
- package/lib/modules/layout/components/Layout.js +0 -190
- package/lib/modules/layout/context.d.ts +0 -2
- package/lib/modules/layout/context.js +0 -9
- package/lib/modules/layout/member-window/index.css +0 -406
- package/lib/modules/layout/member-window/index.d.ts +0 -74
- package/lib/modules/layout/member-window/index.js +0 -881
- package/lib/modules/layout/video-window-datasource.d.ts +0 -127
- package/lib/modules/layout/video-window-datasource.js +0 -1121
- package/lib/modules/live-streaming/context.d.ts +0 -2
- package/lib/modules/live-streaming/context.js +0 -9
- package/lib/modules/participant/attendee/index.css +0 -69
- package/lib/modules/participant/attendee/index.d.ts +0 -36
- package/lib/modules/participant/attendee/index.js +0 -398
- package/lib/modules/participant/attendee/user-more-actions.d.ts +0 -22
- package/lib/modules/participant/attendee/user-more-actions.js +0 -76
- package/lib/modules/participant/can-moveable/index.d.ts +0 -1
- package/lib/modules/participant/can-moveable/index.js +0 -68
- package/lib/modules/participant/components/attendee/components/microphone-indicator/index.d.ts +0 -6
- package/lib/modules/participant/components/attendee/components/microphone-indicator/index.js +0 -28
- package/lib/modules/participant/components/attendee/components/user-avatar/index.d.ts +0 -7
- package/lib/modules/participant/components/attendee/components/user-avatar/index.js +0 -39
- package/lib/modules/participant/components/attendee/index.css +0 -69
- package/lib/modules/participant/components/attendee/index.d.ts +0 -4
- package/lib/modules/participant/components/attendee/index.js +0 -334
- package/lib/modules/participant/components/drop-menu/index.css +0 -60
- package/lib/modules/participant/components/drop-menu/index.d.ts +0 -2
- package/lib/modules/participant/components/drop-menu/index.js +0 -186
- package/lib/modules/participant/components/footer/buttons.d.ts +0 -6
- package/lib/modules/participant/components/footer/buttons.js +0 -52
- package/lib/modules/participant/components/footer/index.d.ts +0 -4
- package/lib/modules/participant/components/footer/index.js +0 -37
- package/lib/modules/participant/components/merge/index.d.ts +0 -11
- package/lib/modules/participant/components/merge/index.js +0 -49
- package/lib/modules/participant/components/rename/index.d.ts +0 -4
- package/lib/modules/participant/components/rename/index.js +0 -45
- package/lib/modules/participant/components/user-action/index.d.ts +0 -17
- package/lib/modules/participant/components/user-action/index.js +0 -167
- package/lib/modules/participant/context.d.ts +0 -2
- package/lib/modules/participant/context.js +0 -9
- package/lib/modules/participant/room-control-drop-menu/index.css +0 -56
- package/lib/modules/participant/room-control-drop-menu/index.d.ts +0 -2
- package/lib/modules/participant/room-control-drop-menu/index.js +0 -188
- package/lib/modules/setting/context.d.ts +0 -2
- package/lib/modules/setting/context.js +0 -9
- package/lib/modules/share-screen/selection/index.css +0 -68
- package/lib/modules/share-screen/selection/index.d.ts +0 -9
- package/lib/modules/share-screen/selection/index.js +0 -273
- package/lib/modules/share-screen/share-state-bar/index.css +0 -76
- package/lib/modules/share-screen/share-state-bar/index.d.ts +0 -4
- package/lib/modules/share-screen/share-state-bar/index.js +0 -98
- package/lib/modules/state-bar/context.d.ts +0 -2
- package/lib/modules/state-bar/context.js +0 -9
- package/lib/modules/video-window/context.d.ts +0 -2
- package/lib/modules/video-window/context.js +0 -9
- package/lib/modules/video-window/deviceState/index.d.ts +0 -16
- package/lib/modules/video-window/deviceState/index.js +0 -75
- package/lib/modules/video-window/members/index.css +0 -51
- package/lib/modules/video-window/members/index.d.ts +0 -2
- package/lib/modules/video-window/members/index.js +0 -158
- package/lib/modules/video-window/speaking/index.css +0 -69
- package/lib/modules/video-window/speaking/index.d.ts +0 -3
- package/lib/modules/video-window/speaking/index.js +0 -57
- package/lib/modules/video-window/topControl/index.css +0 -35
- package/lib/modules/video-window/topControl/index.d.ts +0 -3
- package/lib/modules/video-window/topControl/index.js +0 -90
- package/lib/modules/waiting-room-layout/context.d.ts +0 -2
- package/lib/modules/waiting-room-layout/context.js +0 -9
- package/lib/modules/waiting-room-layout/type.d.ts +0 -0
- package/lib/modules/waiting-room-layout/type.js +0 -1
- package/lib/modules/whiteboard/app.d.ts +0 -2
- package/lib/modules/whiteboard/app.js +0 -49
- package/lib/utilities/extract.d.ts +0 -5
- package/lib/utilities/extract.js +0 -120
- /package/lib/modules/dialog/components/{switch-language-channels → pre-setting}/electron.d.ts +0 -0
- /package/lib/modules/{sound-effect → event-sound}/sound-effect-player.d.ts +0 -0
- /package/lib/modules/{sound-effect → event-sound}/sound-effect-player.js +0 -0
- /package/lib/{fragments/toolbar/components/extension-toolbar-item.d.ts → modules/whiteboard/components/toolbar/components/expansion/index.d.ts} +0 -0
- /package/lib/{fragments/toolbar/components/extension-toolbar-item.js → modules/whiteboard/components/toolbar/components/expansion/index.js} +0 -0
- /package/lib/{fragments/toolbar/components/toolbar-item.d.ts → modules/whiteboard/components/toolbar/components/item/index.d.ts} +0 -0
- /package/lib/{fragments/toolbar/components/toolbar-item.js → modules/whiteboard/components/toolbar/components/item/index.js} +0 -0
|
@@ -34,6 +34,7 @@ export declare const zhCn: {
|
|
|
34
34
|
fmt_attendies_toast_cant_sethost: string;
|
|
35
35
|
fmt_attendies_toast_cant_setcohost: string;
|
|
36
36
|
fmt_attendies_button_revokehost_error: string;
|
|
37
|
+
fmt_attendies_toast_cohost_upper_limit: string;
|
|
37
38
|
fmt_attendies_button_rename: string;
|
|
38
39
|
fmt_attendies_options_allowlocalrecord: string;
|
|
39
40
|
fmt_attendies_options_putinwaitingroom: string;
|
|
@@ -89,10 +90,11 @@ export declare const zhCn: {
|
|
|
89
90
|
fmt_additional_label_meet_view_all: string;
|
|
90
91
|
fmt_additional_label_change_name_self: string;
|
|
91
92
|
fmt_additional_tips_nickname_change_success: string;
|
|
92
|
-
fmt_additional_popup_label_change_nickname: string;
|
|
93
93
|
fmt_additional_popup_label_enter_nickname: string;
|
|
94
94
|
fmt_additional_popup_label_enter_nickname_ok: string;
|
|
95
95
|
fmt_additional_label_toast_rename_off: string;
|
|
96
|
+
fmt_attendies_toast_host_enabled_mute: string;
|
|
97
|
+
fmt_attendies_toast_host_turned_off_video: string;
|
|
96
98
|
fmt_actionbar_tips_leavemeeting: string;
|
|
97
99
|
fmt_actionbar_tips_locked: string;
|
|
98
100
|
fmt_actionbar_tips_recheckleave: string;
|
|
@@ -560,6 +562,21 @@ export declare const zhCn: {
|
|
|
560
562
|
fmt_screenshare_tips_sharing_audio_cancel: string;
|
|
561
563
|
fmt_screenshare_tips_sharing_audio_confirm: string;
|
|
562
564
|
fmt_screenshare_tips_sharing_disabled_tocontact: string;
|
|
565
|
+
fmt_screenshare_toast_network_error_unable_start_screen_share: string;
|
|
566
|
+
fmt_screenshare_controlbar_button_annotations: string;
|
|
567
|
+
fmt_screenshare_controlbar_annotations_options_attendees_annotate: string;
|
|
568
|
+
fmt_screenshare_controlbar_annotations_options_show_name: string;
|
|
569
|
+
fmt_screenshare_toast_host_enabled_annotations: string;
|
|
570
|
+
fmt_screenshare_toast_host_disabled_annotations: string;
|
|
571
|
+
fmt_screenshare_controlbar_options_clear_all: string;
|
|
572
|
+
fmt_screenshare_toast_annotations_visible_participants: string;
|
|
573
|
+
fmt_screenshare_controlbar_button_settings: string;
|
|
574
|
+
fmt_screenshare_controlbar_settings_label_share_audio_settings: string;
|
|
575
|
+
fmt_screenshare_controlbar_settings_options_enable_share_audio: string;
|
|
576
|
+
fmt_screenshare_controlbar_settings_label_annotation_settings: string;
|
|
577
|
+
fmt_screenshare_controlbar_settings_label_annotation_controls: string;
|
|
578
|
+
fmt_screenshare_toast_annotation_controls_screen_sharing_disabled: string;
|
|
579
|
+
fmt_screenshare_tips_host_not_enabled_annotations: string;
|
|
563
580
|
fmt_screenshare_tips_unenabled: string;
|
|
564
581
|
fmt_screenshare_whiteboard_options_changetheme: string;
|
|
565
582
|
fmt_screenshare_tips_alreadyoriginalsize: string;
|
|
@@ -877,6 +894,31 @@ export declare const zhCn: {
|
|
|
877
894
|
fmt_internalsetting_room_window_switched: string;
|
|
878
895
|
fmt_internalsetting_labels_Network_type: string;
|
|
879
896
|
fmt_internalsetting_labels_resolving_power: string;
|
|
897
|
+
fmt_internalsetting_options_play_prompt: string;
|
|
898
|
+
fmt_internalsetting_labels_audio: string;
|
|
899
|
+
fmt_internalsetting_labels_hide_video_off: string;
|
|
900
|
+
fmt_internalsetting_labels_hide_my_video: string;
|
|
901
|
+
fmt_settings_labels_virtual_background: string;
|
|
902
|
+
fmt_settings_labels_prompt_tone: string;
|
|
903
|
+
fmt_meeting_setting_button_meeting_settings: string;
|
|
904
|
+
fmt_meeting_setting_labels_meeting_settings: string;
|
|
905
|
+
fmt_meeting_setting_labels_audio_video_settings: string;
|
|
906
|
+
fmt_meeting_setting_options_mute_participants: string;
|
|
907
|
+
fmt_meeting_setting_options_disable_video: string;
|
|
908
|
+
fmt_meeting_setting_labels_Security: string;
|
|
909
|
+
fmt_meeting_setting_options_enable_waiting_room: string;
|
|
910
|
+
fmt_meeting_setting_options_jbh: string;
|
|
911
|
+
fmt_meeting_setting_options_show_time: string;
|
|
912
|
+
fmt_meeting_setting_options_show_duration: string;
|
|
913
|
+
fmt_meeting_setting_options_show_information: string;
|
|
914
|
+
fmt_meeting_setting_labels_advanced: string;
|
|
915
|
+
fmt_meeting_setting_options_enable_live_streaming: string;
|
|
916
|
+
fmt_meeting_setting_options_enable_interpretation: string;
|
|
917
|
+
fmt_meeting_setting_options_generate_meeting_minutes: string;
|
|
918
|
+
fmt_meeting_setting_toast_enabled_mute: string;
|
|
919
|
+
fmt_meeting_setting_toast_turned_off_video: string;
|
|
920
|
+
fmt_meeting_setting_toast_disabled_mute: string;
|
|
921
|
+
fmt_meeting_setting_toast_turned_on_video: string;
|
|
880
922
|
fmt_settings_labels_sidebar: string;
|
|
881
923
|
fmt_settings_labels_fold: string;
|
|
882
924
|
fmt_settings_labels_theme: string;
|
|
@@ -1154,6 +1196,7 @@ export declare const zhCn: {
|
|
|
1154
1196
|
fmt_waitingroom_mobile_memberlist_popup_label_admit_all: string;
|
|
1155
1197
|
fmt_waitingroom_mobile_memberlist_popup_label_sure_to_admit_all: string;
|
|
1156
1198
|
fmt_waitingroom_mobile_memberlist_tips_all_removed: string;
|
|
1199
|
+
fmt_waitingroom_mobile_memberlist_tips_removed: string;
|
|
1157
1200
|
fmt_waitingroom_mobile_memberlist_tips_all_amitted: string;
|
|
1158
1201
|
fmt_waitingroom_mobile_memberlist_label_nocontent: string;
|
|
1159
1202
|
fmt_waitingroom_mobile_chat_label_send_to: string;
|
|
@@ -1271,6 +1314,7 @@ export declare const zhCn: {
|
|
|
1271
1314
|
fmt_premeeting_setting_mobile_option_auto: string;
|
|
1272
1315
|
fmt_premeeting_setting_mobile_option_bright: string;
|
|
1273
1316
|
fmt_premeeting_setting_mobile_option_dark: string;
|
|
1317
|
+
fmt_premeeting_setting_option_setting_after_restarting: string;
|
|
1274
1318
|
fmt_premeeting_setting_mobile_option_region: string;
|
|
1275
1319
|
fmt_premeeting_setting_mobile_option_developer_mode: string;
|
|
1276
1320
|
fmt_premeeting_setting_mobile_label_about_us: string;
|
|
@@ -1295,6 +1339,8 @@ export declare const zhCn: {
|
|
|
1295
1339
|
fmt_premeeting_setting_mobile_popup_button_cancel: string;
|
|
1296
1340
|
fmt_premeeting_setting_mobile_popup_button_log_out: string;
|
|
1297
1341
|
fmt_premeeting_setting_mobile_button_log_out_confirm: string;
|
|
1342
|
+
fmt_premeeting_setting_button_more_meeting_control: string;
|
|
1343
|
+
fmt_premeeting_setting_checkbox_joining_meeting_connect_audio: string;
|
|
1298
1344
|
fmt_premeeting_joinroom_mobile_button_upandin: string;
|
|
1299
1345
|
fmt_premeeting_joinroom_mobile_label_flexible_meeting: string;
|
|
1300
1346
|
fmt_premeeting_joinroom_mobile_label_enterprise_account: string;
|
|
@@ -1356,6 +1402,7 @@ export declare const zhCn: {
|
|
|
1356
1402
|
fmt_security_mainwindow_label_watermark: string;
|
|
1357
1403
|
fmt_security_mainwindow_label_toast_unmute_not_allow: string;
|
|
1358
1404
|
fmt_security_mainwindow_label_toast_name_change_not_allow: string;
|
|
1405
|
+
fmt_security_mainwindow_label_interactive_annotations: string;
|
|
1359
1406
|
fmt_premeeting_setting_label_settings: string;
|
|
1360
1407
|
fmt_premeeting_setting_label_normal: string;
|
|
1361
1408
|
fmt_premeeting_setting_label_voice_motivation: string;
|
|
@@ -1412,6 +1459,7 @@ export declare const zhCn: {
|
|
|
1412
1459
|
fmt_premeeting_setting_label_low: string;
|
|
1413
1460
|
fmt_premeeting_setting_label_medium: string;
|
|
1414
1461
|
fmt_premeeting_setting_label_high: string;
|
|
1462
|
+
fmt_premeeting_setting_label_turn_off: string;
|
|
1415
1463
|
fmt_premeeting_setting_label_professional_audio: string;
|
|
1416
1464
|
fmt_premeeting_setting_label_enable_stereo: string;
|
|
1417
1465
|
fmt_premeeting_setting_label_high_fidelity_music_mode: string;
|
package/lib/translations/zhCN.js
CHANGED
|
@@ -43,6 +43,7 @@ var zhCn = exports.zhCn = {
|
|
|
43
43
|
fmt_attendies_toast_cant_sethost: '该成员的参会设备不能成为主持人',
|
|
44
44
|
fmt_attendies_toast_cant_setcohost: '该成员的参会设备不能成为联席主持人',
|
|
45
45
|
fmt_attendies_button_revokehost_error: '已收回您的主持人权限,设置失败',
|
|
46
|
+
fmt_attendies_toast_cohost_upper_limit: '联席主持人人数已达上限,无法设置更多联席主持人',
|
|
46
47
|
fmt_attendies_button_rename: '重命名',
|
|
47
48
|
fmt_attendies_options_allowlocalrecord: '允许录制本地视频',
|
|
48
49
|
fmt_attendies_options_putinwaitingroom: '放进等候室',
|
|
@@ -98,10 +99,11 @@ var zhCn = exports.zhCn = {
|
|
|
98
99
|
fmt_additional_label_meet_view_all: '所有人的会议视图',
|
|
99
100
|
fmt_additional_label_change_name_self: '自己改名',
|
|
100
101
|
fmt_additional_tips_nickname_change_success: '昵称修改成功',
|
|
101
|
-
fmt_additional_popup_label_change_nickname: '修改会中昵称',
|
|
102
102
|
fmt_additional_popup_label_enter_nickname: '请输入昵称',
|
|
103
103
|
fmt_additional_popup_label_enter_nickname_ok: 'OK',
|
|
104
104
|
fmt_additional_label_toast_rename_off: '会议管理员已关闭改名功能',
|
|
105
|
+
fmt_attendies_toast_host_enabled_mute: '主持人开启了入会静音',
|
|
106
|
+
fmt_attendies_toast_host_turned_off_video: '主持人开启了入会关闭视频',
|
|
105
107
|
fmt_actionbar_tips_leavemeeting: '你确定现在要离开会议吗?',
|
|
106
108
|
fmt_actionbar_tips_locked: '会议已被主持人加锁',
|
|
107
109
|
fmt_actionbar_tips_recheckleave: '离开会议之后不能再加入;你确定现在要离开会议吗?',
|
|
@@ -434,7 +436,7 @@ var zhCn = exports.zhCn = {
|
|
|
434
436
|
fmt_chat_enable_limit: '当前禁言中',
|
|
435
437
|
fmt_chat_say_something: '说点什么',
|
|
436
438
|
fmt_chat_send_cohost: '主持人/联席主持',
|
|
437
|
-
fmt_chat_setting_value: '
|
|
439
|
+
fmt_chat_setting_value: '聊天权限',
|
|
438
440
|
fmt_chat_send_open: '允许自由聊天',
|
|
439
441
|
fmt_chat_send_only_open: '仅允许公开聊天',
|
|
440
442
|
fmt_chat_send_only_cohost: '仅允许私聊主持人和联席主持人',
|
|
@@ -571,6 +573,21 @@ var zhCn = exports.zhCn = {
|
|
|
571
573
|
fmt_screenshare_tips_sharing_audio_cancel: '停止音频',
|
|
572
574
|
fmt_screenshare_tips_sharing_audio_confirm: '保持开启',
|
|
573
575
|
fmt_screenshare_tips_sharing_disabled_tocontact: '{reason1}禁止共享, 可联系会议管理员开启',
|
|
576
|
+
fmt_screenshare_toast_network_error_unable_start_screen_share: '网络异常,无法发起屏幕共享,请检查网络设置',
|
|
577
|
+
fmt_screenshare_controlbar_button_annotations: '批注',
|
|
578
|
+
fmt_screenshare_controlbar_annotations_options_attendees_annotate: '允许其他成员添加互动批注',
|
|
579
|
+
fmt_screenshare_controlbar_annotations_options_show_name: '显示批注者名称',
|
|
580
|
+
fmt_screenshare_toast_host_enabled_annotations: '主持人或分享者已开启互动批注',
|
|
581
|
+
fmt_screenshare_toast_host_disabled_annotations: '主持人或分享者已关闭互动批注',
|
|
582
|
+
fmt_screenshare_controlbar_options_clear_all: '清空所有批注',
|
|
583
|
+
fmt_screenshare_toast_annotations_visible_participants: '参会者可以看到你的标注内容',
|
|
584
|
+
fmt_screenshare_controlbar_button_settings: '设置',
|
|
585
|
+
fmt_screenshare_controlbar_settings_label_share_audio_settings: '共享音频设置',
|
|
586
|
+
fmt_screenshare_controlbar_settings_options_enable_share_audio: '开启共享音频',
|
|
587
|
+
fmt_screenshare_controlbar_settings_label_annotation_settings: '互动批注设置',
|
|
588
|
+
fmt_screenshare_controlbar_settings_label_annotation_controls: '互动批注操作',
|
|
589
|
+
fmt_screenshare_toast_annotation_controls_screen_sharing_disabled: '屏幕共享已关闭',
|
|
590
|
+
fmt_screenshare_tips_host_not_enabled_annotations: '主持人或分享者未开启互动批注',
|
|
574
591
|
fmt_screenshare_tips_unenabled: '会议管理员未开放白板编辑功能',
|
|
575
592
|
fmt_screenshare_whiteboard_options_changetheme: '更改白板主题',
|
|
576
593
|
fmt_screenshare_tips_alreadyoriginalsize: '已是“原始尺寸”',
|
|
@@ -898,6 +915,32 @@ var zhCn = exports.zhCn = {
|
|
|
898
915
|
fmt_internalsetting_room_window_switched: '切换为{reason1}',
|
|
899
916
|
fmt_internalsetting_labels_Network_type: '网络类型',
|
|
900
917
|
fmt_internalsetting_labels_resolving_power: '分辨率',
|
|
918
|
+
fmt_internalsetting_options_play_prompt: '入会播放提示音',
|
|
919
|
+
fmt_internalsetting_labels_audio: '音频',
|
|
920
|
+
fmt_internalsetting_labels_hide_video_off: '勾选后,你将在会中看不到未开摄像头的视图(其他人依旧能看到)',
|
|
921
|
+
fmt_internalsetting_labels_hide_my_video: '勾选后,你将在会中看不到自己的视图(其他人依旧能看到你的视图)',
|
|
922
|
+
fmt_settings_labels_virtual_background: '虚拟背景',
|
|
923
|
+
fmt_settings_labels_prompt_tone: '提示音',
|
|
924
|
+
//****************** 会控设置 ******************
|
|
925
|
+
fmt_meeting_setting_button_meeting_settings: '会控设置',
|
|
926
|
+
fmt_meeting_setting_labels_meeting_settings: '会控设置',
|
|
927
|
+
fmt_meeting_setting_labels_audio_video_settings: '音视频选项(进入会议时)',
|
|
928
|
+
fmt_meeting_setting_options_mute_participants: '参会者入会时静音',
|
|
929
|
+
fmt_meeting_setting_options_disable_video: '参会者入会时关闭视频',
|
|
930
|
+
fmt_meeting_setting_labels_Security: '会议安全',
|
|
931
|
+
fmt_meeting_setting_options_enable_waiting_room: '开启等候室',
|
|
932
|
+
fmt_meeting_setting_options_jbh: '允许参会者在主持人入会前加入会议',
|
|
933
|
+
fmt_meeting_setting_options_show_time: '显示会议时间',
|
|
934
|
+
fmt_meeting_setting_options_show_duration: '显示参会时长',
|
|
935
|
+
fmt_meeting_setting_options_show_information: '显示会议信息',
|
|
936
|
+
fmt_meeting_setting_labels_advanced: '高级功能',
|
|
937
|
+
fmt_meeting_setting_options_enable_live_streaming: '允许使用直播',
|
|
938
|
+
fmt_meeting_setting_options_enable_interpretation: '允许使用同声传译',
|
|
939
|
+
fmt_meeting_setting_options_generate_meeting_minutes: '创建AI会议纪要',
|
|
940
|
+
fmt_meeting_setting_toast_enabled_mute: '你已开启入会静音',
|
|
941
|
+
fmt_meeting_setting_toast_turned_off_video: '你已开启入会关闭视频',
|
|
942
|
+
fmt_meeting_setting_toast_disabled_mute: '你已关闭入会静音',
|
|
943
|
+
fmt_meeting_setting_toast_turned_on_video: '你已关闭入会关闭视频',
|
|
901
944
|
//****************** 设置提示部分 ******************
|
|
902
945
|
fmt_settings_labels_sidebar: '侧边栏',
|
|
903
946
|
fmt_settings_labels_fold: '折叠',
|
|
@@ -1178,6 +1221,7 @@ var zhCn = exports.zhCn = {
|
|
|
1178
1221
|
fmt_waitingroom_mobile_memberlist_popup_label_admit_all: '全部准入等候成员',
|
|
1179
1222
|
fmt_waitingroom_mobile_memberlist_popup_label_sure_to_admit_all: '是否允许等候室所有成员加入会议',
|
|
1180
1223
|
fmt_waitingroom_mobile_memberlist_tips_all_removed: '已全部移出',
|
|
1224
|
+
fmt_waitingroom_mobile_memberlist_tips_removed: '已移出',
|
|
1181
1225
|
fmt_waitingroom_mobile_memberlist_tips_all_amitted: '已全部准入会中',
|
|
1182
1226
|
fmt_waitingroom_mobile_memberlist_label_nocontent: '暂无消息',
|
|
1183
1227
|
fmt_waitingroom_mobile_chat_label_send_to: '发送给',
|
|
@@ -1289,14 +1333,15 @@ var zhCn = exports.zhCn = {
|
|
|
1289
1333
|
fmt_premeeting_setting_mobile_swtich_participant_display_name: '参会者显示名称',
|
|
1290
1334
|
fmt_premeeting_setting_mobile_swtich_voice_stimulation: '语音激励',
|
|
1291
1335
|
fmt_premeeting_setting_mobile_label_speaking_display_first: '开启语音激励后,会优先显示正在说话的与会成员。',
|
|
1292
|
-
fmt_premeeting_setting_mobile_option_bilingual: '
|
|
1336
|
+
fmt_premeeting_setting_mobile_option_bilingual: '语言设置',
|
|
1293
1337
|
fmt_premeeting_setting_mobile_option_chinese: '中文',
|
|
1294
|
-
fmt_premeeting_setting_mobile_option_english: '
|
|
1338
|
+
fmt_premeeting_setting_mobile_option_english: 'EN',
|
|
1295
1339
|
fmt_premeeting_setting_mobile_option_language_auto: '跟随系统',
|
|
1296
1340
|
fmt_premeeting_setting_mobile_option_appearance: '外观',
|
|
1297
1341
|
fmt_premeeting_setting_mobile_option_auto: '自动',
|
|
1298
1342
|
fmt_premeeting_setting_mobile_option_bright: '明亮',
|
|
1299
1343
|
fmt_premeeting_setting_mobile_option_dark: '暗黑',
|
|
1344
|
+
fmt_premeeting_setting_option_setting_after_restarting: '外观设置将在重启灵动会议后生效',
|
|
1300
1345
|
fmt_premeeting_setting_mobile_option_region: '区域设置',
|
|
1301
1346
|
fmt_premeeting_setting_mobile_option_developer_mode: '开发模式',
|
|
1302
1347
|
fmt_premeeting_setting_mobile_label_about_us: '关于我们',
|
|
@@ -1321,6 +1366,8 @@ var zhCn = exports.zhCn = {
|
|
|
1321
1366
|
fmt_premeeting_setting_mobile_popup_button_cancel: '取消',
|
|
1322
1367
|
fmt_premeeting_setting_mobile_popup_button_log_out: '退出当前登录账号',
|
|
1323
1368
|
fmt_premeeting_setting_mobile_button_log_out_confirm: '确定退出',
|
|
1369
|
+
fmt_premeeting_setting_button_more_meeting_control: '更多会控设置',
|
|
1370
|
+
fmt_premeeting_setting_checkbox_joining_meeting_connect_audio: '入会自动连接音频',
|
|
1324
1371
|
//****************** 首页 ******************
|
|
1325
1372
|
fmt_premeeting_joinroom_mobile_button_upandin: '注册登录',
|
|
1326
1373
|
fmt_premeeting_joinroom_mobile_label_flexible_meeting: '灵动会议',
|
|
@@ -1386,6 +1433,7 @@ var zhCn = exports.zhCn = {
|
|
|
1386
1433
|
fmt_security_mainwindow_label_watermark: '{reason1}{reason1}',
|
|
1387
1434
|
fmt_security_mainwindow_label_toast_unmute_not_allow: '主持人/联席主持人不允许自主解除静音',
|
|
1388
1435
|
fmt_security_mainwindow_label_toast_name_change_not_allow: '主持人/联席主持人不允许自我改名',
|
|
1436
|
+
fmt_security_mainwindow_label_interactive_annotations: '成员互动批注',
|
|
1389
1437
|
//****************** 设置 ******************
|
|
1390
1438
|
fmt_premeeting_setting_label_settings: '设置',
|
|
1391
1439
|
fmt_premeeting_setting_label_normal: '常规',
|
|
@@ -1420,7 +1468,7 @@ var zhCn = exports.zhCn = {
|
|
|
1420
1468
|
fmt_premeeting_setting_label_mute_the_microphone_joinning_meeting: '加入会议时将麦克风静音',
|
|
1421
1469
|
fmt_premeeting_setting_label_speaker: '扬声器',
|
|
1422
1470
|
fmt_premeeting_setting_button_test_speaker: '检测扬声器',
|
|
1423
|
-
fmt_premeeting_setting_label_click_test_speaker: '
|
|
1471
|
+
fmt_premeeting_setting_label_click_test_speaker: '点击测试扬声器以确定你可以听到他人的声音',
|
|
1424
1472
|
fmt_premeeting_setting_button_pause: '暂停播放',
|
|
1425
1473
|
fmt_premeeting_setting_label_change_speaker: '如果你无法听到测试音,请更换扬声器',
|
|
1426
1474
|
fmt_premeeting_setting_label_output_level: '输出级别',
|
|
@@ -1443,6 +1491,7 @@ var zhCn = exports.zhCn = {
|
|
|
1443
1491
|
fmt_premeeting_setting_label_low: '低',
|
|
1444
1492
|
fmt_premeeting_setting_label_medium: '适中',
|
|
1445
1493
|
fmt_premeeting_setting_label_high: '高',
|
|
1494
|
+
fmt_premeeting_setting_label_turn_off: '关闭',
|
|
1446
1495
|
fmt_premeeting_setting_label_professional_audio: '专业音频',
|
|
1447
1496
|
fmt_premeeting_setting_label_enable_stereo: '启用立体声',
|
|
1448
1497
|
fmt_premeeting_setting_label_high_fidelity_music_mode: '高保真音乐模式',
|
package/lib/type.d.ts
CHANGED
|
@@ -34,24 +34,29 @@ export interface FcrUIResource {
|
|
|
34
34
|
virtualBackgroundVideos?: string[];
|
|
35
35
|
soundEffectAudios?: string[];
|
|
36
36
|
}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
37
|
+
/**
|
|
38
|
+
* FcrUISceneCreatorConfig interface represents the configuration for creating a UI scene creator.
|
|
39
|
+
*/
|
|
40
|
+
export type FcrUISceneCreatorConfig = FcrUISceneCreatorConfigSchema;
|
|
41
|
+
/**
|
|
42
|
+
* FcrUISceneConfig interface represents the configuration for a UI scene.
|
|
43
|
+
*/
|
|
44
|
+
export type FcrUISceneConfig = FcrUISceneConfigSchema;
|
|
45
|
+
/**
|
|
46
|
+
* FcrUIDeviceSettingObserver interface represents an observer for a device setting.
|
|
47
|
+
*/
|
|
48
|
+
export interface FcrUIDeviceSettingObserver {
|
|
42
49
|
/**
|
|
43
|
-
*
|
|
50
|
+
* Called when the setting store is created.
|
|
51
|
+
*
|
|
52
|
+
* @param store - The setting store.
|
|
44
53
|
*/
|
|
45
|
-
|
|
54
|
+
onSettingStore?: (store: SettingStore) => void;
|
|
46
55
|
/**
|
|
47
|
-
*
|
|
56
|
+
* Called when the setting dialog is opened.
|
|
48
57
|
*/
|
|
49
|
-
|
|
58
|
+
onOpenSettingDialog?: () => void;
|
|
50
59
|
}
|
|
51
|
-
/**
|
|
52
|
-
* FcrUISceneConfig interface represents the configuration for a UI scene.
|
|
53
|
-
*/
|
|
54
|
-
export type FcrUISceneConfig = FcrUISceneConfigSchema;
|
|
55
60
|
/**
|
|
56
61
|
* FcrUISceneObserver interface represents an observer for a UI scene.
|
|
57
62
|
*/
|
|
@@ -76,6 +81,10 @@ export interface FcrUISceneObserver {
|
|
|
76
81
|
* @param error - The error that occurred.
|
|
77
82
|
*/
|
|
78
83
|
onLaunchFailure?: FcrUISceneFailureCallback;
|
|
84
|
+
/**
|
|
85
|
+
* Called when the user token will expire.
|
|
86
|
+
*/
|
|
87
|
+
onUserTokenWillExpire?: () => void;
|
|
79
88
|
}
|
|
80
89
|
export type FcrUISceneCancelCallback = FcrUISceneCallbackSchema;
|
|
81
90
|
export type FcrUISceneSuccessCallback = FcrUISceneCallbackSchema;
|
|
@@ -198,12 +207,6 @@ export interface FcrUIJoinInterpreterRoom extends FcrUIToggleInterpreterRoom {
|
|
|
198
207
|
roomJoinOptions: FcrRoomJoinOptions;
|
|
199
208
|
}
|
|
200
209
|
export type FcrUIRoomObserver = {
|
|
201
|
-
/**
|
|
202
|
-
* 用户加入主房间
|
|
203
|
-
* @param ticket
|
|
204
|
-
* @returns
|
|
205
|
-
*/
|
|
206
|
-
onJoinMainRoom?: (ticket: string) => void;
|
|
207
210
|
/**
|
|
208
211
|
* 用户离开主房间
|
|
209
212
|
*/
|
|
@@ -224,6 +227,10 @@ export type FcrUIRoomObserver = {
|
|
|
224
227
|
* 用户离开等候室
|
|
225
228
|
*/
|
|
226
229
|
onLeaveWaitingRoom?: () => void;
|
|
230
|
+
/**
|
|
231
|
+
* 用户离开JBH
|
|
232
|
+
*/
|
|
233
|
+
onLeaveJBH?: () => void;
|
|
227
234
|
/**
|
|
228
235
|
* 用户被踢出房间
|
|
229
236
|
* @param roomId
|
|
@@ -245,6 +252,11 @@ export type FcrUIRoomObserver = {
|
|
|
245
252
|
*
|
|
246
253
|
*/
|
|
247
254
|
onWaitingRoomManageCanceled?: () => void;
|
|
255
|
+
/**
|
|
256
|
+
* 当前房间路由变更
|
|
257
|
+
*
|
|
258
|
+
*/
|
|
259
|
+
onRoutingChanged?: (roomControl: FcrBaseRoomControl) => void;
|
|
248
260
|
};
|
|
249
261
|
export type FcrUIConnectionObserver = {
|
|
250
262
|
onConnectionStateUpdated?: (state: FcrConnectionState) => void;
|
|
@@ -334,7 +346,8 @@ export interface FcrUISpotlightStreamChangedParams {
|
|
|
334
346
|
export type FcrUIJoinRoomResponse = FcrBaseRoomControl;
|
|
335
347
|
import { FcrRoomConnectorType, FcrVideoSourceType } from 'fcr-core';
|
|
336
348
|
import { FcrUserRole } from 'fcr-core/lib/type';
|
|
337
|
-
import { FcrUISceneCallbackSchema, FcrUISceneConfigSchema, FcrUISceneFailureCallbackSchema } from './schema';
|
|
349
|
+
import { FcrUISceneCallbackSchema, FcrUISceneConfigSchema, FcrUISceneCreatorConfigSchema, FcrUISceneFailureCallbackSchema } from './schema';
|
|
350
|
+
import SettingStore from './modules/setting/store';
|
|
338
351
|
export declare enum FcrUIVideoWindowLayoutType {
|
|
339
352
|
/** Show a carousel on top and a big video on the rest of the screen. */
|
|
340
353
|
Speaker = "speaker",
|
|
@@ -404,3 +417,10 @@ export interface FcrUIVideoWindowData {
|
|
|
404
417
|
phoneMicEnabled?: boolean;
|
|
405
418
|
hasBoardSharing: boolean;
|
|
406
419
|
}
|
|
420
|
+
export declare enum FcrUIAiDenoiseLevel {
|
|
421
|
+
LOW = 1,
|
|
422
|
+
MEDIUM = 2,
|
|
423
|
+
HIGH = 3,
|
|
424
|
+
CLOSE = 4
|
|
425
|
+
}
|
|
426
|
+
export type FcrUiResourceType = 'image' | 'video' | 'audio';
|
package/lib/type.js
CHANGED
|
@@ -16,7 +16,7 @@ Object.defineProperty(exports, "FcrStreamLatencyLevel", {
|
|
|
16
16
|
return _fcrCore.FcrStreamLatencyLevel;
|
|
17
17
|
}
|
|
18
18
|
});
|
|
19
|
-
exports.FcrUIWindowType = exports.FcrUIVideoWindowMainSortingPriority = exports.FcrUIVideoWindowLayoutType = exports.FcrUIVideoWindowFoldSortingPriority = exports.FcrUIVideoEffectType = exports.FcrUIRoomType = exports.FcrUINotificationContentType = exports.FcrUIExitReason = exports.FcrUIConnectType = void 0;
|
|
19
|
+
exports.FcrUIWindowType = exports.FcrUIVideoWindowMainSortingPriority = exports.FcrUIVideoWindowLayoutType = exports.FcrUIVideoWindowFoldSortingPriority = exports.FcrUIVideoEffectType = exports.FcrUIRoomType = exports.FcrUINotificationContentType = exports.FcrUIExitReason = exports.FcrUIConnectType = exports.FcrUIAiDenoiseLevel = void 0;
|
|
20
20
|
Object.defineProperty(exports, "FcrUserRole", {
|
|
21
21
|
enumerable: true,
|
|
22
22
|
get: function get() {
|
|
@@ -30,27 +30,21 @@ var _fcrCore = require("fcr-core");
|
|
|
30
30
|
* FcrUIExitReason enum represents the reason for exiting a UI scene.
|
|
31
31
|
*/
|
|
32
32
|
var FcrUIExitReason = exports.FcrUIExitReason = /*#__PURE__*/function (FcrUIExitReason) {
|
|
33
|
-
/**
|
|
34
|
-
* The user leaves the room.
|
|
35
|
-
*/
|
|
36
33
|
FcrUIExitReason["LEAVE_ROOM"] = "LEAVE_ROOM";
|
|
37
|
-
/**
|
|
38
|
-
* The user leaves the room due to the room being closed.
|
|
39
|
-
*/
|
|
40
34
|
FcrUIExitReason["CLOSE_ROOM"] = "CLOSE_ROOM";
|
|
41
|
-
/**
|
|
42
|
-
* The user is kicked out of the room.
|
|
43
|
-
*/
|
|
44
35
|
FcrUIExitReason["KICKED_OUT"] = "KICKED_OUT";
|
|
45
|
-
/**
|
|
46
|
-
* The user failed to join the room due to various reasons such as User ID conflict.
|
|
47
|
-
*/
|
|
48
36
|
FcrUIExitReason["ABORTED"] = "ABORTED";
|
|
49
37
|
return FcrUIExitReason;
|
|
50
38
|
}({});
|
|
39
|
+
/**
|
|
40
|
+
* FcrUISceneCreatorConfig interface represents the configuration for creating a UI scene creator.
|
|
41
|
+
*/
|
|
51
42
|
/**
|
|
52
43
|
* FcrUISceneConfig interface represents the configuration for a UI scene.
|
|
53
44
|
*/
|
|
45
|
+
/**
|
|
46
|
+
* FcrUIDeviceSettingObserver interface represents an observer for a device setting.
|
|
47
|
+
*/
|
|
54
48
|
/**
|
|
55
49
|
* FcrUISceneObserver interface represents an observer for a UI scene.
|
|
56
50
|
*/
|
|
@@ -81,9 +75,7 @@ var FcrUINotificationContentType = exports.FcrUINotificationContentType = /*#__P
|
|
|
81
75
|
return FcrUINotificationContentType;
|
|
82
76
|
}({});
|
|
83
77
|
var FcrUIVideoWindowLayoutType = exports.FcrUIVideoWindowLayoutType = /*#__PURE__*/function (FcrUIVideoWindowLayoutType) {
|
|
84
|
-
/** Show a carousel on top and a big video on the rest of the screen. */
|
|
85
78
|
FcrUIVideoWindowLayoutType["Speaker"] = "speaker";
|
|
86
|
-
/** Show videos in grid, filling the screen. */
|
|
87
79
|
FcrUIVideoWindowLayoutType["Gallery"] = "gallery";
|
|
88
80
|
return FcrUIVideoWindowLayoutType;
|
|
89
81
|
}({});
|
|
@@ -131,4 +123,11 @@ var FcrUIWindowType = exports.FcrUIWindowType = /*#__PURE__*/function (FcrUIWind
|
|
|
131
123
|
FcrUIWindowType[FcrUIWindowType["VIDEO"] = 1] = "VIDEO";
|
|
132
124
|
FcrUIWindowType[FcrUIWindowType["BOARD"] = 2] = "BOARD";
|
|
133
125
|
return FcrUIWindowType;
|
|
126
|
+
}({});
|
|
127
|
+
var FcrUIAiDenoiseLevel = exports.FcrUIAiDenoiseLevel = function (FcrUIAiDenoiseLevel) {
|
|
128
|
+
FcrUIAiDenoiseLevel[FcrUIAiDenoiseLevel["LOW"] = _fcrCore.FcrAiDenoiseLevel.LOW] = "LOW";
|
|
129
|
+
FcrUIAiDenoiseLevel[FcrUIAiDenoiseLevel["MEDIUM"] = _fcrCore.FcrAiDenoiseLevel.MEDIUM] = "MEDIUM";
|
|
130
|
+
FcrUIAiDenoiseLevel[FcrUIAiDenoiseLevel["HIGH"] = _fcrCore.FcrAiDenoiseLevel.HIGH] = "HIGH";
|
|
131
|
+
FcrUIAiDenoiseLevel[FcrUIAiDenoiseLevel["CLOSE"] = 4] = "CLOSE";
|
|
132
|
+
return FcrUIAiDenoiseLevel;
|
|
134
133
|
}({});
|
package/lib/ui-manager.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { FcrCoreEngine } from 'fcr-core';
|
|
2
2
|
import { FcrUISceneConfig } from './type';
|
|
3
|
-
import { FcrCoreEngineConfig } from 'fcr-core/lib/type';
|
|
4
3
|
import { FcrMainRoomControl } from 'fcr-core/lib/room-control/type';
|
|
5
4
|
import { FcrUIEventProvider } from './providers/event-provider';
|
|
6
5
|
import { FcrUISharedConfigDataSource } from './shared-data-source/config';
|
|
@@ -15,14 +14,17 @@ import { FcrUIDialogProvider } from './providers/dialog-provider';
|
|
|
15
14
|
import { FcrUIVideoWindowDataSource } from './shared-data-source/video-window';
|
|
16
15
|
import { FcrUISharedDevicePrivilegeDataSource } from './shared-data-source/device-privilege-data';
|
|
17
16
|
import { FcrUIWidgetProvider } from './providers/widget-provider';
|
|
18
|
-
export declare class
|
|
17
|
+
export declare class FcrUIManager {
|
|
19
18
|
private _sceneConfig;
|
|
20
|
-
private _coreConfig;
|
|
21
19
|
private _engine;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
20
|
+
private _dom;
|
|
21
|
+
private _parameters?;
|
|
22
|
+
accessor isLoading: boolean;
|
|
23
|
+
constructor(_sceneConfig: FcrUISceneConfig, _engine: FcrCoreEngine, _dom: HTMLElement, _parameters?: Record<string, unknown> | undefined);
|
|
24
|
+
renderDevicePretestUi(deviceProvider: FcrUIDeviceProvider, onJoin: () => void, onExit: () => void): void;
|
|
25
|
+
renderPullingUi(roomControl: FcrMainRoomControl): () => void;
|
|
26
|
+
renderMainSceneUI(eventProvider: FcrUIEventProvider, deviceProvider: FcrUIDeviceProvider, roomProvider: FcrUIRoomProviderImpl, sharedConfigDataSource: FcrUISharedConfigDataSource, sharedSettingDataSource: FcrUISharedSettingDataSource, sharedLayoutDataSource: FcrUISharedLayoutDataSource, sharedSpeakerSpotlightDataSource: FcrUISharedSpeakerSpotlightDataSource, sharedPinDataSource: FcrUISharedPinDataSource, dialogProvider: FcrUIDialogProvider, messageProvider: FcrUIMessageProvider, sharedVideoWindowDataSource: FcrUIVideoWindowDataSource, sharedDevicePrivilegeDataSource: FcrUISharedDevicePrivilegeDataSource, widgetProvider: FcrUIWidgetProvider): () => void;
|
|
27
|
+
renderWaitingSceneUI(eventProvider: FcrUIEventProvider, deviceProvider: FcrUIDeviceProvider, roomProvider: FcrUIRoomProviderImpl, sharedConfigDataSource: FcrUISharedConfigDataSource, dialogProvider: FcrUIDialogProvider, messageProvider: FcrUIMessageProvider, sharedLayoutDataSource: FcrUISharedLayoutDataSource, sharedSettingDataSource: FcrUISharedSettingDataSource, sharedDevicePrivilegeDataSource: FcrUISharedDevicePrivilegeDataSource, widgetProvider: FcrUIWidgetProvider): () => void;
|
|
28
|
+
renderLoading(isLoading: boolean): void;
|
|
29
|
+
release(): void;
|
|
28
30
|
}
|