Skip to content

Commit 0d7fcc0

Browse files
committed
Updated UIKit version to 6.2.5
1 parent a666f0f commit 0d7fcc0

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cometchat/chat-uikit-react",
3-
"version": "6.2.4",
3+
"version": "6.2.5",
44
"description": "Ready-to-use Chat UI Components for React(Javascript/Web)",
55
"author": "CometChat",
66
"exports": {

src/CometChatUIKit/CometChatUIKit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class CometChatUIKit {
100100
return new Promise((resolve, reject) => {
101101
window.CometChatUiKit = {
102102
name: "@cometchat/chat-uikit-react",
103-
version: "6.2.4",
103+
version: "6.2.5",
104104
};
105105
CometChat.init(uiKitSettings?.appId, appSettings).then(() => {
106106
CometChat.getLoggedinUser().then((user: CometChat.User | null) => {

src/styles/components/CometChatAIAssistantMessageBubble.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,11 +142,13 @@
142142
text-decoration: underline;
143143
color: var(--cometchat-text-color-highlight);
144144
}
145-
145+
.cometchat-ai-assistant-message-bubble ul,.cometchat-ai-assistant-message-bubble ol,.cometchat-ai-assistant-message-bubble hr{
146+
margin: 0;
147+
}
146148
.cometchat-ai-assistant-message-bubble li{
147149
overflow: visible !important;
148150
line-height: 20px;
149-
padding: 6px 0px;
151+
padding: 0px 0px 6px 0px;
150152
}
151153
.cometchat-ai-assistant-message-bubble > ol:first-child > li:first-child,
152154
.cometchat-ai-assistant-message-bubble > ul:first-child > li:first-child

src/styles/components/CometChatStreamMessageBubble.css

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,10 +205,13 @@
205205
color: var(--cometchat-text-color-highlight);
206206
}
207207

208+
.cometchat-stream-message-bubble ul,.cometchat-stream-message-bubble ol,.cometchat-stream-message-bubble hr{
209+
margin: 0;
210+
}
208211
.cometchat-stream-message-bubble li{
209212
overflow: visible !important;
210213
line-height: 20px;
211-
padding: 6px 0px;
214+
padding: 0px 0px 6px 0px;
212215
}
213216
.cometchat-stream-message-bubble img{
214217
max-height: 300px;

0 commit comments

Comments
 (0)