@stream-io/video-react-sdk 1.25.1 → 1.26.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 +12 -0
- package/dist/css/styles.css +29 -0
- package/dist/css/styles.css.map +1 -1
- package/dist/index.cjs.js +20 -5
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +21 -6
- package/dist/index.es.js.map +1 -1
- package/dist/src/components/DeviceSettings/AudioVolumeIndicator.d.ts +1 -0
- package/dist/src/components/DeviceSettings/DeviceSelector.d.ts +3 -2
- package/dist/src/components/DeviceSettings/DeviceSelectorAudio.d.ts +2 -1
- package/package.json +4 -4
- package/src/components/DeviceSettings/AudioVolumeIndicator.tsx +34 -0
- package/src/components/DeviceSettings/DeviceSelector.tsx +30 -18
- package/src/components/DeviceSettings/DeviceSelectorAudio.tsx +11 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.26.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.25.1...@stream-io/video-react-sdk-1.26.0) (2025-11-12)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
- `@stream-io/video-styling` updated to version `1.7.0`
|
|
10
|
+
- `@stream-io/video-client` updated to version `1.36.1`
|
|
11
|
+
- `@stream-io/video-react-bindings` updated to version `1.11.0`
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
- **react:** Microphone Audio Level Indicator ([#1993](https://github.com/GetStream/stream-video-js/issues/1993)) ([9b62d2d](https://github.com/GetStream/stream-video-js/commit/9b62d2d8d2171ae97fbedaedbe473fdb0b85444b))
|
|
16
|
+
|
|
5
17
|
## [1.25.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.25.0...@stream-io/video-react-sdk-1.25.1) (2025-11-04)
|
|
6
18
|
|
|
7
19
|
### Dependency Updates
|
package/dist/css/styles.css
CHANGED
|
@@ -1386,6 +1386,35 @@
|
|
|
1386
1386
|
border-color: var(--str-video__primary-color);
|
|
1387
1387
|
}
|
|
1388
1388
|
|
|
1389
|
+
.str-video__device-settings__separator {
|
|
1390
|
+
border-color: var(--str-video__base-color3);
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
.str-video__audio-volume-indicator {
|
|
1394
|
+
width: 100%;
|
|
1395
|
+
display: flex;
|
|
1396
|
+
align-items: center;
|
|
1397
|
+
gap: var(--str-video__spacing-xs);
|
|
1398
|
+
padding: var(--str-video__spacing-sm) var(--str-video__spacing-md);
|
|
1399
|
+
}
|
|
1400
|
+
.str-video__audio-volume-indicator .str-video__icon {
|
|
1401
|
+
width: var(--str-video__font-size-xxl);
|
|
1402
|
+
height: var(--str-video__font-size-xxl);
|
|
1403
|
+
}
|
|
1404
|
+
.str-video__audio-volume-indicator .str-video__audio-volume-indicator__bar {
|
|
1405
|
+
flex: 1;
|
|
1406
|
+
background-color: var(--str-video__base-color1);
|
|
1407
|
+
height: var(--str-video__spacing-xs);
|
|
1408
|
+
border-radius: var(--str-video__border-radius-xs);
|
|
1409
|
+
}
|
|
1410
|
+
.str-video__audio-volume-indicator .str-video__audio-volume-indicator__bar-value {
|
|
1411
|
+
width: 100%;
|
|
1412
|
+
height: 100%;
|
|
1413
|
+
background: var(--str-video__primary-color);
|
|
1414
|
+
border-radius: var(--str-video__border-radius-xs);
|
|
1415
|
+
transform-origin: left center;
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1389
1418
|
.str-video__dropdown {
|
|
1390
1419
|
position: relative;
|
|
1391
1420
|
}
|