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.
@@ -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, RemoteVideoPlayer } from './players';
2
+ export { LocalVideoPlayer } from './players';
@@ -1,3 +1,2 @@
1
1
  /// <reference types="react" />
2
2
  export declare const LocalVideoPlayer: () => JSX.Element;
3
- export declare const RemoteVideoPlayer: () => JSX.Element;
@@ -9,6 +9,7 @@ export declare class BreakoutUIStore extends EduUIStoreBase {
9
9
  * 总分组数
10
10
  */
11
11
  static readonly MAX_GROUP_COUNT = 20;
12
+ private _coursewareLoaded;
12
13
  /**
13
14
  * 当前分组序号
14
15
  */
@@ -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;
@@ -37,4 +37,6 @@ export declare class Getters {
37
37
  get isBreakoutMinimized(): boolean;
38
38
  get isJoiningSubRoom(): boolean;
39
39
  get isInSubRoom(): boolean;
40
+ get galleryStreamsByPage(): EduStreamUI[];
41
+ get presentationStreamsByPage(): EduStreamUI[];
40
42
  }