@stream-io/video-react-sdk 1.4.5 → 1.6.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,25 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [1.6.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.5.0...@stream-io/video-react-sdk-1.6.0) (2024-10-03)
6
+
7
+
8
+ ### Features
9
+
10
+ * add a prop to control mirroring of local participant video ([#1506](https://github.com/GetStream/stream-video-js/issues/1506)) ([ca12dc3](https://github.com/GetStream/stream-video-js/commit/ca12dc3ba34f6dec117ae6fe75d7dbe00f297fe4))
11
+
12
+ ## [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)
13
+
14
+ ### Dependency Updates
15
+
16
+ * `@stream-io/video-client` updated to version `1.8.0`
17
+ * `@stream-io/video-react-bindings` updated to version `1.1.0`
18
+ * `@stream-io/video-styling` updated to version `1.1.0`
19
+
20
+ ### Features
21
+
22
+ * manual video quality selection ([#1486](https://github.com/GetStream/stream-video-js/issues/1486)) ([3a754af](https://github.com/GetStream/stream-video-js/commit/3a754afa1bd13d038b1023520ec8a5296ad2669e))
23
+
5
24
  ## [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)
6
25
 
7
26
  ### Dependency Updates
@@ -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