stream-chat-react-native 5.0.0 → 5.1.1-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "stream-chat-react-native",
3
3
  "description": "The official React Native SDK for Stream Chat, a service for building chat applications",
4
- "version": "5.0.0",
4
+ "version": "5.1.1-beta.1",
5
5
  "author": {
6
6
  "company": "Stream.io Inc",
7
7
  "name": "Stream.io Inc"
@@ -11,7 +11,7 @@
11
11
  "types": "types/index.d.ts",
12
12
  "dependencies": {
13
13
  "es6-symbol": "^3.1.3",
14
- "stream-chat-react-native-core": "5.0.0"
14
+ "stream-chat-react-native-core": "5.1.1-beta.1"
15
15
  },
16
16
  "peerDependencies": {
17
17
  "@react-native-camera-roll/camera-roll": "^5.0.0",
package/src/index.js CHANGED
@@ -275,7 +275,7 @@ registerNativeHandlers({
275
275
  },
276
276
  // eslint-disable-next-line react/display-name
277
277
  Video: AudioVideoPlayer
278
- ? ({ onBuffer, onEnd, onLoad, onProgress, paused, style, uri, videoRef }) => (
278
+ ? ({ onBuffer, onEnd, onLoad, onProgress, paused, repeat, style, uri, videoRef }) => (
279
279
  <AudioVideoPlayer
280
280
  ignoreSilentSwitch={'ignore'}
281
281
  onBuffer={onBuffer}
@@ -287,6 +287,7 @@ registerNativeHandlers({
287
287
  onProgress={onProgress}
288
288
  paused={paused}
289
289
  ref={videoRef}
290
+ repeat={repeat}
290
291
  source={{
291
292
  uri,
292
293
  }}