@mindly/ui-components 3.46.8 → 3.47.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.
- package/dist/cjs/index.js +15 -18
- 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/ChevronHeader/ChevronHeader.styled.d.ts +1 -0
- package/dist/cjs/types/lib/no-internet-connection/NoInternetConnection.d.ts +1 -0
- package/dist/esm/index.js +15 -18
- 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/ChevronHeader/ChevronHeader.styled.d.ts +1 -0
- package/dist/esm/types/lib/no-internet-connection/NoInternetConnection.d.ts +1 -0
- package/dist/index.d.ts +3 -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;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export declare const BackButton: import("styled-components").StyledComponent<"button", any, {}, never>;
|
|
2
2
|
export declare const BookingSteps: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
3
|
export declare const BookingTitle: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
|
+
export declare const ChevronHeaderTitle: import("styled-components").StyledComponent<"div", any, {}, never>;
|
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
|
|