You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(1) `currentUserId` is required to display UI and trigger actions according to the user using the chat (ex: messages position on the right, etc.)
114
115
@@ -180,7 +181,9 @@ messageActions="[
180
181
]"
181
182
```
182
183
183
-
(8) `textMessages` can be used to replace default i18n texts. Ex:
184
+
(8) `showNewMessagesDivider` can be used to show/hide the blue line divider between seen and unseen messages.
185
+
186
+
(9) `textMessages` can be used to replace default i18n texts. Ex:
184
187
185
188
```javascript
186
189
textMessages="{
@@ -193,7 +196,7 @@ textMessages="{
193
196
}"
194
197
```
195
198
196
-
(9) `textFormatting` can be used to add text formatting. Currently, bold, italic, strikethrough, underline, inline code and multiline code formatting are available and can be used in conjonction. You can disable text formatting by passing the prop as `:textFormatting="false"`.
199
+
(10) `textFormatting` can be used to add text formatting. Currently, bold, italic, strikethrough, underline, inline code and multiline code formatting are available and can be used in conjonction. You can disable text formatting by passing the prop as `:textFormatting="false"`.
(10) `responsiveBreakpoint` can be used to collapse the rooms list on the left when then viewport size goes below the specified width.
226
+
(11) `responsiveBreakpoint` can be used to collapse the rooms list on the left when then viewport size goes below the specified width.
224
227
225
-
(11) `singleRoom` can be used if you never want to show the rooms list on the left. You still need to pass the `rooms` prop as an array with a single element.
228
+
(12) `singleRoom` can be used if you never want to show the rooms list on the left. You still need to pass the `rooms` prop as an array with a single element.
226
229
227
-
(12) `theme` can be used to change the chat theme. Currently, only `light` and `dark` are available.
230
+
(13) `theme` can be used to change the chat theme. Currently, only `light` and `dark` are available.
228
231
229
-
(13) `styles` can be used to customize your own theme. Ex:
232
+
(14) `styles` can be used to customize your own theme. Ex:
0 commit comments