@tellescope/video-chat 0.0.84 → 0.0.85
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/index.d.ts +1 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js +5 -1
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/index.native.d.ts +1 -0
- package/lib/cjs/index.native.d.ts.map +1 -1
- package/lib/cjs/index.native.js +5 -1
- package/lib/cjs/index.native.js.map +1 -1
- package/lib/cjs/video.native.d.ts.map +1 -1
- package/lib/cjs/video.native.js +15 -16
- package/lib/cjs/video.native.js.map +1 -1
- package/lib/esm/index.d.ts +1 -0
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js +1 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/index.native.d.ts +1 -0
- package/lib/esm/index.native.d.ts.map +1 -1
- package/lib/esm/index.native.js +1 -0
- package/lib/esm/index.native.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/index.native.ts +7 -2
- package/src/index.ts +7 -2
- package/src/video.native.tsx +1 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tellescope/video-chat",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.85",
|
|
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.85",
|
|
37
|
+
"@tellescope/react-components": "^0.0.85",
|
|
38
|
+
"@tellescope/sdk": "^0.0.85",
|
|
39
|
+
"@tellescope/types-client": "^0.0.85",
|
|
40
|
+
"@tellescope/types-models": "^0.0.85",
|
|
41
|
+
"@tellescope/types-utilities": "^0.0.85",
|
|
42
|
+
"@tellescope/utilities": "^0.0.85",
|
|
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": "47925dd3a6948c55f0ac0468b15e72e30a590841",
|
|
58
58
|
"publishConfig": {
|
|
59
59
|
"access": "public"
|
|
60
60
|
}
|
package/src/index.native.ts
CHANGED
|
@@ -2,8 +2,13 @@ export * from "./video"
|
|
|
2
2
|
export * from "./controls"
|
|
3
3
|
export {
|
|
4
4
|
CurrentCallContext,
|
|
5
|
-
useCurrentCallContext,
|
|
5
|
+
useCurrentCallContext,
|
|
6
6
|
} from "./video_shared"
|
|
7
7
|
export {
|
|
8
8
|
RNVideoRenderView,
|
|
9
|
-
} from "./native/RNVideoRenderView"
|
|
9
|
+
} from "./native/RNVideoRenderView"
|
|
10
|
+
export {
|
|
11
|
+
MobileSDKEvent,
|
|
12
|
+
NativeFunction,
|
|
13
|
+
getSDKEventEmitter,
|
|
14
|
+
} from "./native/bridge"
|
package/src/index.ts
CHANGED
|
@@ -2,8 +2,13 @@ export * from "./video"
|
|
|
2
2
|
export * from "./controls"
|
|
3
3
|
export {
|
|
4
4
|
CurrentCallContext,
|
|
5
|
-
useCurrentCallContext,
|
|
5
|
+
useCurrentCallContext,
|
|
6
6
|
} from "./video_shared"
|
|
7
7
|
export {
|
|
8
8
|
RNVideoRenderView,
|
|
9
|
-
} from "./native/RNVideoRenderView"
|
|
9
|
+
} from "./native/RNVideoRenderView"
|
|
10
|
+
export {
|
|
11
|
+
MobileSDKEvent,
|
|
12
|
+
NativeFunction,
|
|
13
|
+
getSDKEventEmitter,
|
|
14
|
+
} from "./native/bridge"
|
package/src/video.native.tsx
CHANGED
|
@@ -36,13 +36,10 @@ import {
|
|
|
36
36
|
import {
|
|
37
37
|
CurrentCallContext,
|
|
38
38
|
RNVideoRenderView,
|
|
39
|
-
} from "./index"
|
|
40
|
-
|
|
41
|
-
import {
|
|
42
39
|
getSDKEventEmitter,
|
|
43
40
|
MobileSDKEvent,
|
|
44
41
|
NativeFunction,
|
|
45
|
-
} from "./
|
|
42
|
+
} from "./index"
|
|
46
43
|
|
|
47
44
|
interface TileState {
|
|
48
45
|
isLocal: boolean,
|