Feat:
- Official support for Feature Configuration
- You can now configure the features of UIKit through the
uikitOptions
prop of<SendbirdProvider />
or<App />
component. You can also find the detailed sample usage from SAMPLE.md#UIKit-Configuration-Samples - The minimum
@sendbird/chat
version has been increased to 4.9.2.
- You can now configure the features of UIKit through the
<SendbirdProvider
uikitOptions={{
common: {
enableUsingDefaultUserProfile: true,
},
groupChannel: {
enableMention: false,
enableOgtag: true,
enableReaction: true,
enableTypingIndicator: true,
input: {
camera: {
enablePhoto: true,
enableVideo: true,
},
gallery: {
enablePhoto: true,
enableVideo: true,
},
enableDocument: true,
},
},
groupChannelList: {
enableTypingIndicator: true,
enableMessageReceiptStatus: true,
},
groupChannelSettings: {
enableMessageSearch: true,
},
openChannel: {
enableOgtag: true,
input: {
camera: {
enablePhoto: true,
enableVideo: true,
},
gallery: {
enablePhoto: true,
enableVideo: true,
},
enableDocument: true,
},
},
}}
/>