@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.
- package/lib/cjs/controls.d.ts +1 -1
- package/lib/cjs/controls.d.ts.map +1 -1
- package/lib/cjs/controls.js +6 -8
- package/lib/cjs/controls.js.map +1 -1
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/native/RNVideoRenderView.d.ts.map +1 -1
- package/lib/cjs/native/RNVideoRenderView.js +4 -0
- package/lib/cjs/native/RNVideoRenderView.js.map +1 -1
- package/lib/cjs/video.d.ts +1 -1
- package/lib/cjs/video.d.ts.map +1 -1
- package/lib/cjs/video.js +3 -3
- package/lib/cjs/video.js.map +1 -1
- package/lib/cjs/video.native.d.ts.map +1 -1
- package/lib/cjs/video.native.js +5 -6
- package/lib/cjs/video.native.js.map +1 -1
- package/lib/esm/controls.d.ts +1 -2
- package/lib/esm/controls.d.ts.map +1 -1
- package/lib/esm/controls.js +1 -3
- package/lib/esm/controls.js.map +1 -1
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/native/RNVideoRenderView.d.ts.map +1 -1
- package/lib/esm/native/RNVideoRenderView.js +4 -0
- package/lib/esm/native/RNVideoRenderView.js.map +1 -1
- package/lib/esm/video.d.ts +1 -2
- package/lib/esm/video.d.ts.map +1 -1
- package/lib/esm/video.js +1 -1
- package/lib/esm/video.js.map +1 -1
- package/lib/esm/video.native.d.ts.map +1 -1
- package/lib/esm/video.native.js +1 -2
- package/lib/esm/video.native.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +9 -9
- package/src/controls.tsx +3 -5
- package/src/index.ts +1 -1
- package/src/native/RNVideoRenderView.tsx +0 -1
- package/src/video.native.tsx +5 -2
- 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.
|
|
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.
|
|
37
|
-
"@tellescope/react-components": "^0.0.
|
|
38
|
-
"@tellescope/sdk": "^0.0.
|
|
39
|
-
"@tellescope/types-client": "^0.0.
|
|
40
|
-
"@tellescope/types-models": "^0.0.
|
|
41
|
-
"@tellescope/types-utilities": "^0.0.
|
|
42
|
-
"@tellescope/utilities": "^0.0.
|
|
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": "
|
|
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
|
|
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"
|
package/src/video.native.tsx
CHANGED
|
@@ -15,8 +15,11 @@ import {
|
|
|
15
15
|
import {
|
|
16
16
|
UserIdentity,
|
|
17
17
|
} from '@tellescope/types-utilities'
|
|
18
|
-
import {
|
|
19
|
-
|
|
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
|
-
|
|
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)
|