@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.
@@ -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;
@@ -1,6 +1,8 @@
1
- import { FC } from 'react';
1
+ import { CSSProperties, FC } from 'react';
2
2
  declare type AppFooterProps = {
3
3
  fullwidth?: boolean;
4
+ style?: CSSProperties;
5
+ className?: string;
4
6
  };
5
7
  declare const AppFooter: FC<AppFooterProps>;
6
8
  export default AppFooter;
@@ -3,6 +3,8 @@ declare type TextareaProps = {
3
3
  onSend: () => void;
4
4
  onChange: (value: string) => void;
5
5
  value?: string;
6
+ onFocus?: () => void;
7
+ onBlur?: () => void;
6
8
  };
7
9
  declare const Textarea: FC<TextareaProps>;
8
10
  export default Textarea;
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindly/ui-components",
3
- "version": "3.7.8",
3
+ "version": "3.7.10",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "start": "react-scripts start",