Skip to content

Commit 086600e

Browse files
author
Sravan S
committed
[3.0.0-beta.3] (May 19 2022)
Fixes: * Rate limit markAsDelivered call * Do not render date separator when renderCustomSeparator is null Misc: * Update Chat SDK minimum version to `3.1.13`
1 parent 0831e26 commit 086600e

File tree

6 files changed

+69
-35
lines changed

6 files changed

+69
-35
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog - v3
22

3+
## [3.0.0-beta.3] (May 19 2022)
4+
Fixes:
5+
* Rate limit markAsDelivered call
6+
* Do not render date separator when renderCustomSeparator is null
7+
Misc:
8+
* Update Chat SDK minimum version to `3.1.13`
9+
310
## [3.0.0-beta.2] (April 29 2022)
411

512
Feature:

package-lock.json

Lines changed: 52 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sendbird/uikit-react",
3-
"version": "3.0.0-beta.2",
3+
"version": "3.0.0-beta.3",
44
"description": "React based UI kit for sendbird",
55
"main": "dist/index.js",
66
"style": "dist/index.css",
@@ -55,7 +55,7 @@
5555
"css-vars-ponyfill": "^2.3.2",
5656
"date-fns": "^2.16.1",
5757
"prop-types": "^15.7.2",
58-
"sendbird": "^3.1.10"
58+
"sendbird": "^3.1.13"
5959
},
6060
"bugs": {
6161
"url": "https://community.sendbird.com"

scripts/index_d_ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Type Definitions for SendbirdUIKit v3
2+
* Type Definitions for SendbirdUIKit {{ version }}
33
* homepage: https://sendbird.com/
44
* git: https://github.com/sendbird/sendbird-uikit-react
55
*/

scripts/package.template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"css-vars-ponyfill": "^2.3.2",
3232
"date-fns": "^2.16.1",
3333
"prop-types": "^15.7.2",
34-
"sendbird": "^3.1.10"
34+
"sendbird": "^3.1.13"
3535
},
3636
"bugs": {
3737
"url": "https://community.sendbird.com"

src/index.d.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ interface SendBirdProviderProps {
7777
resizingHeight?: number | string,
7878
};
7979
isMentionEnabled?: boolean;
80-
isTypingIndicatorEnabledOnChannelList?: boolean;
81-
isMessageReceiptStatusEnabledOnChannelList?: boolean;
80+
// isTypingIndicatorEnabledOnChannelList?: boolean;
81+
// isMessageReceiptStatusEnabledOnChannelList?: boolean;
8282
}
8383

8484
interface SendBirdStateConfig {
@@ -104,8 +104,8 @@ interface SendBirdStateConfig {
104104
resizingWidth?: number | string,
105105
resizingHeight?: number | string,
106106
};
107-
isTypingIndicatorEnabledOnChannelList?: boolean;
108-
isMessageReceiptStatusEnabledOnChannelList?: boolean;
107+
// isTypingIndicatorEnabledOnChannelList?: boolean;
108+
// isMessageReceiptStatusEnabledOnChannelList?: boolean;
109109
}
110110
export interface SdkStore {
111111
error: boolean;
@@ -267,8 +267,8 @@ interface AppProps {
267267
replyType?: ReplyType;
268268
disableAutoSelect?: boolean;
269269
isMentionEnabled?: boolean;
270-
isTypingIndicatorEnabledOnChannelList?: boolean;
271-
isMessageReceiptStatusEnabledOnChannelList?: boolean;
270+
// isTypingIndicatorEnabledOnChannelList?: boolean;
271+
// isMessageReceiptStatusEnabledOnChannelList?: boolean;
272272
}
273273

274274
interface ApplicationUserListQuery {

0 commit comments

Comments
 (0)