Skip to content

Commit 492ad3e

Browse files
committed
v3.14.4
1 parent 6122270 commit 492ad3e

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog - v3
22

3+
## [v3.14.4] (May 02, 2024)
4+
### Features
5+
* Added `suggestedRepliesDirection` global option which serves as vertical/horizontal scroll option for `SuggestedReplies`
6+
* How to use?
7+
```tsx
8+
<App
9+
appId={appId}
10+
userId={userId}
11+
uikitOptions={{
12+
groupChannel: {
13+
// Below turns on the `SuggestedReplies` feature (see v3.8.0 release changelog). Default value is false.
14+
enableSuggestedReplies: true,
15+
// Below changes scroll direction from horizontal to vertical.
16+
suggestedRepliesDirection: 'vertical'
17+
}
18+
}}
19+
/>
20+
```
21+
* Added a new ui component `Header` (`import Header from '@sendbird/uikit-react/ui/Header'`) which replaced all existing header components
22+
### Fixes
23+
* Fixed a bug where suggested replies are incorrectly displayed when `showSuggestedRepliesFor` is set to 'last_message_only'
24+
25+
326
## [v3.14.3] (Apr 19, 2024)
427
### Features
528
* Add outputFormat to the image compression options

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-react",
3-
"version": "3.14.3",
3+
"version": "3.14.4",
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)