@hero-design/rn 8.42.4 → 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 +20 -0
- package/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/es/index.js +2174 -1988
- package/jest-setup.ts +2 -0
- package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
- package/lib/index.js +2173 -1986
- 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 +247 -211
- package/src/components/BottomSheet/index.tsx +1 -1
- package/src/components/Button/LoadingIndicator/StyledLoadingIndicator.tsx +6 -10
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +0 -20
- package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +0 -70
- package/src/components/Button/StyledButton.tsx +4 -0
- package/src/components/Button/UtilityButton/__tests__/__snapshots__/index.spec.tsx.snap +34 -0
- package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +144 -42
- package/src/components/Button/__tests__/__snapshots__/IconButton.spec.tsx.snap +17 -0
- package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +90 -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 +39 -0
- package/src/components/Carousel/__tests__/index.spec.tsx +8 -10
- 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/StyledChip.tsx +121 -0
- package/src/components/Chip/__tests__/__snapshots__/index.spec.tsx.snap +1147 -0
- package/src/components/Chip/__tests__/index.spec.tsx +136 -0
- package/src/components/Chip/index.tsx +82 -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 +48 -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 +470 -399
- package/src/components/Drawer/__tests__/__snapshots__/index.spec.tsx.snap +51 -0
- package/src/components/Error/__tests__/index.spec.tsx +9 -6
- 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/Icon/HeroIcon/glyphMap.json +1 -1
- package/src/components/Icon/IconList.ts +1 -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__/RichTextEditor.spec.tsx +8 -10
- 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 +804 -455
- package/src/components/Select/MultiSelect/__tests__/index.spec.tsx +7 -10
- 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 +790 -532
- package/src/components/Success/__tests__/index.spec.tsx +9 -6
- 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__/SceneView.spec.tsx +19 -23
- 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 +482 -399
- 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/src/index.ts +2 -0
- package/src/testHelpers/renderWithTheme.tsx +1 -7
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +38 -1
- package/src/theme/components/button.ts +0 -1
- package/src/theme/components/chip.ts +47 -0
- package/src/theme/getTheme.ts +3 -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/StyledLoadingIndicator.d.ts +3 -3
- 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/StyledChip.d.ts +31 -0
- package/types/components/Chip/index.d.ts +27 -0
- 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/IconList.d.ts +1 -1
- package/types/components/Icon/index.d.ts +3 -2
- 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/index.d.ts +2 -1
- package/types/testHelpers/renderWithTheme.d.ts +1 -0
- package/types/theme/ThemeSwitcher.d.ts +2 -2
- package/types/theme/components/button.d.ts +0 -1
- package/types/theme/components/chip.d.ts +40 -0
- package/types/theme/getTheme.d.ts +2 -0
- package/.turbo/turbo-publish:npm.log +0 -0
|
@@ -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}
|
|
@@ -223,37 +240,11 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
223
240
|
</View>
|
|
224
241
|
</View>
|
|
225
242
|
</View>,
|
|
226
|
-
<
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
"bottom": 0,
|
|
232
|
-
"left": 0,
|
|
233
|
-
"opacity": 0.4,
|
|
234
|
-
"position": "absolute",
|
|
235
|
-
"right": 0,
|
|
236
|
-
"top": 0,
|
|
237
|
-
}
|
|
238
|
-
}
|
|
239
|
-
/>,
|
|
240
|
-
<View
|
|
241
|
-
collapsable={false}
|
|
242
|
-
style={
|
|
243
|
-
{
|
|
244
|
-
"bottom": 0,
|
|
245
|
-
"left": 0,
|
|
246
|
-
"opacity": 1,
|
|
247
|
-
"position": "absolute",
|
|
248
|
-
"right": 0,
|
|
249
|
-
"top": 0,
|
|
250
|
-
"transform": [
|
|
251
|
-
{
|
|
252
|
-
"translateY": 0,
|
|
253
|
-
},
|
|
254
|
-
],
|
|
255
|
-
}
|
|
256
|
-
}
|
|
243
|
+
<Modal
|
|
244
|
+
hardwareAccelerated={false}
|
|
245
|
+
onRequestClose={[Function]}
|
|
246
|
+
transparent={true}
|
|
247
|
+
visible={true}
|
|
257
248
|
>
|
|
258
249
|
<View
|
|
259
250
|
pointerEvents="box-none"
|
|
@@ -289,6 +280,23 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
289
280
|
}
|
|
290
281
|
>
|
|
291
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
|
+
}
|
|
292
300
|
accessible={true}
|
|
293
301
|
collapsable={false}
|
|
294
302
|
focusable={true}
|
|
@@ -315,7 +323,6 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
315
323
|
/>
|
|
316
324
|
<RCTSafeAreaView
|
|
317
325
|
collapsable={false}
|
|
318
|
-
emulateUnlessSupported={true}
|
|
319
326
|
style={
|
|
320
327
|
{
|
|
321
328
|
"backgroundColor": "#ffffff",
|
|
@@ -402,6 +409,23 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
402
409
|
}
|
|
403
410
|
>
|
|
404
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
|
+
}
|
|
405
429
|
accessible={true}
|
|
406
430
|
collapsable={false}
|
|
407
431
|
focusable={true}
|
|
@@ -504,6 +528,7 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
504
528
|
>
|
|
505
529
|
<View>
|
|
506
530
|
<View
|
|
531
|
+
onFocusCapture={[Function]}
|
|
507
532
|
onLayout={[Function]}
|
|
508
533
|
style={null}
|
|
509
534
|
>
|
|
@@ -573,6 +598,7 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
573
598
|
</View>
|
|
574
599
|
</View>
|
|
575
600
|
<View
|
|
601
|
+
onFocusCapture={[Function]}
|
|
576
602
|
onLayout={[Function]}
|
|
577
603
|
style={null}
|
|
578
604
|
>
|
|
@@ -635,6 +661,14 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
635
661
|
"disabled": false,
|
|
636
662
|
}
|
|
637
663
|
}
|
|
664
|
+
accessibilityValue={
|
|
665
|
+
{
|
|
666
|
+
"max": undefined,
|
|
667
|
+
"min": undefined,
|
|
668
|
+
"now": undefined,
|
|
669
|
+
"text": undefined,
|
|
670
|
+
}
|
|
671
|
+
}
|
|
638
672
|
accessible={true}
|
|
639
673
|
focusable={true}
|
|
640
674
|
onClick={[Function]}
|
|
@@ -772,6 +806,7 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
772
806
|
</View>
|
|
773
807
|
</View>
|
|
774
808
|
<View
|
|
809
|
+
onFocusCapture={[Function]}
|
|
775
810
|
onLayout={[Function]}
|
|
776
811
|
style={null}
|
|
777
812
|
>
|
|
@@ -782,6 +817,14 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
782
817
|
"disabled": false,
|
|
783
818
|
}
|
|
784
819
|
}
|
|
820
|
+
accessibilityValue={
|
|
821
|
+
{
|
|
822
|
+
"max": undefined,
|
|
823
|
+
"min": undefined,
|
|
824
|
+
"now": undefined,
|
|
825
|
+
"text": undefined,
|
|
826
|
+
}
|
|
827
|
+
}
|
|
785
828
|
accessible={true}
|
|
786
829
|
focusable={true}
|
|
787
830
|
onClick={[Function]}
|
|
@@ -912,10 +955,12 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
912
955
|
</View>
|
|
913
956
|
</View>
|
|
914
957
|
<View
|
|
958
|
+
onFocusCapture={[Function]}
|
|
915
959
|
onLayout={[Function]}
|
|
916
960
|
style={null}
|
|
917
961
|
/>
|
|
918
962
|
<View
|
|
963
|
+
onFocusCapture={[Function]}
|
|
919
964
|
onLayout={[Function]}
|
|
920
965
|
style={null}
|
|
921
966
|
>
|
|
@@ -985,6 +1030,7 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
985
1030
|
</View>
|
|
986
1031
|
</View>
|
|
987
1032
|
<View
|
|
1033
|
+
onFocusCapture={[Function]}
|
|
988
1034
|
onLayout={[Function]}
|
|
989
1035
|
style={null}
|
|
990
1036
|
>
|
|
@@ -1047,6 +1093,14 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
1047
1093
|
"disabled": false,
|
|
1048
1094
|
}
|
|
1049
1095
|
}
|
|
1096
|
+
accessibilityValue={
|
|
1097
|
+
{
|
|
1098
|
+
"max": undefined,
|
|
1099
|
+
"min": undefined,
|
|
1100
|
+
"now": undefined,
|
|
1101
|
+
"text": undefined,
|
|
1102
|
+
}
|
|
1103
|
+
}
|
|
1050
1104
|
accessible={true}
|
|
1051
1105
|
focusable={true}
|
|
1052
1106
|
onClick={[Function]}
|
|
@@ -1184,6 +1238,7 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
1184
1238
|
</View>
|
|
1185
1239
|
</View>
|
|
1186
1240
|
<View
|
|
1241
|
+
onFocusCapture={[Function]}
|
|
1187
1242
|
onLayout={[Function]}
|
|
1188
1243
|
style={null}
|
|
1189
1244
|
>
|
|
@@ -1194,6 +1249,14 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
1194
1249
|
"disabled": false,
|
|
1195
1250
|
}
|
|
1196
1251
|
}
|
|
1252
|
+
accessibilityValue={
|
|
1253
|
+
{
|
|
1254
|
+
"max": undefined,
|
|
1255
|
+
"min": undefined,
|
|
1256
|
+
"now": undefined,
|
|
1257
|
+
"text": undefined,
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1197
1260
|
accessible={true}
|
|
1198
1261
|
focusable={true}
|
|
1199
1262
|
onClick={[Function]}
|
|
@@ -1324,6 +1387,7 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
1324
1387
|
</View>
|
|
1325
1388
|
</View>
|
|
1326
1389
|
<View
|
|
1390
|
+
onFocusCapture={[Function]}
|
|
1327
1391
|
onLayout={[Function]}
|
|
1328
1392
|
style={null}
|
|
1329
1393
|
/>
|
|
@@ -1350,6 +1414,14 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
1350
1414
|
"disabled": false,
|
|
1351
1415
|
}
|
|
1352
1416
|
}
|
|
1417
|
+
accessibilityValue={
|
|
1418
|
+
{
|
|
1419
|
+
"max": undefined,
|
|
1420
|
+
"min": undefined,
|
|
1421
|
+
"now": undefined,
|
|
1422
|
+
"text": undefined,
|
|
1423
|
+
}
|
|
1424
|
+
}
|
|
1353
1425
|
accessible={true}
|
|
1354
1426
|
focusable={true}
|
|
1355
1427
|
onClick={[Function]}
|
|
@@ -1367,6 +1439,7 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
1367
1439
|
"borderRadius": 4,
|
|
1368
1440
|
"borderWidth": 0,
|
|
1369
1441
|
"flexDirection": "row",
|
|
1442
|
+
"height": 60,
|
|
1370
1443
|
"justifyContent": "center",
|
|
1371
1444
|
"padding": 12,
|
|
1372
1445
|
},
|
|
@@ -1412,55 +1485,59 @@ exports[`rendering allows custom renderer 1`] = `
|
|
|
1412
1485
|
</RCTSafeAreaView>
|
|
1413
1486
|
</View>
|
|
1414
1487
|
</View>
|
|
1415
|
-
</
|
|
1488
|
+
</Modal>,
|
|
1416
1489
|
]
|
|
1417
1490
|
`;
|
|
1418
1491
|
|
|
1419
1492
|
exports[`rendering renders correctly when bottom sheet is NOT visible 1`] = `
|
|
1420
|
-
|
|
1421
|
-
pointerEvents="auto"
|
|
1422
|
-
>
|
|
1493
|
+
[
|
|
1423
1494
|
<View
|
|
1424
|
-
|
|
1425
|
-
collapsable={false}
|
|
1426
|
-
focusable={true}
|
|
1427
|
-
onClick={[Function]}
|
|
1428
|
-
onResponderGrant={[Function]}
|
|
1429
|
-
onResponderMove={[Function]}
|
|
1430
|
-
onResponderRelease={[Function]}
|
|
1431
|
-
onResponderTerminate={[Function]}
|
|
1432
|
-
onResponderTerminationRequest={[Function]}
|
|
1433
|
-
onStartShouldSetResponder={[Function]}
|
|
1434
|
-
style={
|
|
1435
|
-
{
|
|
1436
|
-
"opacity": 1,
|
|
1437
|
-
}
|
|
1438
|
-
}
|
|
1495
|
+
pointerEvents="auto"
|
|
1439
1496
|
>
|
|
1440
1497
|
<View
|
|
1441
|
-
|
|
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
|
+
}
|
|
1515
|
+
accessible={true}
|
|
1516
|
+
collapsable={false}
|
|
1517
|
+
focusable={true}
|
|
1518
|
+
onClick={[Function]}
|
|
1519
|
+
onResponderGrant={[Function]}
|
|
1520
|
+
onResponderMove={[Function]}
|
|
1521
|
+
onResponderRelease={[Function]}
|
|
1522
|
+
onResponderTerminate={[Function]}
|
|
1523
|
+
onResponderTerminationRequest={[Function]}
|
|
1524
|
+
onStartShouldSetResponder={[Function]}
|
|
1525
|
+
style={
|
|
1526
|
+
{
|
|
1527
|
+
"opacity": 1,
|
|
1528
|
+
}
|
|
1529
|
+
}
|
|
1442
1530
|
>
|
|
1443
1531
|
<View
|
|
1444
|
-
pointerEvents="
|
|
1445
|
-
style={
|
|
1446
|
-
[
|
|
1447
|
-
{
|
|
1448
|
-
"marginTop": 8,
|
|
1449
|
-
"width": "100%",
|
|
1450
|
-
},
|
|
1451
|
-
undefined,
|
|
1452
|
-
]
|
|
1453
|
-
}
|
|
1532
|
+
pointerEvents="none"
|
|
1454
1533
|
>
|
|
1455
1534
|
<View
|
|
1535
|
+
pointerEvents="auto"
|
|
1456
1536
|
style={
|
|
1457
1537
|
[
|
|
1458
1538
|
{
|
|
1459
|
-
"
|
|
1460
|
-
"
|
|
1461
|
-
"borderRadius": 8,
|
|
1462
|
-
"flexDirection": "row",
|
|
1463
|
-
"padding": 16,
|
|
1539
|
+
"marginTop": 8,
|
|
1540
|
+
"width": "100%",
|
|
1464
1541
|
},
|
|
1465
1542
|
undefined,
|
|
1466
1543
|
]
|
|
@@ -1470,173 +1547,194 @@ exports[`rendering renders correctly when bottom sheet is NOT visible 1`] = `
|
|
|
1470
1547
|
style={
|
|
1471
1548
|
[
|
|
1472
1549
|
{
|
|
1473
|
-
"
|
|
1474
|
-
"borderRadius": 8,
|
|
1475
|
-
"borderWidth": 1,
|
|
1476
|
-
"bottom": 0,
|
|
1477
|
-
"left": 0,
|
|
1478
|
-
"position": "absolute",
|
|
1479
|
-
"right": 0,
|
|
1480
|
-
"top": 0,
|
|
1481
|
-
},
|
|
1482
|
-
[
|
|
1483
|
-
{
|
|
1484
|
-
"backgroundColor": "#ffffff",
|
|
1485
|
-
},
|
|
1486
|
-
undefined,
|
|
1487
|
-
],
|
|
1488
|
-
]
|
|
1489
|
-
}
|
|
1490
|
-
testID="text-input-border"
|
|
1491
|
-
themeFocused={false}
|
|
1492
|
-
themeState="filled"
|
|
1493
|
-
/>
|
|
1494
|
-
<View
|
|
1495
|
-
pointerEvents="none"
|
|
1496
|
-
style={
|
|
1497
|
-
[
|
|
1498
|
-
{
|
|
1550
|
+
"alignItems": "center",
|
|
1499
1551
|
"backgroundColor": "#ffffff",
|
|
1552
|
+
"borderRadius": 8,
|
|
1500
1553
|
"flexDirection": "row",
|
|
1501
|
-
"
|
|
1502
|
-
"paddingHorizontal": 4,
|
|
1503
|
-
"position": "absolute",
|
|
1504
|
-
"top": -4,
|
|
1505
|
-
"zIndex": 1,
|
|
1506
|
-
},
|
|
1507
|
-
{
|
|
1508
|
-
"backgroundColor": "#ffffff",
|
|
1554
|
+
"padding": 16,
|
|
1509
1555
|
},
|
|
1556
|
+
undefined,
|
|
1510
1557
|
]
|
|
1511
1558
|
}
|
|
1512
|
-
testID="label-container"
|
|
1513
1559
|
>
|
|
1514
|
-
<
|
|
1515
|
-
allowFontScaling={false}
|
|
1560
|
+
<View
|
|
1516
1561
|
style={
|
|
1517
1562
|
[
|
|
1518
1563
|
{
|
|
1519
|
-
"
|
|
1520
|
-
"
|
|
1521
|
-
"
|
|
1522
|
-
"
|
|
1523
|
-
"
|
|
1564
|
+
"borderColor": "#001f23",
|
|
1565
|
+
"borderRadius": 8,
|
|
1566
|
+
"borderWidth": 1,
|
|
1567
|
+
"bottom": 0,
|
|
1568
|
+
"left": 0,
|
|
1569
|
+
"position": "absolute",
|
|
1570
|
+
"right": 0,
|
|
1571
|
+
"top": 0,
|
|
1524
1572
|
},
|
|
1525
1573
|
[
|
|
1526
|
-
{
|
|
1527
|
-
"color": "#001f23",
|
|
1528
|
-
"lineHeight": 12,
|
|
1529
|
-
},
|
|
1530
1574
|
{
|
|
1531
1575
|
"backgroundColor": "#ffffff",
|
|
1532
1576
|
},
|
|
1577
|
+
undefined,
|
|
1533
1578
|
],
|
|
1534
1579
|
]
|
|
1535
1580
|
}
|
|
1536
|
-
testID="input-
|
|
1537
|
-
|
|
1538
|
-
themeIntent="body"
|
|
1581
|
+
testID="text-input-border"
|
|
1582
|
+
themeFocused={false}
|
|
1539
1583
|
themeState="filled"
|
|
1584
|
+
/>
|
|
1585
|
+
<View
|
|
1586
|
+
pointerEvents="none"
|
|
1587
|
+
style={
|
|
1588
|
+
[
|
|
1589
|
+
{
|
|
1590
|
+
"backgroundColor": "#ffffff",
|
|
1591
|
+
"flexDirection": "row",
|
|
1592
|
+
"left": 16,
|
|
1593
|
+
"paddingHorizontal": 4,
|
|
1594
|
+
"position": "absolute",
|
|
1595
|
+
"top": -4,
|
|
1596
|
+
"zIndex": 1,
|
|
1597
|
+
},
|
|
1598
|
+
{
|
|
1599
|
+
"backgroundColor": "#ffffff",
|
|
1600
|
+
},
|
|
1601
|
+
]
|
|
1602
|
+
}
|
|
1603
|
+
testID="label-container"
|
|
1540
1604
|
>
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1605
|
+
<Text
|
|
1606
|
+
allowFontScaling={false}
|
|
1607
|
+
style={
|
|
1608
|
+
[
|
|
1609
|
+
{
|
|
1610
|
+
"color": "#001f23",
|
|
1611
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
1612
|
+
"fontSize": 12,
|
|
1613
|
+
"letterSpacing": 0.48,
|
|
1614
|
+
"lineHeight": 16,
|
|
1615
|
+
},
|
|
1616
|
+
[
|
|
1617
|
+
{
|
|
1618
|
+
"color": "#001f23",
|
|
1619
|
+
"lineHeight": 12,
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
"backgroundColor": "#ffffff",
|
|
1623
|
+
},
|
|
1624
|
+
],
|
|
1625
|
+
]
|
|
1562
1626
|
}
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1627
|
+
testID="input-label"
|
|
1628
|
+
themeFontWeight="regular"
|
|
1629
|
+
themeIntent="body"
|
|
1630
|
+
themeState="filled"
|
|
1631
|
+
>
|
|
1632
|
+
Allow notifications
|
|
1633
|
+
</Text>
|
|
1634
|
+
</View>
|
|
1635
|
+
<View
|
|
1572
1636
|
style={
|
|
1573
1637
|
[
|
|
1574
1638
|
{
|
|
1639
|
+
"alignItems": "center",
|
|
1575
1640
|
"alignSelf": "stretch",
|
|
1641
|
+
"flexDirection": "row",
|
|
1576
1642
|
"flexGrow": 2,
|
|
1577
|
-
"
|
|
1578
|
-
"fontSize": 16,
|
|
1579
|
-
"height": undefined,
|
|
1580
|
-
"marginHorizontal": 8,
|
|
1581
|
-
"maxHeight": 144,
|
|
1582
|
-
"paddingVertical": 0,
|
|
1583
|
-
"textAlignVertical": "center",
|
|
1643
|
+
"flexShrink": 1,
|
|
1584
1644
|
},
|
|
1645
|
+
undefined,
|
|
1646
|
+
]
|
|
1647
|
+
}
|
|
1648
|
+
>
|
|
1649
|
+
<TextInput
|
|
1650
|
+
accessibilityState={
|
|
1651
|
+
{
|
|
1652
|
+
"disabled": false,
|
|
1653
|
+
}
|
|
1654
|
+
}
|
|
1655
|
+
allowFontScaling={false}
|
|
1656
|
+
editable={true}
|
|
1657
|
+
multiline={true}
|
|
1658
|
+
onBlur={[Function]}
|
|
1659
|
+
onChangeText={[Function]}
|
|
1660
|
+
onFocus={[Function]}
|
|
1661
|
+
placeholder=" "
|
|
1662
|
+
pointerEvents="none"
|
|
1663
|
+
style={
|
|
1664
|
+
[
|
|
1665
|
+
{
|
|
1666
|
+
"alignSelf": "stretch",
|
|
1667
|
+
"flexGrow": 2,
|
|
1668
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
1669
|
+
"fontSize": 16,
|
|
1670
|
+
"height": undefined,
|
|
1671
|
+
"marginHorizontal": 8,
|
|
1672
|
+
"maxHeight": 144,
|
|
1673
|
+
"paddingVertical": 0,
|
|
1674
|
+
"textAlignVertical": "center",
|
|
1675
|
+
},
|
|
1676
|
+
{
|
|
1677
|
+
"backgroundColor": "#ffffff",
|
|
1678
|
+
"color": "#001f23",
|
|
1679
|
+
},
|
|
1680
|
+
]
|
|
1681
|
+
}
|
|
1682
|
+
testID="text-input"
|
|
1683
|
+
themeVariant="text"
|
|
1684
|
+
value="Monday, Tuesday"
|
|
1685
|
+
/>
|
|
1686
|
+
</View>
|
|
1687
|
+
<HeroIcon
|
|
1688
|
+
name="arrow-down"
|
|
1689
|
+
style={
|
|
1690
|
+
[
|
|
1585
1691
|
{
|
|
1586
|
-
"backgroundColor": "#ffffff",
|
|
1587
1692
|
"color": "#001f23",
|
|
1693
|
+
"fontSize": 24,
|
|
1588
1694
|
},
|
|
1695
|
+
undefined,
|
|
1589
1696
|
]
|
|
1590
1697
|
}
|
|
1591
|
-
testID="
|
|
1592
|
-
|
|
1593
|
-
|
|
1698
|
+
testID="input-suffix"
|
|
1699
|
+
themeIntent="text"
|
|
1700
|
+
themeSize="medium"
|
|
1594
1701
|
/>
|
|
1595
1702
|
</View>
|
|
1596
|
-
<HeroIcon
|
|
1597
|
-
name="arrow-down"
|
|
1598
|
-
style={
|
|
1599
|
-
[
|
|
1600
|
-
{
|
|
1601
|
-
"color": "#001f23",
|
|
1602
|
-
"fontSize": 24,
|
|
1603
|
-
},
|
|
1604
|
-
undefined,
|
|
1605
|
-
]
|
|
1606
|
-
}
|
|
1607
|
-
testID="input-suffix"
|
|
1608
|
-
themeIntent="text"
|
|
1609
|
-
themeSize="medium"
|
|
1610
|
-
/>
|
|
1611
|
-
</View>
|
|
1612
|
-
<View
|
|
1613
|
-
style={
|
|
1614
|
-
[
|
|
1615
|
-
{
|
|
1616
|
-
"minHeight": 16,
|
|
1617
|
-
"paddingLeft": 16,
|
|
1618
|
-
"paddingTop": 2,
|
|
1619
|
-
},
|
|
1620
|
-
undefined,
|
|
1621
|
-
]
|
|
1622
|
-
}
|
|
1623
|
-
>
|
|
1624
1703
|
<View
|
|
1625
1704
|
style={
|
|
1626
1705
|
[
|
|
1627
1706
|
{
|
|
1628
|
-
"
|
|
1629
|
-
"
|
|
1707
|
+
"minHeight": 16,
|
|
1708
|
+
"paddingLeft": 16,
|
|
1709
|
+
"paddingTop": 2,
|
|
1630
1710
|
},
|
|
1631
1711
|
undefined,
|
|
1632
1712
|
]
|
|
1633
1713
|
}
|
|
1634
|
-
|
|
1714
|
+
>
|
|
1715
|
+
<View
|
|
1716
|
+
style={
|
|
1717
|
+
[
|
|
1718
|
+
{
|
|
1719
|
+
"flexDirection": "row",
|
|
1720
|
+
"justifyContent": "space-between",
|
|
1721
|
+
},
|
|
1722
|
+
undefined,
|
|
1723
|
+
]
|
|
1724
|
+
}
|
|
1725
|
+
/>
|
|
1726
|
+
</View>
|
|
1635
1727
|
</View>
|
|
1636
1728
|
</View>
|
|
1637
1729
|
</View>
|
|
1638
|
-
</View
|
|
1639
|
-
|
|
1730
|
+
</View>,
|
|
1731
|
+
<Modal
|
|
1732
|
+
hardwareAccelerated={false}
|
|
1733
|
+
onRequestClose={[Function]}
|
|
1734
|
+
transparent={true}
|
|
1735
|
+
visible={false}
|
|
1736
|
+
/>,
|
|
1737
|
+
]
|
|
1640
1738
|
`;
|
|
1641
1739
|
|
|
1642
1740
|
exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
@@ -1645,6 +1743,23 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
1645
1743
|
pointerEvents="auto"
|
|
1646
1744
|
>
|
|
1647
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
|
+
}
|
|
1648
1763
|
accessible={true}
|
|
1649
1764
|
collapsable={false}
|
|
1650
1765
|
focusable={true}
|
|
@@ -1861,37 +1976,11 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
1861
1976
|
</View>
|
|
1862
1977
|
</View>
|
|
1863
1978
|
</View>,
|
|
1864
|
-
<
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
"bottom": 0,
|
|
1870
|
-
"left": 0,
|
|
1871
|
-
"opacity": 0.4,
|
|
1872
|
-
"position": "absolute",
|
|
1873
|
-
"right": 0,
|
|
1874
|
-
"top": 0,
|
|
1875
|
-
}
|
|
1876
|
-
}
|
|
1877
|
-
/>,
|
|
1878
|
-
<View
|
|
1879
|
-
collapsable={false}
|
|
1880
|
-
style={
|
|
1881
|
-
{
|
|
1882
|
-
"bottom": 0,
|
|
1883
|
-
"left": 0,
|
|
1884
|
-
"opacity": 1,
|
|
1885
|
-
"position": "absolute",
|
|
1886
|
-
"right": 0,
|
|
1887
|
-
"top": 0,
|
|
1888
|
-
"transform": [
|
|
1889
|
-
{
|
|
1890
|
-
"translateY": 0,
|
|
1891
|
-
},
|
|
1892
|
-
],
|
|
1893
|
-
}
|
|
1894
|
-
}
|
|
1979
|
+
<Modal
|
|
1980
|
+
hardwareAccelerated={false}
|
|
1981
|
+
onRequestClose={[Function]}
|
|
1982
|
+
transparent={true}
|
|
1983
|
+
visible={true}
|
|
1895
1984
|
>
|
|
1896
1985
|
<View
|
|
1897
1986
|
pointerEvents="box-none"
|
|
@@ -1927,6 +2016,23 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
1927
2016
|
}
|
|
1928
2017
|
>
|
|
1929
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
|
+
}
|
|
1930
2036
|
accessible={true}
|
|
1931
2037
|
collapsable={false}
|
|
1932
2038
|
focusable={true}
|
|
@@ -1953,7 +2059,6 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
1953
2059
|
/>
|
|
1954
2060
|
<RCTSafeAreaView
|
|
1955
2061
|
collapsable={false}
|
|
1956
|
-
emulateUnlessSupported={true}
|
|
1957
2062
|
style={
|
|
1958
2063
|
{
|
|
1959
2064
|
"backgroundColor": "#ffffff",
|
|
@@ -2040,6 +2145,23 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2040
2145
|
}
|
|
2041
2146
|
>
|
|
2042
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
|
+
}
|
|
2043
2165
|
accessible={true}
|
|
2044
2166
|
collapsable={false}
|
|
2045
2167
|
focusable={true}
|
|
@@ -2145,10 +2267,12 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2145
2267
|
>
|
|
2146
2268
|
<View>
|
|
2147
2269
|
<View
|
|
2270
|
+
onFocusCapture={[Function]}
|
|
2148
2271
|
onLayout={[Function]}
|
|
2149
2272
|
style={null}
|
|
2150
2273
|
/>
|
|
2151
2274
|
<View
|
|
2275
|
+
onFocusCapture={[Function]}
|
|
2152
2276
|
onLayout={[Function]}
|
|
2153
2277
|
style={null}
|
|
2154
2278
|
>
|
|
@@ -2212,6 +2336,14 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2212
2336
|
"disabled": false,
|
|
2213
2337
|
}
|
|
2214
2338
|
}
|
|
2339
|
+
accessibilityValue={
|
|
2340
|
+
{
|
|
2341
|
+
"max": undefined,
|
|
2342
|
+
"min": undefined,
|
|
2343
|
+
"now": undefined,
|
|
2344
|
+
"text": undefined,
|
|
2345
|
+
}
|
|
2346
|
+
}
|
|
2215
2347
|
accessible={true}
|
|
2216
2348
|
focusable={true}
|
|
2217
2349
|
onClick={[Function]}
|
|
@@ -2357,6 +2489,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2357
2489
|
</View>
|
|
2358
2490
|
</View>
|
|
2359
2491
|
<View
|
|
2492
|
+
onFocusCapture={[Function]}
|
|
2360
2493
|
onLayout={[Function]}
|
|
2361
2494
|
style={null}
|
|
2362
2495
|
>
|
|
@@ -2367,6 +2500,14 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2367
2500
|
"disabled": false,
|
|
2368
2501
|
}
|
|
2369
2502
|
}
|
|
2503
|
+
accessibilityValue={
|
|
2504
|
+
{
|
|
2505
|
+
"max": undefined,
|
|
2506
|
+
"min": undefined,
|
|
2507
|
+
"now": undefined,
|
|
2508
|
+
"text": undefined,
|
|
2509
|
+
}
|
|
2510
|
+
}
|
|
2370
2511
|
accessible={true}
|
|
2371
2512
|
focusable={true}
|
|
2372
2513
|
onClick={[Function]}
|
|
@@ -2512,6 +2653,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2512
2653
|
</View>
|
|
2513
2654
|
</View>
|
|
2514
2655
|
<View
|
|
2656
|
+
onFocusCapture={[Function]}
|
|
2515
2657
|
onLayout={[Function]}
|
|
2516
2658
|
style={null}
|
|
2517
2659
|
>
|
|
@@ -2522,6 +2664,14 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2522
2664
|
"disabled": false,
|
|
2523
2665
|
}
|
|
2524
2666
|
}
|
|
2667
|
+
accessibilityValue={
|
|
2668
|
+
{
|
|
2669
|
+
"max": undefined,
|
|
2670
|
+
"min": undefined,
|
|
2671
|
+
"now": undefined,
|
|
2672
|
+
"text": undefined,
|
|
2673
|
+
}
|
|
2674
|
+
}
|
|
2525
2675
|
accessible={true}
|
|
2526
2676
|
focusable={true}
|
|
2527
2677
|
onClick={[Function]}
|
|
@@ -2639,6 +2789,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2639
2789
|
</View>
|
|
2640
2790
|
</View>
|
|
2641
2791
|
<View
|
|
2792
|
+
onFocusCapture={[Function]}
|
|
2642
2793
|
onLayout={[Function]}
|
|
2643
2794
|
style={null}
|
|
2644
2795
|
>
|
|
@@ -2649,6 +2800,14 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2649
2800
|
"disabled": false,
|
|
2650
2801
|
}
|
|
2651
2802
|
}
|
|
2803
|
+
accessibilityValue={
|
|
2804
|
+
{
|
|
2805
|
+
"max": undefined,
|
|
2806
|
+
"min": undefined,
|
|
2807
|
+
"now": undefined,
|
|
2808
|
+
"text": undefined,
|
|
2809
|
+
}
|
|
2810
|
+
}
|
|
2652
2811
|
accessible={true}
|
|
2653
2812
|
focusable={true}
|
|
2654
2813
|
onClick={[Function]}
|
|
@@ -2766,6 +2925,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2766
2925
|
</View>
|
|
2767
2926
|
</View>
|
|
2768
2927
|
<View
|
|
2928
|
+
onFocusCapture={[Function]}
|
|
2769
2929
|
onLayout={[Function]}
|
|
2770
2930
|
style={null}
|
|
2771
2931
|
>
|
|
@@ -2776,6 +2936,14 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2776
2936
|
"disabled": false,
|
|
2777
2937
|
}
|
|
2778
2938
|
}
|
|
2939
|
+
accessibilityValue={
|
|
2940
|
+
{
|
|
2941
|
+
"max": undefined,
|
|
2942
|
+
"min": undefined,
|
|
2943
|
+
"now": undefined,
|
|
2944
|
+
"text": undefined,
|
|
2945
|
+
}
|
|
2946
|
+
}
|
|
2779
2947
|
accessible={true}
|
|
2780
2948
|
focusable={true}
|
|
2781
2949
|
onClick={[Function]}
|
|
@@ -2893,6 +3061,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2893
3061
|
</View>
|
|
2894
3062
|
</View>
|
|
2895
3063
|
<View
|
|
3064
|
+
onFocusCapture={[Function]}
|
|
2896
3065
|
onLayout={[Function]}
|
|
2897
3066
|
style={null}
|
|
2898
3067
|
>
|
|
@@ -2903,6 +3072,14 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
2903
3072
|
"disabled": false,
|
|
2904
3073
|
}
|
|
2905
3074
|
}
|
|
3075
|
+
accessibilityValue={
|
|
3076
|
+
{
|
|
3077
|
+
"max": undefined,
|
|
3078
|
+
"min": undefined,
|
|
3079
|
+
"now": undefined,
|
|
3080
|
+
"text": undefined,
|
|
3081
|
+
}
|
|
3082
|
+
}
|
|
2906
3083
|
accessible={true}
|
|
2907
3084
|
focusable={true}
|
|
2908
3085
|
onClick={[Function]}
|
|
@@ -3021,6 +3198,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
3021
3198
|
</View>
|
|
3022
3199
|
</View>
|
|
3023
3200
|
<View
|
|
3201
|
+
onFocusCapture={[Function]}
|
|
3024
3202
|
onLayout={[Function]}
|
|
3025
3203
|
style={null}
|
|
3026
3204
|
>
|
|
@@ -3031,6 +3209,14 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
3031
3209
|
"disabled": true,
|
|
3032
3210
|
}
|
|
3033
3211
|
}
|
|
3212
|
+
accessibilityValue={
|
|
3213
|
+
{
|
|
3214
|
+
"max": undefined,
|
|
3215
|
+
"min": undefined,
|
|
3216
|
+
"now": undefined,
|
|
3217
|
+
"text": undefined,
|
|
3218
|
+
}
|
|
3219
|
+
}
|
|
3034
3220
|
accessible={true}
|
|
3035
3221
|
focusable={true}
|
|
3036
3222
|
onClick={[Function]}
|
|
@@ -3143,6 +3329,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
3143
3329
|
</View>
|
|
3144
3330
|
</View>
|
|
3145
3331
|
<View
|
|
3332
|
+
onFocusCapture={[Function]}
|
|
3146
3333
|
onLayout={[Function]}
|
|
3147
3334
|
style={null}
|
|
3148
3335
|
/>
|
|
@@ -3169,6 +3356,14 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
3169
3356
|
"disabled": false,
|
|
3170
3357
|
}
|
|
3171
3358
|
}
|
|
3359
|
+
accessibilityValue={
|
|
3360
|
+
{
|
|
3361
|
+
"max": undefined,
|
|
3362
|
+
"min": undefined,
|
|
3363
|
+
"now": undefined,
|
|
3364
|
+
"text": undefined,
|
|
3365
|
+
}
|
|
3366
|
+
}
|
|
3172
3367
|
accessible={true}
|
|
3173
3368
|
focusable={true}
|
|
3174
3369
|
onClick={[Function]}
|
|
@@ -3186,6 +3381,7 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
3186
3381
|
"borderRadius": 4,
|
|
3187
3382
|
"borderWidth": 0,
|
|
3188
3383
|
"flexDirection": "row",
|
|
3384
|
+
"height": 60,
|
|
3189
3385
|
"justifyContent": "center",
|
|
3190
3386
|
"padding": 12,
|
|
3191
3387
|
},
|
|
@@ -3231,55 +3427,59 @@ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
|
|
|
3231
3427
|
</RCTSafeAreaView>
|
|
3232
3428
|
</View>
|
|
3233
3429
|
</View>
|
|
3234
|
-
</
|
|
3430
|
+
</Modal>,
|
|
3235
3431
|
]
|
|
3236
3432
|
`;
|
|
3237
3433
|
|
|
3238
3434
|
exports[`rendering renders correctly when input is loading 1`] = `
|
|
3239
|
-
|
|
3240
|
-
pointerEvents="none"
|
|
3241
|
-
>
|
|
3435
|
+
[
|
|
3242
3436
|
<View
|
|
3243
|
-
|
|
3244
|
-
collapsable={false}
|
|
3245
|
-
focusable={true}
|
|
3246
|
-
onClick={[Function]}
|
|
3247
|
-
onResponderGrant={[Function]}
|
|
3248
|
-
onResponderMove={[Function]}
|
|
3249
|
-
onResponderRelease={[Function]}
|
|
3250
|
-
onResponderTerminate={[Function]}
|
|
3251
|
-
onResponderTerminationRequest={[Function]}
|
|
3252
|
-
onStartShouldSetResponder={[Function]}
|
|
3253
|
-
style={
|
|
3254
|
-
{
|
|
3255
|
-
"opacity": 1,
|
|
3256
|
-
}
|
|
3257
|
-
}
|
|
3437
|
+
pointerEvents="none"
|
|
3258
3438
|
>
|
|
3259
3439
|
<View
|
|
3260
|
-
|
|
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
|
+
}
|
|
3457
|
+
accessible={true}
|
|
3458
|
+
collapsable={false}
|
|
3459
|
+
focusable={true}
|
|
3460
|
+
onClick={[Function]}
|
|
3461
|
+
onResponderGrant={[Function]}
|
|
3462
|
+
onResponderMove={[Function]}
|
|
3463
|
+
onResponderRelease={[Function]}
|
|
3464
|
+
onResponderTerminate={[Function]}
|
|
3465
|
+
onResponderTerminationRequest={[Function]}
|
|
3466
|
+
onStartShouldSetResponder={[Function]}
|
|
3467
|
+
style={
|
|
3468
|
+
{
|
|
3469
|
+
"opacity": 1,
|
|
3470
|
+
}
|
|
3471
|
+
}
|
|
3261
3472
|
>
|
|
3262
3473
|
<View
|
|
3263
3474
|
pointerEvents="none"
|
|
3264
|
-
style={
|
|
3265
|
-
[
|
|
3266
|
-
{
|
|
3267
|
-
"marginTop": 8,
|
|
3268
|
-
"width": "100%",
|
|
3269
|
-
},
|
|
3270
|
-
undefined,
|
|
3271
|
-
]
|
|
3272
|
-
}
|
|
3273
3475
|
>
|
|
3274
3476
|
<View
|
|
3477
|
+
pointerEvents="none"
|
|
3275
3478
|
style={
|
|
3276
3479
|
[
|
|
3277
3480
|
{
|
|
3278
|
-
"
|
|
3279
|
-
"
|
|
3280
|
-
"borderRadius": 8,
|
|
3281
|
-
"flexDirection": "row",
|
|
3282
|
-
"padding": 16,
|
|
3481
|
+
"marginTop": 8,
|
|
3482
|
+
"width": "100%",
|
|
3283
3483
|
},
|
|
3284
3484
|
undefined,
|
|
3285
3485
|
]
|
|
@@ -3289,186 +3489,207 @@ exports[`rendering renders correctly when input is loading 1`] = `
|
|
|
3289
3489
|
style={
|
|
3290
3490
|
[
|
|
3291
3491
|
{
|
|
3292
|
-
"
|
|
3293
|
-
"borderRadius": 8,
|
|
3294
|
-
"borderWidth": 1,
|
|
3295
|
-
"bottom": 0,
|
|
3296
|
-
"left": 0,
|
|
3297
|
-
"position": "absolute",
|
|
3298
|
-
"right": 0,
|
|
3299
|
-
"top": 0,
|
|
3300
|
-
},
|
|
3301
|
-
[
|
|
3302
|
-
{
|
|
3303
|
-
"backgroundColor": "#ffffff",
|
|
3304
|
-
},
|
|
3305
|
-
undefined,
|
|
3306
|
-
],
|
|
3307
|
-
]
|
|
3308
|
-
}
|
|
3309
|
-
testID="text-input-border"
|
|
3310
|
-
themeFocused={false}
|
|
3311
|
-
themeState="readonly"
|
|
3312
|
-
/>
|
|
3313
|
-
<View
|
|
3314
|
-
pointerEvents="none"
|
|
3315
|
-
style={
|
|
3316
|
-
[
|
|
3317
|
-
{
|
|
3492
|
+
"alignItems": "center",
|
|
3318
3493
|
"backgroundColor": "#ffffff",
|
|
3494
|
+
"borderRadius": 8,
|
|
3319
3495
|
"flexDirection": "row",
|
|
3320
|
-
"
|
|
3321
|
-
"paddingHorizontal": 4,
|
|
3322
|
-
"position": "absolute",
|
|
3323
|
-
"top": -4,
|
|
3324
|
-
"zIndex": 1,
|
|
3325
|
-
},
|
|
3326
|
-
{
|
|
3327
|
-
"backgroundColor": "#ffffff",
|
|
3496
|
+
"padding": 16,
|
|
3328
3497
|
},
|
|
3498
|
+
undefined,
|
|
3329
3499
|
]
|
|
3330
3500
|
}
|
|
3331
|
-
testID="label-container"
|
|
3332
3501
|
>
|
|
3333
|
-
<
|
|
3334
|
-
allowFontScaling={false}
|
|
3502
|
+
<View
|
|
3335
3503
|
style={
|
|
3336
3504
|
[
|
|
3337
3505
|
{
|
|
3338
|
-
"
|
|
3339
|
-
"
|
|
3340
|
-
"
|
|
3341
|
-
"
|
|
3342
|
-
"
|
|
3506
|
+
"borderColor": "#808f91",
|
|
3507
|
+
"borderRadius": 8,
|
|
3508
|
+
"borderWidth": 1,
|
|
3509
|
+
"bottom": 0,
|
|
3510
|
+
"left": 0,
|
|
3511
|
+
"position": "absolute",
|
|
3512
|
+
"right": 0,
|
|
3513
|
+
"top": 0,
|
|
3343
3514
|
},
|
|
3344
3515
|
[
|
|
3345
|
-
{
|
|
3346
|
-
"color": "#808f91",
|
|
3347
|
-
"lineHeight": 12,
|
|
3348
|
-
},
|
|
3349
3516
|
{
|
|
3350
3517
|
"backgroundColor": "#ffffff",
|
|
3351
3518
|
},
|
|
3519
|
+
undefined,
|
|
3352
3520
|
],
|
|
3353
3521
|
]
|
|
3354
3522
|
}
|
|
3355
|
-
testID="input-
|
|
3356
|
-
|
|
3357
|
-
themeIntent="body"
|
|
3523
|
+
testID="text-input-border"
|
|
3524
|
+
themeFocused={false}
|
|
3358
3525
|
themeState="readonly"
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
</Text>
|
|
3362
|
-
</View>
|
|
3363
|
-
<View
|
|
3364
|
-
style={
|
|
3365
|
-
[
|
|
3366
|
-
{
|
|
3367
|
-
"alignItems": "center",
|
|
3368
|
-
"alignSelf": "stretch",
|
|
3369
|
-
"flexDirection": "row",
|
|
3370
|
-
"flexGrow": 2,
|
|
3371
|
-
"flexShrink": 1,
|
|
3372
|
-
},
|
|
3373
|
-
undefined,
|
|
3374
|
-
]
|
|
3375
|
-
}
|
|
3376
|
-
>
|
|
3377
|
-
<TextInput
|
|
3378
|
-
accessibilityState={
|
|
3379
|
-
{
|
|
3380
|
-
"disabled": true,
|
|
3381
|
-
}
|
|
3382
|
-
}
|
|
3383
|
-
allowFontScaling={false}
|
|
3384
|
-
editable={true}
|
|
3385
|
-
multiline={true}
|
|
3386
|
-
onBlur={[Function]}
|
|
3387
|
-
onChangeText={[Function]}
|
|
3388
|
-
onFocus={[Function]}
|
|
3389
|
-
placeholder=" "
|
|
3526
|
+
/>
|
|
3527
|
+
<View
|
|
3390
3528
|
pointerEvents="none"
|
|
3391
3529
|
style={
|
|
3392
3530
|
[
|
|
3393
3531
|
{
|
|
3394
|
-
"
|
|
3395
|
-
"
|
|
3396
|
-
"
|
|
3397
|
-
"
|
|
3398
|
-
"
|
|
3399
|
-
"
|
|
3400
|
-
"
|
|
3401
|
-
"paddingVertical": 0,
|
|
3402
|
-
"textAlignVertical": "center",
|
|
3532
|
+
"backgroundColor": "#ffffff",
|
|
3533
|
+
"flexDirection": "row",
|
|
3534
|
+
"left": 16,
|
|
3535
|
+
"paddingHorizontal": 4,
|
|
3536
|
+
"position": "absolute",
|
|
3537
|
+
"top": -4,
|
|
3538
|
+
"zIndex": 1,
|
|
3403
3539
|
},
|
|
3404
3540
|
{
|
|
3405
3541
|
"backgroundColor": "#ffffff",
|
|
3406
|
-
"color": "#001f23",
|
|
3407
3542
|
},
|
|
3408
3543
|
]
|
|
3409
3544
|
}
|
|
3410
|
-
testID="
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
|
|
3414
|
-
|
|
3415
|
-
|
|
3416
|
-
|
|
3417
|
-
|
|
3418
|
-
|
|
3419
|
-
|
|
3420
|
-
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
|
|
3424
|
-
|
|
3425
|
-
|
|
3426
|
-
|
|
3427
|
-
|
|
3428
|
-
|
|
3545
|
+
testID="label-container"
|
|
3546
|
+
>
|
|
3547
|
+
<Text
|
|
3548
|
+
allowFontScaling={false}
|
|
3549
|
+
style={
|
|
3550
|
+
[
|
|
3551
|
+
{
|
|
3552
|
+
"color": "#001f23",
|
|
3553
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
3554
|
+
"fontSize": 12,
|
|
3555
|
+
"letterSpacing": 0.48,
|
|
3556
|
+
"lineHeight": 16,
|
|
3557
|
+
},
|
|
3558
|
+
[
|
|
3559
|
+
{
|
|
3560
|
+
"color": "#808f91",
|
|
3561
|
+
"lineHeight": 12,
|
|
3562
|
+
},
|
|
3563
|
+
{
|
|
3564
|
+
"backgroundColor": "#ffffff",
|
|
3565
|
+
},
|
|
3566
|
+
],
|
|
3567
|
+
]
|
|
3568
|
+
}
|
|
3569
|
+
testID="input-label"
|
|
3570
|
+
themeFontWeight="regular"
|
|
3571
|
+
themeIntent="body"
|
|
3572
|
+
themeState="readonly"
|
|
3573
|
+
>
|
|
3574
|
+
Allow notifications
|
|
3575
|
+
</Text>
|
|
3576
|
+
</View>
|
|
3577
|
+
<View
|
|
3429
3578
|
style={
|
|
3430
3579
|
[
|
|
3431
3580
|
{
|
|
3432
|
-
"
|
|
3433
|
-
"
|
|
3581
|
+
"alignItems": "center",
|
|
3582
|
+
"alignSelf": "stretch",
|
|
3583
|
+
"flexDirection": "row",
|
|
3584
|
+
"flexGrow": 2,
|
|
3585
|
+
"flexShrink": 1,
|
|
3434
3586
|
},
|
|
3435
3587
|
undefined,
|
|
3436
3588
|
]
|
|
3437
3589
|
}
|
|
3438
|
-
|
|
3439
|
-
|
|
3440
|
-
|
|
3441
|
-
|
|
3590
|
+
>
|
|
3591
|
+
<TextInput
|
|
3592
|
+
accessibilityState={
|
|
3593
|
+
{
|
|
3594
|
+
"disabled": true,
|
|
3595
|
+
}
|
|
3596
|
+
}
|
|
3597
|
+
allowFontScaling={false}
|
|
3598
|
+
editable={true}
|
|
3599
|
+
multiline={true}
|
|
3600
|
+
onBlur={[Function]}
|
|
3601
|
+
onChangeText={[Function]}
|
|
3602
|
+
onFocus={[Function]}
|
|
3603
|
+
placeholder=" "
|
|
3604
|
+
pointerEvents="none"
|
|
3605
|
+
style={
|
|
3606
|
+
[
|
|
3607
|
+
{
|
|
3608
|
+
"alignSelf": "stretch",
|
|
3609
|
+
"flexGrow": 2,
|
|
3610
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
3611
|
+
"fontSize": 16,
|
|
3612
|
+
"height": undefined,
|
|
3613
|
+
"marginHorizontal": 8,
|
|
3614
|
+
"maxHeight": 144,
|
|
3615
|
+
"paddingVertical": 0,
|
|
3616
|
+
"textAlignVertical": "center",
|
|
3617
|
+
},
|
|
3618
|
+
{
|
|
3619
|
+
"backgroundColor": "#ffffff",
|
|
3620
|
+
"color": "#001f23",
|
|
3621
|
+
},
|
|
3622
|
+
]
|
|
3623
|
+
}
|
|
3624
|
+
testID="text-input"
|
|
3625
|
+
themeVariant="text"
|
|
3626
|
+
value="Monday, Tuesday"
|
|
3627
|
+
/>
|
|
3628
|
+
</View>
|
|
3629
|
+
<View
|
|
3630
|
+
collapsable={false}
|
|
3631
|
+
style={
|
|
3632
|
+
{
|
|
3633
|
+
"transform": [
|
|
3634
|
+
{
|
|
3635
|
+
"rotate": "0deg",
|
|
3636
|
+
},
|
|
3637
|
+
],
|
|
3638
|
+
}
|
|
3639
|
+
}
|
|
3640
|
+
>
|
|
3641
|
+
<HeroIcon
|
|
3642
|
+
name="loading"
|
|
3643
|
+
style={
|
|
3644
|
+
[
|
|
3645
|
+
{
|
|
3646
|
+
"color": "#001f23",
|
|
3647
|
+
"fontSize": 24,
|
|
3648
|
+
},
|
|
3649
|
+
undefined,
|
|
3650
|
+
]
|
|
3651
|
+
}
|
|
3652
|
+
testID="input-suffix"
|
|
3653
|
+
themeIntent="text"
|
|
3654
|
+
themeSize="medium"
|
|
3655
|
+
/>
|
|
3656
|
+
</View>
|
|
3442
3657
|
</View>
|
|
3443
|
-
</View>
|
|
3444
|
-
<View
|
|
3445
|
-
style={
|
|
3446
|
-
[
|
|
3447
|
-
{
|
|
3448
|
-
"minHeight": 16,
|
|
3449
|
-
"paddingLeft": 16,
|
|
3450
|
-
"paddingTop": 2,
|
|
3451
|
-
},
|
|
3452
|
-
undefined,
|
|
3453
|
-
]
|
|
3454
|
-
}
|
|
3455
|
-
>
|
|
3456
3658
|
<View
|
|
3457
3659
|
style={
|
|
3458
3660
|
[
|
|
3459
3661
|
{
|
|
3460
|
-
"
|
|
3461
|
-
"
|
|
3662
|
+
"minHeight": 16,
|
|
3663
|
+
"paddingLeft": 16,
|
|
3664
|
+
"paddingTop": 2,
|
|
3462
3665
|
},
|
|
3463
3666
|
undefined,
|
|
3464
3667
|
]
|
|
3465
3668
|
}
|
|
3466
|
-
|
|
3669
|
+
>
|
|
3670
|
+
<View
|
|
3671
|
+
style={
|
|
3672
|
+
[
|
|
3673
|
+
{
|
|
3674
|
+
"flexDirection": "row",
|
|
3675
|
+
"justifyContent": "space-between",
|
|
3676
|
+
},
|
|
3677
|
+
undefined,
|
|
3678
|
+
]
|
|
3679
|
+
}
|
|
3680
|
+
/>
|
|
3681
|
+
</View>
|
|
3467
3682
|
</View>
|
|
3468
3683
|
</View>
|
|
3469
3684
|
</View>
|
|
3470
|
-
</View
|
|
3471
|
-
|
|
3685
|
+
</View>,
|
|
3686
|
+
<Modal
|
|
3687
|
+
hardwareAccelerated={false}
|
|
3688
|
+
onRequestClose={[Function]}
|
|
3689
|
+
transparent={true}
|
|
3690
|
+
visible={false}
|
|
3691
|
+
/>,
|
|
3692
|
+
]
|
|
3472
3693
|
`;
|
|
3473
3694
|
|
|
3474
3695
|
exports[`rendering renders correctly when receives sections 1`] = `
|
|
@@ -3477,6 +3698,23 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
3477
3698
|
pointerEvents="auto"
|
|
3478
3699
|
>
|
|
3479
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
|
+
}
|
|
3480
3718
|
accessible={true}
|
|
3481
3719
|
collapsable={false}
|
|
3482
3720
|
focusable={true}
|
|
@@ -3693,37 +3931,11 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
3693
3931
|
</View>
|
|
3694
3932
|
</View>
|
|
3695
3933
|
</View>,
|
|
3696
|
-
<
|
|
3697
|
-
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
|
|
3701
|
-
"bottom": 0,
|
|
3702
|
-
"left": 0,
|
|
3703
|
-
"opacity": 0.4,
|
|
3704
|
-
"position": "absolute",
|
|
3705
|
-
"right": 0,
|
|
3706
|
-
"top": 0,
|
|
3707
|
-
}
|
|
3708
|
-
}
|
|
3709
|
-
/>,
|
|
3710
|
-
<View
|
|
3711
|
-
collapsable={false}
|
|
3712
|
-
style={
|
|
3713
|
-
{
|
|
3714
|
-
"bottom": 0,
|
|
3715
|
-
"left": 0,
|
|
3716
|
-
"opacity": 1,
|
|
3717
|
-
"position": "absolute",
|
|
3718
|
-
"right": 0,
|
|
3719
|
-
"top": 0,
|
|
3720
|
-
"transform": [
|
|
3721
|
-
{
|
|
3722
|
-
"translateY": 0,
|
|
3723
|
-
},
|
|
3724
|
-
],
|
|
3725
|
-
}
|
|
3726
|
-
}
|
|
3934
|
+
<Modal
|
|
3935
|
+
hardwareAccelerated={false}
|
|
3936
|
+
onRequestClose={[Function]}
|
|
3937
|
+
transparent={true}
|
|
3938
|
+
visible={true}
|
|
3727
3939
|
>
|
|
3728
3940
|
<View
|
|
3729
3941
|
pointerEvents="box-none"
|
|
@@ -3759,6 +3971,23 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
3759
3971
|
}
|
|
3760
3972
|
>
|
|
3761
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
|
+
}
|
|
3762
3991
|
accessible={true}
|
|
3763
3992
|
collapsable={false}
|
|
3764
3993
|
focusable={true}
|
|
@@ -3785,7 +4014,6 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
3785
4014
|
/>
|
|
3786
4015
|
<RCTSafeAreaView
|
|
3787
4016
|
collapsable={false}
|
|
3788
|
-
emulateUnlessSupported={true}
|
|
3789
4017
|
style={
|
|
3790
4018
|
{
|
|
3791
4019
|
"backgroundColor": "#ffffff",
|
|
@@ -3872,6 +4100,23 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
3872
4100
|
}
|
|
3873
4101
|
>
|
|
3874
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
|
+
}
|
|
3875
4120
|
accessible={true}
|
|
3876
4121
|
collapsable={false}
|
|
3877
4122
|
focusable={true}
|
|
@@ -3966,6 +4211,7 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
3966
4211
|
>
|
|
3967
4212
|
<View>
|
|
3968
4213
|
<View
|
|
4214
|
+
onFocusCapture={[Function]}
|
|
3969
4215
|
onLayout={[Function]}
|
|
3970
4216
|
style={null}
|
|
3971
4217
|
>
|
|
@@ -4035,6 +4281,7 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4035
4281
|
</View>
|
|
4036
4282
|
</View>
|
|
4037
4283
|
<View
|
|
4284
|
+
onFocusCapture={[Function]}
|
|
4038
4285
|
onLayout={[Function]}
|
|
4039
4286
|
style={null}
|
|
4040
4287
|
>
|
|
@@ -4088,6 +4335,14 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4088
4335
|
"disabled": false,
|
|
4089
4336
|
}
|
|
4090
4337
|
}
|
|
4338
|
+
accessibilityValue={
|
|
4339
|
+
{
|
|
4340
|
+
"max": undefined,
|
|
4341
|
+
"min": undefined,
|
|
4342
|
+
"now": undefined,
|
|
4343
|
+
"text": undefined,
|
|
4344
|
+
}
|
|
4345
|
+
}
|
|
4091
4346
|
accessible={true}
|
|
4092
4347
|
focusable={true}
|
|
4093
4348
|
onClick={[Function]}
|
|
@@ -4189,10 +4444,12 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4189
4444
|
</View>
|
|
4190
4445
|
</View>
|
|
4191
4446
|
<View
|
|
4447
|
+
onFocusCapture={[Function]}
|
|
4192
4448
|
onLayout={[Function]}
|
|
4193
4449
|
style={null}
|
|
4194
4450
|
/>
|
|
4195
4451
|
<View
|
|
4452
|
+
onFocusCapture={[Function]}
|
|
4196
4453
|
onLayout={[Function]}
|
|
4197
4454
|
style={null}
|
|
4198
4455
|
>
|
|
@@ -4262,6 +4519,7 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4262
4519
|
</View>
|
|
4263
4520
|
</View>
|
|
4264
4521
|
<View
|
|
4522
|
+
onFocusCapture={[Function]}
|
|
4265
4523
|
onLayout={[Function]}
|
|
4266
4524
|
style={null}
|
|
4267
4525
|
>
|
|
@@ -4315,6 +4573,14 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4315
4573
|
"disabled": false,
|
|
4316
4574
|
}
|
|
4317
4575
|
}
|
|
4576
|
+
accessibilityValue={
|
|
4577
|
+
{
|
|
4578
|
+
"max": undefined,
|
|
4579
|
+
"min": undefined,
|
|
4580
|
+
"now": undefined,
|
|
4581
|
+
"text": undefined,
|
|
4582
|
+
}
|
|
4583
|
+
}
|
|
4318
4584
|
accessible={true}
|
|
4319
4585
|
focusable={true}
|
|
4320
4586
|
onClick={[Function]}
|
|
@@ -4450,6 +4716,7 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4450
4716
|
</View>
|
|
4451
4717
|
</View>
|
|
4452
4718
|
<View
|
|
4719
|
+
onFocusCapture={[Function]}
|
|
4453
4720
|
onLayout={[Function]}
|
|
4454
4721
|
style={null}
|
|
4455
4722
|
>
|
|
@@ -4460,6 +4727,14 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4460
4727
|
"disabled": false,
|
|
4461
4728
|
}
|
|
4462
4729
|
}
|
|
4730
|
+
accessibilityValue={
|
|
4731
|
+
{
|
|
4732
|
+
"max": undefined,
|
|
4733
|
+
"min": undefined,
|
|
4734
|
+
"now": undefined,
|
|
4735
|
+
"text": undefined,
|
|
4736
|
+
}
|
|
4737
|
+
}
|
|
4463
4738
|
accessible={true}
|
|
4464
4739
|
focusable={true}
|
|
4465
4740
|
onClick={[Function]}
|
|
@@ -4589,6 +4864,7 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4589
4864
|
</View>
|
|
4590
4865
|
</View>
|
|
4591
4866
|
<View
|
|
4867
|
+
onFocusCapture={[Function]}
|
|
4592
4868
|
onLayout={[Function]}
|
|
4593
4869
|
style={null}
|
|
4594
4870
|
/>
|
|
@@ -4615,6 +4891,14 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4615
4891
|
"disabled": false,
|
|
4616
4892
|
}
|
|
4617
4893
|
}
|
|
4894
|
+
accessibilityValue={
|
|
4895
|
+
{
|
|
4896
|
+
"max": undefined,
|
|
4897
|
+
"min": undefined,
|
|
4898
|
+
"now": undefined,
|
|
4899
|
+
"text": undefined,
|
|
4900
|
+
}
|
|
4901
|
+
}
|
|
4618
4902
|
accessible={true}
|
|
4619
4903
|
focusable={true}
|
|
4620
4904
|
onClick={[Function]}
|
|
@@ -4632,6 +4916,7 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4632
4916
|
"borderRadius": 4,
|
|
4633
4917
|
"borderWidth": 0,
|
|
4634
4918
|
"flexDirection": "row",
|
|
4919
|
+
"height": 60,
|
|
4635
4920
|
"justifyContent": "center",
|
|
4636
4921
|
"padding": 12,
|
|
4637
4922
|
},
|
|
@@ -4677,7 +4962,7 @@ exports[`rendering renders correctly when receives sections 1`] = `
|
|
|
4677
4962
|
</RCTSafeAreaView>
|
|
4678
4963
|
</View>
|
|
4679
4964
|
</View>
|
|
4680
|
-
</
|
|
4965
|
+
</Modal>,
|
|
4681
4966
|
]
|
|
4682
4967
|
`;
|
|
4683
4968
|
|
|
@@ -4687,6 +4972,23 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
4687
4972
|
pointerEvents="auto"
|
|
4688
4973
|
>
|
|
4689
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
|
+
}
|
|
4690
4992
|
accessible={true}
|
|
4691
4993
|
collapsable={false}
|
|
4692
4994
|
focusable={true}
|
|
@@ -4903,37 +5205,11 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
4903
5205
|
</View>
|
|
4904
5206
|
</View>
|
|
4905
5207
|
</View>,
|
|
4906
|
-
<
|
|
4907
|
-
|
|
4908
|
-
|
|
4909
|
-
|
|
4910
|
-
|
|
4911
|
-
"bottom": 0,
|
|
4912
|
-
"left": 0,
|
|
4913
|
-
"opacity": 0.4,
|
|
4914
|
-
"position": "absolute",
|
|
4915
|
-
"right": 0,
|
|
4916
|
-
"top": 0,
|
|
4917
|
-
}
|
|
4918
|
-
}
|
|
4919
|
-
/>,
|
|
4920
|
-
<View
|
|
4921
|
-
collapsable={false}
|
|
4922
|
-
style={
|
|
4923
|
-
{
|
|
4924
|
-
"bottom": 0,
|
|
4925
|
-
"left": 0,
|
|
4926
|
-
"opacity": 1,
|
|
4927
|
-
"position": "absolute",
|
|
4928
|
-
"right": 0,
|
|
4929
|
-
"top": 0,
|
|
4930
|
-
"transform": [
|
|
4931
|
-
{
|
|
4932
|
-
"translateY": 0,
|
|
4933
|
-
},
|
|
4934
|
-
],
|
|
4935
|
-
}
|
|
4936
|
-
}
|
|
5208
|
+
<Modal
|
|
5209
|
+
hardwareAccelerated={false}
|
|
5210
|
+
onRequestClose={[Function]}
|
|
5211
|
+
transparent={true}
|
|
5212
|
+
visible={true}
|
|
4937
5213
|
>
|
|
4938
5214
|
<View
|
|
4939
5215
|
pointerEvents="box-none"
|
|
@@ -4969,6 +5245,23 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
4969
5245
|
}
|
|
4970
5246
|
>
|
|
4971
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
|
+
}
|
|
4972
5265
|
accessible={true}
|
|
4973
5266
|
collapsable={false}
|
|
4974
5267
|
focusable={true}
|
|
@@ -4995,7 +5288,6 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
4995
5288
|
/>
|
|
4996
5289
|
<RCTSafeAreaView
|
|
4997
5290
|
collapsable={false}
|
|
4998
|
-
emulateUnlessSupported={true}
|
|
4999
5291
|
style={
|
|
5000
5292
|
{
|
|
5001
5293
|
"backgroundColor": "#ffffff",
|
|
@@ -5082,6 +5374,23 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5082
5374
|
}
|
|
5083
5375
|
>
|
|
5084
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
|
+
}
|
|
5085
5394
|
accessible={true}
|
|
5086
5395
|
collapsable={false}
|
|
5087
5396
|
focusable={true}
|
|
@@ -5176,6 +5485,7 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5176
5485
|
>
|
|
5177
5486
|
<View>
|
|
5178
5487
|
<View
|
|
5488
|
+
onFocusCapture={[Function]}
|
|
5179
5489
|
onLayout={[Function]}
|
|
5180
5490
|
style={null}
|
|
5181
5491
|
>
|
|
@@ -5245,6 +5555,7 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5245
5555
|
</View>
|
|
5246
5556
|
</View>
|
|
5247
5557
|
<View
|
|
5558
|
+
onFocusCapture={[Function]}
|
|
5248
5559
|
onLayout={[Function]}
|
|
5249
5560
|
style={null}
|
|
5250
5561
|
>
|
|
@@ -5298,6 +5609,14 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5298
5609
|
"disabled": false,
|
|
5299
5610
|
}
|
|
5300
5611
|
}
|
|
5612
|
+
accessibilityValue={
|
|
5613
|
+
{
|
|
5614
|
+
"max": undefined,
|
|
5615
|
+
"min": undefined,
|
|
5616
|
+
"now": undefined,
|
|
5617
|
+
"text": undefined,
|
|
5618
|
+
}
|
|
5619
|
+
}
|
|
5301
5620
|
accessible={true}
|
|
5302
5621
|
focusable={true}
|
|
5303
5622
|
onClick={[Function]}
|
|
@@ -5427,10 +5746,12 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5427
5746
|
</View>
|
|
5428
5747
|
</View>
|
|
5429
5748
|
<View
|
|
5749
|
+
onFocusCapture={[Function]}
|
|
5430
5750
|
onLayout={[Function]}
|
|
5431
5751
|
style={null}
|
|
5432
5752
|
/>
|
|
5433
5753
|
<View
|
|
5754
|
+
onFocusCapture={[Function]}
|
|
5434
5755
|
onLayout={[Function]}
|
|
5435
5756
|
style={null}
|
|
5436
5757
|
>
|
|
@@ -5500,6 +5821,7 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5500
5821
|
</View>
|
|
5501
5822
|
</View>
|
|
5502
5823
|
<View
|
|
5824
|
+
onFocusCapture={[Function]}
|
|
5503
5825
|
onLayout={[Function]}
|
|
5504
5826
|
style={null}
|
|
5505
5827
|
>
|
|
@@ -5553,6 +5875,14 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5553
5875
|
"disabled": false,
|
|
5554
5876
|
}
|
|
5555
5877
|
}
|
|
5878
|
+
accessibilityValue={
|
|
5879
|
+
{
|
|
5880
|
+
"max": undefined,
|
|
5881
|
+
"min": undefined,
|
|
5882
|
+
"now": undefined,
|
|
5883
|
+
"text": undefined,
|
|
5884
|
+
}
|
|
5885
|
+
}
|
|
5556
5886
|
accessible={true}
|
|
5557
5887
|
focusable={true}
|
|
5558
5888
|
onClick={[Function]}
|
|
@@ -5660,6 +5990,7 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5660
5990
|
</View>
|
|
5661
5991
|
</View>
|
|
5662
5992
|
<View
|
|
5993
|
+
onFocusCapture={[Function]}
|
|
5663
5994
|
onLayout={[Function]}
|
|
5664
5995
|
style={null}
|
|
5665
5996
|
>
|
|
@@ -5670,6 +6001,14 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5670
6001
|
"disabled": false,
|
|
5671
6002
|
}
|
|
5672
6003
|
}
|
|
6004
|
+
accessibilityValue={
|
|
6005
|
+
{
|
|
6006
|
+
"max": undefined,
|
|
6007
|
+
"min": undefined,
|
|
6008
|
+
"now": undefined,
|
|
6009
|
+
"text": undefined,
|
|
6010
|
+
}
|
|
6011
|
+
}
|
|
5673
6012
|
accessible={true}
|
|
5674
6013
|
focusable={true}
|
|
5675
6014
|
onClick={[Function]}
|
|
@@ -5771,6 +6110,7 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5771
6110
|
</View>
|
|
5772
6111
|
</View>
|
|
5773
6112
|
<View
|
|
6113
|
+
onFocusCapture={[Function]}
|
|
5774
6114
|
onLayout={[Function]}
|
|
5775
6115
|
style={null}
|
|
5776
6116
|
/>
|
|
@@ -5797,6 +6137,14 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5797
6137
|
"disabled": false,
|
|
5798
6138
|
}
|
|
5799
6139
|
}
|
|
6140
|
+
accessibilityValue={
|
|
6141
|
+
{
|
|
6142
|
+
"max": undefined,
|
|
6143
|
+
"min": undefined,
|
|
6144
|
+
"now": undefined,
|
|
6145
|
+
"text": undefined,
|
|
6146
|
+
}
|
|
6147
|
+
}
|
|
5800
6148
|
accessible={true}
|
|
5801
6149
|
focusable={true}
|
|
5802
6150
|
onClick={[Function]}
|
|
@@ -5814,6 +6162,7 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5814
6162
|
"borderRadius": 4,
|
|
5815
6163
|
"borderWidth": 0,
|
|
5816
6164
|
"flexDirection": "row",
|
|
6165
|
+
"height": 60,
|
|
5817
6166
|
"justifyContent": "center",
|
|
5818
6167
|
"padding": 12,
|
|
5819
6168
|
},
|
|
@@ -5859,6 +6208,6 @@ exports[`rendering renders correctly when receives sections 2`] = `
|
|
|
5859
6208
|
</RCTSafeAreaView>
|
|
5860
6209
|
</View>
|
|
5861
6210
|
</View>
|
|
5862
|
-
</
|
|
6211
|
+
</Modal>,
|
|
5863
6212
|
]
|
|
5864
6213
|
`;
|