Skip to content

Commit bcdedd6

Browse files
committed
add changelog
1 parent a4068d6 commit bcdedd6

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

CHANGELOG.md

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

3+
## [v3.14.13] (July 18, 2024)
4+
5+
### Features
6+
- **Address RTL UI Feedback**
7+
- Fixed an issue where the `htmlTextDirection` prop didn't work when using `SendbirdProvider`, but only worked in the App module.
8+
- Updated the paper plane icon to point left instead of right in RTL mode.
9+
- Repositioned buttons in the modal footer to the right side instead of the left in RTL mode.
10+
11+
- **Message Menu Customization in Threads**
12+
- Added `renderMessageMenu` and `renderEmojiMenu` props to the `<ParentMessageInfo />`, `<ThreadListItem />`, and `<ThreadListItemContent />` components.
13+
- **Example usage:**
14+
```tsx
15+
<Thread
16+
renderMessage={(props) => (
17+
<ThreadListItem {...props} renderMessageMenu={(props) => (
18+
<MessageMenu {...props} renderMenuItems={({ items }) => (
19+
<>
20+
<items.CopyMenuItem />
21+
<items.DeleteMenuItem />
22+
</>
23+
)} />
24+
)} />
25+
)}
26+
/>
27+
```
28+
29+
### Fixes
30+
- **Deprecation Marks on Channel & ChannelList Modules**
31+
- Marked `Channel`, `ChannelProvider`, `ChannelList`, and `ChannelListProvider` as deprecated.
32+
33+
### Chore
34+
- **Improve Stability of `useMenuItems`**
35+
- Improved the stability of the `useMenuItems` hook.
36+
- Exported `ChannelListQueryParamsType`.
37+
- Moved the `renderUserListItem` prop to the Provider from the UI component.
38+
- Exported the `ChannelSettingsMenuItem` component.
39+
40+
341
## [v3.14.12] (July 3, 2024)
442

543
### 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.12",
3+
"version": "3.14.13",
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)