agora-appbuilder-core 4.0.26 → 4.0.27

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.
@@ -30,7 +30,6 @@ export interface StyleProps {
30
30
  interface SurfaceViewInterface extends RtcSurfaceViewProps, StyleProps {}
31
31
 
32
32
  const RtcSurfaceView = (props: SurfaceViewInterface) => {
33
- console.debug('Rtc Surface View props', props);
34
33
  const {uid, renderMode} = props.canvas;
35
34
  const stream: ILocalVideoTrack | IRemoteVideoTrack =
36
35
  uid === 0
@@ -38,7 +37,6 @@ const RtcSurfaceView = (props: SurfaceViewInterface) => {
38
37
  : uid === 1
39
38
  ? window.engine.screenStream.video
40
39
  : window.engine.remoteStreams.get(uid)?.video;
41
- // console.log(props, window.engine, stream);
42
40
  useEffect(
43
41
  function () {
44
42
  if (stream?.play) {
@@ -37,3 +37,4 @@ export type {LanguageType} from '../src/subComponents/caption/utils';
37
37
  export {default as useSpeechToText} from '../src/utils/useSpeechToText';
38
38
  export {isMobileUA} from '../src/utils/common';
39
39
  export {getSessionId} from '../src/utils/common';
40
+ export {useFullScreen} from '../src/utils/useFullScreen';
@@ -76,8 +76,8 @@ const DefaultConfig = {
76
76
  CHAT_ORG_NAME: '',
77
77
  CHAT_APP_NAME: '',
78
78
  CHAT_URL: '',
79
- CLI_VERSION: '3.0.26',
80
- CORE_VERSION: '4.0.26',
79
+ CLI_VERSION: '3.0.27',
80
+ CORE_VERSION: '4.0.27',
81
81
  DISABLE_LANDSCAPE_MODE: false,
82
82
  };
83
83