fcr-ui-scene 3.7.4 → 3.7.6
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/installer/mac/entitlements.mac.plist +5 -1
- package/lib/assets/mic-loading.gif +0 -0
- package/lib/base.d.ts +15 -6
- package/lib/base.js +139 -107
- package/lib/{creator.d.ts → creator/index.d.ts} +16 -12
- package/lib/{creator.js → creator/index.js} +281 -210
- package/lib/creator/provider-initializer.browser.d.ts +14 -0
- package/lib/creator/provider-initializer.browser.js +303 -0
- package/lib/creator/provider-initializer.electron.d.ts +14 -0
- package/lib/creator/provider-initializer.electron.js +343 -0
- package/lib/creator/type.d.ts +15 -0
- package/lib/electron/app.js +84 -48
- package/lib/electron/bootstrap-sdk.js +138 -15
- package/lib/electron/event-manager.d.ts +88 -0
- package/lib/electron/event-manager.js +242 -0
- package/lib/electron/injections.d.ts +14 -32
- package/lib/electron/injections.js +207 -326
- package/lib/electron/ipc/type.d.ts +2 -0
- package/lib/electron/ipc/type.js +2 -0
- package/lib/electron/ipc-protocol.d.ts +91 -0
- package/lib/electron/ipc-protocol.js +61 -0
- package/lib/electron/main.js +64 -86
- package/lib/electron/preload.d.ts +1 -1
- package/lib/electron/preload.js +18 -112
- package/lib/electron/sdk-helper.d.ts +4 -0
- package/lib/electron/sdk-helper.js +272 -0
- package/lib/electron/struct.d.ts +12 -0
- package/lib/electron/struct.js +21 -0
- package/lib/electron/until.d.ts +32 -0
- package/lib/electron/until.js +58 -0
- package/lib/electron/window-proxy/browser-window-proxy.d.ts +63 -0
- package/lib/electron/window-proxy/browser-window-proxy.js +728 -0
- package/lib/electron/window-proxy/main-process-handler.d.ts +45 -0
- package/lib/electron/window-proxy/main-process-handler.js +446 -0
- package/lib/electron/window.d.ts +0 -4
- package/lib/electron/window.js +10 -21
- package/lib/fragments/annotation/index.d.ts +1 -0
- package/lib/fragments/annotation/index.js +3 -1
- package/lib/fragments/annotation/store.d.ts +1 -0
- package/lib/fragments/annotation/store.js +45 -18
- package/lib/fragments/annotation/toolbar/store.d.ts +6 -6
- package/lib/fragments/annotation/toolbar/store.js +13 -41
- package/lib/fragments/annotation/toolbar/view.js +32 -37
- package/lib/fragments/annotation/view.d.ts +0 -1
- package/lib/fragments/annotation/view.js +11 -12
- package/lib/fragments/base.d.ts +3 -0
- package/lib/fragments/base.js +3 -1
- package/lib/fragments/whiteboard/index.d.ts +1 -1
- package/lib/fragments/whiteboard/index.js +3 -6
- package/lib/fragments/whiteboard/store.d.ts +1 -0
- package/lib/fragments/whiteboard/store.js +15 -8
- package/lib/global.css +22 -10
- package/lib/global.d.ts +19 -1
- package/lib/modules/action-bar/components/apps/index.js +1 -1
- package/lib/modules/action-bar/components/chat/index.js +1 -1
- package/lib/modules/action-bar/components/collapse/index.d.ts +1 -1
- package/lib/modules/action-bar/components/collapse/index.js +1 -3
- package/lib/modules/action-bar/components/confirm-leave-meeting/index.d.ts +3 -0
- package/lib/modules/action-bar/components/confirm-leave-meeting/index.js +78 -0
- package/lib/modules/action-bar/components/interpreter/index.d.ts +1 -1
- package/lib/modules/action-bar/components/interpreter/index.js +1 -1
- package/lib/modules/action-bar/components/item/index.d.ts +1 -1
- package/lib/modules/action-bar/components/leave/index.js +1 -1
- package/lib/modules/action-bar/components/live-streaming/index.js +1 -1
- package/lib/modules/action-bar/components/more/index.js +3 -9
- package/lib/modules/action-bar/components/more/poppover-content.d.ts +1 -1
- package/lib/modules/action-bar/components/more/poppover-content.js +13 -13
- package/lib/modules/action-bar/components/notification-bar/index.js +1 -1
- package/lib/modules/action-bar/components/participants/index.js +1 -1
- package/lib/modules/action-bar/components/placement/index.d.ts +1 -1
- package/lib/modules/action-bar/components/record/index.js +1 -1
- package/lib/modules/action-bar/components/record/popover.js +1 -1
- package/lib/modules/action-bar/components/record/stop-record-dialog.d.ts +1 -1
- package/lib/modules/action-bar/components/screen-share/index.browser.d.ts +4 -0
- package/lib/modules/action-bar/components/screen-share/index.browser.js +62 -0
- package/lib/modules/action-bar/components/screen-share/index.electron.d.ts +4 -0
- package/lib/modules/action-bar/components/screen-share/index.electron.js +72 -0
- package/lib/modules/action-bar/components/screen-share/index.js +3 -85
- package/lib/modules/action-bar/components/screen-share/submenu.d.ts +5 -1
- package/lib/modules/action-bar/components/screen-share/submenu.js +56 -43
- package/lib/modules/action-bar/components/security/index.js +2 -14
- package/lib/modules/action-bar/components/settings/index.js +3 -3
- package/lib/modules/action-bar/components/smaller/index.js +1 -1
- package/lib/modules/action-bar/components/trigger-output-language/index.js +1 -1
- package/lib/modules/action-bar/components/trigger-subscribe-language/guide-tooltip/index.d.ts +1 -1
- package/lib/modules/action-bar/components/trigger-subscribe-language/index.js +2 -2
- package/lib/modules/action-bar/constants.d.ts +1 -0
- package/lib/modules/action-bar/constants.js +8 -0
- package/lib/modules/action-bar/main-scene/index.d.ts +19 -0
- package/lib/modules/action-bar/main-scene/index.js +141 -0
- package/lib/modules/action-bar/{store.d.ts → main-scene/store.base.d.ts} +84 -108
- package/lib/modules/action-bar/{store.js → main-scene/store.base.js} +285 -288
- package/lib/modules/action-bar/main-scene/store.browser.d.ts +4 -0
- package/lib/modules/action-bar/main-scene/store.browser.js +111 -0
- package/lib/modules/action-bar/main-scene/store.electron.d.ts +10 -0
- package/lib/modules/action-bar/main-scene/store.electron.js +100 -0
- package/lib/modules/action-bar/main-scene/view.d.ts +4 -0
- package/lib/modules/action-bar/{view.js → main-scene/view.js} +16 -17
- package/lib/modules/action-bar/{types.d.ts → type.d.ts} +9 -0
- package/lib/modules/action-bar/type.js +13 -0
- package/lib/modules/action-bar/waiting-scene/index.d.ts +15 -0
- package/lib/modules/action-bar/waiting-scene/index.js +102 -0
- package/lib/modules/action-bar/waiting-scene/store.base.d.ts +9 -0
- package/lib/{shared-data-source/annotation-data.js → modules/action-bar/waiting-scene/store.base.js} +20 -35
- package/lib/modules/action-bar/waiting-scene/store.browser.d.ts +3 -0
- package/lib/modules/action-bar/waiting-scene/store.browser.js +25 -0
- package/lib/modules/action-bar/waiting-scene/store.electron.d.ts +9 -0
- package/lib/modules/action-bar/waiting-scene/store.electron.js +45 -0
- package/lib/modules/action-bar/waiting-scene/view.d.ts +2 -0
- package/lib/modules/action-bar/waiting-scene/view.js +123 -0
- package/lib/modules/audio-stream/index.d.ts +3 -14
- package/lib/modules/audio-stream/index.js +21 -16
- package/lib/modules/chat/chat-room-store.d.ts +7 -20
- package/lib/modules/chat/chat-room-store.js +21 -20
- package/lib/modules/chat/components/message-list/index.js +1 -1
- package/lib/modules/chat/components/message-list/message-item/index.js +2 -2
- package/lib/modules/chat/index.css +4 -0
- package/lib/modules/chat/index.d.ts +6 -22
- package/lib/modules/chat/index.dev.js +9 -9
- package/lib/modules/chat/index.js +52 -108
- package/lib/modules/chat/store.d.ts +16 -30
- package/lib/modules/chat/store.js +138 -53
- package/lib/modules/chat/types.d.ts +19 -2
- package/lib/modules/chat/view.js +5 -4
- package/lib/modules/components/annotation-menu/index.js +1 -6
- package/lib/modules/components/control-bar/components/switch-theme/index.js +2 -2
- package/lib/modules/components/control-bar/index.css +17 -5
- package/lib/modules/components/control-bar/index.d.ts +19 -11
- package/lib/modules/components/control-bar/index.js +101 -29
- package/lib/modules/components/device-control/components/audio-menu/index.js +4 -4
- package/lib/modules/components/device-control/components/carmera/index.js +16 -16
- package/lib/modules/components/device-control/components/microphone/index.d.ts +3 -2
- package/lib/modules/components/device-control/components/microphone/index.js +44 -28
- package/lib/modules/components/device-control/components/none-menu/index.js +4 -4
- package/lib/modules/components/device-control/components/phone-menu/index.js +4 -4
- package/lib/modules/components/device-control/components/video-menu/index.js +4 -4
- package/lib/modules/components/device-control/main-scene/store.d.ts +9 -0
- package/lib/modules/components/device-control/main-scene/store.js +94 -0
- package/lib/modules/components/device-control/{store.d.ts → store.base.d.ts} +12 -15
- package/lib/modules/components/device-control/{store.js → store.base.js} +39 -33
- package/lib/modules/components/device-control/type.d.ts +4 -0
- package/lib/modules/components/device-control/waiting-scene/store.d.ts +5 -0
- package/lib/modules/components/device-control/waiting-scene/store.js +90 -0
- package/lib/modules/components/leave-meeting/components/assign-host.d.ts +1 -1
- package/lib/modules/components/leave-meeting/index.js +7 -11
- package/lib/modules/components/leave-meeting/main-scene/store.d.ts +14 -0
- package/lib/modules/components/leave-meeting/main-scene/store.js +113 -0
- package/lib/modules/components/leave-meeting/store.base.d.ts +36 -0
- package/lib/modules/components/leave-meeting/{store.js → store.base.js} +45 -50
- package/lib/modules/components/leave-meeting/type.d.ts +4 -0
- package/lib/modules/components/leave-meeting/waiting-scene/store.d.ts +13 -0
- package/lib/modules/components/leave-meeting/waiting-scene/store.js +104 -0
- package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +5 -6
- package/lib/modules/components/member-window/components/member-actions/index.js +2 -0
- package/lib/modules/components/member-window/components/member-actions/libs/index.js +12 -14
- package/lib/modules/components/member-window/components/member-actions/provider.d.ts +1 -0
- package/lib/modules/components/member-window/components/member-actions/provider.js +14 -3
- package/lib/modules/components/member-window/components/member-actions/store.d.ts +17 -5
- package/lib/modules/components/member-window/components/member-actions/store.js +28 -10
- package/lib/modules/components/member-window/components/video-player/components/local-video-player-with-zoom.js +4 -4
- package/lib/modules/components/member-window/components/video-player/components/remote-video-player-with-zoom.js +1 -1
- package/lib/modules/components/member-window/components/video-player/components/zoomable-container.js +18 -32
- package/lib/modules/components/member-window/types.d.ts +1 -0
- package/lib/modules/components/security-menu/index.d.ts +1 -9
- package/lib/modules/components/security-menu/index.js +42 -39
- package/lib/modules/components/security-menu/store.d.ts +47 -0
- package/lib/modules/components/security-menu/store.js +332 -0
- package/lib/modules/components/security-menu/type.d.ts +4 -0
- package/lib/modules/components/security-menu/type.js +6 -0
- package/lib/modules/components/tab-frame/index.js +6 -21
- package/lib/modules/components/toolbar/components/capture-tool/index.d.ts +1 -0
- package/lib/modules/components/toolbar/components/capture-tool/index.js +3 -4
- package/lib/modules/components/toolbar/components/color-tool/index.d.ts +2 -1
- package/lib/modules/components/toolbar/components/graphic-tool/index.js +0 -2
- package/lib/modules/components/toolbar/components/multiple-color-tool/index.d.ts +2 -1
- package/lib/modules/components/toolbar/components/multiple-color-tool/index.js +1 -1
- package/lib/modules/components/toolbar/components/vertical-frame/index.js +9 -5
- package/lib/modules/components/toolbar/hooks/use-resize-visible.js +16 -4
- package/lib/modules/components/toolbar/index.d.ts +3 -1
- package/lib/modules/components/toolbar/index.js +5 -3
- package/lib/modules/connection-gateway/index.d.ts +3 -18
- package/lib/modules/connection-gateway/index.js +25 -28
- package/lib/modules/connection-gateway/store.d.ts +4 -20
- package/lib/modules/connection-gateway/store.js +19 -21
- package/lib/modules/connection-gateway/types.d.ts +4 -0
- package/lib/modules/control-bar/components/boundary-detector.d.ts +8 -0
- package/lib/modules/control-bar/components/boundary-detector.js +56 -0
- package/lib/modules/control-bar/components/carmera/index.d.ts +1 -0
- package/lib/modules/control-bar/components/carmera/index.js +147 -0
- package/lib/modules/control-bar/components/cloud-recording-buttons.js +3 -0
- package/lib/modules/control-bar/components/meeting-details/index.js +7 -17
- package/lib/modules/control-bar/components/microphone/index.d.ts +6 -0
- package/lib/modules/control-bar/components/microphone/index.js +233 -0
- package/lib/modules/control-bar/components/more-actions/index.d.ts +1 -1
- package/lib/modules/control-bar/components/more-actions/index.js +22 -59
- package/lib/modules/control-bar/components/share-audio/index.d.ts +0 -2
- package/lib/modules/control-bar/components/share-audio/index.js +6 -24
- package/lib/modules/control-bar/components/share-state-nav/index.d.ts +1 -1
- package/lib/modules/control-bar/components/share-state-nav/index.js +9 -5
- package/lib/modules/control-bar/components/transfer-position-icon/index.d.ts +1 -1
- package/lib/modules/control-bar/context.d.ts +5 -0
- package/lib/modules/control-bar/context.js +12 -0
- package/lib/modules/control-bar/enums.d.ts +3 -1
- package/lib/modules/control-bar/enums.js +2 -0
- package/lib/modules/control-bar/hooks.d.ts +3 -0
- package/lib/modules/control-bar/hooks.js +36 -0
- package/lib/modules/control-bar/index.d.ts +21 -49
- package/lib/modules/control-bar/index.dev.js +40 -0
- package/lib/modules/control-bar/index.js +99 -45
- package/lib/modules/control-bar/reactor.d.ts +2 -0
- package/lib/modules/control-bar/reactor.js +8 -0
- package/lib/modules/control-bar/store.d.ts +58 -117
- package/lib/modules/control-bar/store.js +360 -456
- package/lib/modules/control-bar/type.d.ts +43 -0
- package/lib/modules/control-bar/type.js +6 -0
- package/lib/modules/control-bar/view.d.ts +1 -5
- package/lib/modules/control-bar/view.js +622 -459
- package/lib/modules/device-pretest/audio-preview/microphone-detection.js +1 -1
- package/lib/modules/device-pretest/audio-preview/speaker-control.js +3 -0
- package/lib/modules/device-pretest/audio-preview/speaker-detection.js +1 -1
- package/lib/modules/device-pretest/index.d.ts +0 -1
- package/lib/modules/device-pretest/index.js +3 -4
- package/lib/modules/device-pretest/settings/beauty.d.ts +1 -1
- package/lib/modules/device-pretest/settings/beauty.js +3 -3
- package/lib/modules/device-pretest/settings/video-effect.js +1 -1
- package/lib/modules/device-pretest/settings/video-settings-basic.js +1 -1
- package/lib/modules/device-pretest/settings/virtual-background-setting.js +1 -1
- package/lib/modules/device-pretest/store.d.ts +3 -2
- package/lib/modules/dialog/components/confirm/index.d.ts +5 -0
- package/lib/modules/dialog/components/confirm/index.js +162 -0
- package/lib/modules/dialog/components/dialog-container/component/body.d.ts +10 -8
- package/lib/modules/dialog/components/dialog-container/component/body.js +40 -26
- package/lib/modules/dialog/components/dialog-container/index.css +10 -0
- package/lib/modules/dialog/components/dialog-container/index.d.ts +5 -7
- package/lib/modules/dialog/components/dialog-container/index.js +42 -62
- package/lib/modules/dialog/components/host-area-container/index.d.ts +1 -1
- package/lib/modules/dialog/components/host-area-container/index.js +142 -200
- package/lib/modules/dialog/components/normal-window/index.d.ts +17 -14
- package/lib/modules/dialog/components/normal-window/index.js +40 -57
- package/lib/modules/dialog/dialogs/annotation-tool/index.d.ts +6 -3
- package/lib/modules/dialog/dialogs/annotation-tool/index.js +18 -19
- package/lib/modules/dialog/dialogs/chat/components/actions.d.ts +3 -1
- package/lib/modules/dialog/dialogs/chat/components/actions.js +17 -7
- package/lib/modules/dialog/dialogs/chat/index.d.ts +27 -4
- package/lib/modules/dialog/dialogs/chat/index.js +51 -30
- package/lib/modules/dialog/dialogs/confirm/index.css +24 -0
- package/lib/modules/dialog/dialogs/confirm/index.d.ts +22 -1
- package/lib/modules/dialog/dialogs/confirm/index.js +49 -33
- package/lib/modules/dialog/dialogs/confirm-leave-meeting/index.d.ts +18 -6
- package/lib/modules/dialog/dialogs/confirm-leave-meeting/index.js +25 -43
- package/lib/modules/dialog/dialogs/connection-gateway/index.d.ts +24 -8
- package/lib/modules/dialog/dialogs/connection-gateway/index.js +36 -43
- package/lib/modules/dialog/dialogs/connection-gateway/tabs.js +17 -15
- package/lib/modules/dialog/dialogs/control-bar/index.d.ts +21 -8
- package/lib/modules/dialog/dialogs/control-bar/index.js +19 -114
- package/lib/modules/dialog/dialogs/control-bar-leave-meeting/index.d.ts +19 -0
- package/lib/modules/dialog/dialogs/control-bar-leave-meeting/index.js +41 -0
- package/lib/modules/dialog/dialogs/device-setting/index.d.ts +16 -1
- package/lib/modules/dialog/dialogs/device-setting/index.js +29 -27
- package/lib/modules/dialog/dialogs/end-meeting/index.d.ts +10 -10
- package/lib/modules/dialog/dialogs/end-meeting/index.js +35 -26
- package/lib/modules/dialog/dialogs/interpreter/index.d.ts +18 -3
- package/lib/modules/dialog/dialogs/interpreter/index.js +33 -31
- package/lib/modules/dialog/dialogs/invite/index.d.ts +22 -1
- package/lib/modules/dialog/dialogs/invite/index.js +43 -43
- package/lib/modules/dialog/dialogs/live-streaming/index.d.ts +12 -1
- package/lib/modules/dialog/dialogs/live-streaming/index.js +23 -22
- package/lib/modules/dialog/dialogs/mute-all/index.css +20 -0
- package/lib/modules/dialog/dialogs/mute-all/index.d.ts +20 -0
- package/lib/modules/dialog/dialogs/mute-all/index.js +49 -0
- package/lib/modules/dialog/dialogs/participant/components/actions.d.ts +3 -1
- package/lib/modules/dialog/dialogs/participant/components/actions.js +6 -8
- package/lib/modules/dialog/dialogs/participant/components/title.d.ts +6 -1
- package/lib/modules/dialog/dialogs/participant/components/title.js +4 -7
- package/lib/modules/dialog/dialogs/participant/index.d.ts +26 -2
- package/lib/modules/dialog/dialogs/participant/index.js +46 -40
- package/lib/modules/dialog/dialogs/rename/index.d.ts +18 -3
- package/lib/modules/dialog/dialogs/rename/index.js +29 -14
- package/lib/modules/dialog/dialogs/sample-dialog/index.d.ts +21 -0
- package/lib/modules/dialog/dialogs/sample-dialog/index.js +55 -0
- package/lib/modules/dialog/dialogs/share-screen-selection/index.d.ts +19 -4
- package/lib/modules/dialog/dialogs/share-screen-selection/index.js +40 -33
- package/lib/modules/dialog/dialogs/sub-window/index.d.ts +21 -1
- package/lib/modules/dialog/dialogs/sub-window/index.js +27 -91
- package/lib/modules/dialog/dialogs/system-preference/electron.js +15 -16
- package/lib/modules/dialog/dialogs/system-preference/index.css +2 -2
- package/lib/modules/dialog/dialogs/system-preference/index.d.ts +32 -5
- package/lib/modules/dialog/dialogs/system-preference/index.js +55 -46
- package/lib/modules/dialog/dialogs/toast/index.d.ts +21 -3
- package/lib/modules/dialog/dialogs/toast/index.js +18 -41
- package/lib/modules/dialog/dialogs/video-window/index.d.ts +29 -2
- package/lib/modules/dialog/dialogs/video-window/index.js +50 -261
- package/lib/modules/dialog/dialogs/whiteboard/index.d.ts +23 -4
- package/lib/modules/dialog/dialogs/whiteboard/index.js +58 -64
- package/lib/modules/dialog/dialogs/widget/index.d.ts +18 -6
- package/lib/modules/dialog/dialogs/widget/index.js +34 -28
- package/lib/modules/dialog/index.css +8 -1
- package/lib/modules/dialog/index.d.ts +5 -46
- package/lib/modules/dialog/index.js +29 -74
- package/lib/modules/dialog/level-config.d.ts +11 -11
- package/lib/modules/dialog/level-config.js +12 -15
- package/lib/modules/dialog/store.base.d.ts +46 -0
- package/lib/modules/dialog/store.base.js +279 -0
- package/lib/modules/dialog/store.browser.d.ts +18 -0
- package/lib/modules/dialog/store.browser.js +141 -0
- package/lib/modules/dialog/store.electron.d.ts +36 -0
- package/lib/modules/dialog/store.electron.js +299 -0
- package/lib/modules/dialog/type.d.ts +16 -11
- package/lib/modules/dialog/view.d.ts +1 -1
- package/lib/modules/dialog/view.js +10 -12
- package/lib/modules/event-sound/index.d.ts +3 -37
- package/lib/modules/event-sound/index.js +18 -273
- package/lib/modules/event-sound/store.d.ts +36 -0
- package/lib/modules/event-sound/store.js +283 -0
- package/lib/modules/event-sound/type.d.ts +4 -0
- package/lib/modules/event-sound/type.js +6 -0
- package/lib/modules/event-toast/index.css +0 -1
- package/lib/modules/event-toast/index.d.ts +5 -6
- package/lib/modules/event-toast/index.js +41 -24
- package/lib/modules/event-toast/store.base.d.ts +20 -0
- package/lib/modules/event-toast/{store.js → store.base.js} +80 -86
- package/lib/modules/event-toast/store.browser.d.ts +4 -0
- package/lib/modules/event-toast/store.browser.js +30 -0
- package/lib/modules/event-toast/store.electron.d.ts +17 -0
- package/lib/modules/event-toast/store.electron.js +144 -0
- package/lib/modules/event-toast/type.d.ts +10 -0
- package/lib/modules/event-toast/type.js +6 -0
- package/lib/modules/event-toast/view.js +13 -9
- package/lib/modules/interpreter/index.css +4 -0
- package/lib/modules/interpreter/index.d.ts +3 -15
- package/lib/modules/interpreter/index.js +18 -16
- package/lib/modules/interpreter/store.d.ts +10 -16
- package/lib/modules/interpreter/store.js +20 -49
- package/lib/modules/interpreter/type.d.ts +3 -15
- package/lib/modules/interpreter/view.d.ts +1 -0
- package/lib/modules/interpreter/view.js +4 -19
- package/lib/modules/invite/components/pstn-invite.js +2 -2
- package/lib/modules/invite/index.d.ts +3 -10
- package/lib/modules/invite/index.js +25 -12
- package/lib/modules/invite/store.d.ts +17 -30
- package/lib/modules/invite/store.js +65 -79
- package/lib/modules/invite/types.d.ts +5 -1
- package/lib/modules/layout/components/Aside.js +1 -1
- package/lib/modules/layout/components/Carousel.js +1 -1
- package/lib/modules/layout/components/CommonVideoRenderer.js +41 -5
- package/lib/modules/layout/components/Gallery.js +1 -1
- package/lib/modules/layout/components/who-is-speaking.js +1 -1
- package/lib/modules/layout/index.d.ts +3 -39
- package/lib/modules/layout/index.dev.js +8 -8
- package/lib/modules/layout/index.js +32 -45
- package/lib/modules/layout/{store.d.ts → store.base.d.ts} +31 -24
- package/lib/modules/layout/{store.js → store.base.js} +65 -137
- package/lib/modules/layout/store.browser.d.ts +11 -0
- package/lib/modules/layout/store.browser.js +56 -0
- package/lib/modules/layout/store.electron.d.ts +16 -0
- package/lib/modules/layout/store.electron.js +177 -0
- package/lib/modules/layout/type.d.ts +3 -39
- package/lib/modules/layout/view.js +1 -1
- package/lib/modules/live-streaming/index.d.ts +2 -15
- package/lib/modules/live-streaming/index.dev.js +3 -3
- package/lib/modules/live-streaming/index.js +25 -12
- package/lib/modules/live-streaming/store.d.ts +6 -18
- package/lib/modules/live-streaming/store.js +22 -26
- package/lib/modules/live-streaming/type.d.ts +4 -0
- package/lib/modules/live-streaming/type.js +6 -0
- package/lib/modules/notification/index.d.ts +3 -7
- package/lib/modules/notification/index.js +26 -16
- package/lib/modules/notification/store.d.ts +11 -6
- package/lib/modules/notification/store.js +51 -11
- package/lib/modules/notification/type.d.ts +4 -0
- package/lib/modules/notification/type.js +6 -0
- package/lib/modules/notification/view.d.ts +6 -6
- package/lib/modules/notification/view.js +23 -32
- package/lib/modules/offscreen-pulling/index.js +1 -1
- package/lib/modules/participant/components/confirm-input/index.js +5 -4
- package/lib/modules/participant/components/mute-all/index.d.ts +1 -4
- package/lib/modules/participant/components/mute-all/index.js +32 -11
- package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.js +1 -1
- package/lib/modules/participant/components/participants/components/footer/components/footer/index.js +3 -2
- package/lib/modules/participant/components/participants/components/footer/index.js +5 -3
- package/lib/modules/participant/components/participants/components/merge/index.d.ts +1 -2
- package/lib/modules/participant/components/participants/components/merge/index.js +1 -3
- package/lib/modules/participant/components/participants/components/render-tab/index.js +1 -1
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.js +1 -1
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.js +1 -1
- package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.js +1 -1
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.js +1 -1
- package/lib/modules/participant/components/participants/components/render-user/components/user-action/index.js +5 -4
- package/lib/modules/participant/components/participants/index.js +17 -37
- package/lib/modules/participant/components/participants/types.d.ts +1 -0
- package/lib/modules/participant/index.css +4 -0
- package/lib/modules/participant/index.d.ts +6 -47
- package/lib/modules/participant/index.dev.js +9 -9
- package/lib/modules/participant/index.js +60 -56
- package/lib/modules/participant/member-list-data-source.d.ts +2 -1
- package/lib/modules/participant/member-list-data-source.js +14 -14
- package/lib/modules/participant/store.base.d.ts +434 -0
- package/lib/modules/participant/store.base.js +2365 -0
- package/lib/modules/participant/store.browser.d.ts +9 -0
- package/lib/modules/participant/store.browser.js +123 -0
- package/lib/modules/participant/store.electron.d.ts +13 -0
- package/lib/modules/participant/store.electron.js +130 -0
- package/lib/modules/participant/struct.d.ts +49 -0
- package/lib/modules/participant/struct.js +60 -0
- package/lib/modules/participant/type.d.ts +5 -22
- package/lib/modules/participant/type.js +1 -25
- package/lib/modules/participant/view.js +1 -1
- package/lib/modules/pc-audio-connect/main-scene/index.d.ts +14 -0
- package/lib/modules/pc-audio-connect/{index.js → main-scene/index.js} +38 -19
- package/lib/modules/pc-audio-connect/main-scene/store.d.ts +33 -0
- package/lib/modules/pc-audio-connect/main-scene/store.js +313 -0
- package/lib/modules/pc-audio-connect/types.d.ts +4 -0
- package/lib/modules/pc-audio-connect/types.js +6 -1
- package/lib/modules/pc-audio-connect/view.js +2 -1
- package/lib/modules/pc-audio-connect/waiting-scene/index.d.ts +10 -0
- package/lib/modules/pc-audio-connect/waiting-scene/index.js +69 -0
- package/lib/modules/pc-audio-connect/waiting-scene/store.d.ts +30 -0
- package/lib/modules/pc-audio-connect/{store.js → waiting-scene/store.js} +38 -47
- package/lib/modules/phone-audio-connect/index.d.ts +2 -10
- package/lib/modules/phone-audio-connect/index.js +16 -9
- package/lib/modules/phone-audio-connect/store.d.ts +2 -11
- package/lib/modules/phone-audio-connect/store.js +12 -13
- package/lib/modules/phone-audio-connect/types.d.ts +4 -0
- package/lib/modules/secondary-window/index.d.ts +8 -29
- package/lib/modules/secondary-window/index.js +51 -9
- package/lib/modules/secondary-window/store.d.ts +27 -24
- package/lib/modules/secondary-window/store.js +171 -64
- package/lib/modules/secondary-window/type.d.ts +4 -0
- package/lib/modules/secondary-window/view.js +105 -73
- package/lib/modules/setting/audio-settings/audio-settings.js +5 -16
- package/lib/modules/setting/general-settings/general-settings.js +16 -11
- package/lib/modules/setting/index.css +1 -0
- package/lib/modules/setting/index.d.ts +8 -27
- package/lib/modules/setting/index.dev.js +10 -10
- package/lib/modules/setting/index.js +57 -30
- package/lib/modules/setting/minutes-settings/minutes-settings.js +1 -1
- package/lib/modules/setting/state/index.js +3 -3
- package/lib/modules/setting/storage-settings/storage-settings.js +3 -14
- package/lib/modules/setting/{store.d.ts → store.base.d.ts} +32 -92
- package/lib/modules/setting/{store.js → store.base.js} +304 -286
- package/lib/modules/setting/store.browser.d.ts +7 -0
- package/lib/modules/setting/store.browser.js +55 -0
- package/lib/modules/setting/store.electron.d.ts +9 -0
- package/lib/modules/setting/store.electron.js +69 -0
- package/lib/modules/setting/translate-settings/translate-settings.js +2 -2
- package/lib/modules/setting/type.d.ts +69 -0
- package/lib/modules/setting/type.js +26 -0
- package/lib/modules/setting/video-settings/video-settings-basic.js +2 -2
- package/lib/modules/setting/video-settings/video-settings.d.ts +0 -2
- package/lib/modules/setting/video-settings/video-settings.js +9 -10
- package/lib/modules/setting/view.d.ts +0 -8
- package/lib/modules/setting/view.js +15 -27
- package/lib/modules/share-screen/components/control-bar/index.js +87 -81
- package/lib/modules/share-screen/components/selection/index.css +6 -3
- package/lib/modules/share-screen/components/selection/index.js +178 -202
- package/lib/modules/share-screen/index.d.ts +16 -30
- package/lib/modules/share-screen/index.dev.js +11 -11
- package/lib/modules/share-screen/index.js +47 -35
- package/lib/modules/share-screen/store.base.d.ts +49 -0
- package/lib/modules/share-screen/store.base.js +468 -0
- package/lib/modules/share-screen/store.browser.d.ts +9 -0
- package/lib/modules/share-screen/store.browser.js +43 -0
- package/lib/modules/share-screen/store.electron.d.ts +25 -0
- package/lib/modules/share-screen/store.electron.js +268 -0
- package/lib/modules/share-screen/type.d.ts +40 -0
- package/lib/modules/share-screen/type.js +13 -0
- package/lib/modules/share-screen/view.js +5 -6
- package/lib/modules/state-bar/index.d.ts +6 -35
- package/lib/modules/state-bar/index.dev.js +7 -7
- package/lib/modules/state-bar/index.js +18 -48
- package/lib/modules/state-bar/layout-config.js +5 -4
- package/lib/modules/state-bar/live-streaming-state.js +6 -5
- package/lib/modules/state-bar/main-scene/index.d.ts +5 -0
- package/lib/modules/state-bar/main-scene/index.js +47 -0
- package/lib/modules/state-bar/main-scene/store.base.d.ts +23 -0
- package/lib/modules/state-bar/main-scene/store.base.js +132 -0
- package/lib/modules/state-bar/main-scene/store.browser.d.ts +4 -0
- package/lib/modules/state-bar/main-scene/store.browser.js +86 -0
- package/lib/modules/state-bar/main-scene/store.electron.d.ts +13 -0
- package/lib/modules/state-bar/main-scene/store.electron.js +113 -0
- package/lib/modules/state-bar/meeting-details.js +20 -36
- package/lib/modules/state-bar/meeting-network-state.js +3 -3
- package/lib/modules/state-bar/meeting-time.js +1 -1
- package/lib/modules/state-bar/network-quality.js +1 -1
- package/lib/modules/state-bar/recording.js +7 -6
- package/lib/modules/state-bar/store.base.d.ts +82 -0
- package/lib/modules/state-bar/store.base.electron.d.ts +15 -0
- package/lib/{providers/whiteboard-provider.js → modules/state-bar/store.base.electron.js} +42 -60
- package/lib/modules/state-bar/{store.js → store.base.js} +140 -208
- package/lib/modules/state-bar/type.d.ts +5 -0
- package/lib/modules/state-bar/type.js +6 -0
- package/lib/modules/state-bar/view.js +36 -38
- package/lib/modules/state-bar/waiting-scene/index.d.ts +5 -0
- package/lib/modules/state-bar/waiting-scene/index.js +47 -0
- package/lib/modules/state-bar/waiting-scene/store.base.d.ts +11 -0
- package/lib/modules/state-bar/waiting-scene/store.base.js +50 -0
- package/lib/modules/state-bar/waiting-scene/store.browser.d.ts +4 -0
- package/lib/modules/state-bar/waiting-scene/store.browser.js +86 -0
- package/lib/modules/state-bar/waiting-scene/store.electron.d.ts +12 -0
- package/lib/modules/state-bar/waiting-scene/store.electron.js +105 -0
- package/lib/modules/video-window/components/members/index.js +3 -5
- package/lib/modules/video-window/index.d.ts +6 -38
- package/lib/modules/video-window/index.js +46 -56
- package/lib/modules/video-window/popover-watcher.d.ts +9 -0
- package/lib/modules/video-window/popover-watcher.js +60 -0
- package/lib/modules/video-window/store.d.ts +32 -22
- package/lib/modules/video-window/store.js +181 -140
- package/lib/modules/video-window/type.d.ts +3 -27
- package/lib/modules/video-window/view.js +58 -7
- package/lib/modules/waiting-room-layout/index.d.ts +3 -9
- package/lib/modules/waiting-room-layout/index.js +28 -21
- package/lib/modules/waiting-room-layout/store.d.ts +4 -10
- package/lib/modules/waiting-room-layout/store.js +10 -7
- package/lib/modules/whiteboard/components/control-bar/store.d.ts +6 -14
- package/lib/modules/whiteboard/components/control-bar/store.js +29 -31
- package/lib/modules/whiteboard/components/loading/index.d.ts +7 -1
- package/lib/modules/whiteboard/components/loading/index.js +6 -9
- package/lib/modules/whiteboard/components/multi-window/index.js +1 -1
- package/lib/modules/whiteboard/components/toolbar/store.d.ts +1 -6
- package/lib/modules/whiteboard/components/toolbar/store.js +4 -13
- package/lib/modules/whiteboard/index.d.ts +4 -92
- package/lib/modules/whiteboard/index.js +24 -813
- package/lib/modules/whiteboard/libs/theme.d.ts +4 -0
- package/lib/modules/whiteboard/libs/theme.js +31 -0
- package/lib/modules/whiteboard/store.browser.d.ts +5 -0
- package/lib/modules/whiteboard/store.browser.js +28 -0
- package/lib/modules/whiteboard/store.d.ts +67 -0
- package/lib/modules/whiteboard/store.electron.d.ts +10 -0
- package/lib/modules/whiteboard/store.electron.js +135 -0
- package/lib/modules/whiteboard/store.js +433 -0
- package/lib/modules/whiteboard/style.css +2 -12
- package/lib/modules/whiteboard/type.d.ts +4 -0
- package/lib/modules/whiteboard/view.js +95 -41
- package/lib/modules/widget/index.css +7 -15
- package/lib/modules/widget/index.d.ts +3 -3
- package/lib/modules/widget/index.js +22 -14
- package/lib/modules/widget/store.base.d.ts +15 -0
- package/lib/modules/widget/{store.js → store.base.js} +8 -6
- package/lib/modules/widget/store.browser.d.ts +6 -0
- package/lib/modules/widget/store.browser.js +81 -0
- package/lib/modules/widget/store.electron.d.ts +12 -0
- package/lib/modules/widget/store.electron.js +129 -0
- package/lib/modules/widget/type.d.ts +8 -7
- package/lib/modules/widget/view.d.ts +1 -0
- package/lib/modules/widget/view.js +22 -16
- package/lib/modules/widget/web-widget.d.ts +5 -4
- package/lib/modules/widget/web-widget.js +32 -40
- package/lib/object-manager.d.ts +79 -4
- package/lib/object-manager.js +135 -10
- package/lib/plugins/browser-runtime-plugin.js +1 -110
- package/lib/plugins/css-preset-plugin.js +0 -2
- package/lib/plugins/module-dev-plugin.js +62 -81
- package/lib/providers/ability-provider.d.ts +9 -1
- package/lib/providers/ability-provider.js +51 -49
- package/lib/providers/annotation/provider.d.ts +15 -0
- package/lib/providers/annotation/provider.js +69 -0
- package/lib/providers/annotation/type.d.ts +60 -0
- package/lib/providers/annotation/type.js +6 -0
- package/lib/providers/app-list-provider.d.ts +8 -6
- package/lib/providers/app-list-provider.js +17 -15
- package/lib/providers/board-share/bar-control/base.d.ts +47 -0
- package/lib/providers/board-share/bar-control/base.js +306 -0
- package/lib/providers/board-share/bar-control/browser.d.ts +10 -0
- package/lib/providers/board-share/bar-control/browser.js +42 -0
- package/lib/providers/board-share/bar-control/electron.d.ts +29 -0
- package/lib/providers/board-share/bar-control/electron.js +202 -0
- package/lib/providers/board-share/bar-control.d.ts +51 -0
- package/lib/{shared-data-source/whiteboard-data.js → providers/board-share/bar-control.js} +104 -62
- package/lib/providers/board-share/provider.base.d.ts +63 -0
- package/lib/providers/board-share/provider.base.js +394 -0
- package/lib/providers/board-share/provider.browser.d.ts +15 -0
- package/lib/providers/board-share/provider.browser.js +136 -0
- package/lib/providers/board-share/provider.electron.d.ts +22 -0
- package/lib/providers/board-share/provider.electron.js +163 -0
- package/lib/providers/board-share/struct.d.ts +14 -0
- package/lib/providers/board-share/struct.js +23 -0
- package/lib/providers/board-share/type.d.ts +161 -0
- package/lib/providers/board-share/type.js +6 -0
- package/lib/providers/chat-provider.d.ts +8 -2
- package/lib/providers/chat-provider.js +26 -12
- package/lib/providers/device-privilege-provider.d.ts +3 -2
- package/lib/providers/device-privilege-provider.js +1 -3
- package/lib/providers/device-provider.d.ts +39 -8
- package/lib/providers/device-provider.js +237 -142
- package/lib/providers/device-stream-provider.d.ts +6 -6
- package/lib/providers/device-stream-provider.js +31 -36
- package/lib/providers/dialog/provider.base.d.ts +43 -0
- package/lib/providers/dialog/provider.base.js +289 -0
- package/lib/providers/dialog/provider.browser.d.ts +16 -0
- package/lib/{modules/annotation/index.js → providers/dialog/provider.browser.js} +91 -92
- package/lib/providers/dialog/provider.electron.d.ts +16 -0
- package/lib/providers/dialog/provider.electron.js +263 -0
- package/lib/providers/dialog/type.d.ts +168 -0
- package/lib/providers/dialog/type.js +15 -0
- package/lib/providers/event-provider.d.ts +3 -67
- package/lib/providers/event-provider.js +4 -229
- package/lib/providers/facility/provider.base.d.ts +31 -0
- package/lib/providers/facility/provider.base.js +159 -0
- package/lib/providers/facility/provider.browser.d.ts +14 -0
- package/lib/providers/facility/provider.browser.js +75 -0
- package/lib/providers/facility/provider.electron.d.ts +17 -0
- package/lib/providers/facility/provider.electron.js +91 -0
- package/lib/providers/facility/struct.d.ts +5 -0
- package/lib/providers/facility/struct.js +13 -0
- package/lib/providers/facility/type.d.ts +36 -0
- package/lib/providers/facility/type.js +6 -0
- package/lib/providers/interpreter-provider.d.ts +4 -3
- package/lib/providers/interpreter-provider.js +2 -4
- package/lib/providers/local-storage-provider.d.ts +8 -1
- package/lib/providers/local-storage-provider.js +4 -3
- package/lib/providers/message/provider.d.ts +14 -0
- package/lib/providers/{message-provider.js → message/provider.js} +16 -52
- package/lib/providers/message/struct.d.ts +4 -0
- package/lib/providers/message/struct.js +12 -0
- package/lib/providers/{message-provider.d.ts → message/type.d.ts} +9 -27
- package/lib/providers/message/type.js +6 -0
- package/lib/providers/monitor-provider.d.ts +3 -1
- package/lib/providers/monitor-provider.js +4 -3
- package/lib/providers/mouse-detect/provider.d.ts +24 -0
- package/lib/providers/mouse-detect/provider.js +294 -0
- package/lib/providers/mouse-detect/struct.d.ts +4 -0
- package/lib/providers/mouse-detect/struct.js +12 -0
- package/lib/providers/mouse-detect/type.d.ts +14 -0
- package/lib/providers/mouse-detect/type.js +6 -0
- package/lib/providers/multi-display-provider.d.ts +27 -19
- package/lib/providers/multi-display-provider.js +127 -101
- package/lib/providers/phone-audio-provider.d.ts +3 -2
- package/lib/providers/phone-audio-provider.js +16 -16
- package/lib/providers/privilege-provider.d.ts +2 -1
- package/lib/providers/privilege-provider.js +9 -9
- package/lib/providers/renderer-provider.d.ts +23 -8
- package/lib/providers/renderer-provider.js +93 -28
- package/lib/providers/{room-provider.d.ts → room-provider/room-provider.d.ts} +19 -47
- package/lib/providers/{room-provider.js → room-provider/room-provider.js} +48 -206
- package/lib/{waiting-room-control-manager.d.ts → providers/room-provider/waiting-room-control-manager.d.ts} +1 -1
- package/lib/{waiting-room-control-manager.js → providers/room-provider/waiting-room-control-manager.js} +1 -1
- package/lib/providers/screen-share/provider.base.d.ts +95 -0
- package/lib/providers/screen-share/provider.base.js +525 -0
- package/lib/providers/screen-share/provider.browser.d.ts +19 -0
- package/lib/providers/screen-share/provider.browser.js +301 -0
- package/lib/providers/screen-share/provider.electron.d.ts +18 -0
- package/lib/providers/screen-share/provider.electron.js +452 -0
- package/lib/providers/screen-share/strategy/browser.d.ts +22 -0
- package/lib/providers/screen-share/strategy/browser.js +266 -0
- package/lib/providers/screen-share/strategy/electron.d.ts +22 -0
- package/lib/providers/screen-share/strategy/electron.js +294 -0
- package/lib/providers/screen-share/strategy/type.d.ts +39 -0
- package/lib/providers/screen-share/strategy/type.js +39 -0
- package/lib/providers/screen-share/stream-state-sync.d.ts +18 -0
- package/lib/providers/screen-share/stream-state-sync.js +217 -0
- package/lib/providers/screen-share/struct.d.ts +46 -0
- package/lib/providers/screen-share/struct.js +56 -0
- package/lib/providers/screen-share/type.d.ts +170 -0
- package/lib/providers/screen-share/type.js +6 -0
- package/lib/providers/session-provider.d.ts +3 -1
- package/lib/providers/session-provider.js +4 -3
- package/lib/providers/setting-storage/provider.base.d.ts +9 -0
- package/lib/providers/setting-storage/provider.base.js +14 -0
- package/lib/providers/setting-storage/provider.browser.d.ts +7 -0
- package/lib/providers/{user-setting-storage-provider.js → setting-storage/provider.browser.js} +23 -24
- package/lib/providers/setting-storage/provider.electron.d.ts +10 -0
- package/lib/providers/setting-storage/provider.electron.js +62 -0
- package/lib/providers/setting-storage/type.d.ts +18 -0
- package/lib/providers/setting-storage/type.js +6 -0
- package/lib/providers/widget-provider.d.ts +14 -6
- package/lib/providers/widget-provider.js +18 -24
- package/lib/providers/window/main-window.d.ts +51 -0
- package/lib/providers/window/main-window.js +306 -0
- package/lib/providers/window/provider.d.ts +27 -0
- package/lib/providers/window/provider.js +164 -0
- package/lib/providers/window/renderer-window.d.ts +77 -0
- package/lib/providers/window/renderer-window.js +512 -0
- package/lib/providers/window/type.d.ts +122 -0
- package/lib/providers/window/type.js +6 -0
- package/lib/runtime.d.ts +85 -82
- package/lib/runtime.js +7 -0
- package/lib/scenes/main-scene.d.ts +4 -110
- package/lib/scenes/main-scene.js +442 -545
- package/lib/scenes/type.d.ts +7 -0
- package/lib/scenes/type.js +6 -0
- package/lib/scenes/waiting-scene.d.ts +2 -76
- package/lib/scenes/waiting-scene.js +58 -165
- package/lib/schema.d.ts +2 -2
- package/lib/{utilities → shared-context}/board-context.d.ts +2 -0
- package/lib/{utilities → shared-context}/board-context.js +2 -0
- package/lib/shared-context/dialog-context.d.ts +13 -0
- package/lib/shared-context/dialog-context.js +10 -0
- package/lib/{utilities → shared-context}/video-track-render-context.js +1 -1
- package/lib/{shared-data-source → shared-data}/app-list-data.d.ts +6 -4
- package/lib/{shared-data-source → shared-data}/app-list-data.js +7 -4
- package/lib/{shared-data-source → shared-data}/chat-data.d.ts +4 -2
- package/lib/{shared-data-source → shared-data}/chat-data.js +11 -8
- package/lib/{shared-data-source → shared-data}/config.d.ts +8 -3
- package/lib/{shared-data-source → shared-data}/config.js +9 -3
- package/lib/{shared-data-source → shared-data}/confirm-data.d.ts +10 -9
- package/lib/{shared-data-source → shared-data}/confirm-data.js +10 -9
- package/lib/{shared-data-source → shared-data}/device-privilege-data.d.ts +3 -1
- package/lib/{shared-data-source → shared-data}/device-privilege-data.js +4 -3
- package/lib/{shared-data-source → shared-data}/interpreter.d.ts +5 -5
- package/lib/{shared-data-source → shared-data}/interpreter.js +16 -21
- package/lib/{shared-data-source → shared-data}/layout-data.d.ts +3 -1
- package/lib/{shared-data-source → shared-data}/layout-data.js +12 -9
- package/lib/{shared-data-source → shared-data}/meeting-time.d.ts +2 -6
- package/lib/{shared-data-source → shared-data}/meeting-time.js +12 -12
- package/lib/{shared-data-source → shared-data}/member-data.d.ts +8 -17
- package/lib/{shared-data-source → shared-data}/member-data.js +66 -94
- package/lib/{shared-data-source → shared-data}/pin-data.d.ts +6 -4
- package/lib/{shared-data-source → shared-data}/pin-data.js +14 -11
- package/lib/shared-data/screen-share/index.d.ts +26 -0
- package/lib/shared-data/screen-share/index.js +211 -0
- package/lib/shared-data/screen-share/type.d.ts +42 -0
- package/lib/shared-data/screen-share/type.js +6 -0
- package/lib/{shared-data-source → shared-data}/security-data.d.ts +5 -5
- package/lib/{shared-data-source → shared-data}/security-data.js +13 -13
- package/lib/{shared-data-source → shared-data}/setting.d.ts +5 -3
- package/lib/{shared-data-source → shared-data}/setting.js +8 -5
- package/lib/shared-data/speaker-spotlight.d.ts +7 -0
- package/lib/{shared-data-source → shared-data}/speaker-spotlight.js +10 -6
- package/lib/{shared-data-source → shared-data}/video-window.d.ts +3 -2
- package/lib/{shared-data-source → shared-data}/video-window.js +4 -3
- package/lib/{shared-data-source → shared-data}/waiting-room.d.ts +5 -5
- package/lib/{shared-data-source → shared-data}/waiting-room.js +10 -10
- package/lib/shared-data/widget-data.d.ts +13 -0
- package/lib/shared-data/widget-data.js +50 -0
- package/lib/translations/enUS.d.ts +16 -3
- package/lib/translations/enUS.js +22 -9
- package/lib/translations/zhCN.d.ts +16 -3
- package/lib/translations/zhCN.js +22 -9
- package/lib/type.d.ts +70 -79
- package/lib/type.js +16 -4
- package/lib/ui-manager.d.ts +6 -6
- package/lib/ui-manager.js +38 -10
- package/lib/ui-scene.d.ts +9 -39
- package/lib/ui-scene.js +160 -226
- package/lib/utilities/{screen.d.ts → browser-api.d.ts} +1 -0
- package/lib/utilities/{copyText.js → browser-api.js} +36 -1
- package/lib/utilities/constant.d.ts +67 -73
- package/lib/utilities/constant.js +70 -73
- package/lib/utilities/default-config.d.ts +32 -1
- package/lib/utilities/default-config.js +33 -1
- package/lib/utilities/dialog-utils.d.ts +8 -12
- package/lib/utilities/dialog-utils.js +63 -74
- package/lib/utilities/focus-helper.d.ts +2 -0
- package/lib/utilities/focus-helper.js +26 -0
- package/lib/utilities/logger.js +9 -1
- package/lib/utilities/meeting-detail.d.ts +10 -1
- package/lib/utilities/meeting-detail.js +25 -3
- package/lib/utilities/platform.d.ts +1 -0
- package/lib/utilities/platform.js +4 -1
- package/lib/utilities/renderer.d.ts +75 -17
- package/lib/utilities/renderer.js +418 -78
- package/package.json +6 -6
- package/public/index.html +50 -21
- package/lib/modules/action-bar/index.d.ts +0 -58
- package/lib/modules/action-bar/index.dev.d.ts +0 -0
- package/lib/modules/action-bar/index.dev.js +0 -94
- package/lib/modules/action-bar/index.js +0 -109
- package/lib/modules/action-bar/view.d.ts +0 -5
- package/lib/modules/annotation/annotation-index.d.ts +0 -2
- package/lib/modules/annotation/annotation-index.js +0 -80
- package/lib/modules/annotation/annotation-toolbar-store.d.ts +0 -75
- package/lib/modules/annotation/annotation-toolbar-store.js +0 -459
- package/lib/modules/annotation/board-cursor.css +0 -77
- package/lib/modules/annotation/components/color-picker/components/color.d.ts +0 -5
- package/lib/modules/annotation/components/color-picker/components/color.js +0 -38
- package/lib/modules/annotation/components/color-picker/components/panel.d.ts +0 -1
- package/lib/modules/annotation/components/color-picker/components/panel.js +0 -109
- package/lib/modules/annotation/components/color-picker/components/picker.d.ts +0 -1
- package/lib/modules/annotation/components/color-picker/components/picker.js +0 -75
- package/lib/modules/annotation/components/color-picker/index.d.ts +0 -2
- package/lib/modules/annotation/components/color-picker/index.js +0 -47
- package/lib/modules/annotation/components/eraser-picker.d.ts +0 -4
- package/lib/modules/annotation/components/eraser-picker.js +0 -144
- package/lib/modules/annotation/components/expansion/index.js +0 -100
- package/lib/modules/annotation/components/extra-tool-picker.d.ts +0 -1
- package/lib/modules/annotation/components/extra-tool-picker.js +0 -62
- package/lib/modules/annotation/components/history.d.ts +0 -2
- package/lib/modules/annotation/components/history.js +0 -78
- package/lib/modules/annotation/components/icons/fold-icon.d.ts +0 -2
- package/lib/modules/annotation/components/icons/fold-icon.js +0 -41
- package/lib/modules/annotation/components/icons/move-icon.d.ts +0 -1
- package/lib/modules/annotation/components/icons/move-icon.js +0 -66
- package/lib/modules/annotation/components/item/index.d.ts +0 -1
- package/lib/modules/annotation/components/item/index.js +0 -43
- package/lib/modules/annotation/components/move-handle.d.ts +0 -5
- package/lib/modules/annotation/components/move-handle.js +0 -134
- package/lib/modules/annotation/components/pen-picker.d.ts +0 -4
- package/lib/modules/annotation/components/pen-picker.js +0 -155
- package/lib/modules/annotation/components/screen-capture-picker.d.ts +0 -4
- package/lib/modules/annotation/components/screen-capture-picker.js +0 -85
- package/lib/modules/annotation/components/shape-picker.d.ts +0 -4
- package/lib/modules/annotation/components/shape-picker.js +0 -210
- package/lib/modules/annotation/hooks/index.d.ts +0 -14
- package/lib/modules/annotation/hooks/index.js +0 -292
- package/lib/modules/annotation/index.d.ts +0 -45
- package/lib/modules/annotation/store.d.ts +0 -98
- package/lib/modules/annotation/store.js +0 -620
- package/lib/modules/annotation/style.css +0 -36
- package/lib/modules/annotation/view.d.ts +0 -3
- package/lib/modules/annotation/view.js +0 -44
- package/lib/modules/components/leave-meeting/store.d.ts +0 -39
- package/lib/modules/control-bar/components/annotation-button/index.d.ts +0 -1
- package/lib/modules/control-bar/components/annotation-button/index.js +0 -72
- package/lib/modules/control-bar/types.d.ts +0 -20
- package/lib/modules/dialog/dialogs/pre-setting/index.css +0 -26
- package/lib/modules/dialog/dialogs/pre-setting/index.d.ts +0 -6
- package/lib/modules/dialog/dialogs/pre-setting/index.js +0 -62
- package/lib/modules/dialog/dialogs/widget/electron.d.ts +0 -6
- package/lib/modules/dialog/dialogs/widget/electron.js +0 -38
- package/lib/modules/dialog/hooks/use-popover-watcher.d.ts +0 -14
- package/lib/modules/dialog/hooks/use-popover-watcher.js +0 -110
- package/lib/modules/dialog/hooks/useElectron.d.ts +0 -28
- package/lib/modules/dialog/hooks/useElectron.js +0 -277
- package/lib/modules/dialog/store.d.ts +0 -135
- package/lib/modules/dialog/store.js +0 -616
- package/lib/modules/event-confirm/components/window/index.d.ts +0 -7
- package/lib/modules/event-confirm/components/window/index.js +0 -221
- package/lib/modules/event-confirm/index.d.ts +0 -27
- package/lib/modules/event-confirm/index.js +0 -76
- package/lib/modules/event-confirm/store.d.ts +0 -50
- package/lib/modules/event-confirm/store.js +0 -394
- package/lib/modules/event-confirm/view.d.ts +0 -2
- package/lib/modules/event-confirm/view.js +0 -55
- package/lib/modules/event-toast/store.d.ts +0 -27
- package/lib/modules/participant/store.d.ts +0 -222
- package/lib/modules/participant/store.js +0 -1929
- package/lib/modules/pc-audio-connect/index.d.ts +0 -22
- package/lib/modules/pc-audio-connect/store.d.ts +0 -46
- package/lib/modules/setting/common/advance-link.d.ts +0 -3
- package/lib/modules/setting/common/advance-link.js +0 -27
- package/lib/modules/setting/common/index.css +0 -26
- package/lib/modules/setting/common/useNamespace.d.ts +0 -15
- package/lib/modules/setting/common/useNamespace.js +0 -66
- package/lib/modules/setting/dialog-wrapper.d.ts +0 -2
- package/lib/modules/setting/dialog-wrapper.js +0 -110
- package/lib/modules/share-screen/store.d.ts +0 -148
- package/lib/modules/share-screen/store.js +0 -950
- package/lib/modules/share-screen/types.d.ts +0 -26
- package/lib/modules/state-bar/store.d.ts +0 -124
- package/lib/modules/whiteboard/components/progress/electron.d.ts +0 -1
- package/lib/modules/whiteboard/components/progress/electron.js +0 -33
- package/lib/modules/widget/store.d.ts +0 -14
- package/lib/providers/annotation-provider.d.ts +0 -124
- package/lib/providers/annotation-provider.js +0 -369
- package/lib/providers/dialog-provider.d.ts +0 -137
- package/lib/providers/dialog-provider.js +0 -194
- package/lib/providers/screen-share-provider.d.ts +0 -246
- package/lib/providers/screen-share-provider.js +0 -850
- package/lib/providers/sharing-provider.d.ts +0 -42
- package/lib/providers/sharing-provider.js +0 -228
- package/lib/providers/user-setting-storage-provider.d.ts +0 -21
- package/lib/providers/whiteboard-provider.d.ts +0 -24
- package/lib/shared-data-source/annotation-data.d.ts +0 -17
- package/lib/shared-data-source/screen-share-data.d.ts +0 -364
- package/lib/shared-data-source/screen-share-data.js +0 -520
- package/lib/shared-data-source/speaker-spotlight.d.ts +0 -5
- package/lib/shared-data-source/whiteboard-data.d.ts +0 -70
- package/lib/utilities/copyText.d.ts +0 -2
- package/lib/utilities/renderer-event.d.ts +0 -10
- package/lib/utilities/renderer-event.js +0 -95
- package/lib/utilities/screen-capture-permission.d.ts +0 -2
- package/lib/utilities/screen-capture-permission.js +0 -24
- package/lib/utilities/screen.js +0 -53
- /package/lib/{modules/action-bar/types.js → creator/type.js} +0 -0
- /package/lib/modules/{control-bar/types.js → components/device-control/type.js} +0 -0
- /package/lib/modules/{share-screen/types.js → components/leave-meeting/type.js} +0 -0
- /package/lib/modules/{annotation/components/expansion/index.d.ts → control-bar/index.dev.d.ts} +0 -0
- /package/lib/modules/{event-confirm → dialog/components/confirm}/index.css +0 -0
- /package/lib/{utilities → shared-context}/video-track-render-context.d.ts +0 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
require("core-js/modules/es.object.define-property.js");
|
|
4
|
+
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.FcrUISharedWidgetDataSourceImpl = void 0;
|
|
9
|
+
require("core-js/modules/es.array.iterator.js");
|
|
10
|
+
require("core-js/modules/es.map.js");
|
|
11
|
+
require("core-js/modules/es.object.to-string.js");
|
|
12
|
+
require("core-js/modules/es.string.iterator.js");
|
|
13
|
+
require("core-js/modules/esnext.map.delete-all.js");
|
|
14
|
+
require("core-js/modules/esnext.map.emplace.js");
|
|
15
|
+
require("core-js/modules/esnext.map.every.js");
|
|
16
|
+
require("core-js/modules/esnext.map.filter.js");
|
|
17
|
+
require("core-js/modules/esnext.map.find.js");
|
|
18
|
+
require("core-js/modules/esnext.map.find-key.js");
|
|
19
|
+
require("core-js/modules/esnext.map.includes.js");
|
|
20
|
+
require("core-js/modules/esnext.map.key-of.js");
|
|
21
|
+
require("core-js/modules/esnext.map.map-keys.js");
|
|
22
|
+
require("core-js/modules/esnext.map.map-values.js");
|
|
23
|
+
require("core-js/modules/esnext.map.merge.js");
|
|
24
|
+
require("core-js/modules/esnext.map.reduce.js");
|
|
25
|
+
require("core-js/modules/esnext.map.some.js");
|
|
26
|
+
require("core-js/modules/esnext.map.update.js");
|
|
27
|
+
require("core-js/modules/web.dom-collections.iterator.js");
|
|
28
|
+
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
29
|
+
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
30
|
+
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
31
|
+
var FcrUISharedWidgetDataSourceImpl = exports.FcrUISharedWidgetDataSourceImpl = /*#__PURE__*/function () {
|
|
32
|
+
function FcrUISharedWidgetDataSourceImpl() {
|
|
33
|
+
(0, _classCallCheck2["default"])(this, FcrUISharedWidgetDataSourceImpl);
|
|
34
|
+
(0, _defineProperty2["default"])(this, "_registeredWidgetConfigs", new Map());
|
|
35
|
+
}
|
|
36
|
+
return (0, _createClass2["default"])(FcrUISharedWidgetDataSourceImpl, [{
|
|
37
|
+
key: "registeredWidgetConfigs",
|
|
38
|
+
get: function get() {
|
|
39
|
+
return this._registeredWidgetConfigs;
|
|
40
|
+
}
|
|
41
|
+
}, {
|
|
42
|
+
key: "release",
|
|
43
|
+
value: function release() {}
|
|
44
|
+
}, {
|
|
45
|
+
key: "setRegisteredWidgetConfigs",
|
|
46
|
+
value: function setRegisteredWidgetConfigs(registeredWidgetConfigs) {
|
|
47
|
+
this._registeredWidgetConfigs = registeredWidgetConfigs;
|
|
48
|
+
}
|
|
49
|
+
}]);
|
|
50
|
+
}();
|
|
@@ -219,6 +219,7 @@ export declare const enUs: {
|
|
|
219
219
|
fmt_audio_popup_label_system_change: string;
|
|
220
220
|
fmt_audio_popup_button_system_change: string;
|
|
221
221
|
fmt_audio_popup_button_cancel: string;
|
|
222
|
+
fmt_audio_popup_button_turning_on: string;
|
|
222
223
|
fmt_popup_copywrite_stopstreamingnow: string;
|
|
223
224
|
fmt_popup_options_confirmstop: string;
|
|
224
225
|
fmt_popup_options_placedbottom: string;
|
|
@@ -245,6 +246,13 @@ export declare const enUs: {
|
|
|
245
246
|
fmt_broadcast_livestream_label_stop_pc_only: string;
|
|
246
247
|
fmt_broadcast_livestream_button_hide: string;
|
|
247
248
|
fmt_broadcast_livestream_button_show: string;
|
|
249
|
+
fmt_livestream_window_label_start_live_now: string;
|
|
250
|
+
fmt_livestream_window_button_not_now: string;
|
|
251
|
+
fmt_livestream_window_button_start_now: string;
|
|
252
|
+
fmt_livestream_toast_live_now: string;
|
|
253
|
+
fmt_livestream_window_button_keep: string;
|
|
254
|
+
fmt_livestream_window_button_end_stream: string;
|
|
255
|
+
fmt_livestream_toast_live_link_copied: string;
|
|
248
256
|
fmt_device_label_audio_mute: string;
|
|
249
257
|
fmt_device_label_audio_unmute: string;
|
|
250
258
|
fmt_device_label_video_start: string;
|
|
@@ -317,6 +325,7 @@ export declare const enUs: {
|
|
|
317
325
|
fmt_device_not_yet: string;
|
|
318
326
|
fmt_device_beauty_on: string;
|
|
319
327
|
fmt_device_options_redness: string;
|
|
328
|
+
fmt_device_toast_switch_device: string;
|
|
320
329
|
fmt_layout_label_speaker: string;
|
|
321
330
|
fmt_layout_label_gallery: string;
|
|
322
331
|
fmt_uimanager_labels_roomname: string;
|
|
@@ -485,9 +494,7 @@ export declare const enUs: {
|
|
|
485
494
|
fmt_screenshare_controlbar_security_list_participantManagement: string;
|
|
486
495
|
fmt_screenshare_button_chosecontent: string;
|
|
487
496
|
fmt_screenshare_tips_newsharing: string;
|
|
488
|
-
fmt_screenshare_label_screenshare: string;
|
|
489
497
|
fmt_screenshare_button_sharewhiteboard: string;
|
|
490
|
-
fmt_screenshare_button_chosewhiteboard: string;
|
|
491
498
|
fmt_screenshare_options_alreadyopend: string;
|
|
492
499
|
fmt_screenshare_options_allow: string;
|
|
493
500
|
fmt_screenshare_options_editable: string;
|
|
@@ -586,6 +593,11 @@ export declare const enUs: {
|
|
|
586
593
|
fmt_screenshare_tips_video_smoothness: string;
|
|
587
594
|
fmt_screenshare_button_share_icloud: string;
|
|
588
595
|
fmt_screenshare_button_stop_share_icloud: string;
|
|
596
|
+
fmt_screenshare_toast_file_type_not_support: string;
|
|
597
|
+
fmt_screenshare_icloud_button_audio_on: string;
|
|
598
|
+
fmt_screenshare_icloud_button_audio_off: string;
|
|
599
|
+
fmt_screenshare_icloud_button_stop_sharing: string;
|
|
600
|
+
fmt_screenshare_toolbar_label_reconnecting: string;
|
|
589
601
|
fmt_screenshare_tips_unenabled: string;
|
|
590
602
|
fmt_screenshare_whiteboard_options_changetheme: string;
|
|
591
603
|
fmt_screenshare_tips_alreadyoriginalsize: string;
|
|
@@ -1240,6 +1252,7 @@ export declare const enUs: {
|
|
|
1240
1252
|
fmt_waitingroom_mobile_notice_popup_label_unable_move_creator: string;
|
|
1241
1253
|
fmt_waitingroom_mobile_notice_popup_label_hi: string;
|
|
1242
1254
|
fmt_waitingroom_mobile_notice_popup_label_message_to_host: string;
|
|
1255
|
+
fmt_waitingroom_toast_removed_participant: string;
|
|
1243
1256
|
fmt_ai_transcriptions_setting_label_source: string;
|
|
1244
1257
|
fmt_ai_transcriptions_setting_label_live_language: string;
|
|
1245
1258
|
fmt_ai_transcriptions_setting_label_translate_to: string;
|
|
@@ -1997,7 +2010,7 @@ export declare const enUs: {
|
|
|
1997
2010
|
fmt_jbh_title_host_not_in_meeting: string;
|
|
1998
2011
|
fmt_jbh_title_host_in_meeting: string;
|
|
1999
2012
|
fmt_jbh_title_meeting_topic: string;
|
|
2013
|
+
fmt_jbh_toast_meeting_not_start: string;
|
|
2000
2014
|
fmt_apps_button_automatic_screenshot: string;
|
|
2001
2015
|
fmt_webinar_tips_welcome_greetings: string;
|
|
2002
|
-
fmt_screenshare_toolbar_label_reconnecting: string;
|
|
2003
2016
|
};
|
package/lib/translations/enUS.js
CHANGED
|
@@ -228,7 +228,8 @@ var enUs = exports.enUs = {
|
|
|
228
228
|
fmt_audio_popup_label_system_change: 'Please change the microphone privileges in system settings',
|
|
229
229
|
fmt_audio_popup_button_system_change: 'Go to system settings to change',
|
|
230
230
|
fmt_audio_popup_button_cancel: 'Cancel',
|
|
231
|
-
|
|
231
|
+
fmt_audio_popup_button_turning_on: 'Turning on...',
|
|
232
|
+
fmt_popup_copywrite_stopstreamingnow: 'Stop Streaming?',
|
|
232
233
|
fmt_popup_options_confirmstop: 'Confirm to stop live streaming',
|
|
233
234
|
fmt_popup_options_placedbottom: 'Move to Bottom',
|
|
234
235
|
fmt_popup_options_placedtop: 'Move to Top',
|
|
@@ -254,6 +255,13 @@ var enUs = exports.enUs = {
|
|
|
254
255
|
fmt_broadcast_livestream_label_stop_pc_only: 'Live streaming can only be stopped on the computer, but you can copy the live streaming link to others',
|
|
255
256
|
fmt_broadcast_livestream_button_hide: 'Hide',
|
|
256
257
|
fmt_broadcast_livestream_button_show: 'Show',
|
|
258
|
+
fmt_livestream_window_label_start_live_now: 'Start live stream now?',
|
|
259
|
+
fmt_livestream_window_button_not_now: 'Not Now',
|
|
260
|
+
fmt_livestream_window_button_start_now: 'Start Now',
|
|
261
|
+
fmt_livestream_toast_live_now: 'Live Now',
|
|
262
|
+
fmt_livestream_window_button_keep: 'Keep Streaming',
|
|
263
|
+
fmt_livestream_window_button_end_stream: 'End Stream',
|
|
264
|
+
fmt_livestream_toast_live_link_copied: 'Live link copied!',
|
|
257
265
|
//****************** 设备检测&管理 ******************
|
|
258
266
|
fmt_device_label_audio_mute: 'Mute',
|
|
259
267
|
fmt_device_label_audio_unmute: 'Unmute',
|
|
@@ -328,6 +336,7 @@ var enUs = exports.enUs = {
|
|
|
328
336
|
fmt_device_not_yet: 'Not yet',
|
|
329
337
|
fmt_device_beauty_on: 'Open',
|
|
330
338
|
fmt_device_options_redness: 'Rosy',
|
|
339
|
+
fmt_device_toast_switch_device: 'Your audio device:{reason1} has been switched, please check your volume so you don`t miss the meeting audio.',
|
|
331
340
|
fmt_layout_label_speaker: 'Presenter View',
|
|
332
341
|
fmt_layout_label_gallery: 'Gallery view',
|
|
333
342
|
fmt_uimanager_labels_roomname: 'Room Name',
|
|
@@ -496,9 +505,7 @@ var enUs = exports.enUs = {
|
|
|
496
505
|
fmt_screenshare_controlbar_security_list_participantManagement: 'Allow attendees',
|
|
497
506
|
fmt_screenshare_button_chosecontent: 'Select shared content',
|
|
498
507
|
fmt_screenshare_tips_newsharing: 'Initiate a new sharing',
|
|
499
|
-
fmt_screenshare_label_screenshare: 'Share Screen',
|
|
500
508
|
fmt_screenshare_button_sharewhiteboard: 'Share Whiteboard',
|
|
501
|
-
fmt_screenshare_button_chosewhiteboard: 'Close whiteboard',
|
|
502
509
|
fmt_screenshare_options_alreadyopend: 'Whiteboard (Already ON)',
|
|
503
510
|
fmt_screenshare_options_allow: 'Allow attendees',
|
|
504
511
|
fmt_screenshare_options_editable: 'Annotate and edit whiteboards',
|
|
@@ -597,6 +604,11 @@ var enUs = exports.enUs = {
|
|
|
597
604
|
fmt_screenshare_tips_video_smoothness: 'Prioritize video smoothness by reducing CPU usage and optimizing screen sharing frame rate.',
|
|
598
605
|
fmt_screenshare_button_share_icloud: 'Share files with iCloud file',
|
|
599
606
|
fmt_screenshare_button_stop_share_icloud: 'Stop iCloud file sharing',
|
|
607
|
+
fmt_screenshare_toast_file_type_not_support: 'Sharing for this file type is not supported.',
|
|
608
|
+
fmt_screenshare_icloud_button_audio_on: 'Audio: On',
|
|
609
|
+
fmt_screenshare_icloud_button_audio_off: 'Audio: Off',
|
|
610
|
+
fmt_screenshare_icloud_button_stop_sharing: 'Stop sharing',
|
|
611
|
+
fmt_screenshare_toolbar_label_reconnecting: 'Network disconnected, reconnecting...',
|
|
600
612
|
fmt_screenshare_tips_unenabled: 'The conference administrator has not enabled the whiteboard editing function',
|
|
601
613
|
fmt_screenshare_whiteboard_options_changetheme: 'Change whiteboard theme',
|
|
602
614
|
fmt_screenshare_tips_alreadyoriginalsize: "It is already 'original size'",
|
|
@@ -845,7 +857,7 @@ var enUs = exports.enUs = {
|
|
|
845
857
|
fmt_setting_option_3ahigh: 'High',
|
|
846
858
|
fmt_setting_label_professional: 'Music and Professional Audio',
|
|
847
859
|
fmt_setting_option_orinalvoise: 'Display the option in the meeting in case of you want to turn the original sound',
|
|
848
|
-
fmt_setting_tips_speaker:
|
|
860
|
+
fmt_setting_tips_speaker: 'Click to test the speaker',
|
|
849
861
|
fmt_setting_tips_mic: 'Please speak into your microphone. If you cannot hear your own voice, please replace the microphone',
|
|
850
862
|
fmt_setting_tips_speaker_unwork: 'If you cannot hear the test sound, please replace the speaker',
|
|
851
863
|
fmt_setting_tips_mic_unwork: 'If you cannot hear the test sound, please replace the microphone',
|
|
@@ -1265,6 +1277,7 @@ var enUs = exports.enUs = {
|
|
|
1265
1277
|
fmt_waitingroom_mobile_notice_popup_label_unable_move_creator: 'Unable to move room creator into waiting room',
|
|
1266
1278
|
fmt_waitingroom_mobile_notice_popup_label_hi: 'Hi, {reason1}',
|
|
1267
1279
|
fmt_waitingroom_mobile_notice_popup_label_message_to_host: 'You can click here to send a message to the host.',
|
|
1280
|
+
fmt_waitingroom_toast_removed_participant: '{reason1} has been removed from the waiting room.',
|
|
1268
1281
|
fmt_ai_transcriptions_setting_label_source: 'Source language',
|
|
1269
1282
|
fmt_ai_transcriptions_setting_label_live_language: 'Live language ',
|
|
1270
1283
|
fmt_ai_transcriptions_setting_label_translate_to: 'Translate to ',
|
|
@@ -1329,7 +1342,7 @@ var enUs = exports.enUs = {
|
|
|
1329
1342
|
fmt_ai_subtitles_window_label_request_enable_rtt: 'Request host to enable real-time transcription',
|
|
1330
1343
|
fmt_ai_subtitles_window_label_request_enable_rtt_content: 'Once enabled, meeting dialogues will be transcribed into text, accessible to all participants.',
|
|
1331
1344
|
fmt_ai_subtitles_window_button_send: 'Send Request',
|
|
1332
|
-
fmt_ai_subtitles_toast_rtt_request_sent: 'Request Sent',
|
|
1345
|
+
fmt_ai_subtitles_toast_rtt_request_sent: 'Request Sent',
|
|
1333
1346
|
fmt_ai_subtitles_toast_rtt_host_declined_request: 'Host declined your real-time transcription request.',
|
|
1334
1347
|
fmt_ai_rtt_window_label_enable_request: 'Real-time transcription request',
|
|
1335
1348
|
fmt_ai_rtt_window_label_enable_request_content: '{reason1} requested real-time transcription for the meeting. Once enabled, all participants can access the transcribed content.',
|
|
@@ -1537,7 +1550,7 @@ var enUs = exports.enUs = {
|
|
|
1537
1550
|
fmt_premeeting_setting_label_automatically_adjust_volume: 'Automatically adjust {reason1} volume',
|
|
1538
1551
|
fmt_premeeting_setting_label_microphone: 'Microphone',
|
|
1539
1552
|
fmt_premeeting_setting_button_test_microphone: 'Test Microphone',
|
|
1540
|
-
fmt_premeeting_setting_label_speak_into_your_microphone:
|
|
1553
|
+
fmt_premeeting_setting_label_speak_into_your_microphone: 'Click to test the microphone',
|
|
1541
1554
|
fmt_premeeting_setting_button_recording: 'Recording',
|
|
1542
1555
|
fmt_premeeting_setting_label_change_the_microphone: 'If you cannot hear the test sound, please change the microphone.',
|
|
1543
1556
|
fmt_premeeting_setting_label_input_level: 'Input Level',
|
|
@@ -2041,9 +2054,9 @@ var enUs = exports.enUs = {
|
|
|
2041
2054
|
fmt_jbh_title_host_not_in_meeting: 'The meeting has not started yet',
|
|
2042
2055
|
fmt_jbh_title_host_in_meeting: 'Please wait.The host will let you into the meeting soon.',
|
|
2043
2056
|
fmt_jbh_title_meeting_topic: 'Meeting Topic',
|
|
2057
|
+
fmt_jbh_toast_meeting_not_start: "The meeting hasn't started yet. Please try again later.",
|
|
2044
2058
|
//****************** APPS ******************
|
|
2045
|
-
fmt_apps_button_automatic_screenshot: 'Automatic screenshot',
|
|
2059
|
+
fmt_apps_button_automatic_screenshot: 'Automatic screenshot',
|
|
2046
2060
|
//****************** Webinar ******************
|
|
2047
|
-
fmt_webinar_tips_welcome_greetings: '{英文欢迎语} '
|
|
2048
|
-
fmt_screenshare_toolbar_label_reconnecting: 'Network disconnected, reconnecting...'
|
|
2061
|
+
fmt_webinar_tips_welcome_greetings: '{英文欢迎语} '
|
|
2049
2062
|
};
|
|
@@ -219,6 +219,7 @@ export declare const zhCn: {
|
|
|
219
219
|
fmt_audio_popup_label_system_change: string;
|
|
220
220
|
fmt_audio_popup_button_system_change: string;
|
|
221
221
|
fmt_audio_popup_button_cancel: string;
|
|
222
|
+
fmt_audio_popup_button_turning_on: string;
|
|
222
223
|
fmt_popup_copywrite_stopstreamingnow: string;
|
|
223
224
|
fmt_popup_options_confirmstop: string;
|
|
224
225
|
fmt_popup_options_placedbottom: string;
|
|
@@ -245,6 +246,13 @@ export declare const zhCn: {
|
|
|
245
246
|
fmt_broadcast_livestream_label_stop_pc_only: string;
|
|
246
247
|
fmt_broadcast_livestream_button_hide: string;
|
|
247
248
|
fmt_broadcast_livestream_button_show: string;
|
|
249
|
+
fmt_livestream_window_label_start_live_now: string;
|
|
250
|
+
fmt_livestream_window_button_not_now: string;
|
|
251
|
+
fmt_livestream_window_button_start_now: string;
|
|
252
|
+
fmt_livestream_toast_live_now: string;
|
|
253
|
+
fmt_livestream_window_button_keep: string;
|
|
254
|
+
fmt_livestream_window_button_end_stream: string;
|
|
255
|
+
fmt_livestream_toast_live_link_copied: string;
|
|
248
256
|
fmt_device_label_audio_mute: string;
|
|
249
257
|
fmt_device_label_audio_unmute: string;
|
|
250
258
|
fmt_device_label_video_start: string;
|
|
@@ -317,6 +325,7 @@ export declare const zhCn: {
|
|
|
317
325
|
fmt_device_not_yet: string;
|
|
318
326
|
fmt_device_beauty_on: string;
|
|
319
327
|
fmt_device_options_redness: string;
|
|
328
|
+
fmt_device_toast_switch_device: string;
|
|
320
329
|
fmt_layout_label_speaker: string;
|
|
321
330
|
fmt_layout_label_gallery: string;
|
|
322
331
|
fmt_uimanager_labels_roomname: string;
|
|
@@ -485,9 +494,7 @@ export declare const zhCn: {
|
|
|
485
494
|
fmt_screenshare_controlbar_security_list_participantManagement: string;
|
|
486
495
|
fmt_screenshare_button_chosecontent: string;
|
|
487
496
|
fmt_screenshare_tips_newsharing: string;
|
|
488
|
-
fmt_screenshare_label_screenshare: string;
|
|
489
497
|
fmt_screenshare_button_sharewhiteboard: string;
|
|
490
|
-
fmt_screenshare_button_chosewhiteboard: string;
|
|
491
498
|
fmt_screenshare_options_alreadyopend: string;
|
|
492
499
|
fmt_screenshare_options_allow: string;
|
|
493
500
|
fmt_screenshare_options_editable: string;
|
|
@@ -586,6 +593,11 @@ export declare const zhCn: {
|
|
|
586
593
|
fmt_screenshare_tips_video_smoothness: string;
|
|
587
594
|
fmt_screenshare_button_share_icloud: string;
|
|
588
595
|
fmt_screenshare_button_stop_share_icloud: string;
|
|
596
|
+
fmt_screenshare_toast_file_type_not_support: string;
|
|
597
|
+
fmt_screenshare_icloud_button_audio_on: string;
|
|
598
|
+
fmt_screenshare_icloud_button_audio_off: string;
|
|
599
|
+
fmt_screenshare_icloud_button_stop_sharing: string;
|
|
600
|
+
fmt_screenshare_toolbar_label_reconnecting: string;
|
|
589
601
|
fmt_screenshare_tips_unenabled: string;
|
|
590
602
|
fmt_screenshare_whiteboard_options_changetheme: string;
|
|
591
603
|
fmt_screenshare_tips_alreadyoriginalsize: string;
|
|
@@ -1240,6 +1252,7 @@ export declare const zhCn: {
|
|
|
1240
1252
|
fmt_waitingroom_mobile_notice_popup_label_unable_move_creator: string;
|
|
1241
1253
|
fmt_waitingroom_mobile_notice_popup_label_hi: string;
|
|
1242
1254
|
fmt_waitingroom_mobile_notice_popup_label_message_to_host: string;
|
|
1255
|
+
fmt_waitingroom_toast_removed_participant: string;
|
|
1243
1256
|
fmt_ai_transcriptions_setting_label_source: string;
|
|
1244
1257
|
fmt_ai_transcriptions_setting_label_live_language: string;
|
|
1245
1258
|
fmt_ai_transcriptions_setting_label_translate_to: string;
|
|
@@ -1995,7 +2008,7 @@ export declare const zhCn: {
|
|
|
1995
2008
|
fmt_jbh_title_host_not_in_meeting: string;
|
|
1996
2009
|
fmt_jbh_title_host_in_meeting: string;
|
|
1997
2010
|
fmt_jbh_title_meeting_topic: string;
|
|
2011
|
+
fmt_jbh_toast_meeting_not_start: string;
|
|
1998
2012
|
fmt_apps_button_automatic_screenshot: string;
|
|
1999
2013
|
fmt_webinar_tips_welcome_greetings: string;
|
|
2000
|
-
fmt_screenshare_toolbar_label_reconnecting: string;
|
|
2001
2014
|
};
|
package/lib/translations/zhCN.js
CHANGED
|
@@ -228,7 +228,8 @@ var zhCn = exports.zhCn = {
|
|
|
228
228
|
fmt_audio_popup_label_system_change: '请到系统设置中修改麦克风权限',
|
|
229
229
|
fmt_audio_popup_button_system_change: '去系统设置修改',
|
|
230
230
|
fmt_audio_popup_button_cancel: '取消',
|
|
231
|
-
|
|
231
|
+
fmt_audio_popup_button_turning_on: '开启中...',
|
|
232
|
+
fmt_popup_copywrite_stopstreamingnow: '是否停止直播?',
|
|
232
233
|
fmt_popup_options_confirmstop: '确定停止直播',
|
|
233
234
|
fmt_popup_options_placedbottom: '置于底部',
|
|
234
235
|
fmt_popup_options_placedtop: '置于顶部',
|
|
@@ -238,9 +239,9 @@ var zhCn = exports.zhCn = {
|
|
|
238
239
|
fmt_broadcast_tips_rightstreamingwebpage: '请输入正确的直播网页的网址',
|
|
239
240
|
fmt_broadcast_tips_initiatefailed: '发起失败',
|
|
240
241
|
fmt_broadcast_tips_alreadybroadcasting: '你目前已发起直播服务,需停止后才能发起新直播',
|
|
241
|
-
fmt_additional_tips_startstreamingfailed: '
|
|
242
|
+
fmt_additional_tips_startstreamingfailed: '启动直播失败,请稍后再试',
|
|
242
243
|
fmt_additional_tips_updatelayoutfailed: '更新直播流布局失败',
|
|
243
|
-
fmt_additional_tips_stoplivefailed: '
|
|
244
|
+
fmt_additional_tips_stoplivefailed: '停止直播失败,请稍后再试',
|
|
244
245
|
fmt_actionbar_livestreaming_option_livenow: '现在就开始自定义直播',
|
|
245
246
|
fmt_actionbar_livestreaming_option_customlive: '自定义直播服务中',
|
|
246
247
|
fmt_actionbar_livestreaming_button_stoplive: '停止直播',
|
|
@@ -254,6 +255,13 @@ var zhCn = exports.zhCn = {
|
|
|
254
255
|
fmt_broadcast_livestream_label_stop_pc_only: '只能在电脑端停止直播,但你可复制直播链接给他人',
|
|
255
256
|
fmt_broadcast_livestream_button_hide: '隐藏',
|
|
256
257
|
fmt_broadcast_livestream_button_show: '显示',
|
|
258
|
+
fmt_livestream_window_label_start_live_now: '是否开启直播',
|
|
259
|
+
fmt_livestream_window_button_not_now: '暂不开始',
|
|
260
|
+
fmt_livestream_window_button_start_now: '立即开始',
|
|
261
|
+
fmt_livestream_toast_live_now: '直播已开启',
|
|
262
|
+
fmt_livestream_window_button_keep: '暂不停止',
|
|
263
|
+
fmt_livestream_window_button_end_stream: '立即停止',
|
|
264
|
+
fmt_livestream_toast_live_link_copied: '直播链接已复制到粘贴版',
|
|
257
265
|
//****************** 设备检测&管理 ******************
|
|
258
266
|
fmt_device_label_audio_mute: '静音',
|
|
259
267
|
fmt_device_label_audio_unmute: '解除静音',
|
|
@@ -328,6 +336,7 @@ var zhCn = exports.zhCn = {
|
|
|
328
336
|
fmt_device_not_yet: '暂不',
|
|
329
337
|
fmt_device_beauty_on: '开启',
|
|
330
338
|
fmt_device_options_redness: '红润',
|
|
339
|
+
fmt_device_toast_switch_device: '您的音频设备:{reason1} 已切换,建议检查音量,避免错过会议内容',
|
|
331
340
|
fmt_layout_label_speaker: '演讲者视图',
|
|
332
341
|
fmt_layout_label_gallery: '画廊视图',
|
|
333
342
|
fmt_uimanager_labels_roomname: '房间名称',
|
|
@@ -496,9 +505,7 @@ var zhCn = exports.zhCn = {
|
|
|
496
505
|
fmt_screenshare_controlbar_security_list_participantManagement: '允许参会者',
|
|
497
506
|
fmt_screenshare_button_chosecontent: '选择共享内容',
|
|
498
507
|
fmt_screenshare_tips_newsharing: '发起新的屏幕共享',
|
|
499
|
-
fmt_screenshare_label_screenshare: '屏幕共享',
|
|
500
508
|
fmt_screenshare_button_sharewhiteboard: '共享白板',
|
|
501
|
-
fmt_screenshare_button_chosewhiteboard: '关闭白板',
|
|
502
509
|
fmt_screenshare_options_alreadyopend: '共享白板(其他人已开启)',
|
|
503
510
|
fmt_screenshare_options_allow: '允许参会者',
|
|
504
511
|
fmt_screenshare_options_editable: '可标注和编辑白板',
|
|
@@ -597,6 +604,11 @@ var zhCn = exports.zhCn = {
|
|
|
597
604
|
fmt_screenshare_tips_video_smoothness: '减少性能占用,提高共享画面的帧率',
|
|
598
605
|
fmt_screenshare_button_share_icloud: '共享iCloud文档',
|
|
599
606
|
fmt_screenshare_button_stop_share_icloud: '停止共享iCloud文档',
|
|
607
|
+
fmt_screenshare_toast_file_type_not_support: '不支持共享该文件类型',
|
|
608
|
+
fmt_screenshare_icloud_button_audio_on: '音频:开',
|
|
609
|
+
fmt_screenshare_icloud_button_audio_off: '音频:关',
|
|
610
|
+
fmt_screenshare_icloud_button_stop_sharing: '停止共享',
|
|
611
|
+
fmt_screenshare_toolbar_label_reconnecting: '网络已断开,正在重连...',
|
|
600
612
|
fmt_screenshare_tips_unenabled: '会议管理员未开放白板编辑功能',
|
|
601
613
|
fmt_screenshare_whiteboard_options_changetheme: '更改白板主题',
|
|
602
614
|
fmt_screenshare_tips_alreadyoriginalsize: '已是“原始尺寸”',
|
|
@@ -845,7 +857,7 @@ var zhCn = exports.zhCn = {
|
|
|
845
857
|
fmt_setting_option_3ahigh: '高',
|
|
846
858
|
fmt_setting_label_professional: '音乐和专业音频',
|
|
847
859
|
fmt_setting_option_orinalvoise: '显示会议中选项,以通过麦克风“打开原声”',
|
|
848
|
-
fmt_setting_tips_speaker: '
|
|
860
|
+
fmt_setting_tips_speaker: '点击测试扬声器',
|
|
849
861
|
fmt_setting_tips_mic: '请对着你的麦克风说话。如果你无法听到自己的声音,请更换麦克风',
|
|
850
862
|
fmt_setting_tips_speaker_unwork: '如果你无法听到测试音,请更换扬声器',
|
|
851
863
|
fmt_setting_tips_mic_unwork: '如果你无法听到测试音,请更换麦克风',
|
|
@@ -1265,6 +1277,7 @@ var zhCn = exports.zhCn = {
|
|
|
1265
1277
|
fmt_waitingroom_mobile_notice_popup_label_unable_move_creator: '无法将房间创建者移入等候室',
|
|
1266
1278
|
fmt_waitingroom_mobile_notice_popup_label_hi: '你好,{reason1}',
|
|
1267
1279
|
fmt_waitingroom_mobile_notice_popup_label_message_to_host: '你可以点击这里发送信息给会议管理员',
|
|
1280
|
+
fmt_waitingroom_toast_removed_participant: '{reason1}已被移出等候室',
|
|
1268
1281
|
fmt_ai_transcriptions_setting_label_source: '声源语言',
|
|
1269
1282
|
fmt_ai_transcriptions_setting_label_live_language: '现场说的语言 ',
|
|
1270
1283
|
fmt_ai_transcriptions_setting_label_translate_to: '翻译为',
|
|
@@ -1537,7 +1550,7 @@ var zhCn = exports.zhCn = {
|
|
|
1537
1550
|
fmt_premeeting_setting_label_automatically_adjust_volume: '自动调整{xxxxx}音量',
|
|
1538
1551
|
fmt_premeeting_setting_label_microphone: '麦克风',
|
|
1539
1552
|
fmt_premeeting_setting_button_test_microphone: '检测麦克风',
|
|
1540
|
-
fmt_premeeting_setting_label_speak_into_your_microphone: '
|
|
1553
|
+
fmt_premeeting_setting_label_speak_into_your_microphone: '点击测试麦克风',
|
|
1541
1554
|
fmt_premeeting_setting_button_recording: '录制中',
|
|
1542
1555
|
fmt_premeeting_setting_label_change_the_microphone: '如果你无法听到测试音,请更换麦克风',
|
|
1543
1556
|
fmt_premeeting_setting_label_input_level: '输入级别',
|
|
@@ -2039,9 +2052,9 @@ var zhCn = exports.zhCn = {
|
|
|
2039
2052
|
fmt_jbh_title_host_not_in_meeting: '会议未开始,等待主持人进入',
|
|
2040
2053
|
fmt_jbh_title_host_in_meeting: '请稍等,主持人即将邀请您入会',
|
|
2041
2054
|
fmt_jbh_title_meeting_topic: '会议主题',
|
|
2055
|
+
fmt_jbh_toast_meeting_not_start: '会议暂未开始,请稍后再试',
|
|
2042
2056
|
//****************** APPS ******************
|
|
2043
2057
|
fmt_apps_button_automatic_screenshot: '自动截屏',
|
|
2044
2058
|
//****************** Webinar ******************
|
|
2045
|
-
fmt_webinar_tips_welcome_greetings: '{中文欢迎语} '
|
|
2046
|
-
fmt_screenshare_toolbar_label_reconnecting: '网络已断开,正在重连...'
|
|
2059
|
+
fmt_webinar_tips_welcome_greetings: '{中文欢迎语} '
|
|
2047
2060
|
};
|
package/lib/type.d.ts
CHANGED
|
@@ -42,21 +42,6 @@ export type FcrUISceneCreatorConfig = FcrUISceneCreatorConfigSchema;
|
|
|
42
42
|
* FcrUISceneConfig interface represents the configuration for a UI scene.
|
|
43
43
|
*/
|
|
44
44
|
export type FcrUISceneConfig = FcrUISceneConfigSchema;
|
|
45
|
-
/**
|
|
46
|
-
* FcrUIDeviceSettingObserver interface represents an observer for a device setting.
|
|
47
|
-
*/
|
|
48
|
-
export interface FcrUIDeviceSettingObserver {
|
|
49
|
-
/**
|
|
50
|
-
* Called when the setting store is created.
|
|
51
|
-
*
|
|
52
|
-
* @param store - The setting store.
|
|
53
|
-
*/
|
|
54
|
-
onSettingStore?: (store: SettingStore) => void;
|
|
55
|
-
/**
|
|
56
|
-
* Called when the setting dialog is opened.
|
|
57
|
-
*/
|
|
58
|
-
onOpenSettingDialog?: () => void;
|
|
59
|
-
}
|
|
60
45
|
/**
|
|
61
46
|
* FcrUISceneObserver interface represents an observer for a UI scene.
|
|
62
47
|
*/
|
|
@@ -90,6 +75,10 @@ export interface FcrUISceneObserver {
|
|
|
90
75
|
*/
|
|
91
76
|
onWidgetClicked?: (widgetId: string) => void;
|
|
92
77
|
}
|
|
78
|
+
export interface FcrUISceneInternalObserver extends FcrUISceneObserver {
|
|
79
|
+
onSceneMounted?: () => void;
|
|
80
|
+
onSceneUnmounted?: () => void;
|
|
81
|
+
}
|
|
93
82
|
export type FcrUISceneCancelCallback = FcrUISceneCallbackSchema;
|
|
94
83
|
export type FcrUISceneSuccessCallback = FcrUISceneCallbackSchema;
|
|
95
84
|
export type FcrUISceneFailureCallback = FcrUISceneFailureCallbackSchema;
|
|
@@ -128,13 +117,6 @@ export interface FcrUIBaseWidgetConfig {
|
|
|
128
117
|
* If not set or set to an empty array, all roles can use the widget.
|
|
129
118
|
*/
|
|
130
119
|
supportedRoles?: FcrUserRole[];
|
|
131
|
-
/**
|
|
132
|
-
* The popup size of the widget (PC).
|
|
133
|
-
*/
|
|
134
|
-
popupSize?: {
|
|
135
|
-
width: number;
|
|
136
|
-
height: number;
|
|
137
|
-
};
|
|
138
120
|
/**
|
|
139
121
|
* The type of the widget.
|
|
140
122
|
*/
|
|
@@ -144,12 +126,15 @@ export interface FcrUIBaseWidgetConfig {
|
|
|
144
126
|
* FcrUIWebWidgetConfig interface extends FcrUIBaseWidgetConfig and represents
|
|
145
127
|
* the configuration for a web-based widget.
|
|
146
128
|
*/
|
|
147
|
-
|
|
129
|
+
type FcrUIWebWidgetTypeConfig = FcrUIBaseWidgetConfig & {
|
|
148
130
|
type: FcrWidgetType.webWidget;
|
|
149
131
|
url: string;
|
|
150
|
-
|
|
132
|
+
popupSize: FcrPopupSize;
|
|
133
|
+
};
|
|
134
|
+
type FcrUIEventWidgetTypeWithUrl = FcrUIBaseWidgetConfig & {
|
|
151
135
|
type: Exclude<FcrWidgetType, FcrWidgetType.webWidget>;
|
|
152
|
-
}
|
|
136
|
+
};
|
|
137
|
+
export type FcrUIWebWidgetConfig = FcrUIWebWidgetTypeConfig | FcrUIEventWidgetTypeWithUrl;
|
|
153
138
|
export type FcrUIBeautyKey = 'none' | 'smoothnessLevel' | 'lighteningLevel' | 'lighteningLevel';
|
|
154
139
|
export interface FcrUIDeviceObserver {
|
|
155
140
|
/**
|
|
@@ -190,6 +175,11 @@ export interface FcrUIDeviceObserver {
|
|
|
190
175
|
* 音频已连接
|
|
191
176
|
*/
|
|
192
177
|
onAudioConnected?(): void;
|
|
178
|
+
/**
|
|
179
|
+
* 系统选中设备变更
|
|
180
|
+
* @param device
|
|
181
|
+
*/
|
|
182
|
+
onSystemSelectedDeviceChanged?(device: FcrDeviceInfo): void;
|
|
193
183
|
}
|
|
194
184
|
export declare enum FcrUIVideoEffectType {
|
|
195
185
|
NONE = 0,
|
|
@@ -365,7 +355,10 @@ export type FcrUIJoinRoomResponse = FcrBaseRoomControl;
|
|
|
365
355
|
import { FcrRoomConnectorType, FcrVideoSourceType } from 'fcr-core';
|
|
366
356
|
import { FcrUserRole } from 'fcr-core/lib/type';
|
|
367
357
|
import { FcrUISceneCallbackSchema, FcrUISceneConfigSchema, FcrUISceneCreatorConfigSchema, FcrUISceneFailureCallbackSchema } from './schema';
|
|
368
|
-
import
|
|
358
|
+
import { FcrUIProviderInitializer } from './creator/type';
|
|
359
|
+
import { FcrPopupSize, FcrRegisteredWidgetConfigs } from './modules/widget/type';
|
|
360
|
+
import { FcrUIObjectManager } from './object-manager';
|
|
361
|
+
import { FcrUICustomSetting } from './modules/setting/type';
|
|
369
362
|
export declare enum FcrUIVideoWindowLayoutType {
|
|
370
363
|
/** Show a carousel on top and a big video on the rest of the screen. */
|
|
371
364
|
Speaker = "speaker",
|
|
@@ -436,59 +429,6 @@ export interface FcrUIVideoWindowData {
|
|
|
436
429
|
hasBoardSharing: boolean;
|
|
437
430
|
avatar?: string;
|
|
438
431
|
}
|
|
439
|
-
export interface WindowManagerIRectangle {
|
|
440
|
-
x?: number;
|
|
441
|
-
y?: number;
|
|
442
|
-
width?: number;
|
|
443
|
-
height?: number;
|
|
444
|
-
}
|
|
445
|
-
export interface WindowManagerIMonitorInfo {
|
|
446
|
-
id: number;
|
|
447
|
-
bounds?: WindowManagerIRectangle;
|
|
448
|
-
isPrimary?: boolean;
|
|
449
|
-
workArea?: WindowManagerIRectangle;
|
|
450
|
-
}
|
|
451
|
-
export declare class WindowManagerMonitor {
|
|
452
|
-
id: number;
|
|
453
|
-
constructor(id: number);
|
|
454
|
-
getBounds(): WindowManagerIRectangle;
|
|
455
|
-
getWorkArea(): WindowManagerIRectangle;
|
|
456
|
-
isPrimary(): boolean;
|
|
457
|
-
getScaleFactor(): number;
|
|
458
|
-
isValid(): boolean;
|
|
459
|
-
}
|
|
460
|
-
export declare class WindowManagerEmptyMonitor {
|
|
461
|
-
getBounds(): WindowManagerIRectangle;
|
|
462
|
-
getWorkArea(): WindowManagerIRectangle;
|
|
463
|
-
isPrimary(): boolean;
|
|
464
|
-
getScaleFactor(): number;
|
|
465
|
-
isValid(): boolean;
|
|
466
|
-
}
|
|
467
|
-
export declare class WindowManager {
|
|
468
|
-
id: number;
|
|
469
|
-
processId: number;
|
|
470
|
-
path: string;
|
|
471
|
-
constructor(id: number);
|
|
472
|
-
getBounds(): WindowManagerIRectangle;
|
|
473
|
-
setBounds(bounds: WindowManagerIRectangle): void;
|
|
474
|
-
getTitle(): string;
|
|
475
|
-
getMonitor(): WindowManagerMonitor | WindowManagerEmptyMonitor;
|
|
476
|
-
show(): void;
|
|
477
|
-
hide(): void;
|
|
478
|
-
minimize(): void;
|
|
479
|
-
restore(): void;
|
|
480
|
-
maximize(): void;
|
|
481
|
-
bringToTop(): void;
|
|
482
|
-
redraw(): void;
|
|
483
|
-
isWindow(): boolean;
|
|
484
|
-
isVisible(): boolean;
|
|
485
|
-
toggleTransparency(toggle: boolean): void;
|
|
486
|
-
setOpacity(opacity: number): void;
|
|
487
|
-
getOpacity(): any;
|
|
488
|
-
getIcon(size?: 16 | 32 | 64 | 256): Buffer;
|
|
489
|
-
setOwner(window: Window | null | number): void;
|
|
490
|
-
getOwner(): Window;
|
|
491
|
-
}
|
|
492
432
|
export declare enum FcrUIAiDenoiseLevel {
|
|
493
433
|
LOW = 1,
|
|
494
434
|
MEDIUM = 2,
|
|
@@ -496,3 +436,54 @@ export declare enum FcrUIAiDenoiseLevel {
|
|
|
496
436
|
CLOSE = 4
|
|
497
437
|
}
|
|
498
438
|
export type FcrUiResourceType = 'image' | 'video' | 'audio';
|
|
439
|
+
export type FcrUIDefaultSceneConstructorArgs = {
|
|
440
|
+
registeredWidgetConfigs: FcrRegisteredWidgetConfigs;
|
|
441
|
+
objectManager: FcrUIObjectManager;
|
|
442
|
+
providerInitializer: FcrUIProviderInitializer;
|
|
443
|
+
};
|
|
444
|
+
export interface FcrUIScene {
|
|
445
|
+
/**
|
|
446
|
+
*
|
|
447
|
+
* @param dom
|
|
448
|
+
*/
|
|
449
|
+
launch(dom: HTMLElement): void;
|
|
450
|
+
/**
|
|
451
|
+
*
|
|
452
|
+
*/
|
|
453
|
+
exit(): void;
|
|
454
|
+
/**
|
|
455
|
+
*
|
|
456
|
+
* @param observer
|
|
457
|
+
*/
|
|
458
|
+
addObserver(observer: FcrUISceneObserver): void;
|
|
459
|
+
/**
|
|
460
|
+
*
|
|
461
|
+
* @param observer
|
|
462
|
+
*/
|
|
463
|
+
removeObserver(observer: FcrUISceneObserver): void;
|
|
464
|
+
}
|
|
465
|
+
export interface FcrUISceneFacadeInternal extends FcrUIScene {
|
|
466
|
+
/**
|
|
467
|
+
*
|
|
468
|
+
* @param observer
|
|
469
|
+
*/
|
|
470
|
+
addObserver(observer: FcrUISceneInternalObserver): void;
|
|
471
|
+
/**
|
|
472
|
+
*
|
|
473
|
+
* @param observer
|
|
474
|
+
*/
|
|
475
|
+
removeObserver(observer: FcrUISceneInternalObserver): void;
|
|
476
|
+
}
|
|
477
|
+
export declare enum FcrUIGlobalNodeEventType {
|
|
478
|
+
LAUNCH_SUCCESS = "launchSuccess",
|
|
479
|
+
LAUNCH_FAILURE = "launchFailure",
|
|
480
|
+
LAUNCH_CANCEL = "launchCancel",
|
|
481
|
+
EXITED = "exited",
|
|
482
|
+
SCENE_MOUNTED = "sceneMounted",
|
|
483
|
+
SCENE_UNMOUNTED = "sceneUnmounted"
|
|
484
|
+
}
|
|
485
|
+
export declare enum FcrUIMicrophoneState {
|
|
486
|
+
MUTE = "mute",
|
|
487
|
+
UNMUTE = "unmute",
|
|
488
|
+
OPENING = "opening"
|
|
489
|
+
}
|
package/lib/type.js
CHANGED
|
@@ -16,7 +16,7 @@ Object.defineProperty(exports, "FcrStreamLatencyLevel", {
|
|
|
16
16
|
return _fcrCore.FcrStreamLatencyLevel;
|
|
17
17
|
}
|
|
18
18
|
});
|
|
19
|
-
exports.FcrUIWindowType = exports.FcrUIVideoWindowMainSortingPriority = exports.FcrUIVideoWindowLayoutType = exports.FcrUIVideoWindowFoldSortingPriority = exports.FcrUIVideoEffectType = exports.FcrUIRoomType = exports.FcrUINotificationContentType = exports.FcrUIExitReason = exports.FcrUIConnectType = exports.FcrUIAiDenoiseLevel = void 0;
|
|
19
|
+
exports.FcrUIWindowType = exports.FcrUIVideoWindowMainSortingPriority = exports.FcrUIVideoWindowLayoutType = exports.FcrUIVideoWindowFoldSortingPriority = exports.FcrUIVideoEffectType = exports.FcrUIRoomType = exports.FcrUINotificationContentType = exports.FcrUIMicrophoneState = exports.FcrUIGlobalNodeEventType = exports.FcrUIExitReason = exports.FcrUIConnectType = exports.FcrUIAiDenoiseLevel = void 0;
|
|
20
20
|
Object.defineProperty(exports, "FcrUserRole", {
|
|
21
21
|
enumerable: true,
|
|
22
22
|
get: function get() {
|
|
@@ -54,9 +54,6 @@ var FcrUIExitReason = exports.FcrUIExitReason = /*#__PURE__*/function (FcrUIExit
|
|
|
54
54
|
/**
|
|
55
55
|
* FcrUISceneConfig interface represents the configuration for a UI scene.
|
|
56
56
|
*/
|
|
57
|
-
/**
|
|
58
|
-
* FcrUIDeviceSettingObserver interface represents an observer for a device setting.
|
|
59
|
-
*/
|
|
60
57
|
/**
|
|
61
58
|
* FcrUISceneObserver interface represents an observer for a UI scene.
|
|
62
59
|
*/
|
|
@@ -148,4 +145,19 @@ var FcrUIAiDenoiseLevel = exports.FcrUIAiDenoiseLevel = function (FcrUIAiDenoise
|
|
|
148
145
|
FcrUIAiDenoiseLevel[FcrUIAiDenoiseLevel["HIGH"] = _fcrCore.FcrAiDenoiseLevel.HIGH] = "HIGH";
|
|
149
146
|
FcrUIAiDenoiseLevel[FcrUIAiDenoiseLevel["CLOSE"] = 4] = "CLOSE";
|
|
150
147
|
return FcrUIAiDenoiseLevel;
|
|
148
|
+
}({});
|
|
149
|
+
var FcrUIGlobalNodeEventType = exports.FcrUIGlobalNodeEventType = /*#__PURE__*/function (FcrUIGlobalNodeEventType) {
|
|
150
|
+
FcrUIGlobalNodeEventType["LAUNCH_SUCCESS"] = "launchSuccess";
|
|
151
|
+
FcrUIGlobalNodeEventType["LAUNCH_FAILURE"] = "launchFailure";
|
|
152
|
+
FcrUIGlobalNodeEventType["LAUNCH_CANCEL"] = "launchCancel";
|
|
153
|
+
FcrUIGlobalNodeEventType["EXITED"] = "exited";
|
|
154
|
+
FcrUIGlobalNodeEventType["SCENE_MOUNTED"] = "sceneMounted";
|
|
155
|
+
FcrUIGlobalNodeEventType["SCENE_UNMOUNTED"] = "sceneUnmounted";
|
|
156
|
+
return FcrUIGlobalNodeEventType;
|
|
157
|
+
}({});
|
|
158
|
+
var FcrUIMicrophoneState = exports.FcrUIMicrophoneState = /*#__PURE__*/function (FcrUIMicrophoneState) {
|
|
159
|
+
FcrUIMicrophoneState["MUTE"] = "mute";
|
|
160
|
+
FcrUIMicrophoneState["UNMUTE"] = "unmute";
|
|
161
|
+
FcrUIMicrophoneState["OPENING"] = "opening";
|
|
162
|
+
return FcrUIMicrophoneState;
|
|
151
163
|
}({});
|
package/lib/ui-manager.d.ts
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { FcrCoreEngine } from 'fcr-core';
|
|
2
1
|
import { FcrUISceneConfig } from './type';
|
|
3
2
|
import { FcrMainRoomControl } from 'fcr-core/lib/room-control/type';
|
|
4
3
|
import { FcrUIDeviceProvider } from './providers/device-provider';
|
|
5
|
-
import {
|
|
6
|
-
import { FcrWaitingUIScene } from './scenes/waiting-scene';
|
|
4
|
+
import { FcrBaseUIScene } from './base';
|
|
7
5
|
export declare class FcrUIManager {
|
|
8
6
|
private _sceneConfig;
|
|
9
|
-
private _engine;
|
|
10
7
|
private _dom;
|
|
11
8
|
private _parameters?;
|
|
12
9
|
accessor isLoading: boolean;
|
|
13
|
-
|
|
10
|
+
accessor isMeetingEnded: boolean;
|
|
11
|
+
get isSceneMounted(): boolean;
|
|
12
|
+
constructor(_sceneConfig: FcrUISceneConfig, _dom: HTMLElement, _parameters?: Record<string, unknown> | undefined);
|
|
14
13
|
renderDevicePretestUi(deviceProvider: FcrUIDeviceProvider, onJoin: () => void, onExit: () => void): void;
|
|
15
14
|
renderPullingUi(roomControl: FcrMainRoomControl): void;
|
|
16
|
-
mountScene(scene:
|
|
15
|
+
mountScene(scene: FcrBaseUIScene): void;
|
|
17
16
|
unmountCurrentScene(): void;
|
|
18
17
|
renderLoading(isLoading: boolean): void;
|
|
18
|
+
renderMeetingEnded(isLoading: boolean): void;
|
|
19
19
|
release(): void;
|
|
20
20
|
}
|