@stream-io/video-react-sdk 1.12.6 → 1.12.7
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stream-io/video-react-sdk",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.7",
|
|
4
4
|
"packageManager": "yarn@3.2.4",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@floating-ui/react": "^0.26.24",
|
|
34
|
-
"@stream-io/video-client": "1.18.
|
|
34
|
+
"@stream-io/video-client": "1.18.4",
|
|
35
35
|
"@stream-io/video-filters-web": "0.1.7",
|
|
36
|
-
"@stream-io/video-react-bindings": "1.5.
|
|
36
|
+
"@stream-io/video-react-bindings": "1.5.6",
|
|
37
37
|
"chart.js": "^4.4.4",
|
|
38
38
|
"clsx": "^2.0.0",
|
|
39
39
|
"react-chartjs-2": "^5.3.0"
|
|
@@ -171,13 +171,14 @@ export const ParticipantActionsContextMenu = () => {
|
|
|
171
171
|
</GenericMenuButtonItem>
|
|
172
172
|
)}
|
|
173
173
|
</Restricted>
|
|
174
|
-
{participantViewElement &&
|
|
175
|
-
|
|
176
|
-
{
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
174
|
+
{participantViewElement &&
|
|
175
|
+
typeof participantViewElement.requestFullscreen !== 'undefined' && (
|
|
176
|
+
<GenericMenuButtonItem onClick={toggleFullscreenMode}>
|
|
177
|
+
{t('{{ direction }} fullscreen', {
|
|
178
|
+
direction: fullscreenModeOn ? t('Leave') : t('Enter'),
|
|
179
|
+
})}
|
|
180
|
+
</GenericMenuButtonItem>
|
|
181
|
+
)}
|
|
181
182
|
{videoElement && document.pictureInPictureEnabled && (
|
|
182
183
|
<GenericMenuButtonItem onClick={togglePictureInPicture}>
|
|
183
184
|
{t('{{ direction }} picture-in-picture', {
|