@hero-design/rn 8.43.0 → 8.43.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +9 -0
- package/es/index.js +1339 -1324
- package/jest-setup.ts +2 -0
- package/lib/index.js +1339 -1324
- package/package.json +20 -20
- package/src/components/Accordion/__tests__/__snapshots__/AccordionItem.spec.tsx.snap +68 -0
- package/src/components/Accordion/__tests__/__snapshots__/index.spec.tsx.snap +102 -0
- package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +85 -0
- package/src/components/Attachment/__tests__/__snapshots__/index.spec.tsx.snap +34 -0
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/StyledAvatarStack.spec.tsx.snap +12 -0
- package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/index.spec.tsx.snap +108 -0
- package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +17 -0
- package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +36 -0
- package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +36 -0
- package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +51 -1
- package/src/components/Button/UtilityButton/__tests__/__snapshots__/index.spec.tsx.snap +34 -0
- package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +128 -0
- package/src/components/Button/__tests__/__snapshots__/IconButton.spec.tsx.snap +17 -0
- package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +80 -0
- package/src/components/Calendar/__tests__/__snapshots__/CalendarRowItem.spec.tsx.snap +85 -0
- package/src/components/Carousel/CardCarousel.tsx +10 -7
- package/src/components/Carousel/__tests__/__snapshots__/CardCarousel.spec.tsx.snap +4 -0
- package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +36 -0
- package/src/components/Checkbox/__tests__/__snapshots__/StyledCheckbox.spec.tsx.snap +68 -0
- package/src/components/Checkbox/__tests__/__snapshots__/index.spec.tsx.snap +72 -0
- package/src/components/Chip/__tests__/__snapshots__/index.spec.tsx.snap +204 -0
- package/src/components/Collapse/index.tsx +1 -1
- package/src/components/ContentNavigator/__tests__/__snapshots__/index.spec.tsx.snap +72 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePicker.spec.tsx.snap +36 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +12 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerCalendar.spec.tsx.snap +12 -0
- package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +54 -1
- package/src/components/Drawer/__tests__/__snapshots__/index.spec.tsx.snap +51 -0
- package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +81 -0
- package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +16 -0
- package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +24 -0
- package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +16 -0
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +60 -0
- package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +32 -0
- package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +32 -0
- package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +16 -0
- package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +24 -0
- package/src/components/Rate/__tests__/__snapshots__/index.spec.tsx.snap +180 -0
- package/src/components/RichTextEditor/__tests__/__snapshots__/EditorToolbar.spec.tsx.snap +119 -0
- package/src/components/RichTextEditor/__tests__/__snapshots__/MentionList.spec.tsx.snap +1 -0
- package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +18 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +8 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +124 -0
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +437 -4
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +8 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +124 -0
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +323 -3
- package/src/components/Swipeable/__tests__/__snapshots__/SwipeableAction.spec.tsx.snap +51 -0
- package/src/components/Swipeable/index.tsx +3 -3
- package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/index.spec.tsx.snap +9 -0
- package/src/components/Switch/__tests__/__snapshots__/index.spec.tsx.snap +8 -0
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +171 -0
- package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabsHeader.spec.tsx.snap +40 -0
- package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +159 -0
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +24 -0
- package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +66 -1
- package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +102 -0
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarGroup.spec.tsx.snap +72 -0
- package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +96 -0
- package/tsconfig.json +4 -1
- package/types/components/Accordion/AccordionItem.d.ts +2 -1
- package/types/components/Accordion/index.d.ts +1 -1
- package/types/components/Attachment/index.d.ts +2 -1
- package/types/components/Avatar/Avatar.d.ts +2 -1
- package/types/components/Avatar/AvatarStack/index.d.ts +2 -2
- package/types/components/Avatar/index.d.ts +3 -2
- package/types/components/Badge/StyledBadge.d.ts +0 -4
- package/types/components/BottomSheet/Footer.d.ts +2 -1
- package/types/components/BottomSheet/Header.d.ts +2 -1
- package/types/components/BottomSheet/ScrollView.d.ts +1 -0
- package/types/components/BottomSheet/StyledBottomSheet.d.ts +0 -4
- package/types/components/Box/index.d.ts +2 -1
- package/types/components/Button/IconButton.d.ts +2 -1
- package/types/components/Button/LoadingIndicator/index.d.ts +2 -1
- package/types/components/Button/UtilityButton/index.d.ts +2 -1
- package/types/components/Calendar/CalendarRowItem.d.ts +2 -1
- package/types/components/Calendar/StyledCalendar.d.ts +1 -1
- package/types/components/Calendar/index.d.ts +2 -1
- package/types/components/Carousel/CardCarousel.d.ts +1 -1
- package/types/components/Carousel/CarouselItem.d.ts +2 -1
- package/types/components/Carousel/index.d.ts +2 -2
- package/types/components/Checkbox/index.d.ts +2 -1
- package/types/components/Chip/index.d.ts +2 -1
- package/types/components/Collapse/StyledCollapse.d.ts +0 -2
- package/types/components/Collapse/index.d.ts +2 -1
- package/types/components/ContentNavigator/index.d.ts +2 -1
- package/types/components/DatePicker/DatePickerAndroid.d.ts +2 -1
- package/types/components/DatePicker/DatePickerCalendar.d.ts +2 -1
- package/types/components/DatePicker/DatePickerIOS.d.ts +2 -1
- package/types/components/DatePicker/index.d.ts +2 -1
- package/types/components/Divider/index.d.ts +2 -1
- package/types/components/Drawer/StyledDrawer.d.ts +0 -6
- package/types/components/Error/StyledError.d.ts +0 -4
- package/types/components/FAB/ActionGroup/ActionItem.d.ts +2 -1
- package/types/components/FAB/ActionGroup/StyledActionGroup.d.ts +0 -4
- package/types/components/FAB/AnimatedFABIcon.d.ts +2 -1
- package/types/components/HeroDesignProvider/index.d.ts +2 -1
- package/types/components/Icon/AnimatedIcon.d.ts +2 -1
- package/types/components/Icon/index.d.ts +2 -1
- package/types/components/Icon/utils.d.ts +1 -1
- package/types/components/Image/index.d.ts +1 -0
- package/types/components/Modal/index.d.ts +2 -2
- package/types/components/PageControl/StyledPageControl.d.ts +0 -2
- package/types/components/PageControl/index.d.ts +2 -1
- package/types/components/PinInput/PinCell.d.ts +2 -1
- package/types/components/Portal/PortalHost.d.ts +1 -1
- package/types/components/Portal/PortalProvider.d.ts +1 -1
- package/types/components/Portal/index.d.ts +2 -2
- package/types/components/Progress/ProgressBar.d.ts +1 -0
- package/types/components/Progress/StyledProgressBar.d.ts +0 -2
- package/types/components/Progress/index.d.ts +1 -0
- package/types/components/Rate/StyledRate.d.ts +0 -2
- package/types/components/Rate/index.d.ts +2 -1
- package/types/components/RefreshControl/index.d.ts +2 -1
- package/types/components/RichTextEditor/EditorToolbar.d.ts +2 -1
- package/types/components/RichTextEditor/MentionList.d.ts +2 -1
- package/types/components/RichTextEditor/index.d.ts +2 -2
- package/types/components/Select/BaseOptionList.d.ts +1 -1
- package/types/components/Select/Footer.d.ts +2 -1
- package/types/components/Select/MultiSelect/Option.d.ts +2 -1
- package/types/components/Select/MultiSelect/OptionList.d.ts +2 -1
- package/types/components/Select/MultiSelect/index.d.ts +1 -1
- package/types/components/Select/SingleSelect/Option.d.ts +2 -1
- package/types/components/Select/SingleSelect/OptionList.d.ts +1 -1
- package/types/components/Select/SingleSelect/StyledSingleSelect.d.ts +2 -1
- package/types/components/Select/SingleSelect/index.d.ts +1 -1
- package/types/components/Select/helpers.d.ts +1 -2
- package/types/components/Select/index.d.ts +2 -1
- package/types/components/Skeleton/index.d.ts +2 -1
- package/types/components/Slider/index.d.ts +2 -1
- package/types/components/Spinner/AnimatedSpinner.d.ts +2 -1
- package/types/components/Success/StyledSuccess.d.ts +0 -2
- package/types/components/Swipeable/SwipeableAction.d.ts +2 -2
- package/types/components/Swipeable/index.d.ts +3 -3
- package/types/components/Switch/SelectorSwitch/Option.d.ts +2 -1
- package/types/components/Switch/SelectorSwitch/StyledSelectorSwitch.d.ts +0 -6
- package/types/components/Switch/StyledSwitch.d.ts +0 -2
- package/types/components/Tabs/ActiveTabIndicator.d.ts +2 -1
- package/types/components/Tabs/SceneView.d.ts +1 -1
- package/types/components/Tabs/ScrollableTabs.d.ts +2 -1
- package/types/components/Tabs/ScrollableTabsHeader.d.ts +2 -1
- package/types/components/Tabs/StyledScrollableTabs.d.ts +0 -4
- package/types/components/Tabs/StyledTabs.d.ts +0 -4
- package/types/components/Tabs/TabWithBadge.d.ts +2 -2
- package/types/components/Tabs/index.d.ts +2 -1
- package/types/components/TextInput/StyledTextInput.d.ts +1 -1
- package/types/components/TextInput/index.d.ts +1 -1
- package/types/components/TimePicker/TimePickerAndroid.d.ts +2 -1
- package/types/components/TimePicker/TimePickerIOS.d.ts +2 -1
- package/types/components/TimePicker/index.d.ts +2 -1
- package/types/components/Toast/StyledToast.d.ts +0 -2
- package/types/components/Toast/Toast.d.ts +1 -0
- package/types/components/Toast/ToastProvider.d.ts +2 -1
- package/types/components/Toast/index.d.ts +1 -1
- package/types/components/Toolbar/ToolbarGroup.d.ts +2 -1
- package/types/components/Toolbar/ToolbarItem.d.ts +2 -1
- package/types/components/Toolbar/index.d.ts +3 -2
- package/types/components/Typography/Body/index.d.ts +2 -1
- package/types/components/Typography/Caption/index.d.ts +2 -1
- package/types/components/Typography/Label/index.d.ts +2 -1
- package/types/components/Typography/Text/index.d.ts +2 -1
- package/types/components/Typography/Title/index.d.ts +2 -1
- package/types/testHelpers/renderWithTheme.d.ts +1 -0
- package/types/theme/ThemeSwitcher.d.ts +2 -2
|
@@ -6,6 +6,23 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
6
6
|
pointerEvents="auto"
|
|
7
7
|
>
|
|
8
8
|
<View
|
|
9
|
+
accessibilityState={
|
|
10
|
+
{
|
|
11
|
+
"busy": undefined,
|
|
12
|
+
"checked": undefined,
|
|
13
|
+
"disabled": undefined,
|
|
14
|
+
"expanded": undefined,
|
|
15
|
+
"selected": undefined,
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
accessibilityValue={
|
|
19
|
+
{
|
|
20
|
+
"max": undefined,
|
|
21
|
+
"min": undefined,
|
|
22
|
+
"now": undefined,
|
|
23
|
+
"text": undefined,
|
|
24
|
+
}
|
|
25
|
+
}
|
|
9
26
|
accessible={true}
|
|
10
27
|
collapsable={false}
|
|
11
28
|
focusable={true}
|
|
@@ -263,6 +280,23 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
263
280
|
}
|
|
264
281
|
>
|
|
265
282
|
<View
|
|
283
|
+
accessibilityState={
|
|
284
|
+
{
|
|
285
|
+
"busy": undefined,
|
|
286
|
+
"checked": undefined,
|
|
287
|
+
"disabled": undefined,
|
|
288
|
+
"expanded": undefined,
|
|
289
|
+
"selected": undefined,
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
accessibilityValue={
|
|
293
|
+
{
|
|
294
|
+
"max": undefined,
|
|
295
|
+
"min": undefined,
|
|
296
|
+
"now": undefined,
|
|
297
|
+
"text": undefined,
|
|
298
|
+
}
|
|
299
|
+
}
|
|
266
300
|
accessible={true}
|
|
267
301
|
collapsable={false}
|
|
268
302
|
focusable={true}
|
|
@@ -289,7 +323,6 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
289
323
|
/>
|
|
290
324
|
<RCTSafeAreaView
|
|
291
325
|
collapsable={false}
|
|
292
|
-
emulateUnlessSupported={true}
|
|
293
326
|
style={
|
|
294
327
|
{
|
|
295
328
|
"backgroundColor": "#ffffff",
|
|
@@ -376,6 +409,23 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
376
409
|
}
|
|
377
410
|
>
|
|
378
411
|
<View
|
|
412
|
+
accessibilityState={
|
|
413
|
+
{
|
|
414
|
+
"busy": undefined,
|
|
415
|
+
"checked": undefined,
|
|
416
|
+
"disabled": undefined,
|
|
417
|
+
"expanded": undefined,
|
|
418
|
+
"selected": undefined,
|
|
419
|
+
}
|
|
420
|
+
}
|
|
421
|
+
accessibilityValue={
|
|
422
|
+
{
|
|
423
|
+
"max": undefined,
|
|
424
|
+
"min": undefined,
|
|
425
|
+
"now": undefined,
|
|
426
|
+
"text": undefined,
|
|
427
|
+
}
|
|
428
|
+
}
|
|
379
429
|
accessible={true}
|
|
380
430
|
collapsable={false}
|
|
381
431
|
focusable={true}
|
|
@@ -478,6 +528,7 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
478
528
|
>
|
|
479
529
|
<View>
|
|
480
530
|
<View
|
|
531
|
+
onFocusCapture={[Function]}
|
|
481
532
|
onLayout={[Function]}
|
|
482
533
|
style={null}
|
|
483
534
|
>
|
|
@@ -547,6 +598,7 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
547
598
|
</View>
|
|
548
599
|
</View>
|
|
549
600
|
<View
|
|
601
|
+
onFocusCapture={[Function]}
|
|
550
602
|
onLayout={[Function]}
|
|
551
603
|
style={null}
|
|
552
604
|
>
|
|
@@ -609,6 +661,14 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
609
661
|
"disabled": false,
|
|
610
662
|
}
|
|
611
663
|
}
|
|
664
|
+
accessibilityValue={
|
|
665
|
+
{
|
|
666
|
+
"max": undefined,
|
|
667
|
+
"min": undefined,
|
|
668
|
+
"now": undefined,
|
|
669
|
+
"text": undefined,
|
|
670
|
+
}
|
|
671
|
+
}
|
|
612
672
|
accessible={true}
|
|
613
673
|
focusable={true}
|
|
614
674
|
onClick={[Function]}
|
|
@@ -746,6 +806,7 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
746
806
|
</View>
|
|
747
807
|
</View>
|
|
748
808
|
<View
|
|
809
|
+
onFocusCapture={[Function]}
|
|
749
810
|
onLayout={[Function]}
|
|
750
811
|
style={null}
|
|
751
812
|
>
|
|
@@ -756,6 +817,14 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
756
817
|
"disabled": false,
|
|
757
818
|
}
|
|
758
819
|
}
|
|
820
|
+
accessibilityValue={
|
|
821
|
+
{
|
|
822
|
+
"max": undefined,
|
|
823
|
+
"min": undefined,
|
|
824
|
+
"now": undefined,
|
|
825
|
+
"text": undefined,
|
|
826
|
+
}
|
|
827
|
+
}
|
|
759
828
|
accessible={true}
|
|
760
829
|
focusable={true}
|
|
761
830
|
onClick={[Function]}
|
|
@@ -886,10 +955,12 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
886
955
|
</View>
|
|
887
956
|
</View>
|
|
888
957
|
<View
|
|
958
|
+
onFocusCapture={[Function]}
|
|
889
959
|
onLayout={[Function]}
|
|
890
960
|
style={null}
|
|
891
961
|
/>
|
|
892
962
|
<View
|
|
963
|
+
onFocusCapture={[Function]}
|
|
893
964
|
onLayout={[Function]}
|
|
894
965
|
style={null}
|
|
895
966
|
>
|
|
@@ -959,6 +1030,7 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
959
1030
|
</View>
|
|
960
1031
|
</View>
|
|
961
1032
|
<View
|
|
1033
|
+
onFocusCapture={[Function]}
|
|
962
1034
|
onLayout={[Function]}
|
|
963
1035
|
style={null}
|
|
964
1036
|
>
|
|
@@ -1021,6 +1093,14 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
1021
1093
|
"disabled": false,
|
|
1022
1094
|
}
|
|
1023
1095
|
}
|
|
1096
|
+
accessibilityValue={
|
|
1097
|
+
{
|
|
1098
|
+
"max": undefined,
|
|
1099
|
+
"min": undefined,
|
|
1100
|
+
"now": undefined,
|
|
1101
|
+
"text": undefined,
|
|
1102
|
+
}
|
|
1103
|
+
}
|
|
1024
1104
|
accessible={true}
|
|
1025
1105
|
focusable={true}
|
|
1026
1106
|
onClick={[Function]}
|
|
@@ -1158,6 +1238,7 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
1158
1238
|
</View>
|
|
1159
1239
|
</View>
|
|
1160
1240
|
<View
|
|
1241
|
+
onFocusCapture={[Function]}
|
|
1161
1242
|
onLayout={[Function]}
|
|
1162
1243
|
style={null}
|
|
1163
1244
|
>
|
|
@@ -1168,6 +1249,14 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
1168
1249
|
"disabled": false,
|
|
1169
1250
|
}
|
|
1170
1251
|
}
|
|
1252
|
+
accessibilityValue={
|
|
1253
|
+
{
|
|
1254
|
+
"max": undefined,
|
|
1255
|
+
"min": undefined,
|
|
1256
|
+
"now": undefined,
|
|
1257
|
+
"text": undefined,
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1171
1260
|
accessible={true}
|
|
1172
1261
|
focusable={true}
|
|
1173
1262
|
onClick={[Function]}
|
|
@@ -1298,6 +1387,7 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
1298
1387
|
</View>
|
|
1299
1388
|
</View>
|
|
1300
1389
|
<View
|
|
1390
|
+
onFocusCapture={[Function]}
|
|
1301
1391
|
onLayout={[Function]}
|
|
1302
1392
|
style={null}
|
|
1303
1393
|
/>
|
|
@@ -1324,6 +1414,14 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
1324
1414
|
"disabled": false,
|
|
1325
1415
|
}
|
|
1326
1416
|
}
|
|
1417
|
+
accessibilityValue={
|
|
1418
|
+
{
|
|
1419
|
+
"max": undefined,
|
|
1420
|
+
"min": undefined,
|
|
1421
|
+
"now": undefined,
|
|
1422
|
+
"text": undefined,
|
|
1423
|
+
}
|
|
1424
|
+
}
|
|
1327
1425
|
accessible={true}
|
|
1328
1426
|
focusable={true}
|
|
1329
1427
|
onClick={[Function]}
|
|
@@ -1397,6 +1495,23 @@ exports[`rendering renders correctly when bottom sheet is NOT visible 1`] = `
|
|
|
1397
1495
|
pointerEvents="auto"
|
|
1398
1496
|
>
|
|
1399
1497
|
<View
|
|
1498
|
+
accessibilityState={
|
|
1499
|
+
{
|
|
1500
|
+
"busy": undefined,
|
|
1501
|
+
"checked": undefined,
|
|
1502
|
+
"disabled": undefined,
|
|
1503
|
+
"expanded": undefined,
|
|
1504
|
+
"selected": undefined,
|
|
1505
|
+
}
|
|
1506
|
+
}
|
|
1507
|
+
accessibilityValue={
|
|
1508
|
+
{
|
|
1509
|
+
"max": undefined,
|
|
1510
|
+
"min": undefined,
|
|
1511
|
+
"now": undefined,
|
|
1512
|
+
"text": undefined,
|
|
1513
|
+
}
|
|
1514
|
+
}
|
|
1400
1515
|
accessible={true}
|
|
1401
1516
|
collapsable={false}
|
|
1402
1517
|
focusable={true}
|
|
@@ -1628,6 +1743,23 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
1628
1743
|
pointerEvents="auto"
|
|
1629
1744
|
>
|
|
1630
1745
|
<View
|
|
1746
|
+
accessibilityState={
|
|
1747
|
+
{
|
|
1748
|
+
"busy": undefined,
|
|
1749
|
+
"checked": undefined,
|
|
1750
|
+
"disabled": undefined,
|
|
1751
|
+
"expanded": undefined,
|
|
1752
|
+
"selected": undefined,
|
|
1753
|
+
}
|
|
1754
|
+
}
|
|
1755
|
+
accessibilityValue={
|
|
1756
|
+
{
|
|
1757
|
+
"max": undefined,
|
|
1758
|
+
"min": undefined,
|
|
1759
|
+
"now": undefined,
|
|
1760
|
+
"text": undefined,
|
|
1761
|
+
}
|
|
1762
|
+
}
|
|
1631
1763
|
accessible={true}
|
|
1632
1764
|
collapsable={false}
|
|
1633
1765
|
focusable={true}
|
|
@@ -1884,6 +2016,23 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
1884
2016
|
}
|
|
1885
2017
|
>
|
|
1886
2018
|
<View
|
|
2019
|
+
accessibilityState={
|
|
2020
|
+
{
|
|
2021
|
+
"busy": undefined,
|
|
2022
|
+
"checked": undefined,
|
|
2023
|
+
"disabled": undefined,
|
|
2024
|
+
"expanded": undefined,
|
|
2025
|
+
"selected": undefined,
|
|
2026
|
+
}
|
|
2027
|
+
}
|
|
2028
|
+
accessibilityValue={
|
|
2029
|
+
{
|
|
2030
|
+
"max": undefined,
|
|
2031
|
+
"min": undefined,
|
|
2032
|
+
"now": undefined,
|
|
2033
|
+
"text": undefined,
|
|
2034
|
+
}
|
|
2035
|
+
}
|
|
1887
2036
|
accessible={true}
|
|
1888
2037
|
collapsable={false}
|
|
1889
2038
|
focusable={true}
|
|
@@ -1910,7 +2059,6 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
1910
2059
|
/>
|
|
1911
2060
|
<RCTSafeAreaView
|
|
1912
2061
|
collapsable={false}
|
|
1913
|
-
emulateUnlessSupported={true}
|
|
1914
2062
|
style={
|
|
1915
2063
|
{
|
|
1916
2064
|
"backgroundColor": "#ffffff",
|
|
@@ -1997,6 +2145,23 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
1997
2145
|
}
|
|
1998
2146
|
>
|
|
1999
2147
|
<View
|
|
2148
|
+
accessibilityState={
|
|
2149
|
+
{
|
|
2150
|
+
"busy": undefined,
|
|
2151
|
+
"checked": undefined,
|
|
2152
|
+
"disabled": undefined,
|
|
2153
|
+
"expanded": undefined,
|
|
2154
|
+
"selected": undefined,
|
|
2155
|
+
}
|
|
2156
|
+
}
|
|
2157
|
+
accessibilityValue={
|
|
2158
|
+
{
|
|
2159
|
+
"max": undefined,
|
|
2160
|
+
"min": undefined,
|
|
2161
|
+
"now": undefined,
|
|
2162
|
+
"text": undefined,
|
|
2163
|
+
}
|
|
2164
|
+
}
|
|
2000
2165
|
accessible={true}
|
|
2001
2166
|
collapsable={false}
|
|
2002
2167
|
focusable={true}
|
|
@@ -2102,10 +2267,12 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2102
2267
|
>
|
|
2103
2268
|
<View>
|
|
2104
2269
|
<View
|
|
2270
|
+
onFocusCapture={[Function]}
|
|
2105
2271
|
onLayout={[Function]}
|
|
2106
2272
|
style={null}
|
|
2107
2273
|
/>
|
|
2108
2274
|
<View
|
|
2275
|
+
onFocusCapture={[Function]}
|
|
2109
2276
|
onLayout={[Function]}
|
|
2110
2277
|
style={null}
|
|
2111
2278
|
>
|
|
@@ -2169,6 +2336,14 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2169
2336
|
"disabled": false,
|
|
2170
2337
|
}
|
|
2171
2338
|
}
|
|
2339
|
+
accessibilityValue={
|
|
2340
|
+
{
|
|
2341
|
+
"max": undefined,
|
|
2342
|
+
"min": undefined,
|
|
2343
|
+
"now": undefined,
|
|
2344
|
+
"text": undefined,
|
|
2345
|
+
}
|
|
2346
|
+
}
|
|
2172
2347
|
accessible={true}
|
|
2173
2348
|
focusable={true}
|
|
2174
2349
|
onClick={[Function]}
|
|
@@ -2314,6 +2489,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2314
2489
|
</View>
|
|
2315
2490
|
</View>
|
|
2316
2491
|
<View
|
|
2492
|
+
onFocusCapture={[Function]}
|
|
2317
2493
|
onLayout={[Function]}
|
|
2318
2494
|
style={null}
|
|
2319
2495
|
>
|
|
@@ -2324,6 +2500,14 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2324
2500
|
"disabled": false,
|
|
2325
2501
|
}
|
|
2326
2502
|
}
|
|
2503
|
+
accessibilityValue={
|
|
2504
|
+
{
|
|
2505
|
+
"max": undefined,
|
|
2506
|
+
"min": undefined,
|
|
2507
|
+
"now": undefined,
|
|
2508
|
+
"text": undefined,
|
|
2509
|
+
}
|
|
2510
|
+
}
|
|
2327
2511
|
accessible={true}
|
|
2328
2512
|
focusable={true}
|
|
2329
2513
|
onClick={[Function]}
|
|
@@ -2469,6 +2653,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2469
2653
|
</View>
|
|
2470
2654
|
</View>
|
|
2471
2655
|
<View
|
|
2656
|
+
onFocusCapture={[Function]}
|
|
2472
2657
|
onLayout={[Function]}
|
|
2473
2658
|
style={null}
|
|
2474
2659
|
>
|
|
@@ -2479,6 +2664,14 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2479
2664
|
"disabled": false,
|
|
2480
2665
|
}
|
|
2481
2666
|
}
|
|
2667
|
+
accessibilityValue={
|
|
2668
|
+
{
|
|
2669
|
+
"max": undefined,
|
|
2670
|
+
"min": undefined,
|
|
2671
|
+
"now": undefined,
|
|
2672
|
+
"text": undefined,
|
|
2673
|
+
}
|
|
2674
|
+
}
|
|
2482
2675
|
accessible={true}
|
|
2483
2676
|
focusable={true}
|
|
2484
2677
|
onClick={[Function]}
|
|
@@ -2596,6 +2789,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2596
2789
|
</View>
|
|
2597
2790
|
</View>
|
|
2598
2791
|
<View
|
|
2792
|
+
onFocusCapture={[Function]}
|
|
2599
2793
|
onLayout={[Function]}
|
|
2600
2794
|
style={null}
|
|
2601
2795
|
>
|
|
@@ -2606,6 +2800,14 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2606
2800
|
"disabled": false,
|
|
2607
2801
|
}
|
|
2608
2802
|
}
|
|
2803
|
+
accessibilityValue={
|
|
2804
|
+
{
|
|
2805
|
+
"max": undefined,
|
|
2806
|
+
"min": undefined,
|
|
2807
|
+
"now": undefined,
|
|
2808
|
+
"text": undefined,
|
|
2809
|
+
}
|
|
2810
|
+
}
|
|
2609
2811
|
accessible={true}
|
|
2610
2812
|
focusable={true}
|
|
2611
2813
|
onClick={[Function]}
|
|
@@ -2723,6 +2925,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2723
2925
|
</View>
|
|
2724
2926
|
</View>
|
|
2725
2927
|
<View
|
|
2928
|
+
onFocusCapture={[Function]}
|
|
2726
2929
|
onLayout={[Function]}
|
|
2727
2930
|
style={null}
|
|
2728
2931
|
>
|
|
@@ -2733,6 +2936,14 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2733
2936
|
"disabled": false,
|
|
2734
2937
|
}
|
|
2735
2938
|
}
|
|
2939
|
+
accessibilityValue={
|
|
2940
|
+
{
|
|
2941
|
+
"max": undefined,
|
|
2942
|
+
"min": undefined,
|
|
2943
|
+
"now": undefined,
|
|
2944
|
+
"text": undefined,
|
|
2945
|
+
}
|
|
2946
|
+
}
|
|
2736
2947
|
accessible={true}
|
|
2737
2948
|
focusable={true}
|
|
2738
2949
|
onClick={[Function]}
|
|
@@ -2850,6 +3061,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2850
3061
|
</View>
|
|
2851
3062
|
</View>
|
|
2852
3063
|
<View
|
|
3064
|
+
onFocusCapture={[Function]}
|
|
2853
3065
|
onLayout={[Function]}
|
|
2854
3066
|
style={null}
|
|
2855
3067
|
>
|
|
@@ -2860,6 +3072,14 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2860
3072
|
"disabled": false,
|
|
2861
3073
|
}
|
|
2862
3074
|
}
|
|
3075
|
+
accessibilityValue={
|
|
3076
|
+
{
|
|
3077
|
+
"max": undefined,
|
|
3078
|
+
"min": undefined,
|
|
3079
|
+
"now": undefined,
|
|
3080
|
+
"text": undefined,
|
|
3081
|
+
}
|
|
3082
|
+
}
|
|
2863
3083
|
accessible={true}
|
|
2864
3084
|
focusable={true}
|
|
2865
3085
|
onClick={[Function]}
|
|
@@ -2978,6 +3198,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2978
3198
|
</View>
|
|
2979
3199
|
</View>
|
|
2980
3200
|
<View
|
|
3201
|
+
onFocusCapture={[Function]}
|
|
2981
3202
|
onLayout={[Function]}
|
|
2982
3203
|
style={null}
|
|
2983
3204
|
>
|
|
@@ -2988,6 +3209,14 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2988
3209
|
"disabled": true,
|
|
2989
3210
|
}
|
|
2990
3211
|
}
|
|
3212
|
+
accessibilityValue={
|
|
3213
|
+
{
|
|
3214
|
+
"max": undefined,
|
|
3215
|
+
"min": undefined,
|
|
3216
|
+
"now": undefined,
|
|
3217
|
+
"text": undefined,
|
|
3218
|
+
}
|
|
3219
|
+
}
|
|
2991
3220
|
accessible={true}
|
|
2992
3221
|
focusable={true}
|
|
2993
3222
|
onClick={[Function]}
|
|
@@ -3100,6 +3329,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
3100
3329
|
</View>
|
|
3101
3330
|
</View>
|
|
3102
3331
|
<View
|
|
3332
|
+
onFocusCapture={[Function]}
|
|
3103
3333
|
onLayout={[Function]}
|
|
3104
3334
|
style={null}
|
|
3105
3335
|
/>
|
|
@@ -3126,6 +3356,14 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
3126
3356
|
"disabled": false,
|
|
3127
3357
|
}
|
|
3128
3358
|
}
|
|
3359
|
+
accessibilityValue={
|
|
3360
|
+
{
|
|
3361
|
+
"max": undefined,
|
|
3362
|
+
"min": undefined,
|
|
3363
|
+
"now": undefined,
|
|
3364
|
+
"text": undefined,
|
|
3365
|
+
}
|
|
3366
|
+
}
|
|
3129
3367
|
accessible={true}
|
|
3130
3368
|
focusable={true}
|
|
3131
3369
|
onClick={[Function]}
|
|
@@ -3199,6 +3437,23 @@ exports[`rendering renders correctly when input is loading 1`] = `
|
|
|
3199
3437
|
pointerEvents="none"
|
|
3200
3438
|
>
|
|
3201
3439
|
<View
|
|
3440
|
+
accessibilityState={
|
|
3441
|
+
{
|
|
3442
|
+
"busy": undefined,
|
|
3443
|
+
"checked": undefined,
|
|
3444
|
+
"disabled": undefined,
|
|
3445
|
+
"expanded": undefined,
|
|
3446
|
+
"selected": undefined,
|
|
3447
|
+
}
|
|
3448
|
+
}
|
|
3449
|
+
accessibilityValue={
|
|
3450
|
+
{
|
|
3451
|
+
"max": undefined,
|
|
3452
|
+
"min": undefined,
|
|
3453
|
+
"now": undefined,
|
|
3454
|
+
"text": undefined,
|
|
3455
|
+
}
|
|
3456
|
+
}
|
|
3202
3457
|
accessible={true}
|
|
3203
3458
|
collapsable={false}
|
|
3204
3459
|
focusable={true}
|
|
@@ -3443,6 +3698,23 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
3443
3698
|
pointerEvents="auto"
|
|
3444
3699
|
>
|
|
3445
3700
|
<View
|
|
3701
|
+
accessibilityState={
|
|
3702
|
+
{
|
|
3703
|
+
"busy": undefined,
|
|
3704
|
+
"checked": undefined,
|
|
3705
|
+
"disabled": undefined,
|
|
3706
|
+
"expanded": undefined,
|
|
3707
|
+
"selected": undefined,
|
|
3708
|
+
}
|
|
3709
|
+
}
|
|
3710
|
+
accessibilityValue={
|
|
3711
|
+
{
|
|
3712
|
+
"max": undefined,
|
|
3713
|
+
"min": undefined,
|
|
3714
|
+
"now": undefined,
|
|
3715
|
+
"text": undefined,
|
|
3716
|
+
}
|
|
3717
|
+
}
|
|
3446
3718
|
accessible={true}
|
|
3447
3719
|
collapsable={false}
|
|
3448
3720
|
focusable={true}
|
|
@@ -3699,6 +3971,23 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
3699
3971
|
}
|
|
3700
3972
|
>
|
|
3701
3973
|
<View
|
|
3974
|
+
accessibilityState={
|
|
3975
|
+
{
|
|
3976
|
+
"busy": undefined,
|
|
3977
|
+
"checked": undefined,
|
|
3978
|
+
"disabled": undefined,
|
|
3979
|
+
"expanded": undefined,
|
|
3980
|
+
"selected": undefined,
|
|
3981
|
+
}
|
|
3982
|
+
}
|
|
3983
|
+
accessibilityValue={
|
|
3984
|
+
{
|
|
3985
|
+
"max": undefined,
|
|
3986
|
+
"min": undefined,
|
|
3987
|
+
"now": undefined,
|
|
3988
|
+
"text": undefined,
|
|
3989
|
+
}
|
|
3990
|
+
}
|
|
3702
3991
|
accessible={true}
|
|
3703
3992
|
collapsable={false}
|
|
3704
3993
|
focusable={true}
|
|
@@ -3725,7 +4014,6 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
3725
4014
|
/>
|
|
3726
4015
|
<RCTSafeAreaView
|
|
3727
4016
|
collapsable={false}
|
|
3728
|
-
emulateUnlessSupported={true}
|
|
3729
4017
|
style={
|
|
3730
4018
|
{
|
|
3731
4019
|
"backgroundColor": "#ffffff",
|
|
@@ -3812,6 +4100,23 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
3812
4100
|
}
|
|
3813
4101
|
>
|
|
3814
4102
|
<View
|
|
4103
|
+
accessibilityState={
|
|
4104
|
+
{
|
|
4105
|
+
"busy": undefined,
|
|
4106
|
+
"checked": undefined,
|
|
4107
|
+
"disabled": undefined,
|
|
4108
|
+
"expanded": undefined,
|
|
4109
|
+
"selected": undefined,
|
|
4110
|
+
}
|
|
4111
|
+
}
|
|
4112
|
+
accessibilityValue={
|
|
4113
|
+
{
|
|
4114
|
+
"max": undefined,
|
|
4115
|
+
"min": undefined,
|
|
4116
|
+
"now": undefined,
|
|
4117
|
+
"text": undefined,
|
|
4118
|
+
}
|
|
4119
|
+
}
|
|
3815
4120
|
accessible={true}
|
|
3816
4121
|
collapsable={false}
|
|
3817
4122
|
focusable={true}
|
|
@@ -3906,6 +4211,7 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
3906
4211
|
>
|
|
3907
4212
|
<View>
|
|
3908
4213
|
<View
|
|
4214
|
+
onFocusCapture={[Function]}
|
|
3909
4215
|
onLayout={[Function]}
|
|
3910
4216
|
style={null}
|
|
3911
4217
|
>
|
|
@@ -3975,6 +4281,7 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
3975
4281
|
</View>
|
|
3976
4282
|
</View>
|
|
3977
4283
|
<View
|
|
4284
|
+
onFocusCapture={[Function]}
|
|
3978
4285
|
onLayout={[Function]}
|
|
3979
4286
|
style={null}
|
|
3980
4287
|
>
|
|
@@ -4028,6 +4335,14 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4028
4335
|
"disabled": false,
|
|
4029
4336
|
}
|
|
4030
4337
|
}
|
|
4338
|
+
accessibilityValue={
|
|
4339
|
+
{
|
|
4340
|
+
"max": undefined,
|
|
4341
|
+
"min": undefined,
|
|
4342
|
+
"now": undefined,
|
|
4343
|
+
"text": undefined,
|
|
4344
|
+
}
|
|
4345
|
+
}
|
|
4031
4346
|
accessible={true}
|
|
4032
4347
|
focusable={true}
|
|
4033
4348
|
onClick={[Function]}
|
|
@@ -4129,10 +4444,12 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4129
4444
|
</View>
|
|
4130
4445
|
</View>
|
|
4131
4446
|
<View
|
|
4447
|
+
onFocusCapture={[Function]}
|
|
4132
4448
|
onLayout={[Function]}
|
|
4133
4449
|
style={null}
|
|
4134
4450
|
/>
|
|
4135
4451
|
<View
|
|
4452
|
+
onFocusCapture={[Function]}
|
|
4136
4453
|
onLayout={[Function]}
|
|
4137
4454
|
style={null}
|
|
4138
4455
|
>
|
|
@@ -4202,6 +4519,7 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4202
4519
|
</View>
|
|
4203
4520
|
</View>
|
|
4204
4521
|
<View
|
|
4522
|
+
onFocusCapture={[Function]}
|
|
4205
4523
|
onLayout={[Function]}
|
|
4206
4524
|
style={null}
|
|
4207
4525
|
>
|
|
@@ -4255,6 +4573,14 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4255
4573
|
"disabled": false,
|
|
4256
4574
|
}
|
|
4257
4575
|
}
|
|
4576
|
+
accessibilityValue={
|
|
4577
|
+
{
|
|
4578
|
+
"max": undefined,
|
|
4579
|
+
"min": undefined,
|
|
4580
|
+
"now": undefined,
|
|
4581
|
+
"text": undefined,
|
|
4582
|
+
}
|
|
4583
|
+
}
|
|
4258
4584
|
accessible={true}
|
|
4259
4585
|
focusable={true}
|
|
4260
4586
|
onClick={[Function]}
|
|
@@ -4390,6 +4716,7 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4390
4716
|
</View>
|
|
4391
4717
|
</View>
|
|
4392
4718
|
<View
|
|
4719
|
+
onFocusCapture={[Function]}
|
|
4393
4720
|
onLayout={[Function]}
|
|
4394
4721
|
style={null}
|
|
4395
4722
|
>
|
|
@@ -4400,6 +4727,14 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4400
4727
|
"disabled": false,
|
|
4401
4728
|
}
|
|
4402
4729
|
}
|
|
4730
|
+
accessibilityValue={
|
|
4731
|
+
{
|
|
4732
|
+
"max": undefined,
|
|
4733
|
+
"min": undefined,
|
|
4734
|
+
"now": undefined,
|
|
4735
|
+
"text": undefined,
|
|
4736
|
+
}
|
|
4737
|
+
}
|
|
4403
4738
|
accessible={true}
|
|
4404
4739
|
focusable={true}
|
|
4405
4740
|
onClick={[Function]}
|
|
@@ -4529,6 +4864,7 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4529
4864
|
</View>
|
|
4530
4865
|
</View>
|
|
4531
4866
|
<View
|
|
4867
|
+
onFocusCapture={[Function]}
|
|
4532
4868
|
onLayout={[Function]}
|
|
4533
4869
|
style={null}
|
|
4534
4870
|
/>
|
|
@@ -4555,6 +4891,14 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4555
4891
|
"disabled": false,
|
|
4556
4892
|
}
|
|
4557
4893
|
}
|
|
4894
|
+
accessibilityValue={
|
|
4895
|
+
{
|
|
4896
|
+
"max": undefined,
|
|
4897
|
+
"min": undefined,
|
|
4898
|
+
"now": undefined,
|
|
4899
|
+
"text": undefined,
|
|
4900
|
+
}
|
|
4901
|
+
}
|
|
4558
4902
|
accessible={true}
|
|
4559
4903
|
focusable={true}
|
|
4560
4904
|
onClick={[Function]}
|
|
@@ -4628,6 +4972,23 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
4628
4972
|
pointerEvents="auto"
|
|
4629
4973
|
>
|
|
4630
4974
|
<View
|
|
4975
|
+
accessibilityState={
|
|
4976
|
+
{
|
|
4977
|
+
"busy": undefined,
|
|
4978
|
+
"checked": undefined,
|
|
4979
|
+
"disabled": undefined,
|
|
4980
|
+
"expanded": undefined,
|
|
4981
|
+
"selected": undefined,
|
|
4982
|
+
}
|
|
4983
|
+
}
|
|
4984
|
+
accessibilityValue={
|
|
4985
|
+
{
|
|
4986
|
+
"max": undefined,
|
|
4987
|
+
"min": undefined,
|
|
4988
|
+
"now": undefined,
|
|
4989
|
+
"text": undefined,
|
|
4990
|
+
}
|
|
4991
|
+
}
|
|
4631
4992
|
accessible={true}
|
|
4632
4993
|
collapsable={false}
|
|
4633
4994
|
focusable={true}
|
|
@@ -4884,6 +5245,23 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
4884
5245
|
}
|
|
4885
5246
|
>
|
|
4886
5247
|
<View
|
|
5248
|
+
accessibilityState={
|
|
5249
|
+
{
|
|
5250
|
+
"busy": undefined,
|
|
5251
|
+
"checked": undefined,
|
|
5252
|
+
"disabled": undefined,
|
|
5253
|
+
"expanded": undefined,
|
|
5254
|
+
"selected": undefined,
|
|
5255
|
+
}
|
|
5256
|
+
}
|
|
5257
|
+
accessibilityValue={
|
|
5258
|
+
{
|
|
5259
|
+
"max": undefined,
|
|
5260
|
+
"min": undefined,
|
|
5261
|
+
"now": undefined,
|
|
5262
|
+
"text": undefined,
|
|
5263
|
+
}
|
|
5264
|
+
}
|
|
4887
5265
|
accessible={true}
|
|
4888
5266
|
collapsable={false}
|
|
4889
5267
|
focusable={true}
|
|
@@ -4910,7 +5288,6 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
4910
5288
|
/>
|
|
4911
5289
|
<RCTSafeAreaView
|
|
4912
5290
|
collapsable={false}
|
|
4913
|
-
emulateUnlessSupported={true}
|
|
4914
5291
|
style={
|
|
4915
5292
|
{
|
|
4916
5293
|
"backgroundColor": "#ffffff",
|
|
@@ -4997,6 +5374,23 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
4997
5374
|
}
|
|
4998
5375
|
>
|
|
4999
5376
|
<View
|
|
5377
|
+
accessibilityState={
|
|
5378
|
+
{
|
|
5379
|
+
"busy": undefined,
|
|
5380
|
+
"checked": undefined,
|
|
5381
|
+
"disabled": undefined,
|
|
5382
|
+
"expanded": undefined,
|
|
5383
|
+
"selected": undefined,
|
|
5384
|
+
}
|
|
5385
|
+
}
|
|
5386
|
+
accessibilityValue={
|
|
5387
|
+
{
|
|
5388
|
+
"max": undefined,
|
|
5389
|
+
"min": undefined,
|
|
5390
|
+
"now": undefined,
|
|
5391
|
+
"text": undefined,
|
|
5392
|
+
}
|
|
5393
|
+
}
|
|
5000
5394
|
accessible={true}
|
|
5001
5395
|
collapsable={false}
|
|
5002
5396
|
focusable={true}
|
|
@@ -5091,6 +5485,7 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5091
5485
|
>
|
|
5092
5486
|
<View>
|
|
5093
5487
|
<View
|
|
5488
|
+
onFocusCapture={[Function]}
|
|
5094
5489
|
onLayout={[Function]}
|
|
5095
5490
|
style={null}
|
|
5096
5491
|
>
|
|
@@ -5160,6 +5555,7 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5160
5555
|
</View>
|
|
5161
5556
|
</View>
|
|
5162
5557
|
<View
|
|
5558
|
+
onFocusCapture={[Function]}
|
|
5163
5559
|
onLayout={[Function]}
|
|
5164
5560
|
style={null}
|
|
5165
5561
|
>
|
|
@@ -5213,6 +5609,14 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5213
5609
|
"disabled": false,
|
|
5214
5610
|
}
|
|
5215
5611
|
}
|
|
5612
|
+
accessibilityValue={
|
|
5613
|
+
{
|
|
5614
|
+
"max": undefined,
|
|
5615
|
+
"min": undefined,
|
|
5616
|
+
"now": undefined,
|
|
5617
|
+
"text": undefined,
|
|
5618
|
+
}
|
|
5619
|
+
}
|
|
5216
5620
|
accessible={true}
|
|
5217
5621
|
focusable={true}
|
|
5218
5622
|
onClick={[Function]}
|
|
@@ -5342,10 +5746,12 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5342
5746
|
</View>
|
|
5343
5747
|
</View>
|
|
5344
5748
|
<View
|
|
5749
|
+
onFocusCapture={[Function]}
|
|
5345
5750
|
onLayout={[Function]}
|
|
5346
5751
|
style={null}
|
|
5347
5752
|
/>
|
|
5348
5753
|
<View
|
|
5754
|
+
onFocusCapture={[Function]}
|
|
5349
5755
|
onLayout={[Function]}
|
|
5350
5756
|
style={null}
|
|
5351
5757
|
>
|
|
@@ -5415,6 +5821,7 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5415
5821
|
</View>
|
|
5416
5822
|
</View>
|
|
5417
5823
|
<View
|
|
5824
|
+
onFocusCapture={[Function]}
|
|
5418
5825
|
onLayout={[Function]}
|
|
5419
5826
|
style={null}
|
|
5420
5827
|
>
|
|
@@ -5468,6 +5875,14 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5468
5875
|
"disabled": false,
|
|
5469
5876
|
}
|
|
5470
5877
|
}
|
|
5878
|
+
accessibilityValue={
|
|
5879
|
+
{
|
|
5880
|
+
"max": undefined,
|
|
5881
|
+
"min": undefined,
|
|
5882
|
+
"now": undefined,
|
|
5883
|
+
"text": undefined,
|
|
5884
|
+
}
|
|
5885
|
+
}
|
|
5471
5886
|
accessible={true}
|
|
5472
5887
|
focusable={true}
|
|
5473
5888
|
onClick={[Function]}
|
|
@@ -5575,6 +5990,7 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5575
5990
|
</View>
|
|
5576
5991
|
</View>
|
|
5577
5992
|
<View
|
|
5993
|
+
onFocusCapture={[Function]}
|
|
5578
5994
|
onLayout={[Function]}
|
|
5579
5995
|
style={null}
|
|
5580
5996
|
>
|
|
@@ -5585,6 +6001,14 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5585
6001
|
"disabled": false,
|
|
5586
6002
|
}
|
|
5587
6003
|
}
|
|
6004
|
+
accessibilityValue={
|
|
6005
|
+
{
|
|
6006
|
+
"max": undefined,
|
|
6007
|
+
"min": undefined,
|
|
6008
|
+
"now": undefined,
|
|
6009
|
+
"text": undefined,
|
|
6010
|
+
}
|
|
6011
|
+
}
|
|
5588
6012
|
accessible={true}
|
|
5589
6013
|
focusable={true}
|
|
5590
6014
|
onClick={[Function]}
|
|
@@ -5686,6 +6110,7 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5686
6110
|
</View>
|
|
5687
6111
|
</View>
|
|
5688
6112
|
<View
|
|
6113
|
+
onFocusCapture={[Function]}
|
|
5689
6114
|
onLayout={[Function]}
|
|
5690
6115
|
style={null}
|
|
5691
6116
|
/>
|
|
@@ -5712,6 +6137,14 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5712
6137
|
"disabled": false,
|
|
5713
6138
|
}
|
|
5714
6139
|
}
|
|
6140
|
+
accessibilityValue={
|
|
6141
|
+
{
|
|
6142
|
+
"max": undefined,
|
|
6143
|
+
"min": undefined,
|
|
6144
|
+
"now": undefined,
|
|
6145
|
+
"text": undefined,
|
|
6146
|
+
}
|
|
6147
|
+
}
|
|
5715
6148
|
accessible={true}
|
|
5716
6149
|
focusable={true}
|
|
5717
6150
|
onClick={[Function]}
|