@mindly/ui-components 3.7.11 → 3.7.13
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/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/AgoraMediaPlayer/AgoraMediaPlayer.d.ts +2 -2
- package/dist/esm/index.js +10 -10
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/AgoraMediaPlayer/AgoraMediaPlayer.d.ts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import React, { HTMLAttributes } from 'react';
|
|
2
2
|
import { ILocalAudioTrack, ILocalVideoTrack, IRemoteAudioTrack, IRemoteVideoTrack } from 'agora-rtc-sdk-ng';
|
|
3
3
|
export declare type MediaPlayerProps = {
|
|
4
|
-
videoContainer?: React.RefObject<HTMLDivElement>;
|
|
5
4
|
cameraTrack?: ILocalVideoTrack | IRemoteVideoTrack;
|
|
6
5
|
audioTrack?: ILocalAudioTrack | IRemoteAudioTrack;
|
|
6
|
+
participantFullName?: string;
|
|
7
7
|
fullScreen?: boolean;
|
|
8
|
-
|
|
8
|
+
networkQualityShowHint?: boolean;
|
|
9
9
|
networkQuality?: number;
|
|
10
10
|
fallbackImage?: string;
|
|
11
11
|
fallbackText?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -428,11 +428,11 @@ declare type StatusTagPropsType = {
|
|
|
428
428
|
declare const StatusTag: React.FC<StatusTagPropsType>;
|
|
429
429
|
|
|
430
430
|
declare type MediaPlayerProps = {
|
|
431
|
-
videoContainer?: React.RefObject<HTMLDivElement>;
|
|
432
431
|
cameraTrack?: ILocalVideoTrack | IRemoteVideoTrack;
|
|
433
432
|
audioTrack?: ILocalAudioTrack | IRemoteAudioTrack;
|
|
433
|
+
participantFullName?: string;
|
|
434
434
|
fullScreen?: boolean;
|
|
435
|
-
|
|
435
|
+
networkQualityShowHint?: boolean;
|
|
436
436
|
networkQuality?: number;
|
|
437
437
|
fallbackImage?: string;
|
|
438
438
|
fallbackText?: string;
|