Skip to content

Commit

Permalink
v3.14.4
Browse files Browse the repository at this point in the history
  • Loading branch information
liamcho committed May 2, 2024
1 parent 6122270 commit 492ad3e
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Changelog - v3

## [v3.14.4] (May 02, 2024)
### Features
* Added `suggestedRepliesDirection` global option which serves as vertical/horizontal scroll option for `SuggestedReplies`
* How to use?
```tsx
<App
appId={appId}
userId={userId}
uikitOptions={{
groupChannel: {
// Below turns on the `SuggestedReplies` feature (see v3.8.0 release changelog). Default value is false.
enableSuggestedReplies: true,
// Below changes scroll direction from horizontal to vertical.
suggestedRepliesDirection: 'vertical'
}
}}
/>
```
* Added a new ui component `Header` (`import Header from '@sendbird/uikit-react/ui/Header'`) which replaced all existing header components
### Fixes
* Fixed a bug where suggested replies are incorrectly displayed when `showSuggestedRepliesFor` is set to 'last_message_only'


## [v3.14.3] (Apr 19, 2024)
### Features
* Add outputFormat to the image compression options
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sendbird/uikit-react",
"version": "3.14.3",
"version": "3.14.4",
"description": "Sendbird UIKit for React: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.",
"keywords": [
"sendbird",
Expand Down

0 comments on commit 492ad3e

Please sign in to comment.