agora-appbuilder-core 4.0.11 → 4.0.12-beta.1
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 +1 -1
- package/template/Gulpfile.js +0 -1
- package/template/bridge/rtc/webNg/RtcSurfaceView.tsx +1 -1
- package/template/defaultConfig.js +1 -0
- package/template/global.d.ts +1 -0
- package/template/src/assets/font-styles.css +4 -0
- package/template/src/assets/fonts/icomoon.ttf +0 -0
- package/template/src/assets/selection.json +1 -1
- package/template/src/atoms/CustomIcon.tsx +1 -0
- package/template/src/auth/AuthProvider.tsx +2 -2
- package/template/src/components/DeviceConfigure.tsx +5 -5
- package/template/src/components/RTMConfigure.tsx +3 -3
- package/template/src/components/recordings/recording-table.tsx +164 -69
- package/template/src/components/recordings/style.ts +55 -0
- package/template/src/components/recordings/utils.ts +46 -4
- package/template/src/pages/VideoCall.tsx +25 -22
- package/template/src/rtm-events/constants.ts +8 -0
- package/template/src/subComponents/recording/useIsRecordingBot.tsx +2 -1
- package/template/src/subComponents/recording/useRecording.tsx +264 -110
- package/template/src/subComponents/screenshare/ScreenshareConfigure.tsx +22 -1
- package/template/src/utils/fetch-retry.ts +23 -0
- package/template/src/utils/useFindActiveSpeaker.ts +12 -0
package/package.json
CHANGED
package/template/Gulpfile.js
CHANGED
|
@@ -258,7 +258,6 @@ const reactSdk = {
|
|
|
258
258
|
bundleSdkTypedefs: () => {
|
|
259
259
|
return src(['../Builds/customization-api.d.ts', '../Builds/reactSdk.d.ts'])
|
|
260
260
|
.pipe(concat('index.d.ts'))
|
|
261
|
-
.pipe(replace(`${config.PRODUCT_ID}/`, ''))
|
|
262
261
|
.pipe(
|
|
263
262
|
replace(
|
|
264
263
|
'declare module "index.rsdk"',
|
|
@@ -30,7 +30,7 @@ export interface StyleProps {
|
|
|
30
30
|
interface SurfaceViewInterface extends RtcSurfaceViewProps, StyleProps {}
|
|
31
31
|
|
|
32
32
|
const RtcSurfaceView = (props: SurfaceViewInterface) => {
|
|
33
|
-
|
|
33
|
+
logger.debug(LogSource.Internals, 'LAYOUT', 'Rtc Surface View props', props);
|
|
34
34
|
const {uid, renderMode} = props.canvas;
|
|
35
35
|
const stream: ILocalVideoTrack | IRemoteVideoTrack =
|
|
36
36
|
uid === 0
|
package/template/global.d.ts
CHANGED
|
Binary file
|