stream-chat-react-native-core 3.8.3-next.1 → 3.9.0-next.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.
Files changed (80) hide show
  1. package/lib/commonjs/components/Attachment/Gallery.js +21 -9
  2. package/lib/commonjs/components/Attachment/Gallery.js.map +1 -1
  3. package/lib/commonjs/components/Channel/Channel.js +52 -30
  4. package/lib/commonjs/components/Channel/Channel.js.map +1 -1
  5. package/lib/commonjs/components/Channel/hooks/useCreateChannelContext.js +4 -0
  6. package/lib/commonjs/components/Channel/hooks/useCreateChannelContext.js.map +1 -1
  7. package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js +4 -0
  8. package/lib/commonjs/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
  9. package/lib/commonjs/components/Message/MessageSimple/MessageSimple.js +9 -6
  10. package/lib/commonjs/components/Message/MessageSimple/MessageSimple.js.map +1 -1
  11. package/lib/commonjs/components/MessageInput/FileUploadPreview.js +28 -23
  12. package/lib/commonjs/components/MessageInput/FileUploadPreview.js.map +1 -1
  13. package/lib/commonjs/components/MessageList/MessageList.js +40 -31
  14. package/lib/commonjs/components/MessageList/MessageList.js.map +1 -1
  15. package/lib/commonjs/components/MessageList/hooks/useMessageList.js +1 -1
  16. package/lib/commonjs/components/MessageList/hooks/useMessageList.js.map +1 -1
  17. package/lib/commonjs/components/MessageList/utils/getGroupStyles.js +1 -5
  18. package/lib/commonjs/components/MessageList/utils/getGroupStyles.js.map +1 -1
  19. package/lib/commonjs/contexts/channelContext/ChannelContext.js +2 -2
  20. package/lib/commonjs/contexts/channelContext/ChannelContext.js.map +1 -1
  21. package/lib/commonjs/contexts/messagesContext/MessagesContext.js +2 -2
  22. package/lib/commonjs/contexts/messagesContext/MessagesContext.js.map +1 -1
  23. package/lib/commonjs/version.json +1 -1
  24. package/lib/module/components/Attachment/Gallery.js +21 -9
  25. package/lib/module/components/Attachment/Gallery.js.map +1 -1
  26. package/lib/module/components/Channel/Channel.js +52 -30
  27. package/lib/module/components/Channel/Channel.js.map +1 -1
  28. package/lib/module/components/Channel/hooks/useCreateChannelContext.js +4 -0
  29. package/lib/module/components/Channel/hooks/useCreateChannelContext.js.map +1 -1
  30. package/lib/module/components/Channel/hooks/useCreateMessagesContext.js +4 -0
  31. package/lib/module/components/Channel/hooks/useCreateMessagesContext.js.map +1 -1
  32. package/lib/module/components/Message/MessageSimple/MessageSimple.js +9 -6
  33. package/lib/module/components/Message/MessageSimple/MessageSimple.js.map +1 -1
  34. package/lib/module/components/MessageInput/FileUploadPreview.js +28 -23
  35. package/lib/module/components/MessageInput/FileUploadPreview.js.map +1 -1
  36. package/lib/module/components/MessageList/MessageList.js +40 -31
  37. package/lib/module/components/MessageList/MessageList.js.map +1 -1
  38. package/lib/module/components/MessageList/hooks/useMessageList.js +1 -1
  39. package/lib/module/components/MessageList/hooks/useMessageList.js.map +1 -1
  40. package/lib/module/components/MessageList/utils/getGroupStyles.js +1 -5
  41. package/lib/module/components/MessageList/utils/getGroupStyles.js.map +1 -1
  42. package/lib/module/contexts/channelContext/ChannelContext.js +2 -2
  43. package/lib/module/contexts/channelContext/ChannelContext.js.map +1 -1
  44. package/lib/module/contexts/messagesContext/MessagesContext.js +2 -2
  45. package/lib/module/contexts/messagesContext/MessagesContext.js.map +1 -1
  46. package/lib/module/version.json +1 -1
  47. package/lib/typescript/components/Attachment/Gallery.d.ts +1 -1
  48. package/lib/typescript/components/Channel/Channel.d.ts +3 -1
  49. package/lib/typescript/components/Channel/hooks/useCreateChannelContext.d.ts +1 -1
  50. package/lib/typescript/components/Channel/hooks/useCreateMessagesContext.d.ts +4 -2
  51. package/lib/typescript/components/Message/MessageSimple/MessageSimple.d.ts +1 -1
  52. package/lib/typescript/components/MessageList/MessageList.d.ts +1 -1
  53. package/lib/typescript/contexts/channelContext/ChannelContext.d.ts +3 -1
  54. package/lib/typescript/contexts/messagesContext/MessagesContext.d.ts +3 -1
  55. package/package.json +1 -1
  56. package/src/components/Attachment/Gallery.tsx +20 -5
  57. package/src/components/Channel/Channel.tsx +124 -67
  58. package/src/components/Channel/hooks/useCreateChannelContext.ts +4 -0
  59. package/src/components/Channel/hooks/useCreateMessagesContext.ts +4 -0
  60. package/src/components/Message/MessageSimple/MessageSimple.tsx +9 -3
  61. package/src/components/MessageInput/FileUploadPreview.tsx +68 -58
  62. package/src/components/MessageInput/__tests__/__snapshots__/FileUploadPreview.test.js.snap +778 -730
  63. package/src/components/MessageList/MessageList.tsx +52 -27
  64. package/src/components/MessageList/hooks/useMessageList.ts +1 -1
  65. package/src/components/MessageList/utils/getGroupStyles.ts +3 -8
  66. package/src/contexts/channelContext/ChannelContext.tsx +2 -0
  67. package/src/contexts/messagesContext/MessagesContext.tsx +2 -0
  68. package/src/version.json +1 -1
  69. package/lib/commonjs/components/Channel/utils/debounce.js +0 -20
  70. package/lib/commonjs/components/Channel/utils/debounce.js.map +0 -1
  71. package/lib/commonjs/components/Channel/utils/throttle.js +0 -20
  72. package/lib/commonjs/components/Channel/utils/throttle.js.map +0 -1
  73. package/lib/module/components/Channel/utils/debounce.js +0 -20
  74. package/lib/module/components/Channel/utils/debounce.js.map +0 -1
  75. package/lib/module/components/Channel/utils/throttle.js +0 -20
  76. package/lib/module/components/Channel/utils/throttle.js.map +0 -1
  77. package/lib/typescript/components/Channel/utils/debounce.d.ts +0 -2
  78. package/lib/typescript/components/Channel/utils/throttle.d.ts +0 -2
  79. package/src/components/Channel/utils/debounce.ts +0 -12
  80. package/src/components/Channel/utils/throttle.ts +0 -12
