@tellescope/video-chat 0.0.88 → 0.0.89

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.88",
3
+ "version": "0.0.89",
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.88",
37
- "@tellescope/react-components": "^0.0.88",
38
- "@tellescope/sdk": "^0.0.88",
39
- "@tellescope/types-client": "^0.0.88",
40
- "@tellescope/types-models": "^0.0.88",
41
- "@tellescope/types-utilities": "^0.0.88",
42
- "@tellescope/utilities": "^0.0.88",
36
+ "@tellescope/constants": "^0.0.89",
37
+ "@tellescope/react-components": "^0.0.89",
38
+ "@tellescope/sdk": "^0.0.89",
39
+ "@tellescope/types-client": "^0.0.89",
40
+ "@tellescope/types-models": "^0.0.89",
41
+ "@tellescope/types-utilities": "^0.0.89",
42
+ "@tellescope/utilities": "^0.0.89",
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",
@@ -51,10 +51,10 @@
51
51
  "styled-system": "^5.1.5"
52
52
  },
53
53
  "peerDependencies": {
54
- "react": "^17.0.2",
55
- "react-dom": "^17.0.2"
54
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
55
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
56
56
  },
57
- "gitHead": "4b10380596321bae0cacb375daf0d1647a33ba4e",
57
+ "gitHead": "2414322f9182951dc03c98dfd0c1cf59c39be4b4",
58
58
  "publishConfig": {
59
59
  "access": "public"
60
60
  }
@@ -15,7 +15,7 @@ export class RNVideoRenderView extends React.Component<{ tileId: number, style?:
15
15
  // So we need to dispatch bindVideoView after this function complete
16
16
  setTimeout(() => {
17
17
  NativeFunction.bindVideoView(findNodeHandle(this), this.props.tileId);
18
- });
18
+ }, 1000); // use explicit 1s timeout to avoid crashes on self-video toggle
19
19
  }
20
20
 
21
21
  componentWillUnmount() {