stream-chat-react-native 9.3.0 → 9.3.1-beta.2

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": "9.3.0",
4
+ "version": "9.3.1-beta.2",
5
5
  "homepage": "https://www.npmjs.com/package/stream-chat-react-native",
6
6
  "author": {
7
7
  "company": "Stream.io Inc",
@@ -30,7 +30,7 @@
30
30
  "dependencies": {
31
31
  "es6-symbol": "^3.1.3",
32
32
  "mime": "^4.0.7",
33
- "stream-chat-react-native-core": "9.3.0"
33
+ "stream-chat-react-native-core": "9.3.1-beta.2"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "@react-native-camera-roll/camera-roll": ">=7.9.0",
@@ -38,10 +38,10 @@
38
38
  "@react-native-documents/picker": ">=10.1.1",
39
39
  "react-native": ">=0.76.0",
40
40
  "react-native-audio-recorder-player": ">=3.6.13",
41
- "react-native-nitro-sound": ">=0.2.9",
42
41
  "react-native-blob-util": ">=0.22.0",
43
42
  "react-native-haptic-feedback": ">=2.3.0",
44
43
  "react-native-image-picker": ">=7.1.2",
44
+ "react-native-nitro-sound": ">=0.2.9",
45
45
  "react-native-share": ">=11.0.0",
46
46
  "react-native-video": ">=6.18.0"
47
47
  },
@@ -52,28 +52,28 @@
52
52
  "@react-native-clipboard/clipboard": {
53
53
  "optional": true
54
54
  },
55
- "react-native-share": {
55
+ "@react-native-documents/picker": {
56
56
  "optional": true
57
57
  },
58
- "@react-native-documents/picker": {
58
+ "react-native-audio-recorder-player": {
59
59
  "optional": true
60
60
  },
61
- "react-native-haptic-feedback": {
61
+ "react-native-blob-util": {
62
62
  "optional": true
63
63
  },
64
- "react-native-image-picker": {
64
+ "react-native-haptic-feedback": {
65
65
  "optional": true
66
66
  },
67
- "react-native-audio-recorder-player": {
67
+ "react-native-image-picker": {
68
68
  "optional": true
69
69
  },
70
70
  "react-native-nitro-sound": {
71
71
  "optional": true
72
72
  },
73
- "react-native-video": {
73
+ "react-native-share": {
74
74
  "optional": true
75
75
  },
76
- "react-native-blob-util": {
76
+ "react-native-video": {
77
77
  "optional": true
78
78
  }
79
79
  },
@@ -101,8 +101,5 @@
101
101
  "StreamShimmerView": "StreamShimmerViewComponentView"
102
102
  }
103
103
  }
104
- },
105
- "resolutions": {
106
- "@types/react": "^19.0.0"
107
104
  }
108
105
  }
package/src/index.js CHANGED
@@ -51,7 +51,6 @@ registerNativeHandlers({
51
51
 
52
52
  if (Platform.OS === 'android') {
53
53
  if (typeof Symbol === 'undefined') {
54
- // eslint-disable-next-line no-undef
55
54
  require('es6-symbol/implement');
56
55
  if (Array.prototype[Symbol.iterator] === undefined) {
57
56
  Array.prototype[Symbol.iterator] = function () {
@@ -1,4 +1,6 @@
1
- import NativeStreamVideoThumbnail, { type VideoThumbnailResult } from './NativeStreamVideoThumbnail';
1
+ import NativeStreamVideoThumbnail, {
2
+ type VideoThumbnailResult,
3
+ } from './NativeStreamVideoThumbnail';
2
4
 
3
5
  export type { VideoThumbnailResult } from './NativeStreamVideoThumbnail';
4
6
 
@@ -19,7 +19,6 @@ let AudioVideoComponent:
19
19
  }>
20
20
  | undefined;
21
21
  try {
22
- // eslint-disable-next-line no-undef
23
22
  const videoPackage = require('react-native-video');
24
23
  AudioVideoComponent = videoPackage.default;
25
24
  } catch (_) {
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+
2
3
  import AudioVideoPlayer from './AudioVideo';
3
4
 
4
5
  export const Video = AudioVideoPlayer