@stream-io/video-react-sdk 1.19.1 → 1.19.3
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 +17 -0
- package/dist/index.cjs.js +4 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3 -3
- package/dist/index.es.js.map +1 -1
- package/dist/src/components/index.d.ts +2 -2
- package/package.json +3 -3
- package/src/components/BackgroundFilters/BackgroundFilters.tsx +1 -0
- package/src/components/index.ts +2 -2
|
@@ -4,7 +4,6 @@ export * from './Button';
|
|
|
4
4
|
export * from './CallControls';
|
|
5
5
|
export * from './CallParticipantsList';
|
|
6
6
|
export * from './CallPreview';
|
|
7
|
-
export * from './CallStats';
|
|
8
7
|
export * from './CallRecordingList';
|
|
9
8
|
export * from './CallStats';
|
|
10
9
|
export * from './DeviceSettings';
|
|
@@ -14,9 +13,10 @@ export * from './LoadingIndicator';
|
|
|
14
13
|
export * from './Menu';
|
|
15
14
|
export * from './NoiseCancellation';
|
|
16
15
|
export * from './Notification';
|
|
16
|
+
export * from './Reaction';
|
|
17
17
|
export * from './RingingCall';
|
|
18
18
|
export * from './Permissions';
|
|
19
|
-
export * from './StreamTheme';
|
|
20
19
|
export * from './Search';
|
|
20
|
+
export * from './StreamTheme';
|
|
21
21
|
export * from './Tooltip';
|
|
22
22
|
export * from './VideoPreview';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stream-io/video-react-sdk",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.3",
|
|
4
4
|
"main": "./dist/index.cjs.js",
|
|
5
5
|
"module": "./dist/index.es.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@floating-ui/react": "^0.27.6",
|
|
33
|
-
"@stream-io/video-client": "1.27.
|
|
33
|
+
"@stream-io/video-client": "1.27.2",
|
|
34
34
|
"@stream-io/video-filters-web": "0.2.1",
|
|
35
|
-
"@stream-io/video-react-bindings": "1.7.
|
|
35
|
+
"@stream-io/video-react-bindings": "1.7.11",
|
|
36
36
|
"chart.js": "^4.4.4",
|
|
37
37
|
"clsx": "^2.0.0",
|
|
38
38
|
"react-chartjs-2": "^5.3.0"
|
package/src/components/index.ts
CHANGED
|
@@ -4,7 +4,6 @@ export * from './Button';
|
|
|
4
4
|
export * from './CallControls';
|
|
5
5
|
export * from './CallParticipantsList';
|
|
6
6
|
export * from './CallPreview';
|
|
7
|
-
export * from './CallStats';
|
|
8
7
|
export * from './CallRecordingList';
|
|
9
8
|
export * from './CallStats';
|
|
10
9
|
export * from './DeviceSettings';
|
|
@@ -14,9 +13,10 @@ export * from './LoadingIndicator';
|
|
|
14
13
|
export * from './Menu';
|
|
15
14
|
export * from './NoiseCancellation';
|
|
16
15
|
export * from './Notification';
|
|
16
|
+
export * from './Reaction';
|
|
17
17
|
export * from './RingingCall';
|
|
18
18
|
export * from './Permissions';
|
|
19
|
-
export * from './StreamTheme';
|
|
20
19
|
export * from './Search';
|
|
20
|
+
export * from './StreamTheme';
|
|
21
21
|
export * from './Tooltip';
|
|
22
22
|
export * from './VideoPreview';
|