@mindly/ui-components 3.45.2 → 3.46.0

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.
@@ -7,6 +7,11 @@ declare type NotSupportModalProps = {
7
7
  buttonLink?: string;
8
8
  type?: 'danger' | 'primary';
9
9
  title?: string;
10
+ translations: {
11
+ buttonText: string;
12
+ downloadChromeText: string;
13
+ attention: string;
14
+ };
10
15
  } & JSX.IonModal;
11
16
  declare const NotSupportModal: React.FC<NotSupportModalProps>;
12
17
  export default NotSupportModal;
@@ -28,6 +28,11 @@ declare type VideoCallSwitchDevice = {
28
28
  * If device disabled - false, in another way - true
29
29
  */
30
30
  isDisabled?: boolean;
31
+ translations: {
32
+ micro: string;
33
+ camera: string;
34
+ offText: string;
35
+ };
31
36
  };
32
37
  declare const SwitchDeviceCard: React.FC<VideoCallSwitchDevice>;
33
38
  export default SwitchDeviceCard;
@@ -8,6 +8,15 @@ export declare type VideoCallInfoProps = {
8
8
  userInfo: UserInfo;
9
9
  consultationDate?: number;
10
10
  timeZone?: string;
11
+ locale: string;
12
+ translations: {
13
+ dateAndTime: string;
14
+ toStartSession: string;
15
+ abbreviatedDay: string;
16
+ abbreviatedHour: string;
17
+ abbreviatedMinutes: string;
18
+ abbreviatedSeconds: string;
19
+ };
11
20
  };
12
21
  declare const _default: React.NamedExoticComponent<VideoCallInfoProps>;
13
22
  export default _default;