@mindly/ui-components 3.46.7 → 3.46.9

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.
@@ -9,6 +9,7 @@ declare type ChatListItemProps = {
9
9
  time?: number;
10
10
  timeZone?: string;
11
11
  lastMessageType?: 'text' | 'file' | 'image' | 'video' | 'system';
12
+ locale?: string;
12
13
  };
13
14
  declare const _default: React.NamedExoticComponent<ChatListItemProps>;
14
15
  export default _default;
@@ -13,6 +13,7 @@ declare type ChatMessageProps = {
13
13
  width?: number;
14
14
  height?: number;
15
15
  };
16
+ locale?: string;
16
17
  };
17
18
  declare const _default: React.NamedExoticComponent<ChatMessageProps>;
18
19
  export default _default;
@@ -1 +1 @@
1
- export declare const timeNormalize: (message: string, timeZone: string) => string;
1
+ export declare const timeNormalize: (message: string, timeZone: string, locale: string) => string;
@@ -29,6 +29,7 @@ declare type SpecialistCardProps = {
29
29
  session: string;
30
30
  clients: string[];
31
31
  sessions: string[];
32
+ by: string;
32
33
  };
33
34
  };
34
35
  declare const SpecialistCard: React.FC<SpecialistCardProps>;
@@ -3,5 +3,6 @@ import '../Theme/global.css';
3
3
  export interface NoInternetConnectionProps {
4
4
  isInternetConnected: boolean;
5
5
  isIos: boolean;
6
+ heading?: string;
6
7
  }
7
8
  export declare const NoInternetConnection: React.FC<NoInternetConnectionProps>;