Skip to content

Commit 30633f1

Browse files
author
Sravan S
committed
[3.0.0-beta.6] (June 03 2022)
Feature: * Show profile on clicking a mention * Visual highlight when user is mention * Add session handler interface ``` // its recommended to memoize configureSession function const memoizedConfigureSession = (sb) => { const sessionHandler = new sb.SessionHandler(); sessionHandler.onSessionTokenRequired = (onSuccess, onError) => { }; return sessionHandler; }; // see: https://sendbird.com/docs/chat/v3/javascript/guides/authentication <SendbirdProvider configureSession={memoizedConfigureSession} /> ``` Fix: * Change the front-weight of Subtitle2 from 600 to 500 * Modify mention badge position on the ChannelListItem component * Change Info Icon size to 20px on the SuggestedMentionListItem component Fix: Mention related stuff * Modify the onMouseOver event on the SuggestedMentionList component * Filter 'html' text when pasting text to the MessageInput component * Hide and apply ellipsis for overflowing text on the SuggestedMentionListItem component * Deactivate the MessageInput component when the current user is muted or the current channel is frozen * Reset the mention states of the current channel when changing channel and closing the edit MessageInput component
1 parent 754f7f5 commit 30633f1

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

CHANGELOG.md

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

3+
## [3.0.0-beta.6] (June 03 2022)
4+
5+
Feature:
6+
* Show profile on clicking a mention
7+
* Visual highlight when user is mention
8+
* Add session handler interface
9+
```
10+
// its recommended to memoize configureSession function
11+
const memoizedConfigureSession = (sb) => {
12+
const sessionHandler = new sb.SessionHandler();
13+
sessionHandler.onSessionTokenRequired = (onSuccess, onError) => {
14+
};
15+
return sessionHandler;
16+
};
17+
18+
// see: https://sendbird.com/docs/chat/v3/javascript/guides/authentication
19+
<SendbirdProvider
20+
configureSession={memoizedConfigureSession}
21+
/>
22+
```
23+
24+
Fix:
25+
* Change the front-weight of Subtitle2 from 600 to 500
26+
* Modify mention badge position on the ChannelListItem component
27+
* Change Info Icon size to 20px on the SuggestedMentionListItem component
28+
Fix: Mention related stuff
29+
* Modify the onMouseOver event on the SuggestedMentionList component
30+
* Filter 'html' text when pasting text to the MessageInput component
31+
* Hide and apply ellipsis for overflowing text on the SuggestedMentionListItem component
32+
* Deactivate the MessageInput component when the current user is muted or the current channel is frozen
33+
* Reset the mention states of the current channel when changing channel and closing the edit MessageInput component
34+
335
## [3.0.0-beta.5] (May 24 2022)
436
Fixes:
537
* Export useChannelList

package-lock.json

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

0 commit comments

Comments
 (0)