@stream-io/video-react-bindings 0.0.42 → 0.0.43
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.0.43](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-bindings-0.0.42...@stream-io/video-react-bindings-0.0.43) (2023-07-10)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `@stream-io/video-client` updated to version `0.0.1`
|
|
5
10
|
### [0.0.42](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-bindings-0.0.41...@stream-io/video-react-bindings-0.0.42) (2023-07-07)
|
|
6
11
|
|
|
7
12
|
### Dependency Updates
|
|
@@ -17,7 +17,7 @@ export interface StreamCallProviderProps {
|
|
|
17
17
|
*
|
|
18
18
|
* @react If you're using the React SDK we recommend using the `StreamCall` component that wraps the `StreamCallProvider`. You only need to use the `StreamCallProvider` for advanced use-cases.
|
|
19
19
|
*/
|
|
20
|
-
export declare const StreamCallProvider: (props: PropsWithChildren<StreamCallProviderProps>) => JSX.Element;
|
|
20
|
+
export declare const StreamCallProvider: (props: PropsWithChildren<StreamCallProviderProps>) => import("react/jsx-runtime").JSX.Element;
|
|
21
21
|
/**
|
|
22
22
|
*
|
|
23
23
|
* @returns
|
|
@@ -5,7 +5,7 @@ type StreamI18nContextValue = {
|
|
|
5
5
|
i18n?: StreamI18n;
|
|
6
6
|
};
|
|
7
7
|
export type StreamI18nProviderProps = CreateI18nParams;
|
|
8
|
-
export declare const StreamI18nProvider: ({ children, ...createI18nParams }: PropsWithChildren<StreamI18nProviderProps>) => JSX.Element;
|
|
8
|
+
export declare const StreamI18nProvider: ({ children, ...createI18nParams }: PropsWithChildren<StreamI18nProviderProps>) => import("react/jsx-runtime").JSX.Element;
|
|
9
9
|
type CreateI18nParams = {
|
|
10
10
|
i18nInstance?: StreamI18n;
|
|
11
11
|
language?: string;
|
|
@@ -14,7 +14,7 @@ export type StreamVideoProps = StreamI18nProviderProps & {
|
|
|
14
14
|
* @param PropsWithChildren<StreamVideoProps>
|
|
15
15
|
* @category Client State
|
|
16
16
|
*/
|
|
17
|
-
export declare const StreamVideo: ({ children, client, i18nInstance, language, translationsOverrides, }: PropsWithChildren<StreamVideoProps>) => JSX.Element;
|
|
17
|
+
export declare const StreamVideo: ({ children, client, i18nInstance, language, translationsOverrides, }: PropsWithChildren<StreamVideoProps>) => import("react/jsx-runtime").JSX.Element;
|
|
18
18
|
/**
|
|
19
19
|
*
|
|
20
20
|
* @returns
|
|
@@ -19,5 +19,5 @@ type RestrictedProps = PropsWithChildren<{
|
|
|
19
19
|
*/
|
|
20
20
|
requireAll?: boolean;
|
|
21
21
|
}>;
|
|
22
|
-
export declare const Restricted: ({ canRequestOnly, hasPermissionsOnly, requiredGrants, requireAll, children, }: RestrictedProps) => JSX.Element | null;
|
|
22
|
+
export declare const Restricted: ({ canRequestOnly, hasPermissionsOnly, requiredGrants, requireAll, children, }: RestrictedProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
23
23
|
export {};
|
package/package.json
CHANGED
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"@stream-io/i18n": "^0.0.8",
|
|
26
|
-
"@stream-io/video-client": "^0.0.
|
|
26
|
+
"@stream-io/video-client": "^0.0.41",
|
|
27
27
|
"react": ">=17.0.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@stream-io/i18n": "^0.0.8",
|
|
31
|
-
"@stream-io/video-client": "^0.0.
|
|
31
|
+
"@stream-io/video-client": "^0.0.41",
|
|
32
32
|
"@types/react": "^18.0.26",
|
|
33
33
|
"@types/rimraf": "^3.0.2",
|
|
34
34
|
"react": "^18.2.0",
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"rimraf": "^3.0.2",
|
|
37
37
|
"typescript": "^4.9.5"
|
|
38
38
|
},
|
|
39
|
-
"version": "0.0.
|
|
39
|
+
"version": "0.0.43"
|
|
40
40
|
}
|