fcr-ui-scene 1.0.1 → 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
  }
@@ -347,6 +347,7 @@ export declare const enUs: {
347
347
  fcr_cloud_tips_open_whiteboard_content: string;
348
348
  fcr_cloud_unsupported_file_type: string;
349
349
  fcr_cloud_fail_to_convert: string;
350
+ fcr_cloud_fail_to_convert_label: string;
350
351
  fcr_tool_box_breakout_room: string;
351
352
  fcr_tool_box_poll: string;
352
353
  fcr_tool_box_count_down: string;
@@ -347,6 +347,7 @@ export declare const zhCn: {
347
347
  fcr_cloud_tips_open_whiteboard_content: string;
348
348
  fcr_cloud_unsupported_file_type: string;
349
349
  fcr_cloud_fail_to_convert: string;
350
+ fcr_cloud_fail_to_convert_label: string;
350
351
  fcr_tool_box_breakout_room: string;
351
352
  fcr_tool_box_poll: string;
352
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
  }