@tellescope/video-chat 0.0.50 → 0.0.53

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.
Files changed (39) hide show
  1. package/lib/cjs/controls.d.ts +1 -1
  2. package/lib/cjs/controls.d.ts.map +1 -1
  3. package/lib/cjs/controls.js +6 -8
  4. package/lib/cjs/controls.js.map +1 -1
  5. package/lib/cjs/index.d.ts.map +1 -1
  6. package/lib/cjs/index.js.map +1 -1
  7. package/lib/cjs/native/RNVideoRenderView.d.ts.map +1 -1
  8. package/lib/cjs/native/RNVideoRenderView.js +4 -0
  9. package/lib/cjs/native/RNVideoRenderView.js.map +1 -1
  10. package/lib/cjs/video.d.ts +1 -1
  11. package/lib/cjs/video.d.ts.map +1 -1
  12. package/lib/cjs/video.js +3 -3
  13. package/lib/cjs/video.js.map +1 -1
  14. package/lib/cjs/video.native.d.ts.map +1 -1
  15. package/lib/cjs/video.native.js +5 -6
  16. package/lib/cjs/video.native.js.map +1 -1
  17. package/lib/esm/controls.d.ts +1 -2
  18. package/lib/esm/controls.d.ts.map +1 -1
  19. package/lib/esm/controls.js +1 -3
  20. package/lib/esm/controls.js.map +1 -1
  21. package/lib/esm/index.d.ts.map +1 -1
  22. package/lib/esm/index.js.map +1 -1
  23. package/lib/esm/native/RNVideoRenderView.d.ts.map +1 -1
  24. package/lib/esm/native/RNVideoRenderView.js +4 -0
  25. package/lib/esm/native/RNVideoRenderView.js.map +1 -1
  26. package/lib/esm/video.d.ts +1 -2
  27. package/lib/esm/video.d.ts.map +1 -1
  28. package/lib/esm/video.js +1 -1
  29. package/lib/esm/video.js.map +1 -1
  30. package/lib/esm/video.native.d.ts.map +1 -1
  31. package/lib/esm/video.native.js +1 -2
  32. package/lib/esm/video.native.js.map +1 -1
  33. package/lib/tsconfig.tsbuildinfo +1 -1
  34. package/package.json +9 -9
  35. package/src/controls.tsx +3 -5
  36. package/src/index.ts +1 -1
  37. package/src/native/RNVideoRenderView.tsx +0 -1
  38. package/src/video.native.tsx +5 -2
  39. package/src/video.tsx +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tellescope/video-chat",
3
- "version": "0.0.50",
3
+ "version": "0.0.53",
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.50",
37
- "@tellescope/react-components": "^0.0.50",
38
- "@tellescope/sdk": "^0.0.50",
39
- "@tellescope/types-client": "^0.0.50",
40
- "@tellescope/types-models": "^0.0.50",
41
- "@tellescope/types-utilities": "^0.0.50",
42
- "@tellescope/utilities": "^0.0.50",
36
+ "@tellescope/constants": "^0.0.53",
37
+ "@tellescope/react-components": "^0.0.53",
38
+ "@tellescope/sdk": "^0.0.53",
39
+ "@tellescope/types-client": "^0.0.53",
40
+ "@tellescope/types-models": "^0.0.53",
41
+ "@tellescope/types-utilities": "^0.0.53",
42
+ "@tellescope/utilities": "^0.0.53",
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": "92e8361d73256c8091241b1bba6fbaf3d8bdae83",
57
+ "gitHead": "0d2e9f1bab0479d0c8033d7c40cdad7b5ed9a651",
58
58
  "publishConfig": {
59
59
  "access": "public"
60
60
  }
package/src/controls.tsx CHANGED
@@ -7,13 +7,11 @@ import {
7
7
  MicrophoneIcon,
8
8
  MicrophoneOffIcon,
9
9
  CallEndIcon,
10
-
10
+ LabeledIconButton,
11
+ Flex,
11
12
  Paper,
12
-
13
13
  Styled,
14
- } from "@tellescope/react-components/lib/esm/mui"
15
- import { LabeledIconButton } from "@tellescope/react-components/lib/esm/controls"
16
- import { Flex } from "@tellescope/react-components/lib/esm/layout"
14
+ } from "@tellescope/react-components"
17
15
  import { CurrentCallContext } from "./video_shared"
18
16
  import { useStartVideoCall } from "./video"
19
17
  import { useJoinVideoCall } from "."
package/src/index.ts CHANGED
@@ -1,2 +1,2 @@
1
- export * from "./video";
1
+ export * from "./video"
2
2
  export * from "./controls"
@@ -3,7 +3,6 @@
3
3
  * SPDX-License-Identifier: MIT-0
4
4
  */
5
5
 
6
- import PropTypes from 'prop-types';
7
6
  import React from 'react';
8
7
  import { requireNativeComponent, findNodeHandle, ViewStyle } from 'react-native';
9
8
  import { NativeFunction } from './bridge';
@@ -15,8 +15,11 @@ import {
15
15
  import {
16
16
  UserIdentity,
17
17
  } from '@tellescope/types-utilities'
18
- import { useResolvedSession, useSession } from "@tellescope/react-components/lib/esm/authentication"
19
- import { Flex } from "@tellescope/react-components/lib/esm/layout"
18
+ import {
19
+ useResolvedSession,
20
+ useSession,
21
+ Flex,
22
+ } from "@tellescope/react-components"
20
23
  import {
21
24
  Button,
22
25
  Typography,
package/src/video.tsx CHANGED
@@ -3,7 +3,8 @@ import React, { useCallback, useState, CSSProperties, Children, useEffect } from
3
3
  import {
4
4
  useResolvedSession,
5
5
  useSession,
6
- } from "@tellescope/react-components/lib/esm/authentication"
6
+ Styled,
7
+ } from "@tellescope/react-components"
7
8
 
8
9
  import {
9
10
  UserIdentity,
@@ -49,7 +50,6 @@ import {
49
50
  JoinVideoCallProps,
50
51
  } from "./video_shared"
51
52
  import { ConsoleLogger, DefaultDeviceController, Logger, LogLevel } from "amazon-chime-sdk-js";
52
- import { Styled } from "@tellescope/react-components";
53
53
 
54
54
  const WithContext = ({ children } : { children: React.ReactNode }) => {
55
55
  const [meeting, setMeeting] = useState(undefined as MeetingInfo | undefined)