@mindly/ui-components 3.7.8 → 3.7.10
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 +11 -11
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/AgoraMediaPlayer/AgoraMediaPlayer.d.ts +1 -0
- package/dist/cjs/types/lib/AppFooter/AppFooter.d.ts +3 -1
- package/dist/cjs/types/lib/Chat/Textarea/Textarea.d.ts +2 -0
- package/dist/esm/index.js +10 -10
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/AgoraMediaPlayer/AgoraMediaPlayer.d.ts +1 -0
- package/dist/esm/types/lib/AppFooter/AppFooter.d.ts +3 -1
- package/dist/esm/types/lib/Chat/Textarea/Textarea.d.ts +2 -0
- package/dist/index.d.ts +5 -0
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ export declare type MediaPlayerProps = {
|
|
|
5
5
|
cameraTrack?: ILocalVideoTrack | IRemoteVideoTrack;
|
|
6
6
|
audioTrack?: ILocalAudioTrack | IRemoteAudioTrack;
|
|
7
7
|
fullScreen?: boolean;
|
|
8
|
+
showHint?: boolean;
|
|
8
9
|
networkQuality?: number;
|
|
9
10
|
fallbackImage?: string;
|
|
10
11
|
fallbackText?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -432,6 +432,7 @@ declare type MediaPlayerProps = {
|
|
|
432
432
|
cameraTrack?: ILocalVideoTrack | IRemoteVideoTrack;
|
|
433
433
|
audioTrack?: ILocalAudioTrack | IRemoteAudioTrack;
|
|
434
434
|
fullScreen?: boolean;
|
|
435
|
+
showHint?: boolean;
|
|
435
436
|
networkQuality?: number;
|
|
436
437
|
fallbackImage?: string;
|
|
437
438
|
fallbackText?: string;
|
|
@@ -488,6 +489,8 @@ declare type TextareaProps = {
|
|
|
488
489
|
onSend: () => void;
|
|
489
490
|
onChange: (value: string) => void;
|
|
490
491
|
value?: string;
|
|
492
|
+
onFocus?: () => void;
|
|
493
|
+
onBlur?: () => void;
|
|
491
494
|
};
|
|
492
495
|
declare const Textarea: FC<TextareaProps>;
|
|
493
496
|
|
|
@@ -540,6 +543,8 @@ declare const SwitchDeviceCard: React.FC<VideoCallSwitchDevice>;
|
|
|
540
543
|
|
|
541
544
|
declare type AppFooterProps = {
|
|
542
545
|
fullwidth?: boolean;
|
|
546
|
+
style?: CSSProperties;
|
|
547
|
+
className?: string;
|
|
543
548
|
};
|
|
544
549
|
declare const AppFooter: FC<AppFooterProps>;
|
|
545
550
|
|