@hero-design/rn 7.7.0 → 7.9.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.
Files changed (221) hide show
  1. package/.turbo/turbo-build.log +2 -2
  2. package/es/index.js +1775 -333
  3. package/lib/index.js +1780 -336
  4. package/package.json +4 -8
  5. package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
  6. package/src/components/Avatar/index.tsx +1 -1
  7. package/src/components/Button/Button.tsx +4 -2
  8. package/src/components/Button/LoadingIndicator/StyledLoadingIndicator.tsx +7 -2
  9. package/src/components/Button/LoadingIndicator/__tests__/StyledLoadingIndicator.spec.tsx +2 -0
  10. package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +40 -0
  11. package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +242 -0
  12. package/src/components/Button/LoadingIndicator/__tests__/index.spec.tsx +2 -0
  13. package/src/components/Button/LoadingIndicator/index.tsx +3 -1
  14. package/src/components/Button/StyledButton.tsx +15 -2
  15. package/src/components/Button/__tests__/Button.spec.tsx +2 -0
  16. package/src/components/Button/__tests__/StyledButton.spec.tsx +12 -0
  17. package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +314 -0
  18. package/src/components/Card/DataCard/StyledDataCard.tsx +18 -0
  19. package/src/components/Card/DataCard/__tests__/StyledDataCard.spec.tsx +24 -0
  20. package/src/components/Card/DataCard/__tests__/__snapshots__/StyledDataCard.spec.tsx.snap +96 -0
  21. package/src/components/Card/DataCard/__tests__/__snapshots__/index.spec.tsx.snap +151 -0
  22. package/src/components/Card/DataCard/__tests__/index.spec.tsx +30 -0
  23. package/src/components/Card/DataCard/index.tsx +35 -0
  24. package/src/components/Card/StyledCard.tsx +1 -3
  25. package/src/components/Card/__tests__/__snapshots__/StyledCard.spec.tsx.snap +0 -1
  26. package/src/components/Card/index.tsx +7 -2
  27. package/src/components/Checkbox/index.tsx +1 -1
  28. package/src/components/Collapse/index.tsx +1 -1
  29. package/src/components/Icon/HeroIcon/index.tsx +3 -1
  30. package/src/components/Icon/index.tsx +3 -2
  31. package/src/components/List/BasicListItem.tsx +98 -0
  32. package/src/components/List/ListItem.tsx +142 -0
  33. package/src/components/List/StyledBasicListItem.tsx +34 -0
  34. package/src/components/List/StyledListItem.tsx +82 -0
  35. package/src/components/List/__tests__/BasicListItem.spec.tsx +37 -0
  36. package/src/components/List/__tests__/ListItem.spec.tsx +110 -0
  37. package/src/components/List/__tests__/StyledBasicListItem.spec.tsx +24 -0
  38. package/src/components/List/__tests__/StyledListItem.spec.tsx +48 -0
  39. package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +103 -0
  40. package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +760 -0
  41. package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +105 -0
  42. package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +200 -0
  43. package/src/components/List/index.tsx +14 -0
  44. package/src/components/SectionHeading/index.tsx +1 -1
  45. package/src/components/Select/Footer.tsx +13 -0
  46. package/src/components/Select/MultiSelect/Option.tsx +25 -0
  47. package/src/components/Select/MultiSelect/OptionList.tsx +30 -63
  48. package/src/components/Select/MultiSelect/__tests__/Option.spec.tsx +16 -0
  49. package/src/components/Select/MultiSelect/__tests__/OptionList.spec.tsx +42 -0
  50. package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +70 -0
  51. package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +627 -0
  52. package/src/components/Select/MultiSelect/__tests__/index.spec.tsx +6 -6
  53. package/src/components/Select/MultiSelect/index.tsx +8 -7
  54. package/src/components/Select/SingleSelect/Option.tsx +23 -0
  55. package/src/components/Select/SingleSelect/OptionList.tsx +43 -0
  56. package/src/components/Select/SingleSelect/__tests__/Option.spec.tsx +16 -0
  57. package/src/components/Select/SingleSelect/__tests__/OptionList.spec.tsx +42 -0
  58. package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +56 -0
  59. package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +571 -0
  60. package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +1430 -0
  61. package/src/components/Select/SingleSelect/__tests__/index.spec.tsx +89 -0
  62. package/src/components/Select/SingleSelect/index.tsx +89 -0
  63. package/src/components/Select/{MultiSelect/StyledMultiSelect.tsx → StyledSelect.tsx} +1 -1
  64. package/src/components/Select/{MultiSelect/__tests__/StyledMultiSelect.spec.tsx → __tests__/StyledSelect.spec.tsx} +2 -2
  65. package/src/components/Select/{MultiSelect/__tests__/__snapshots__/StyledMultiSelect.spec.tsx.snap → __tests__/__snapshots__/StyledSelect.spec.tsx.snap} +0 -0
  66. package/src/components/Select/helpers.tsx +18 -0
  67. package/src/components/Select/index.tsx +4 -3
  68. package/src/components/Select/{MultiSelect/types.ts → types.ts} +0 -0
  69. package/src/components/Switch/index.tsx +1 -1
  70. package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +2 -2
  71. package/src/components/Toolbar/StyledToolbar.tsx +42 -0
  72. package/src/components/Toolbar/ToolbarGroup.tsx +31 -0
  73. package/src/components/Toolbar/ToolbarItem.tsx +57 -0
  74. package/src/components/Toolbar/__tests__/ToolbarGroup.spec.tsx +32 -0
  75. package/src/components/Toolbar/__tests__/ToolbarItem.spec.tsx +57 -0
  76. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarGroup.spec.tsx.snap +391 -0
  77. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +355 -0
  78. package/src/components/Toolbar/index.tsx +18 -0
  79. package/src/components/Typography/Text/StyledText.tsx +8 -1
  80. package/src/components/Typography/Text/__tests__/StyledText.spec.tsx +5 -0
  81. package/src/components/Typography/Text/__tests__/__snapshots__/StyledText.spec.tsx.snap +110 -0
  82. package/src/components/Typography/Text/index.tsx +9 -2
  83. package/src/index.ts +4 -0
  84. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +83 -3
  85. package/src/theme/components/button.ts +2 -0
  86. package/src/theme/components/card.ts +13 -2
  87. package/src/theme/components/icon.ts +1 -0
  88. package/src/theme/components/list.ts +46 -0
  89. package/src/theme/components/toolbar.ts +27 -0
  90. package/src/theme/components/typography.ts +4 -0
  91. package/src/theme/global/colors.ts +9 -2
  92. package/src/theme/global/space.ts +2 -0
  93. package/src/theme/index.ts +6 -0
  94. package/tsconfig.json +1 -2
  95. package/types/components/Avatar/index.d.ts +1 -1
  96. package/types/components/Button/Button.d.ts +2 -2
  97. package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +1 -1
  98. package/types/components/Button/LoadingIndicator/index.d.ts +1 -1
  99. package/types/components/Button/StyledButton.d.ts +2 -2
  100. package/types/components/Card/DataCard/StyledDataCard.d.ts +16 -0
  101. package/types/components/{Select/MultiSelect/__tests__/StyledMultiSelect.spec.d.ts → Card/DataCard/__tests__/StyledDataCard.spec.d.ts} +0 -0
  102. package/types/components/Card/DataCard/__tests__/index.spec.d.ts +1 -0
  103. package/types/components/Card/DataCard/index.d.ts +22 -0
  104. package/types/components/Card/index.d.ts +7 -3
  105. package/types/components/Checkbox/index.d.ts +1 -1
  106. package/types/components/Collapse/index.d.ts +1 -1
  107. package/types/components/Icon/HeroIcon/index.d.ts +1 -1
  108. package/types/components/Icon/index.d.ts +2 -2
  109. package/types/components/List/BasicListItem.d.ts +43 -0
  110. package/types/components/List/ListItem.d.ts +51 -0
  111. package/types/components/List/StyledBasicListItem.d.ts +29 -0
  112. package/types/components/List/StyledListItem.d.ts +51 -0
  113. package/types/components/List/__tests__/BasicListItem.spec.d.ts +1 -0
  114. package/types/components/List/__tests__/ListItem.spec.d.ts +1 -0
  115. package/types/components/List/__tests__/StyledBasicListItem.spec.d.ts +1 -0
  116. package/types/components/List/__tests__/StyledListItem.spec.d.ts +1 -0
  117. package/types/components/List/index.d.ts +8 -0
  118. package/types/components/SectionHeading/index.d.ts +1 -1
  119. package/types/components/Select/{MultiSelect/Footer.d.ts → Footer.d.ts} +2 -2
  120. package/types/components/Select/MultiSelect/Option.d.ts +6 -0
  121. package/types/components/Select/MultiSelect/OptionList.d.ts +7 -1
  122. package/types/components/Select/MultiSelect/__tests__/Option.spec.d.ts +1 -0
  123. package/types/components/Select/MultiSelect/__tests__/OptionList.spec.d.ts +1 -0
  124. package/types/components/Select/MultiSelect/index.d.ts +4 -4
  125. package/types/components/Select/SingleSelect/Option.d.ts +6 -0
  126. package/types/components/Select/SingleSelect/OptionList.d.ts +9 -0
  127. package/types/components/Select/SingleSelect/__tests__/Option.spec.d.ts +1 -0
  128. package/types/components/Select/SingleSelect/__tests__/OptionList.spec.d.ts +1 -0
  129. package/types/components/Select/SingleSelect/__tests__/index.spec.d.ts +1 -0
  130. package/types/components/Select/SingleSelect/index.d.ts +35 -0
  131. package/types/components/Select/{MultiSelect/StyledMultiSelect.d.ts → StyledSelect.d.ts} +1 -1
  132. package/types/components/Select/__tests__/StyledSelect.spec.d.ts +1 -0
  133. package/types/components/Select/helpers.d.ts +2 -0
  134. package/types/components/Select/index.d.ts +3 -3
  135. package/types/components/Select/{MultiSelect/types.d.ts → types.d.ts} +0 -0
  136. package/types/components/Switch/index.d.ts +1 -1
  137. package/types/components/Toolbar/StyledToolbar.d.ts +22 -0
  138. package/types/components/Toolbar/ToolbarGroup.d.ts +13 -0
  139. package/types/components/Toolbar/ToolbarItem.d.ts +25 -0
  140. package/types/components/Toolbar/__tests__/ToolbarGroup.spec.d.ts +1 -0
  141. package/types/components/Toolbar/__tests__/ToolbarItem.spec.d.ts +1 -0
  142. package/types/components/Toolbar/index.d.ts +11 -0
  143. package/types/components/Typography/Text/StyledText.d.ts +1 -1
  144. package/types/components/Typography/Text/index.d.ts +2 -2
  145. package/types/index.d.ts +3 -1
  146. package/types/theme/components/button.d.ts +2 -0
  147. package/types/theme/components/card.d.ts +10 -0
  148. package/types/theme/components/icon.d.ts +1 -0
  149. package/types/theme/components/list.d.ts +40 -0
  150. package/types/theme/components/toolbar.d.ts +21 -0
  151. package/types/theme/components/typography.d.ts +4 -0
  152. package/types/theme/global/colors.d.ts +5 -0
  153. package/types/theme/global/index.d.ts +5 -0
  154. package/types/theme/global/space.d.ts +1 -0
  155. package/types/theme/index.d.ts +4 -0
  156. package/playground/.detoxrc.json +0 -49
  157. package/playground/.prettierrc.json +0 -8
  158. package/playground/.turbo/turbo-type-check.log +0 -7
  159. package/playground/app.json +0 -9
  160. package/playground/babel.config.js +0 -63
  161. package/playground/e2e/config.json +0 -9
  162. package/playground/e2e/environment.js +0 -23
  163. package/playground/e2e/firstTest.e2e.js +0 -16
  164. package/playground/expoEntry.js +0 -5
  165. package/playground/fonts/be-vietnam-pro-light.ttf +0 -0
  166. package/playground/fonts/be-vietnam-pro-regular.ttf +0 -0
  167. package/playground/fonts/be-vietnam-pro-semibold.ttf +0 -0
  168. package/playground/fonts/hero-icons.ttf +0 -0
  169. package/playground/index.js +0 -7
  170. package/playground/ios/MobileHeroDesignPlayground/AppDelegate.h +0 -9
  171. package/playground/ios/MobileHeroDesignPlayground/AppDelegate.m +0 -75
  172. package/playground/ios/MobileHeroDesignPlayground/Images.xcassets/AppIcon.appiconset/Contents.json +0 -38
  173. package/playground/ios/MobileHeroDesignPlayground/Images.xcassets/Contents.json +0 -6
  174. package/playground/ios/MobileHeroDesignPlayground/Images.xcassets/SplashScreenBackground.imageset/Contents.json +0 -21
  175. package/playground/ios/MobileHeroDesignPlayground/Images.xcassets/SplashScreenBackground.imageset/image.png +0 -0
  176. package/playground/ios/MobileHeroDesignPlayground/Info.plist +0 -85
  177. package/playground/ios/MobileHeroDesignPlayground/MobileHeroDesignPlayground-Bridging-Header.h +0 -3
  178. package/playground/ios/MobileHeroDesignPlayground/MobileHeroDesignPlayground.entitlements +0 -8
  179. package/playground/ios/MobileHeroDesignPlayground/SplashScreen.storyboard +0 -40
  180. package/playground/ios/MobileHeroDesignPlayground/Supporting/Expo.plist +0 -16
  181. package/playground/ios/MobileHeroDesignPlayground/main.m +0 -10
  182. package/playground/ios/MobileHeroDesignPlayground/noop-file.swift +0 -4
  183. package/playground/ios/MobileHeroDesignPlayground.xcodeproj/project.pbxproj +0 -515
  184. package/playground/ios/MobileHeroDesignPlayground.xcodeproj/xcshareddata/xcschemes/MobileHeroDesignPlayground.xcscheme +0 -88
  185. package/playground/ios/MobileHeroDesignPlayground.xcworkspace/contents.xcworkspacedata +0 -10
  186. package/playground/ios/MobileHeroDesignPlayground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
  187. package/playground/ios/Podfile +0 -49
  188. package/playground/ios/Podfile.lock +0 -478
  189. package/playground/ios/Podfile.properties.json +0 -3
  190. package/playground/metro.config.js +0 -24
  191. package/playground/package.json +0 -63
  192. package/playground/src/Alert.tsx +0 -80
  193. package/playground/src/App.tsx +0 -210
  194. package/playground/src/Avatar.tsx +0 -102
  195. package/playground/src/Badge.tsx +0 -187
  196. package/playground/src/BottomNavigation.tsx +0 -72
  197. package/playground/src/BottomSheet.tsx +0 -43
  198. package/playground/src/Button.tsx +0 -170
  199. package/playground/src/Card.tsx +0 -342
  200. package/playground/src/Checkbox.tsx +0 -55
  201. package/playground/src/Collapse.tsx +0 -99
  202. package/playground/src/ContentNavigator.tsx +0 -58
  203. package/playground/src/Divider.tsx +0 -13
  204. package/playground/src/Drawer.tsx +0 -32
  205. package/playground/src/FAB.tsx +0 -66
  206. package/playground/src/Icon.tsx +0 -144
  207. package/playground/src/IconButton.tsx +0 -78
  208. package/playground/src/MultipleThemes.tsx +0 -34
  209. package/playground/src/Progress.tsx +0 -95
  210. package/playground/src/Radio.tsx +0 -25
  211. package/playground/src/SectionHeading.tsx +0 -68
  212. package/playground/src/Select.tsx +0 -32
  213. package/playground/src/Spinner.tsx +0 -19
  214. package/playground/src/Switch.tsx +0 -80
  215. package/playground/src/Tabs.tsx +0 -136
  216. package/playground/src/Tag.tsx +0 -45
  217. package/playground/src/TextInput.tsx +0 -14
  218. package/playground/src/Toast.tsx +0 -114
  219. package/playground/src/Typography.tsx +0 -23
  220. package/playground/tsconfig.json +0 -21
  221. package/src/components/Select/MultiSelect/Footer.tsx +0 -15
