@hero-design/rn 7.18.1 → 7.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +2 -2
- package/es/index.js +155 -143
- package/lib/index.js +155 -143
- package/package.json +2 -2
- package/src/components/Accordion/AccordionItem.tsx +5 -4
- package/src/components/Accordion/__tests__/index.spec.tsx +2 -1
- package/src/components/Accordion/index.tsx +3 -2
- package/src/components/Alert/StyledAlert.tsx +3 -2
- package/src/components/Alert/index.tsx +5 -3
- package/src/components/Avatar/index.tsx +2 -2
- package/src/components/Badge/Status.tsx +4 -2
- package/src/components/Badge/index.tsx +2 -1
- package/src/components/BottomNavigation/__tests__/index.spec.tsx +4 -2
- package/src/components/BottomNavigation/index.tsx +6 -8
- package/src/components/BottomSheet/Footer.tsx +2 -1
- package/src/components/BottomSheet/Header.tsx +2 -1
- package/src/components/BottomSheet/StyledBottomSheet.tsx +2 -2
- package/src/components/BottomSheet/index.tsx +4 -8
- package/src/components/Button/Button.tsx +5 -6
- package/src/components/Button/IconButton.tsx +4 -7
- package/src/components/Button/LoadingIndicator/StyledLoadingIndicator.tsx +5 -3
- package/src/components/Button/LoadingIndicator/index.tsx +2 -8
- package/src/components/Button/StyledButton.tsx +4 -5
- package/src/components/Button/UtilityButton/index.tsx +5 -4
- package/src/components/Button/index.tsx +3 -2
- package/src/components/Calendar/StyledCalendar.tsx +2 -1
- package/src/components/Card/DataCard/index.tsx +3 -2
- package/src/components/Card/index.tsx +3 -2
- package/src/components/Checkbox/StyledCheckbox.tsx +44 -14
- package/src/components/Checkbox/__tests__/StyledCheckbox.spec.tsx +28 -3
- package/src/components/Checkbox/__tests__/__snapshots__/StyledCheckbox.spec.tsx.snap +95 -9
- package/src/components/Checkbox/__tests__/__snapshots__/index.spec.tsx.snap +337 -23
- package/src/components/Checkbox/__tests__/index.spec.tsx +38 -7
- package/src/components/Checkbox/index.tsx +35 -18
- package/src/components/Collapse/index.tsx +4 -8
- package/src/components/ContentNavigator/index.tsx +1 -1
- package/src/components/DatePicker/DatePickerAndroid.tsx +1 -1
- package/src/components/DatePicker/DatePickerIOS.tsx +1 -1
- package/src/components/DatePicker/StyledDatePicker.tsx +2 -1
- package/src/components/DatePicker/__tests__/DatePickerIOS.spec.tsx +1 -2
- package/src/components/DatePicker/index.tsx +1 -1
- package/src/components/DatePicker/types.ts +1 -1
- package/src/components/Divider/index.tsx +1 -1
- package/src/components/Drawer/DragableDrawer/index.tsx +3 -2
- package/src/components/Drawer/StyledDrawer.tsx +3 -2
- package/src/components/Drawer/index.tsx +2 -1
- package/src/components/Empty/index.tsx +1 -2
- package/src/components/FAB/ActionGroup/ActionItem.tsx +3 -2
- package/src/components/FAB/ActionGroup/StyledActionGroup.tsx +4 -3
- package/src/components/FAB/ActionGroup/StyledActionItem.tsx +4 -2
- package/src/components/FAB/ActionGroup/index.tsx +5 -3
- package/src/components/FAB/AnimatedFABIcon.tsx +1 -1
- package/src/components/FAB/FAB.tsx +2 -2
- package/src/components/FAB/StyledFAB.tsx +4 -7
- package/src/components/Icon/AnimatedIcon.tsx +2 -1
- package/src/components/Icon/index.tsx +1 -1
- package/src/components/List/BasicListItem.tsx +3 -3
- package/src/components/List/ListItem.tsx +6 -3
- package/src/components/List/StyledListItem.tsx +2 -1
- package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +13 -27
- package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +2 -0
- package/src/components/PinInput/PinCell.tsx +1 -1
- package/src/components/PinInput/index.tsx +3 -7
- package/src/components/Progress/ProgressBar.tsx +2 -1
- package/src/components/Progress/ProgressCircle.tsx +3 -9
- package/src/components/Progress/StyledProgressBar.tsx +3 -3
- package/src/components/Progress/StyledProgressCircle.tsx +3 -3
- package/src/components/Radio/Radio.tsx +20 -14
- package/src/components/Radio/RadioGroup.tsx +5 -3
- package/src/components/Radio/StyledRadio.tsx +12 -29
- package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +84 -50
- package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +124 -73
- package/src/components/RichTextEditor/EditorToolbar.tsx +4 -8
- package/src/components/RichTextEditor/RichTextEditor.tsx +5 -14
- package/src/components/RichTextEditor/__tests__/EditorToolbar.spec.tsx +2 -6
- package/src/components/RichTextEditor/__tests__/MentionList.spec.tsx +2 -6
- package/src/components/RichTextEditor/__tests__/RichTextEditor.spec.tsx +4 -7
- package/src/components/RichTextEditor/index.tsx +6 -6
- package/src/components/SectionHeading/index.tsx +5 -4
- package/src/components/Select/MultiSelect/Option.tsx +2 -1
- package/src/components/Select/MultiSelect/OptionList.tsx +3 -3
- package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +605 -585
- package/src/components/Select/MultiSelect/__tests__/index.spec.tsx +1 -1
- package/src/components/Select/MultiSelect/index.tsx +20 -16
- package/src/components/Select/SingleSelect/Option.tsx +2 -1
- package/src/components/Select/SingleSelect/OptionList.tsx +3 -3
- package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +602 -582
- package/src/components/Select/SingleSelect/__tests__/index.spec.tsx +1 -1
- package/src/components/Select/SingleSelect/index.tsx +20 -16
- package/src/components/Select/StyledOptionList.tsx +11 -9
- package/src/components/Select/helpers.tsx +1 -1
- package/src/components/Select/index.tsx +6 -4
- package/src/components/Select/types.ts +3 -3
- package/src/components/Spinner/StyledSpinner.tsx +2 -1
- package/src/components/Spinner/index.tsx +3 -3
- package/src/components/Switch/StyledSwitch.tsx +10 -26
- package/src/components/Switch/__tests__/StyledSwitch.spec.tsx +25 -0
- package/src/components/Switch/__tests__/__snapshots__/{StyledHeading.spec.tsx.snap → StyledSwitch.spec.tsx.snap} +45 -18
- package/src/components/Switch/__tests__/__snapshots__/index.spec.tsx.snap +26 -52
- package/src/components/Switch/index.tsx +23 -20
- package/src/components/Tabs/ScrollableTabs.tsx +1 -1
- package/src/components/Tabs/__tests__/ScrollableTabs.spec.tsx +4 -2
- package/src/components/Tabs/__tests__/index.spec.tsx +4 -2
- package/src/components/Tabs/index.tsx +7 -13
- package/src/components/Tag/index.tsx +1 -1
- package/src/components/TextInput/index.tsx +5 -5
- package/src/components/TimePicker/StyledTimePicker.tsx +2 -1
- package/src/components/TimePicker/TimePickerAndroid.tsx +1 -1
- package/src/components/TimePicker/TimePickerIOS.tsx +1 -1
- package/src/components/TimePicker/__tests__/TimePickerIOS.spec.tsx +1 -2
- package/src/components/TimePicker/index.tsx +1 -1
- package/src/components/TimePicker/types.ts +1 -1
- package/src/components/Toast/StyledToast.tsx +3 -8
- package/src/components/Toast/Toast.tsx +3 -2
- package/src/components/Toast/ToastContainer.tsx +2 -2
- package/src/components/Toast/ToastContext.ts +1 -1
- package/src/components/Toast/ToastProvider.tsx +5 -7
- package/src/components/Toast/__tests__/ToastContainer.spec.tsx +1 -1
- package/src/components/Toast/types.ts +3 -3
- package/src/components/Toolbar/StyledToolbar.tsx +2 -1
- package/src/components/Toolbar/ToolbarGroup.tsx +2 -1
- package/src/components/Toolbar/ToolbarItem.tsx +2 -1
- package/src/components/Toolbar/index.tsx +2 -1
- package/src/components/Typography/Text/index.tsx +3 -2
- package/src/testHelpers/renderWithTheme.tsx +2 -1
- package/src/theme/ThemeProvider.ts +1 -1
- package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +24 -26
- package/src/theme/components/accordion.ts +1 -1
- package/src/theme/components/alert.ts +1 -1
- package/src/theme/components/avatar.ts +1 -1
- package/src/theme/components/badge.ts +1 -1
- package/src/theme/components/bottomNavigation.ts +1 -1
- package/src/theme/components/bottomSheet.ts +1 -1
- package/src/theme/components/button.ts +1 -1
- package/src/theme/components/calendar.ts +1 -1
- package/src/theme/components/card.ts +1 -1
- package/src/theme/components/checkbox.ts +12 -8
- package/src/theme/components/contentNavigator.ts +1 -1
- package/src/theme/components/divider.ts +1 -1
- package/src/theme/components/drawer.ts +1 -1
- package/src/theme/components/empty.ts +1 -1
- package/src/theme/components/fab.ts +1 -1
- package/src/theme/components/icon.ts +1 -1
- package/src/theme/components/list.ts +5 -4
- package/src/theme/components/pinInput.ts +1 -1
- package/src/theme/components/progress.ts +1 -1
- package/src/theme/components/radio.ts +3 -11
- package/src/theme/components/richTextEditor.ts +1 -1
- package/src/theme/components/sectionHeading.ts +1 -1
- package/src/theme/components/select.ts +1 -1
- package/src/theme/components/spinner.ts +1 -1
- package/src/theme/components/switch.ts +7 -8
- package/src/theme/components/tabs.ts +1 -1
- package/src/theme/components/tag.ts +1 -1
- package/src/theme/components/textInput.ts +1 -1
- package/src/theme/components/toast.ts +1 -1
- package/src/theme/components/toolbar.ts +1 -1
- package/src/theme/components/typography.ts +1 -1
- package/src/theme/getTheme.ts +4 -11
- package/src/theme/global/borders.ts +2 -1
- package/src/theme/global/colors/swag.ts +2 -3
- package/src/theme/global/colors/work.ts +1 -2
- package/src/theme/global/index.ts +6 -11
- package/src/theme/global/scale.ts +2 -1
- package/src/theme/global/space.ts +2 -1
- package/src/theme/global/typography.ts +2 -8
- package/src/theme/index.ts +5 -2
- package/src/types.ts +9 -10
- package/testUtils/setup.tsx +2 -0
- package/tsconfig.json +4 -9
- package/types/components/Accordion/AccordionItem.d.ts +3 -3
- package/types/components/Accordion/index.d.ts +3 -2
- package/types/components/Alert/StyledAlert.d.ts +2 -1
- package/types/components/Alert/index.d.ts +3 -3
- package/types/components/Avatar/index.d.ts +1 -1
- package/types/components/Badge/Status.d.ts +2 -2
- package/types/components/Badge/index.d.ts +2 -1
- package/types/components/BottomNavigation/index.d.ts +3 -3
- package/types/components/BottomSheet/Footer.d.ts +1 -1
- package/types/components/BottomSheet/Header.d.ts +1 -1
- package/types/components/BottomSheet/StyledBottomSheet.d.ts +2 -1
- package/types/components/BottomSheet/index.d.ts +2 -2
- package/types/components/Button/Button.d.ts +4 -4
- package/types/components/Button/IconButton.d.ts +2 -2
- package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +3 -2
- package/types/components/Button/LoadingIndicator/index.d.ts +1 -1
- package/types/components/Button/StyledButton.d.ts +3 -2
- package/types/components/Button/UtilityButton/index.d.ts +3 -3
- package/types/components/Button/index.d.ts +2 -2
- package/types/components/Calendar/StyledCalendar.d.ts +2 -1
- package/types/components/Card/DataCard/index.d.ts +2 -2
- package/types/components/Card/index.d.ts +2 -2
- package/types/components/Checkbox/StyledCheckbox.d.ts +21 -3
- package/types/components/Checkbox/index.d.ts +11 -3
- package/types/components/Collapse/index.d.ts +2 -2
- package/types/components/ContentNavigator/index.d.ts +1 -1
- package/types/components/DatePicker/DatePickerAndroid.d.ts +1 -1
- package/types/components/DatePicker/DatePickerIOS.d.ts +1 -1
- package/types/components/DatePicker/StyledDatePicker.d.ts +2 -1
- package/types/components/DatePicker/index.d.ts +1 -1
- package/types/components/DatePicker/types.d.ts +1 -1
- package/types/components/Divider/index.d.ts +1 -1
- package/types/components/Drawer/DragableDrawer/index.d.ts +1 -1
- package/types/components/Drawer/StyledDrawer.d.ts +2 -1
- package/types/components/Drawer/index.d.ts +1 -1
- package/types/components/Empty/index.d.ts +1 -1
- package/types/components/FAB/ActionGroup/ActionItem.d.ts +2 -2
- package/types/components/FAB/ActionGroup/StyledActionGroup.d.ts +3 -2
- package/types/components/FAB/ActionGroup/StyledActionItem.d.ts +3 -2
- package/types/components/FAB/ActionGroup/index.d.ts +3 -3
- package/types/components/FAB/AnimatedFABIcon.d.ts +1 -1
- package/types/components/FAB/FAB.d.ts +2 -2
- package/types/components/FAB/StyledFAB.d.ts +3 -2
- package/types/components/Icon/AnimatedIcon.d.ts +1 -1
- package/types/components/Icon/index.d.ts +1 -1
- package/types/components/List/BasicListItem.d.ts +2 -2
- package/types/components/List/ListItem.d.ts +4 -3
- package/types/components/PinInput/PinCell.d.ts +1 -1
- package/types/components/PinInput/index.d.ts +2 -2
- package/types/components/Progress/ProgressBar.d.ts +1 -1
- package/types/components/Progress/ProgressCircle.d.ts +1 -1
- package/types/components/Progress/StyledProgressBar.d.ts +3 -2
- package/types/components/Progress/StyledProgressCircle.d.ts +3 -2
- package/types/components/Radio/Radio.d.ts +2 -2
- package/types/components/Radio/RadioGroup.d.ts +3 -3
- package/types/components/Radio/StyledRadio.d.ts +2 -12
- package/types/components/RichTextEditor/RichTextEditor.d.ts +3 -2
- package/types/components/RichTextEditor/index.d.ts +3 -2
- package/types/components/SectionHeading/index.d.ts +3 -3
- package/types/components/Select/MultiSelect/Option.d.ts +1 -1
- package/types/components/Select/MultiSelect/OptionList.d.ts +2 -2
- package/types/components/Select/MultiSelect/index.d.ts +1 -1
- package/types/components/Select/SingleSelect/Option.d.ts +1 -1
- package/types/components/Select/SingleSelect/OptionList.d.ts +2 -2
- package/types/components/Select/SingleSelect/index.d.ts +1 -1
- package/types/components/Select/StyledOptionList.d.ts +4 -4
- package/types/components/Select/helpers.d.ts +1 -1
- package/types/components/Select/index.d.ts +4 -3
- package/types/components/Select/types.d.ts +3 -3
- package/types/components/Spinner/StyledSpinner.d.ts +2 -1
- package/types/components/Spinner/index.d.ts +2 -2
- package/types/components/Switch/StyledSwitch.d.ts +3 -18
- package/types/components/{Radio/__tests__/StyledRadio.spec.d.ts → Switch/__tests__/StyledSwitch.spec.d.ts} +0 -0
- package/types/components/Switch/index.d.ts +3 -2
- package/types/components/Tabs/ScrollableTabs.d.ts +1 -1
- package/types/components/Tabs/index.d.ts +3 -3
- package/types/components/Tag/index.d.ts +1 -1
- package/types/components/TextInput/index.d.ts +3 -3
- package/types/components/TimePicker/StyledTimePicker.d.ts +2 -1
- package/types/components/TimePicker/TimePickerAndroid.d.ts +1 -1
- package/types/components/TimePicker/TimePickerIOS.d.ts +1 -1
- package/types/components/TimePicker/index.d.ts +1 -1
- package/types/components/TimePicker/types.d.ts +1 -1
- package/types/components/Toast/StyledToast.d.ts +2 -1
- package/types/components/Toast/Toast.d.ts +1 -1
- package/types/components/Toast/ToastContainer.d.ts +2 -2
- package/types/components/Toast/ToastContext.d.ts +1 -1
- package/types/components/Toast/ToastProvider.d.ts +2 -2
- package/types/components/Toast/types.d.ts +3 -3
- package/types/components/Toolbar/StyledToolbar.d.ts +2 -1
- package/types/components/Toolbar/ToolbarGroup.d.ts +1 -1
- package/types/components/Toolbar/ToolbarItem.d.ts +1 -1
- package/types/components/Toolbar/index.d.ts +1 -1
- package/types/components/Typography/Text/index.d.ts +2 -2
- package/types/testHelpers/renderWithTheme.d.ts +1 -1
- package/types/theme/ThemeProvider.d.ts +1 -1
- package/types/theme/components/accordion.d.ts +1 -1
- package/types/theme/components/alert.d.ts +1 -1
- package/types/theme/components/avatar.d.ts +1 -1
- package/types/theme/components/badge.d.ts +1 -1
- package/types/theme/components/bottomNavigation.d.ts +1 -1
- package/types/theme/components/bottomSheet.d.ts +1 -1
- package/types/theme/components/button.d.ts +1 -1
- package/types/theme/components/calendar.d.ts +1 -1
- package/types/theme/components/card.d.ts +1 -1
- package/types/theme/components/checkbox.d.ts +10 -7
- package/types/theme/components/contentNavigator.d.ts +1 -1
- package/types/theme/components/divider.d.ts +1 -1
- package/types/theme/components/drawer.d.ts +1 -1
- package/types/theme/components/empty.d.ts +1 -1
- package/types/theme/components/fab.d.ts +1 -1
- package/types/theme/components/icon.d.ts +1 -1
- package/types/theme/components/list.d.ts +8 -7
- package/types/theme/components/pinInput.d.ts +1 -1
- package/types/theme/components/progress.d.ts +1 -1
- package/types/theme/components/radio.d.ts +1 -8
- package/types/theme/components/richTextEditor.d.ts +1 -1
- package/types/theme/components/sectionHeading.d.ts +1 -1
- package/types/theme/components/select.d.ts +1 -1
- package/types/theme/components/spinner.d.ts +1 -1
- package/types/theme/components/switch.d.ts +7 -6
- package/types/theme/components/tabs.d.ts +1 -1
- package/types/theme/components/tag.d.ts +1 -1
- package/types/theme/components/textInput.d.ts +1 -1
- package/types/theme/components/toast.d.ts +1 -1
- package/types/theme/components/toolbar.d.ts +1 -1
- package/types/theme/components/typography.d.ts +1 -1
- package/types/theme/getTheme.d.ts +2 -2
- package/types/theme/global/borders.d.ts +2 -1
- package/types/theme/global/colors/swag.d.ts +1 -1
- package/types/theme/global/colors/work.d.ts +1 -1
- package/types/theme/global/index.d.ts +5 -3
- package/types/theme/global/scale.d.ts +2 -1
- package/types/theme/global/space.d.ts +2 -1
- package/types/theme/global/typography.d.ts +2 -1
- package/types/theme/index.d.ts +4 -2
- package/types/types.d.ts +9 -8
- package/src/components/Radio/__tests__/StyledRadio.spec.tsx +0 -43
- package/src/components/Radio/__tests__/__snapshots__/StyledRadio.spec.tsx.snap +0 -124
- package/src/components/Switch/__tests__/StyledHeading.spec.tsx +0 -42
- package/types/components/Switch/__tests__/StyledHeading.spec.d.ts +0 -1
|
@@ -22,176 +22,180 @@ Array [
|
|
|
22
22
|
}
|
|
23
23
|
>
|
|
24
24
|
<View
|
|
25
|
-
pointerEvents="
|
|
26
|
-
style={
|
|
27
|
-
Array [
|
|
28
|
-
Object {
|
|
29
|
-
"marginVertical": 8,
|
|
30
|
-
"width": "100%",
|
|
31
|
-
},
|
|
32
|
-
undefined,
|
|
33
|
-
]
|
|
34
|
-
}
|
|
25
|
+
pointerEvents="none"
|
|
35
26
|
>
|
|
36
27
|
<View
|
|
28
|
+
pointerEvents="auto"
|
|
37
29
|
style={
|
|
38
30
|
Array [
|
|
39
31
|
Object {
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"padding": 16,
|
|
32
|
+
"marginVertical": 8,
|
|
33
|
+
"width": "100%",
|
|
43
34
|
},
|
|
44
35
|
undefined,
|
|
45
36
|
]
|
|
46
37
|
}
|
|
47
38
|
>
|
|
48
|
-
<View
|
|
49
|
-
style={
|
|
50
|
-
Array [
|
|
51
|
-
Object {
|
|
52
|
-
"borderColor": "#001f23",
|
|
53
|
-
"borderRadius": 8,
|
|
54
|
-
"borderWidth": 1,
|
|
55
|
-
"bottom": 0,
|
|
56
|
-
"left": 0,
|
|
57
|
-
"position": "absolute",
|
|
58
|
-
"right": 0,
|
|
59
|
-
"top": 0,
|
|
60
|
-
},
|
|
61
|
-
undefined,
|
|
62
|
-
]
|
|
63
|
-
}
|
|
64
|
-
themeVariant="default"
|
|
65
|
-
/>
|
|
66
39
|
<View
|
|
67
40
|
style={
|
|
68
41
|
Array [
|
|
69
42
|
Object {
|
|
70
43
|
"alignItems": "center",
|
|
71
|
-
"alignSelf": "stretch",
|
|
72
44
|
"flexDirection": "row",
|
|
73
|
-
"
|
|
74
|
-
"flexShrink": 1,
|
|
45
|
+
"padding": 16,
|
|
75
46
|
},
|
|
76
47
|
undefined,
|
|
77
48
|
]
|
|
78
49
|
}
|
|
79
50
|
>
|
|
80
51
|
<View
|
|
81
|
-
pointerEvents="none"
|
|
82
52
|
style={
|
|
83
53
|
Array [
|
|
84
54
|
Object {
|
|
85
|
-
"
|
|
55
|
+
"borderColor": "#001f23",
|
|
56
|
+
"borderRadius": 8,
|
|
57
|
+
"borderWidth": 1,
|
|
86
58
|
"bottom": 0,
|
|
87
|
-
"flexDirection": "row",
|
|
88
59
|
"left": 0,
|
|
89
60
|
"position": "absolute",
|
|
90
61
|
"right": 0,
|
|
91
62
|
"top": 0,
|
|
92
|
-
|
|
63
|
+
},
|
|
64
|
+
undefined,
|
|
65
|
+
]
|
|
66
|
+
}
|
|
67
|
+
themeVariant="default"
|
|
68
|
+
/>
|
|
69
|
+
<View
|
|
70
|
+
style={
|
|
71
|
+
Array [
|
|
72
|
+
Object {
|
|
73
|
+
"alignItems": "center",
|
|
74
|
+
"alignSelf": "stretch",
|
|
75
|
+
"flexDirection": "row",
|
|
76
|
+
"flexGrow": 2,
|
|
77
|
+
"flexShrink": 1,
|
|
93
78
|
},
|
|
94
79
|
undefined,
|
|
95
80
|
]
|
|
96
81
|
}
|
|
97
82
|
>
|
|
98
|
-
<
|
|
83
|
+
<View
|
|
84
|
+
pointerEvents="none"
|
|
99
85
|
style={
|
|
100
86
|
Array [
|
|
101
87
|
Object {
|
|
102
|
-
"
|
|
103
|
-
"
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
88
|
+
"alignItems": "center",
|
|
89
|
+
"bottom": 0,
|
|
90
|
+
"flexDirection": "row",
|
|
91
|
+
"left": 0,
|
|
92
|
+
"position": "absolute",
|
|
93
|
+
"right": 0,
|
|
94
|
+
"top": 0,
|
|
95
|
+
"zIndex": 9999,
|
|
107
96
|
},
|
|
97
|
+
undefined,
|
|
98
|
+
]
|
|
99
|
+
}
|
|
100
|
+
>
|
|
101
|
+
<Text
|
|
102
|
+
style={
|
|
108
103
|
Array [
|
|
109
104
|
Object {
|
|
110
|
-
"alignContent": "center",
|
|
111
|
-
"alignItems": "center",
|
|
112
105
|
"color": "#001f23",
|
|
106
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
113
107
|
"fontSize": 14,
|
|
114
|
-
"
|
|
108
|
+
"letterSpacing": 0.42,
|
|
109
|
+
"lineHeight": 22,
|
|
115
110
|
},
|
|
116
|
-
|
|
117
|
-
|
|
111
|
+
Array [
|
|
112
|
+
Object {
|
|
113
|
+
"alignContent": "center",
|
|
114
|
+
"alignItems": "center",
|
|
115
|
+
"color": "#001f23",
|
|
116
|
+
"fontSize": 14,
|
|
117
|
+
"textAlignVertical": "center",
|
|
118
|
+
},
|
|
119
|
+
undefined,
|
|
120
|
+
],
|
|
121
|
+
]
|
|
122
|
+
}
|
|
123
|
+
testID="input-label"
|
|
124
|
+
themeFontSize="medium"
|
|
125
|
+
themeFontWeight="regular"
|
|
126
|
+
themeIntent="body"
|
|
127
|
+
themeVariant="default"
|
|
128
|
+
>
|
|
129
|
+
Choose collaborators
|
|
130
|
+
</Text>
|
|
131
|
+
</View>
|
|
132
|
+
<TextInput
|
|
133
|
+
accessibilityState={
|
|
134
|
+
Object {
|
|
135
|
+
"disabled": false,
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
editable={true}
|
|
139
|
+
multiline={true}
|
|
140
|
+
onBlur={[Function]}
|
|
141
|
+
onChangeText={[Function]}
|
|
142
|
+
onFocus={[Function]}
|
|
143
|
+
pointerEvents="none"
|
|
144
|
+
style={
|
|
145
|
+
Array [
|
|
146
|
+
Object {
|
|
147
|
+
"alignSelf": "stretch",
|
|
148
|
+
"flexGrow": 2,
|
|
149
|
+
"fontSize": 14,
|
|
150
|
+
"marginHorizontal": 8,
|
|
151
|
+
"textAlignVertical": "center",
|
|
152
|
+
},
|
|
153
|
+
Object {
|
|
154
|
+
"color": "#001f23",
|
|
155
|
+
},
|
|
118
156
|
]
|
|
119
157
|
}
|
|
120
|
-
testID="input
|
|
121
|
-
|
|
122
|
-
themeFontWeight="regular"
|
|
123
|
-
themeIntent="body"
|
|
124
|
-
themeVariant="default"
|
|
125
|
-
>
|
|
126
|
-
Choose collaborators
|
|
127
|
-
</Text>
|
|
158
|
+
testID="text-input"
|
|
159
|
+
/>
|
|
128
160
|
</View>
|
|
129
|
-
<
|
|
130
|
-
|
|
131
|
-
Object {
|
|
132
|
-
"disabled": false,
|
|
133
|
-
}
|
|
134
|
-
}
|
|
135
|
-
editable={true}
|
|
136
|
-
multiline={true}
|
|
137
|
-
onBlur={[Function]}
|
|
138
|
-
onChangeText={[Function]}
|
|
139
|
-
onFocus={[Function]}
|
|
140
|
-
pointerEvents="none"
|
|
161
|
+
<HeroIcon
|
|
162
|
+
name="arrow-down"
|
|
141
163
|
style={
|
|
142
164
|
Array [
|
|
143
|
-
Object {
|
|
144
|
-
"alignSelf": "stretch",
|
|
145
|
-
"flexGrow": 2,
|
|
146
|
-
"fontSize": 14,
|
|
147
|
-
"marginHorizontal": 8,
|
|
148
|
-
"textAlignVertical": "center",
|
|
149
|
-
},
|
|
150
165
|
Object {
|
|
151
166
|
"color": "#001f23",
|
|
167
|
+
"fontSize": 16,
|
|
152
168
|
},
|
|
169
|
+
undefined,
|
|
153
170
|
]
|
|
154
171
|
}
|
|
155
|
-
testID="
|
|
172
|
+
testID="input-suffix"
|
|
173
|
+
themeIntent="text"
|
|
174
|
+
themeSize="xsmall"
|
|
156
175
|
/>
|
|
157
176
|
</View>
|
|
158
|
-
<HeroIcon
|
|
159
|
-
name="arrow-down"
|
|
160
|
-
style={
|
|
161
|
-
Array [
|
|
162
|
-
Object {
|
|
163
|
-
"color": "#001f23",
|
|
164
|
-
"fontSize": 16,
|
|
165
|
-
},
|
|
166
|
-
undefined,
|
|
167
|
-
]
|
|
168
|
-
}
|
|
169
|
-
testID="input-suffix"
|
|
170
|
-
themeIntent="text"
|
|
171
|
-
themeSize="xsmall"
|
|
172
|
-
/>
|
|
173
|
-
</View>
|
|
174
|
-
<View
|
|
175
|
-
style={
|
|
176
|
-
Array [
|
|
177
|
-
Object {
|
|
178
|
-
"paddingLeft": 16,
|
|
179
|
-
},
|
|
180
|
-
undefined,
|
|
181
|
-
]
|
|
182
|
-
}
|
|
183
|
-
>
|
|
184
177
|
<View
|
|
185
178
|
style={
|
|
186
179
|
Array [
|
|
187
180
|
Object {
|
|
188
|
-
"
|
|
189
|
-
"justifyContent": "space-between",
|
|
181
|
+
"paddingLeft": 16,
|
|
190
182
|
},
|
|
191
183
|
undefined,
|
|
192
184
|
]
|
|
193
185
|
}
|
|
194
|
-
|
|
186
|
+
>
|
|
187
|
+
<View
|
|
188
|
+
style={
|
|
189
|
+
Array [
|
|
190
|
+
Object {
|
|
191
|
+
"flexDirection": "row",
|
|
192
|
+
"justifyContent": "space-between",
|
|
193
|
+
},
|
|
194
|
+
undefined,
|
|
195
|
+
]
|
|
196
|
+
}
|
|
197
|
+
/>
|
|
198
|
+
</View>
|
|
195
199
|
</View>
|
|
196
200
|
</View>
|
|
197
201
|
</View>
|
|
@@ -1274,24 +1278,15 @@ Array [
|
|
|
1274
1278
|
}
|
|
1275
1279
|
>
|
|
1276
1280
|
<View
|
|
1277
|
-
pointerEvents="
|
|
1278
|
-
style={
|
|
1279
|
-
Array [
|
|
1280
|
-
Object {
|
|
1281
|
-
"marginVertical": 8,
|
|
1282
|
-
"width": "100%",
|
|
1283
|
-
},
|
|
1284
|
-
undefined,
|
|
1285
|
-
]
|
|
1286
|
-
}
|
|
1281
|
+
pointerEvents="none"
|
|
1287
1282
|
>
|
|
1288
1283
|
<View
|
|
1284
|
+
pointerEvents="auto"
|
|
1289
1285
|
style={
|
|
1290
1286
|
Array [
|
|
1291
1287
|
Object {
|
|
1292
|
-
"
|
|
1293
|
-
"
|
|
1294
|
-
"padding": 16,
|
|
1288
|
+
"marginVertical": 8,
|
|
1289
|
+
"width": "100%",
|
|
1295
1290
|
},
|
|
1296
1291
|
undefined,
|
|
1297
1292
|
]
|
|
@@ -1301,145 +1296,158 @@ Array [
|
|
|
1301
1296
|
style={
|
|
1302
1297
|
Array [
|
|
1303
1298
|
Object {
|
|
1304
|
-
"
|
|
1305
|
-
"borderRadius": 8,
|
|
1306
|
-
"borderWidth": 1,
|
|
1307
|
-
"bottom": 0,
|
|
1308
|
-
"left": 0,
|
|
1309
|
-
"position": "absolute",
|
|
1310
|
-
"right": 0,
|
|
1311
|
-
"top": 0,
|
|
1312
|
-
},
|
|
1313
|
-
undefined,
|
|
1314
|
-
]
|
|
1315
|
-
}
|
|
1316
|
-
themeVariant="filled"
|
|
1317
|
-
/>
|
|
1318
|
-
<View
|
|
1319
|
-
pointerEvents="none"
|
|
1320
|
-
style={
|
|
1321
|
-
Array [
|
|
1322
|
-
Object {
|
|
1323
|
-
"backgroundColor": "#ffffff",
|
|
1299
|
+
"alignItems": "center",
|
|
1324
1300
|
"flexDirection": "row",
|
|
1325
|
-
"
|
|
1326
|
-
"paddingHorizontal": 4,
|
|
1327
|
-
"position": "absolute",
|
|
1328
|
-
"top": -10,
|
|
1329
|
-
"zIndex": 1,
|
|
1301
|
+
"padding": 16,
|
|
1330
1302
|
},
|
|
1331
1303
|
undefined,
|
|
1332
1304
|
]
|
|
1333
1305
|
}
|
|
1334
1306
|
>
|
|
1335
|
-
<
|
|
1307
|
+
<View
|
|
1336
1308
|
style={
|
|
1337
1309
|
Array [
|
|
1338
1310
|
Object {
|
|
1339
|
-
"
|
|
1340
|
-
"
|
|
1341
|
-
"
|
|
1342
|
-
"
|
|
1343
|
-
"
|
|
1311
|
+
"borderColor": "#001f23",
|
|
1312
|
+
"borderRadius": 8,
|
|
1313
|
+
"borderWidth": 1,
|
|
1314
|
+
"bottom": 0,
|
|
1315
|
+
"left": 0,
|
|
1316
|
+
"position": "absolute",
|
|
1317
|
+
"right": 0,
|
|
1318
|
+
"top": 0,
|
|
1344
1319
|
},
|
|
1345
|
-
|
|
1346
|
-
Object {
|
|
1347
|
-
"color": "#001f23",
|
|
1348
|
-
},
|
|
1349
|
-
undefined,
|
|
1350
|
-
],
|
|
1320
|
+
undefined,
|
|
1351
1321
|
]
|
|
1352
1322
|
}
|
|
1353
|
-
testID="input-label"
|
|
1354
|
-
themeFontSize="small"
|
|
1355
|
-
themeFontWeight="regular"
|
|
1356
|
-
themeIntent="body"
|
|
1357
1323
|
themeVariant="filled"
|
|
1324
|
+
/>
|
|
1325
|
+
<View
|
|
1326
|
+
pointerEvents="none"
|
|
1327
|
+
style={
|
|
1328
|
+
Array [
|
|
1329
|
+
Object {
|
|
1330
|
+
"backgroundColor": "#ffffff",
|
|
1331
|
+
"flexDirection": "row",
|
|
1332
|
+
"left": 16,
|
|
1333
|
+
"paddingHorizontal": 4,
|
|
1334
|
+
"position": "absolute",
|
|
1335
|
+
"top": -10,
|
|
1336
|
+
"zIndex": 1,
|
|
1337
|
+
},
|
|
1338
|
+
undefined,
|
|
1339
|
+
]
|
|
1340
|
+
}
|
|
1358
1341
|
>
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
<TextInput
|
|
1377
|
-
accessibilityState={
|
|
1378
|
-
Object {
|
|
1379
|
-
"disabled": false,
|
|
1342
|
+
<Text
|
|
1343
|
+
style={
|
|
1344
|
+
Array [
|
|
1345
|
+
Object {
|
|
1346
|
+
"color": "#001f23",
|
|
1347
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
1348
|
+
"fontSize": 12,
|
|
1349
|
+
"letterSpacing": 0.36,
|
|
1350
|
+
"lineHeight": 20,
|
|
1351
|
+
},
|
|
1352
|
+
Array [
|
|
1353
|
+
Object {
|
|
1354
|
+
"color": "#001f23",
|
|
1355
|
+
},
|
|
1356
|
+
undefined,
|
|
1357
|
+
],
|
|
1358
|
+
]
|
|
1380
1359
|
}
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1360
|
+
testID="input-label"
|
|
1361
|
+
themeFontSize="small"
|
|
1362
|
+
themeFontWeight="regular"
|
|
1363
|
+
themeIntent="body"
|
|
1364
|
+
themeVariant="filled"
|
|
1365
|
+
>
|
|
1366
|
+
Allow notifications
|
|
1367
|
+
</Text>
|
|
1368
|
+
</View>
|
|
1369
|
+
<View
|
|
1388
1370
|
style={
|
|
1389
1371
|
Array [
|
|
1390
1372
|
Object {
|
|
1373
|
+
"alignItems": "center",
|
|
1391
1374
|
"alignSelf": "stretch",
|
|
1375
|
+
"flexDirection": "row",
|
|
1392
1376
|
"flexGrow": 2,
|
|
1393
|
-
"
|
|
1394
|
-
"marginHorizontal": 8,
|
|
1395
|
-
"textAlignVertical": "center",
|
|
1377
|
+
"flexShrink": 1,
|
|
1396
1378
|
},
|
|
1379
|
+
undefined,
|
|
1380
|
+
]
|
|
1381
|
+
}
|
|
1382
|
+
>
|
|
1383
|
+
<TextInput
|
|
1384
|
+
accessibilityState={
|
|
1385
|
+
Object {
|
|
1386
|
+
"disabled": false,
|
|
1387
|
+
}
|
|
1388
|
+
}
|
|
1389
|
+
editable={true}
|
|
1390
|
+
multiline={true}
|
|
1391
|
+
onBlur={[Function]}
|
|
1392
|
+
onChangeText={[Function]}
|
|
1393
|
+
onFocus={[Function]}
|
|
1394
|
+
pointerEvents="none"
|
|
1395
|
+
style={
|
|
1396
|
+
Array [
|
|
1397
|
+
Object {
|
|
1398
|
+
"alignSelf": "stretch",
|
|
1399
|
+
"flexGrow": 2,
|
|
1400
|
+
"fontSize": 14,
|
|
1401
|
+
"marginHorizontal": 8,
|
|
1402
|
+
"textAlignVertical": "center",
|
|
1403
|
+
},
|
|
1404
|
+
Object {
|
|
1405
|
+
"color": "#001f23",
|
|
1406
|
+
},
|
|
1407
|
+
]
|
|
1408
|
+
}
|
|
1409
|
+
testID="text-input"
|
|
1410
|
+
value="Monday"
|
|
1411
|
+
/>
|
|
1412
|
+
</View>
|
|
1413
|
+
<HeroIcon
|
|
1414
|
+
name="arrow-down"
|
|
1415
|
+
style={
|
|
1416
|
+
Array [
|
|
1397
1417
|
Object {
|
|
1398
1418
|
"color": "#001f23",
|
|
1419
|
+
"fontSize": 16,
|
|
1399
1420
|
},
|
|
1421
|
+
undefined,
|
|
1400
1422
|
]
|
|
1401
1423
|
}
|
|
1402
|
-
testID="
|
|
1403
|
-
|
|
1424
|
+
testID="input-suffix"
|
|
1425
|
+
themeIntent="text"
|
|
1426
|
+
themeSize="xsmall"
|
|
1404
1427
|
/>
|
|
1405
1428
|
</View>
|
|
1406
|
-
<HeroIcon
|
|
1407
|
-
name="arrow-down"
|
|
1408
|
-
style={
|
|
1409
|
-
Array [
|
|
1410
|
-
Object {
|
|
1411
|
-
"color": "#001f23",
|
|
1412
|
-
"fontSize": 16,
|
|
1413
|
-
},
|
|
1414
|
-
undefined,
|
|
1415
|
-
]
|
|
1416
|
-
}
|
|
1417
|
-
testID="input-suffix"
|
|
1418
|
-
themeIntent="text"
|
|
1419
|
-
themeSize="xsmall"
|
|
1420
|
-
/>
|
|
1421
|
-
</View>
|
|
1422
|
-
<View
|
|
1423
|
-
style={
|
|
1424
|
-
Array [
|
|
1425
|
-
Object {
|
|
1426
|
-
"paddingLeft": 16,
|
|
1427
|
-
},
|
|
1428
|
-
undefined,
|
|
1429
|
-
]
|
|
1430
|
-
}
|
|
1431
|
-
>
|
|
1432
1429
|
<View
|
|
1433
1430
|
style={
|
|
1434
1431
|
Array [
|
|
1435
1432
|
Object {
|
|
1436
|
-
"
|
|
1437
|
-
"justifyContent": "space-between",
|
|
1433
|
+
"paddingLeft": 16,
|
|
1438
1434
|
},
|
|
1439
1435
|
undefined,
|
|
1440
1436
|
]
|
|
1441
1437
|
}
|
|
1442
|
-
|
|
1438
|
+
>
|
|
1439
|
+
<View
|
|
1440
|
+
style={
|
|
1441
|
+
Array [
|
|
1442
|
+
Object {
|
|
1443
|
+
"flexDirection": "row",
|
|
1444
|
+
"justifyContent": "space-between",
|
|
1445
|
+
},
|
|
1446
|
+
undefined,
|
|
1447
|
+
]
|
|
1448
|
+
}
|
|
1449
|
+
/>
|
|
1450
|
+
</View>
|
|
1443
1451
|
</View>
|
|
1444
1452
|
</View>
|
|
1445
1453
|
</View>
|
|
@@ -2668,24 +2676,15 @@ Array [
|
|
|
2668
2676
|
}
|
|
2669
2677
|
>
|
|
2670
2678
|
<View
|
|
2671
|
-
pointerEvents="
|
|
2672
|
-
style={
|
|
2673
|
-
Array [
|
|
2674
|
-
Object {
|
|
2675
|
-
"marginVertical": 8,
|
|
2676
|
-
"width": "100%",
|
|
2677
|
-
},
|
|
2678
|
-
undefined,
|
|
2679
|
-
]
|
|
2680
|
-
}
|
|
2679
|
+
pointerEvents="none"
|
|
2681
2680
|
>
|
|
2682
2681
|
<View
|
|
2682
|
+
pointerEvents="auto"
|
|
2683
2683
|
style={
|
|
2684
2684
|
Array [
|
|
2685
2685
|
Object {
|
|
2686
|
-
"
|
|
2687
|
-
"
|
|
2688
|
-
"padding": 16,
|
|
2686
|
+
"marginVertical": 8,
|
|
2687
|
+
"width": "100%",
|
|
2689
2688
|
},
|
|
2690
2689
|
undefined,
|
|
2691
2690
|
]
|
|
@@ -2695,145 +2694,158 @@ Array [
|
|
|
2695
2694
|
style={
|
|
2696
2695
|
Array [
|
|
2697
2696
|
Object {
|
|
2698
|
-
"
|
|
2699
|
-
"borderRadius": 8,
|
|
2700
|
-
"borderWidth": 1,
|
|
2701
|
-
"bottom": 0,
|
|
2702
|
-
"left": 0,
|
|
2703
|
-
"position": "absolute",
|
|
2704
|
-
"right": 0,
|
|
2705
|
-
"top": 0,
|
|
2706
|
-
},
|
|
2707
|
-
undefined,
|
|
2708
|
-
]
|
|
2709
|
-
}
|
|
2710
|
-
themeVariant="filled"
|
|
2711
|
-
/>
|
|
2712
|
-
<View
|
|
2713
|
-
pointerEvents="none"
|
|
2714
|
-
style={
|
|
2715
|
-
Array [
|
|
2716
|
-
Object {
|
|
2717
|
-
"backgroundColor": "#ffffff",
|
|
2697
|
+
"alignItems": "center",
|
|
2718
2698
|
"flexDirection": "row",
|
|
2719
|
-
"
|
|
2720
|
-
"paddingHorizontal": 4,
|
|
2721
|
-
"position": "absolute",
|
|
2722
|
-
"top": -10,
|
|
2723
|
-
"zIndex": 1,
|
|
2699
|
+
"padding": 16,
|
|
2724
2700
|
},
|
|
2725
2701
|
undefined,
|
|
2726
2702
|
]
|
|
2727
2703
|
}
|
|
2728
2704
|
>
|
|
2729
|
-
<
|
|
2705
|
+
<View
|
|
2730
2706
|
style={
|
|
2731
2707
|
Array [
|
|
2732
2708
|
Object {
|
|
2733
|
-
"
|
|
2734
|
-
"
|
|
2735
|
-
"
|
|
2736
|
-
"
|
|
2737
|
-
"
|
|
2709
|
+
"borderColor": "#001f23",
|
|
2710
|
+
"borderRadius": 8,
|
|
2711
|
+
"borderWidth": 1,
|
|
2712
|
+
"bottom": 0,
|
|
2713
|
+
"left": 0,
|
|
2714
|
+
"position": "absolute",
|
|
2715
|
+
"right": 0,
|
|
2716
|
+
"top": 0,
|
|
2738
2717
|
},
|
|
2739
|
-
|
|
2740
|
-
Object {
|
|
2741
|
-
"color": "#001f23",
|
|
2742
|
-
},
|
|
2743
|
-
undefined,
|
|
2744
|
-
],
|
|
2718
|
+
undefined,
|
|
2745
2719
|
]
|
|
2746
2720
|
}
|
|
2747
|
-
testID="input-label"
|
|
2748
|
-
themeFontSize="small"
|
|
2749
|
-
themeFontWeight="regular"
|
|
2750
|
-
themeIntent="body"
|
|
2751
2721
|
themeVariant="filled"
|
|
2722
|
+
/>
|
|
2723
|
+
<View
|
|
2724
|
+
pointerEvents="none"
|
|
2725
|
+
style={
|
|
2726
|
+
Array [
|
|
2727
|
+
Object {
|
|
2728
|
+
"backgroundColor": "#ffffff",
|
|
2729
|
+
"flexDirection": "row",
|
|
2730
|
+
"left": 16,
|
|
2731
|
+
"paddingHorizontal": 4,
|
|
2732
|
+
"position": "absolute",
|
|
2733
|
+
"top": -10,
|
|
2734
|
+
"zIndex": 1,
|
|
2735
|
+
},
|
|
2736
|
+
undefined,
|
|
2737
|
+
]
|
|
2738
|
+
}
|
|
2752
2739
|
>
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
<TextInput
|
|
2771
|
-
accessibilityState={
|
|
2772
|
-
Object {
|
|
2773
|
-
"disabled": false,
|
|
2740
|
+
<Text
|
|
2741
|
+
style={
|
|
2742
|
+
Array [
|
|
2743
|
+
Object {
|
|
2744
|
+
"color": "#001f23",
|
|
2745
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
2746
|
+
"fontSize": 12,
|
|
2747
|
+
"letterSpacing": 0.36,
|
|
2748
|
+
"lineHeight": 20,
|
|
2749
|
+
},
|
|
2750
|
+
Array [
|
|
2751
|
+
Object {
|
|
2752
|
+
"color": "#001f23",
|
|
2753
|
+
},
|
|
2754
|
+
undefined,
|
|
2755
|
+
],
|
|
2756
|
+
]
|
|
2774
2757
|
}
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2758
|
+
testID="input-label"
|
|
2759
|
+
themeFontSize="small"
|
|
2760
|
+
themeFontWeight="regular"
|
|
2761
|
+
themeIntent="body"
|
|
2762
|
+
themeVariant="filled"
|
|
2763
|
+
>
|
|
2764
|
+
Allow notifications
|
|
2765
|
+
</Text>
|
|
2766
|
+
</View>
|
|
2767
|
+
<View
|
|
2782
2768
|
style={
|
|
2783
2769
|
Array [
|
|
2784
2770
|
Object {
|
|
2771
|
+
"alignItems": "center",
|
|
2785
2772
|
"alignSelf": "stretch",
|
|
2773
|
+
"flexDirection": "row",
|
|
2786
2774
|
"flexGrow": 2,
|
|
2787
|
-
"
|
|
2788
|
-
"marginHorizontal": 8,
|
|
2789
|
-
"textAlignVertical": "center",
|
|
2775
|
+
"flexShrink": 1,
|
|
2790
2776
|
},
|
|
2777
|
+
undefined,
|
|
2778
|
+
]
|
|
2779
|
+
}
|
|
2780
|
+
>
|
|
2781
|
+
<TextInput
|
|
2782
|
+
accessibilityState={
|
|
2783
|
+
Object {
|
|
2784
|
+
"disabled": false,
|
|
2785
|
+
}
|
|
2786
|
+
}
|
|
2787
|
+
editable={true}
|
|
2788
|
+
multiline={true}
|
|
2789
|
+
onBlur={[Function]}
|
|
2790
|
+
onChangeText={[Function]}
|
|
2791
|
+
onFocus={[Function]}
|
|
2792
|
+
pointerEvents="none"
|
|
2793
|
+
style={
|
|
2794
|
+
Array [
|
|
2795
|
+
Object {
|
|
2796
|
+
"alignSelf": "stretch",
|
|
2797
|
+
"flexGrow": 2,
|
|
2798
|
+
"fontSize": 14,
|
|
2799
|
+
"marginHorizontal": 8,
|
|
2800
|
+
"textAlignVertical": "center",
|
|
2801
|
+
},
|
|
2802
|
+
Object {
|
|
2803
|
+
"color": "#001f23",
|
|
2804
|
+
},
|
|
2805
|
+
]
|
|
2806
|
+
}
|
|
2807
|
+
testID="text-input"
|
|
2808
|
+
value="Monday"
|
|
2809
|
+
/>
|
|
2810
|
+
</View>
|
|
2811
|
+
<HeroIcon
|
|
2812
|
+
name="arrow-down"
|
|
2813
|
+
style={
|
|
2814
|
+
Array [
|
|
2791
2815
|
Object {
|
|
2792
2816
|
"color": "#001f23",
|
|
2817
|
+
"fontSize": 16,
|
|
2793
2818
|
},
|
|
2819
|
+
undefined,
|
|
2794
2820
|
]
|
|
2795
2821
|
}
|
|
2796
|
-
testID="
|
|
2797
|
-
|
|
2822
|
+
testID="input-suffix"
|
|
2823
|
+
themeIntent="text"
|
|
2824
|
+
themeSize="xsmall"
|
|
2798
2825
|
/>
|
|
2799
2826
|
</View>
|
|
2800
|
-
<HeroIcon
|
|
2801
|
-
name="arrow-down"
|
|
2802
|
-
style={
|
|
2803
|
-
Array [
|
|
2804
|
-
Object {
|
|
2805
|
-
"color": "#001f23",
|
|
2806
|
-
"fontSize": 16,
|
|
2807
|
-
},
|
|
2808
|
-
undefined,
|
|
2809
|
-
]
|
|
2810
|
-
}
|
|
2811
|
-
testID="input-suffix"
|
|
2812
|
-
themeIntent="text"
|
|
2813
|
-
themeSize="xsmall"
|
|
2814
|
-
/>
|
|
2815
|
-
</View>
|
|
2816
|
-
<View
|
|
2817
|
-
style={
|
|
2818
|
-
Array [
|
|
2819
|
-
Object {
|
|
2820
|
-
"paddingLeft": 16,
|
|
2821
|
-
},
|
|
2822
|
-
undefined,
|
|
2823
|
-
]
|
|
2824
|
-
}
|
|
2825
|
-
>
|
|
2826
2827
|
<View
|
|
2827
2828
|
style={
|
|
2828
2829
|
Array [
|
|
2829
2830
|
Object {
|
|
2830
|
-
"
|
|
2831
|
-
"justifyContent": "space-between",
|
|
2831
|
+
"paddingLeft": 16,
|
|
2832
2832
|
},
|
|
2833
2833
|
undefined,
|
|
2834
2834
|
]
|
|
2835
2835
|
}
|
|
2836
|
-
|
|
2836
|
+
>
|
|
2837
|
+
<View
|
|
2838
|
+
style={
|
|
2839
|
+
Array [
|
|
2840
|
+
Object {
|
|
2841
|
+
"flexDirection": "row",
|
|
2842
|
+
"justifyContent": "space-between",
|
|
2843
|
+
},
|
|
2844
|
+
undefined,
|
|
2845
|
+
]
|
|
2846
|
+
}
|
|
2847
|
+
/>
|
|
2848
|
+
</View>
|
|
2837
2849
|
</View>
|
|
2838
2850
|
</View>
|
|
2839
2851
|
</View>
|
|
@@ -4060,23 +4072,14 @@ Array [
|
|
|
4060
4072
|
>
|
|
4061
4073
|
<View
|
|
4062
4074
|
pointerEvents="none"
|
|
4063
|
-
style={
|
|
4064
|
-
Array [
|
|
4065
|
-
Object {
|
|
4066
|
-
"marginVertical": 8,
|
|
4067
|
-
"width": "100%",
|
|
4068
|
-
},
|
|
4069
|
-
undefined,
|
|
4070
|
-
]
|
|
4071
|
-
}
|
|
4072
4075
|
>
|
|
4073
4076
|
<View
|
|
4077
|
+
pointerEvents="none"
|
|
4074
4078
|
style={
|
|
4075
4079
|
Array [
|
|
4076
4080
|
Object {
|
|
4077
|
-
"
|
|
4078
|
-
"
|
|
4079
|
-
"padding": 16,
|
|
4081
|
+
"marginVertical": 8,
|
|
4082
|
+
"width": "100%",
|
|
4080
4083
|
},
|
|
4081
4084
|
undefined,
|
|
4082
4085
|
]
|
|
@@ -4086,160 +4089,173 @@ Array [
|
|
|
4086
4089
|
style={
|
|
4087
4090
|
Array [
|
|
4088
4091
|
Object {
|
|
4089
|
-
"
|
|
4090
|
-
"borderRadius": 8,
|
|
4091
|
-
"borderWidth": 1,
|
|
4092
|
-
"bottom": 0,
|
|
4093
|
-
"left": 0,
|
|
4094
|
-
"position": "absolute",
|
|
4095
|
-
"right": 0,
|
|
4096
|
-
"top": 0,
|
|
4097
|
-
},
|
|
4098
|
-
undefined,
|
|
4099
|
-
]
|
|
4100
|
-
}
|
|
4101
|
-
themeVariant="readonly"
|
|
4102
|
-
/>
|
|
4103
|
-
<View
|
|
4104
|
-
pointerEvents="none"
|
|
4105
|
-
style={
|
|
4106
|
-
Array [
|
|
4107
|
-
Object {
|
|
4108
|
-
"backgroundColor": "#ffffff",
|
|
4092
|
+
"alignItems": "center",
|
|
4109
4093
|
"flexDirection": "row",
|
|
4110
|
-
"
|
|
4111
|
-
"paddingHorizontal": 4,
|
|
4112
|
-
"position": "absolute",
|
|
4113
|
-
"top": -10,
|
|
4114
|
-
"zIndex": 1,
|
|
4094
|
+
"padding": 16,
|
|
4115
4095
|
},
|
|
4116
4096
|
undefined,
|
|
4117
4097
|
]
|
|
4118
4098
|
}
|
|
4119
4099
|
>
|
|
4120
|
-
<
|
|
4100
|
+
<View
|
|
4121
4101
|
style={
|
|
4122
4102
|
Array [
|
|
4123
4103
|
Object {
|
|
4124
|
-
"
|
|
4125
|
-
"
|
|
4126
|
-
"
|
|
4127
|
-
"
|
|
4128
|
-
"
|
|
4104
|
+
"borderColor": "#808f91",
|
|
4105
|
+
"borderRadius": 8,
|
|
4106
|
+
"borderWidth": 1,
|
|
4107
|
+
"bottom": 0,
|
|
4108
|
+
"left": 0,
|
|
4109
|
+
"position": "absolute",
|
|
4110
|
+
"right": 0,
|
|
4111
|
+
"top": 0,
|
|
4129
4112
|
},
|
|
4130
|
-
|
|
4131
|
-
Object {
|
|
4132
|
-
"color": "#808f91",
|
|
4133
|
-
},
|
|
4134
|
-
undefined,
|
|
4135
|
-
],
|
|
4113
|
+
undefined,
|
|
4136
4114
|
]
|
|
4137
4115
|
}
|
|
4138
|
-
testID="input-label"
|
|
4139
|
-
themeFontSize="small"
|
|
4140
|
-
themeFontWeight="regular"
|
|
4141
|
-
themeIntent="body"
|
|
4142
4116
|
themeVariant="readonly"
|
|
4117
|
+
/>
|
|
4118
|
+
<View
|
|
4119
|
+
pointerEvents="none"
|
|
4120
|
+
style={
|
|
4121
|
+
Array [
|
|
4122
|
+
Object {
|
|
4123
|
+
"backgroundColor": "#ffffff",
|
|
4124
|
+
"flexDirection": "row",
|
|
4125
|
+
"left": 16,
|
|
4126
|
+
"paddingHorizontal": 4,
|
|
4127
|
+
"position": "absolute",
|
|
4128
|
+
"top": -10,
|
|
4129
|
+
"zIndex": 1,
|
|
4130
|
+
},
|
|
4131
|
+
undefined,
|
|
4132
|
+
]
|
|
4133
|
+
}
|
|
4143
4134
|
>
|
|
4144
|
-
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
|
|
4148
|
-
|
|
4149
|
-
|
|
4150
|
-
|
|
4151
|
-
|
|
4152
|
-
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
|
|
4156
|
-
|
|
4157
|
-
|
|
4158
|
-
|
|
4159
|
-
|
|
4160
|
-
|
|
4161
|
-
<TextInput
|
|
4162
|
-
accessibilityState={
|
|
4163
|
-
Object {
|
|
4164
|
-
"disabled": true,
|
|
4135
|
+
<Text
|
|
4136
|
+
style={
|
|
4137
|
+
Array [
|
|
4138
|
+
Object {
|
|
4139
|
+
"color": "#001f23",
|
|
4140
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
4141
|
+
"fontSize": 12,
|
|
4142
|
+
"letterSpacing": 0.36,
|
|
4143
|
+
"lineHeight": 20,
|
|
4144
|
+
},
|
|
4145
|
+
Array [
|
|
4146
|
+
Object {
|
|
4147
|
+
"color": "#808f91",
|
|
4148
|
+
},
|
|
4149
|
+
undefined,
|
|
4150
|
+
],
|
|
4151
|
+
]
|
|
4165
4152
|
}
|
|
4166
|
-
|
|
4167
|
-
|
|
4168
|
-
|
|
4169
|
-
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4153
|
+
testID="input-label"
|
|
4154
|
+
themeFontSize="small"
|
|
4155
|
+
themeFontWeight="regular"
|
|
4156
|
+
themeIntent="body"
|
|
4157
|
+
themeVariant="readonly"
|
|
4158
|
+
>
|
|
4159
|
+
Allow notifications
|
|
4160
|
+
</Text>
|
|
4161
|
+
</View>
|
|
4162
|
+
<View
|
|
4173
4163
|
style={
|
|
4174
4164
|
Array [
|
|
4175
4165
|
Object {
|
|
4166
|
+
"alignItems": "center",
|
|
4176
4167
|
"alignSelf": "stretch",
|
|
4168
|
+
"flexDirection": "row",
|
|
4177
4169
|
"flexGrow": 2,
|
|
4178
|
-
"
|
|
4179
|
-
"marginHorizontal": 8,
|
|
4180
|
-
"textAlignVertical": "center",
|
|
4181
|
-
},
|
|
4182
|
-
Object {
|
|
4183
|
-
"color": "#001f23",
|
|
4170
|
+
"flexShrink": 1,
|
|
4184
4171
|
},
|
|
4172
|
+
undefined,
|
|
4185
4173
|
]
|
|
4186
4174
|
}
|
|
4187
|
-
|
|
4188
|
-
|
|
4189
|
-
|
|
4175
|
+
>
|
|
4176
|
+
<TextInput
|
|
4177
|
+
accessibilityState={
|
|
4178
|
+
Object {
|
|
4179
|
+
"disabled": true,
|
|
4180
|
+
}
|
|
4181
|
+
}
|
|
4182
|
+
editable={true}
|
|
4183
|
+
multiline={true}
|
|
4184
|
+
onBlur={[Function]}
|
|
4185
|
+
onChangeText={[Function]}
|
|
4186
|
+
onFocus={[Function]}
|
|
4187
|
+
pointerEvents="none"
|
|
4188
|
+
style={
|
|
4189
|
+
Array [
|
|
4190
|
+
Object {
|
|
4191
|
+
"alignSelf": "stretch",
|
|
4192
|
+
"flexGrow": 2,
|
|
4193
|
+
"fontSize": 14,
|
|
4194
|
+
"marginHorizontal": 8,
|
|
4195
|
+
"textAlignVertical": "center",
|
|
4196
|
+
},
|
|
4197
|
+
Object {
|
|
4198
|
+
"color": "#001f23",
|
|
4199
|
+
},
|
|
4200
|
+
]
|
|
4201
|
+
}
|
|
4202
|
+
testID="text-input"
|
|
4203
|
+
value="Monday"
|
|
4204
|
+
/>
|
|
4205
|
+
</View>
|
|
4206
|
+
<View
|
|
4207
|
+
collapsable={false}
|
|
4208
|
+
nativeID="animatedComponent"
|
|
4209
|
+
style={
|
|
4210
|
+
Object {
|
|
4211
|
+
"transform": Array [
|
|
4212
|
+
Object {
|
|
4213
|
+
"rotate": "0deg",
|
|
4214
|
+
},
|
|
4215
|
+
],
|
|
4216
|
+
}
|
|
4217
|
+
}
|
|
4218
|
+
>
|
|
4219
|
+
<HeroIcon
|
|
4220
|
+
name="loading"
|
|
4221
|
+
style={
|
|
4222
|
+
Array [
|
|
4223
|
+
Object {
|
|
4224
|
+
"color": "#001f23",
|
|
4225
|
+
"fontSize": 16,
|
|
4226
|
+
},
|
|
4227
|
+
undefined,
|
|
4228
|
+
]
|
|
4229
|
+
}
|
|
4230
|
+
testID="input-suffix"
|
|
4231
|
+
themeIntent="text"
|
|
4232
|
+
themeSize="xsmall"
|
|
4233
|
+
/>
|
|
4234
|
+
</View>
|
|
4190
4235
|
</View>
|
|
4191
4236
|
<View
|
|
4192
|
-
collapsable={false}
|
|
4193
|
-
nativeID="animatedComponent"
|
|
4194
4237
|
style={
|
|
4195
|
-
|
|
4196
|
-
|
|
4197
|
-
|
|
4198
|
-
|
|
4199
|
-
|
|
4200
|
-
|
|
4201
|
-
}
|
|
4238
|
+
Array [
|
|
4239
|
+
Object {
|
|
4240
|
+
"paddingLeft": 16,
|
|
4241
|
+
},
|
|
4242
|
+
undefined,
|
|
4243
|
+
]
|
|
4202
4244
|
}
|
|
4203
4245
|
>
|
|
4204
|
-
<
|
|
4205
|
-
name="loading"
|
|
4246
|
+
<View
|
|
4206
4247
|
style={
|
|
4207
4248
|
Array [
|
|
4208
4249
|
Object {
|
|
4209
|
-
"
|
|
4210
|
-
"
|
|
4250
|
+
"flexDirection": "row",
|
|
4251
|
+
"justifyContent": "space-between",
|
|
4211
4252
|
},
|
|
4212
4253
|
undefined,
|
|
4213
4254
|
]
|
|
4214
4255
|
}
|
|
4215
|
-
testID="input-suffix"
|
|
4216
|
-
themeIntent="text"
|
|
4217
|
-
themeSize="xsmall"
|
|
4218
4256
|
/>
|
|
4219
4257
|
</View>
|
|
4220
4258
|
</View>
|
|
4221
|
-
<View
|
|
4222
|
-
style={
|
|
4223
|
-
Array [
|
|
4224
|
-
Object {
|
|
4225
|
-
"paddingLeft": 16,
|
|
4226
|
-
},
|
|
4227
|
-
undefined,
|
|
4228
|
-
]
|
|
4229
|
-
}
|
|
4230
|
-
>
|
|
4231
|
-
<View
|
|
4232
|
-
style={
|
|
4233
|
-
Array [
|
|
4234
|
-
Object {
|
|
4235
|
-
"flexDirection": "row",
|
|
4236
|
-
"justifyContent": "space-between",
|
|
4237
|
-
},
|
|
4238
|
-
undefined,
|
|
4239
|
-
]
|
|
4240
|
-
}
|
|
4241
|
-
/>
|
|
4242
|
-
</View>
|
|
4243
4259
|
</View>
|
|
4244
4260
|
</View>
|
|
4245
4261
|
</View>,
|
|
@@ -5467,24 +5483,15 @@ Array [
|
|
|
5467
5483
|
}
|
|
5468
5484
|
>
|
|
5469
5485
|
<View
|
|
5470
|
-
pointerEvents="
|
|
5471
|
-
style={
|
|
5472
|
-
Array [
|
|
5473
|
-
Object {
|
|
5474
|
-
"marginVertical": 8,
|
|
5475
|
-
"width": "100%",
|
|
5476
|
-
},
|
|
5477
|
-
undefined,
|
|
5478
|
-
]
|
|
5479
|
-
}
|
|
5486
|
+
pointerEvents="none"
|
|
5480
5487
|
>
|
|
5481
5488
|
<View
|
|
5489
|
+
pointerEvents="auto"
|
|
5482
5490
|
style={
|
|
5483
5491
|
Array [
|
|
5484
5492
|
Object {
|
|
5485
|
-
"
|
|
5486
|
-
"
|
|
5487
|
-
"padding": 16,
|
|
5493
|
+
"marginVertical": 8,
|
|
5494
|
+
"width": "100%",
|
|
5488
5495
|
},
|
|
5489
5496
|
undefined,
|
|
5490
5497
|
]
|
|
@@ -5494,145 +5501,158 @@ Array [
|
|
|
5494
5501
|
style={
|
|
5495
5502
|
Array [
|
|
5496
5503
|
Object {
|
|
5497
|
-
"
|
|
5498
|
-
"borderRadius": 8,
|
|
5499
|
-
"borderWidth": 1,
|
|
5500
|
-
"bottom": 0,
|
|
5501
|
-
"left": 0,
|
|
5502
|
-
"position": "absolute",
|
|
5503
|
-
"right": 0,
|
|
5504
|
-
"top": 0,
|
|
5505
|
-
},
|
|
5506
|
-
undefined,
|
|
5507
|
-
]
|
|
5508
|
-
}
|
|
5509
|
-
themeVariant="filled"
|
|
5510
|
-
/>
|
|
5511
|
-
<View
|
|
5512
|
-
pointerEvents="none"
|
|
5513
|
-
style={
|
|
5514
|
-
Array [
|
|
5515
|
-
Object {
|
|
5516
|
-
"backgroundColor": "#ffffff",
|
|
5504
|
+
"alignItems": "center",
|
|
5517
5505
|
"flexDirection": "row",
|
|
5518
|
-
"
|
|
5519
|
-
"paddingHorizontal": 4,
|
|
5520
|
-
"position": "absolute",
|
|
5521
|
-
"top": -10,
|
|
5522
|
-
"zIndex": 1,
|
|
5506
|
+
"padding": 16,
|
|
5523
5507
|
},
|
|
5524
5508
|
undefined,
|
|
5525
5509
|
]
|
|
5526
5510
|
}
|
|
5527
5511
|
>
|
|
5528
|
-
<
|
|
5512
|
+
<View
|
|
5529
5513
|
style={
|
|
5530
5514
|
Array [
|
|
5531
5515
|
Object {
|
|
5532
|
-
"
|
|
5533
|
-
"
|
|
5534
|
-
"
|
|
5535
|
-
"
|
|
5536
|
-
"
|
|
5516
|
+
"borderColor": "#001f23",
|
|
5517
|
+
"borderRadius": 8,
|
|
5518
|
+
"borderWidth": 1,
|
|
5519
|
+
"bottom": 0,
|
|
5520
|
+
"left": 0,
|
|
5521
|
+
"position": "absolute",
|
|
5522
|
+
"right": 0,
|
|
5523
|
+
"top": 0,
|
|
5537
5524
|
},
|
|
5538
|
-
|
|
5539
|
-
Object {
|
|
5540
|
-
"color": "#001f23",
|
|
5541
|
-
},
|
|
5542
|
-
undefined,
|
|
5543
|
-
],
|
|
5525
|
+
undefined,
|
|
5544
5526
|
]
|
|
5545
5527
|
}
|
|
5546
|
-
testID="input-label"
|
|
5547
|
-
themeFontSize="small"
|
|
5548
|
-
themeFontWeight="regular"
|
|
5549
|
-
themeIntent="body"
|
|
5550
5528
|
themeVariant="filled"
|
|
5529
|
+
/>
|
|
5530
|
+
<View
|
|
5531
|
+
pointerEvents="none"
|
|
5532
|
+
style={
|
|
5533
|
+
Array [
|
|
5534
|
+
Object {
|
|
5535
|
+
"backgroundColor": "#ffffff",
|
|
5536
|
+
"flexDirection": "row",
|
|
5537
|
+
"left": 16,
|
|
5538
|
+
"paddingHorizontal": 4,
|
|
5539
|
+
"position": "absolute",
|
|
5540
|
+
"top": -10,
|
|
5541
|
+
"zIndex": 1,
|
|
5542
|
+
},
|
|
5543
|
+
undefined,
|
|
5544
|
+
]
|
|
5545
|
+
}
|
|
5551
5546
|
>
|
|
5552
|
-
|
|
5553
|
-
|
|
5554
|
-
|
|
5555
|
-
|
|
5556
|
-
|
|
5557
|
-
|
|
5558
|
-
|
|
5559
|
-
|
|
5560
|
-
|
|
5561
|
-
|
|
5562
|
-
|
|
5563
|
-
|
|
5564
|
-
|
|
5565
|
-
|
|
5566
|
-
|
|
5567
|
-
|
|
5568
|
-
|
|
5569
|
-
<TextInput
|
|
5570
|
-
accessibilityState={
|
|
5571
|
-
Object {
|
|
5572
|
-
"disabled": false,
|
|
5547
|
+
<Text
|
|
5548
|
+
style={
|
|
5549
|
+
Array [
|
|
5550
|
+
Object {
|
|
5551
|
+
"color": "#001f23",
|
|
5552
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
5553
|
+
"fontSize": 12,
|
|
5554
|
+
"letterSpacing": 0.36,
|
|
5555
|
+
"lineHeight": 20,
|
|
5556
|
+
},
|
|
5557
|
+
Array [
|
|
5558
|
+
Object {
|
|
5559
|
+
"color": "#001f23",
|
|
5560
|
+
},
|
|
5561
|
+
undefined,
|
|
5562
|
+
],
|
|
5563
|
+
]
|
|
5573
5564
|
}
|
|
5574
|
-
|
|
5575
|
-
|
|
5576
|
-
|
|
5577
|
-
|
|
5578
|
-
|
|
5579
|
-
|
|
5580
|
-
|
|
5565
|
+
testID="input-label"
|
|
5566
|
+
themeFontSize="small"
|
|
5567
|
+
themeFontWeight="regular"
|
|
5568
|
+
themeIntent="body"
|
|
5569
|
+
themeVariant="filled"
|
|
5570
|
+
>
|
|
5571
|
+
Allow notifications
|
|
5572
|
+
</Text>
|
|
5573
|
+
</View>
|
|
5574
|
+
<View
|
|
5581
5575
|
style={
|
|
5582
5576
|
Array [
|
|
5583
5577
|
Object {
|
|
5578
|
+
"alignItems": "center",
|
|
5584
5579
|
"alignSelf": "stretch",
|
|
5580
|
+
"flexDirection": "row",
|
|
5585
5581
|
"flexGrow": 2,
|
|
5586
|
-
"
|
|
5587
|
-
"marginHorizontal": 8,
|
|
5588
|
-
"textAlignVertical": "center",
|
|
5582
|
+
"flexShrink": 1,
|
|
5589
5583
|
},
|
|
5584
|
+
undefined,
|
|
5585
|
+
]
|
|
5586
|
+
}
|
|
5587
|
+
>
|
|
5588
|
+
<TextInput
|
|
5589
|
+
accessibilityState={
|
|
5590
|
+
Object {
|
|
5591
|
+
"disabled": false,
|
|
5592
|
+
}
|
|
5593
|
+
}
|
|
5594
|
+
editable={true}
|
|
5595
|
+
multiline={true}
|
|
5596
|
+
onBlur={[Function]}
|
|
5597
|
+
onChangeText={[Function]}
|
|
5598
|
+
onFocus={[Function]}
|
|
5599
|
+
pointerEvents="none"
|
|
5600
|
+
style={
|
|
5601
|
+
Array [
|
|
5602
|
+
Object {
|
|
5603
|
+
"alignSelf": "stretch",
|
|
5604
|
+
"flexGrow": 2,
|
|
5605
|
+
"fontSize": 14,
|
|
5606
|
+
"marginHorizontal": 8,
|
|
5607
|
+
"textAlignVertical": "center",
|
|
5608
|
+
},
|
|
5609
|
+
Object {
|
|
5610
|
+
"color": "#001f23",
|
|
5611
|
+
},
|
|
5612
|
+
]
|
|
5613
|
+
}
|
|
5614
|
+
testID="text-input"
|
|
5615
|
+
value="A1"
|
|
5616
|
+
/>
|
|
5617
|
+
</View>
|
|
5618
|
+
<HeroIcon
|
|
5619
|
+
name="arrow-down"
|
|
5620
|
+
style={
|
|
5621
|
+
Array [
|
|
5590
5622
|
Object {
|
|
5591
5623
|
"color": "#001f23",
|
|
5624
|
+
"fontSize": 16,
|
|
5592
5625
|
},
|
|
5626
|
+
undefined,
|
|
5593
5627
|
]
|
|
5594
5628
|
}
|
|
5595
|
-
testID="
|
|
5596
|
-
|
|
5629
|
+
testID="input-suffix"
|
|
5630
|
+
themeIntent="text"
|
|
5631
|
+
themeSize="xsmall"
|
|
5597
5632
|
/>
|
|
5598
5633
|
</View>
|
|
5599
|
-
<HeroIcon
|
|
5600
|
-
name="arrow-down"
|
|
5601
|
-
style={
|
|
5602
|
-
Array [
|
|
5603
|
-
Object {
|
|
5604
|
-
"color": "#001f23",
|
|
5605
|
-
"fontSize": 16,
|
|
5606
|
-
},
|
|
5607
|
-
undefined,
|
|
5608
|
-
]
|
|
5609
|
-
}
|
|
5610
|
-
testID="input-suffix"
|
|
5611
|
-
themeIntent="text"
|
|
5612
|
-
themeSize="xsmall"
|
|
5613
|
-
/>
|
|
5614
|
-
</View>
|
|
5615
|
-
<View
|
|
5616
|
-
style={
|
|
5617
|
-
Array [
|
|
5618
|
-
Object {
|
|
5619
|
-
"paddingLeft": 16,
|
|
5620
|
-
},
|
|
5621
|
-
undefined,
|
|
5622
|
-
]
|
|
5623
|
-
}
|
|
5624
|
-
>
|
|
5625
5634
|
<View
|
|
5626
5635
|
style={
|
|
5627
5636
|
Array [
|
|
5628
5637
|
Object {
|
|
5629
|
-
"
|
|
5630
|
-
"justifyContent": "space-between",
|
|
5638
|
+
"paddingLeft": 16,
|
|
5631
5639
|
},
|
|
5632
5640
|
undefined,
|
|
5633
5641
|
]
|
|
5634
5642
|
}
|
|
5635
|
-
|
|
5643
|
+
>
|
|
5644
|
+
<View
|
|
5645
|
+
style={
|
|
5646
|
+
Array [
|
|
5647
|
+
Object {
|
|
5648
|
+
"flexDirection": "row",
|
|
5649
|
+
"justifyContent": "space-between",
|
|
5650
|
+
},
|
|
5651
|
+
undefined,
|
|
5652
|
+
]
|
|
5653
|
+
}
|
|
5654
|
+
/>
|
|
5655
|
+
</View>
|
|
5636
5656
|
</View>
|
|
5637
5657
|
</View>
|
|
5638
5658
|
</View>
|