Commit 4027471
authored
release: 3.14.14 (#1188)
## [v3.14.14] (Aug 1, 2024)
### Features
- 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).
```tsx
import SendbirdProvider from ‘@sendbird/uikit-react/SendbirdProvider’;
import ar from 'date-fns/locale/ar';
const YourComponent() => {
return (
<SendbirdProvider
htmlTextDirection="rtl" // for RTL display
forceLeftToRightMessageLayout={true} // to enforce the message layout to
Left-to-Right direction even though htmlTextDirection is set to ‘rtl’
dateLocale={ar} // locale setting would be necessary too
{…other props}
>
{...other components}
</SendbirdProvider>
)
}
```
- Banned members no longer affect the ChannelSettings/Profile.
### Fixes
- Fixed an issue where the `GroupChannelCollection` was not recreated
when `channelListQueryParams` changed. The channel list now refreshes
when the values of `channelListQueryParams` are updated.
- Fixed a bug where replied child message width did not fit the content.
- Corrected the direction of some icons in RTL mode. Specifically, the
leave channel icon and the broadcast channel icon.
- Fixed an issue where the feedback modal was not displayed on feedback
button click in mobile view. No change in desktop view behavior.
- Fixed an issue where banned members affected the
ChannelSettings/Profile. Banned members now do not affect these
settings.
### Chores
- Omitted `renderUserListItem` of `ChannelSettingsUIProps` from the
`ChannelSettingsProps`.1 parent f43f795 commit 4027471
2 files changed
+34
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
3 | 36 | | |
4 | 37 | | |
5 | 38 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
| |||
0 commit comments