fcr-ui-scene 1.0.0 → 1.0.2

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.
@@ -191,5 +191,6 @@ export declare enum SvgIconEnum {
191
191
  FCR_WINDOWPAGE_SMALLER3 = "fcr_windowpage_smaller3",
192
192
  FCR_WRONG = "fcr_wrong",
193
193
  FCR_RECORDING_END = "fcr_recording_end",
194
- FCR_WIZARD_ARROW = "fcr_wizard_arrow"
194
+ FCR_WIZARD_ARROW = "fcr_wizard_arrow",
195
+ FCR_PPT_BROKEN = "fcr_ppt_broken"
195
196
  }
@@ -61,6 +61,10 @@ export declare const enUs: {
61
61
  fcr_room_tips_leave: string;
62
62
  fcr_room_tips_leave_breakout_room: string;
63
63
  fcr_room_tips_authorize_open_whiteboard: string;
64
+ fcr_room_tips_lower_all_hand: string;
65
+ fcr_room_tips_lower_hand: string;
66
+ fcr_room_tips_end_poll: string;
67
+ fcr_room_tips_stop_sharing: string;
64
68
  fcr_room_button_microphone: string;
65
69
  fcr_room_button_camera: string;
66
70
  fcr_room_button_participants: string;
@@ -121,6 +125,8 @@ export declare const enUs: {
121
125
  fcr_user_tips_teacher_start_video_content: string;
122
126
  fcr_user_tips_teacher_unmute_title: string;
123
127
  fcr_user_tips_teacher_unmute_content: string;
128
+ fcr_user_tips_teacher_unmute_ok: string;
129
+ fcr_user_tips_teacher_unmute_cancel: string;
124
130
  fcr_user_tips_banned_video: string;
125
131
  fcr_user_tips_banned_video_content: string;
126
132
  fcr_user_tips_muted: string;
@@ -341,6 +347,7 @@ export declare const enUs: {
341
347
  fcr_cloud_tips_open_whiteboard_content: string;
342
348
  fcr_cloud_unsupported_file_type: string;
343
349
  fcr_cloud_fail_to_convert: string;
350
+ fcr_cloud_fail_to_convert_label: string;
344
351
  fcr_tool_box_breakout_room: string;
345
352
  fcr_tool_box_poll: string;
346
353
  fcr_tool_box_count_down: string;
@@ -61,6 +61,10 @@ export declare const zhCn: {
61
61
  fcr_room_tips_leave: string;
62
62
  fcr_room_tips_leave_breakout_room: string;
63
63
  fcr_room_tips_authorize_open_whiteboard: string;
64
+ fcr_room_tips_lower_all_hand: string;
65
+ fcr_room_tips_lower_hand: string;
66
+ fcr_room_tips_stop_sharing: string;
67
+ fcr_room_tips_end_poll: string;
64
68
  fcr_room_button_microphone: string;
65
69
  fcr_room_button_camera: string;
66
70
  fcr_room_button_participants: string;
@@ -121,6 +125,8 @@ export declare const zhCn: {
121
125
  fcr_user_tips_teacher_start_video_content: string;
122
126
  fcr_user_tips_teacher_unmute_title: string;
123
127
  fcr_user_tips_teacher_unmute_content: string;
128
+ fcr_user_tips_teacher_unmute_ok: string;
129
+ fcr_user_tips_teacher_unmute_cancel: string;
124
130
  fcr_user_tips_banned_video: string;
125
131
  fcr_user_tips_banned_video_content: string;
126
132
  fcr_user_tips_muted: string;
@@ -341,6 +347,7 @@ export declare const zhCn: {
341
347
  fcr_cloud_tips_open_whiteboard_content: string;
342
348
  fcr_cloud_unsupported_file_type: string;
343
349
  fcr_cloud_fail_to_convert: string;
350
+ fcr_cloud_fail_to_convert_label: string;
344
351
  fcr_tool_box_breakout_room: string;
345
352
  fcr_tool_box_poll: string;
346
353
  fcr_tool_box_count_down: string;
@@ -36,6 +36,7 @@ export declare class DeviceSettingUIStore extends EduUIStoreBase {
36
36
  private _virtualBackgroundEnabled;
37
37
  private _beautyFilterEnabled;
38
38
  private _aiDenoiserEnabled;
39
+ get isAiDenoiserEnabled(): boolean;
39
40
  get noCameraDevice(): boolean;
40
41
  get cameraDeviceId(): string | undefined;
41
42
  get noAudioRecordingDevice(): boolean;
@@ -36,4 +36,5 @@ export declare class Getters {
36
36
  get isBreakoutStarted(): boolean;
37
37
  get isBreakoutMinimized(): boolean;
38
38
  get isJoiningSubRoom(): boolean;
39
+ get isInSubRoom(): boolean;
39
40
  }
@@ -2,13 +2,17 @@ import { FcrUISceneWidget } from 'agora-common-libs';
2
2
  import { AgoraWidgetTrack } from 'agora-edu-core';
3
3
  import { EduUIStoreBase } from './base';
4
4
  export declare class WidgetUIStore extends EduUIStoreBase {
5
+ layoutReady: boolean;
6
+ setLayoutReady(ready: boolean): void;
5
7
  private _defaultActiveWidgetIds;
6
8
  private _registeredWidgets;
9
+ private _widgetInstanceRenderKeys;
7
10
  private _widgetInstances;
8
11
  private _stateListener;
9
12
  get ready(): boolean;
10
13
  get registeredWidgetNames(): string[];
11
14
  get widgetInstanceList(): FcrUISceneWidget[];
15
+ get widgetInstanceRenderKeys(): Record<string, string>;
12
16
  get z0Widgets(): FcrUISceneWidget[];
13
17
  get z10Widgets(): FcrUISceneWidget[];
14
18
  createWidget(widgetId: string, defaults?: {
@@ -40,7 +44,6 @@ export declare class WidgetUIStore extends EduUIStoreBase {
40
44
  private _handleBecomeInactive;
41
45
  private _getEnabledWidgets;
42
46
  private _createUiCapable;
43
- private _handlePollActiveStateChanged;
44
47
  onInstall(): void;
45
48
  onDestroy(): void;
46
49
  }