@@ -0,0 +1,1430 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`rendering renders correctly when bottom sheet is NOT visible 1`] = `
4
+ <View
5
+ accessible={true}
6
+ collapsable={false}
7
+ focusable={true}
8
+ nativeID="animatedComponent"
9
+ onClick={[Function]}
10
+ onResponderGrant={[Function]}
11
+ onResponderMove={[Function]}
12
+ onResponderRelease={[Function]}
13
+ onResponderTerminate={[Function]}
14
+ onResponderTerminationRequest={[Function]}
15
+ onStartShouldSetResponder={[Function]}
16
+ style={
17
+ Object {
18
+ "opacity": 1,
19
+ }
20
+ }
21
+ >
22
+ <View
23
+ style={
24
+ Array [
25
+ Object {
26
+ "alignItems": "center",
27
+ "borderRadius": 8,
28
+ "borderWidth": 1,
29
+ "flexDirection": "row",
30
+ "padding": 16,
31
+ "position": "relative",
32
+ "width": "100%",
33
+ },
34
+ undefined,
35
+ ]
36
+ }
37
+ >
38
+ <Text
39
+ style={
40
+ Array [
41
+ Object {
42
+ "color": "#292a2b",
43
+ "fontFamily": "BeVietnamPro-Regular",
44
+ "fontSize": 12,
45
+ "letterSpacing": 0.36,
46
+ "lineHeight": 20,
47
+ },
48
+ Array [
49
+ Object {
50
+ "backgroundColor": "#ffffff",
51
+ "left": 16,
52
+ "paddingHorizontal": 4,
53
+ "position": "absolute",
54
+ "top": -10,
55
+ "zIndex": 1,
56
+ },
57
+ undefined,
58
+ ],
59
+ ]
60
+ }
61
+ testID="input-label"
62
+ themeFontSize="small"
63
+ themeFontWeight="regular"
64
+ themeIntent="body"
65
+ >
66
+ Allow notifications
67
+ </Text>
68
+ <TextInput
69
+ editable={false}
70
+ multiline={true}
71
+ onPressIn={[Function]}
72
+ style={
73
+ Array [
74
+ Object {
75
+ "flex": 1,
76
+ "fontSize": 16,
77
+ "marginHorizontal": 8,
78
+ },
79
+ Object {
80
+ "color": "#292a2b",
81
+ },
82
+ ]
83
+ }
84
+ testID="text-input"
85
+ value="Monday"
86
+ />
87
+ <HeroIcon
88
+ name="arrow-down"
89
+ style={
90
+ Array [
91
+ Object {
92
+ "color": "#292a2b",
93
+ "fontSize": 16,
94
+ },
95
+ undefined,
96
+ ]
97
+ }
98
+ testID="input-suffix"
99
+ themeIntent="text"
100
+ themeSize="xsmall"
101
+ />
102
+ </View>
103
+ <Modal
104
+ hardwareAccelerated={false}
105
+ onRequestClose={[Function]}
106
+ transparent={true}
107
+ visible={false}
108
+ >
109
+ <View
110
+ pointerEvents="box-none"
111
+ style={
112
+ Array [
113
+ Object {
114
+ "bottom": 0,
115
+ "flexDirection": "column-reverse",
116
+ "left": 0,
117
+ "position": "absolute",
118
+ "right": 0,
119
+ "top": 0,
120
+ },
121
+ undefined,
122
+ ]
123
+ }
124
+ >
125
+ <View
126
+ accessible={true}
127
+ collapsable={false}
128
+ focusable={true}
129
+ nativeID="animatedComponent"
130
+ onBlur={[Function]}
131
+ onClick={[Function]}
132
+ onFocus={[Function]}
133
+ onResponderGrant={[Function]}
134
+ onResponderMove={[Function]}
135
+ onResponderRelease={[Function]}
136
+ onResponderTerminate={[Function]}
137
+ onResponderTerminationRequest={[Function]}
138
+ onStartShouldSetResponder={[Function]}
139
+ style={
140
+ Object {
141
+ "backgroundColor": "#292a2b",
142
+ "bottom": 0,
143
+ "left": 0,
144
+ "opacity": 0.48,
145
+ "position": "absolute",
146
+ "right": 0,
147
+ "top": 0,
148
+ }
149
+ }
150
+ />
151
+ <View
152
+ collapsable={false}
153
+ nativeID="animatedComponent"
154
+ onLayout={[Function]}
155
+ style={
156
+ Object {
157
+ "backgroundColor": "#ffffff",
158
+ "borderTopLeftRadius": 16,
159
+ "borderTopRightRadius": 16,
160
+ "elevation": 10,
161
+ "maxHeight": "94%",
162
+ "shadowColor": "#292a2b",
163
+ "shadowOffset": Object {
164
+ "height": 3,
165
+ "width": 0,
166
+ },
167
+ "shadowOpacity": 0.27,
168
+ "shadowRadius": 4.65,
169
+ "transform": Array [
170
+ Object {
171
+ "scaleY": 0,
172
+ },
173
+ Object {
174
+ "translateY": 0,
175
+ },
176
+ ],
177
+ "width": "100%",
178
+ }
179
+ }
180
+ >
181
+ <View
182
+ style={
183
+ Array [
184
+ Object {
185
+ "flexDirection": "row",
186
+ "minHeight": 64,
187
+ },
188
+ undefined,
189
+ ]
190
+ }
191
+ >
192
+ <View
193
+ adjacentIcon={true}
194
+ style={
195
+ Array [
196
+ Object {
197
+ "flex": 1,
198
+ "justifyContent": "center",
199
+ "paddingLeft": 24,
200
+ "paddingRight": 0,
201
+ "paddingVertical": 8,
202
+ },
203
+ undefined,
204
+ ]
205
+ }
206
+ >
207
+ <Text
208
+ style={
209
+ Array [
210
+ Object {
211
+ "color": "#292a2b",
212
+ "fontFamily": "BeVietnamPro-SemiBold",
213
+ "fontSize": 16,
214
+ "letterSpacing": 0.48,
215
+ "lineHeight": 24,
216
+ },
217
+ undefined,
218
+ ]
219
+ }
220
+ themeFontSize="large"
221
+ themeFontWeight="semi-bold"
222
+ themeIntent="body"
223
+ >
224
+ Allow notifications
225
+ </Text>
226
+ </View>
227
+ <View
228
+ style={
229
+ Array [
230
+ Object {
231
+ "alignItems": "center",
232
+ "justifyContent": "center",
233
+ "width": 72,
234
+ },
235
+ undefined,
236
+ ]
237
+ }
238
+ >
239
+ <View
240
+ accessible={true}
241
+ collapsable={false}
242
+ focusable={true}
243
+ nativeID="animatedComponent"
244
+ onClick={[Function]}
245
+ onResponderGrant={[Function]}
246
+ onResponderMove={[Function]}
247
+ onResponderRelease={[Function]}
248
+ onResponderTerminate={[Function]}
249
+ onResponderTerminationRequest={[Function]}
250
+ onStartShouldSetResponder={[Function]}
251
+ style={
252
+ Object {
253
+ "opacity": 1,
254
+ }
255
+ }
256
+ testID="bottom-sheet-close-icon"
257
+ >
258
+ <HeroIcon
259
+ name="cancel"
260
+ style={
261
+ Array [
262
+ Object {
263
+ "color": "#292a2b",
264
+ "fontSize": 24,
265
+ },
266
+ undefined,
267
+ ]
268
+ }
269
+ themeIntent="text"
270
+ themeSize="medium"
271
+ />
272
+ </View>
273
+ </View>
274
+ </View>
275
+ <View
276
+ style={
277
+ Array [
278
+ Object {
279
+ "borderBottomColor": "#dadbde",
280
+ "borderBottomWidth": 1,
281
+ "maxWidth": "100%",
282
+ },
283
+ undefined,
284
+ ]
285
+ }
286
+ />
287
+ <View
288
+ style={
289
+ Array [
290
+ Object {
291
+ "padding": 16,
292
+ },
293
+ undefined,
294
+ ]
295
+ }
296
+ >
297
+ <View
298
+ accessible={true}
299
+ collapsable={false}
300
+ focusable={true}
301
+ nativeID="animatedComponent"
302
+ onClick={[Function]}
303
+ onResponderGrant={[Function]}
304
+ onResponderMove={[Function]}
305
+ onResponderRelease={[Function]}
306
+ onResponderTerminate={[Function]}
307
+ onResponderTerminationRequest={[Function]}
308
+ onStartShouldSetResponder={[Function]}
309
+ style={
310
+ Object {
311
+ "alignItems": "center",
312
+ "backgroundColor": "#f1e9fb",
313
+ "borderRadius": 4,
314
+ "flexDirection": "row",
315
+ "justifyContent": "space-between",
316
+ "opacity": 1,
317
+ "padding": 16,
318
+ }
319
+ }
320
+ >
321
+ <View
322
+ style={
323
+ Object {
324
+ "flex": 1,
325
+ }
326
+ }
327
+ >
328
+ <Text
329
+ style={
330
+ Array [
331
+ Object {
332
+ "color": "#292a2b",
333
+ "fontFamily": "BeVietnamPro-Regular",
334
+ "fontSize": 16,
335
+ "letterSpacing": 0.48,
336
+ "lineHeight": 24,
337
+ },
338
+ undefined,
339
+ ]
340
+ }
341
+ themeFontSize="large"
342
+ themeFontWeight="regular"
343
+ themeIntent="body"
344
+ >
345
+ Monday
346
+ </Text>
347
+ </View>
348
+ </View>
349
+ <View
350
+ style={
351
+ Array [
352
+ Object {
353
+ "marginTop": 4,
354
+ },
355
+ undefined,
356
+ ]
357
+ }
358
+ />
359
+ <View
360
+ accessible={true}
361
+ collapsable={false}
362
+ focusable={true}
363
+ nativeID="animatedComponent"
364
+ onClick={[Function]}
365
+ onResponderGrant={[Function]}
366
+ onResponderMove={[Function]}
367
+ onResponderRelease={[Function]}
368
+ onResponderTerminate={[Function]}
369
+ onResponderTerminationRequest={[Function]}
370
+ onStartShouldSetResponder={[Function]}
371
+ style={
372
+ Object {
373
+ "alignItems": "center",
374
+ "backgroundColor": "#ffffff",
375
+ "borderRadius": 4,
376
+ "flexDirection": "row",
377
+ "justifyContent": "space-between",
378
+ "opacity": 1,
379
+ "padding": 16,
380
+ }
381
+ }
382
+ >
383
+ <View
384
+ style={
385
+ Object {
386
+ "flex": 1,
387
+ }
388
+ }
389
+ >
390
+ <Text
391
+ style={
392
+ Array [
393
+ Object {
394
+ "color": "#292a2b",
395
+ "fontFamily": "BeVietnamPro-Regular",
396
+ "fontSize": 16,
397
+ "letterSpacing": 0.48,
398
+ "lineHeight": 24,
399
+ },
400
+ undefined,
401
+ ]
402
+ }
403
+ themeFontSize="large"
404
+ themeFontWeight="regular"
405
+ themeIntent="body"
406
+ >
407
+ Tuesday
408
+ </Text>
409
+ </View>
410
+ </View>
411
+ <View
412
+ style={
413
+ Array [
414
+ Object {
415
+ "marginTop": 4,
416
+ },
417
+ undefined,
418
+ ]
419
+ }
420
+ />
421
+ <View
422
+ accessible={true}
423
+ collapsable={false}
424
+ focusable={true}
425
+ nativeID="animatedComponent"
426
+ onClick={[Function]}
427
+ onResponderGrant={[Function]}
428
+ onResponderMove={[Function]}
429
+ onResponderRelease={[Function]}
430
+ onResponderTerminate={[Function]}
431
+ onResponderTerminationRequest={[Function]}
432
+ onStartShouldSetResponder={[Function]}
433
+ style={
434
+ Object {
435
+ "alignItems": "center",
436
+ "backgroundColor": "#ffffff",
437
+ "borderRadius": 4,
438
+ "flexDirection": "row",
439
+ "justifyContent": "space-between",
440
+ "opacity": 1,
441
+ "padding": 16,
442
+ }
443
+ }
444
+ >
445
+ <View
446
+ style={
447
+ Object {
448
+ "flex": 1,
449
+ }
450
+ }
451
+ >
452
+ <Text
453
+ style={
454
+ Array [
455
+ Object {
456
+ "color": "#292a2b",
457
+ "fontFamily": "BeVietnamPro-Regular",
458
+ "fontSize": 16,
459
+ "letterSpacing": 0.48,
460
+ "lineHeight": 24,
461
+ },
462
+ undefined,
463
+ ]
464
+ }
465
+ themeFontSize="large"
466
+ themeFontWeight="regular"
467
+ themeIntent="body"
468
+ >
469
+ Wednesday
470
+ </Text>
471
+ </View>
472
+ </View>
473
+ <View
474
+ style={
475
+ Array [
476
+ Object {
477
+ "marginTop": 4,
478
+ },
479
+ undefined,
480
+ ]
481
+ }
482
+ />
483
+ <View
484
+ accessible={true}
485
+ collapsable={false}
486
+ focusable={true}
487
+ nativeID="animatedComponent"
488
+ onClick={[Function]}
489
+ onResponderGrant={[Function]}
490
+ onResponderMove={[Function]}
491
+ onResponderRelease={[Function]}
492
+ onResponderTerminate={[Function]}
493
+ onResponderTerminationRequest={[Function]}
494
+ onStartShouldSetResponder={[Function]}
495
+ style={
496
+ Object {
497
+ "alignItems": "center",
498
+ "backgroundColor": "#ffffff",
499
+ "borderRadius": 4,
500
+ "flexDirection": "row",
501
+ "justifyContent": "space-between",
502
+ "opacity": 1,
503
+ "padding": 16,
504
+ }
505
+ }
506
+ >
507
+ <View
508
+ style={
509
+ Object {
510
+ "flex": 1,
511
+ }
512
+ }
513
+ >
514
+ <Text
515
+ style={
516
+ Array [
517
+ Object {
518
+ "color": "#292a2b",
519
+ "fontFamily": "BeVietnamPro-Regular",
520
+ "fontSize": 16,
521
+ "letterSpacing": 0.48,
522
+ "lineHeight": 24,
523
+ },
524
+ undefined,
525
+ ]
526
+ }
527
+ themeFontSize="large"
528
+ themeFontWeight="regular"
529
+ themeIntent="body"
530
+ >
531
+ Thursday
532
+ </Text>
533
+ </View>
534
+ </View>
535
+ <View
536
+ style={
537
+ Array [
538
+ Object {
539
+ "marginTop": 4,
540
+ },
541
+ undefined,
542
+ ]
543
+ }
544
+ />
545
+ <View
546
+ accessible={true}
547
+ collapsable={false}
548
+ focusable={true}
549
+ nativeID="animatedComponent"
550
+ onClick={[Function]}
551
+ onResponderGrant={[Function]}
552
+ onResponderMove={[Function]}
553
+ onResponderRelease={[Function]}
554
+ onResponderTerminate={[Function]}
555
+ onResponderTerminationRequest={[Function]}
556
+ onStartShouldSetResponder={[Function]}
557
+ style={
558
+ Object {
559
+ "alignItems": "center",
560
+ "backgroundColor": "#ffffff",
561
+ "borderRadius": 4,
562
+ "flexDirection": "row",
563
+ "justifyContent": "space-between",
564
+ "opacity": 1,
565
+ "padding": 16,
566
+ }
567
+ }
568
+ >
569
+ <View
570
+ style={
571
+ Object {
572
+ "flex": 1,
573
+ }
574
+ }
575
+ >
576
+ <Text
577
+ style={
578
+ Array [
579
+ Object {
580
+ "color": "#292a2b",
581
+ "fontFamily": "BeVietnamPro-Regular",
582
+ "fontSize": 16,
583
+ "letterSpacing": 0.48,
584
+ "lineHeight": 24,
585
+ },
586
+ undefined,
587
+ ]
588
+ }
589
+ themeFontSize="large"
590
+ themeFontWeight="regular"
591
+ themeIntent="body"
592
+ >
593
+ Friday
594
+ </Text>
595
+ </View>
596
+ </View>
597
+ <View
598
+ style={
599
+ Array [
600
+ Object {
601
+ "marginTop": 4,
602
+ },
603
+ undefined,
604
+ ]
605
+ }
606
+ />
607
+ <View
608
+ accessible={true}
609
+ collapsable={false}
610
+ focusable={true}
611
+ nativeID="animatedComponent"
612
+ onClick={[Function]}
613
+ onResponderGrant={[Function]}
614
+ onResponderMove={[Function]}
615
+ onResponderRelease={[Function]}
616
+ onResponderTerminate={[Function]}
617
+ onResponderTerminationRequest={[Function]}
618
+ onStartShouldSetResponder={[Function]}
619
+ style={
620
+ Object {
621
+ "alignItems": "center",
622
+ "backgroundColor": "#ffffff",
623
+ "borderRadius": 4,
624
+ "flexDirection": "row",
625
+ "justifyContent": "space-between",
626
+ "opacity": 1,
627
+ "padding": 16,
628
+ }
629
+ }
630
+ >
631
+ <View
632
+ style={
633
+ Object {
634
+ "flex": 1,
635
+ }
636
+ }
637
+ >
638
+ <Text
639
+ style={
640
+ Array [
641
+ Object {
642
+ "color": "#292a2b",
643
+ "fontFamily": "BeVietnamPro-Regular",
644
+ "fontSize": 16,
645
+ "letterSpacing": 0.48,
646
+ "lineHeight": 24,
647
+ },
648
+ undefined,
649
+ ]
650
+ }
651
+ themeFontSize="large"
652
+ themeFontWeight="regular"
653
+ themeIntent="body"
654
+ >
655
+ Saturday
656
+ </Text>
657
+ </View>
658
+ </View>
659
+ <View
660
+ style={
661
+ Array [
662
+ Object {
663
+ "marginTop": 4,
664
+ },
665
+ undefined,
666
+ ]
667
+ }
668
+ />
669
+ <View
670
+ accessible={true}
671
+ collapsable={false}
672
+ focusable={true}
673
+ nativeID="animatedComponent"
674
+ onClick={[Function]}
675
+ onResponderGrant={[Function]}
676
+ onResponderMove={[Function]}
677
+ onResponderRelease={[Function]}
678
+ onResponderTerminate={[Function]}
679
+ onResponderTerminationRequest={[Function]}
680
+ onStartShouldSetResponder={[Function]}
681
+ style={
682
+ Object {
683
+ "alignItems": "center",
684
+ "backgroundColor": "#ffffff",
685
+ "borderRadius": 4,
686
+ "flexDirection": "row",
687
+ "justifyContent": "space-between",
688
+ "opacity": 1,
689
+ "padding": 16,
690
+ }
691
+ }
692
+ >
693
+ <View
694
+ style={
695
+ Object {
696
+ "flex": 1,
697
+ }
698
+ }
699
+ >
700
+ <Text
701
+ style={
702
+ Array [
703
+ Object {
704
+ "color": "#292a2b",
705
+ "fontFamily": "BeVietnamPro-Regular",
706
+ "fontSize": 16,
707
+ "letterSpacing": 0.48,
708
+ "lineHeight": 24,
709
+ },
710
+ undefined,
711
+ ]
712
+ }
713
+ themeFontSize="large"
714
+ themeFontWeight="regular"
715
+ themeIntent="body"
716
+ >
717
+ Sunday
718
+ </Text>
719
+ </View>
720
+ </View>
721
+ </View>
722
+ </View>
723
+ </View>
724
+ </Modal>
725
+ </View>
726
+ `;
727
+
728
+ exports[`rendering renders correctly when bottom sheet is visible 1`] = `
729
+ <View
730
+ accessible={true}
731
+ focusable={true}
732
+ onClick={[Function]}
733
+ onResponderGrant={[Function]}
734
+ onResponderMove={[Function]}
735
+ onResponderRelease={[Function]}
736
+ onResponderTerminate={[Function]}
737
+ onResponderTerminationRequest={[Function]}
738
+ onStartShouldSetResponder={[Function]}
739
+ style={
740
+ Object {
741
+ "opacity": 1,
742
+ }
743
+ }
744
+ >
745
+ <View
746
+ style={
747
+ Array [
748
+ Object {
749
+ "alignItems": "center",
750
+ "borderRadius": 8,
751
+ "borderWidth": 1,
752
+ "flexDirection": "row",
753
+ "padding": 16,
754
+ "position": "relative",
755
+ "width": "100%",
756
+ },
757
+ undefined,
758
+ ]
759
+ }
760
+ >
761
+ <Text
762
+ style={
763
+ Array [
764
+ Object {
765
+ "color": "#292a2b",
766
+ "fontFamily": "BeVietnamPro-Regular",
767
+ "fontSize": 12,
768
+ "letterSpacing": 0.36,
769
+ "lineHeight": 20,
770
+ },
771
+ Array [
772
+ Object {
773
+ "backgroundColor": "#ffffff",
774
+ "left": 16,
775
+ "paddingHorizontal": 4,
776
+ "position": "absolute",
777
+ "top": -10,
778
+ "zIndex": 1,
779
+ },
780
+ undefined,
781
+ ],
782
+ ]
783
+ }
784
+ testID="input-label"
785
+ themeFontSize="small"
786
+ themeFontWeight="regular"
787
+ themeIntent="body"
788
+ >
789
+ Allow notifications
790
+ </Text>
791
+ <TextInput
792
+ editable={false}
793
+ multiline={true}
794
+ onPressIn={[Function]}
795
+ style={
796
+ Array [
797
+ Object {
798
+ "flex": 1,
799
+ "fontSize": 16,
800
+ "marginHorizontal": 8,
801
+ },
802
+ Object {
803
+ "color": "#292a2b",
804
+ },
805
+ ]
806
+ }
807
+ testID="text-input"
808
+ value="Monday"
809
+ />
810
+ <HeroIcon
811
+ name="arrow-down"
812
+ style={
813
+ Array [
814
+ Object {
815
+ "color": "#292a2b",
816
+ "fontSize": 16,
817
+ },
818
+ undefined,
819
+ ]
820
+ }
821
+ testID="input-suffix"
822
+ themeIntent="text"
823
+ themeSize="xsmall"
824
+ />
825
+ </View>
826
+ <Modal
827
+ hardwareAccelerated={false}
828
+ onRequestClose={[Function]}
829
+ transparent={true}
830
+ visible={true}
831
+ >
832
+ <View
833
+ pointerEvents="box-none"
834
+ style={
835
+ Array [
836
+ Object {
837
+ "bottom": 0,
838
+ "flexDirection": "column-reverse",
839
+ "left": 0,
840
+ "position": "absolute",
841
+ "right": 0,
842
+ "top": 0,
843
+ },
844
+ undefined,
845
+ ]
846
+ }
847
+ >
848
+ <View
849
+ accessible={true}
850
+ collapsable={false}
851
+ focusable={true}
852
+ onBlur={[Function]}
853
+ onClick={[Function]}
854
+ onFocus={[Function]}
855
+ onResponderGrant={[Function]}
856
+ onResponderMove={[Function]}
857
+ onResponderRelease={[Function]}
858
+ onResponderTerminate={[Function]}
859
+ onResponderTerminationRequest={[Function]}
860
+ onStartShouldSetResponder={[Function]}
861
+ style={
862
+ Object {
863
+ "backgroundColor": "#292a2b",
864
+ "bottom": 0,
865
+ "left": 0,
866
+ "opacity": 0.48,
867
+ "position": "absolute",
868
+ "right": 0,
869
+ "top": 0,
870
+ }
871
+ }
872
+ />
873
+ <View
874
+ onLayout={[Function]}
875
+ style={
876
+ Object {
877
+ "backgroundColor": "#ffffff",
878
+ "borderTopLeftRadius": 16,
879
+ "borderTopRightRadius": 16,
880
+ "elevation": 10,
881
+ "maxHeight": "94%",
882
+ "shadowColor": "#292a2b",
883
+ "shadowOffset": Object {
884
+ "height": 3,
885
+ "width": 0,
886
+ },
887
+ "shadowOpacity": 0.27,
888
+ "shadowRadius": 4.65,
889
+ "transform": Array [
890
+ Object {
891
+ "scaleY": 0,
892
+ },
893
+ Object {
894
+ "translateY": 0,
895
+ },
896
+ ],
897
+ "width": "100%",
898
+ }
899
+ }
900
+ >
901
+ <View
902
+ style={
903
+ Array [
904
+ Object {
905
+ "flexDirection": "row",
906
+ "minHeight": 64,
907
+ },
908
+ undefined,
909
+ ]
910
+ }
911
+ >
912
+ <View
913
+ adjacentIcon={true}
914
+ style={
915
+ Array [
916
+ Object {
917
+ "flex": 1,
918
+ "justifyContent": "center",
919
+ "paddingLeft": 24,
920
+ "paddingRight": 0,
921
+ "paddingVertical": 8,
922
+ },
923
+ undefined,
924
+ ]
925
+ }
926
+ >
927
+ <Text
928
+ style={
929
+ Array [
930
+ Object {
931
+ "color": "#292a2b",
932
+ "fontFamily": "BeVietnamPro-SemiBold",
933
+ "fontSize": 16,
934
+ "letterSpacing": 0.48,
935
+ "lineHeight": 24,
936
+ },
937
+ undefined,
938
+ ]
939
+ }
940
+ themeFontSize="large"
941
+ themeFontWeight="semi-bold"
942
+ themeIntent="body"
943
+ >
944
+ Allow notifications
945
+ </Text>
946
+ </View>
947
+ <View
948
+ style={
949
+ Array [
950
+ Object {
951
+ "alignItems": "center",
952
+ "justifyContent": "center",
953
+ "width": 72,
954
+ },
955
+ undefined,
956
+ ]
957
+ }
958
+ >
959
+ <View
960
+ accessible={true}
961
+ focusable={true}
962
+ onClick={[Function]}
963
+ onResponderGrant={[Function]}
964
+ onResponderMove={[Function]}
965
+ onResponderRelease={[Function]}
966
+ onResponderTerminate={[Function]}
967
+ onResponderTerminationRequest={[Function]}
968
+ onStartShouldSetResponder={[Function]}
969
+ style={
970
+ Object {
971
+ "opacity": 1,
972
+ }
973
+ }
974
+ testID="bottom-sheet-close-icon"
975
+ >
976
+ <HeroIcon
977
+ name="cancel"
978
+ style={
979
+ Array [
980
+ Object {
981
+ "color": "#292a2b",
982
+ "fontSize": 24,
983
+ },
984
+ undefined,
985
+ ]
986
+ }
987
+ themeIntent="text"
988
+ themeSize="medium"
989
+ />
990
+ </View>
991
+ </View>
992
+ </View>
993
+ <View
994
+ style={
995
+ Array [
996
+ Object {
997
+ "borderBottomColor": "#dadbde",
998
+ "borderBottomWidth": 1,
999
+ "maxWidth": "100%",
1000
+ },
1001
+ undefined,
1002
+ ]
1003
+ }
1004
+ />
1005
+ <View
1006
+ style={
1007
+ Array [
1008
+ Object {
1009
+ "padding": 16,
1010
+ },
1011
+ undefined,
1012
+ ]
1013
+ }
1014
+ >
1015
+ <View
1016
+ accessible={true}
1017
+ focusable={true}
1018
+ onClick={[Function]}
1019
+ onResponderGrant={[Function]}
1020
+ onResponderMove={[Function]}
1021
+ onResponderRelease={[Function]}
1022
+ onResponderTerminate={[Function]}
1023
+ onResponderTerminationRequest={[Function]}
1024
+ onStartShouldSetResponder={[Function]}
1025
+ style={
1026
+ Object {
1027
+ "alignItems": "center",
1028
+ "backgroundColor": "#f1e9fb",
1029
+ "borderRadius": 4,
1030
+ "flexDirection": "row",
1031
+ "justifyContent": "space-between",
1032
+ "opacity": 1,
1033
+ "padding": 16,
1034
+ }
1035
+ }
1036
+ >
1037
+ <View
1038
+ style={
1039
+ Object {
1040
+ "flex": 1,
1041
+ }
1042
+ }
1043
+ >
1044
+ <Text
1045
+ style={
1046
+ Array [
1047
+ Object {
1048
+ "color": "#292a2b",
1049
+ "fontFamily": "BeVietnamPro-Regular",
1050
+ "fontSize": 16,
1051
+ "letterSpacing": 0.48,
1052
+ "lineHeight": 24,
1053
+ },
1054
+ undefined,
1055
+ ]
1056
+ }
1057
+ themeFontSize="large"
1058
+ themeFontWeight="regular"
1059
+ themeIntent="body"
1060
+ >
1061
+ Monday
1062
+ </Text>
1063
+ </View>
1064
+ </View>
1065
+ <View
1066
+ style={
1067
+ Array [
1068
+ Object {
1069
+ "marginTop": 4,
1070
+ },
1071
+ undefined,
1072
+ ]
1073
+ }
1074
+ />
1075
+ <View
1076
+ accessible={true}
1077
+ focusable={true}
1078
+ onClick={[Function]}
1079
+ onResponderGrant={[Function]}
1080
+ onResponderMove={[Function]}
1081
+ onResponderRelease={[Function]}
1082
+ onResponderTerminate={[Function]}
1083
+ onResponderTerminationRequest={[Function]}
1084
+ onStartShouldSetResponder={[Function]}
1085
+ style={
1086
+ Object {
1087
+ "alignItems": "center",
1088
+ "backgroundColor": "#ffffff",
1089
+ "borderRadius": 4,
1090
+ "flexDirection": "row",
1091
+ "justifyContent": "space-between",
1092
+ "opacity": 1,
1093
+ "padding": 16,
1094
+ }
1095
+ }
1096
+ >
1097
+ <View
1098
+ style={
1099
+ Object {
1100
+ "flex": 1,
1101
+ }
1102
+ }
1103
+ >
1104
+ <Text
1105
+ style={
1106
+ Array [
1107
+ Object {
1108
+ "color": "#292a2b",
1109
+ "fontFamily": "BeVietnamPro-Regular",
1110
+ "fontSize": 16,
1111
+ "letterSpacing": 0.48,
1112
+ "lineHeight": 24,
1113
+ },
1114
+ undefined,
1115
+ ]
1116
+ }
1117
+ themeFontSize="large"
1118
+ themeFontWeight="regular"
1119
+ themeIntent="body"
1120
+ >
1121
+ Tuesday
1122
+ </Text>
1123
+ </View>
1124
+ </View>
1125
+ <View
1126
+ style={
1127
+ Array [
1128
+ Object {
1129
+ "marginTop": 4,
1130
+ },
1131
+ undefined,
1132
+ ]
1133
+ }
1134
+ />
1135
+ <View
1136
+ accessible={true}
1137
+ focusable={true}
1138
+ onClick={[Function]}
1139
+ onResponderGrant={[Function]}
1140
+ onResponderMove={[Function]}
1141
+ onResponderRelease={[Function]}
1142
+ onResponderTerminate={[Function]}
1143
+ onResponderTerminationRequest={[Function]}
1144
+ onStartShouldSetResponder={[Function]}
1145
+ style={
1146
+ Object {
1147
+ "alignItems": "center",
1148
+ "backgroundColor": "#ffffff",
1149
+ "borderRadius": 4,
1150
+ "flexDirection": "row",
1151
+ "justifyContent": "space-between",
1152
+ "opacity": 1,
1153
+ "padding": 16,
1154
+ }
1155
+ }
1156
+ >
1157
+ <View
1158
+ style={
1159
+ Object {
1160
+ "flex": 1,
1161
+ }
1162
+ }
1163
+ >
1164
+ <Text
1165
+ style={
1166
+ Array [
1167
+ Object {
1168
+ "color": "#292a2b",
1169
+ "fontFamily": "BeVietnamPro-Regular",
1170
+ "fontSize": 16,
1171
+ "letterSpacing": 0.48,
1172
+ "lineHeight": 24,
1173
+ },
1174
+ undefined,
1175
+ ]
1176
+ }
1177
+ themeFontSize="large"
1178
+ themeFontWeight="regular"
1179
+ themeIntent="body"
1180
+ >
1181
+ Wednesday
1182
+ </Text>
1183
+ </View>
1184
+ </View>
1185
+ <View
1186
+ style={
1187
+ Array [
1188
+ Object {
1189
+ "marginTop": 4,
1190
+ },
1191
+ undefined,
1192
+ ]
1193
+ }
1194
+ />
1195
+ <View
1196
+ accessible={true}
1197
+ focusable={true}
1198
+ onClick={[Function]}
1199
+ onResponderGrant={[Function]}
1200
+ onResponderMove={[Function]}
1201
+ onResponderRelease={[Function]}
1202
+ onResponderTerminate={[Function]}
1203
+ onResponderTerminationRequest={[Function]}
1204
+ onStartShouldSetResponder={[Function]}
1205
+ style={
1206
+ Object {
1207
+ "alignItems": "center",
1208
+ "backgroundColor": "#ffffff",
1209
+ "borderRadius": 4,
1210
+ "flexDirection": "row",
1211
+ "justifyContent": "space-between",
1212
+ "opacity": 1,
1213
+ "padding": 16,
1214
+ }
1215
+ }
1216
+ >
1217
+ <View
1218
+ style={
1219
+ Object {
1220
+ "flex": 1,
1221
+ }
1222
+ }
1223
+ >
1224
+ <Text
1225
+ style={
1226
+ Array [
1227
+ Object {
1228
+ "color": "#292a2b",
1229
+ "fontFamily": "BeVietnamPro-Regular",
1230
+ "fontSize": 16,
1231
+ "letterSpacing": 0.48,
1232
+ "lineHeight": 24,
1233
+ },
1234
+ undefined,
1235
+ ]
1236
+ }
1237
+ themeFontSize="large"
1238
+ themeFontWeight="regular"
1239
+ themeIntent="body"
1240
+ >
1241
+ Thursday
1242
+ </Text>
1243
+ </View>
1244
+ </View>
1245
+ <View
1246
+ style={
1247
+ Array [
1248
+ Object {
1249
+ "marginTop": 4,
1250
+ },
1251
+ undefined,
1252
+ ]
1253
+ }
1254
+ />
1255
+ <View
1256
+ accessible={true}
1257
+ focusable={true}
1258
+ onClick={[Function]}
1259
+ onResponderGrant={[Function]}
1260
+ onResponderMove={[Function]}
1261
+ onResponderRelease={[Function]}
1262
+ onResponderTerminate={[Function]}
1263
+ onResponderTerminationRequest={[Function]}
1264
+ onStartShouldSetResponder={[Function]}
1265
+ style={
1266
+ Object {
1267
+ "alignItems": "center",
1268
+ "backgroundColor": "#ffffff",
1269
+ "borderRadius": 4,
1270
+ "flexDirection": "row",
1271
+ "justifyContent": "space-between",
1272
+ "opacity": 1,
1273
+ "padding": 16,
1274
+ }
1275
+ }
1276
+ >
1277
+ <View
1278
+ style={
1279
+ Object {
1280
+ "flex": 1,
1281
+ }
1282
+ }
1283
+ >
1284
+ <Text
1285
+ style={
1286
+ Array [
1287
+ Object {
1288
+ "color": "#292a2b",
1289
+ "fontFamily": "BeVietnamPro-Regular",
1290
+ "fontSize": 16,
1291
+ "letterSpacing": 0.48,
1292
+ "lineHeight": 24,
1293
+ },
1294
+ undefined,
1295
+ ]
1296
+ }
1297
+ themeFontSize="large"
1298
+ themeFontWeight="regular"
1299
+ themeIntent="body"
1300
+ >
1301
+ Friday
1302
+ </Text>
1303
+ </View>
1304
+ </View>
1305
+ <View
1306
+ style={
1307
+ Array [
1308
+ Object {
1309
+ "marginTop": 4,
1310
+ },
1311
+ undefined,
1312
+ ]
1313
+ }
1314
+ />
1315
+ <View
1316
+ accessible={true}
1317
+ focusable={true}
1318
+ onClick={[Function]}
1319
+ onResponderGrant={[Function]}
1320
+ onResponderMove={[Function]}
1321
+ onResponderRelease={[Function]}
1322
+ onResponderTerminate={[Function]}
1323
+ onResponderTerminationRequest={[Function]}
1324
+ onStartShouldSetResponder={[Function]}
1325
+ style={
1326
+ Object {
1327
+ "alignItems": "center",
1328
+ "backgroundColor": "#ffffff",
1329
+ "borderRadius": 4,
1330
+ "flexDirection": "row",
1331
+ "justifyContent": "space-between",
1332
+ "opacity": 1,
1333
+ "padding": 16,
1334
+ }
1335
+ }
1336
+ >
1337
+ <View
1338
+ style={
1339
+ Object {
1340
+ "flex": 1,
1341
+ }
1342
+ }
1343
+ >
1344
+ <Text
1345
+ style={
1346
+ Array [
1347
+ Object {
1348
+ "color": "#292a2b",
1349
+ "fontFamily": "BeVietnamPro-Regular",
1350
+ "fontSize": 16,
1351
+ "letterSpacing": 0.48,
1352
+ "lineHeight": 24,
1353
+ },
1354
+ undefined,
1355
+ ]
1356
+ }
1357
+ themeFontSize="large"
1358
+ themeFontWeight="regular"
1359
+ themeIntent="body"
1360
+ >
1361
+ Saturday
1362
+ </Text>
1363
+ </View>
1364
+ </View>
1365
+ <View
1366
+ style={
1367
+ Array [
1368
+ Object {
1369
+ "marginTop": 4,
1370
+ },
1371
+ undefined,
1372
+ ]
1373
+ }
1374
+ />
1375
+ <View
1376
+ accessible={true}
1377
+ focusable={true}
1378
+ onClick={[Function]}
1379
+ onResponderGrant={[Function]}
1380
+ onResponderMove={[Function]}
1381
+ onResponderRelease={[Function]}
1382
+ onResponderTerminate={[Function]}
1383
+ onResponderTerminationRequest={[Function]}
1384
+ onStartShouldSetResponder={[Function]}
1385
+ style={
1386
+ Object {
1387
+ "alignItems": "center",
1388
+ "backgroundColor": "#ffffff",
1389
+ "borderRadius": 4,
1390
+ "flexDirection": "row",
1391
+ "justifyContent": "space-between",
1392
+ "opacity": 1,
1393
+ "padding": 16,
1394
+ }
1395
+ }
1396
+ >
1397
+ <View
1398
+ style={
1399
+ Object {
1400
+ "flex": 1,
1401
+ }
1402
+ }
1403
+ >
1404
+ <Text
1405
+ style={
1406
+ Array [
1407
+ Object {
1408
+ "color": "#292a2b",
1409
+ "fontFamily": "BeVietnamPro-Regular",
1410
+ "fontSize": 16,
1411
+ "letterSpacing": 0.48,
1412
+ "lineHeight": 24,
1413
+ },
1414
+ undefined,
1415
+ ]
1416
+ }
1417
+ themeFontSize="large"
1418
+ themeFontWeight="regular"
1419
+ themeIntent="body"
1420
+ >
1421
+ Sunday
1422
+ </Text>
1423
+ </View>
1424
+ </View>
1425
+ </View>
1426
+ </View>
1427
+ </View>
1428
+ </Modal>
1429
+ </View>
1430
+ `;