sceyt-chat-react-uikit 1.8.7-beta.3 → 1.8.7-beta.4
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/components/Channel/index.d.ts +3 -0
- package/components/ChannelList/ChannelSearch/index.d.ts +1 -0
- package/components/ChannelList/ContactItem/index.d.ts +1 -0
- package/components/ChannelList/index.d.ts +1 -0
- package/components/Message/RepliedMessage/index.test.d.ts +1 -0
- package/index.js +766 -607
- package/index.modern.js +766 -607
- package/package.json +1 -1
|
@@ -48,6 +48,7 @@ interface IChannelProps {
|
|
|
48
48
|
}) => any;
|
|
49
49
|
doNotShowMessageDeliveryTypes: string[];
|
|
50
50
|
showPhoneNumber?: boolean;
|
|
51
|
+
channelListWidth?: number;
|
|
51
52
|
}
|
|
52
53
|
declare const Channel: React.FC<IChannelProps>;
|
|
53
54
|
export default Channel;
|
|
@@ -123,6 +124,8 @@ export declare const DeliveryIconCont: import("styled-components").StyledCompone
|
|
|
123
124
|
export declare const UnreadMentionIconWrapper: import("styled-components").StyledComponent<"span", any, {
|
|
124
125
|
iconColor: string;
|
|
125
126
|
rightMargin?: boolean | undefined;
|
|
127
|
+
onAvatar?: boolean | undefined;
|
|
128
|
+
mainBg?: string | undefined;
|
|
126
129
|
}, never>;
|
|
127
130
|
export declare const TypingIndicator: import("styled-components").StyledComponent<"span", any, {}, never>;
|
|
128
131
|
export declare const ReactionItem: import("styled-components").StyledComponent<"span", any, {}, never>;
|
|
@@ -21,6 +21,7 @@ interface IChannelProps {
|
|
|
21
21
|
channelSubjectColor?: string;
|
|
22
22
|
channelAvatarSize?: number;
|
|
23
23
|
channelAvatarTextSize?: number;
|
|
24
|
+
channelListWidth?: number;
|
|
24
25
|
createChatWithContact: (contact: IContact) => void;
|
|
25
26
|
}
|
|
26
27
|
declare const ContactItem: React.FC<IChannelProps>;
|
|
@@ -80,6 +80,7 @@ interface IChannelListProps {
|
|
|
80
80
|
}, getFromContacts: boolean, warningColor: string, user: IUser, MessageText: any) => any;
|
|
81
81
|
doNotShowMessageDeliveryTypes?: string[];
|
|
82
82
|
showPhoneNumber?: boolean;
|
|
83
|
+
channelListWidth?: number;
|
|
83
84
|
}
|
|
84
85
|
declare const ChannelList: React.FC<IChannelListProps>;
|
|
85
86
|
export default ChannelList;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|