Skip to content

Commit f5aae4f

Browse files
author
Amin Mahboubi
authored
Merge branch 'master' into CRS-283-edit-message-emoji-opacity
2 parents 06b6607 + 195d3f3 commit f5aae4f

File tree

25 files changed

+756
-2435
lines changed

25 files changed

+756
-2435
lines changed

examples/commerce/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"react-dom": "^16.12.0",
88
"react-scripts": "2.1.4",
99
"stream-chat": "^2.3.0",
10-
"stream-chat-react": "0.12.1"
10+
"stream-chat-react": "^2.4.1"
1111
},
1212
"scripts": {
1313
"start": "react-scripts start",

examples/commerce/src/App.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import {
99
MessageInputFlat,
1010
MessageCommerce,
1111
ChannelHeader,
12-
TypingIndicator,
1312
Window,
1413
} from 'stream-chat-react';
1514
import 'stream-chat-react/dist/css/index.css';
@@ -69,12 +68,7 @@ class App extends Component {
6968
>
7069
<Window>
7170
<ChannelHeader />
72-
{this.state.open && (
73-
<MessageList
74-
TypingIndicator={TypingIndicator}
75-
Message={MessageCommerce}
76-
/>
77-
)}
71+
{this.state.open && <MessageList Message={MessageCommerce} />}
7872
<MessageInput
7973
onFocus={!this.state.open ? this.toggleDemo : null}
8074
Input={MessageInputFlat}

examples/commerce/yarn.lock

Lines changed: 139 additions & 582 deletions
Large diffs are not rendered by default.

examples/livestream/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"react-dom": "^16.12.0",
88
"react-scripts": "2.1.4",
99
"stream-chat": "^2.3.0",
10-
"stream-chat-react": "0.12.1"
10+
"stream-chat-react": "^2.4.1"
1111
},
1212
"scripts": {
1313
"start": "react-scripts start",

examples/livestream/yarn.lock

Lines changed: 143 additions & 604 deletions
Large diffs are not rendered by default.

examples/messaging/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@
66
"react": "^16.12.0",
77
"react-app-polyfill": "^1.0.2",
88
"react-dom": "^16.12.0",
9-
"react-markdown": "^4.0.6",
109
"react-scripts": "2.1.4",
1110
"stream-chat": "^2.3.0",
12-
"stream-chat-react": "0.12.1"
11+
"stream-chat-react": "^2.4.1"
1312
},
1413
"scripts": {
1514
"start": "react-scripts start",

examples/messaging/src/App.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import {
1515
ChannelList,
1616
Window,
1717
Thread,
18-
TypingIndicator,
1918
} from 'stream-chat-react';
2019
import 'stream-chat-react/dist/css/index.css';
2120
import './App.css';
@@ -68,7 +67,7 @@ class App extends Component {
6867
<Channel>
6968
<Window>
7069
<ChannelHeader />
71-
<MessageList TypingIndicator={TypingIndicator} />
70+
<MessageList />
7271
<MessageInput Input={MessageInputFlat} focus />
7372
</Window>
7473
<Thread Message={MessageSimple} />

0 commit comments

Comments
 (0)