@100mslive/roomkit-react 0.3.19-alpha.13 → 0.3.19-alpha.14
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/dist/{HLSView-2P3T74U7.css → HLSView-CZOXJTV5.css} +3 -3
- package/dist/{HLSView-2P3T74U7.css.map → HLSView-CZOXJTV5.css.map} +1 -1
- package/dist/{HLSView-4XDMVIWT.js → HLSView-NMEMV6IQ.js} +2 -2
- package/dist/{chunk-7Y75TGU3.js → chunk-ZDEVOXM2.js} +6 -6
- package/dist/{chunk-7Y75TGU3.js.map → chunk-ZDEVOXM2.js.map} +2 -2
- package/dist/index.cjs.css +2 -2
- package/dist/index.cjs.css.map +1 -1
- package/dist/index.cjs.js +8 -8
- package/dist/index.cjs.js.map +3 -3
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/index.js +1 -1
- package/dist/meta.cjs.json +12 -12
- package/dist/meta.esbuild.json +24 -24
- package/package.json +7 -7
- package/src/Prebuilt/components/VirtualBackground/VBHandler.tsx +2 -2
- /package/dist/{HLSView-4XDMVIWT.js.map → HLSView-NMEMV6IQ.js.map} +0 -0
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.14",
|
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.14",
|
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.14",
|
81
|
+
"@100mslive/hms-whiteboard": "0.0.9-alpha.14",
|
82
|
+
"@100mslive/react-icons": "0.10.19-alpha.14",
|
83
|
+
"@100mslive/react-sdk": "0.10.19-alpha.14",
|
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": "99c54d70e77c7d9ccd39fcd222a3c964b39bbd47"
|
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);
|
File without changes
|