@stream-io/video-react-bindings 0.4.46 → 0.4.47
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,11 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
### [0.4.47](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-bindings-0.4.46...@stream-io/video-react-bindings-0.4.47) (2024-06-25)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `@stream-io/video-client` updated to version `1.4.3`
|
|
5
10
|
### [0.4.46](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-bindings-0.4.45...@stream-io/video-react-bindings-0.4.46) (2024-06-24)
|
|
6
11
|
|
|
7
12
|
### Dependency Updates
|
|
@@ -134,7 +134,7 @@ export declare const useParticipants: ({ sortBy, }?: {
|
|
|
134
134
|
* Make sure to memoize output of the `combineComparators` function
|
|
135
135
|
* (or keep it out of component's scope if possible) before passing it down to this property.
|
|
136
136
|
*/
|
|
137
|
-
sortBy?: Comparator<StreamVideoParticipant
|
|
137
|
+
sortBy?: Comparator<StreamVideoParticipant>;
|
|
138
138
|
}) => StreamVideoParticipant[];
|
|
139
139
|
/**
|
|
140
140
|
* A hook which provides a StreamVideoLocalParticipant object.
|
|
@@ -22,7 +22,7 @@ export declare class StreamI18n {
|
|
|
22
22
|
get currentLanguage(): string;
|
|
23
23
|
get isInitialized(): boolean;
|
|
24
24
|
init: () => Promise<this>;
|
|
25
|
-
changeLanguage: (language?: TranslationLanguage, onChange?: (
|
|
25
|
+
changeLanguage: (language?: TranslationLanguage, onChange?: (language: TranslationLanguage) => void) => Promise<void>;
|
|
26
26
|
registerTranslationsForLanguage: ({ lng, translations, }: {
|
|
27
27
|
lng: TranslationLanguage;
|
|
28
28
|
translations: TranslationSheet;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stream-io/video-react-bindings",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.47",
|
|
4
4
|
"packageManager": "yarn@3.2.4",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -25,16 +25,16 @@
|
|
|
25
25
|
"rxjs": "~7.8.1"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@stream-io/video-client": "^1.4.
|
|
28
|
+
"@stream-io/video-client": "^1.4.3",
|
|
29
29
|
"react": "^17 || ^18 || ^19"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@rollup/plugin-typescript": "^11.1.6",
|
|
33
|
-
"@stream-io/video-client": "^1.4.
|
|
33
|
+
"@stream-io/video-client": "^1.4.3",
|
|
34
34
|
"@types/react": "^18.3.2",
|
|
35
35
|
"react": "^18.3.1",
|
|
36
|
-
"rimraf": "^5.0.
|
|
36
|
+
"rimraf": "^5.0.7",
|
|
37
37
|
"rollup": "^3.29.4",
|
|
38
|
-
"typescript": "^5.
|
|
38
|
+
"typescript": "^5.5.2"
|
|
39
39
|
}
|
|
40
40
|
}
|