@trtc/calls-uikit-vue 4.1.0 → 4.2.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 +5 -5
- package/src/TUICallService/CallService/chatCombine.ts +1 -1
- package/src/TUICallService/CallService/index.ts +1 -3
- package/src/index.ts +1 -1
- package/stats.html +1 -1
- package/tuicall-uikit-vue.es.js +926 -926
- package/tuicall-uikit-vue.umd.js +1 -1
- 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.1
|
|
3
|
+
"version": "4.2.1",
|
|
4
4
|
"main": "./tuicall-uikit-vue.umd.js",
|
|
5
5
|
"module": "./tuicall-uikit-vue.es.js",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"directory": "Web"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@tencentcloud/lite-chat": "^1.
|
|
17
|
-
"@tencentcloud/tui-core": "
|
|
16
|
+
"@tencentcloud/lite-chat": "^1.5.0",
|
|
17
|
+
"@tencentcloud/tui-core-lite": "1.0.0",
|
|
18
18
|
"@trtc/call-engine-lite-js": "~3.4.0"
|
|
19
19
|
},
|
|
20
20
|
"bugs": {
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"real-time communication",
|
|
37
37
|
"javascript",
|
|
38
38
|
"rtc",
|
|
39
|
-
"@
|
|
40
|
-
"@
|
|
39
|
+
"@trtc/calls-uikit-vue",
|
|
40
|
+
"@trtc/calls-uikit-wx-uniapp"
|
|
41
41
|
]
|
|
42
42
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TUICore, TUILogin, TUIConstants, ExtensionInfo } from '@tencentcloud/tui-core';
|
|
1
|
+
import { TUICore, TUILogin, TUIConstants, ExtensionInfo } from '@tencentcloud/tui-core-lite';
|
|
2
2
|
import { CallMediaType, AudioCallIcon, VideoCallIcon, LOG_LEVEL, COMPONENT, StoreName, NAME, CallStatus, CallType, ACTION_TYPE } from '../const/index';
|
|
3
3
|
import { isUndefined, formatTime, JSONToObject } from '../utils/common-utils';
|
|
4
4
|
import { getRemoteUserProfile } from './utils';
|
|
@@ -26,7 +26,7 @@ const TUIGlobal: ITUIGlobal = TuiGlobal.getInstance();
|
|
|
26
26
|
const TUIStore: ITUIStore = TuiStore.getInstance();
|
|
27
27
|
const uiDesign = UIDesign.getInstance();
|
|
28
28
|
uiDesign.setTUIStore(TUIStore);
|
|
29
|
-
const version = '4.1
|
|
29
|
+
const version = '4.2.1';
|
|
30
30
|
const frameWork = 'vue3';
|
|
31
31
|
export { TUIGlobal, TUIStore, uiDesign };
|
|
32
32
|
|
|
@@ -76,8 +76,6 @@ export default class TUICallService {
|
|
|
76
76
|
scene = `${scene}-${frameWork}`;
|
|
77
77
|
// To distinguish whether the UniApp mini-program chooses Vue 2 or Vue 3
|
|
78
78
|
|
|
79
|
-
console.warn(`场景 scene: ${scene}`);
|
|
80
|
-
|
|
81
79
|
this._tuiCallEngine = TUICallEngine.createInstance({
|
|
82
80
|
tim,
|
|
83
81
|
SDKAppID: sdkAppID || SDKAppID, // 兼容传入 SDKAppID 的问题
|