stream-chat-react-native-core 5.18.0-beta.1 → 5.18.0-beta.3

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.
@@ -178,6 +178,7 @@ const ReactionListWithContext = <
178
178
 
179
179
  return (
180
180
  <View
181
+ pointerEvents='box-none'
181
182
  style={[
182
183
  styles.container,
183
184
  {
@@ -189,8 +190,8 @@ const ReactionListWithContext = <
189
190
  testID='reaction-list'
190
191
  >
191
192
  {reactions.length ? (
192
- <View style={[StyleSheet.absoluteFill]}>
193
- <Svg>
193
+ <View pointerEvents='box-none' style={[StyleSheet.absoluteFill]}>
194
+ <Svg pointerEvents='none'>
194
195
  <Circle cx={x1} cy={y1} fill={stroke} r={radius + strokeSize * 3} />
195
196
  <Circle cx={x2} cy={y2} fill={stroke} r={radius * 2 + strokeSize * 3} />
196
197
  <Circle cx={x1} cy={y1} fill={fill} r={radius + strokeSize} />
@@ -213,7 +214,7 @@ const ReactionListWithContext = <
213
214
  reactionBubbleBackground,
214
215
  ]}
215
216
  />
216
- <View style={[StyleSheet.absoluteFill]}>
217
+ <View pointerEvents='none' style={[StyleSheet.absoluteFill]}>
217
218
  <Svg>
218
219
  <Circle cx={x2} cy={y2} fill={alignmentLeft ? fill : white} r={radius * 2} />
219
220
  </Svg>
@@ -9,6 +9,11 @@ exports[`MessageReplies should render message replies 1`] = `
9
9
  }
10
10
  >
11
11
  <View
12
+ style={
13
+ Object {
14
+ "flexDirection": "row",
15
+ }
16
+ }
12
17
  testID="message-replies-left"
13
18
  >
14
19
  <View
@@ -18,7 +23,6 @@ exports[`MessageReplies should render message replies 1`] = `
18
23
  "borderColor": undefined,
19
24
  },
20
25
  Object {
21
- "borderTopColor": "transparent",
22
26
  "borderTopWidth": 0,
23
27
  "borderWidth": 1,
24
28
  "height": 16,
@@ -26,7 +30,7 @@ exports[`MessageReplies should render message replies 1`] = `
26
30
  },
27
31
  Object {
28
32
  "borderBottomLeftRadius": 16,
29
- "borderRightColor": "transparent",
33
+ "borderRightWidth": 0,
30
34
  },
31
35
  Object {},
32
36
  ]
@@ -73,7 +77,7 @@ exports[`MessageReplies should render message replies 1`] = `
73
77
  "fontSize": 12,
74
78
  "fontWeight": "700",
75
79
  "paddingBottom": 5,
76
- "paddingLeft": 8,
80
+ "paddingHorizontal": 8,
77
81
  },
78
82
  Object {
79
83
  "color": "#005FFF",
package/src/version.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "5.18.0-beta.1"
2
+ "version": "5.18.0-beta.3"
3
3
  }