Skip to content

Commit 1219954

Browse files
authored
Release v3.3.7 (#411)
[v3.3.7] (Feb 24 2023) Features: * Add props `activeChannelUrl` to ChannelList to give an option to pragmatically set a channel from a parent component router ```javascript const MyChannelList = () => { const [myActiveChannel] = useState() return (<ChannelList activeChannelUrl={myActiveChannel.url} />) } ``` Fixes: * Fix not showing newly recived messages in channel which has less messages * Use a real `channel.invitedAt` value when trying to fetch MessageSearchQuery * Disable the checkbox of the joined users on the InviteUsersModal * Set the default value of CheckBox component: `@sendbird/uikit-react/ui/CheckBox` as false
1 parent 27b21ee commit 1219954

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

CHANGELOG.md

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

3+
## [v3.3.7] (Feb 24 2023)
4+
5+
Features:
6+
* Add props `activeChannelUrl` to ChannelList to give an option to pragmatically set a channel from a parent component router
7+
```javascript
8+
const MyChannelList = () => {
9+
const [myActiveChannel] = useState()
10+
return (<ChannelList activeChannelUrl={myActiveChannel.url} />)
11+
}
12+
```
13+
14+
Fixes:
15+
* Fix not showing newly recived messages in channel which has less messages
16+
* Use a real `channel.invitedAt` value when trying to fetch MessageSearchQuery
17+
* Disable the checkbox of the joined users on the InviteUsersModal
18+
* Set the default value of CheckBox component: `@sendbird/uikit-react/ui/CheckBox` as false
19+
320
## [v3.3.6] (Feb 13 2023)
421

522
Fixes:

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.3.6",
3+
"version": "3.3.7",
44
"description": "React based UI kit for sendbird",
55
"main": "dist/index.js",
66
"style": "dist/index.css",

0 commit comments

Comments
 (0)