@trtc/calls-uikit-vue 4.5.0 → 4.5.1
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/package.json +2 -2
- package/src/TUICallService/CallService/index.ts +1 -1
- package/src/TUICallService/const/call.ts +3 -1
- package/src/index.ts +1 -1
- package/stats.html +1 -1
- package/tuicall-uikit-vue.es.js +3 -3
- package/tuicall-uikit-vue.umd.js +1 -1
- package/types/TUICallService/const/call.d.ts +2 -0
- package/types/tsconfig.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trtc/calls-uikit-vue",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.1",
|
|
4
4
|
"main": "./tuicall-uikit-vue.umd.js",
|
|
5
5
|
"module": "./tuicall-uikit-vue.es.js",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@tencentcloud/lite-chat": "^1.6.3",
|
|
17
17
|
"@tencentcloud/tui-core-lite": "~1.0.1",
|
|
18
|
-
"@trtc/call-engine-lite-js": "~4.0.
|
|
18
|
+
"@trtc/call-engine-lite-js": "~4.0.1"
|
|
19
19
|
},
|
|
20
20
|
"bugs": {
|
|
21
21
|
"url": "https://github.com/tencentyun/TUICallKit/issues"
|
|
@@ -27,7 +27,7 @@ const TUIGlobal: ITUIGlobal = TuiGlobal.getInstance();
|
|
|
27
27
|
const TUIStore: ITUIStore = TuiStore.getInstance();
|
|
28
28
|
const uiDesign = UIDesign.getInstance();
|
|
29
29
|
uiDesign.setTUIStore(TUIStore);
|
|
30
|
-
const version = '4.5.
|
|
30
|
+
const version = '4.5.1';
|
|
31
31
|
import AIAssistant from './AIAssistant'; // 仅 web 支持 AI 实时字幕
|
|
32
32
|
const frameWork = 'vue3';
|
|
33
33
|
export { TUIGlobal, TUIStore, uiDesign };
|
|
@@ -54,7 +54,9 @@ export enum VideoDisplayMode {
|
|
|
54
54
|
* @property {String} 1080p
|
|
55
55
|
*/
|
|
56
56
|
export enum VideoResolution {
|
|
57
|
-
|
|
57
|
+
RESOLUTION_360P = '360p',
|
|
58
|
+
RESOLUTION_480P = '480p', // c++ 重构后, 480p 不支持, 使用的是 540p
|
|
59
|
+
RESOLUTION_540P = '540p',
|
|
58
60
|
RESOLUTION_720P = '720p',
|
|
59
61
|
RESOLUTION_1080P = '1080p',
|
|
60
62
|
}
|