@stream-io/video-react-bindings 0.0.21 → 0.0.22
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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
### [0.0.22](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-bindings-0.0.21...@stream-io/video-react-bindings-0.0.22) (2023-06-21)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `@stream-io/video-client` updated to version `0.0.1`
|
|
10
|
+
|
|
11
|
+
### Documentation
|
|
12
|
+
|
|
13
|
+
* **react-sdk:** update audio rooms tutorial ([#659](https://github.com/GetStream/stream-video-js/issues/659)) ([11f2e80](https://github.com/GetStream/stream-video-js/commit/11f2e8090811fbd8478724b3d2c2c8af3b19a0c5))
|
|
14
|
+
|
|
5
15
|
### [0.0.21](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-bindings-0.0.20...@stream-io/video-react-bindings-0.0.21) (2023-06-21)
|
|
6
16
|
|
|
7
17
|
### Dependency Updates
|
|
@@ -2,7 +2,7 @@ import { PropsWithChildren } from 'react';
|
|
|
2
2
|
import { StreamVideoClient } from '@stream-io/video-client';
|
|
3
3
|
import { StreamI18nProviderProps } from './StreamI18nContext';
|
|
4
4
|
/**
|
|
5
|
-
* Exclude types from
|
|
5
|
+
* Exclude types from documentation site, but we should still add doc comments
|
|
6
6
|
* @internal
|
|
7
7
|
*/
|
|
8
8
|
export type StreamVideoProps = StreamI18nProviderProps & {
|
package/package.json
CHANGED
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"@stream-io/i18n": "^0.0.5",
|
|
27
|
-
"@stream-io/video-client": "^0.0.
|
|
27
|
+
"@stream-io/video-client": "^0.0.21",
|
|
28
28
|
"react": ">=17.0.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@stream-io/i18n": "^0.0.5",
|
|
32
|
-
"@stream-io/video-client": "^0.0.
|
|
32
|
+
"@stream-io/video-client": "^0.0.21",
|
|
33
33
|
"@types/react": "^18.0.26",
|
|
34
34
|
"@types/rimraf": "^3.0.2",
|
|
35
35
|
"react": "^18.2.0",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"typedoc-plugin-markdown": "^3.15.3",
|
|
40
40
|
"typescript": "^4.9.5"
|
|
41
41
|
},
|
|
42
|
-
"version": "0.0.
|
|
42
|
+
"version": "0.0.22"
|
|
43
43
|
}
|
|
@@ -16,7 +16,7 @@ const StreamVideoContext = createContext<StreamVideoClient | undefined>(
|
|
|
16
16
|
);
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
|
-
* Exclude types from
|
|
19
|
+
* Exclude types from documentation site, but we should still add doc comments
|
|
20
20
|
* @internal
|
|
21
21
|
*/
|
|
22
22
|
export type StreamVideoProps = StreamI18nProviderProps & {
|