fcr-ui-scene 1.0.1 → 1.0.10
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/lib/fcr-ui-kit/src/components/svg-img/type.d.ts +2 -1
- package/lib/fcr-ui-scene/src/lock.d.ts +8 -0
- package/lib/fcr-ui-scene/src/resources/translations/enUs.d.ts +1 -0
- package/lib/fcr-ui-scene/src/resources/translations/zhCn.d.ts +1 -0
- package/lib/fcr-ui-scene/src/type.d.ts +8 -1
- package/lib/fcr-ui-scene/src/uistores/device-setting.d.ts +1 -0
- package/lib/fcr-ui-scene/src/uistores/getters.d.ts +1 -0
- package/lib/fcr-ui-scene/src/uistores/widget.d.ts +4 -1
- package/lib/fcr-ui-scene/src/utils/launch-options-holder.d.ts +2 -2
- package/lib/scene.bundle.js +1 -1
- package/package.json +2 -2
- package/lib/log.worker.bundle.worker.js.LICENSE.txt +0 -1
- package/lib/scene.bundle.js.LICENSE.txt +0 -311
|
@@ -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;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ConversionOption, EduRegion, EduRoleTypeEnum, EduRoomTypeEnum, EduRtcConfig } from 'agora-edu-core';
|
|
1
|
+
import { ConversionOption, EduRegion, EduRoleTypeEnum, EduRoomTypeEnum, EduRtcConfig, AgoraCloudProxyType } from 'agora-edu-core';
|
|
2
2
|
import { AGMediaOptions, AgoraLatencyLevel, AGVideoEncoderConfiguration } from 'agora-rte-sdk';
|
|
3
3
|
import { FcrMultiThemeMode } from 'agora-common-libs';
|
|
4
4
|
import { FcrUISceneWidget } from 'agora-common-libs';
|
|
@@ -204,6 +204,13 @@ export declare type LaunchOptions = {
|
|
|
204
204
|
* BoardRecordOptions
|
|
205
205
|
*/
|
|
206
206
|
recordOptions?: BoardWindowAnimationOptions;
|
|
207
|
+
/**
|
|
208
|
+
* 云代理类型
|
|
209
|
+
*/
|
|
210
|
+
/** @en
|
|
211
|
+
* Cloud proxy type
|
|
212
|
+
*/
|
|
213
|
+
cloudProxy?: AgoraCloudProxyType;
|
|
207
214
|
};
|
|
208
215
|
/**
|
|
209
216
|
* 支持的语言
|
|
@@ -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;
|
|
@@ -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
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { FcrTheme, FcrUIConfig } from 'agora-common-libs';
|
|
2
2
|
import { LaunchOptions } from '..';
|
|
3
|
-
declare type Config = Partial<Record<'host' | 'ignoreUrlRegionPrefix' | 'logo' | 'shareUrl' | 'uiConfig' | 'theme' | 'recordOptions' | 'defaultEnableDevice', unknown>>;
|
|
3
|
+
declare type Config = Partial<Record<'host' | 'ignoreUrlRegionPrefix' | 'logo' | 'shareUrl' | 'uiConfig' | 'theme' | 'recordOptions' | 'defaultEnableDevice' | 'fastMode', unknown>>;
|
|
4
4
|
export declare const setLaunchOptions: (launchOptions: LaunchOptions) => void;
|
|
5
5
|
export declare const getLaunchOptions: () => LaunchOptions;
|
|
6
6
|
export declare const setConfig: (config: Config) => void;
|
|
7
|
-
export declare const getConfig: () => Partial<Record<"theme" | "host" | "ignoreUrlRegionPrefix" | "logo" | "shareUrl" | "uiConfig" | "recordOptions" | "defaultEnableDevice", unknown>>;
|
|
7
|
+
export declare const getConfig: () => Partial<Record<"theme" | "host" | "ignoreUrlRegionPrefix" | "logo" | "shareUrl" | "uiConfig" | "recordOptions" | "defaultEnableDevice" | "fastMode", unknown>>;
|
|
8
8
|
export declare const getUiConfig: () => FcrUIConfig;
|
|
9
9
|
export declare const getTheme: () => FcrTheme;
|
|
10
10
|
export {};
|