@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.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/Chat/ChatListItem/ChatListItem.d.ts +1 -0
- package/dist/cjs/types/lib/Chat/ChatMessage/ChatMessage.d.ts +1 -0
- package/dist/cjs/types/lib/Chat/utils.d.ts +1 -1
- package/dist/cjs/types/lib/SpecialistCard/SpecialistCard.d.ts +1 -0
- package/dist/cjs/types/lib/no-internet-connection/NoInternetConnection.d.ts +1 -0
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/Chat/ChatListItem/ChatListItem.d.ts +1 -0
- package/dist/esm/types/lib/Chat/ChatMessage/ChatMessage.d.ts +1 -0
- package/dist/esm/types/lib/Chat/utils.d.ts +1 -1
- package/dist/esm/types/lib/SpecialistCard/SpecialistCard.d.ts +1 -0
- package/dist/esm/types/lib/no-internet-connection/NoInternetConnection.d.ts +1 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const timeNormalize: (message: string, timeZone: string) => string;
|
|
1
|
+
export declare const timeNormalize: (message: string, timeZone: string, locale: string) => string;
|
package/dist/index.d.ts
CHANGED
|
@@ -100,6 +100,7 @@ declare const DatePicker: React.FC<DatePickerProps>;
|
|
|
100
100
|
interface NoInternetConnectionProps {
|
|
101
101
|
isInternetConnected: boolean;
|
|
102
102
|
isIos: boolean;
|
|
103
|
+
heading?: string;
|
|
103
104
|
}
|
|
104
105
|
declare const NoInternetConnection: React.FC<NoInternetConnectionProps>;
|
|
105
106
|
|
|
@@ -460,6 +461,7 @@ declare type ChatListItemProps = {
|
|
|
460
461
|
time?: number;
|
|
461
462
|
timeZone?: string;
|
|
462
463
|
lastMessageType?: 'text' | 'file' | 'image' | 'video' | 'system';
|
|
464
|
+
locale?: string;
|
|
463
465
|
};
|
|
464
466
|
declare const _default$s: React.NamedExoticComponent<ChatListItemProps>;
|
|
465
467
|
|
|
@@ -477,6 +479,7 @@ declare type ChatMessageProps = {
|
|
|
477
479
|
width?: number;
|
|
478
480
|
height?: number;
|
|
479
481
|
};
|
|
482
|
+
locale?: string;
|
|
480
483
|
};
|
|
481
484
|
declare const _default$r: React.NamedExoticComponent<ChatMessageProps>;
|
|
482
485
|
|
|
@@ -1005,6 +1008,7 @@ declare type SpecialistCardProps = {
|
|
|
1005
1008
|
session: string;
|
|
1006
1009
|
clients: string[];
|
|
1007
1010
|
sessions: string[];
|
|
1011
|
+
by: string;
|
|
1008
1012
|
};
|
|
1009
1013
|
};
|
|
1010
1014
|
declare const SpecialistCard: React.FC<SpecialistCardProps>;
|