@100mslive/roomkit-react 0.3.19-alpha.13 → 0.3.19-alpha.15
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/{HLSView-2P3T74U7.css → HLSView-C2XG43BN.css} +19 -67
- package/dist/{HLSView-2P3T74U7.css.map → HLSView-C2XG43BN.css.map} +2 -2
- package/dist/{HLSView-4XDMVIWT.js → HLSView-XY7JC5H7.js} +43 -43
- package/dist/{HLSView-4XDMVIWT.js.map → HLSView-XY7JC5H7.js.map} +1 -1
- package/dist/{chunk-7Y75TGU3.js → chunk-5XRSIFEH.js} +289 -270
- package/dist/chunk-5XRSIFEH.js.map +7 -0
- package/dist/index.cjs.css +18 -66
- package/dist/index.cjs.css.map +2 -2
- package/dist/index.cjs.js +331 -305
- package/dist/index.cjs.js.map +4 -4
- package/dist/index.css +18 -66
- package/dist/index.css.map +2 -2
- package/dist/index.js +1 -1
- package/dist/meta.cjs.json +110 -110
- package/dist/meta.esbuild.json +129 -129
- package/package.json +7 -7
- package/src/Prebuilt/components/VirtualBackground/VBHandler.tsx +2 -2
- package/dist/chunk-7Y75TGU3.js.map +0 -7
package/package.json
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
"prebuilt",
|
11
11
|
"roomkit"
|
12
12
|
],
|
13
|
-
"version": "0.3.19-alpha.
|
13
|
+
"version": "0.3.19-alpha.15",
|
14
14
|
"author": "100ms",
|
15
15
|
"license": "MIT",
|
16
16
|
"repository": {
|
@@ -75,12 +75,12 @@
|
|
75
75
|
"react": ">=17.0.2 <19.0.0"
|
76
76
|
},
|
77
77
|
"dependencies": {
|
78
|
-
"@100mslive/hls-player": "0.3.19-alpha.
|
78
|
+
"@100mslive/hls-player": "0.3.19-alpha.15",
|
79
79
|
"@100mslive/hms-noise-cancellation": "0.0.1",
|
80
|
-
"@100mslive/hms-virtual-background": "1.13.19-alpha.
|
81
|
-
"@100mslive/hms-whiteboard": "0.0.9-alpha.
|
82
|
-
"@100mslive/react-icons": "0.10.19-alpha.
|
83
|
-
"@100mslive/react-sdk": "0.10.19-alpha.
|
80
|
+
"@100mslive/hms-virtual-background": "1.13.19-alpha.15",
|
81
|
+
"@100mslive/hms-whiteboard": "0.0.9-alpha.15",
|
82
|
+
"@100mslive/react-icons": "0.10.19-alpha.15",
|
83
|
+
"@100mslive/react-sdk": "0.10.19-alpha.15",
|
84
84
|
"@100mslive/types-prebuilt": "0.12.12",
|
85
85
|
"@emoji-mart/data": "^1.0.6",
|
86
86
|
"@emoji-mart/react": "^1.0.1",
|
@@ -117,5 +117,5 @@
|
|
117
117
|
"uuid": "^8.3.2",
|
118
118
|
"worker-timers": "^7.0.40"
|
119
119
|
},
|
120
|
-
"gitHead": "
|
120
|
+
"gitHead": "f8aada15d72c41c25aa564f6e4fe08063cca12e3"
|
121
121
|
}
|
@@ -13,8 +13,8 @@ export class VBPlugin {
|
|
13
13
|
if (effectsSDKKey) {
|
14
14
|
try {
|
15
15
|
// eslint-disable-next-line
|
16
|
-
const
|
17
|
-
this.effectsPlugin = new HMSEffectsPlugin(effectsSDKKey, onInit);
|
16
|
+
const effects = await import('@100mslive/hms-virtual-background/hmseffectsplugin');
|
17
|
+
this.effectsPlugin = new effects.HMSEffectsPlugin(effectsSDKKey, onInit);
|
18
18
|
} catch (error) {
|
19
19
|
console.error('Failed to initialise HMSEffectsPlugin:', error, 'Using HMSVBPlugin');
|
20
20
|
this.hmsPlugin = new HMSVBPlugin(HMSVirtualBackgroundTypes.NONE, HMSVirtualBackgroundTypes.NONE);
|