@stream-io/video-react-sdk 1.25.0 → 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 +18 -0
- package/dist/css/styles.css +31 -13
- 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,24 @@
|
|
|
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
|
+
|
|
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)
|
|
18
|
+
|
|
19
|
+
### Dependency Updates
|
|
20
|
+
|
|
21
|
+
- `@stream-io/video-styling` updated to version `1.6.1`
|
|
22
|
+
|
|
5
23
|
## [1.25.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.24.3...@stream-io/video-react-sdk-1.25.0) (2025-10-30)
|
|
6
24
|
|
|
7
25
|
### Dependency Updates
|
package/dist/css/styles.css
CHANGED
|
@@ -1317,17 +1317,6 @@
|
|
|
1317
1317
|
color: var(--str-video__base-color1);
|
|
1318
1318
|
}
|
|
1319
1319
|
|
|
1320
|
-
.str-video__device-settings__heading {
|
|
1321
|
-
width: 100%;
|
|
1322
|
-
justify-self: start;
|
|
1323
|
-
margin: unset;
|
|
1324
|
-
margin-left: 8px;
|
|
1325
|
-
color: var(--str-video__base-color1);
|
|
1326
|
-
font-size: 24;
|
|
1327
|
-
font-weight: 500;
|
|
1328
|
-
word-wrap: "break-word";
|
|
1329
|
-
}
|
|
1330
|
-
|
|
1331
1320
|
.str-video__device-settings__close-button {
|
|
1332
1321
|
color: var(--str-video__base-color1);
|
|
1333
1322
|
background-color: transparent;
|
|
@@ -1337,10 +1326,10 @@
|
|
|
1337
1326
|
padding: var(--str-video__spacing-lg);
|
|
1338
1327
|
}
|
|
1339
1328
|
.str-video__device-settings__device-kind .str-video__device-settings__device-selector-title {
|
|
1340
|
-
font-size: var(--str-video__font-size-
|
|
1329
|
+
font-size: var(--str-video__font-size-sm);
|
|
1330
|
+
font-weight: bold;
|
|
1341
1331
|
line-height: 1.25rem;
|
|
1342
1332
|
padding-bottom: 0.5rem;
|
|
1343
|
-
font-size: 13px;
|
|
1344
1333
|
margin-bottom: 8px;
|
|
1345
1334
|
}
|
|
1346
1335
|
.str-video__device-settings__device-kind .str-video__option,
|
|
@@ -1397,6 +1386,35 @@
|
|
|
1397
1386
|
border-color: var(--str-video__primary-color);
|
|
1398
1387
|
}
|
|
1399
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
|
+
|
|
1400
1418
|
.str-video__dropdown {
|
|
1401
1419
|
position: relative;
|
|
1402
1420
|
}
|