@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,177 +22,181 @@ 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
|
-
|
|
123
|
-
themeIntent="body"
|
|
124
|
-
themeVariant="default"
|
|
125
|
-
>
|
|
126
|
-
Choose collaborators
|
|
127
|
-
</Text>
|
|
158
|
+
testID="text-input"
|
|
159
|
+
value=""
|
|
160
|
+
/>
|
|
128
161
|
</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"
|
|
162
|
+
<HeroIcon
|
|
163
|
+
name="arrow-down"
|
|
141
164
|
style={
|
|
142
165
|
Array [
|
|
143
|
-
Object {
|
|
144
|
-
"alignSelf": "stretch",
|
|
145
|
-
"flexGrow": 2,
|
|
146
|
-
"fontSize": 14,
|
|
147
|
-
"marginHorizontal": 8,
|
|
148
|
-
"textAlignVertical": "center",
|
|
149
|
-
},
|
|
150
166
|
Object {
|
|
151
167
|
"color": "#001f23",
|
|
168
|
+
"fontSize": 16,
|
|
152
169
|
},
|
|
170
|
+
undefined,
|
|
153
171
|
]
|
|
154
172
|
}
|
|
155
|
-
testID="
|
|
156
|
-
|
|
173
|
+
testID="input-suffix"
|
|
174
|
+
themeIntent="text"
|
|
175
|
+
themeSize="xsmall"
|
|
157
176
|
/>
|
|
158
177
|
</View>
|
|
159
|
-
<HeroIcon
|
|
160
|
-
name="arrow-down"
|
|
161
|
-
style={
|
|
162
|
-
Array [
|
|
163
|
-
Object {
|
|
164
|
-
"color": "#001f23",
|
|
165
|
-
"fontSize": 16,
|
|
166
|
-
},
|
|
167
|
-
undefined,
|
|
168
|
-
]
|
|
169
|
-
}
|
|
170
|
-
testID="input-suffix"
|
|
171
|
-
themeIntent="text"
|
|
172
|
-
themeSize="xsmall"
|
|
173
|
-
/>
|
|
174
|
-
</View>
|
|
175
|
-
<View
|
|
176
|
-
style={
|
|
177
|
-
Array [
|
|
178
|
-
Object {
|
|
179
|
-
"paddingLeft": 16,
|
|
180
|
-
},
|
|
181
|
-
undefined,
|
|
182
|
-
]
|
|
183
|
-
}
|
|
184
|
-
>
|
|
185
178
|
<View
|
|
186
179
|
style={
|
|
187
180
|
Array [
|
|
188
181
|
Object {
|
|
189
|
-
"
|
|
190
|
-
"justifyContent": "space-between",
|
|
182
|
+
"paddingLeft": 16,
|
|
191
183
|
},
|
|
192
184
|
undefined,
|
|
193
185
|
]
|
|
194
186
|
}
|
|
195
|
-
|
|
187
|
+
>
|
|
188
|
+
<View
|
|
189
|
+
style={
|
|
190
|
+
Array [
|
|
191
|
+
Object {
|
|
192
|
+
"flexDirection": "row",
|
|
193
|
+
"justifyContent": "space-between",
|
|
194
|
+
},
|
|
195
|
+
undefined,
|
|
196
|
+
]
|
|
197
|
+
}
|
|
198
|
+
/>
|
|
199
|
+
</View>
|
|
196
200
|
</View>
|
|
197
201
|
</View>
|
|
198
202
|
</View>
|
|
@@ -1346,24 +1350,15 @@ Array [
|
|
|
1346
1350
|
}
|
|
1347
1351
|
>
|
|
1348
1352
|
<View
|
|
1349
|
-
pointerEvents="
|
|
1350
|
-
style={
|
|
1351
|
-
Array [
|
|
1352
|
-
Object {
|
|
1353
|
-
"marginVertical": 8,
|
|
1354
|
-
"width": "100%",
|
|
1355
|
-
},
|
|
1356
|
-
undefined,
|
|
1357
|
-
]
|
|
1358
|
-
}
|
|
1353
|
+
pointerEvents="none"
|
|
1359
1354
|
>
|
|
1360
1355
|
<View
|
|
1356
|
+
pointerEvents="auto"
|
|
1361
1357
|
style={
|
|
1362
1358
|
Array [
|
|
1363
1359
|
Object {
|
|
1364
|
-
"
|
|
1365
|
-
"
|
|
1366
|
-
"padding": 16,
|
|
1360
|
+
"marginVertical": 8,
|
|
1361
|
+
"width": "100%",
|
|
1367
1362
|
},
|
|
1368
1363
|
undefined,
|
|
1369
1364
|
]
|
|
@@ -1373,145 +1368,158 @@ Array [
|
|
|
1373
1368
|
style={
|
|
1374
1369
|
Array [
|
|
1375
1370
|
Object {
|
|
1376
|
-
"
|
|
1377
|
-
"borderRadius": 8,
|
|
1378
|
-
"borderWidth": 1,
|
|
1379
|
-
"bottom": 0,
|
|
1380
|
-
"left": 0,
|
|
1381
|
-
"position": "absolute",
|
|
1382
|
-
"right": 0,
|
|
1383
|
-
"top": 0,
|
|
1384
|
-
},
|
|
1385
|
-
undefined,
|
|
1386
|
-
]
|
|
1387
|
-
}
|
|
1388
|
-
themeVariant="filled"
|
|
1389
|
-
/>
|
|
1390
|
-
<View
|
|
1391
|
-
pointerEvents="none"
|
|
1392
|
-
style={
|
|
1393
|
-
Array [
|
|
1394
|
-
Object {
|
|
1395
|
-
"backgroundColor": "#ffffff",
|
|
1371
|
+
"alignItems": "center",
|
|
1396
1372
|
"flexDirection": "row",
|
|
1397
|
-
"
|
|
1398
|
-
"paddingHorizontal": 4,
|
|
1399
|
-
"position": "absolute",
|
|
1400
|
-
"top": -10,
|
|
1401
|
-
"zIndex": 1,
|
|
1373
|
+
"padding": 16,
|
|
1402
1374
|
},
|
|
1403
1375
|
undefined,
|
|
1404
1376
|
]
|
|
1405
1377
|
}
|
|
1406
1378
|
>
|
|
1407
|
-
<
|
|
1379
|
+
<View
|
|
1408
1380
|
style={
|
|
1409
1381
|
Array [
|
|
1410
1382
|
Object {
|
|
1411
|
-
"
|
|
1412
|
-
"
|
|
1413
|
-
"
|
|
1414
|
-
"
|
|
1415
|
-
"
|
|
1383
|
+
"borderColor": "#001f23",
|
|
1384
|
+
"borderRadius": 8,
|
|
1385
|
+
"borderWidth": 1,
|
|
1386
|
+
"bottom": 0,
|
|
1387
|
+
"left": 0,
|
|
1388
|
+
"position": "absolute",
|
|
1389
|
+
"right": 0,
|
|
1390
|
+
"top": 0,
|
|
1416
1391
|
},
|
|
1417
|
-
|
|
1418
|
-
Object {
|
|
1419
|
-
"color": "#001f23",
|
|
1420
|
-
},
|
|
1421
|
-
undefined,
|
|
1422
|
-
],
|
|
1392
|
+
undefined,
|
|
1423
1393
|
]
|
|
1424
1394
|
}
|
|
1425
|
-
testID="input-label"
|
|
1426
|
-
themeFontSize="small"
|
|
1427
|
-
themeFontWeight="regular"
|
|
1428
|
-
themeIntent="body"
|
|
1429
1395
|
themeVariant="filled"
|
|
1396
|
+
/>
|
|
1397
|
+
<View
|
|
1398
|
+
pointerEvents="none"
|
|
1399
|
+
style={
|
|
1400
|
+
Array [
|
|
1401
|
+
Object {
|
|
1402
|
+
"backgroundColor": "#ffffff",
|
|
1403
|
+
"flexDirection": "row",
|
|
1404
|
+
"left": 16,
|
|
1405
|
+
"paddingHorizontal": 4,
|
|
1406
|
+
"position": "absolute",
|
|
1407
|
+
"top": -10,
|
|
1408
|
+
"zIndex": 1,
|
|
1409
|
+
},
|
|
1410
|
+
undefined,
|
|
1411
|
+
]
|
|
1412
|
+
}
|
|
1430
1413
|
>
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
<TextInput
|
|
1449
|
-
accessibilityState={
|
|
1450
|
-
Object {
|
|
1451
|
-
"disabled": false,
|
|
1414
|
+
<Text
|
|
1415
|
+
style={
|
|
1416
|
+
Array [
|
|
1417
|
+
Object {
|
|
1418
|
+
"color": "#001f23",
|
|
1419
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
1420
|
+
"fontSize": 12,
|
|
1421
|
+
"letterSpacing": 0.36,
|
|
1422
|
+
"lineHeight": 20,
|
|
1423
|
+
},
|
|
1424
|
+
Array [
|
|
1425
|
+
Object {
|
|
1426
|
+
"color": "#001f23",
|
|
1427
|
+
},
|
|
1428
|
+
undefined,
|
|
1429
|
+
],
|
|
1430
|
+
]
|
|
1452
1431
|
}
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1432
|
+
testID="input-label"
|
|
1433
|
+
themeFontSize="small"
|
|
1434
|
+
themeFontWeight="regular"
|
|
1435
|
+
themeIntent="body"
|
|
1436
|
+
themeVariant="filled"
|
|
1437
|
+
>
|
|
1438
|
+
Allow notifications
|
|
1439
|
+
</Text>
|
|
1440
|
+
</View>
|
|
1441
|
+
<View
|
|
1460
1442
|
style={
|
|
1461
1443
|
Array [
|
|
1462
1444
|
Object {
|
|
1445
|
+
"alignItems": "center",
|
|
1463
1446
|
"alignSelf": "stretch",
|
|
1447
|
+
"flexDirection": "row",
|
|
1464
1448
|
"flexGrow": 2,
|
|
1465
|
-
"
|
|
1466
|
-
"marginHorizontal": 8,
|
|
1467
|
-
"textAlignVertical": "center",
|
|
1449
|
+
"flexShrink": 1,
|
|
1468
1450
|
},
|
|
1451
|
+
undefined,
|
|
1452
|
+
]
|
|
1453
|
+
}
|
|
1454
|
+
>
|
|
1455
|
+
<TextInput
|
|
1456
|
+
accessibilityState={
|
|
1457
|
+
Object {
|
|
1458
|
+
"disabled": false,
|
|
1459
|
+
}
|
|
1460
|
+
}
|
|
1461
|
+
editable={true}
|
|
1462
|
+
multiline={true}
|
|
1463
|
+
onBlur={[Function]}
|
|
1464
|
+
onChangeText={[Function]}
|
|
1465
|
+
onFocus={[Function]}
|
|
1466
|
+
pointerEvents="none"
|
|
1467
|
+
style={
|
|
1468
|
+
Array [
|
|
1469
|
+
Object {
|
|
1470
|
+
"alignSelf": "stretch",
|
|
1471
|
+
"flexGrow": 2,
|
|
1472
|
+
"fontSize": 14,
|
|
1473
|
+
"marginHorizontal": 8,
|
|
1474
|
+
"textAlignVertical": "center",
|
|
1475
|
+
},
|
|
1476
|
+
Object {
|
|
1477
|
+
"color": "#001f23",
|
|
1478
|
+
},
|
|
1479
|
+
]
|
|
1480
|
+
}
|
|
1481
|
+
testID="text-input"
|
|
1482
|
+
value="Monday, Tuesday"
|
|
1483
|
+
/>
|
|
1484
|
+
</View>
|
|
1485
|
+
<HeroIcon
|
|
1486
|
+
name="arrow-down"
|
|
1487
|
+
style={
|
|
1488
|
+
Array [
|
|
1469
1489
|
Object {
|
|
1470
1490
|
"color": "#001f23",
|
|
1491
|
+
"fontSize": 16,
|
|
1471
1492
|
},
|
|
1493
|
+
undefined,
|
|
1472
1494
|
]
|
|
1473
1495
|
}
|
|
1474
|
-
testID="
|
|
1475
|
-
|
|
1496
|
+
testID="input-suffix"
|
|
1497
|
+
themeIntent="text"
|
|
1498
|
+
themeSize="xsmall"
|
|
1476
1499
|
/>
|
|
1477
1500
|
</View>
|
|
1478
|
-
<HeroIcon
|
|
1479
|
-
name="arrow-down"
|
|
1480
|
-
style={
|
|
1481
|
-
Array [
|
|
1482
|
-
Object {
|
|
1483
|
-
"color": "#001f23",
|
|
1484
|
-
"fontSize": 16,
|
|
1485
|
-
},
|
|
1486
|
-
undefined,
|
|
1487
|
-
]
|
|
1488
|
-
}
|
|
1489
|
-
testID="input-suffix"
|
|
1490
|
-
themeIntent="text"
|
|
1491
|
-
themeSize="xsmall"
|
|
1492
|
-
/>
|
|
1493
|
-
</View>
|
|
1494
|
-
<View
|
|
1495
|
-
style={
|
|
1496
|
-
Array [
|
|
1497
|
-
Object {
|
|
1498
|
-
"paddingLeft": 16,
|
|
1499
|
-
},
|
|
1500
|
-
undefined,
|
|
1501
|
-
]
|
|
1502
|
-
}
|
|
1503
|
-
>
|
|
1504
1501
|
<View
|
|
1505
1502
|
style={
|
|
1506
1503
|
Array [
|
|
1507
1504
|
Object {
|
|
1508
|
-
"
|
|
1509
|
-
"justifyContent": "space-between",
|
|
1505
|
+
"paddingLeft": 16,
|
|
1510
1506
|
},
|
|
1511
1507
|
undefined,
|
|
1512
1508
|
]
|
|
1513
1509
|
}
|
|
1514
|
-
|
|
1510
|
+
>
|
|
1511
|
+
<View
|
|
1512
|
+
style={
|
|
1513
|
+
Array [
|
|
1514
|
+
Object {
|
|
1515
|
+
"flexDirection": "row",
|
|
1516
|
+
"justifyContent": "space-between",
|
|
1517
|
+
},
|
|
1518
|
+
undefined,
|
|
1519
|
+
]
|
|
1520
|
+
}
|
|
1521
|
+
/>
|
|
1522
|
+
</View>
|
|
1515
1523
|
</View>
|
|
1516
1524
|
</View>
|
|
1517
1525
|
</View>
|
|
@@ -2863,24 +2871,15 @@ Array [
|
|
|
2863
2871
|
}
|
|
2864
2872
|
>
|
|
2865
2873
|
<View
|
|
2866
|
-
pointerEvents="
|
|
2867
|
-
style={
|
|
2868
|
-
Array [
|
|
2869
|
-
Object {
|
|
2870
|
-
"marginVertical": 8,
|
|
2871
|
-
"width": "100%",
|
|
2872
|
-
},
|
|
2873
|
-
undefined,
|
|
2874
|
-
]
|
|
2875
|
-
}
|
|
2874
|
+
pointerEvents="none"
|
|
2876
2875
|
>
|
|
2877
2876
|
<View
|
|
2877
|
+
pointerEvents="auto"
|
|
2878
2878
|
style={
|
|
2879
2879
|
Array [
|
|
2880
2880
|
Object {
|
|
2881
|
-
"
|
|
2882
|
-
"
|
|
2883
|
-
"padding": 16,
|
|
2881
|
+
"marginVertical": 8,
|
|
2882
|
+
"width": "100%",
|
|
2884
2883
|
},
|
|
2885
2884
|
undefined,
|
|
2886
2885
|
]
|
|
@@ -2890,145 +2889,158 @@ Array [
|
|
|
2890
2889
|
style={
|
|
2891
2890
|
Array [
|
|
2892
2891
|
Object {
|
|
2893
|
-
"
|
|
2894
|
-
"borderRadius": 8,
|
|
2895
|
-
"borderWidth": 1,
|
|
2896
|
-
"bottom": 0,
|
|
2897
|
-
"left": 0,
|
|
2898
|
-
"position": "absolute",
|
|
2899
|
-
"right": 0,
|
|
2900
|
-
"top": 0,
|
|
2901
|
-
},
|
|
2902
|
-
undefined,
|
|
2903
|
-
]
|
|
2904
|
-
}
|
|
2905
|
-
themeVariant="filled"
|
|
2906
|
-
/>
|
|
2907
|
-
<View
|
|
2908
|
-
pointerEvents="none"
|
|
2909
|
-
style={
|
|
2910
|
-
Array [
|
|
2911
|
-
Object {
|
|
2912
|
-
"backgroundColor": "#ffffff",
|
|
2892
|
+
"alignItems": "center",
|
|
2913
2893
|
"flexDirection": "row",
|
|
2914
|
-
"
|
|
2915
|
-
"paddingHorizontal": 4,
|
|
2916
|
-
"position": "absolute",
|
|
2917
|
-
"top": -10,
|
|
2918
|
-
"zIndex": 1,
|
|
2894
|
+
"padding": 16,
|
|
2919
2895
|
},
|
|
2920
2896
|
undefined,
|
|
2921
2897
|
]
|
|
2922
2898
|
}
|
|
2923
2899
|
>
|
|
2924
|
-
<
|
|
2900
|
+
<View
|
|
2925
2901
|
style={
|
|
2926
2902
|
Array [
|
|
2927
2903
|
Object {
|
|
2928
|
-
"
|
|
2929
|
-
"
|
|
2930
|
-
"
|
|
2931
|
-
"
|
|
2932
|
-
"
|
|
2904
|
+
"borderColor": "#001f23",
|
|
2905
|
+
"borderRadius": 8,
|
|
2906
|
+
"borderWidth": 1,
|
|
2907
|
+
"bottom": 0,
|
|
2908
|
+
"left": 0,
|
|
2909
|
+
"position": "absolute",
|
|
2910
|
+
"right": 0,
|
|
2911
|
+
"top": 0,
|
|
2933
2912
|
},
|
|
2934
|
-
|
|
2935
|
-
Object {
|
|
2936
|
-
"color": "#001f23",
|
|
2937
|
-
},
|
|
2938
|
-
undefined,
|
|
2939
|
-
],
|
|
2913
|
+
undefined,
|
|
2940
2914
|
]
|
|
2941
2915
|
}
|
|
2942
|
-
testID="input-label"
|
|
2943
|
-
themeFontSize="small"
|
|
2944
|
-
themeFontWeight="regular"
|
|
2945
|
-
themeIntent="body"
|
|
2946
2916
|
themeVariant="filled"
|
|
2917
|
+
/>
|
|
2918
|
+
<View
|
|
2919
|
+
pointerEvents="none"
|
|
2920
|
+
style={
|
|
2921
|
+
Array [
|
|
2922
|
+
Object {
|
|
2923
|
+
"backgroundColor": "#ffffff",
|
|
2924
|
+
"flexDirection": "row",
|
|
2925
|
+
"left": 16,
|
|
2926
|
+
"paddingHorizontal": 4,
|
|
2927
|
+
"position": "absolute",
|
|
2928
|
+
"top": -10,
|
|
2929
|
+
"zIndex": 1,
|
|
2930
|
+
},
|
|
2931
|
+
undefined,
|
|
2932
|
+
]
|
|
2933
|
+
}
|
|
2947
2934
|
>
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
<TextInput
|
|
2966
|
-
accessibilityState={
|
|
2967
|
-
Object {
|
|
2968
|
-
"disabled": false,
|
|
2935
|
+
<Text
|
|
2936
|
+
style={
|
|
2937
|
+
Array [
|
|
2938
|
+
Object {
|
|
2939
|
+
"color": "#001f23",
|
|
2940
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
2941
|
+
"fontSize": 12,
|
|
2942
|
+
"letterSpacing": 0.36,
|
|
2943
|
+
"lineHeight": 20,
|
|
2944
|
+
},
|
|
2945
|
+
Array [
|
|
2946
|
+
Object {
|
|
2947
|
+
"color": "#001f23",
|
|
2948
|
+
},
|
|
2949
|
+
undefined,
|
|
2950
|
+
],
|
|
2951
|
+
]
|
|
2969
2952
|
}
|
|
2970
|
-
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2953
|
+
testID="input-label"
|
|
2954
|
+
themeFontSize="small"
|
|
2955
|
+
themeFontWeight="regular"
|
|
2956
|
+
themeIntent="body"
|
|
2957
|
+
themeVariant="filled"
|
|
2958
|
+
>
|
|
2959
|
+
Allow notifications
|
|
2960
|
+
</Text>
|
|
2961
|
+
</View>
|
|
2962
|
+
<View
|
|
2977
2963
|
style={
|
|
2978
2964
|
Array [
|
|
2979
2965
|
Object {
|
|
2966
|
+
"alignItems": "center",
|
|
2980
2967
|
"alignSelf": "stretch",
|
|
2968
|
+
"flexDirection": "row",
|
|
2981
2969
|
"flexGrow": 2,
|
|
2982
|
-
"
|
|
2983
|
-
"marginHorizontal": 8,
|
|
2984
|
-
"textAlignVertical": "center",
|
|
2970
|
+
"flexShrink": 1,
|
|
2985
2971
|
},
|
|
2972
|
+
undefined,
|
|
2973
|
+
]
|
|
2974
|
+
}
|
|
2975
|
+
>
|
|
2976
|
+
<TextInput
|
|
2977
|
+
accessibilityState={
|
|
2978
|
+
Object {
|
|
2979
|
+
"disabled": false,
|
|
2980
|
+
}
|
|
2981
|
+
}
|
|
2982
|
+
editable={true}
|
|
2983
|
+
multiline={true}
|
|
2984
|
+
onBlur={[Function]}
|
|
2985
|
+
onChangeText={[Function]}
|
|
2986
|
+
onFocus={[Function]}
|
|
2987
|
+
pointerEvents="none"
|
|
2988
|
+
style={
|
|
2989
|
+
Array [
|
|
2990
|
+
Object {
|
|
2991
|
+
"alignSelf": "stretch",
|
|
2992
|
+
"flexGrow": 2,
|
|
2993
|
+
"fontSize": 14,
|
|
2994
|
+
"marginHorizontal": 8,
|
|
2995
|
+
"textAlignVertical": "center",
|
|
2996
|
+
},
|
|
2997
|
+
Object {
|
|
2998
|
+
"color": "#001f23",
|
|
2999
|
+
},
|
|
3000
|
+
]
|
|
3001
|
+
}
|
|
3002
|
+
testID="text-input"
|
|
3003
|
+
value="Monday, Tuesday"
|
|
3004
|
+
/>
|
|
3005
|
+
</View>
|
|
3006
|
+
<HeroIcon
|
|
3007
|
+
name="arrow-down"
|
|
3008
|
+
style={
|
|
3009
|
+
Array [
|
|
2986
3010
|
Object {
|
|
2987
3011
|
"color": "#001f23",
|
|
3012
|
+
"fontSize": 16,
|
|
2988
3013
|
},
|
|
3014
|
+
undefined,
|
|
2989
3015
|
]
|
|
2990
3016
|
}
|
|
2991
|
-
testID="
|
|
2992
|
-
|
|
3017
|
+
testID="input-suffix"
|
|
3018
|
+
themeIntent="text"
|
|
3019
|
+
themeSize="xsmall"
|
|
2993
3020
|
/>
|
|
2994
3021
|
</View>
|
|
2995
|
-
<HeroIcon
|
|
2996
|
-
name="arrow-down"
|
|
2997
|
-
style={
|
|
2998
|
-
Array [
|
|
2999
|
-
Object {
|
|
3000
|
-
"color": "#001f23",
|
|
3001
|
-
"fontSize": 16,
|
|
3002
|
-
},
|
|
3003
|
-
undefined,
|
|
3004
|
-
]
|
|
3005
|
-
}
|
|
3006
|
-
testID="input-suffix"
|
|
3007
|
-
themeIntent="text"
|
|
3008
|
-
themeSize="xsmall"
|
|
3009
|
-
/>
|
|
3010
|
-
</View>
|
|
3011
|
-
<View
|
|
3012
|
-
style={
|
|
3013
|
-
Array [
|
|
3014
|
-
Object {
|
|
3015
|
-
"paddingLeft": 16,
|
|
3016
|
-
},
|
|
3017
|
-
undefined,
|
|
3018
|
-
]
|
|
3019
|
-
}
|
|
3020
|
-
>
|
|
3021
3022
|
<View
|
|
3022
3023
|
style={
|
|
3023
3024
|
Array [
|
|
3024
3025
|
Object {
|
|
3025
|
-
"
|
|
3026
|
-
"justifyContent": "space-between",
|
|
3026
|
+
"paddingLeft": 16,
|
|
3027
3027
|
},
|
|
3028
3028
|
undefined,
|
|
3029
3029
|
]
|
|
3030
3030
|
}
|
|
3031
|
-
|
|
3031
|
+
>
|
|
3032
|
+
<View
|
|
3033
|
+
style={
|
|
3034
|
+
Array [
|
|
3035
|
+
Object {
|
|
3036
|
+
"flexDirection": "row",
|
|
3037
|
+
"justifyContent": "space-between",
|
|
3038
|
+
},
|
|
3039
|
+
undefined,
|
|
3040
|
+
]
|
|
3041
|
+
}
|
|
3042
|
+
/>
|
|
3043
|
+
</View>
|
|
3032
3044
|
</View>
|
|
3033
3045
|
</View>
|
|
3034
3046
|
</View>
|
|
@@ -4376,23 +4388,14 @@ Array [
|
|
|
4376
4388
|
>
|
|
4377
4389
|
<View
|
|
4378
4390
|
pointerEvents="none"
|
|
4379
|
-
style={
|
|
4380
|
-
Array [
|
|
4381
|
-
Object {
|
|
4382
|
-
"marginVertical": 8,
|
|
4383
|
-
"width": "100%",
|
|
4384
|
-
},
|
|
4385
|
-
undefined,
|
|
4386
|
-
]
|
|
4387
|
-
}
|
|
4388
4391
|
>
|
|
4389
4392
|
<View
|
|
4393
|
+
pointerEvents="none"
|
|
4390
4394
|
style={
|
|
4391
4395
|
Array [
|
|
4392
4396
|
Object {
|
|
4393
|
-
"
|
|
4394
|
-
"
|
|
4395
|
-
"padding": 16,
|
|
4397
|
+
"marginVertical": 8,
|
|
4398
|
+
"width": "100%",
|
|
4396
4399
|
},
|
|
4397
4400
|
undefined,
|
|
4398
4401
|
]
|
|
@@ -4402,160 +4405,173 @@ Array [
|
|
|
4402
4405
|
style={
|
|
4403
4406
|
Array [
|
|
4404
4407
|
Object {
|
|
4405
|
-
"
|
|
4406
|
-
"borderRadius": 8,
|
|
4407
|
-
"borderWidth": 1,
|
|
4408
|
-
"bottom": 0,
|
|
4409
|
-
"left": 0,
|
|
4410
|
-
"position": "absolute",
|
|
4411
|
-
"right": 0,
|
|
4412
|
-
"top": 0,
|
|
4413
|
-
},
|
|
4414
|
-
undefined,
|
|
4415
|
-
]
|
|
4416
|
-
}
|
|
4417
|
-
themeVariant="readonly"
|
|
4418
|
-
/>
|
|
4419
|
-
<View
|
|
4420
|
-
pointerEvents="none"
|
|
4421
|
-
style={
|
|
4422
|
-
Array [
|
|
4423
|
-
Object {
|
|
4424
|
-
"backgroundColor": "#ffffff",
|
|
4408
|
+
"alignItems": "center",
|
|
4425
4409
|
"flexDirection": "row",
|
|
4426
|
-
"
|
|
4427
|
-
"paddingHorizontal": 4,
|
|
4428
|
-
"position": "absolute",
|
|
4429
|
-
"top": -10,
|
|
4430
|
-
"zIndex": 1,
|
|
4410
|
+
"padding": 16,
|
|
4431
4411
|
},
|
|
4432
4412
|
undefined,
|
|
4433
4413
|
]
|
|
4434
4414
|
}
|
|
4435
4415
|
>
|
|
4436
|
-
<
|
|
4416
|
+
<View
|
|
4417
|
+
style={
|
|
4418
|
+
Array [
|
|
4419
|
+
Object {
|
|
4420
|
+
"borderColor": "#808f91",
|
|
4421
|
+
"borderRadius": 8,
|
|
4422
|
+
"borderWidth": 1,
|
|
4423
|
+
"bottom": 0,
|
|
4424
|
+
"left": 0,
|
|
4425
|
+
"position": "absolute",
|
|
4426
|
+
"right": 0,
|
|
4427
|
+
"top": 0,
|
|
4428
|
+
},
|
|
4429
|
+
undefined,
|
|
4430
|
+
]
|
|
4431
|
+
}
|
|
4432
|
+
themeVariant="readonly"
|
|
4433
|
+
/>
|
|
4434
|
+
<View
|
|
4435
|
+
pointerEvents="none"
|
|
4436
|
+
style={
|
|
4437
|
+
Array [
|
|
4438
|
+
Object {
|
|
4439
|
+
"backgroundColor": "#ffffff",
|
|
4440
|
+
"flexDirection": "row",
|
|
4441
|
+
"left": 16,
|
|
4442
|
+
"paddingHorizontal": 4,
|
|
4443
|
+
"position": "absolute",
|
|
4444
|
+
"top": -10,
|
|
4445
|
+
"zIndex": 1,
|
|
4446
|
+
},
|
|
4447
|
+
undefined,
|
|
4448
|
+
]
|
|
4449
|
+
}
|
|
4450
|
+
>
|
|
4451
|
+
<Text
|
|
4452
|
+
style={
|
|
4453
|
+
Array [
|
|
4454
|
+
Object {
|
|
4455
|
+
"color": "#001f23",
|
|
4456
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
4457
|
+
"fontSize": 12,
|
|
4458
|
+
"letterSpacing": 0.36,
|
|
4459
|
+
"lineHeight": 20,
|
|
4460
|
+
},
|
|
4461
|
+
Array [
|
|
4462
|
+
Object {
|
|
4463
|
+
"color": "#808f91",
|
|
4464
|
+
},
|
|
4465
|
+
undefined,
|
|
4466
|
+
],
|
|
4467
|
+
]
|
|
4468
|
+
}
|
|
4469
|
+
testID="input-label"
|
|
4470
|
+
themeFontSize="small"
|
|
4471
|
+
themeFontWeight="regular"
|
|
4472
|
+
themeIntent="body"
|
|
4473
|
+
themeVariant="readonly"
|
|
4474
|
+
>
|
|
4475
|
+
Allow notifications
|
|
4476
|
+
</Text>
|
|
4477
|
+
</View>
|
|
4478
|
+
<View
|
|
4437
4479
|
style={
|
|
4438
4480
|
Array [
|
|
4439
4481
|
Object {
|
|
4440
|
-
"
|
|
4441
|
-
"
|
|
4442
|
-
"
|
|
4443
|
-
"
|
|
4444
|
-
"
|
|
4482
|
+
"alignItems": "center",
|
|
4483
|
+
"alignSelf": "stretch",
|
|
4484
|
+
"flexDirection": "row",
|
|
4485
|
+
"flexGrow": 2,
|
|
4486
|
+
"flexShrink": 1,
|
|
4445
4487
|
},
|
|
4488
|
+
undefined,
|
|
4489
|
+
]
|
|
4490
|
+
}
|
|
4491
|
+
>
|
|
4492
|
+
<TextInput
|
|
4493
|
+
accessibilityState={
|
|
4494
|
+
Object {
|
|
4495
|
+
"disabled": true,
|
|
4496
|
+
}
|
|
4497
|
+
}
|
|
4498
|
+
editable={true}
|
|
4499
|
+
multiline={true}
|
|
4500
|
+
onBlur={[Function]}
|
|
4501
|
+
onChangeText={[Function]}
|
|
4502
|
+
onFocus={[Function]}
|
|
4503
|
+
pointerEvents="none"
|
|
4504
|
+
style={
|
|
4446
4505
|
Array [
|
|
4447
4506
|
Object {
|
|
4448
|
-
"
|
|
4507
|
+
"alignSelf": "stretch",
|
|
4508
|
+
"flexGrow": 2,
|
|
4509
|
+
"fontSize": 14,
|
|
4510
|
+
"marginHorizontal": 8,
|
|
4511
|
+
"textAlignVertical": "center",
|
|
4512
|
+
},
|
|
4513
|
+
Object {
|
|
4514
|
+
"color": "#001f23",
|
|
4515
|
+
},
|
|
4516
|
+
]
|
|
4517
|
+
}
|
|
4518
|
+
testID="text-input"
|
|
4519
|
+
value="Monday, Tuesday"
|
|
4520
|
+
/>
|
|
4521
|
+
</View>
|
|
4522
|
+
<View
|
|
4523
|
+
collapsable={false}
|
|
4524
|
+
nativeID="animatedComponent"
|
|
4525
|
+
style={
|
|
4526
|
+
Object {
|
|
4527
|
+
"transform": Array [
|
|
4528
|
+
Object {
|
|
4529
|
+
"rotate": "0deg",
|
|
4449
4530
|
},
|
|
4450
|
-
undefined,
|
|
4451
4531
|
],
|
|
4452
|
-
|
|
4532
|
+
}
|
|
4453
4533
|
}
|
|
4454
|
-
testID="input-label"
|
|
4455
|
-
themeFontSize="small"
|
|
4456
|
-
themeFontWeight="regular"
|
|
4457
|
-
themeIntent="body"
|
|
4458
|
-
themeVariant="readonly"
|
|
4459
4534
|
>
|
|
4460
|
-
|
|
4461
|
-
|
|
4535
|
+
<HeroIcon
|
|
4536
|
+
name="loading"
|
|
4537
|
+
style={
|
|
4538
|
+
Array [
|
|
4539
|
+
Object {
|
|
4540
|
+
"color": "#001f23",
|
|
4541
|
+
"fontSize": 16,
|
|
4542
|
+
},
|
|
4543
|
+
undefined,
|
|
4544
|
+
]
|
|
4545
|
+
}
|
|
4546
|
+
testID="input-suffix"
|
|
4547
|
+
themeIntent="text"
|
|
4548
|
+
themeSize="xsmall"
|
|
4549
|
+
/>
|
|
4550
|
+
</View>
|
|
4462
4551
|
</View>
|
|
4463
4552
|
<View
|
|
4464
4553
|
style={
|
|
4465
4554
|
Array [
|
|
4466
4555
|
Object {
|
|
4467
|
-
"
|
|
4468
|
-
"alignSelf": "stretch",
|
|
4469
|
-
"flexDirection": "row",
|
|
4470
|
-
"flexGrow": 2,
|
|
4471
|
-
"flexShrink": 1,
|
|
4556
|
+
"paddingLeft": 16,
|
|
4472
4557
|
},
|
|
4473
4558
|
undefined,
|
|
4474
4559
|
]
|
|
4475
4560
|
}
|
|
4476
4561
|
>
|
|
4477
|
-
<
|
|
4478
|
-
accessibilityState={
|
|
4479
|
-
Object {
|
|
4480
|
-
"disabled": true,
|
|
4481
|
-
}
|
|
4482
|
-
}
|
|
4483
|
-
editable={true}
|
|
4484
|
-
multiline={true}
|
|
4485
|
-
onBlur={[Function]}
|
|
4486
|
-
onChangeText={[Function]}
|
|
4487
|
-
onFocus={[Function]}
|
|
4488
|
-
pointerEvents="none"
|
|
4489
|
-
style={
|
|
4490
|
-
Array [
|
|
4491
|
-
Object {
|
|
4492
|
-
"alignSelf": "stretch",
|
|
4493
|
-
"flexGrow": 2,
|
|
4494
|
-
"fontSize": 14,
|
|
4495
|
-
"marginHorizontal": 8,
|
|
4496
|
-
"textAlignVertical": "center",
|
|
4497
|
-
},
|
|
4498
|
-
Object {
|
|
4499
|
-
"color": "#001f23",
|
|
4500
|
-
},
|
|
4501
|
-
]
|
|
4502
|
-
}
|
|
4503
|
-
testID="text-input"
|
|
4504
|
-
value="Monday, Tuesday"
|
|
4505
|
-
/>
|
|
4506
|
-
</View>
|
|
4507
|
-
<View
|
|
4508
|
-
collapsable={false}
|
|
4509
|
-
nativeID="animatedComponent"
|
|
4510
|
-
style={
|
|
4511
|
-
Object {
|
|
4512
|
-
"transform": Array [
|
|
4513
|
-
Object {
|
|
4514
|
-
"rotate": "0deg",
|
|
4515
|
-
},
|
|
4516
|
-
],
|
|
4517
|
-
}
|
|
4518
|
-
}
|
|
4519
|
-
>
|
|
4520
|
-
<HeroIcon
|
|
4521
|
-
name="loading"
|
|
4562
|
+
<View
|
|
4522
4563
|
style={
|
|
4523
4564
|
Array [
|
|
4524
4565
|
Object {
|
|
4525
|
-
"
|
|
4526
|
-
"
|
|
4566
|
+
"flexDirection": "row",
|
|
4567
|
+
"justifyContent": "space-between",
|
|
4527
4568
|
},
|
|
4528
4569
|
undefined,
|
|
4529
4570
|
]
|
|
4530
4571
|
}
|
|
4531
|
-
testID="input-suffix"
|
|
4532
|
-
themeIntent="text"
|
|
4533
|
-
themeSize="xsmall"
|
|
4534
4572
|
/>
|
|
4535
4573
|
</View>
|
|
4536
4574
|
</View>
|
|
4537
|
-
<View
|
|
4538
|
-
style={
|
|
4539
|
-
Array [
|
|
4540
|
-
Object {
|
|
4541
|
-
"paddingLeft": 16,
|
|
4542
|
-
},
|
|
4543
|
-
undefined,
|
|
4544
|
-
]
|
|
4545
|
-
}
|
|
4546
|
-
>
|
|
4547
|
-
<View
|
|
4548
|
-
style={
|
|
4549
|
-
Array [
|
|
4550
|
-
Object {
|
|
4551
|
-
"flexDirection": "row",
|
|
4552
|
-
"justifyContent": "space-between",
|
|
4553
|
-
},
|
|
4554
|
-
undefined,
|
|
4555
|
-
]
|
|
4556
|
-
}
|
|
4557
|
-
/>
|
|
4558
|
-
</View>
|
|
4559
4575
|
</View>
|
|
4560
4576
|
</View>
|
|
4561
4577
|
</View>,
|
|
@@ -5906,24 +5922,15 @@ Array [
|
|
|
5906
5922
|
}
|
|
5907
5923
|
>
|
|
5908
5924
|
<View
|
|
5909
|
-
pointerEvents="
|
|
5910
|
-
style={
|
|
5911
|
-
Array [
|
|
5912
|
-
Object {
|
|
5913
|
-
"marginVertical": 8,
|
|
5914
|
-
"width": "100%",
|
|
5915
|
-
},
|
|
5916
|
-
undefined,
|
|
5917
|
-
]
|
|
5918
|
-
}
|
|
5925
|
+
pointerEvents="none"
|
|
5919
5926
|
>
|
|
5920
5927
|
<View
|
|
5928
|
+
pointerEvents="auto"
|
|
5921
5929
|
style={
|
|
5922
5930
|
Array [
|
|
5923
5931
|
Object {
|
|
5924
|
-
"
|
|
5925
|
-
"
|
|
5926
|
-
"padding": 16,
|
|
5932
|
+
"marginVertical": 8,
|
|
5933
|
+
"width": "100%",
|
|
5927
5934
|
},
|
|
5928
5935
|
undefined,
|
|
5929
5936
|
]
|
|
@@ -5933,145 +5940,158 @@ Array [
|
|
|
5933
5940
|
style={
|
|
5934
5941
|
Array [
|
|
5935
5942
|
Object {
|
|
5936
|
-
"
|
|
5937
|
-
"borderRadius": 8,
|
|
5938
|
-
"borderWidth": 1,
|
|
5939
|
-
"bottom": 0,
|
|
5940
|
-
"left": 0,
|
|
5941
|
-
"position": "absolute",
|
|
5942
|
-
"right": 0,
|
|
5943
|
-
"top": 0,
|
|
5944
|
-
},
|
|
5945
|
-
undefined,
|
|
5946
|
-
]
|
|
5947
|
-
}
|
|
5948
|
-
themeVariant="filled"
|
|
5949
|
-
/>
|
|
5950
|
-
<View
|
|
5951
|
-
pointerEvents="none"
|
|
5952
|
-
style={
|
|
5953
|
-
Array [
|
|
5954
|
-
Object {
|
|
5955
|
-
"backgroundColor": "#ffffff",
|
|
5943
|
+
"alignItems": "center",
|
|
5956
5944
|
"flexDirection": "row",
|
|
5957
|
-
"
|
|
5958
|
-
"paddingHorizontal": 4,
|
|
5959
|
-
"position": "absolute",
|
|
5960
|
-
"top": -10,
|
|
5961
|
-
"zIndex": 1,
|
|
5945
|
+
"padding": 16,
|
|
5962
5946
|
},
|
|
5963
5947
|
undefined,
|
|
5964
5948
|
]
|
|
5965
5949
|
}
|
|
5966
5950
|
>
|
|
5967
|
-
<
|
|
5951
|
+
<View
|
|
5968
5952
|
style={
|
|
5969
5953
|
Array [
|
|
5970
5954
|
Object {
|
|
5971
|
-
"
|
|
5972
|
-
"
|
|
5973
|
-
"
|
|
5974
|
-
"
|
|
5975
|
-
"
|
|
5955
|
+
"borderColor": "#001f23",
|
|
5956
|
+
"borderRadius": 8,
|
|
5957
|
+
"borderWidth": 1,
|
|
5958
|
+
"bottom": 0,
|
|
5959
|
+
"left": 0,
|
|
5960
|
+
"position": "absolute",
|
|
5961
|
+
"right": 0,
|
|
5962
|
+
"top": 0,
|
|
5976
5963
|
},
|
|
5977
|
-
|
|
5978
|
-
Object {
|
|
5979
|
-
"color": "#001f23",
|
|
5980
|
-
},
|
|
5981
|
-
undefined,
|
|
5982
|
-
],
|
|
5964
|
+
undefined,
|
|
5983
5965
|
]
|
|
5984
5966
|
}
|
|
5985
|
-
testID="input-label"
|
|
5986
|
-
themeFontSize="small"
|
|
5987
|
-
themeFontWeight="regular"
|
|
5988
|
-
themeIntent="body"
|
|
5989
5967
|
themeVariant="filled"
|
|
5968
|
+
/>
|
|
5969
|
+
<View
|
|
5970
|
+
pointerEvents="none"
|
|
5971
|
+
style={
|
|
5972
|
+
Array [
|
|
5973
|
+
Object {
|
|
5974
|
+
"backgroundColor": "#ffffff",
|
|
5975
|
+
"flexDirection": "row",
|
|
5976
|
+
"left": 16,
|
|
5977
|
+
"paddingHorizontal": 4,
|
|
5978
|
+
"position": "absolute",
|
|
5979
|
+
"top": -10,
|
|
5980
|
+
"zIndex": 1,
|
|
5981
|
+
},
|
|
5982
|
+
undefined,
|
|
5983
|
+
]
|
|
5984
|
+
}
|
|
5990
5985
|
>
|
|
5991
|
-
|
|
5992
|
-
|
|
5993
|
-
|
|
5994
|
-
|
|
5995
|
-
|
|
5996
|
-
|
|
5997
|
-
|
|
5998
|
-
|
|
5999
|
-
|
|
6000
|
-
|
|
6001
|
-
|
|
6002
|
-
|
|
6003
|
-
|
|
6004
|
-
|
|
6005
|
-
|
|
6006
|
-
|
|
6007
|
-
|
|
6008
|
-
<TextInput
|
|
6009
|
-
accessibilityState={
|
|
6010
|
-
Object {
|
|
6011
|
-
"disabled": false,
|
|
5986
|
+
<Text
|
|
5987
|
+
style={
|
|
5988
|
+
Array [
|
|
5989
|
+
Object {
|
|
5990
|
+
"color": "#001f23",
|
|
5991
|
+
"fontFamily": "BeVietnamPro-Regular",
|
|
5992
|
+
"fontSize": 12,
|
|
5993
|
+
"letterSpacing": 0.36,
|
|
5994
|
+
"lineHeight": 20,
|
|
5995
|
+
},
|
|
5996
|
+
Array [
|
|
5997
|
+
Object {
|
|
5998
|
+
"color": "#001f23",
|
|
5999
|
+
},
|
|
6000
|
+
undefined,
|
|
6001
|
+
],
|
|
6002
|
+
]
|
|
6012
6003
|
}
|
|
6013
|
-
|
|
6014
|
-
|
|
6015
|
-
|
|
6016
|
-
|
|
6017
|
-
|
|
6018
|
-
|
|
6019
|
-
|
|
6004
|
+
testID="input-label"
|
|
6005
|
+
themeFontSize="small"
|
|
6006
|
+
themeFontWeight="regular"
|
|
6007
|
+
themeIntent="body"
|
|
6008
|
+
themeVariant="filled"
|
|
6009
|
+
>
|
|
6010
|
+
Allow notifications
|
|
6011
|
+
</Text>
|
|
6012
|
+
</View>
|
|
6013
|
+
<View
|
|
6020
6014
|
style={
|
|
6021
6015
|
Array [
|
|
6022
6016
|
Object {
|
|
6017
|
+
"alignItems": "center",
|
|
6023
6018
|
"alignSelf": "stretch",
|
|
6019
|
+
"flexDirection": "row",
|
|
6024
6020
|
"flexGrow": 2,
|
|
6025
|
-
"
|
|
6026
|
-
"marginHorizontal": 8,
|
|
6027
|
-
"textAlignVertical": "center",
|
|
6021
|
+
"flexShrink": 1,
|
|
6028
6022
|
},
|
|
6023
|
+
undefined,
|
|
6024
|
+
]
|
|
6025
|
+
}
|
|
6026
|
+
>
|
|
6027
|
+
<TextInput
|
|
6028
|
+
accessibilityState={
|
|
6029
|
+
Object {
|
|
6030
|
+
"disabled": false,
|
|
6031
|
+
}
|
|
6032
|
+
}
|
|
6033
|
+
editable={true}
|
|
6034
|
+
multiline={true}
|
|
6035
|
+
onBlur={[Function]}
|
|
6036
|
+
onChangeText={[Function]}
|
|
6037
|
+
onFocus={[Function]}
|
|
6038
|
+
pointerEvents="none"
|
|
6039
|
+
style={
|
|
6040
|
+
Array [
|
|
6041
|
+
Object {
|
|
6042
|
+
"alignSelf": "stretch",
|
|
6043
|
+
"flexGrow": 2,
|
|
6044
|
+
"fontSize": 14,
|
|
6045
|
+
"marginHorizontal": 8,
|
|
6046
|
+
"textAlignVertical": "center",
|
|
6047
|
+
},
|
|
6048
|
+
Object {
|
|
6049
|
+
"color": "#001f23",
|
|
6050
|
+
},
|
|
6051
|
+
]
|
|
6052
|
+
}
|
|
6053
|
+
testID="text-input"
|
|
6054
|
+
value="B1, B2"
|
|
6055
|
+
/>
|
|
6056
|
+
</View>
|
|
6057
|
+
<HeroIcon
|
|
6058
|
+
name="arrow-down"
|
|
6059
|
+
style={
|
|
6060
|
+
Array [
|
|
6029
6061
|
Object {
|
|
6030
6062
|
"color": "#001f23",
|
|
6063
|
+
"fontSize": 16,
|
|
6031
6064
|
},
|
|
6065
|
+
undefined,
|
|
6032
6066
|
]
|
|
6033
6067
|
}
|
|
6034
|
-
testID="
|
|
6035
|
-
|
|
6068
|
+
testID="input-suffix"
|
|
6069
|
+
themeIntent="text"
|
|
6070
|
+
themeSize="xsmall"
|
|
6036
6071
|
/>
|
|
6037
6072
|
</View>
|
|
6038
|
-
<HeroIcon
|
|
6039
|
-
name="arrow-down"
|
|
6040
|
-
style={
|
|
6041
|
-
Array [
|
|
6042
|
-
Object {
|
|
6043
|
-
"color": "#001f23",
|
|
6044
|
-
"fontSize": 16,
|
|
6045
|
-
},
|
|
6046
|
-
undefined,
|
|
6047
|
-
]
|
|
6048
|
-
}
|
|
6049
|
-
testID="input-suffix"
|
|
6050
|
-
themeIntent="text"
|
|
6051
|
-
themeSize="xsmall"
|
|
6052
|
-
/>
|
|
6053
|
-
</View>
|
|
6054
|
-
<View
|
|
6055
|
-
style={
|
|
6056
|
-
Array [
|
|
6057
|
-
Object {
|
|
6058
|
-
"paddingLeft": 16,
|
|
6059
|
-
},
|
|
6060
|
-
undefined,
|
|
6061
|
-
]
|
|
6062
|
-
}
|
|
6063
|
-
>
|
|
6064
6073
|
<View
|
|
6065
6074
|
style={
|
|
6066
6075
|
Array [
|
|
6067
6076
|
Object {
|
|
6068
|
-
"
|
|
6069
|
-
"justifyContent": "space-between",
|
|
6077
|
+
"paddingLeft": 16,
|
|
6070
6078
|
},
|
|
6071
6079
|
undefined,
|
|
6072
6080
|
]
|
|
6073
6081
|
}
|
|
6074
|
-
|
|
6082
|
+
>
|
|
6083
|
+
<View
|
|
6084
|
+
style={
|
|
6085
|
+
Array [
|
|
6086
|
+
Object {
|
|
6087
|
+
"flexDirection": "row",
|
|
6088
|
+
"justifyContent": "space-between",
|
|
6089
|
+
},
|
|
6090
|
+
undefined,
|
|
6091
|
+
]
|
|
6092
|
+
}
|
|
6093
|
+
/>
|
|
6094
|
+
</View>
|
|
6075
6095
|
</View>
|
|
6076
6096
|
</View>
|
|
6077
6097
|
</View>
|