@stream-io/video-react-sdk 1.4.4 → 1.5.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 +5 -5
- package/dist/css/styles.css.map +1 -1
- package/dist/index.cjs.js +429 -424
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +431 -426
- package/dist/index.es.js.map +1 -1
- package/dist/src/components/DropdownSelect/DropdownSelect.d.ts +1 -1
- package/dist/src/core/components/Video/Video.d.ts +6 -1
- package/package.json +4 -4
- package/src/components/Button/CompositeButton.tsx +3 -0
- package/src/components/CallParticipantsList/CallParticipantListingItem.tsx +2 -4
- package/src/components/DropdownSelect/DropdownSelect.tsx +2 -2
- package/src/core/components/ParticipantView/ParticipantActionsContextMenu.tsx +2 -2
- package/src/core/components/ParticipantView/ParticipantView.tsx +9 -0
- package/src/core/components/Video/Video.tsx +8 -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.5.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.4.5...@stream-io/video-react-sdk-1.5.0) (2024-10-02)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `@stream-io/video-client` updated to version `1.8.0`
|
|
10
|
+
* `@stream-io/video-react-bindings` updated to version `1.1.0`
|
|
11
|
+
* `@stream-io/video-styling` updated to version `1.1.0`
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* manual video quality selection ([#1486](https://github.com/GetStream/stream-video-js/issues/1486)) ([3a754af](https://github.com/GetStream/stream-video-js/commit/3a754afa1bd13d038b1023520ec8a5296ad2669e))
|
|
16
|
+
|
|
17
|
+
## [1.4.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.4.4...@stream-io/video-react-sdk-1.4.5) (2024-10-02)
|
|
18
|
+
|
|
19
|
+
### Dependency Updates
|
|
20
|
+
|
|
21
|
+
* `@stream-io/video-client` updated to version `1.7.4`
|
|
22
|
+
* `@stream-io/video-react-bindings` updated to version `1.0.10`
|
|
5
23
|
## [1.4.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.4.3...@stream-io/video-react-sdk-1.4.4) (2024-10-01)
|
|
6
24
|
|
|
7
25
|
|
package/dist/css/styles.css
CHANGED
|
@@ -220,7 +220,7 @@
|
|
|
220
220
|
color: var(--str-video__text-color1);
|
|
221
221
|
background-color: var(--str-video__button-primary-base);
|
|
222
222
|
}
|
|
223
|
-
.str-video__button:hover {
|
|
223
|
+
.str-video__button:not([disabled]):hover {
|
|
224
224
|
background-color: var(--str-video__button-primary-hover);
|
|
225
225
|
cursor: pointer;
|
|
226
226
|
}
|
|
@@ -252,7 +252,7 @@
|
|
|
252
252
|
font-size: 12px;
|
|
253
253
|
padding: 0.5rem;
|
|
254
254
|
}
|
|
255
|
-
.str-video__composite-button .str-video__composite-button__button-group .str-video__composite-button__button:hover {
|
|
255
|
+
.str-video__composite-button .str-video__composite-button__button-group .str-video__composite-button__button:not([disabled]):hover {
|
|
256
256
|
cursor: pointer;
|
|
257
257
|
}
|
|
258
258
|
.str-video__composite-button .str-video__composite-button__button-group .str-video__menu-toggle-button {
|
|
@@ -376,13 +376,13 @@
|
|
|
376
376
|
white-space: nowrap;
|
|
377
377
|
}
|
|
378
378
|
|
|
379
|
-
.str-video__composite-button__button-group:hover {
|
|
379
|
+
.str-video__composite-button__button-group:not(.str-video__composite-button__button-group--disabled):hover {
|
|
380
380
|
background-color: var(--str-video__composite-button__button-group-hover--background-color);
|
|
381
381
|
}
|
|
382
|
-
.str-video__composite-button__button-group:hover.str-video__composite-button__button-group--active-secondary:hover {
|
|
382
|
+
.str-video__composite-button__button-group:not(.str-video__composite-button__button-group--disabled):hover.str-video__composite-button__button-group--active-secondary:hover {
|
|
383
383
|
background-color: var(--str-video__composite-button__button-group-active-secondary-hover--background-color);
|
|
384
384
|
}
|
|
385
|
-
.str-video__composite-button__button-group:hover .str-video__icon {
|
|
385
|
+
.str-video__composite-button__button-group:not(.str-video__composite-button__button-group--disabled):hover .str-video__icon {
|
|
386
386
|
background-color: var(--str-video__icon-hover);
|
|
387
387
|
}
|
|
388
388
|
|