@stream-io/video-react-sdk 0.4.2 → 0.4.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/video-react-sdk",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "packageManager": "yarn@3.2.4",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.es.js",
@@ -6,12 +6,20 @@ import { LoadingIndicator } from '../LoadingIndicator';
6
6
 
7
7
  const DefaultDisabledVideoPreview = () => {
8
8
  const { t } = useI18n();
9
- return <div>{t('Video is disabled')}</div>;
9
+ return (
10
+ <div className="str_video__video-preview__disabled-video-preview">
11
+ {t('Video is disabled')}
12
+ </div>
13
+ );
10
14
  };
11
15
 
12
16
  const DefaultNoCameraPreview = () => {
13
17
  const { t } = useI18n();
14
- return <div>{t('No camera found')}</div>;
18
+ return (
19
+ <div className="str_video__video-preview__no-camera-preview">
20
+ {t('No camera found')}
21
+ </div>
22
+ );
15
23
  };
16
24
 
17
25
  export type VideoPreviewProps = {