stream-chat-react-native-core 4.2.0-beta.2 → 4.2.0
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/lib/commonjs/components/Attachment/FileIcon.js +20 -20
- package/lib/commonjs/components/Attachment/FileIcon.js.map +1 -1
- package/lib/commonjs/components/Attachment/Giphy.js +37 -28
- package/lib/commonjs/components/Attachment/Giphy.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageContent.js +1 -1
- package/lib/commonjs/components/Message/MessageSimple/MessageContent.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/utils/renderText.js +4 -7
- package/lib/commonjs/components/Message/MessageSimple/utils/renderText.js.map +1 -1
- package/lib/commonjs/components/Message/MessageSimple/utils/renderText.test.js +183 -173
- package/lib/commonjs/components/Message/MessageSimple/utils/renderText.test.js.map +1 -1
- package/lib/commonjs/components/MessageInput/MessageInput.js +3 -3
- package/lib/commonjs/components/MessageInput/MessageInput.js.map +1 -1
- package/lib/commonjs/components/MessageList/utils/getLastReceivedMessage.js +3 -3
- package/lib/commonjs/components/MessageList/utils/getLastReceivedMessage.js.map +1 -1
- package/lib/commonjs/components/MessageList/utils/getReadStates.js +8 -8
- package/lib/commonjs/components/MessageList/utils/getReadStates.js.map +1 -1
- package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js +32 -32
- package/lib/commonjs/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/commonjs/contexts/messageInputContext/hooks/useMessageDetailsForState.js +9 -9
- package/lib/commonjs/contexts/messageInputContext/hooks/useMessageDetailsForState.js.map +1 -1
- package/lib/commonjs/version.json +1 -1
- package/lib/module/components/Attachment/FileIcon.js +20 -20
- package/lib/module/components/Attachment/FileIcon.js.map +1 -1
- package/lib/module/components/Attachment/Giphy.js +37 -28
- package/lib/module/components/Attachment/Giphy.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/MessageContent.js +1 -1
- package/lib/module/components/Message/MessageSimple/MessageContent.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/utils/renderText.js +4 -7
- package/lib/module/components/Message/MessageSimple/utils/renderText.js.map +1 -1
- package/lib/module/components/Message/MessageSimple/utils/renderText.test.js +183 -173
- package/lib/module/components/Message/MessageSimple/utils/renderText.test.js.map +1 -1
- package/lib/module/components/MessageInput/MessageInput.js +3 -3
- package/lib/module/components/MessageInput/MessageInput.js.map +1 -1
- package/lib/module/components/MessageList/utils/getLastReceivedMessage.js +3 -3
- package/lib/module/components/MessageList/utils/getLastReceivedMessage.js.map +1 -1
- package/lib/module/components/MessageList/utils/getReadStates.js +8 -8
- package/lib/module/components/MessageList/utils/getReadStates.js.map +1 -1
- package/lib/module/contexts/messageInputContext/MessageInputContext.js +32 -32
- package/lib/module/contexts/messageInputContext/MessageInputContext.js.map +1 -1
- package/lib/module/contexts/messageInputContext/hooks/useMessageDetailsForState.js +9 -9
- package/lib/module/contexts/messageInputContext/hooks/useMessageDetailsForState.js.map +1 -1
- package/lib/module/version.json +1 -1
- package/lib/typescript/components/Attachment/Giphy.d.ts +1 -1
- package/lib/typescript/components/MessageOverlay/hooks/useMessageActionAnimation.d.ts +2 -3
- package/package.json +12 -10
- package/src/components/Attachment/Giphy.tsx +19 -6
- package/src/components/ImageGallery/components/__tests__/ImageGalleryHeader.test.tsx +14 -4
- package/src/components/Message/MessageSimple/MessageContent.tsx +1 -1
- package/src/components/Message/MessageSimple/__tests__/__snapshots__/MessageReplies.test.js.snap +1 -0
- package/src/components/Message/MessageSimple/utils/renderText.test.tsx +30 -23
- package/src/components/MessageInput/__tests__/__snapshots__/AttachButton.test.js.snap +2 -0
- package/src/components/MessageInput/__tests__/__snapshots__/FileUploadPreview.test.js.snap +24 -68
- package/src/components/MessageInput/__tests__/__snapshots__/ImageUploadPreview.test.js.snap +20 -36
- package/src/components/MessageInput/__tests__/__snapshots__/MessageInput.test.js.snap +7 -10
- package/src/components/MessageInput/__tests__/__snapshots__/SendButton.test.js.snap +4 -0
- package/src/components/MessageInput/__tests__/__snapshots__/UploadProgressIndicator.test.js.snap +1 -3
- package/src/components/MessageList/__tests__/__snapshots__/ScrollToBottomButton.test.js.snap +1 -0
- package/src/components/Thread/__tests__/__snapshots__/Thread.test.js.snap +10 -7
- package/src/version.json +1 -1
|
@@ -212,7 +212,7 @@ const MessageContentWithContext = <
|
|
|
212
212
|
backgroundColor = transparent;
|
|
213
213
|
} else if (otherAttachments.length) {
|
|
214
214
|
if (otherAttachments[0].type === 'giphy') {
|
|
215
|
-
backgroundColor = message.quoted_message
|
|
215
|
+
backgroundColor = message.quoted_message ? grey_gainsboro : transparent;
|
|
216
216
|
} else {
|
|
217
217
|
backgroundColor = blue_alice;
|
|
218
218
|
}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { Text } from 'react-native';
|
|
3
3
|
|
|
4
|
-
import {
|
|
4
|
+
import type { ReactTestInstance } from 'react-test-renderer';
|
|
5
|
+
|
|
6
|
+
import { render, waitFor, within } from '@testing-library/react-native';
|
|
5
7
|
|
|
6
8
|
// @ts-ignore
|
|
7
9
|
import { ASTNode, SingleASTNode } from 'simple-markdown';
|
|
@@ -31,40 +33,45 @@ describe('list', () => {
|
|
|
31
33
|
</>
|
|
32
34
|
);
|
|
33
35
|
|
|
34
|
-
it('renders numbered items',
|
|
36
|
+
it('renders numbered items', () => {
|
|
35
37
|
const node = createNode({ amount: 3, ordered: true, start: 1 });
|
|
36
|
-
const {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
38
|
+
const { container } = render(<MockText node={node} output={mockOutput} state={{}} />);
|
|
39
|
+
const textInstances = container.children as ReactTestInstance[];
|
|
40
|
+
textInstances.forEach(async (instance, index) => {
|
|
41
|
+
const text = `${index + node.start}. `; // 1. , 2. ...
|
|
42
|
+
await waitFor(() => expect(within(instance).getByText(text)).toBeTruthy());
|
|
43
|
+
});
|
|
41
44
|
});
|
|
42
45
|
|
|
43
|
-
it('renders numbered items from a start index',
|
|
46
|
+
it('renders numbered items from a start index', () => {
|
|
44
47
|
const node = createNode({ amount: 3, ordered: true, start: 3 });
|
|
45
|
-
const {
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
const { container } = render(<MockText node={node} output={mockOutput} state={{}} />);
|
|
49
|
+
const textInstances = container.children as ReactTestInstance[];
|
|
50
|
+
textInstances.forEach(async (instance, index) => {
|
|
51
|
+
const text = `${index + node.start}. `; // 3. , 4. ...
|
|
52
|
+
await waitFor(() => expect(within(instance).getByText(text)).toBeTruthy());
|
|
53
|
+
});
|
|
50
54
|
});
|
|
51
55
|
|
|
52
|
-
it('does not throw an error if an item is empty',
|
|
56
|
+
it('does not throw an error if an item is empty', () => {
|
|
53
57
|
const node = {
|
|
54
58
|
...createNode({ amount: 3, ordered: true }),
|
|
55
59
|
items: ['Not empty', null, 'Not empty'],
|
|
56
60
|
};
|
|
57
|
-
const {
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
61
|
+
const { container } = render(<MockText node={node} output={mockOutput} state={{}} />);
|
|
62
|
+
const textInstances = container.children as ReactTestInstance[];
|
|
63
|
+
textInstances.forEach(async (instance, index) => {
|
|
64
|
+
const text = `${index + 1}. `; // 1. , 2. ...
|
|
65
|
+
await waitFor(() => expect(within(instance).getByText(text)).toBeTruthy());
|
|
66
|
+
});
|
|
62
67
|
});
|
|
63
68
|
|
|
64
|
-
it('renders an unordered list',
|
|
69
|
+
it('renders an unordered list', () => {
|
|
65
70
|
const node = createNode({ amount: 3 });
|
|
66
|
-
const {
|
|
67
|
-
|
|
68
|
-
|
|
71
|
+
const { container } = render(<MockText node={node} output={mockOutput} state={{}} />);
|
|
72
|
+
const textInstances = container.children as ReactTestInstance[];
|
|
73
|
+
textInstances.forEach(async (instance) => {
|
|
74
|
+
await waitFor(() => expect(within(instance).getByText('\u2022 ')).toBeTruthy());
|
|
75
|
+
});
|
|
69
76
|
});
|
|
70
77
|
});
|
|
@@ -23,6 +23,7 @@ exports[`AttachButton should render a disabled AttachButton 1`] = `
|
|
|
23
23
|
>
|
|
24
24
|
<View
|
|
25
25
|
accessible={true}
|
|
26
|
+
collapsable={false}
|
|
26
27
|
hitSlop={
|
|
27
28
|
Object {
|
|
28
29
|
"bottom": 15,
|
|
@@ -106,6 +107,7 @@ exports[`AttachButton should render an enabled AttachButton 1`] = `
|
|
|
106
107
|
>
|
|
107
108
|
<View
|
|
108
109
|
accessible={true}
|
|
110
|
+
collapsable={false}
|
|
109
111
|
hitSlop={
|
|
110
112
|
Object {
|
|
111
113
|
"bottom": 15,
|
|
@@ -53,17 +53,13 @@ Array [
|
|
|
53
53
|
},
|
|
54
54
|
]
|
|
55
55
|
}
|
|
56
|
-
disableVirtualization={false}
|
|
57
56
|
getItem={[Function]}
|
|
58
57
|
getItemCount={[Function]}
|
|
59
58
|
getItemLayout={[Function]}
|
|
60
|
-
horizontal={false}
|
|
61
|
-
initialNumToRender={10}
|
|
62
59
|
keyExtractor={[Function]}
|
|
63
|
-
maxToRenderPerBatch={10}
|
|
64
60
|
onContentSizeChange={[Function]}
|
|
65
|
-
onEndReachedThreshold={2}
|
|
66
61
|
onLayout={[Function]}
|
|
62
|
+
onMomentumScrollBegin={[Function]}
|
|
67
63
|
onMomentumScrollEnd={[Function]}
|
|
68
64
|
onScroll={[Function]}
|
|
69
65
|
onScrollBeginDrag={[Function]}
|
|
@@ -81,9 +77,7 @@ Array [
|
|
|
81
77
|
Object {},
|
|
82
78
|
]
|
|
83
79
|
}
|
|
84
|
-
updateCellsBatchingPeriod={50}
|
|
85
80
|
viewabilityConfigCallbackPairs={Array []}
|
|
86
|
-
windowSize={21}
|
|
87
81
|
>
|
|
88
82
|
<View>
|
|
89
83
|
<View
|
|
@@ -320,10 +314,7 @@ Array [
|
|
|
320
314
|
}
|
|
321
315
|
>
|
|
322
316
|
<ActivityIndicator
|
|
323
|
-
animating={true}
|
|
324
317
|
color="#F2F2F2"
|
|
325
|
-
hidesWhenStopped={true}
|
|
326
|
-
size="small"
|
|
327
318
|
testID="upload-progress-indicator"
|
|
328
319
|
/>
|
|
329
320
|
</View>
|
|
@@ -331,6 +322,7 @@ Array [
|
|
|
331
322
|
</View>
|
|
332
323
|
<View
|
|
333
324
|
accessible={true}
|
|
325
|
+
collapsable={false}
|
|
334
326
|
focusable={true}
|
|
335
327
|
onClick={[Function]}
|
|
336
328
|
onResponderGrant={[Function]}
|
|
@@ -584,6 +576,7 @@ Array [
|
|
|
584
576
|
</View>
|
|
585
577
|
<View
|
|
586
578
|
accessible={true}
|
|
579
|
+
collapsable={false}
|
|
587
580
|
focusable={true}
|
|
588
581
|
onClick={[Function]}
|
|
589
582
|
onResponderGrant={[Function]}
|
|
@@ -873,6 +866,7 @@ Array [
|
|
|
873
866
|
>
|
|
874
867
|
<View
|
|
875
868
|
accessible={true}
|
|
869
|
+
collapsable={false}
|
|
876
870
|
focusable={true}
|
|
877
871
|
onClick={[Function]}
|
|
878
872
|
onResponderGrant={[Function]}
|
|
@@ -942,6 +936,7 @@ Array [
|
|
|
942
936
|
</View>
|
|
943
937
|
<View
|
|
944
938
|
accessible={true}
|
|
939
|
+
collapsable={false}
|
|
945
940
|
focusable={true}
|
|
946
941
|
onClick={[Function]}
|
|
947
942
|
onResponderGrant={[Function]}
|
|
@@ -1085,17 +1080,13 @@ Array [
|
|
|
1085
1080
|
]
|
|
1086
1081
|
}
|
|
1087
1082
|
data={Array []}
|
|
1088
|
-
disableVirtualization={false}
|
|
1089
1083
|
getItem={[Function]}
|
|
1090
1084
|
getItemCount={[Function]}
|
|
1091
|
-
horizontal={false}
|
|
1092
|
-
initialNumToRender={10}
|
|
1093
1085
|
keyExtractor={[Function]}
|
|
1094
|
-
maxToRenderPerBatch={10}
|
|
1095
1086
|
onContentSizeChange={[Function]}
|
|
1096
1087
|
onEndReached={[Function]}
|
|
1097
|
-
onEndReachedThreshold={2}
|
|
1098
1088
|
onLayout={[Function]}
|
|
1089
|
+
onMomentumScrollBegin={[Function]}
|
|
1099
1090
|
onMomentumScrollEnd={[Function]}
|
|
1100
1091
|
onScroll={[Function]}
|
|
1101
1092
|
onScrollBeginDrag={[Function]}
|
|
@@ -1104,9 +1095,7 @@ Array [
|
|
|
1104
1095
|
renderItem={[Function]}
|
|
1105
1096
|
scrollEventThrottle={50}
|
|
1106
1097
|
stickyHeaderIndices={Array []}
|
|
1107
|
-
updateCellsBatchingPeriod={50}
|
|
1108
1098
|
viewabilityConfigCallbackPairs={Array []}
|
|
1109
|
-
windowSize={21}
|
|
1110
1099
|
>
|
|
1111
1100
|
<View />
|
|
1112
1101
|
</RCTScrollView>
|
|
@@ -1167,17 +1156,13 @@ Array [
|
|
|
1167
1156
|
},
|
|
1168
1157
|
]
|
|
1169
1158
|
}
|
|
1170
|
-
disableVirtualization={false}
|
|
1171
1159
|
getItem={[Function]}
|
|
1172
1160
|
getItemCount={[Function]}
|
|
1173
1161
|
getItemLayout={[Function]}
|
|
1174
|
-
horizontal={false}
|
|
1175
|
-
initialNumToRender={10}
|
|
1176
1162
|
keyExtractor={[Function]}
|
|
1177
|
-
maxToRenderPerBatch={10}
|
|
1178
1163
|
onContentSizeChange={[Function]}
|
|
1179
|
-
onEndReachedThreshold={2}
|
|
1180
1164
|
onLayout={[Function]}
|
|
1165
|
+
onMomentumScrollBegin={[Function]}
|
|
1181
1166
|
onMomentumScrollEnd={[Function]}
|
|
1182
1167
|
onScroll={[Function]}
|
|
1183
1168
|
onScrollBeginDrag={[Function]}
|
|
@@ -1195,9 +1180,7 @@ Array [
|
|
|
1195
1180
|
Object {},
|
|
1196
1181
|
]
|
|
1197
1182
|
}
|
|
1198
|
-
updateCellsBatchingPeriod={50}
|
|
1199
1183
|
viewabilityConfigCallbackPairs={Array []}
|
|
1200
|
-
windowSize={21}
|
|
1201
1184
|
>
|
|
1202
1185
|
<View>
|
|
1203
1186
|
<View
|
|
@@ -1422,6 +1405,7 @@ Array [
|
|
|
1422
1405
|
>
|
|
1423
1406
|
<View
|
|
1424
1407
|
accessible={true}
|
|
1408
|
+
collapsable={false}
|
|
1425
1409
|
focusable={true}
|
|
1426
1410
|
onClick={[Function]}
|
|
1427
1411
|
onResponderGrant={[Function]}
|
|
@@ -1491,6 +1475,7 @@ Array [
|
|
|
1491
1475
|
</View>
|
|
1492
1476
|
<View
|
|
1493
1477
|
accessible={true}
|
|
1478
|
+
collapsable={false}
|
|
1494
1479
|
focusable={true}
|
|
1495
1480
|
onClick={[Function]}
|
|
1496
1481
|
onResponderGrant={[Function]}
|
|
@@ -1778,6 +1763,7 @@ Array [
|
|
|
1778
1763
|
>
|
|
1779
1764
|
<View
|
|
1780
1765
|
accessible={true}
|
|
1766
|
+
collapsable={false}
|
|
1781
1767
|
focusable={true}
|
|
1782
1768
|
onClick={[Function]}
|
|
1783
1769
|
onResponderGrant={[Function]}
|
|
@@ -1847,6 +1833,7 @@ Array [
|
|
|
1847
1833
|
</View>
|
|
1848
1834
|
<View
|
|
1849
1835
|
accessible={true}
|
|
1836
|
+
collapsable={false}
|
|
1850
1837
|
focusable={true}
|
|
1851
1838
|
onClick={[Function]}
|
|
1852
1839
|
onResponderGrant={[Function]}
|
|
@@ -2136,6 +2123,7 @@ Array [
|
|
|
2136
2123
|
>
|
|
2137
2124
|
<View
|
|
2138
2125
|
accessible={true}
|
|
2126
|
+
collapsable={false}
|
|
2139
2127
|
focusable={true}
|
|
2140
2128
|
onClick={[Function]}
|
|
2141
2129
|
onResponderGrant={[Function]}
|
|
@@ -2205,6 +2193,7 @@ Array [
|
|
|
2205
2193
|
</View>
|
|
2206
2194
|
<View
|
|
2207
2195
|
accessible={true}
|
|
2196
|
+
collapsable={false}
|
|
2208
2197
|
focusable={true}
|
|
2209
2198
|
onClick={[Function]}
|
|
2210
2199
|
onResponderGrant={[Function]}
|
|
@@ -2348,17 +2337,13 @@ Array [
|
|
|
2348
2337
|
]
|
|
2349
2338
|
}
|
|
2350
2339
|
data={Array []}
|
|
2351
|
-
disableVirtualization={false}
|
|
2352
2340
|
getItem={[Function]}
|
|
2353
2341
|
getItemCount={[Function]}
|
|
2354
|
-
horizontal={false}
|
|
2355
|
-
initialNumToRender={10}
|
|
2356
2342
|
keyExtractor={[Function]}
|
|
2357
|
-
maxToRenderPerBatch={10}
|
|
2358
2343
|
onContentSizeChange={[Function]}
|
|
2359
2344
|
onEndReached={[Function]}
|
|
2360
|
-
onEndReachedThreshold={2}
|
|
2361
2345
|
onLayout={[Function]}
|
|
2346
|
+
onMomentumScrollBegin={[Function]}
|
|
2362
2347
|
onMomentumScrollEnd={[Function]}
|
|
2363
2348
|
onScroll={[Function]}
|
|
2364
2349
|
onScrollBeginDrag={[Function]}
|
|
@@ -2367,9 +2352,7 @@ Array [
|
|
|
2367
2352
|
renderItem={[Function]}
|
|
2368
2353
|
scrollEventThrottle={50}
|
|
2369
2354
|
stickyHeaderIndices={Array []}
|
|
2370
|
-
updateCellsBatchingPeriod={50}
|
|
2371
2355
|
viewabilityConfigCallbackPairs={Array []}
|
|
2372
|
-
windowSize={21}
|
|
2373
2356
|
>
|
|
2374
2357
|
<View />
|
|
2375
2358
|
</RCTScrollView>
|
|
@@ -2430,17 +2413,13 @@ Array [
|
|
|
2430
2413
|
},
|
|
2431
2414
|
]
|
|
2432
2415
|
}
|
|
2433
|
-
disableVirtualization={false}
|
|
2434
2416
|
getItem={[Function]}
|
|
2435
2417
|
getItemCount={[Function]}
|
|
2436
2418
|
getItemLayout={[Function]}
|
|
2437
|
-
horizontal={false}
|
|
2438
|
-
initialNumToRender={10}
|
|
2439
2419
|
keyExtractor={[Function]}
|
|
2440
|
-
maxToRenderPerBatch={10}
|
|
2441
2420
|
onContentSizeChange={[Function]}
|
|
2442
|
-
onEndReachedThreshold={2}
|
|
2443
2421
|
onLayout={[Function]}
|
|
2422
|
+
onMomentumScrollBegin={[Function]}
|
|
2444
2423
|
onMomentumScrollEnd={[Function]}
|
|
2445
2424
|
onScroll={[Function]}
|
|
2446
2425
|
onScrollBeginDrag={[Function]}
|
|
@@ -2458,9 +2437,7 @@ Array [
|
|
|
2458
2437
|
Object {},
|
|
2459
2438
|
]
|
|
2460
2439
|
}
|
|
2461
|
-
updateCellsBatchingPeriod={50}
|
|
2462
2440
|
viewabilityConfigCallbackPairs={Array []}
|
|
2463
|
-
windowSize={21}
|
|
2464
2441
|
>
|
|
2465
2442
|
<View>
|
|
2466
2443
|
<View
|
|
@@ -2651,6 +2628,7 @@ Array [
|
|
|
2651
2628
|
</View>
|
|
2652
2629
|
<View
|
|
2653
2630
|
accessible={true}
|
|
2631
|
+
collapsable={false}
|
|
2654
2632
|
focusable={true}
|
|
2655
2633
|
onClick={[Function]}
|
|
2656
2634
|
onResponderGrant={[Function]}
|
|
@@ -2904,6 +2882,7 @@ Array [
|
|
|
2904
2882
|
</View>
|
|
2905
2883
|
<View
|
|
2906
2884
|
accessible={true}
|
|
2885
|
+
collapsable={false}
|
|
2907
2886
|
focusable={true}
|
|
2908
2887
|
onClick={[Function]}
|
|
2909
2888
|
onResponderGrant={[Function]}
|
|
@@ -3159,6 +3138,7 @@ Array [
|
|
|
3159
3138
|
</View>
|
|
3160
3139
|
<View
|
|
3161
3140
|
accessible={true}
|
|
3141
|
+
collapsable={false}
|
|
3162
3142
|
focusable={true}
|
|
3163
3143
|
onClick={[Function]}
|
|
3164
3144
|
onResponderGrant={[Function]}
|
|
@@ -3302,17 +3282,13 @@ Array [
|
|
|
3302
3282
|
]
|
|
3303
3283
|
}
|
|
3304
3284
|
data={Array []}
|
|
3305
|
-
disableVirtualization={false}
|
|
3306
3285
|
getItem={[Function]}
|
|
3307
3286
|
getItemCount={[Function]}
|
|
3308
|
-
horizontal={false}
|
|
3309
|
-
initialNumToRender={10}
|
|
3310
3287
|
keyExtractor={[Function]}
|
|
3311
|
-
maxToRenderPerBatch={10}
|
|
3312
3288
|
onContentSizeChange={[Function]}
|
|
3313
3289
|
onEndReached={[Function]}
|
|
3314
|
-
onEndReachedThreshold={2}
|
|
3315
3290
|
onLayout={[Function]}
|
|
3291
|
+
onMomentumScrollBegin={[Function]}
|
|
3316
3292
|
onMomentumScrollEnd={[Function]}
|
|
3317
3293
|
onScroll={[Function]}
|
|
3318
3294
|
onScrollBeginDrag={[Function]}
|
|
@@ -3321,9 +3297,7 @@ Array [
|
|
|
3321
3297
|
renderItem={[Function]}
|
|
3322
3298
|
scrollEventThrottle={50}
|
|
3323
3299
|
stickyHeaderIndices={Array []}
|
|
3324
|
-
updateCellsBatchingPeriod={50}
|
|
3325
3300
|
viewabilityConfigCallbackPairs={Array []}
|
|
3326
|
-
windowSize={21}
|
|
3327
3301
|
>
|
|
3328
3302
|
<View />
|
|
3329
3303
|
</RCTScrollView>
|
|
@@ -3384,17 +3358,13 @@ Array [
|
|
|
3384
3358
|
},
|
|
3385
3359
|
]
|
|
3386
3360
|
}
|
|
3387
|
-
disableVirtualization={false}
|
|
3388
3361
|
getItem={[Function]}
|
|
3389
3362
|
getItemCount={[Function]}
|
|
3390
3363
|
getItemLayout={[Function]}
|
|
3391
|
-
horizontal={false}
|
|
3392
|
-
initialNumToRender={10}
|
|
3393
3364
|
keyExtractor={[Function]}
|
|
3394
|
-
maxToRenderPerBatch={10}
|
|
3395
3365
|
onContentSizeChange={[Function]}
|
|
3396
|
-
onEndReachedThreshold={2}
|
|
3397
3366
|
onLayout={[Function]}
|
|
3367
|
+
onMomentumScrollBegin={[Function]}
|
|
3398
3368
|
onMomentumScrollEnd={[Function]}
|
|
3399
3369
|
onScroll={[Function]}
|
|
3400
3370
|
onScrollBeginDrag={[Function]}
|
|
@@ -3412,9 +3382,7 @@ Array [
|
|
|
3412
3382
|
Object {},
|
|
3413
3383
|
]
|
|
3414
3384
|
}
|
|
3415
|
-
updateCellsBatchingPeriod={50}
|
|
3416
3385
|
viewabilityConfigCallbackPairs={Array []}
|
|
3417
|
-
windowSize={21}
|
|
3418
3386
|
>
|
|
3419
3387
|
<View>
|
|
3420
3388
|
<View
|
|
@@ -3651,10 +3619,7 @@ Array [
|
|
|
3651
3619
|
}
|
|
3652
3620
|
>
|
|
3653
3621
|
<ActivityIndicator
|
|
3654
|
-
animating={true}
|
|
3655
3622
|
color="#F2F2F2"
|
|
3656
|
-
hidesWhenStopped={true}
|
|
3657
|
-
size="small"
|
|
3658
3623
|
testID="upload-progress-indicator"
|
|
3659
3624
|
/>
|
|
3660
3625
|
</View>
|
|
@@ -3662,6 +3627,7 @@ Array [
|
|
|
3662
3627
|
</View>
|
|
3663
3628
|
<View
|
|
3664
3629
|
accessible={true}
|
|
3630
|
+
collapsable={false}
|
|
3665
3631
|
focusable={true}
|
|
3666
3632
|
onClick={[Function]}
|
|
3667
3633
|
onResponderGrant={[Function]}
|
|
@@ -3961,10 +3927,7 @@ Array [
|
|
|
3961
3927
|
}
|
|
3962
3928
|
>
|
|
3963
3929
|
<ActivityIndicator
|
|
3964
|
-
animating={true}
|
|
3965
3930
|
color="#F2F2F2"
|
|
3966
|
-
hidesWhenStopped={true}
|
|
3967
|
-
size="small"
|
|
3968
3931
|
testID="upload-progress-indicator"
|
|
3969
3932
|
/>
|
|
3970
3933
|
</View>
|
|
@@ -3972,6 +3935,7 @@ Array [
|
|
|
3972
3935
|
</View>
|
|
3973
3936
|
<View
|
|
3974
3937
|
accessible={true}
|
|
3938
|
+
collapsable={false}
|
|
3975
3939
|
focusable={true}
|
|
3976
3940
|
onClick={[Function]}
|
|
3977
3941
|
onResponderGrant={[Function]}
|
|
@@ -4273,10 +4237,7 @@ Array [
|
|
|
4273
4237
|
}
|
|
4274
4238
|
>
|
|
4275
4239
|
<ActivityIndicator
|
|
4276
|
-
animating={true}
|
|
4277
4240
|
color="#F2F2F2"
|
|
4278
|
-
hidesWhenStopped={true}
|
|
4279
|
-
size="small"
|
|
4280
4241
|
testID="upload-progress-indicator"
|
|
4281
4242
|
/>
|
|
4282
4243
|
</View>
|
|
@@ -4284,6 +4245,7 @@ Array [
|
|
|
4284
4245
|
</View>
|
|
4285
4246
|
<View
|
|
4286
4247
|
accessible={true}
|
|
4248
|
+
collapsable={false}
|
|
4287
4249
|
focusable={true}
|
|
4288
4250
|
onClick={[Function]}
|
|
4289
4251
|
onResponderGrant={[Function]}
|
|
@@ -4427,17 +4389,13 @@ Array [
|
|
|
4427
4389
|
]
|
|
4428
4390
|
}
|
|
4429
4391
|
data={Array []}
|
|
4430
|
-
disableVirtualization={false}
|
|
4431
4392
|
getItem={[Function]}
|
|
4432
4393
|
getItemCount={[Function]}
|
|
4433
|
-
horizontal={false}
|
|
4434
|
-
initialNumToRender={10}
|
|
4435
4394
|
keyExtractor={[Function]}
|
|
4436
|
-
maxToRenderPerBatch={10}
|
|
4437
4395
|
onContentSizeChange={[Function]}
|
|
4438
4396
|
onEndReached={[Function]}
|
|
4439
|
-
onEndReachedThreshold={2}
|
|
4440
4397
|
onLayout={[Function]}
|
|
4398
|
+
onMomentumScrollBegin={[Function]}
|
|
4441
4399
|
onMomentumScrollEnd={[Function]}
|
|
4442
4400
|
onScroll={[Function]}
|
|
4443
4401
|
onScrollBeginDrag={[Function]}
|
|
@@ -4446,9 +4404,7 @@ Array [
|
|
|
4446
4404
|
renderItem={[Function]}
|
|
4447
4405
|
scrollEventThrottle={50}
|
|
4448
4406
|
stickyHeaderIndices={Array []}
|
|
4449
|
-
updateCellsBatchingPeriod={50}
|
|
4450
4407
|
viewabilityConfigCallbackPairs={Array []}
|
|
4451
|
-
windowSize={21}
|
|
4452
4408
|
>
|
|
4453
4409
|
<View />
|
|
4454
4410
|
</RCTScrollView>
|