@stream-io/video-react-sdk 0.0.22 → 0.0.23

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,13 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ### [0.0.23](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.22...@stream-io/video-react-sdk-0.0.23) (2023-06-12)
6
+
7
+
8
+ ### Documentation
9
+
10
+ * **react-sdk:** add documentation for device settings UI components ([#624](https://github.com/GetStream/stream-video-js/issues/624)) ([25b2636](https://github.com/GetStream/stream-video-js/commit/25b26363a41938ceadf256baa9ba194ffd92a658))
11
+
5
12
  ### [0.0.22](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.21...@stream-io/video-react-sdk-0.0.22) (2023-06-12)
6
13
 
7
14
  ### Dependency Updates
@@ -8,7 +8,7 @@ export const DeviceSelectorAudioInput = ({ title = 'Select a Mic', }) => {
8
8
  switchDevice('audioinput', deviceId);
9
9
  }, title: title }));
10
10
  };
11
- export const DeviceSelectorAudioOutput = ({ title = 'Select speakers', }) => {
11
+ export const DeviceSelectorAudioOutput = ({ title = 'Select Speakers', }) => {
12
12
  const { isAudioOutputChangeSupported, selectedAudioOutputDeviceId, switchDevice, } = useMediaDevices();
13
13
  const audioOutputDevices = useAudioOutputDevices();
14
14
  if (!isAudioOutputChangeSupported)
package/package.json CHANGED
@@ -47,5 +47,5 @@
47
47
  "typedoc": "^0.24.7",
48
48
  "typescript": "^4.9.5"
49
49
  },
50
- "version": "0.0.22"
50
+ "version": "0.0.23"
51
51
  }
@@ -32,7 +32,7 @@ export type DeviceSelectorAudioOutputProps = {
32
32
  };
33
33
 
34
34
  export const DeviceSelectorAudioOutput = ({
35
- title = 'Select speakers',
35
+ title = 'Select Speakers',
36
36
  }: DeviceSelectorAudioOutputProps) => {
37
37
  const {
38
38
  isAudioOutputChangeSupported,