sceyt-chat-react-uikit 1.8.7-beta.2 → 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.
@@ -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>;
@@ -9,6 +9,7 @@ interface IChannelSearchProps {
9
9
  searchInputTextColor?: string;
10
10
  fontSize?: string;
11
11
  width?: string;
12
+ isCompact?: boolean;
12
13
  }
13
14
  declare const ChannelSearch: React.FC<IChannelSearchProps>;
14
15
  export default ChannelSearch;
@@ -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 {};