@stream-io/video-react-sdk 1.26.1 → 1.27.0

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,27 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.27.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.26.1...@stream-io/video-react-sdk-1.27.0) (2025-11-17)
6
+
7
+ ### Dependency Updates
8
+
9
+ - `@stream-io/video-styling` updated to version `1.8.0`
10
+ - `@stream-io/video-client` updated to version `1.37.1`
11
+ - `@stream-io/video-filters-web` updated to version `0.5.0`
12
+ - `@stream-io/video-react-bindings` updated to version `1.11.2`
13
+
14
+ - replace speaker-test sound ([3dc35a1](https://github.com/GetStream/stream-video-js/commit/3dc35a13d9eb1a17aaefe51b078a0316dc225c0e))
15
+ - update the "Test speaker" label ([e4412db](https://github.com/GetStream/stream-video-js/commit/e4412dba0e111ed16bb2b5c25d744939f6c86359))
16
+
17
+ ### Features
18
+
19
+ - add SpeakerTest component ([#1998](https://github.com/GetStream/stream-video-js/issues/1998)) ([c626384](https://github.com/GetStream/stream-video-js/commit/c62638422f858782dcc3174e927d82cd0d9e9e1e))
20
+ - **react:** Improved Video Filters ([#1977](https://github.com/GetStream/stream-video-js/issues/1977)) ([f8831f1](https://github.com/GetStream/stream-video-js/commit/f8831f152a716ebf4e9656f32a8f83b707db779f))
21
+
22
+ ### Bug Fixes
23
+
24
+ - Don't fallback to MediaPipe model when TF is not supported ([#1999](https://github.com/GetStream/stream-video-js/issues/1999)) ([94a5bd0](https://github.com/GetStream/stream-video-js/commit/94a5bd0154f58c44e480ff26f7aeecf60db07d4f))
25
+
5
26
  ## [1.26.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.26.0...@stream-io/video-react-sdk-1.26.1) (2025-11-14)
6
27
 
7
28
  ### Dependency Updates
Binary file
@@ -1330,7 +1330,7 @@
1330
1330
  font-weight: bold;
1331
1331
  line-height: 1.25rem;
1332
1332
  padding-bottom: 0.5rem;
1333
- margin-bottom: 8px;
1333
+ margin-bottom: var(--str-video__spacing-sm);
1334
1334
  }
1335
1335
  .str-video__device-settings__device-kind .str-video__option,
1336
1336
  .str-video__device-settings__device-kind .str-video__device-settings__option {
@@ -1339,14 +1339,14 @@
1339
1339
  border-radius: var(--str-video__border-radius-lg);
1340
1340
  background-color: var(--str-video__button-primary-base);
1341
1341
  padding: var(--str-video__spacing-sm) var(--str-video__spacing-lg);
1342
- gap: 8px;
1342
+ gap: var(--str-video__spacing-sm);
1343
1343
  font-weight: 600;
1344
1344
  font-size: var(--str-video__font-size-sm);
1345
- line-height: var(--str-video__spaging-lg);
1345
+ line-height: var(--str-video__spacing-lg);
1346
1346
  }
1347
1347
  .str-video__device-settings__device-kind .str-video__option:not(:first-of-type),
1348
1348
  .str-video__device-settings__device-kind .str-video__device-settings__option:not(:first-of-type) {
1349
- margin-top: 8px;
1349
+ margin-top: var(--str-video__spacing-sm);
1350
1350
  }
1351
1351
  .str-video__device-settings__device-kind .str-video__option__icon--selected,
1352
1352
  .str-video__device-settings__device-kind .str-video__device-settings__option__icon--selected {
@@ -1415,6 +1415,21 @@
1415
1415
  transform-origin: left center;
1416
1416
  }
1417
1417
 
1418
+ .str-video__speaker-test {
1419
+ padding: var(--str-video__spacing-sm) 0;
1420
+ }
1421
+ .str-video__speaker-test .str-video__speaker-test__button-content {
1422
+ display: flex;
1423
+ align-items: center;
1424
+ gap: var(--str-video__spacing-sm);
1425
+ padding: 0 var(--str-video__spacing-sm);
1426
+ font-size: var(--str-video__font-size-sm);
1427
+ font-weight: 600;
1428
+ }
1429
+ .str-video__speaker-test .str-video__composite-button__button {
1430
+ width: 100% !important;
1431
+ }
1432
+
1418
1433
  .str-video__dropdown {
1419
1434
  position: relative;
1420
1435
  }