@tellescope/video-chat 1.3.30 → 1.3.32
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/video_shared.d.ts.map +1 -1
- package/lib/cjs/video_shared.js +1 -1
- package/lib/cjs/video_shared.js.map +1 -1
- package/lib/esm/video_shared.d.ts.map +1 -1
- package/lib/esm/video_shared.js +2 -2
- package/lib/esm/video_shared.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -8
- package/src/video_shared.tsx +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tellescope/video-chat",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.32",
|
|
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.
|
|
38
|
-
"@tellescope/react-components": "^1.3.
|
|
39
|
-
"@tellescope/sdk": "^1.3.
|
|
40
|
-
"@tellescope/types-client": "^1.3.
|
|
41
|
-
"@tellescope/types-models": "^1.3.
|
|
37
|
+
"@tellescope/constants": "^1.3.32",
|
|
38
|
+
"@tellescope/react-components": "^1.3.32",
|
|
39
|
+
"@tellescope/sdk": "^1.3.32",
|
|
40
|
+
"@tellescope/types-client": "^1.3.32",
|
|
41
|
+
"@tellescope/types-models": "^1.3.32",
|
|
42
42
|
"@tellescope/types-utilities": "^1.3.20",
|
|
43
|
-
"@tellescope/utilities": "^1.3.
|
|
43
|
+
"@tellescope/utilities": "^1.3.32",
|
|
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": "
|
|
58
|
+
"gitHead": "30e2d9bb967db68d0d117dfb85ba1383bb82616a",
|
|
59
59
|
"publishConfig": {
|
|
60
60
|
"access": "public"
|
|
61
61
|
}
|
package/src/video_shared.tsx
CHANGED
|
@@ -23,7 +23,6 @@ import {
|
|
|
23
23
|
Flex,
|
|
24
24
|
Typography,
|
|
25
25
|
LoadingButton,
|
|
26
|
-
useSession,
|
|
27
26
|
useResolvedSession,
|
|
28
27
|
Button,
|
|
29
28
|
} from "@tellescope/react-components"
|
|
@@ -122,7 +121,7 @@ export type WaitingRoomProps = {
|
|
|
122
121
|
onGoBack?: () => void,
|
|
123
122
|
}
|
|
124
123
|
export const WaitingRoom = ({ calendarEvent, onGoBack } : WaitingRoomProps) => {
|
|
125
|
-
const session =
|
|
124
|
+
const session = useResolvedSession()
|
|
126
125
|
const [, { findById: findEvent }] = useCalendarEvents()
|
|
127
126
|
const [, { findById: findMeeting }] = useMeetings()
|
|
128
127
|
const { startAndJoinMeeting } = useStartAndJoinMeetingForCalendarEvent(calendarEvent.id)
|