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
|
@@ -45,6 +45,10 @@ require("core-js/modules/es.object.assign.js");
|
|
|
45
45
|
require("core-js/modules/es.object.to-string.js");
|
|
46
46
|
require("core-js/modules/es.string.iterator.js");
|
|
47
47
|
require("core-js/modules/es.weak-map.js");
|
|
48
|
+
require("core-js/modules/esnext.async-iterator.filter.js");
|
|
49
|
+
require("core-js/modules/esnext.async-iterator.find.js");
|
|
50
|
+
require("core-js/modules/esnext.async-iterator.for-each.js");
|
|
51
|
+
require("core-js/modules/esnext.async-iterator.some.js");
|
|
48
52
|
require("core-js/modules/esnext.iterator.constructor.js");
|
|
49
53
|
require("core-js/modules/esnext.iterator.filter.js");
|
|
50
54
|
require("core-js/modules/esnext.iterator.find.js");
|
|
@@ -81,7 +85,7 @@ var _type2 = require("fcr-core/lib/type");
|
|
|
81
85
|
var _fcrCore = require("fcr-core");
|
|
82
86
|
var _base = require("../base");
|
|
83
87
|
var _FcrUIVideoWindowDataImpl, _FcrUIVideoWindowDataSourceImpl;
|
|
84
|
-
var _initProto, _init__videoStream, _init__audioStream, _init__spotlightEnabled, _init__isSpeakerSpotlight, _init__boardCanEdit, _init_isPin, _init_hasScreenSharing, _init_hasBoardSharing, _init_hasLoopbackSharing, _setVideoStreamDecs, _setVideoStreamOwnerInfoDecs, _setAudioStreamDecs, _setAudioStreamOwnerInfoDecs, _setPinDecs, _setSpotlightEnabledDecs, _setHasBoardSharingDecs, _setSpeakerSpotlightDecs, _setHasScreenSharingDecs, _setHasLoopbackSharingDecs, _setBoardCanEditDecs, _ref, _initProto2, _init_spotlightEnabled, _init_layoutType, _init_manualLayout, _init_pinLimitedCount, _init_mainListLimitedCount, _init_foldListLimitedCount, _init_mainList, _init_foldList, _init_spotlightStreamId, _setSpotlightEnabledDecs2, _setLayoutDecs, _onSpotlightRemovedDecs, _resetListDecs, _addBoardDecs, _updateBoardDecs, _removeBoardDecs, _mergePstnStreamOrInsertNewDataDecs, _addDecs, _updateDecs, _deleteDecs, _addPinDecs, _updateSpeakerSpotlightPositionDecs, _removePinDecs, _setSpeakerSpotlightDecs2, _toggleMainStreamDecs, _insertBeginningByPriorityDecs, _insertEndByPriorityDecs, _findInsertBeginningIndexDecs, _findInsertEndIndexDecs, _insertBoardDecs, _insertNewDataDecs, _ref3;
|
|
88
|
+
var _initProto, _init__videoStream, _init__audioStream, _init__spotlightEnabled, _init__isSpeakerSpotlight, _init__boardCanEdit, _init__isFirstCameraOpen, _init_isPin, _init_hasScreenSharing, _init_hasBoardSharing, _init_hasLoopbackSharing, _setVideoStreamDecs, _setVideoStreamOwnerInfoDecs, _setAudioStreamDecs, _setAudioStreamOwnerInfoDecs, _setPinDecs, _setSpotlightEnabledDecs, _setHasBoardSharingDecs, _setSpeakerSpotlightDecs, _setHasScreenSharingDecs, _setHasLoopbackSharingDecs, _setBoardCanEditDecs, _ref, _initProto2, _init_spotlightEnabled, _init_layoutType, _init_manualLayout, _init_pinLimitedCount, _init_mainListLimitedCount, _init_foldListLimitedCount, _init_mainList, _init_foldList, _init_spotlightStreamId, _setSpotlightEnabledDecs2, _setLayoutDecs, _onSpotlightRemovedDecs, _resetListDecs, _addBoardDecs, _updateBoardDecs, _removeBoardDecs, _mergePstnStreamOrInsertNewDataDecs, _addDecs, _updateDecs, _deleteDecs, _addPinDecs, _updateSpeakerSpotlightPositionDecs, _removePinDecs, _setSpeakerSpotlightDecs2, _toggleMainStreamDecs, _insertBeginningByPriorityDecs, _insertEndByPriorityDecs, _findInsertBeginningIndexDecs, _findInsertEndIndexDecs, _insertBoardDecs, _insertNewDataDecs, _ref3;
|
|
85
89
|
function _createForOfIteratorHelper(r, e) { var t = "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (!t) { if (Array.isArray(r) || (t = _unsupportedIterableToArray(r)) || e && r && "number" == typeof r.length) { t && (r = t); var _n = 0, F = function F() {}; return { s: F, n: function n() { return _n >= r.length ? { done: !0 } : { done: !1, value: r[_n++] }; }, e: function e(r) { throw r; }, f: F }; } throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); } var o, a = !0, u = !1; return { s: function s() { t = t.call(r); }, n: function n() { var r = t.next(); return a = r.done, r; }, e: function e(r) { u = !0, o = r; }, f: function f() { try { a || null == t["return"] || t["return"](); } finally { if (u) throw o; } } }; }
|
|
86
90
|
function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
|
|
87
91
|
function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
|
|
@@ -104,6 +108,7 @@ var _F = /*#__PURE__*/new WeakMap();
|
|
|
104
108
|
var _G = /*#__PURE__*/new WeakMap();
|
|
105
109
|
var _H = /*#__PURE__*/new WeakMap();
|
|
106
110
|
var _I = /*#__PURE__*/new WeakMap();
|
|
111
|
+
var _J = /*#__PURE__*/new WeakMap();
|
|
107
112
|
_ref = (_setVideoStreamDecs = [_mobx.action, _mobx.action.bound], _setVideoStreamOwnerInfoDecs = [_mobx.action, _mobx.action.bound], _setAudioStreamDecs = [_mobx.action, _mobx.action.bound], _setAudioStreamOwnerInfoDecs = [_mobx.action, _mobx.action.bound], _setPinDecs = [_mobx.action, _mobx.action.bound], _setSpotlightEnabledDecs = [_mobx.action, _mobx.action.bound], _setHasBoardSharingDecs = [_mobx.action, _mobx.action.bound], _setSpeakerSpotlightDecs = [_mobx.action, _mobx.action.bound], _setHasScreenSharingDecs = [_mobx.action, _mobx.action.bound], _setHasLoopbackSharingDecs = [_mobx.action, _mobx.action.bound], _setBoardCanEditDecs = [_mobx.action, _mobx.action.bound], "_boardUserInfo");
|
|
108
113
|
var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/function () {
|
|
109
114
|
function FcrUIVideoWindowDataImpl(type, _ref2, _placement, _isMySelf) {
|
|
@@ -121,11 +126,12 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
121
126
|
_classPrivateFieldInitSpec(this, _C, _init__spotlightEnabled(this, true));
|
|
122
127
|
_classPrivateFieldInitSpec(this, _D, _init__isSpeakerSpotlight(this, false));
|
|
123
128
|
_classPrivateFieldInitSpec(this, _E, _init__boardCanEdit(this, false));
|
|
129
|
+
_classPrivateFieldInitSpec(this, _F, _init__isFirstCameraOpen(this, false));
|
|
124
130
|
(0, _defineProperty2["default"])(this, "needToSort", false);
|
|
125
|
-
_classPrivateFieldInitSpec(this,
|
|
126
|
-
_classPrivateFieldInitSpec(this,
|
|
127
|
-
_classPrivateFieldInitSpec(this,
|
|
128
|
-
_classPrivateFieldInitSpec(this,
|
|
131
|
+
_classPrivateFieldInitSpec(this, _G, _init_isPin(this, false));
|
|
132
|
+
_classPrivateFieldInitSpec(this, _H, _init_hasScreenSharing(this, false));
|
|
133
|
+
_classPrivateFieldInitSpec(this, _I, _init_hasBoardSharing(this, false));
|
|
134
|
+
_classPrivateFieldInitSpec(this, _J, _init_hasLoopbackSharing(this, false));
|
|
129
135
|
this._placement = _placement;
|
|
130
136
|
this._isMySelf = _isMySelf;
|
|
131
137
|
this.type = type;
|
|
@@ -177,7 +183,7 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
177
183
|
_classPrivateFieldSet(_E, this, v);
|
|
178
184
|
}
|
|
179
185
|
}, {
|
|
180
|
-
key: "
|
|
186
|
+
key: "_isFirstCameraOpen",
|
|
181
187
|
get: function get() {
|
|
182
188
|
return _classPrivateFieldGet(_F, this);
|
|
183
189
|
},
|
|
@@ -185,7 +191,7 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
185
191
|
_classPrivateFieldSet(_F, this, v);
|
|
186
192
|
}
|
|
187
193
|
}, {
|
|
188
|
-
key: "
|
|
194
|
+
key: "isPin",
|
|
189
195
|
get: function get() {
|
|
190
196
|
return _classPrivateFieldGet(_G, this);
|
|
191
197
|
},
|
|
@@ -193,7 +199,7 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
193
199
|
_classPrivateFieldSet(_G, this, v);
|
|
194
200
|
}
|
|
195
201
|
}, {
|
|
196
|
-
key: "
|
|
202
|
+
key: "hasScreenSharing",
|
|
197
203
|
get: function get() {
|
|
198
204
|
return _classPrivateFieldGet(_H, this);
|
|
199
205
|
},
|
|
@@ -201,13 +207,21 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
201
207
|
_classPrivateFieldSet(_H, this, v);
|
|
202
208
|
}
|
|
203
209
|
}, {
|
|
204
|
-
key: "
|
|
210
|
+
key: "hasBoardSharing",
|
|
205
211
|
get: function get() {
|
|
206
212
|
return _classPrivateFieldGet(_I, this);
|
|
207
213
|
},
|
|
208
214
|
set: function set(v) {
|
|
209
215
|
_classPrivateFieldSet(_I, this, v);
|
|
210
216
|
}
|
|
217
|
+
}, {
|
|
218
|
+
key: "hasLoopbackSharing",
|
|
219
|
+
get: function get() {
|
|
220
|
+
return _classPrivateFieldGet(_J, this);
|
|
221
|
+
},
|
|
222
|
+
set: function set(v) {
|
|
223
|
+
_classPrivateFieldSet(_J, this, v);
|
|
224
|
+
}
|
|
211
225
|
}, {
|
|
212
226
|
key: "isSpeakerSpotlight",
|
|
213
227
|
get: function get() {
|
|
@@ -339,7 +353,7 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
339
353
|
if (this.isPin || ((_this$_videoStream13 = this._videoStream) === null || _this$_videoStream13 === void 0 ? void 0 : _this$_videoStream13.videoSourceType) === _fcrCore.FcrVideoSourceType.SCREEN || this.type === _type.FcrUIWindowType.BOARD) {
|
|
340
354
|
return _type.FcrUIVideoWindowMainSortingPriority.FOCUS;
|
|
341
355
|
}
|
|
342
|
-
if (this.isSpeakerSpotlight
|
|
356
|
+
if (this.isSpeakerSpotlight) {
|
|
343
357
|
return _type.FcrUIVideoWindowMainSortingPriority.SPEAKER_SPOTLIGHT;
|
|
344
358
|
}
|
|
345
359
|
if (this.hasScreenSharing) {
|
|
@@ -354,15 +368,16 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
354
368
|
if (this.ownerRoleType === _type2.FcrUserRole.COHOST) {
|
|
355
369
|
return _type.FcrUIVideoWindowMainSortingPriority.CO_HOST;
|
|
356
370
|
}
|
|
357
|
-
if (this.hasMicrophoneAudioStream && this.hasVideoStream) {
|
|
358
|
-
|
|
359
|
-
}
|
|
360
|
-
|
|
371
|
+
// if (this.hasMicrophoneAudioStream && this.hasVideoStream) {
|
|
372
|
+
// return FcrUIVideoWindowMainSortingPriority.BOTH_OPEN;
|
|
373
|
+
// }
|
|
374
|
+
var isFirstCameraOpen = this.hasVideoStream && !this._isFirstCameraOpen;
|
|
375
|
+
if (isFirstCameraOpen) {
|
|
361
376
|
return _type.FcrUIVideoWindowMainSortingPriority.CAMERA_OPEN;
|
|
362
377
|
}
|
|
363
|
-
if (this.hasMicrophoneAudioStream) {
|
|
364
|
-
|
|
365
|
-
}
|
|
378
|
+
// if (this.hasMicrophoneAudioStream) {
|
|
379
|
+
// return FcrUIVideoWindowMainSortingPriority.MICROPHONE_OPEN;
|
|
380
|
+
// }
|
|
366
381
|
} else {
|
|
367
382
|
var _this$_videoStream14;
|
|
368
383
|
if (this.isSpeakerSpotlight) {
|
|
@@ -386,15 +401,15 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
386
401
|
if (this.ownerRoleType === _type2.FcrUserRole.COHOST) {
|
|
387
402
|
return _type.FcrUIVideoWindowFoldSortingPriority.CO_HOST;
|
|
388
403
|
}
|
|
389
|
-
if (this.hasMicrophoneAudioStream && this.hasVideoStream) {
|
|
390
|
-
|
|
391
|
-
}
|
|
404
|
+
// if (this.hasMicrophoneAudioStream && this.hasVideoStream) {
|
|
405
|
+
// return FcrUIVideoWindowFoldSortingPriority.BOTH_OPEN;
|
|
406
|
+
// }
|
|
392
407
|
if (this.hasVideoStream) {
|
|
393
408
|
return _type.FcrUIVideoWindowFoldSortingPriority.CAMERA_OPEN;
|
|
394
409
|
}
|
|
395
|
-
if (this.hasMicrophoneAudioStream) {
|
|
396
|
-
|
|
397
|
-
}
|
|
410
|
+
// if (this.hasMicrophoneAudioStream) {
|
|
411
|
+
// return FcrUIVideoWindowFoldSortingPriority.MICROPHONE_OPEN;
|
|
412
|
+
// }
|
|
398
413
|
}
|
|
399
414
|
return _type.FcrUIVideoWindowMainSortingPriority.NONE;
|
|
400
415
|
}
|
|
@@ -403,6 +418,11 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
403
418
|
value: function setLayoutType(layoutType) {
|
|
404
419
|
this._layoutType = layoutType;
|
|
405
420
|
}
|
|
421
|
+
}, {
|
|
422
|
+
key: "setIsFirstCameraOpen",
|
|
423
|
+
value: function setIsFirstCameraOpen(isFirstCameraOpen) {
|
|
424
|
+
this._isFirstCameraOpen = isFirstCameraOpen;
|
|
425
|
+
}
|
|
406
426
|
}, {
|
|
407
427
|
key: "setVideoStream",
|
|
408
428
|
value: function setVideoStream(videoStream) {
|
|
@@ -465,17 +485,18 @@ var FcrUIVideoWindowDataImpl = exports.FcrUIVideoWindowDataImpl = /*#__PURE__*/f
|
|
|
465
485
|
}]);
|
|
466
486
|
}();
|
|
467
487
|
_FcrUIVideoWindowDataImpl = FcrUIVideoWindowDataImpl;
|
|
468
|
-
var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_FcrUIVideoWindowDataImpl, [[_mobx.observable, 1, "_videoStream"], [_mobx.observable, 1, "_audioStream"], [_mobx.observable, 1, "_spotlightEnabled"], [_mobx.observable, 1, "_isSpeakerSpotlight"], [_mobx.observable, 1, "_boardCanEdit"], [_mobx.observable, 1, "isPin"], [_mobx.observable, 1, "hasScreenSharing"], [_mobx.observable, 1, "hasBoardSharing"], [_mobx.observable, 1, "hasLoopbackSharing"], [_mobx.computed, 3, "isSpeakerSpotlight"], [_mobx.computed, 3, "windowId"], [_mobx.computed, 3, "videoStreamId"], [_mobx.computed, 3, "audioStreamId"], [_mobx.computed, 3, "audioStreamConnectorType"], [_mobx.computed, 3, "videoStreamConnectorType"], [_mobx.computed, 3, "hasMicrophoneAudioStream"], [_mobx.computed, 3, "hasLoopbackAudioStream"], [_mobx.computed, 3, "phoneMicEnabled"], [_mobx.computed, 3, "hasVideoStream"], [_mobx.computed, 3, "userId"], [_mobx.computed, 3, "
|
|
488
|
+
var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_FcrUIVideoWindowDataImpl, [[_mobx.observable, 1, "_videoStream"], [_mobx.observable, 1, "_audioStream"], [_mobx.observable, 1, "_spotlightEnabled"], [_mobx.observable, 1, "_isSpeakerSpotlight"], [_mobx.observable, 1, "_boardCanEdit"], [_mobx.observable, 1, "_isFirstCameraOpen"], [_mobx.observable, 1, "isPin"], [_mobx.observable, 1, "hasScreenSharing"], [_mobx.observable, 1, "hasBoardSharing"], [_mobx.observable, 1, "hasLoopbackSharing"], [_mobx.computed, 3, "isSpeakerSpotlight"], [_mobx.computed, 3, "windowId"], [_mobx.computed, 3, "videoStreamId"], [_mobx.computed, 3, "audioStreamId"], [_mobx.computed, 3, "audioStreamConnectorType"], [_mobx.computed, 3, "videoStreamConnectorType"], [_mobx.computed, 3, "hasMicrophoneAudioStream"], [_mobx.computed, 3, "hasLoopbackAudioStream"], [_mobx.computed, 3, "phoneMicEnabled"], [_mobx.computed, 3, "hasVideoStream"], [_mobx.computed, 3, "userId"], [_mobx.computed, 3, "ownerRoleType"], [_mobx.computed, 3, "videoSourceType"], [_mobx.computed, 3, "audioSourceType"], [_mobx.computed, 3, "sortingPriority"], [_setVideoStreamDecs, 18, "setVideoStream"], [_setVideoStreamOwnerInfoDecs, 18, "setVideoStreamOwnerInfo"], [_setAudioStreamDecs, 18, "setAudioStream"], [_setAudioStreamOwnerInfoDecs, 18, "setAudioStreamOwnerInfo"], [_setPinDecs, 18, "setPin"], [_setSpotlightEnabledDecs, 18, "setSpotlightEnabled"], [_setHasBoardSharingDecs, 18, "setHasBoardSharing"], [_setSpeakerSpotlightDecs, 18, "setSpeakerSpotlight"], [_setHasScreenSharingDecs, 18, "setHasScreenSharing"], [_setHasLoopbackSharingDecs, 18, "setHasLoopbackSharing"], [_setBoardCanEditDecs, 18, "setBoardCanEdit"]], []).e, 11);
|
|
469
489
|
_init__videoStream = _applyDecs$e[0];
|
|
470
490
|
_init__audioStream = _applyDecs$e[1];
|
|
471
491
|
_init__spotlightEnabled = _applyDecs$e[2];
|
|
472
492
|
_init__isSpeakerSpotlight = _applyDecs$e[3];
|
|
473
493
|
_init__boardCanEdit = _applyDecs$e[4];
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
494
|
+
_init__isFirstCameraOpen = _applyDecs$e[5];
|
|
495
|
+
_init_isPin = _applyDecs$e[6];
|
|
496
|
+
_init_hasScreenSharing = _applyDecs$e[7];
|
|
497
|
+
_init_hasBoardSharing = _applyDecs$e[8];
|
|
498
|
+
_init_hasLoopbackSharing = _applyDecs$e[9];
|
|
499
|
+
_initProto = _applyDecs$e[10];
|
|
479
500
|
var _A2 = /*#__PURE__*/new WeakMap();
|
|
480
501
|
var _B2 = /*#__PURE__*/new WeakMap();
|
|
481
502
|
var _C2 = /*#__PURE__*/new WeakMap();
|
|
@@ -487,7 +508,7 @@ var _H2 = /*#__PURE__*/new WeakMap();
|
|
|
487
508
|
var _I2 = /*#__PURE__*/new WeakMap();
|
|
488
509
|
_ref3 = (_setSpotlightEnabledDecs2 = [_mobx.action, _mobx.action.bound], _setLayoutDecs = [_mobx.action, _mobx.action.bound], _onSpotlightRemovedDecs = [_mobx.action, _mobx.action.bound], _resetListDecs = [_mobx.action, _mobx.action.bound], _addBoardDecs = [_mobx.action, _mobx.action.bound], _updateBoardDecs = [_mobx.action, _mobx.action.bound], _removeBoardDecs = [_mobx.action, _mobx.action.bound], _mergePstnStreamOrInsertNewDataDecs = [_mobx.action, _mobx.action.bound], _addDecs = [_mobx.action, _mobx.action.bound], _updateDecs = [_mobx.action, _mobx.action.bound], _deleteDecs = [_mobx.action, _mobx.action.bound], _addPinDecs = [_mobx.action, _mobx.action.bound], _updateSpeakerSpotlightPositionDecs = [_mobx.action, _mobx.action.bound], _removePinDecs = [_mobx.action, _mobx.action.bound], _setSpeakerSpotlightDecs2 = [_mobx.action, _mobx.action.bound], _toggleMainStreamDecs = [_mobx.action, _mobx.action.bound], _insertBeginningByPriorityDecs = [_mobx.action, _mobx.action.bound], _insertEndByPriorityDecs = [_mobx.action, _mobx.action.bound], _findInsertBeginningIndexDecs = [_mobx.action, _mobx.action.bound], _findInsertEndIndexDecs = [_mobx.action, _mobx.action.bound], _insertBoardDecs = [_mobx.action, _mobx.action.bound], _insertNewDataDecs = [_mobx.action, _mobx.action.bound], "_observer");
|
|
489
510
|
var FcrUIVideoWindowDataSourceImpl = exports.FcrUIVideoWindowDataSourceImpl = /*#__PURE__*/function () {
|
|
490
|
-
function FcrUIVideoWindowDataSourceImpl(_sharedSettingDataSource
|
|
511
|
+
function FcrUIVideoWindowDataSourceImpl(_sharedSettingDataSource) {
|
|
491
512
|
(0, _classCallCheck2["default"])(this, FcrUIVideoWindowDataSourceImpl);
|
|
492
513
|
(0, _defineProperty2["default"])(this, _ref3, (_initProto2(this), new _observable.AgoraObservable()));
|
|
493
514
|
(0, _defineProperty2["default"])(this, "_spotlightPool", new FcrUISpeakerSpotlightPool());
|
|
@@ -501,7 +522,6 @@ var FcrUIVideoWindowDataSourceImpl = exports.FcrUIVideoWindowDataSourceImpl = /*
|
|
|
501
522
|
_classPrivateFieldInitSpec(this, _H2, _init_foldList(this, []));
|
|
502
523
|
_classPrivateFieldInitSpec(this, _I2, _init_spotlightStreamId(this, ''));
|
|
503
524
|
this._sharedSettingDataSource = _sharedSettingDataSource;
|
|
504
|
-
this._eventProvider = _eventProvider;
|
|
505
525
|
this._spotlightPool.addObserver({
|
|
506
526
|
onRemoved: this.onSpotlightRemoved
|
|
507
527
|
});
|
|
@@ -900,11 +920,9 @@ var FcrUIVideoWindowDataSourceImpl = exports.FcrUIVideoWindowDataSourceImpl = /*
|
|
|
900
920
|
if (existedUserStream) {
|
|
901
921
|
existedUserStream.setSpeakerSpotlight(true);
|
|
902
922
|
}
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
_this9._insertBeginningByPriority(existedUserStream, list, limitCount);
|
|
907
|
-
}
|
|
923
|
+
var isSpeakerSpotlightSortingPriority = existedUserStream.sortingPriority === (placement === 'main-list' ? _type.FcrUIVideoWindowMainSortingPriority.SPEAKER_SPOTLIGHT : _type.FcrUIVideoWindowFoldSortingPriority.FOCUS);
|
|
924
|
+
if (isSpeakerSpotlightSortingPriority) {
|
|
925
|
+
_this9._insertBeginningByPriority(existedUserStream, list, limitCount);
|
|
908
926
|
}
|
|
909
927
|
list.forEach(function (item) {
|
|
910
928
|
if (item.needToSort) {
|
|
@@ -994,11 +1012,14 @@ var FcrUIVideoWindowDataSourceImpl = exports.FcrUIVideoWindowDataSourceImpl = /*
|
|
|
994
1012
|
key: "_insertByPriority",
|
|
995
1013
|
value: function _insertByPriority(data, list, limitCount) {
|
|
996
1014
|
var insertIndex = -1;
|
|
997
|
-
if (data.sortingPriority >= _type.FcrUIVideoWindowMainSortingPriority.FOCUS) {
|
|
1015
|
+
if (data.sortingPriority >= _type.FcrUIVideoWindowMainSortingPriority.FOCUS || data.sortingPriority === _type.FcrUIVideoWindowMainSortingPriority.CAMERA_OPEN) {
|
|
998
1016
|
insertIndex = this._insertBeginningByPriority(data, list, limitCount);
|
|
999
1017
|
} else {
|
|
1000
1018
|
insertIndex = this._insertEndByPriority(data, list, limitCount);
|
|
1001
1019
|
}
|
|
1020
|
+
if (data.hasVideoStream) {
|
|
1021
|
+
data.setIsFirstCameraOpen(true);
|
|
1022
|
+
}
|
|
1002
1023
|
return insertIndex;
|
|
1003
1024
|
}
|
|
1004
1025
|
}, {
|
|
@@ -1133,7 +1154,7 @@ var FcrUISpeakerSpotlightPool = exports.FcrUISpeakerSpotlightPool = /*#__PURE__*
|
|
|
1133
1154
|
return (0, _createClass2["default"])(FcrUISpeakerSpotlightPool, [{
|
|
1134
1155
|
key: "add",
|
|
1135
1156
|
value: function add(streamId) {
|
|
1136
|
-
if (this.streams.size >= this.limitCount) {
|
|
1157
|
+
if (this.streams.size >= this.limitCount && !this.streams.has(streamId)) {
|
|
1137
1158
|
return false;
|
|
1138
1159
|
}
|
|
1139
1160
|
this.streams.set(streamId, Date.now());
|
|
@@ -46,6 +46,8 @@ require("core-js/modules/es.object.to-string.js");
|
|
|
46
46
|
require("core-js/modules/es.string.includes.js");
|
|
47
47
|
require("core-js/modules/es.string.iterator.js");
|
|
48
48
|
require("core-js/modules/es.weak-map.js");
|
|
49
|
+
require("core-js/modules/esnext.async-iterator.filter.js");
|
|
50
|
+
require("core-js/modules/esnext.async-iterator.for-each.js");
|
|
49
51
|
require("core-js/modules/esnext.iterator.constructor.js");
|
|
50
52
|
require("core-js/modules/esnext.iterator.filter.js");
|
|
51
53
|
require("core-js/modules/esnext.iterator.for-each.js");
|
|
@@ -34,6 +34,7 @@ export declare const enUs: {
|
|
|
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 enUs: {
|
|
|
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 enUs: {
|
|
|
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 enUs: {
|
|
|
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;
|
|
@@ -1272,6 +1314,7 @@ export declare const enUs: {
|
|
|
1272
1314
|
fmt_premeeting_setting_mobile_option_auto: string;
|
|
1273
1315
|
fmt_premeeting_setting_mobile_option_bright: string;
|
|
1274
1316
|
fmt_premeeting_setting_mobile_option_dark: string;
|
|
1317
|
+
fmt_premeeting_setting_option_setting_after_restarting: string;
|
|
1275
1318
|
fmt_premeeting_setting_mobile_option_region: string;
|
|
1276
1319
|
fmt_premeeting_setting_mobile_option_developer_mode: string;
|
|
1277
1320
|
fmt_premeeting_setting_mobile_label_about_us: string;
|
|
@@ -1296,6 +1339,8 @@ export declare const enUs: {
|
|
|
1296
1339
|
fmt_premeeting_setting_mobile_popup_button_cancel: string;
|
|
1297
1340
|
fmt_premeeting_setting_mobile_popup_button_log_out: string;
|
|
1298
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;
|
|
1299
1344
|
fmt_premeeting_joinroom_mobile_button_upandin: string;
|
|
1300
1345
|
fmt_premeeting_joinroom_mobile_label_flexible_meeting: string;
|
|
1301
1346
|
fmt_premeeting_joinroom_mobile_label_enterprise_account: string;
|
|
@@ -1357,6 +1402,7 @@ export declare const enUs: {
|
|
|
1357
1402
|
fmt_security_mainwindow_label_watermark: string;
|
|
1358
1403
|
fmt_security_mainwindow_label_toast_unmute_not_allow: string;
|
|
1359
1404
|
fmt_security_mainwindow_label_toast_name_change_not_allow: string;
|
|
1405
|
+
fmt_security_mainwindow_label_interactive_annotations: string;
|
|
1360
1406
|
fmt_premeeting_setting_label_settings: string;
|
|
1361
1407
|
fmt_premeeting_setting_label_normal: string;
|
|
1362
1408
|
fmt_premeeting_setting_label_voice_motivation: string;
|
|
@@ -1413,6 +1459,7 @@ export declare const enUs: {
|
|
|
1413
1459
|
fmt_premeeting_setting_label_low: string;
|
|
1414
1460
|
fmt_premeeting_setting_label_medium: string;
|
|
1415
1461
|
fmt_premeeting_setting_label_high: string;
|
|
1462
|
+
fmt_premeeting_setting_label_turn_off: string;
|
|
1416
1463
|
fmt_premeeting_setting_label_professional_audio: string;
|
|
1417
1464
|
fmt_premeeting_setting_label_enable_stereo: string;
|
|
1418
1465
|
fmt_premeeting_setting_label_high_fidelity_music_mode: string;
|
package/lib/translations/enUS.js
CHANGED
|
@@ -43,6 +43,7 @@ var enUs = exports.enUs = {
|
|
|
43
43
|
fmt_attendies_toast_cant_sethost: "The member's device cannot be assigned as the host.",
|
|
44
44
|
fmt_attendies_toast_cant_setcohost: "The member's device cannot be assigned as the co-host.",
|
|
45
45
|
fmt_attendies_button_revokehost_error: 'Your host privileges have been revoked, and the setup has failed.',
|
|
46
|
+
fmt_attendies_toast_cohost_upper_limit: 'The number of co-hosts has reached the upper limit; no more co-hosts can be set.',
|
|
46
47
|
fmt_attendies_button_rename: 'Rename',
|
|
47
48
|
fmt_attendies_options_allowlocalrecord: 'Allow recording of local videos',
|
|
48
49
|
fmt_attendies_options_putinwaitingroom: 'Put it in the waiting room',
|
|
@@ -98,10 +99,11 @@ var enUs = exports.enUs = {
|
|
|
98
99
|
fmt_additional_label_meet_view_all: 'Meeting View for All',
|
|
99
100
|
fmt_additional_label_change_name_self: 'Rename',
|
|
100
101
|
fmt_additional_tips_nickname_change_success: 'Nickname changed successfully',
|
|
101
|
-
fmt_additional_popup_label_change_nickname: 'Rename in the Meeting',
|
|
102
102
|
fmt_additional_popup_label_enter_nickname: 'Please enter a nickname',
|
|
103
103
|
fmt_additional_popup_label_enter_nickname_ok: 'OK',
|
|
104
104
|
fmt_additional_label_toast_rename_off: 'Host has closed the rename function',
|
|
105
|
+
fmt_attendies_toast_host_enabled_mute: 'The host has enabled mute upon entry for all participants',
|
|
106
|
+
fmt_attendies_toast_host_turned_off_video: 'The host has turned off video automatically upon entry',
|
|
105
107
|
fmt_actionbar_tips_leavemeeting: 'Are you sure you want to leave the meeting now?',
|
|
106
108
|
fmt_actionbar_tips_locked: 'The meeting has been locked by the host',
|
|
107
109
|
fmt_actionbar_tips_recheckleave: 'You cannot join the meeting after leaving the meeting; Are you sure you want to leave the meeting now?',
|
|
@@ -168,7 +170,7 @@ var enUs = exports.enUs = {
|
|
|
168
170
|
fmt_popup_button_openvideo: 'Open video',
|
|
169
171
|
fmt_popup_button_drag: 'Drag',
|
|
170
172
|
fmt_popup_label_muted: 'Muted',
|
|
171
|
-
fmt_popup_label_turnedon: '
|
|
173
|
+
fmt_popup_label_turnedon: 'On',
|
|
172
174
|
fmt_popup_label_meetingduration: 'Meeting duration {reason1} minutes',
|
|
173
175
|
fmt_leave_tips_removetip: 'You have been removed from this meeting. Clicking the button to exit',
|
|
174
176
|
fmt_leave_tips_classover: 'The meeting has ended, click the button to leave the meeting room.',
|
|
@@ -228,8 +230,8 @@ var enUs = exports.enUs = {
|
|
|
228
230
|
fmt_audio_popup_button_cancel: 'Cancel',
|
|
229
231
|
fmt_popup_copywrite_stopstreamingnow: 'Are you sure to stop the live broadcast now?',
|
|
230
232
|
fmt_popup_options_confirmstop: 'Confirm to stop live streaming',
|
|
231
|
-
fmt_popup_options_placedbottom: '
|
|
232
|
-
fmt_popup_options_placedtop: '
|
|
233
|
+
fmt_popup_options_placedbottom: 'Move to Bottom',
|
|
234
|
+
fmt_popup_options_placedtop: 'Move to Top',
|
|
233
235
|
fmt_broadcast_tips_righturl: 'Please enter the correct live streaming page address',
|
|
234
236
|
fmt_broadcast_tips_anyonewatch: 'Anyone who uses this link can watch the live broadcast',
|
|
235
237
|
fmt_broadcast_tips_streamingwebpage: 'Please enter the URL of the live streaming webpage',
|
|
@@ -434,7 +436,7 @@ var enUs = exports.enUs = {
|
|
|
434
436
|
fmt_chat_enable_limit: 'Currently mutted',
|
|
435
437
|
fmt_chat_say_something: 'Say something',
|
|
436
438
|
fmt_chat_send_cohost: 'Host/Co-host',
|
|
437
|
-
fmt_chat_setting_value:
|
|
439
|
+
fmt_chat_setting_value: 'chat permissions',
|
|
438
440
|
fmt_chat_send_open: 'Allow chat freely',
|
|
439
441
|
fmt_chat_send_only_open: 'Only public chat allowed',
|
|
440
442
|
fmt_chat_send_only_cohost: 'Only hosts and co-hosts private chat allowed',
|
|
@@ -571,6 +573,21 @@ var enUs = exports.enUs = {
|
|
|
571
573
|
fmt_screenshare_tips_sharing_audio_cancel: 'Stop audio sharing ',
|
|
572
574
|
fmt_screenshare_tips_sharing_audio_confirm: 'Keep Mic on',
|
|
573
575
|
fmt_screenshare_tips_sharing_disabled_tocontact: '{reason1} Disabled sharing, you can contact the meeting administrator to enable it',
|
|
576
|
+
fmt_screenshare_toast_network_error_unable_start_screen_share: 'Network error,unable to start screen sharing.Please check network.',
|
|
577
|
+
fmt_screenshare_controlbar_button_annotations: 'Annotations',
|
|
578
|
+
fmt_screenshare_controlbar_annotations_options_attendees_annotate: 'Allow other attendees to annotate',
|
|
579
|
+
fmt_screenshare_controlbar_annotations_options_show_name: 'Show annoatator name',
|
|
580
|
+
fmt_screenshare_toast_host_enabled_annotations: 'The host or sharer has enabled interactive annotations',
|
|
581
|
+
fmt_screenshare_toast_host_disabled_annotations: 'The host or sharer has disabled interactive annotations',
|
|
582
|
+
fmt_screenshare_controlbar_options_clear_all: 'Clear all annotations',
|
|
583
|
+
fmt_screenshare_toast_annotations_visible_participants: 'Your annotations are visible to all participants',
|
|
584
|
+
fmt_screenshare_controlbar_button_settings: 'settings',
|
|
585
|
+
fmt_screenshare_controlbar_settings_label_share_audio_settings: 'Share Audio Settings',
|
|
586
|
+
fmt_screenshare_controlbar_settings_options_enable_share_audio: 'Enable Shared Audio',
|
|
587
|
+
fmt_screenshare_controlbar_settings_label_annotation_settings: 'Interactive Annotation Settings',
|
|
588
|
+
fmt_screenshare_controlbar_settings_label_annotation_controls: 'Interactive Annotation Controls',
|
|
589
|
+
fmt_screenshare_toast_annotation_controls_screen_sharing_disabled: 'Screen sharing has been turned off',
|
|
590
|
+
fmt_screenshare_tips_host_not_enabled_annotations: 'The host or presenter has not enabled the interactive annotation',
|
|
574
591
|
fmt_screenshare_tips_unenabled: 'The conference administrator has not enabled the whiteboard editing function',
|
|
575
592
|
fmt_screenshare_whiteboard_options_changetheme: 'Change whiteboard theme',
|
|
576
593
|
fmt_screenshare_tips_alreadyoriginalsize: "It is already 'original size'",
|
|
@@ -594,20 +611,20 @@ var enUs = exports.enUs = {
|
|
|
594
611
|
fmt_screenshare_whiteboard_tips_righclick: 'Right click to set as permanent color',
|
|
595
612
|
fmt_screenshare_whiteboard_button_setcolor: 'Set as permanent color',
|
|
596
613
|
fmt_screenshare_whiteboard_button_eraser: 'Eraser',
|
|
597
|
-
fmt_screenshare_whiteboard_button_empty: '
|
|
614
|
+
fmt_screenshare_whiteboard_button_empty: 'Clear',
|
|
598
615
|
fmt_screenshare_whiteboard_button_additionaltools: 'Additional tools',
|
|
599
|
-
fmt_screenshare_whiteboard_button_withdrwa: '
|
|
600
|
-
fmt_screenshare_whiteboard_button_forward: '
|
|
601
|
-
fmt_screenshare_whiteboard_button_paintbrush: '
|
|
616
|
+
fmt_screenshare_whiteboard_button_withdrwa: 'Undo',
|
|
617
|
+
fmt_screenshare_whiteboard_button_forward: 'Redo',
|
|
618
|
+
fmt_screenshare_whiteboard_button_paintbrush: 'Pen',
|
|
602
619
|
fmt_screenshare_whiteboard_button_cutting: 'Cutting',
|
|
603
620
|
fmt_screenshare_whiteboard_button_screenshot: 'Screenshot',
|
|
604
621
|
fmt_screenshare_whiteboard_options_hideshot: 'Hidden room screenshot',
|
|
605
|
-
fmt_screenshare_whiteboard_button_shape: '
|
|
606
|
-
fmt_screenshare_whiteboard_button_laserpen: 'Laser
|
|
607
|
-
fmt_screenshare_whiteboard_button_boxselection: '
|
|
622
|
+
fmt_screenshare_whiteboard_button_shape: 'Graphic',
|
|
623
|
+
fmt_screenshare_whiteboard_button_laserpen: 'Laser',
|
|
624
|
+
fmt_screenshare_whiteboard_button_boxselection: 'Select',
|
|
608
625
|
fmt_screenshare_whiteboard_button_text: 'Text',
|
|
609
626
|
fmt_screenshare_whiteboard_button_dragdrop: 'Drag and drop',
|
|
610
|
-
fmt_screenshare_whiteboard_button_savescript: 'Save
|
|
627
|
+
fmt_screenshare_whiteboard_button_savescript: 'Save',
|
|
611
628
|
fmt_screenshare_whiteboard_button_spread: 'Spread',
|
|
612
629
|
fmt_screenshare_whiteboard_tips_choose_pen_first: 'Start by selecting a shape or brush',
|
|
613
630
|
fmt_screenshare_whiteboard_tips_downloading: 'The blackboard is currently being downloaded',
|
|
@@ -898,6 +915,32 @@ var enUs = exports.enUs = {
|
|
|
898
915
|
fmt_internalsetting_room_window_switched: 'Switch to {reason1}',
|
|
899
916
|
fmt_internalsetting_labels_Network_type: 'Network type',
|
|
900
917
|
fmt_internalsetting_labels_resolving_power: 'Resolution',
|
|
918
|
+
fmt_internalsetting_options_play_prompt: 'Play a prompt tone upon entry',
|
|
919
|
+
fmt_internalsetting_labels_audio: 'Audio',
|
|
920
|
+
fmt_internalsetting_labels_hide_video_off: 'After checking this option, you will not see the views of participants who have not turned on their cameras during the meeting (others will still be able to see them).',
|
|
921
|
+
fmt_internalsetting_labels_hide_my_video: 'After checking this option, you will not see your own view during the meeting (others will still be able to see your view).',
|
|
922
|
+
fmt_settings_labels_virtual_background: 'Virtual Background',
|
|
923
|
+
fmt_settings_labels_prompt_tone: 'prompt tone',
|
|
924
|
+
//****************** 会控设置 ******************
|
|
925
|
+
fmt_meeting_setting_button_meeting_settings: 'Meeting settings',
|
|
926
|
+
fmt_meeting_setting_labels_meeting_settings: 'Meeting settings',
|
|
927
|
+
fmt_meeting_setting_labels_audio_video_settings: 'Audio and Video Settings (when joining a meeting)',
|
|
928
|
+
fmt_meeting_setting_options_mute_participants: 'Mute participants upon entry',
|
|
929
|
+
fmt_meeting_setting_options_disable_video: 'Disable video for attendees upon entry',
|
|
930
|
+
fmt_meeting_setting_labels_Security: 'Security',
|
|
931
|
+
fmt_meeting_setting_options_enable_waiting_room: 'Enable Waiting Room',
|
|
932
|
+
fmt_meeting_setting_options_jbh: 'Attendees can join before host',
|
|
933
|
+
fmt_meeting_setting_options_show_time: 'Show meeting time',
|
|
934
|
+
fmt_meeting_setting_options_show_duration: 'Show participant duration',
|
|
935
|
+
fmt_meeting_setting_options_show_information: 'Show meeting information',
|
|
936
|
+
fmt_meeting_setting_labels_advanced: 'Advanced',
|
|
937
|
+
fmt_meeting_setting_options_enable_live_streaming: 'Enable Live Streaming',
|
|
938
|
+
fmt_meeting_setting_options_enable_interpretation: 'Enable Interpretation',
|
|
939
|
+
fmt_meeting_setting_options_generate_meeting_minutes: 'Generate AI Meeting Minutes',
|
|
940
|
+
fmt_meeting_setting_toast_enabled_mute: 'You has enabled mute upon entry for all participants',
|
|
941
|
+
fmt_meeting_setting_toast_turned_off_video: 'You has turned off video automatically upon entry',
|
|
942
|
+
fmt_meeting_setting_toast_disabled_mute: 'You has disabled mute upon entry for all participants',
|
|
943
|
+
fmt_meeting_setting_toast_turned_on_video: 'You has turned on video automatically upon entry',
|
|
901
944
|
//****************** 设置提示部分 ******************
|
|
902
945
|
fmt_settings_labels_sidebar: 'Sidebar',
|
|
903
946
|
fmt_settings_labels_fold: 'Fold',
|
|
@@ -916,7 +959,7 @@ var enUs = exports.enUs = {
|
|
|
916
959
|
fmt_settings_tips_Blockallchat: "‘Block all chat'",
|
|
917
960
|
fmt_settings_tips_groupchatonly: "'Group chat only'",
|
|
918
961
|
fmt_settings_tips_hostchatonly: "'Only permit chat to host or cohost'",
|
|
919
|
-
fmt_settings_tips_confirmactivate: 'Confirm
|
|
962
|
+
fmt_settings_tips_confirmactivate: 'Confirm',
|
|
920
963
|
fmt_settings_tips_passwordcopyfailed: 'Meeting password copying failed',
|
|
921
964
|
fmt_settings_tips_sharing: 'You are screen sharing',
|
|
922
965
|
fmt_settings_labels_miniutes: '{reason1} minutes',
|
|
@@ -930,7 +973,7 @@ var enUs = exports.enUs = {
|
|
|
930
973
|
fmt_settings_options_pausecloudrecording: 'Pause cloud recording',
|
|
931
974
|
fmt_settings_popup_disable_while_microphone_detected: 'This function is disabled while the microphone is being detected',
|
|
932
975
|
fmt_settings_popup_disable_while_speaker_detected: 'This function is disabled while the speaker is beiing detected',
|
|
933
|
-
fmt_settings_popup_label_use_phone_audio: '
|
|
976
|
+
fmt_settings_popup_label_use_phone_audio: 'Phone',
|
|
934
977
|
fmt_settings_popup_label_link_audio_to_hear_others: 'In order to hear other users, please join the meeting using cell phone audio',
|
|
935
978
|
fmt_settings_popup_label_select_audio: 'Select audio',
|
|
936
979
|
fmt_settings_popup_label_audio_not_connect_click_select: 'Audio not connected, please click to select',
|
|
@@ -1291,13 +1334,14 @@ var enUs = exports.enUs = {
|
|
|
1291
1334
|
fmt_premeeting_setting_mobile_swtich_voice_stimulation: 'Voice stimulation',
|
|
1292
1335
|
fmt_premeeting_setting_mobile_label_speaking_display_first: 'When voice stimulation is enabled, the participants who are speaking are displayed first.',
|
|
1293
1336
|
fmt_premeeting_setting_mobile_option_bilingual: 'Bilingual ',
|
|
1294
|
-
fmt_premeeting_setting_mobile_option_chinese: '
|
|
1295
|
-
fmt_premeeting_setting_mobile_option_english: '
|
|
1337
|
+
fmt_premeeting_setting_mobile_option_chinese: '中文',
|
|
1338
|
+
fmt_premeeting_setting_mobile_option_english: 'EN',
|
|
1296
1339
|
fmt_premeeting_setting_mobile_option_language_auto: 'Auto',
|
|
1297
1340
|
fmt_premeeting_setting_mobile_option_appearance: 'Appearance',
|
|
1298
1341
|
fmt_premeeting_setting_mobile_option_auto: 'Auto',
|
|
1299
1342
|
fmt_premeeting_setting_mobile_option_bright: 'Bright',
|
|
1300
1343
|
fmt_premeeting_setting_mobile_option_dark: 'Dark',
|
|
1344
|
+
fmt_premeeting_setting_option_setting_after_restarting: 'Appearance settings will take effect after restarting Flexible Meeting',
|
|
1301
1345
|
fmt_premeeting_setting_mobile_option_region: 'Region',
|
|
1302
1346
|
fmt_premeeting_setting_mobile_option_developer_mode: 'Developer mode',
|
|
1303
1347
|
fmt_premeeting_setting_mobile_label_about_us: 'About us',
|
|
@@ -1322,6 +1366,8 @@ var enUs = exports.enUs = {
|
|
|
1322
1366
|
fmt_premeeting_setting_mobile_popup_button_cancel: 'Cancel',
|
|
1323
1367
|
fmt_premeeting_setting_mobile_popup_button_log_out: 'Log out ',
|
|
1324
1368
|
fmt_premeeting_setting_mobile_button_log_out_confirm: 'Confirm',
|
|
1369
|
+
fmt_premeeting_setting_button_more_meeting_control: 'More Conference Control Settings',
|
|
1370
|
+
fmt_premeeting_setting_checkbox_joining_meeting_connect_audio: 'Automatically connect audio when joining a meeting',
|
|
1325
1371
|
//****************** 首页 ******************
|
|
1326
1372
|
fmt_premeeting_joinroom_mobile_button_upandin: 'Sign up and log in',
|
|
1327
1373
|
fmt_premeeting_joinroom_mobile_label_flexible_meeting: 'Flexible Meeting',
|
|
@@ -1387,6 +1433,7 @@ var enUs = exports.enUs = {
|
|
|
1387
1433
|
fmt_security_mainwindow_label_watermark: '{reason1}{reason1}',
|
|
1388
1434
|
fmt_security_mainwindow_label_toast_unmute_not_allow: 'Hosts/co-hosts not allowed to unmute themselves',
|
|
1389
1435
|
fmt_security_mainwindow_label_toast_name_change_not_allow: 'Hosts/co-hosts are not allowed to change their own name',
|
|
1436
|
+
fmt_security_mainwindow_label_interactive_annotations: 'Allow interactive annotations',
|
|
1390
1437
|
//****************** 设置 ******************
|
|
1391
1438
|
fmt_premeeting_setting_label_settings: 'Setting',
|
|
1392
1439
|
fmt_premeeting_setting_label_normal: 'Normal',
|
|
@@ -1444,6 +1491,7 @@ var enUs = exports.enUs = {
|
|
|
1444
1491
|
fmt_premeeting_setting_label_low: 'Low',
|
|
1445
1492
|
fmt_premeeting_setting_label_medium: 'Medium',
|
|
1446
1493
|
fmt_premeeting_setting_label_high: 'High',
|
|
1494
|
+
fmt_premeeting_setting_label_turn_off: 'Turn Off',
|
|
1447
1495
|
fmt_premeeting_setting_label_professional_audio: 'Professional Audio',
|
|
1448
1496
|
fmt_premeeting_setting_label_enable_stereo: 'Enable Stereo',
|
|
1449
1497
|
fmt_premeeting_setting_label_high_fidelity_music_mode: 'High-Fidelity Music Mode',
|