Skip to content

Commit 1b5537d

Browse files
committed
release: 3.14.14
1 parent f43f795 commit 1b5537d

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# Changelog - v3
22

3+
## [v3.14.14] (Aug 1, 2024)
4+
5+
### Features
6+
- Added `forceLeftToRightMessageLayout` to enable LTR message layout display in RTL mode. This helps users who set `htmlTextDirection='rtl'` to keep the message layout in LTR format (outgoing messages on the right, incoming messages on the left).
7+
```tsx
8+
import SendbirdProvider from ‘@sendbird/uikit-react/SendbirdProvider’;
9+
import ar from 'date-fns/locale/ar';
10+
11+
const YourComponent() => {
12+
return (
13+
<SendbirdProvider
14+
htmlTextDirection="rtl" // for RTL display
15+
forceLeftToRightMessageLayout={true} // to enforce the message layout to Left-to-Right direction even though htmlTextDirection is set to ‘rtl’
16+
dateLocale={ar} // locale setting would be necessary too
17+
{…other props}
18+
>
19+
{...other components}
20+
</SendbirdProvider>
21+
)
22+
}
23+
```
24+
- Banned members no longer affect the ChannelSettings/Profile.
25+
26+
### Fixes
27+
- Fixed an issue where the `GroupChannelCollection` was not recreated when `channelListQueryParams` changed. The channel list now refreshes when the values of `channelListQueryParams` are updated.
28+
- Fixed a bug where replied child message width did not fit the content.
29+
- Corrected the direction of some icons in RTL mode. Specifically, the leave channel icon and the broadcast channel icon.
30+
- Fixed an issue where the feedback modal was not displayed on feedback button click in mobile view. No change in desktop view behavior.
31+
- Fixed an issue where banned members affected the ChannelSettings/Profile. Banned members now do not affect these settings.
32+
33+
### Chores
34+
- Omitted `renderUserListItem` of `ChannelSettingsUIProps` from the `ChannelSettingsProps`.
35+
336
## [v3.14.13] (July 18, 2024)
437

538
### Features

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-react",
3-
"version": "3.14.13",
3+
"version": "3.14.14",
44
"description": "Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.",
55
"keywords": [
66
"sendbird",

0 commit comments

Comments
 (0)