@100mslive/roomkit-react 0.3.19-alpha.13 → 0.3.19-alpha.14

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "prebuilt",
11
11
  "roomkit"
12
12
  ],
13
- "version": "0.3.19-alpha.13",
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.13",
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.13",
81
- "@100mslive/hms-whiteboard": "0.0.9-alpha.13",
82
- "@100mslive/react-icons": "0.10.19-alpha.13",
83
- "@100mslive/react-sdk": "0.10.19-alpha.13",
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": "b1b838678870a5de5aec4c96716a3198564cab4c"
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 { HMSEffectsPlugin } = await import('@100mslive/hms-virtual-background/hmseffectsplugin');
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);