fcr-ui-scene 1.0.20 → 1.0.41
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/.github/workflows/gitee-sync.yml +27 -0
- package/lib/fcr-ui-scene/src/containers/video-player/index.d.ts +1 -1
- package/lib/fcr-ui-scene/src/containers/video-player/players.d.ts +0 -1
- package/lib/fcr-ui-scene/src/uistores/breakout.d.ts +1 -0
- package/lib/fcr-ui-scene/src/uistores/device-setting.d.ts +8 -0
- package/lib/fcr-ui-scene/src/uistores/getters.d.ts +2 -0
- package/lib/scene.bundle.js +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
name: gitee-sync
|
|
2
|
+
on:
|
|
3
|
+
pull_request:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
jobs:
|
|
7
|
+
build:
|
|
8
|
+
name: gitee-sync
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
|
|
11
|
+
concurrency:
|
|
12
|
+
group: ${{ github.workflow }}-${{ github.ref }}
|
|
13
|
+
cancel-in-progress: true
|
|
14
|
+
if: github.actor != 'dependabot[bot]'
|
|
15
|
+
steps:
|
|
16
|
+
- name: Gitee sync repo
|
|
17
|
+
uses: Yikun/hub-mirror-action@v1.3
|
|
18
|
+
with:
|
|
19
|
+
src: github/AgoraIO-Community
|
|
20
|
+
dst: gitee/agoraio-community
|
|
21
|
+
white_list: "fcr-ui-scene-desktop"
|
|
22
|
+
static_list: "fcr-ui-scene-desktop"
|
|
23
|
+
cache_path: "./cache"
|
|
24
|
+
dst_key: ${{ secrets.GITEE_PI_SSH }}
|
|
25
|
+
dst_token: ${{ secrets.GITEE_PRIVATE_TOKEN }}
|
|
26
|
+
force_update: true
|
|
27
|
+
account_type: org
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import './index.css';
|
|
2
|
-
export { LocalVideoPlayer
|
|
2
|
+
export { LocalVideoPlayer } from './players';
|
|
@@ -15,6 +15,10 @@ export declare class DeviceSettingUIStore extends EduUIStoreBase {
|
|
|
15
15
|
private _virtualBackgroundProcessorForPreview?;
|
|
16
16
|
private _beautyEffectProcessorForPreview?;
|
|
17
17
|
private _aiDenoiserProcessorForPreview?;
|
|
18
|
+
private _defaultSystemAudioRecordingDeviceId?;
|
|
19
|
+
private _defaultSystemAudioPlaybackDeviceId?;
|
|
20
|
+
private _userHasSelectedAudioRecordingDevice;
|
|
21
|
+
private _userHasSelectedAudioPlaybackDevice;
|
|
18
22
|
deviceSettingDialogVisible: boolean;
|
|
19
23
|
setDeviceSettingDialogVisible(visible: boolean): void;
|
|
20
24
|
private _virtualBackgroundOptions?;
|
|
@@ -32,6 +36,8 @@ export declare class DeviceSettingUIStore extends EduUIStoreBase {
|
|
|
32
36
|
private _virtualBackgroundEnabled;
|
|
33
37
|
private _beautyFilterEnabled;
|
|
34
38
|
private _aiDenoiserEnabled;
|
|
39
|
+
private _userHasEnabledCamera;
|
|
40
|
+
private _userHasEnabledAudioRecording;
|
|
35
41
|
get isAiDenoiserEnabled(): boolean;
|
|
36
42
|
get noCameraDevice(): boolean;
|
|
37
43
|
get cameraDeviceId(): string | undefined;
|
|
@@ -179,6 +185,8 @@ export declare class DeviceSettingUIStore extends EduUIStoreBase {
|
|
|
179
185
|
startCameraPreview(): void;
|
|
180
186
|
stopCameraPreview(): void;
|
|
181
187
|
setAudioRecordingDevice(deviceId: string): void;
|
|
188
|
+
setUserHasSelectedAudioRecordingDevice(): void;
|
|
189
|
+
setUserHasSelectedAudioPlaybackDevice(): void;
|
|
182
190
|
updateAudioRecordingTrack(): void;
|
|
183
191
|
toggleAudioRecordingDevice(): void;
|
|
184
192
|
enableAudioRecording(value: boolean): void;
|