@cometchat/chat-uikit-react 5.0.14 → 5.0.16
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/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/styles/CometChatEditPreview.css +4 -0
- package/dist/styles/CometChatMessageList.css +4 -0
- package/dist/styles/components/CometChatEditPreview.css +4 -0
- package/dist/styles/components/CometChatMessageList.css +4 -0
- package/dist/types/components/CometChatConversations/CometChatConversations.d.ts +3 -0
- package/package.json +1 -1
|
@@ -314,6 +314,10 @@ width: fit-content;
|
|
|
314
314
|
box-sizing: border-box;
|
|
315
315
|
}
|
|
316
316
|
|
|
317
|
+
.cometchat-message-list__body--spacing-top .cometchat-list__body-intersection-top{
|
|
318
|
+
margin-bottom: var(--cometchat-spacing-8);
|
|
319
|
+
}
|
|
320
|
+
|
|
317
321
|
/* Message indicator inside message list */
|
|
318
322
|
.cometchat-message-list__message-indicator {
|
|
319
323
|
margin-bottom: 8px;
|
|
@@ -314,6 +314,10 @@ width: fit-content;
|
|
|
314
314
|
box-sizing: border-box;
|
|
315
315
|
}
|
|
316
316
|
|
|
317
|
+
.cometchat-message-list__body--spacing-top .cometchat-list__body-intersection-top{
|
|
318
|
+
margin-bottom: var(--cometchat-spacing-8);
|
|
319
|
+
}
|
|
320
|
+
|
|
317
321
|
/* Message indicator inside message list */
|
|
318
322
|
.cometchat-message-list__message-indicator {
|
|
319
323
|
margin-bottom: 8px;
|
|
@@ -157,6 +157,9 @@ interface ConversationsProps {
|
|
|
157
157
|
showScrollbar?: boolean;
|
|
158
158
|
}
|
|
159
159
|
export type Action = {
|
|
160
|
+
type: "addConversationOfTheGroupAtTheTop";
|
|
161
|
+
conversation: CometChat.Conversation;
|
|
162
|
+
} | {
|
|
160
163
|
type: "appendConversations";
|
|
161
164
|
conversations: CometChat.Conversation[];
|
|
162
165
|
removeOldConversation?: boolean;
|