@tellescope/video-chat 1.3.29 → 1.3.31

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": "1.3.29",
3
+ "version": "1.3.31",
4
4
  "description": "",
5
5
  "main": "./lib/cjs/index.js",
6
6
  "module": "./lib/esm/index.js",
@@ -34,13 +34,13 @@
34
34
  "@fontsource/roboto": "^4.5.1",
35
35
  "@mui/icons-material": "^5.0.1",
36
36
  "@mui/material": "^5.0.2",
37
- "@tellescope/constants": "^1.3.24",
38
- "@tellescope/react-components": "^1.3.27",
39
- "@tellescope/sdk": "^1.3.25",
40
- "@tellescope/types-client": "^1.3.24",
41
- "@tellescope/types-models": "^1.3.24",
37
+ "@tellescope/constants": "^1.3.31",
38
+ "@tellescope/react-components": "^1.3.31",
39
+ "@tellescope/sdk": "^1.3.31",
40
+ "@tellescope/types-client": "^1.3.31",
41
+ "@tellescope/types-models": "^1.3.31",
42
42
  "@tellescope/types-utilities": "^1.3.20",
43
- "@tellescope/utilities": "^1.3.25",
43
+ "@tellescope/utilities": "^1.3.31",
44
44
  "@typescript-eslint/eslint-plugin": "^4.33.0",
45
45
  "@typescript-eslint/parser": "^4.33.0",
46
46
  "amazon-chime-sdk-component-library-react": "^2.15.0",
@@ -55,7 +55,7 @@
55
55
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
56
56
  "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
57
57
  },
58
- "gitHead": "72917f76ec3d8ac91de746464a44cdfd896e44b0",
58
+ "gitHead": "9fa02cafdddaf42d015f767b3ff3a4e369e2dd40",
59
59
  "publishConfig": {
60
60
  "access": "public"
61
61
  }
package/src/controls.tsx CHANGED
@@ -73,7 +73,6 @@ export const LeaveMeeting = ({ onLeave, size=DEFAULT_BUTTON_SIZE } : LeaveMeetin
73
73
  interface ControlbarProps {
74
74
  spacing?: number,
75
75
  size?: number,
76
-
77
76
  }
78
77
  export const ControlBar = ({ onLeave, style, spacing=15, size } : ControlbarProps & LeaveMeetingProps & Styled) => {
79
78
  const { isHost } = React.useContext(CurrentCallContext)
@@ -444,7 +444,7 @@ export const VideoCallNative: React.JSXElementConstructor<VideoCallNativeProps>
444
444
 
445
445
  </Flex>
446
446
 
447
- <ControlBar {...props} style={{ position: 'absolute', bottom: 20, width: '100%' }} />
447
+ <ControlBar {...props} size={50} spacing={20} style={{ position: 'absolute', bottom: 20, width: '100%' }} />
448
448
  </Flex>
449
449
  )
450
450
  }