You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feature:
* Mention
* Add isMentionEnabled props to the <App /> and <SendbirdProvider />
* Add userMention into the config props of the <App /> andd <SendbirdProvider />
* <SendbirdProvider config={{ userMention: { maxMentionCount: 10, maxSuggestionCount: 15 } }} />
* maxMentionCount: A maximum count that you can mention in the message input
* maxSuggestionCount: A maximum user count that the SuggestedMentionList suggests for user mention
* Create SuggestedMentionList component under the Channel smart component
* Create SuggestedUserMentionItem component
* Create MentionUserLabel ui component
* Add string set
* MENTION_NAME__NO_NAME: '(No name)'
* MENTION_COUNT__OVER_LIMIT: 'You can mention up to %d times per message.'
Fix:
* Type definition file fix for TS project
For typescript projects, add `node_modules/@sendbird/uikit-react/index.d.ts`
to your `include` section in tsconfig file to get type definitions
* Move font import to top of CSS file
Some bundlers such as parcel throw error:
`@import rules must precede all rules aside from @charset and @layer statements`
Resolve this issue by moving the line to the top
0 commit comments