@@ -200,68 +200,6 @@ exports[`FileUploadPreview should render FileUploadPreview with 1 uploading, 1 u
200
200
  />
201
201
  </View>
202
202
  </View>
203
- <View
204
- accessible={true}
205
- focusable={true}
206
- onClick={[Function]}
207
- onResponderGrant={[Function]}
208
- onResponderMove={[Function]}
209
- onResponderRelease={[Function]}
210
- onResponderTerminate={[Function]}
211
- onResponderTerminationRequest={[Function]}
212
- onStartShouldSetResponder={[Function]}
213
- style={
214
- Object {
215
- "backgroundColor": "#00000099",
216
- "borderRadius": 24,
217
- "height": 24,
218
- "opacity": 1,
219
- }
220
- }
221
- testID="remove-file-upload-preview"
222
- >
223
- <RNSVGSvgView
224
- align="xMidYMid"
225
- bbHeight={24}
226
- bbWidth={24}
227
- focusable={false}
228
- height={24}
229
- meetOrSlice={0}
230
- minX={0}
231
- minY={0}
232
- style={
233
- Array [
234
- Object {
235
- "backgroundColor": "transparent",
236
- "borderWidth": 0,
237
- },
238
- Object {
239
- "flex": 0,
240
- "height": 24,
241
- "width": 24,
242
- },
243
- ]
244
- }
245
- vbHeight={24}
246
- vbWidth={24}
247
- width={24}
248
- >
249
- <RNSVGGroup>
250
- <RNSVGPath
251
- clipRule={0}
252
- d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
253
- fill={4278190080}
254
- fillRule={0}
255
- propList={
256
- Array [
257
- "fill",
258
- "fillRule",
259
- ]
260
- }
261
- />
262
- </RNSVGGroup>
263
- </RNSVGSvgView>
264
- </View>
265
203
  </View>
266
204
  <View
267
205
  style={
@@ -321,6 +259,72 @@ exports[`FileUploadPreview should render FileUploadPreview with 1 uploading, 1 u
321
259
  </View>
322
260
  </View>
323
261
  </View>
262
+ <View
263
+ accessible={true}
264
+ focusable={true}
265
+ onClick={[Function]}
266
+ onResponderGrant={[Function]}
267
+ onResponderMove={[Function]}
268
+ onResponderRelease={[Function]}
269
+ onResponderTerminate={[Function]}
270
+ onResponderTerminationRequest={[Function]}
271
+ onStartShouldSetResponder={[Function]}
272
+ style={
273
+ Object {
274
+ "backgroundColor": "#00000099",
275
+ "borderRadius": 24,
276
+ "height": 24,
277
+ "opacity": 1,
278
+ "position": "absolute",
279
+ "right": 14,
280
+ "top": 4,
281
+ "width": 24,
282
+ }
283
+ }
284
+ testID="remove-file-upload-preview"
285
+ >
286
+ <RNSVGSvgView
287
+ align="xMidYMid"
288
+ bbHeight={24}
289
+ bbWidth={24}
290
+ focusable={false}
291
+ height={24}
292
+ meetOrSlice={0}
293
+ minX={0}
294
+ minY={0}
295
+ style={
296
+ Array [
297
+ Object {
298
+ "backgroundColor": "transparent",
299
+ "borderWidth": 0,
300
+ },
301
+ Object {
302
+ "flex": 0,
303
+ "height": 24,
304
+ "width": 24,
305
+ },
306
+ ]
307
+ }
308
+ vbHeight={24}
309
+ vbWidth={24}
310
+ width={24}
311
+ >
312
+ <RNSVGGroup>
313
+ <RNSVGPath
314
+ clipRule={0}
315
+ d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
316
+ fill={4278190080}
317
+ fillRule={0}
318
+ propList={
319
+ Array [
320
+ "fill",
321
+ "fillRule",
322
+ ]
323
+ }
324
+ />
325
+ </RNSVGGroup>
326
+ </RNSVGSvgView>
327
+ </View>
324
328
  </View>
325
329
  <View>
326
330
  <View
@@ -504,69 +508,73 @@ exports[`FileUploadPreview should render FileUploadPreview with 1 uploading, 1 u
504
508
  />
505
509
  </View>
506
510
  </View>
507
- <View
508
- accessible={true}
509
- focusable={true}
510
- onClick={[Function]}
511
- onResponderGrant={[Function]}
512
- onResponderMove={[Function]}
513
- onResponderRelease={[Function]}
514
- onResponderTerminate={[Function]}
515
- onResponderTerminationRequest={[Function]}
516
- onStartShouldSetResponder={[Function]}
517
- style={
511
+ </View>
512
+ </View>
513
+ <View
514
+ accessible={true}
515
+ focusable={true}
516
+ onClick={[Function]}
517
+ onResponderGrant={[Function]}
518
+ onResponderMove={[Function]}
519
+ onResponderRelease={[Function]}
520
+ onResponderTerminate={[Function]}
521
+ onResponderTerminationRequest={[Function]}
522
+ onStartShouldSetResponder={[Function]}
523
+ style={
524
+ Object {
525
+ "backgroundColor": "#00000099",
526
+ "borderRadius": 24,
527
+ "height": 24,
528
+ "opacity": 1,
529
+ "position": "absolute",
530
+ "right": 14,
531
+ "top": 4,
532
+ "width": 24,
533
+ }
534
+ }
535
+ testID="remove-file-upload-preview"
536
+ >
537
+ <RNSVGSvgView
538
+ align="xMidYMid"
539
+ bbHeight={24}
540
+ bbWidth={24}
541
+ focusable={false}
542
+ height={24}
543
+ meetOrSlice={0}
544
+ minX={0}
545
+ minY={0}
546
+ style={
547
+ Array [
548
+ Object {
549
+ "backgroundColor": "transparent",
550
+ "borderWidth": 0,
551
+ },
518
552
  Object {
519
- "backgroundColor": "#00000099",
520
- "borderRadius": 24,
553
+ "flex": 0,
521
554
  "height": 24,
522
- "opacity": 1,
523
- }
524
- }
525
- testID="remove-file-upload-preview"
526
- >
527
- <RNSVGSvgView
528
- align="xMidYMid"
529
- bbHeight={24}
530
- bbWidth={24}
531
- focusable={false}
532
- height={24}
533
- meetOrSlice={0}
534
- minX={0}
535
- minY={0}
536
- style={
555
+ "width": 24,
556
+ },
557
+ ]
558
+ }
559
+ vbHeight={24}
560
+ vbWidth={24}
561
+ width={24}
562
+ >
563
+ <RNSVGGroup>
564
+ <RNSVGPath
565
+ clipRule={0}
566
+ d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
567
+ fill={4278190080}
568
+ fillRule={0}
569
+ propList={
537
570
  Array [
538
- Object {
539
- "backgroundColor": "transparent",
540
- "borderWidth": 0,
541
- },
542
- Object {
543
- "flex": 0,
544
- "height": 24,
545
- "width": 24,
546
- },
571
+ "fill",
572
+ "fillRule",
547
573
  ]
548
574
  }
549
- vbHeight={24}
550
- vbWidth={24}
551
- width={24}
552
- >
553
- <RNSVGGroup>
554
- <RNSVGPath
555
- clipRule={0}
556
- d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
557
- fill={4278190080}
558
- fillRule={0}
559
- propList={
560
- Array [
561
- "fill",
562
- "fillRule",
563
- ]
564
- }
565
- />
566
- </RNSVGGroup>
567
- </RNSVGSvgView>
568
- </View>
569
- </View>
575
+ />
576
+ </RNSVGGroup>
577
+ </RNSVGSvgView>
570
578
  </View>
571
579
  </View>
572
580
  <View>
@@ -753,68 +761,6 @@ exports[`FileUploadPreview should render FileUploadPreview with 1 uploading, 1 u
753
761
  />
754
762
  </View>
755
763
  </View>
756
- <View
757
- accessible={true}
758
- focusable={true}
759
- onClick={[Function]}
760
- onResponderGrant={[Function]}
761
- onResponderMove={[Function]}
762
- onResponderRelease={[Function]}
763
- onResponderTerminate={[Function]}
764
- onResponderTerminationRequest={[Function]}
765
- onStartShouldSetResponder={[Function]}
766
- style={
767
- Object {
768
- "backgroundColor": "#00000099",
769
- "borderRadius": 24,
770
- "height": 24,
771
- "opacity": 1,
772
- }
773
- }
774
- testID="remove-file-upload-preview"
775
- >
776
- <RNSVGSvgView
777
- align="xMidYMid"
778
- bbHeight={24}
779
- bbWidth={24}
780
- focusable={false}
781
- height={24}
782
- meetOrSlice={0}
783
- minX={0}
784
- minY={0}
785
- style={
786
- Array [
787
- Object {
788
- "backgroundColor": "transparent",
789
- "borderWidth": 0,
790
- },
791
- Object {
792
- "flex": 0,
793
- "height": 24,
794
- "width": 24,
795
- },
796
- ]
797
- }
798
- vbHeight={24}
799
- vbWidth={24}
800
- width={24}
801
- >
802
- <RNSVGGroup>
803
- <RNSVGPath
804
- clipRule={0}
805
- d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
806
- fill={4278190080}
807
- fillRule={0}
808
- propList={
809
- Array [
810
- "fill",
811
- "fillRule",
812
- ]
813
- }
814
- />
815
- </RNSVGGroup>
816
- </RNSVGSvgView>
817
- </View>
818
764
  </View>
819
765
  <View
820
766
  style={
@@ -920,6 +866,72 @@ exports[`FileUploadPreview should render FileUploadPreview with 1 uploading, 1 u
920
866
  </View>
921
867
  </View>
922
868
  </View>
869
+ <View
870
+ accessible={true}
871
+ focusable={true}
872
+ onClick={[Function]}
873
+ onResponderGrant={[Function]}
874
+ onResponderMove={[Function]}
875
+ onResponderRelease={[Function]}
876
+ onResponderTerminate={[Function]}
877
+ onResponderTerminationRequest={[Function]}
878
+ onStartShouldSetResponder={[Function]}
879
+ style={
880
+ Object {
881
+ "backgroundColor": "#00000099",
882
+ "borderRadius": 24,
883
+ "height": 24,
884
+ "opacity": 1,
885
+ "position": "absolute",
886
+ "right": 14,
887
+ "top": 4,
888
+ "width": 24,
889
+ }
890
+ }
891
+ testID="remove-file-upload-preview"
892
+ >
893
+ <RNSVGSvgView
894
+ align="xMidYMid"
895
+ bbHeight={24}
896
+ bbWidth={24}
897
+ focusable={false}
898
+ height={24}
899
+ meetOrSlice={0}
900
+ minX={0}
901
+ minY={0}
902
+ style={
903
+ Array [
904
+ Object {
905
+ "backgroundColor": "transparent",
906
+ "borderWidth": 0,
907
+ },
908
+ Object {
909
+ "flex": 0,
910
+ "height": 24,
911
+ "width": 24,
912
+ },
913
+ ]
914
+ }
915
+ vbHeight={24}
916
+ vbWidth={24}
917
+ width={24}
918
+ >
919
+ <RNSVGGroup>
920
+ <RNSVGPath
921
+ clipRule={0}
922
+ d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
923
+ fill={4278190080}
924
+ fillRule={0}
925
+ propList={
926
+ Array [
927
+ "fill",
928
+ "fillRule",
929
+ ]
930
+ }
931
+ />
932
+ </RNSVGGroup>
933
+ </RNSVGSvgView>
934
+ </View>
923
935
  </View>
924
936
  </View>
925
937
  </View>
@@ -1126,68 +1138,6 @@ exports[`FileUploadPreview should render FileUploadPreview with all failed files
1126
1138
  />
1127
1139
  </View>
1128
1140
  </View>
1129
- <View
1130
- accessible={true}
1131
- focusable={true}
1132
- onClick={[Function]}
1133
- onResponderGrant={[Function]}
1134
- onResponderMove={[Function]}
1135
- onResponderRelease={[Function]}
1136
- onResponderTerminate={[Function]}
1137
- onResponderTerminationRequest={[Function]}
1138
- onStartShouldSetResponder={[Function]}
1139
- style={
1140
- Object {
1141
- "backgroundColor": "#00000099",
1142
- "borderRadius": 24,
1143
- "height": 24,
1144
- "opacity": 1,
1145
- }
1146
- }
1147
- testID="remove-file-upload-preview"
1148
- >
1149
- <RNSVGSvgView
1150
- align="xMidYMid"
1151
- bbHeight={24}
1152
- bbWidth={24}
1153
- focusable={false}
1154
- height={24}
1155
- meetOrSlice={0}
1156
- minX={0}
1157
- minY={0}
1158
- style={
1159
- Array [
1160
- Object {
1161
- "backgroundColor": "transparent",
1162
- "borderWidth": 0,
1163
- },
1164
- Object {
1165
- "flex": 0,
1166
- "height": 24,
1167
- "width": 24,
1168
- },
1169
- ]
1170
- }
1171
- vbHeight={24}
1172
- vbWidth={24}
1173
- width={24}
1174
- >
1175
- <RNSVGGroup>
1176
- <RNSVGPath
1177
- clipRule={0}
1178
- d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
1179
- fill={4278190080}
1180
- fillRule={0}
1181
- propList={
1182
- Array [
1183
- "fill",
1184
- "fillRule",
1185
- ]
1186
- }
1187
- />
1188
- </RNSVGGroup>
1189
- </RNSVGSvgView>
1190
- </View>
1191
1141
  </View>
1192
1142
  <View
1193
1143
  style={
@@ -1293,6 +1243,72 @@ exports[`FileUploadPreview should render FileUploadPreview with all failed files
1293
1243
  </View>
1294
1244
  </View>
1295
1245
  </View>
1246
+ <View
1247
+ accessible={true}
1248
+ focusable={true}
1249
+ onClick={[Function]}
1250
+ onResponderGrant={[Function]}
1251
+ onResponderMove={[Function]}
1252
+ onResponderRelease={[Function]}
1253
+ onResponderTerminate={[Function]}
1254
+ onResponderTerminationRequest={[Function]}
1255
+ onStartShouldSetResponder={[Function]}
1256
+ style={
1257
+ Object {
1258
+ "backgroundColor": "#00000099",
1259
+ "borderRadius": 24,
1260
+ "height": 24,
1261
+ "opacity": 1,
1262
+ "position": "absolute",
1263
+ "right": 14,
1264
+ "top": 4,
1265
+ "width": 24,
1266
+ }
1267
+ }
1268
+ testID="remove-file-upload-preview"
1269
+ >
1270
+ <RNSVGSvgView
1271
+ align="xMidYMid"
1272
+ bbHeight={24}
1273
+ bbWidth={24}
1274
+ focusable={false}
1275
+ height={24}
1276
+ meetOrSlice={0}
1277
+ minX={0}
1278
+ minY={0}
1279
+ style={
1280
+ Array [
1281
+ Object {
1282
+ "backgroundColor": "transparent",
1283
+ "borderWidth": 0,
1284
+ },
1285
+ Object {
1286
+ "flex": 0,
1287
+ "height": 24,
1288
+ "width": 24,
1289
+ },
1290
+ ]
1291
+ }
1292
+ vbHeight={24}
1293
+ vbWidth={24}
1294
+ width={24}
1295
+ >
1296
+ <RNSVGGroup>
1297
+ <RNSVGPath
1298
+ clipRule={0}
1299
+ d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
1300
+ fill={4278190080}
1301
+ fillRule={0}
1302
+ propList={
1303
+ Array [
1304
+ "fill",
1305
+ "fillRule",
1306
+ ]
1307
+ }
1308
+ />
1309
+ </RNSVGGroup>
1310
+ </RNSVGSvgView>
1311
+ </View>
1296
1312
  </View>
1297
1313
  <View>
1298
1314
  <View
@@ -1476,68 +1492,6 @@ exports[`FileUploadPreview should render FileUploadPreview with all failed files
1476
1492
  />
1477
1493
  </View>
1478
1494
  </View>
1479
- <View
1480
- accessible={true}
1481
- focusable={true}
1482
- onClick={[Function]}
1483
- onResponderGrant={[Function]}
1484
- onResponderMove={[Function]}
1485
- onResponderRelease={[Function]}
1486
- onResponderTerminate={[Function]}
1487
- onResponderTerminationRequest={[Function]}
1488
- onStartShouldSetResponder={[Function]}
1489
- style={
1490
- Object {
1491
- "backgroundColor": "#00000099",
1492
- "borderRadius": 24,
1493
- "height": 24,
1494
- "opacity": 1,
1495
- }
1496
- }
1497
- testID="remove-file-upload-preview"
1498
- >
1499
- <RNSVGSvgView
1500
- align="xMidYMid"
1501
- bbHeight={24}
1502
- bbWidth={24}
1503
- focusable={false}
1504
- height={24}
1505
- meetOrSlice={0}
1506
- minX={0}
1507
- minY={0}
1508
- style={
1509
- Array [
1510
- Object {
1511
- "backgroundColor": "transparent",
1512
- "borderWidth": 0,
1513
- },
1514
- Object {
1515
- "flex": 0,
1516
- "height": 24,
1517
- "width": 24,
1518
- },
1519
- ]
1520
- }
1521
- vbHeight={24}
1522
- vbWidth={24}
1523
- width={24}
1524
- >
1525
- <RNSVGGroup>
1526
- <RNSVGPath
1527
- clipRule={0}
1528
- d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
1529
- fill={4278190080}
1530
- fillRule={0}
1531
- propList={
1532
- Array [
1533
- "fill",
1534
- "fillRule",
1535
- ]
1536
- }
1537
- />
1538
- </RNSVGGroup>
1539
- </RNSVGSvgView>
1540
- </View>
1541
1495
  </View>
1542
1496
  <View
1543
1497
  style={
@@ -1643,6 +1597,72 @@ exports[`FileUploadPreview should render FileUploadPreview with all failed files
1643
1597
  </View>
1644
1598
  </View>
1645
1599
  </View>
1600
+ <View
1601
+ accessible={true}
1602
+ focusable={true}
1603
+ onClick={[Function]}
1604
+ onResponderGrant={[Function]}
1605
+ onResponderMove={[Function]}
1606
+ onResponderRelease={[Function]}
1607
+ onResponderTerminate={[Function]}
1608
+ onResponderTerminationRequest={[Function]}
1609
+ onStartShouldSetResponder={[Function]}
1610
+ style={
1611
+ Object {
1612
+ "backgroundColor": "#00000099",
1613
+ "borderRadius": 24,
1614
+ "height": 24,
1615
+ "opacity": 1,
1616
+ "position": "absolute",
1617
+ "right": 14,
1618
+ "top": 4,
1619
+ "width": 24,
1620
+ }
1621
+ }
1622
+ testID="remove-file-upload-preview"
1623
+ >
1624
+ <RNSVGSvgView
1625
+ align="xMidYMid"
1626
+ bbHeight={24}
1627
+ bbWidth={24}
1628
+ focusable={false}
1629
+ height={24}
1630
+ meetOrSlice={0}
1631
+ minX={0}
1632
+ minY={0}
1633
+ style={
1634
+ Array [
1635
+ Object {
1636
+ "backgroundColor": "transparent",
1637
+ "borderWidth": 0,
1638
+ },
1639
+ Object {
1640
+ "flex": 0,
1641
+ "height": 24,
1642
+ "width": 24,
1643
+ },
1644
+ ]
1645
+ }
1646
+ vbHeight={24}
1647
+ vbWidth={24}
1648
+ width={24}
1649
+ >
1650
+ <RNSVGGroup>
1651
+ <RNSVGPath
1652
+ clipRule={0}
1653
+ d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
1654
+ fill={4278190080}
1655
+ fillRule={0}
1656
+ propList={
1657
+ Array [
1658
+ "fill",
1659
+ "fillRule",
1660
+ ]
1661
+ }
1662
+ />
1663
+ </RNSVGGroup>
1664
+ </RNSVGSvgView>
1665
+ </View>
1646
1666
  </View>
1647
1667
  <View>
1648
1668
  <View
@@ -1828,68 +1848,6 @@ exports[`FileUploadPreview should render FileUploadPreview with all failed files
1828
1848
  />
1829
1849
  </View>
1830
1850
  </View>
1831
- <View
1832
- accessible={true}
1833
- focusable={true}
1834
- onClick={[Function]}
1835
- onResponderGrant={[Function]}
1836
- onResponderMove={[Function]}
1837
- onResponderRelease={[Function]}
1838
- onResponderTerminate={[Function]}
1839
- onResponderTerminationRequest={[Function]}
1840
- onStartShouldSetResponder={[Function]}
1841
- style={
1842
- Object {
1843
- "backgroundColor": "#00000099",
1844
- "borderRadius": 24,
1845
- "height": 24,
1846
- "opacity": 1,
1847
- }
1848
- }
1849
- testID="remove-file-upload-preview"
1850
- >
1851
- <RNSVGSvgView
1852
- align="xMidYMid"
1853
- bbHeight={24}
1854
- bbWidth={24}
1855
- focusable={false}
1856
- height={24}
1857
- meetOrSlice={0}
1858
- minX={0}
1859
- minY={0}
1860
- style={
1861
- Array [
1862
- Object {
1863
- "backgroundColor": "transparent",
1864
- "borderWidth": 0,
1865
- },
1866
- Object {
1867
- "flex": 0,
1868
- "height": 24,
1869
- "width": 24,
1870
- },
1871
- ]
1872
- }
1873
- vbHeight={24}
1874
- vbWidth={24}
1875
- width={24}
1876
- >
1877
- <RNSVGGroup>
1878
- <RNSVGPath
1879
- clipRule={0}
1880
- d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
1881
- fill={4278190080}
1882
- fillRule={0}
1883
- propList={
1884
- Array [
1885
- "fill",
1886
- "fillRule",
1887
- ]
1888
- }
1889
- />
1890
- </RNSVGGroup>
1891
- </RNSVGSvgView>
1892
- </View>
1893
1851
  </View>
1894
1852
  <View
1895
1853
  style={
@@ -1995,6 +1953,72 @@ exports[`FileUploadPreview should render FileUploadPreview with all failed files
1995
1953
  </View>
1996
1954
  </View>
1997
1955
  </View>
1956
+ <View
1957
+ accessible={true}
1958
+ focusable={true}
1959
+ onClick={[Function]}
1960
+ onResponderGrant={[Function]}
1961
+ onResponderMove={[Function]}
1962
+ onResponderRelease={[Function]}
1963
+ onResponderTerminate={[Function]}
1964
+ onResponderTerminationRequest={[Function]}
1965
+ onStartShouldSetResponder={[Function]}
1966
+ style={
1967
+ Object {
1968
+ "backgroundColor": "#00000099",
1969
+ "borderRadius": 24,
1970
+ "height": 24,
1971
+ "opacity": 1,
1972
+ "position": "absolute",
1973
+ "right": 14,
1974
+ "top": 4,
1975
+ "width": 24,
1976
+ }
1977
+ }
1978
+ testID="remove-file-upload-preview"
1979
+ >
1980
+ <RNSVGSvgView
1981
+ align="xMidYMid"
1982
+ bbHeight={24}
1983
+ bbWidth={24}
1984
+ focusable={false}
1985
+ height={24}
1986
+ meetOrSlice={0}
1987
+ minX={0}
1988
+ minY={0}
1989
+ style={
1990
+ Array [
1991
+ Object {
1992
+ "backgroundColor": "transparent",
1993
+ "borderWidth": 0,
1994
+ },
1995
+ Object {
1996
+ "flex": 0,
1997
+ "height": 24,
1998
+ "width": 24,
1999
+ },
2000
+ ]
2001
+ }
2002
+ vbHeight={24}
2003
+ vbWidth={24}
2004
+ width={24}
2005
+ >
2006
+ <RNSVGGroup>
2007
+ <RNSVGPath
2008
+ clipRule={0}
2009
+ d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
2010
+ fill={4278190080}
2011
+ fillRule={0}
2012
+ propList={
2013
+ Array [
2014
+ "fill",
2015
+ "fillRule",
2016
+ ]
2017
+ }
2018
+ />
2019
+ </RNSVGGroup>
2020
+ </RNSVGSvgView>
2021
+ </View>
1998
2022
  </View>
1999
2023
  </View>
2000
2024
  </View>
@@ -2201,69 +2225,73 @@ exports[`FileUploadPreview should render FileUploadPreview with all uploaded fil
2201
2225
  />
2202
2226
  </View>
2203
2227
  </View>
2204
- <View
2205
- accessible={true}
2206
- focusable={true}
2207
- onClick={[Function]}
2208
- onResponderGrant={[Function]}
2209
- onResponderMove={[Function]}
2210
- onResponderRelease={[Function]}
2211
- onResponderTerminate={[Function]}
2212
- onResponderTerminationRequest={[Function]}
2213
- onStartShouldSetResponder={[Function]}
2214
- style={
2228
+ </View>
2229
+ </View>
2230
+ <View
2231
+ accessible={true}
2232
+ focusable={true}
2233
+ onClick={[Function]}
2234
+ onResponderGrant={[Function]}
2235
+ onResponderMove={[Function]}
2236
+ onResponderRelease={[Function]}
2237
+ onResponderTerminate={[Function]}
2238
+ onResponderTerminationRequest={[Function]}
2239
+ onStartShouldSetResponder={[Function]}
2240
+ style={
2241
+ Object {
2242
+ "backgroundColor": "#00000099",
2243
+ "borderRadius": 24,
2244
+ "height": 24,
2245
+ "opacity": 1,
2246
+ "position": "absolute",
2247
+ "right": 14,
2248
+ "top": 4,
2249
+ "width": 24,
2250
+ }
2251
+ }
2252
+ testID="remove-file-upload-preview"
2253
+ >
2254
+ <RNSVGSvgView
2255
+ align="xMidYMid"
2256
+ bbHeight={24}
2257
+ bbWidth={24}
2258
+ focusable={false}
2259
+ height={24}
2260
+ meetOrSlice={0}
2261
+ minX={0}
2262
+ minY={0}
2263
+ style={
2264
+ Array [
2265
+ Object {
2266
+ "backgroundColor": "transparent",
2267
+ "borderWidth": 0,
2268
+ },
2215
2269
  Object {
2216
- "backgroundColor": "#00000099",
2217
- "borderRadius": 24,
2270
+ "flex": 0,
2218
2271
  "height": 24,
2219
- "opacity": 1,
2220
- }
2221
- }
2222
- testID="remove-file-upload-preview"
2223
- >
2224
- <RNSVGSvgView
2225
- align="xMidYMid"
2226
- bbHeight={24}
2227
- bbWidth={24}
2228
- focusable={false}
2229
- height={24}
2230
- meetOrSlice={0}
2231
- minX={0}
2232
- minY={0}
2233
- style={
2272
+ "width": 24,
2273
+ },
2274
+ ]
2275
+ }
2276
+ vbHeight={24}
2277
+ vbWidth={24}
2278
+ width={24}
2279
+ >
2280
+ <RNSVGGroup>
2281
+ <RNSVGPath
2282
+ clipRule={0}
2283
+ d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
2284
+ fill={4278190080}
2285
+ fillRule={0}
2286
+ propList={
2234
2287
  Array [
2235
- Object {
2236
- "backgroundColor": "transparent",
2237
- "borderWidth": 0,
2238
- },
2239
- Object {
2240
- "flex": 0,
2241
- "height": 24,
2242
- "width": 24,
2243
- },
2288
+ "fill",
2289
+ "fillRule",
2244
2290
  ]
2245
2291
  }
2246
- vbHeight={24}
2247
- vbWidth={24}
2248
- width={24}
2249
- >
2250
- <RNSVGGroup>
2251
- <RNSVGPath
2252
- clipRule={0}
2253
- d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
2254
- fill={4278190080}
2255
- fillRule={0}
2256
- propList={
2257
- Array [
2258
- "fill",
2259
- "fillRule",
2260
- ]
2261
- }
2262
- />
2263
- </RNSVGGroup>
2264
- </RNSVGSvgView>
2265
- </View>
2266
- </View>
2292
+ />
2293
+ </RNSVGGroup>
2294
+ </RNSVGSvgView>
2267
2295
  </View>
2268
2296
  </View>
2269
2297
  <View>
@@ -2448,69 +2476,73 @@ exports[`FileUploadPreview should render FileUploadPreview with all uploaded fil
2448
2476
  />
2449
2477
  </View>
2450
2478
  </View>
2451
- <View
2452
- accessible={true}
2453
- focusable={true}
2454
- onClick={[Function]}
2455
- onResponderGrant={[Function]}
2456
- onResponderMove={[Function]}
2457
- onResponderRelease={[Function]}
2458
- onResponderTerminate={[Function]}
2459
- onResponderTerminationRequest={[Function]}
2460
- onStartShouldSetResponder={[Function]}
2461
- style={
2479
+ </View>
2480
+ </View>
2481
+ <View
2482
+ accessible={true}
2483
+ focusable={true}
2484
+ onClick={[Function]}
2485
+ onResponderGrant={[Function]}
2486
+ onResponderMove={[Function]}
2487
+ onResponderRelease={[Function]}
2488
+ onResponderTerminate={[Function]}
2489
+ onResponderTerminationRequest={[Function]}
2490
+ onStartShouldSetResponder={[Function]}
2491
+ style={
2492
+ Object {
2493
+ "backgroundColor": "#00000099",
2494
+ "borderRadius": 24,
2495
+ "height": 24,
2496
+ "opacity": 1,
2497
+ "position": "absolute",
2498
+ "right": 14,
2499
+ "top": 4,
2500
+ "width": 24,
2501
+ }
2502
+ }
2503
+ testID="remove-file-upload-preview"
2504
+ >
2505
+ <RNSVGSvgView
2506
+ align="xMidYMid"
2507
+ bbHeight={24}
2508
+ bbWidth={24}
2509
+ focusable={false}
2510
+ height={24}
2511
+ meetOrSlice={0}
2512
+ minX={0}
2513
+ minY={0}
2514
+ style={
2515
+ Array [
2516
+ Object {
2517
+ "backgroundColor": "transparent",
2518
+ "borderWidth": 0,
2519
+ },
2462
2520
  Object {
2463
- "backgroundColor": "#00000099",
2464
- "borderRadius": 24,
2521
+ "flex": 0,
2465
2522
  "height": 24,
2466
- "opacity": 1,
2523
+ "width": 24,
2524
+ },
2525
+ ]
2526
+ }
2527
+ vbHeight={24}
2528
+ vbWidth={24}
2529
+ width={24}
2530
+ >
2531
+ <RNSVGGroup>
2532
+ <RNSVGPath
2533
+ clipRule={0}
2534
+ d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
2535
+ fill={4278190080}
2536
+ fillRule={0}
2537
+ propList={
2538
+ Array [
2539
+ "fill",
2540
+ "fillRule",
2541
+ ]
2467
2542
  }
2468
- }
2469
- testID="remove-file-upload-preview"
2470
- >
2471
- <RNSVGSvgView
2472
- align="xMidYMid"
2473
- bbHeight={24}
2474
- bbWidth={24}
2475
- focusable={false}
2476
- height={24}
2477
- meetOrSlice={0}
2478
- minX={0}
2479
- minY={0}
2480
- style={
2481
- Array [
2482
- Object {
2483
- "backgroundColor": "transparent",
2484
- "borderWidth": 0,
2485
- },
2486
- Object {
2487
- "flex": 0,
2488
- "height": 24,
2489
- "width": 24,
2490
- },
2491
- ]
2492
- }
2493
- vbHeight={24}
2494
- vbWidth={24}
2495
- width={24}
2496
- >
2497
- <RNSVGGroup>
2498
- <RNSVGPath
2499
- clipRule={0}
2500
- d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
2501
- fill={4278190080}
2502
- fillRule={0}
2503
- propList={
2504
- Array [
2505
- "fill",
2506
- "fillRule",
2507
- ]
2508
- }
2509
- />
2510
- </RNSVGGroup>
2511
- </RNSVGSvgView>
2512
- </View>
2513
- </View>
2543
+ />
2544
+ </RNSVGGroup>
2545
+ </RNSVGSvgView>
2514
2546
  </View>
2515
2547
  </View>
2516
2548
  <View>
@@ -2697,69 +2729,73 @@ exports[`FileUploadPreview should render FileUploadPreview with all uploaded fil
2697
2729
  />
2698
2730
  </View>
2699
2731
  </View>
2700
- <View
2701
- accessible={true}
2702
- focusable={true}
2703
- onClick={[Function]}
2704
- onResponderGrant={[Function]}
2705
- onResponderMove={[Function]}
2706
- onResponderRelease={[Function]}
2707
- onResponderTerminate={[Function]}
2708
- onResponderTerminationRequest={[Function]}
2709
- onStartShouldSetResponder={[Function]}
2710
- style={
2732
+ </View>
2733
+ </View>
2734
+ <View
2735
+ accessible={true}
2736
+ focusable={true}
2737
+ onClick={[Function]}
2738
+ onResponderGrant={[Function]}
2739
+ onResponderMove={[Function]}
2740
+ onResponderRelease={[Function]}
2741
+ onResponderTerminate={[Function]}
2742
+ onResponderTerminationRequest={[Function]}
2743
+ onStartShouldSetResponder={[Function]}
2744
+ style={
2745
+ Object {
2746
+ "backgroundColor": "#00000099",
2747
+ "borderRadius": 24,
2748
+ "height": 24,
2749
+ "opacity": 1,
2750
+ "position": "absolute",
2751
+ "right": 14,
2752
+ "top": 4,
2753
+ "width": 24,
2754
+ }
2755
+ }
2756
+ testID="remove-file-upload-preview"
2757
+ >
2758
+ <RNSVGSvgView
2759
+ align="xMidYMid"
2760
+ bbHeight={24}
2761
+ bbWidth={24}
2762
+ focusable={false}
2763
+ height={24}
2764
+ meetOrSlice={0}
2765
+ minX={0}
2766
+ minY={0}
2767
+ style={
2768
+ Array [
2711
2769
  Object {
2712
- "backgroundColor": "#00000099",
2713
- "borderRadius": 24,
2770
+ "backgroundColor": "transparent",
2771
+ "borderWidth": 0,
2772
+ },
2773
+ Object {
2774
+ "flex": 0,
2714
2775
  "height": 24,
2715
- "opacity": 1,
2716
- }
2717
- }
2718
- testID="remove-file-upload-preview"
2719
- >
2720
- <RNSVGSvgView
2721
- align="xMidYMid"
2722
- bbHeight={24}
2723
- bbWidth={24}
2724
- focusable={false}
2725
- height={24}
2726
- meetOrSlice={0}
2727
- minX={0}
2728
- minY={0}
2729
- style={
2776
+ "width": 24,
2777
+ },
2778
+ ]
2779
+ }
2780
+ vbHeight={24}
2781
+ vbWidth={24}
2782
+ width={24}
2783
+ >
2784
+ <RNSVGGroup>
2785
+ <RNSVGPath
2786
+ clipRule={0}
2787
+ d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
2788
+ fill={4278190080}
2789
+ fillRule={0}
2790
+ propList={
2730
2791
  Array [
2731
- Object {
2732
- "backgroundColor": "transparent",
2733
- "borderWidth": 0,
2734
- },
2735
- Object {
2736
- "flex": 0,
2737
- "height": 24,
2738
- "width": 24,
2739
- },
2792
+ "fill",
2793
+ "fillRule",
2740
2794
  ]
2741
2795
  }
2742
- vbHeight={24}
2743
- vbWidth={24}
2744
- width={24}
2745
- >
2746
- <RNSVGGroup>
2747
- <RNSVGPath
2748
- clipRule={0}
2749
- d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
2750
- fill={4278190080}
2751
- fillRule={0}
2752
- propList={
2753
- Array [
2754
- "fill",
2755
- "fillRule",
2756
- ]
2757
- }
2758
- />
2759
- </RNSVGGroup>
2760
- </RNSVGSvgView>
2761
- </View>
2762
- </View>
2796
+ />
2797
+ </RNSVGGroup>
2798
+ </RNSVGSvgView>
2763
2799
  </View>
2764
2800
  </View>
2765
2801
  </View>
@@ -2967,68 +3003,6 @@ exports[`FileUploadPreview should render FileUploadPreview with all uploading fi
2967
3003
  />
2968
3004
  </View>
2969
3005
  </View>
2970
- <View
2971
- accessible={true}
2972
- focusable={true}
2973
- onClick={[Function]}
2974
- onResponderGrant={[Function]}
2975
- onResponderMove={[Function]}
2976
- onResponderRelease={[Function]}
2977
- onResponderTerminate={[Function]}
2978
- onResponderTerminationRequest={[Function]}
2979
- onStartShouldSetResponder={[Function]}
2980
- style={
2981
- Object {
2982
- "backgroundColor": "#00000099",
2983
- "borderRadius": 24,
2984
- "height": 24,
2985
- "opacity": 1,
2986
- }
2987
- }
2988
- testID="remove-file-upload-preview"
2989
- >
2990
- <RNSVGSvgView
2991
- align="xMidYMid"
2992
- bbHeight={24}
2993
- bbWidth={24}
2994
- focusable={false}
2995
- height={24}
2996
- meetOrSlice={0}
2997
- minX={0}
2998
- minY={0}
2999
- style={
3000
- Array [
3001
- Object {
3002
- "backgroundColor": "transparent",
3003
- "borderWidth": 0,
3004
- },
3005
- Object {
3006
- "flex": 0,
3007
- "height": 24,
3008
- "width": 24,
3009
- },
3010
- ]
3011
- }
3012
- vbHeight={24}
3013
- vbWidth={24}
3014
- width={24}
3015
- >
3016
- <RNSVGGroup>
3017
- <RNSVGPath
3018
- clipRule={0}
3019
- d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
3020
- fill={4278190080}
3021
- fillRule={0}
3022
- propList={
3023
- Array [
3024
- "fill",
3025
- "fillRule",
3026
- ]
3027
- }
3028
- />
3029
- </RNSVGGroup>
3030
- </RNSVGSvgView>
3031
- </View>
3032
3006
  </View>
3033
3007
  <View
3034
3008
  style={
@@ -3088,6 +3062,72 @@ exports[`FileUploadPreview should render FileUploadPreview with all uploading fi
3088
3062
  </View>
3089
3063
  </View>
3090
3064
  </View>
3065
+ <View
3066
+ accessible={true}
3067
+ focusable={true}
3068
+ onClick={[Function]}
3069
+ onResponderGrant={[Function]}
3070
+ onResponderMove={[Function]}
3071
+ onResponderRelease={[Function]}
3072
+ onResponderTerminate={[Function]}
3073
+ onResponderTerminationRequest={[Function]}
3074
+ onStartShouldSetResponder={[Function]}
3075
+ style={
3076
+ Object {
3077
+ "backgroundColor": "#00000099",
3078
+ "borderRadius": 24,
3079
+ "height": 24,
3080
+ "opacity": 1,
3081
+ "position": "absolute",
3082
+ "right": 14,
3083
+ "top": 4,
3084
+ "width": 24,
3085
+ }
3086
+ }
3087
+ testID="remove-file-upload-preview"
3088
+ >
3089
+ <RNSVGSvgView
3090
+ align="xMidYMid"
3091
+ bbHeight={24}
3092
+ bbWidth={24}
3093
+ focusable={false}
3094
+ height={24}
3095
+ meetOrSlice={0}
3096
+ minX={0}
3097
+ minY={0}
3098
+ style={
3099
+ Array [
3100
+ Object {
3101
+ "backgroundColor": "transparent",
3102
+ "borderWidth": 0,
3103
+ },
3104
+ Object {
3105
+ "flex": 0,
3106
+ "height": 24,
3107
+ "width": 24,
3108
+ },
3109
+ ]
3110
+ }
3111
+ vbHeight={24}
3112
+ vbWidth={24}
3113
+ width={24}
3114
+ >
3115
+ <RNSVGGroup>
3116
+ <RNSVGPath
3117
+ clipRule={0}
3118
+ d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
3119
+ fill={4278190080}
3120
+ fillRule={0}
3121
+ propList={
3122
+ Array [
3123
+ "fill",
3124
+ "fillRule",
3125
+ ]
3126
+ }
3127
+ />
3128
+ </RNSVGGroup>
3129
+ </RNSVGSvgView>
3130
+ </View>
3091
3131
  </View>
3092
3132
  <View>
3093
3133
  <View
@@ -3271,68 +3311,6 @@ exports[`FileUploadPreview should render FileUploadPreview with all uploading fi
3271
3311
  />
3272
3312
  </View>
3273
3313
  </View>
3274
- <View
3275
- accessible={true}
3276
- focusable={true}
3277
- onClick={[Function]}
3278
- onResponderGrant={[Function]}
3279
- onResponderMove={[Function]}
3280
- onResponderRelease={[Function]}
3281
- onResponderTerminate={[Function]}
3282
- onResponderTerminationRequest={[Function]}
3283
- onStartShouldSetResponder={[Function]}
3284
- style={
3285
- Object {
3286
- "backgroundColor": "#00000099",
3287
- "borderRadius": 24,
3288
- "height": 24,
3289
- "opacity": 1,
3290
- }
3291
- }
3292
- testID="remove-file-upload-preview"
3293
- >
3294
- <RNSVGSvgView
3295
- align="xMidYMid"
3296
- bbHeight={24}
3297
- bbWidth={24}
3298
- focusable={false}
3299
- height={24}
3300
- meetOrSlice={0}
3301
- minX={0}
3302
- minY={0}
3303
- style={
3304
- Array [
3305
- Object {
3306
- "backgroundColor": "transparent",
3307
- "borderWidth": 0,
3308
- },
3309
- Object {
3310
- "flex": 0,
3311
- "height": 24,
3312
- "width": 24,
3313
- },
3314
- ]
3315
- }
3316
- vbHeight={24}
3317
- vbWidth={24}
3318
- width={24}
3319
- >
3320
- <RNSVGGroup>
3321
- <RNSVGPath
3322
- clipRule={0}
3323
- d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
3324
- fill={4278190080}
3325
- fillRule={0}
3326
- propList={
3327
- Array [
3328
- "fill",
3329
- "fillRule",
3330
- ]
3331
- }
3332
- />
3333
- </RNSVGGroup>
3334
- </RNSVGSvgView>
3335
- </View>
3336
3314
  </View>
3337
3315
  <View
3338
3316
  style={
@@ -3392,6 +3370,72 @@ exports[`FileUploadPreview should render FileUploadPreview with all uploading fi
3392
3370
  </View>
3393
3371
  </View>
3394
3372
  </View>
3373
+ <View
3374
+ accessible={true}
3375
+ focusable={true}
3376
+ onClick={[Function]}
3377
+ onResponderGrant={[Function]}
3378
+ onResponderMove={[Function]}
3379
+ onResponderRelease={[Function]}
3380
+ onResponderTerminate={[Function]}
3381
+ onResponderTerminationRequest={[Function]}
3382
+ onStartShouldSetResponder={[Function]}
3383
+ style={
3384
+ Object {
3385
+ "backgroundColor": "#00000099",
3386
+ "borderRadius": 24,
3387
+ "height": 24,
3388
+ "opacity": 1,
3389
+ "position": "absolute",
3390
+ "right": 14,
3391
+ "top": 4,
3392
+ "width": 24,
3393
+ }
3394
+ }
3395
+ testID="remove-file-upload-preview"
3396
+ >
3397
+ <RNSVGSvgView
3398
+ align="xMidYMid"
3399
+ bbHeight={24}
3400
+ bbWidth={24}
3401
+ focusable={false}
3402
+ height={24}
3403
+ meetOrSlice={0}
3404
+ minX={0}
3405
+ minY={0}
3406
+ style={
3407
+ Array [
3408
+ Object {
3409
+ "backgroundColor": "transparent",
3410
+ "borderWidth": 0,
3411
+ },
3412
+ Object {
3413
+ "flex": 0,
3414
+ "height": 24,
3415
+ "width": 24,
3416
+ },
3417
+ ]
3418
+ }
3419
+ vbHeight={24}
3420
+ vbWidth={24}
3421
+ width={24}
3422
+ >
3423
+ <RNSVGGroup>
3424
+ <RNSVGPath
3425
+ clipRule={0}
3426
+ d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
3427
+ fill={4278190080}
3428
+ fillRule={0}
3429
+ propList={
3430
+ Array [
3431
+ "fill",
3432
+ "fillRule",
3433
+ ]
3434
+ }
3435
+ />
3436
+ </RNSVGGroup>
3437
+ </RNSVGSvgView>
3438
+ </View>
3395
3439
  </View>
3396
3440
  <View>
3397
3441
  <View
@@ -3577,68 +3621,6 @@ exports[`FileUploadPreview should render FileUploadPreview with all uploading fi
3577
3621
  />
3578
3622
  </View>
3579
3623
  </View>
3580
- <View
3581
- accessible={true}
3582
- focusable={true}
3583
- onClick={[Function]}
3584
- onResponderGrant={[Function]}
3585
- onResponderMove={[Function]}
3586
- onResponderRelease={[Function]}
3587
- onResponderTerminate={[Function]}
3588
- onResponderTerminationRequest={[Function]}
3589
- onStartShouldSetResponder={[Function]}
3590
- style={
3591
- Object {
3592
- "backgroundColor": "#00000099",
3593
- "borderRadius": 24,
3594
- "height": 24,
3595
- "opacity": 1,
3596
- }
3597
- }
3598
- testID="remove-file-upload-preview"
3599
- >
3600
- <RNSVGSvgView
3601
- align="xMidYMid"
3602
- bbHeight={24}
3603
- bbWidth={24}
3604
- focusable={false}
3605
- height={24}
3606
- meetOrSlice={0}
3607
- minX={0}
3608
- minY={0}
3609
- style={
3610
- Array [
3611
- Object {
3612
- "backgroundColor": "transparent",
3613
- "borderWidth": 0,
3614
- },
3615
- Object {
3616
- "flex": 0,
3617
- "height": 24,
3618
- "width": 24,
3619
- },
3620
- ]
3621
- }
3622
- vbHeight={24}
3623
- vbWidth={24}
3624
- width={24}
3625
- >
3626
- <RNSVGGroup>
3627
- <RNSVGPath
3628
- clipRule={0}
3629
- d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
3630
- fill={4278190080}
3631
- fillRule={0}
3632
- propList={
3633
- Array [
3634
- "fill",
3635
- "fillRule",
3636
- ]
3637
- }
3638
- />
3639
- </RNSVGGroup>
3640
- </RNSVGSvgView>
3641
- </View>
3642
3624
  </View>
3643
3625
  <View
3644
3626
  style={
@@ -3698,6 +3680,72 @@ exports[`FileUploadPreview should render FileUploadPreview with all uploading fi
3698
3680
  </View>
3699
3681
  </View>
3700
3682
  </View>
3683
+ <View
3684
+ accessible={true}
3685
+ focusable={true}
3686
+ onClick={[Function]}
3687
+ onResponderGrant={[Function]}
3688
+ onResponderMove={[Function]}
3689
+ onResponderRelease={[Function]}
3690
+ onResponderTerminate={[Function]}
3691
+ onResponderTerminationRequest={[Function]}
3692
+ onStartShouldSetResponder={[Function]}
3693
+ style={
3694
+ Object {
3695
+ "backgroundColor": "#00000099",
3696
+ "borderRadius": 24,
3697
+ "height": 24,
3698
+ "opacity": 1,
3699
+ "position": "absolute",
3700
+ "right": 14,
3701
+ "top": 4,
3702
+ "width": 24,
3703
+ }
3704
+ }
3705
+ testID="remove-file-upload-preview"
3706
+ >
3707
+ <RNSVGSvgView
3708
+ align="xMidYMid"
3709
+ bbHeight={24}
3710
+ bbWidth={24}
3711
+ focusable={false}
3712
+ height={24}
3713
+ meetOrSlice={0}
3714
+ minX={0}
3715
+ minY={0}
3716
+ style={
3717
+ Array [
3718
+ Object {
3719
+ "backgroundColor": "transparent",
3720
+ "borderWidth": 0,
3721
+ },
3722
+ Object {
3723
+ "flex": 0,
3724
+ "height": 24,
3725
+ "width": 24,
3726
+ },
3727
+ ]
3728
+ }
3729
+ vbHeight={24}
3730
+ vbWidth={24}
3731
+ width={24}
3732
+ >
3733
+ <RNSVGGroup>
3734
+ <RNSVGPath
3735
+ clipRule={0}
3736
+ d="M7.05 7.05a1 1 0 000 1.414L10.586 12 7.05 15.536a1 1 0 101.414 1.414L12 13.414l3.536 3.536a1 1 0 001.414-1.414L13.414 12l3.536-3.536a1 1 0 00-1.414-1.414L12 10.586 8.464 7.05a1 1 0 00-1.414 0z"
3737
+ fill={4278190080}
3738
+ fillRule={0}
3739
+ propList={
3740
+ Array [
3741
+ "fill",
3742
+ "fillRule",
3743
+ ]
3744
+ }
3745
+ />
3746
+ </RNSVGGroup>
3747
+ </RNSVGSvgView>
3748
+ </View>
3701
3749
  </View>
3702
3750
  </View>
3703
3751
  </View>