@stream-io/video-react-sdk 1.14.1 → 1.14.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 +23 -0
- package/dist/css/styles.css +16 -0
- package/dist/css/styles.css.map +1 -1
- package/dist/index.cjs.js +7 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +7 -4
- package/dist/index.es.js.map +1 -1
- package/dist/src/core/components/CallLayout/PipLayout.d.ts +1 -1
- package/dist/src/core/components/CallLayout/index.d.ts +1 -0
- package/package.json +4 -4
- package/src/core/components/CallLayout/PipLayout.tsx +28 -7
- package/src/core/components/CallLayout/index.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.14.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.14.2...@stream-io/video-react-sdk-1.14.3) (2025-04-15)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
- `@stream-io/video-styling` updated to version `1.1.4`
|
|
10
|
+
- `@stream-io/video-client` updated to version `1.19.3`
|
|
11
|
+
- `@stream-io/video-react-bindings` updated to version `1.5.15`
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- access device list lazily from call state hook ([#1761](https://github.com/GetStream/stream-video-js/issues/1761)) ([319353c](https://github.com/GetStream/stream-video-js/commit/319353caf709f6a9fa2197b2ac923b9ceecadb7c))
|
|
16
|
+
|
|
17
|
+
## [1.14.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.14.1...@stream-io/video-react-sdk-1.14.2) (2025-04-11)
|
|
18
|
+
|
|
19
|
+
### Dependency Updates
|
|
20
|
+
|
|
21
|
+
- `@stream-io/video-client` updated to version `1.19.2`
|
|
22
|
+
- `@stream-io/video-react-bindings` updated to version `1.5.14`
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
- participant filter for `single-participant` layout in egress app ([#1756](https://github.com/GetStream/stream-video-js/issues/1756)) ([8c0b05d](https://github.com/GetStream/stream-video-js/commit/8c0b05d89238db084c7b09415030ec072e9e974b))
|
|
27
|
+
|
|
5
28
|
## [1.14.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.14.0...@stream-io/video-react-sdk-1.14.1) (2025-04-09)
|
|
6
29
|
|
|
7
30
|
### Dependency Updates
|
package/dist/css/styles.css
CHANGED
|
@@ -878,6 +878,22 @@
|
|
|
878
878
|
height: 100%;
|
|
879
879
|
}
|
|
880
880
|
|
|
881
|
+
.str-video__pip-screen-share-local {
|
|
882
|
+
display: flex;
|
|
883
|
+
gap: var(--str-video__spacing-sm);
|
|
884
|
+
border-radius: var(--str-video__border-radius-sm);
|
|
885
|
+
padding: var(--str-video__spacing-md);
|
|
886
|
+
font-size: var(--str-video__font-size-sm);
|
|
887
|
+
}
|
|
888
|
+
.str-video__pip-screen-share-local .str-video__icon {
|
|
889
|
+
width: 1rem;
|
|
890
|
+
height: 1rem;
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
.str-video__pip-screen-share-local {
|
|
894
|
+
background: var(--str-video__background-color5);
|
|
895
|
+
}
|
|
896
|
+
|
|
881
897
|
.str-video__participant-list {
|
|
882
898
|
display: flex;
|
|
883
899
|
flex-direction: column;
|