@stream-io/video-react-sdk 1.19.2 → 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 +11 -0
- package/dist/index.cjs.js +3 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2 -2
- 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/index.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.19.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.19.2...@stream-io/video-react-sdk-1.19.3) (2025-08-05)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
- `@stream-io/video-client` updated to version `1.27.2`
|
|
10
|
+
- `@stream-io/video-react-bindings` updated to version `1.7.11`
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- export the Reaction component ([#1877](https://github.com/GetStream/stream-video-js/issues/1877)) ([7b4f0ff](https://github.com/GetStream/stream-video-js/commit/7b4f0ff917758f54f4452fa7ef92e4102d302492))
|
|
15
|
+
|
|
5
16
|
## [1.19.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.19.1...@stream-io/video-react-sdk-1.19.2) (2025-08-01)
|
|
6
17
|
|
|
7
18
|
### Bug Fixes
|
package/dist/index.cjs.js
CHANGED
|
@@ -2956,7 +2956,7 @@ const checkCanJoinEarly = (startsAt, joinAheadTimeSeconds) => {
|
|
|
2956
2956
|
return Date.now() >= +startsAt - (joinAheadTimeSeconds ?? 0) * 1000;
|
|
2957
2957
|
};
|
|
2958
2958
|
|
|
2959
|
-
const [major, minor, patch] = ("1.19.
|
|
2959
|
+
const [major, minor, patch] = ("1.19.3").split('.');
|
|
2960
2960
|
videoClient.setSdkInfo({
|
|
2961
2961
|
type: videoClient.SfuModels.SdkType.REACT,
|
|
2962
2962
|
major,
|
|
@@ -3017,6 +3017,7 @@ exports.PermissionNotification = PermissionNotification;
|
|
|
3017
3017
|
exports.PermissionRequestList = PermissionRequestList;
|
|
3018
3018
|
exports.PermissionRequests = PermissionRequests;
|
|
3019
3019
|
exports.PipLayout = PipLayout;
|
|
3020
|
+
exports.Reaction = Reaction;
|
|
3020
3021
|
exports.ReactionsButton = ReactionsButton;
|
|
3021
3022
|
exports.RecordCallButton = RecordCallButton;
|
|
3022
3023
|
exports.RecordCallConfirmationButton = RecordCallConfirmationButton;
|
|
@@ -3043,6 +3044,7 @@ exports.Tooltip = Tooltip;
|
|
|
3043
3044
|
exports.Video = Video$1;
|
|
3044
3045
|
exports.VideoPreview = VideoPreview;
|
|
3045
3046
|
exports.WithTooltip = WithTooltip;
|
|
3047
|
+
exports.defaultEmojiReactionMap = defaultEmojiReactionMap;
|
|
3046
3048
|
exports.defaultReactions = defaultReactions;
|
|
3047
3049
|
exports.translations = translations;
|
|
3048
3050
|
exports.useBackgroundFilters = useBackgroundFilters;
|