@tellescope/video-chat 0.0.79 → 0.0.82

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tellescope/video-chat",
3
- "version": "0.0.79",
3
+ "version": "0.0.82",
4
4
  "description": "",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",
@@ -33,13 +33,13 @@
33
33
  "@fontsource/roboto": "^4.5.1",
34
34
  "@mui/icons-material": "^5.0.1",
35
35
  "@mui/material": "^5.0.2",
36
- "@tellescope/constants": "^0.0.79",
37
- "@tellescope/react-components": "^0.0.79",
38
- "@tellescope/sdk": "^0.0.79",
39
- "@tellescope/types-client": "^0.0.79",
40
- "@tellescope/types-models": "^0.0.79",
41
- "@tellescope/types-utilities": "^0.0.79",
42
- "@tellescope/utilities": "^0.0.79",
36
+ "@tellescope/constants": "^0.0.82",
37
+ "@tellescope/react-components": "^0.0.82",
38
+ "@tellescope/sdk": "^0.0.82",
39
+ "@tellescope/types-client": "^0.0.82",
40
+ "@tellescope/types-models": "^0.0.82",
41
+ "@tellescope/types-utilities": "^0.0.82",
42
+ "@tellescope/utilities": "^0.0.82",
43
43
  "@typescript-eslint/eslint-plugin": "^4.33.0",
44
44
  "@typescript-eslint/parser": "^4.33.0",
45
45
  "amazon-chime-sdk-component-library-react": "^2.12.0",
@@ -54,7 +54,7 @@
54
54
  "react": "^17.0.2",
55
55
  "react-dom": "^17.0.2"
56
56
  },
57
- "gitHead": "8093dbf4015d6196a234e4922564ddce3df0a9a7",
57
+ "gitHead": "b58c6fb19dedb78e2c51a740fc41306ed2562300",
58
58
  "publishConfig": {
59
59
  "access": "public"
60
60
  }
@@ -16,6 +16,7 @@ export class RNVideoView extends React.Component<{ tileId: number, style?: ViewS
16
16
  setTimeout(() => {
17
17
  NativeFunction.bindVideoView(findNodeHandle(this), this.props.tileId);
18
18
  });
19
+ // can try setting a longer timeout
19
20
  }
20
21
 
21
22
  componentWillUnmount() {
@@ -27,4 +28,5 @@ export class RNVideoView extends React.Component<{ tileId: number, style?: ViewS
27
28
  }
28
29
  }
29
30
 
31
+ // can try ts ignore and using RNVideoView as a second argument to this function
30
32
  const RNVideoRenderViewNative = requireNativeComponent('RNVideoView');