@hero-design/rn 7.24.0 → 7.25.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (253) hide show
  1. package/.turbo/turbo-build.log +2 -2
  2. package/assets/fonts/hero-icons-mobile.ttf +0 -0
  3. package/es/index.js +844 -751
  4. package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
  5. package/lib/index.js +845 -749
  6. package/package.json +6 -5
  7. package/rollup.config.js +1 -1
  8. package/src/components/Accordion/__tests__/__snapshots__/AccordionItem.spec.tsx.snap +4 -4
  9. package/src/components/Accordion/__tests__/__snapshots__/index.spec.tsx.snap +6 -6
  10. package/src/components/Attachment/StyledAttachment.tsx +44 -0
  11. package/src/components/Attachment/__tests__/__snapshots__/index.spec.tsx.snap +158 -0
  12. package/src/components/Attachment/__tests__/index.spec.tsx +59 -0
  13. package/src/components/Attachment/index.tsx +77 -0
  14. package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +3 -3
  15. package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
  16. package/src/components/Badge/Status.tsx +1 -1
  17. package/src/components/Badge/StyledBadge.tsx +8 -1
  18. package/src/components/Badge/__tests__/Badge.spec.tsx +9 -0
  19. package/src/components/Badge/__tests__/__snapshots__/Badge.spec.tsx.snap +44 -0
  20. package/src/components/Badge/index.tsx +1 -1
  21. package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +3 -3
  22. package/src/components/BottomSheet/Header.tsx +2 -1
  23. package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +52 -52
  24. package/src/components/BottomSheet/index.tsx +4 -4
  25. package/src/components/Button/Button.tsx +0 -11
  26. package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +4 -4
  27. package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +12 -12
  28. package/src/components/Button/LoadingIndicator/index.tsx +1 -1
  29. package/src/components/Button/StyledButton.tsx +24 -63
  30. package/src/components/Button/UtilityButton/__tests__/index.spec.tsx +2 -2
  31. package/src/components/Button/__tests__/Button.spec.tsx +10 -5
  32. package/src/components/Button/__tests__/StyledButton.spec.tsx +0 -70
  33. package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +301 -1206
  34. package/src/components/Calendar/CalendarRowItem.tsx +1 -4
  35. package/src/components/Calendar/__tests__/__snapshots__/CalendarRowItem.spec.tsx.snap +5 -5
  36. package/src/components/Calendar/index.tsx +4 -3
  37. package/src/components/Card/DataCard/__tests__/__snapshots__/StyledDataCard.spec.tsx.snap +1 -1
  38. package/src/components/Card/__tests__/__snapshots__/StyledCard.spec.tsx.snap +1 -1
  39. package/src/components/Card/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
  40. package/src/components/Checkbox/StyledCheckbox.tsx +7 -5
  41. package/src/components/Checkbox/__tests__/__snapshots__/StyledCheckbox.spec.tsx.snap +4 -12
  42. package/src/components/Checkbox/__tests__/__snapshots__/index.spec.tsx.snap +95 -42
  43. package/src/components/Checkbox/index.tsx +4 -2
  44. package/src/components/ContentNavigator/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
  45. package/src/components/ContentNavigator/index.tsx +2 -1
  46. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +1 -0
  47. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +28 -27
  48. package/src/components/Drawer/DragableDrawer/index.tsx +0 -2
  49. package/src/components/Empty/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
  50. package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +12 -12
  51. package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +1 -1
  52. package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +3 -3
  53. package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
  54. package/src/components/Icon/HeroIcon/index.tsx +5 -1
  55. package/src/components/Icon/IconList.ts +30 -3
  56. package/src/components/Icon/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
  57. package/src/components/List/BasicListItem.tsx +13 -8
  58. package/src/components/List/ListItem.tsx +8 -6
  59. package/src/components/List/StyledBasicListItem.tsx +2 -2
  60. package/src/components/List/StyledListItem.tsx +2 -2
  61. package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +24 -36
  62. package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +39 -59
  63. package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +40 -44
  64. package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +50 -50
  65. package/src/components/PinInput/__tests__/__snapshots__/PinCell.spec.tsx.snap +6 -6
  66. package/src/components/PinInput/__tests__/__snapshots__/index.spec.tsx.snap +21 -21
  67. package/src/components/Progress/ProgressBar.tsx +1 -1
  68. package/src/components/Progress/ProgressCircle.tsx +1 -1
  69. package/src/components/Progress/__tests__/__snapshots__/index.spec.js.snap +10 -10
  70. package/src/components/Progress/types.ts +7 -1
  71. package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +20 -32
  72. package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +30 -48
  73. package/src/components/RefreshControl/__tests__/index.spec.tsx +1 -3
  74. package/src/components/RefreshControl/index.tsx +4 -2
  75. package/src/components/RichTextEditor/MentionList.tsx +12 -3
  76. package/src/components/RichTextEditor/RichTextEditor.tsx +3 -4
  77. package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +4 -4
  78. package/src/components/SectionHeading/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
  79. package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +13 -20
  80. package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +146 -234
  81. package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +430 -650
  82. package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +11 -18
  83. package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +136 -224
  84. package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +409 -629
  85. package/src/components/Select/StyledOptionList.tsx +0 -1
  86. package/src/components/Select/__tests__/__snapshots__/StyledSelect.spec.tsx.snap +1 -1
  87. package/src/components/Spinner/StyledSpinner.tsx +1 -2
  88. package/src/components/Spinner/__tests__/__snapshots__/AnimatedSpinner.spec.tsx.snap +4 -4
  89. package/src/components/Spinner/__tests__/__snapshots__/StyledSpinner.spec.tsx.snap +16 -16
  90. package/src/components/Spinner/__tests__/__snapshots__/index.spec.tsx.snap +4 -4
  91. package/src/components/Swipeable/__tests__/__snapshots__/SwipeableAction.spec.tsx.snap +1 -1
  92. package/src/components/Swipeable/index.tsx +14 -2
  93. package/src/components/Switch/SelectorSwitch/Option.tsx +1 -5
  94. package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/Option.spec.tsx.snap +3 -3
  95. package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/index.spec.tsx.snap +3 -3
  96. package/src/components/Switch/SelectorSwitch/__tests__/index.spec.tsx +1 -0
  97. package/src/components/Switch/SelectorSwitch/index.tsx +4 -1
  98. package/src/components/Switch/__tests__/__snapshots__/StyledSwitch.spec.tsx.snap +1 -1
  99. package/src/components/Tabs/StyledTabs.tsx +1 -1
  100. package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +1 -1
  101. package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
  102. package/src/components/Tag/__tests__/__snapshots__/Tag.spec.tsx.snap +2 -2
  103. package/src/components/TextInput/StyledTextInput.tsx +1 -0
  104. package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +11 -10
  105. package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +27 -14
  106. package/src/components/TextInput/index.tsx +1 -0
  107. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +1 -0
  108. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +28 -27
  109. package/src/components/Toast/Toast.tsx +0 -3
  110. package/src/components/Toast/ToastProvider.tsx +1 -0
  111. package/src/components/Toast/__tests__/index.spec.tsx +1 -1
  112. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarGroup.spec.tsx.snap +12 -12
  113. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +6 -6
  114. package/src/components/Typography/Text/__tests__/__snapshots__/StyledText.spec.tsx.snap +4 -4
  115. package/src/emotion.d.ts +1 -0
  116. package/src/index.ts +6 -0
  117. package/src/theme/ThemeSwitcher.tsx +7 -1
  118. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +87 -74
  119. package/src/theme/__tests__/ensureCompatibleWithV7.spec.tsx +13 -0
  120. package/src/theme/components/alert.ts +1 -1
  121. package/src/theme/components/attachment.ts +28 -0
  122. package/src/theme/components/avatar.ts +1 -1
  123. package/src/theme/components/badge.ts +2 -1
  124. package/src/theme/components/bottomNavigation.ts +1 -1
  125. package/src/theme/components/bottomSheet.ts +2 -2
  126. package/src/theme/components/button.ts +4 -20
  127. package/src/theme/components/calendar.ts +3 -3
  128. package/src/theme/components/card.ts +1 -1
  129. package/src/theme/components/checkbox.ts +2 -2
  130. package/src/theme/components/divider.ts +1 -1
  131. package/src/theme/components/drawer.ts +2 -2
  132. package/src/theme/components/empty.ts +3 -3
  133. package/src/theme/components/fab.ts +7 -7
  134. package/src/theme/components/icon.ts +4 -4
  135. package/src/theme/components/list.ts +0 -2
  136. package/src/theme/components/pinInput.ts +4 -4
  137. package/src/theme/components/progress.ts +6 -5
  138. package/src/theme/components/radio.ts +1 -1
  139. package/src/theme/components/richTextEditor.ts +2 -2
  140. package/src/theme/components/slider.ts +2 -2
  141. package/src/theme/components/switch.ts +4 -4
  142. package/src/theme/components/tabs.ts +6 -5
  143. package/src/theme/components/tag.ts +2 -2
  144. package/src/theme/components/textInput.ts +23 -28
  145. package/src/theme/components/toast.ts +3 -3
  146. package/src/theme/components/toolbar.ts +3 -3
  147. package/src/theme/components/typography.ts +7 -7
  148. package/src/theme/getTheme.ts +4 -1
  149. package/src/theme/global/colors/eBens.ts +23 -0
  150. package/src/theme/global/colors/global.ts +15 -6
  151. package/src/theme/global/colors/jobs.ts +15 -9
  152. package/src/theme/global/colors/legacySystemPalette.ts +6 -6
  153. package/src/theme/global/colors/swag.ts +32 -53
  154. package/src/theme/global/colors/types.ts +35 -15
  155. package/src/theme/global/colors/wallet.ts +23 -0
  156. package/src/theme/global/colors/work.ts +15 -9
  157. package/src/theme/global/index.ts +4 -0
  158. package/src/theme/index.ts +4 -0
  159. package/src/utils/functions.ts +2 -0
  160. package/src/utils/scale.ts +1 -1
  161. package/tsconfig.json +8 -2
  162. package/types/components/Accordion/StyledAccordion.d.ts +14 -14
  163. package/types/components/Alert/StyledAlert.d.ts +15 -15
  164. package/types/components/Attachment/StyledAttachment.d.ts +28 -0
  165. package/types/components/Attachment/index.d.ts +37 -0
  166. package/types/components/Avatar/StyledAvatar.d.ts +15 -15
  167. package/types/components/Avatar/index.d.ts +1 -1
  168. package/types/components/Badge/Status.d.ts +1 -1
  169. package/types/components/Badge/StyledBadge.d.ts +8 -8
  170. package/types/components/Badge/index.d.ts +1 -1
  171. package/types/components/BottomNavigation/StyledBottomNavigation.d.ts +21 -21
  172. package/types/components/BottomSheet/Header.d.ts +1 -1
  173. package/types/components/BottomSheet/StyledBottomSheet.d.ts +22 -22
  174. package/types/components/Box/StyledBox.d.ts +4 -4
  175. package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +7 -7
  176. package/types/components/Button/StyledButton.d.ts +15 -18
  177. package/types/components/Button/UtilityButton/StyledUtilityButton.d.ts +8 -8
  178. package/types/components/Calendar/StyledCalendar.d.ts +25 -25
  179. package/types/components/Calendar/helpers.d.ts +2 -2
  180. package/types/components/Card/DataCard/StyledDataCard.d.ts +6 -6
  181. package/types/components/Card/StyledCard.d.ts +7 -7
  182. package/types/components/Checkbox/StyledCheckbox.d.ts +16 -10
  183. package/types/components/Collapse/StyledCollapse.d.ts +8 -8
  184. package/types/components/ContentNavigator/StyledContentNavigator.d.ts +5 -5
  185. package/types/components/ContentNavigator/index.d.ts +2 -1
  186. package/types/components/DatePicker/StyledDatePicker.d.ts +3 -3
  187. package/types/components/Divider/StyledDivider.d.ts +5 -5
  188. package/types/components/Drawer/StyledDrawer.d.ts +19 -19
  189. package/types/components/Empty/StyledEmpty.d.ts +9 -9
  190. package/types/components/FAB/ActionGroup/StyledActionGroup.d.ts +11 -11
  191. package/types/components/FAB/ActionGroup/StyledActionItem.d.ts +7 -7
  192. package/types/components/FAB/StyledFAB.d.ts +8 -8
  193. package/types/components/Icon/HeroIcon/index.d.ts +3 -3
  194. package/types/components/Icon/IconList.d.ts +1 -1
  195. package/types/components/Icon/index.d.ts +1 -1
  196. package/types/components/Icon/utils.d.ts +1 -1
  197. package/types/components/List/StyledBasicListItem.d.ts +16 -16
  198. package/types/components/List/StyledListItem.d.ts +25 -25
  199. package/types/components/PinInput/StyledPinInput.d.ts +30 -30
  200. package/types/components/Progress/ProgressBar.d.ts +1 -1
  201. package/types/components/Progress/ProgressCircle.d.ts +1 -1
  202. package/types/components/Progress/StyledProgressBar.d.ts +5 -5
  203. package/types/components/Progress/StyledProgressCircle.d.ts +18 -18
  204. package/types/components/Progress/types.d.ts +1 -1
  205. package/types/components/Radio/StyledRadio.d.ts +9 -9
  206. package/types/components/RefreshControl/index.d.ts +1 -2
  207. package/types/components/RichTextEditor/EditorToolbar.d.ts +1 -1
  208. package/types/components/RichTextEditor/MentionList.d.ts +1 -1
  209. package/types/components/RichTextEditor/StyledRichTextEditor.d.ts +6 -6
  210. package/types/components/RichTextEditor/StyledToolbar.d.ts +9 -9
  211. package/types/components/RichTextEditor/index.d.ts +2 -2
  212. package/types/components/SectionHeading/StyledHeading.d.ts +9 -9
  213. package/types/components/Select/MultiSelect/Option.d.ts +1 -1
  214. package/types/components/Select/SingleSelect/Option.d.ts +1 -1
  215. package/types/components/Select/StyledSelect.d.ts +11 -11
  216. package/types/components/Select/helpers.d.ts +1 -1
  217. package/types/components/Spinner/StyledSpinner.d.ts +12 -12
  218. package/types/components/Swipeable/StyledSwipeable.d.ts +3 -3
  219. package/types/components/Swipeable/index.d.ts +7 -3
  220. package/types/components/Switch/SelectorSwitch/Option.d.ts +3 -1
  221. package/types/components/Switch/SelectorSwitch/StyledSelectorSwitch.d.ts +9 -9
  222. package/types/components/Switch/StyledSwitch.d.ts +5 -5
  223. package/types/components/Tabs/StyledScrollableTabs.d.ts +23 -23
  224. package/types/components/Tabs/StyledTabs.d.ts +22 -22
  225. package/types/components/Tag/StyledTag.d.ts +6 -6
  226. package/types/components/TextInput/StyledTextInput.d.ts +44 -44
  227. package/types/components/TextInput/index.d.ts +5 -5
  228. package/types/components/TimePicker/StyledTimePicker.d.ts +3 -3
  229. package/types/components/Toast/StyledToast.d.ts +17 -17
  230. package/types/components/Toolbar/StyledToolbar.d.ts +9 -9
  231. package/types/components/Typography/Text/StyledText.d.ts +3 -3
  232. package/types/index.d.ts +3 -2
  233. package/types/testHelpers/renderWithTheme.d.ts +1 -1
  234. package/types/theme/ThemeSwitcher.d.ts +2 -2
  235. package/types/theme/components/attachment.d.ts +21 -0
  236. package/types/theme/components/badge.d.ts +1 -0
  237. package/types/theme/components/button.d.ts +0 -15
  238. package/types/theme/components/list.d.ts +0 -1
  239. package/types/theme/components/progress.d.ts +1 -0
  240. package/types/theme/components/tabs.d.ts +1 -0
  241. package/types/theme/components/tag.d.ts +2 -2
  242. package/types/theme/components/textInput.d.ts +0 -5
  243. package/types/theme/getTheme.d.ts +2 -0
  244. package/types/theme/global/colors/eBens.d.ts +3 -0
  245. package/types/theme/global/colors/types.d.ts +23 -16
  246. package/types/theme/global/colors/wallet.d.ts +3 -0
  247. package/types/theme/global/index.d.ts +26 -12
  248. package/types/theme/index.d.ts +2 -2
  249. package/types/utils/functions.d.ts +1 -0
  250. package/types/utils/hooks.d.ts +1 -1
  251. package/assets/fonts/hero-icons.ttf +0 -0
  252. package/lib/assets/fonts/hero-icons.ttf +0 -0
  253. package/src/components/Icon/HeroIcon/fonts/hero-icons.ttf +0 -0
@@ -149,6 +149,7 @@ Array [
149
149
  "flexGrow": 2,
150
150
  "fontSize": 14,
151
151
  "marginHorizontal": 8,
152
+ "paddingVertical": 0,
152
153
  "textAlignVertical": "center",
153
154
  },
154
155
  Object {
@@ -223,31 +224,6 @@ Array [
223
224
  ]
224
225
  }
225
226
  >
226
- <View
227
- accessible={true}
228
- collapsable={false}
229
- focusable={true}
230
- onBlur={[Function]}
231
- onClick={[Function]}
232
- onFocus={[Function]}
233
- onResponderGrant={[Function]}
234
- onResponderMove={[Function]}
235
- onResponderRelease={[Function]}
236
- onResponderTerminate={[Function]}
237
- onResponderTerminationRequest={[Function]}
238
- onStartShouldSetResponder={[Function]}
239
- style={
240
- Object {
241
- "backgroundColor": "#001f23",
242
- "bottom": 0,
243
- "left": 0,
244
- "opacity": 0.48,
245
- "position": "absolute",
246
- "right": 0,
247
- "top": 0,
248
- }
249
- }
250
- />
251
227
  <View
252
228
  onLayout={[Function]}
253
229
  style={
@@ -265,6 +241,31 @@ Array [
265
241
  ]
266
242
  }
267
243
  >
244
+ <View
245
+ accessible={true}
246
+ collapsable={false}
247
+ focusable={true}
248
+ onBlur={[Function]}
249
+ onClick={[Function]}
250
+ onFocus={[Function]}
251
+ onResponderGrant={[Function]}
252
+ onResponderMove={[Function]}
253
+ onResponderRelease={[Function]}
254
+ onResponderTerminate={[Function]}
255
+ onResponderTerminationRequest={[Function]}
256
+ onStartShouldSetResponder={[Function]}
257
+ style={
258
+ Object {
259
+ "backgroundColor": "#001f23",
260
+ "bottom": 0,
261
+ "left": 0,
262
+ "opacity": 0.48,
263
+ "position": "absolute",
264
+ "right": 0,
265
+ "top": 0,
266
+ }
267
+ }
268
+ />
268
269
  <RCTSafeAreaView
269
270
  emulateUnlessSupported={true}
270
271
  style={
@@ -445,7 +446,6 @@ Array [
445
446
  onScroll={[Function]}
446
447
  onScrollBeginDrag={[Function]}
447
448
  onScrollEndDrag={[Function]}
448
- onScrollToIndexFailed={[Function]}
449
449
  renderItem={[Function]}
450
450
  scrollEventThrottle={50}
451
451
  stickyHeaderIndices={
@@ -581,11 +581,6 @@ Array [
581
581
  }
582
582
  />
583
583
  <View
584
- accessibilityState={
585
- Object {
586
- "disabled": false,
587
- }
588
- }
589
584
  accessible={true}
590
585
  focusable={true}
591
586
  onClick={[Function]}
@@ -596,17 +591,14 @@ Array [
596
591
  onResponderTerminationRequest={[Function]}
597
592
  onStartShouldSetResponder={[Function]}
598
593
  style={
599
- Array [
600
- Object {
601
- "alignItems": "center",
602
- "backgroundColor": "#ffffff",
603
- "borderRadius": 4,
604
- "flexDirection": "row",
605
- "opacity": 1,
606
- "padding": 16,
607
- },
608
- undefined,
609
- ]
594
+ Object {
595
+ "alignItems": "center",
596
+ "backgroundColor": "#ffffff",
597
+ "borderRadius": 4,
598
+ "flexDirection": "row",
599
+ "opacity": 1,
600
+ "padding": 16,
601
+ }
610
602
  }
611
603
  >
612
604
  <View
@@ -726,11 +718,6 @@ Array [
726
718
  >
727
719
  <View>
728
720
  <View
729
- accessibilityState={
730
- Object {
731
- "disabled": false,
732
- }
733
- }
734
721
  accessible={true}
735
722
  focusable={true}
736
723
  onClick={[Function]}
@@ -741,17 +728,14 @@ Array [
741
728
  onResponderTerminationRequest={[Function]}
742
729
  onStartShouldSetResponder={[Function]}
743
730
  style={
744
- Array [
745
- Object {
746
- "alignItems": "center",
747
- "backgroundColor": "#ffffff",
748
- "borderRadius": 4,
749
- "flexDirection": "row",
750
- "opacity": 1,
751
- "padding": 16,
752
- },
753
- undefined,
754
- ]
731
+ Object {
732
+ "alignItems": "center",
733
+ "backgroundColor": "#ffffff",
734
+ "borderRadius": 4,
735
+ "flexDirection": "row",
736
+ "opacity": 1,
737
+ "padding": 16,
738
+ }
755
739
  }
756
740
  >
757
741
  <View
@@ -986,11 +970,6 @@ Array [
986
970
  }
987
971
  />
988
972
  <View
989
- accessibilityState={
990
- Object {
991
- "disabled": false,
992
- }
993
- }
994
973
  accessible={true}
995
974
  focusable={true}
996
975
  onClick={[Function]}
@@ -1001,17 +980,14 @@ Array [
1001
980
  onResponderTerminationRequest={[Function]}
1002
981
  onStartShouldSetResponder={[Function]}
1003
982
  style={
1004
- Array [
1005
- Object {
1006
- "alignItems": "center",
1007
- "backgroundColor": "#ffffff",
1008
- "borderRadius": 4,
1009
- "flexDirection": "row",
1010
- "opacity": 1,
1011
- "padding": 16,
1012
- },
1013
- undefined,
1014
- ]
983
+ Object {
984
+ "alignItems": "center",
985
+ "backgroundColor": "#ffffff",
986
+ "borderRadius": 4,
987
+ "flexDirection": "row",
988
+ "opacity": 1,
989
+ "padding": 16,
990
+ }
1015
991
  }
1016
992
  >
1017
993
  <View
@@ -1131,11 +1107,6 @@ Array [
1131
1107
  >
1132
1108
  <View>
1133
1109
  <View
1134
- accessibilityState={
1135
- Object {
1136
- "disabled": false,
1137
- }
1138
- }
1139
1110
  accessible={true}
1140
1111
  focusable={true}
1141
1112
  onClick={[Function]}
@@ -1146,17 +1117,14 @@ Array [
1146
1117
  onResponderTerminationRequest={[Function]}
1147
1118
  onStartShouldSetResponder={[Function]}
1148
1119
  style={
1149
- Array [
1150
- Object {
1151
- "alignItems": "center",
1152
- "backgroundColor": "#ffffff",
1153
- "borderRadius": 4,
1154
- "flexDirection": "row",
1155
- "opacity": 1,
1156
- "padding": 16,
1157
- },
1158
- undefined,
1159
- ]
1120
+ Object {
1121
+ "alignItems": "center",
1122
+ "backgroundColor": "#ffffff",
1123
+ "borderRadius": 4,
1124
+ "flexDirection": "row",
1125
+ "opacity": 1,
1126
+ "padding": 16,
1127
+ }
1160
1128
  }
1161
1129
  >
1162
1130
  <View
@@ -1422,6 +1390,7 @@ Array [
1422
1390
  "flexGrow": 2,
1423
1391
  "fontSize": 14,
1424
1392
  "marginHorizontal": 8,
1393
+ "paddingVertical": 0,
1425
1394
  "textAlignVertical": "center",
1426
1395
  },
1427
1396
  Object {
@@ -1497,32 +1466,6 @@ Array [
1497
1466
  ]
1498
1467
  }
1499
1468
  >
1500
- <View
1501
- accessible={true}
1502
- collapsable={false}
1503
- focusable={true}
1504
- nativeID="animatedComponent"
1505
- onBlur={[Function]}
1506
- onClick={[Function]}
1507
- onFocus={[Function]}
1508
- onResponderGrant={[Function]}
1509
- onResponderMove={[Function]}
1510
- onResponderRelease={[Function]}
1511
- onResponderTerminate={[Function]}
1512
- onResponderTerminationRequest={[Function]}
1513
- onStartShouldSetResponder={[Function]}
1514
- style={
1515
- Object {
1516
- "backgroundColor": "#001f23",
1517
- "bottom": 0,
1518
- "left": 0,
1519
- "opacity": 0.48,
1520
- "position": "absolute",
1521
- "right": 0,
1522
- "top": 0,
1523
- }
1524
- }
1525
- />
1526
1469
  <View
1527
1470
  onLayout={[Function]}
1528
1471
  style={
@@ -1540,6 +1483,32 @@ Array [
1540
1483
  ]
1541
1484
  }
1542
1485
  >
1486
+ <View
1487
+ accessible={true}
1488
+ collapsable={false}
1489
+ focusable={true}
1490
+ nativeID="animatedComponent"
1491
+ onBlur={[Function]}
1492
+ onClick={[Function]}
1493
+ onFocus={[Function]}
1494
+ onResponderGrant={[Function]}
1495
+ onResponderMove={[Function]}
1496
+ onResponderRelease={[Function]}
1497
+ onResponderTerminate={[Function]}
1498
+ onResponderTerminationRequest={[Function]}
1499
+ onStartShouldSetResponder={[Function]}
1500
+ style={
1501
+ Object {
1502
+ "backgroundColor": "#001f23",
1503
+ "bottom": 0,
1504
+ "left": 0,
1505
+ "opacity": 0.48,
1506
+ "position": "absolute",
1507
+ "right": 0,
1508
+ "top": 0,
1509
+ }
1510
+ }
1511
+ />
1543
1512
  <RCTSafeAreaView
1544
1513
  collapsable={false}
1545
1514
  emulateUnlessSupported={true}
@@ -1728,7 +1697,6 @@ Array [
1728
1697
  onScroll={[Function]}
1729
1698
  onScrollBeginDrag={[Function]}
1730
1699
  onScrollEndDrag={[Function]}
1731
- onScrollToIndexFailed={[Function]}
1732
1700
  renderItem={[Function]}
1733
1701
  scrollEventThrottle={50}
1734
1702
  stickyHeaderIndices={
@@ -1802,13 +1770,10 @@ Array [
1802
1770
  }
1803
1771
  />
1804
1772
  <View
1805
- accessibilityState={
1806
- Object {
1807
- "disabled": false,
1808
- }
1809
- }
1810
1773
  accessible={true}
1774
+ collapsable={false}
1811
1775
  focusable={true}
1776
+ nativeID="animatedComponent"
1812
1777
  onClick={[Function]}
1813
1778
  onResponderGrant={[Function]}
1814
1779
  onResponderMove={[Function]}
@@ -1817,19 +1782,15 @@ Array [
1817
1782
  onResponderTerminationRequest={[Function]}
1818
1783
  onStartShouldSetResponder={[Function]}
1819
1784
  style={
1820
- Array [
1821
- Object {
1822
- "alignItems": "center",
1823
- "backgroundColor": "#d9d1df",
1824
- "borderRadius": 4,
1825
- "flexDirection": "row",
1826
- "opacity": 1,
1827
- "padding": 16,
1828
- },
1829
- Object {
1830
- "marginHorizontal": 12,
1831
- },
1832
- ]
1785
+ Object {
1786
+ "alignItems": "center",
1787
+ "backgroundColor": "#ece8ef",
1788
+ "borderRadius": 4,
1789
+ "flexDirection": "row",
1790
+ "marginHorizontal": 12,
1791
+ "opacity": 1,
1792
+ "padding": 16,
1793
+ }
1833
1794
  }
1834
1795
  >
1835
1796
  <View
@@ -1930,13 +1891,10 @@ Array [
1930
1891
  >
1931
1892
  <View>
1932
1893
  <View
1933
- accessibilityState={
1934
- Object {
1935
- "disabled": false,
1936
- }
1937
- }
1938
1894
  accessible={true}
1895
+ collapsable={false}
1939
1896
  focusable={true}
1897
+ nativeID="animatedComponent"
1940
1898
  onClick={[Function]}
1941
1899
  onResponderGrant={[Function]}
1942
1900
  onResponderMove={[Function]}
@@ -1945,19 +1903,15 @@ Array [
1945
1903
  onResponderTerminationRequest={[Function]}
1946
1904
  onStartShouldSetResponder={[Function]}
1947
1905
  style={
1948
- Array [
1949
- Object {
1950
- "alignItems": "center",
1951
- "backgroundColor": "#ffffff",
1952
- "borderRadius": 4,
1953
- "flexDirection": "row",
1954
- "opacity": 1,
1955
- "padding": 16,
1956
- },
1957
- Object {
1958
- "marginHorizontal": 12,
1959
- },
1960
- ]
1906
+ Object {
1907
+ "alignItems": "center",
1908
+ "backgroundColor": "#ffffff",
1909
+ "borderRadius": 4,
1910
+ "flexDirection": "row",
1911
+ "marginHorizontal": 12,
1912
+ "opacity": 1,
1913
+ "padding": 16,
1914
+ }
1961
1915
  }
1962
1916
  >
1963
1917
  <View
@@ -2058,13 +2012,10 @@ Array [
2058
2012
  >
2059
2013
  <View>
2060
2014
  <View
2061
- accessibilityState={
2062
- Object {
2063
- "disabled": false,
2064
- }
2065
- }
2066
2015
  accessible={true}
2016
+ collapsable={false}
2067
2017
  focusable={true}
2018
+ nativeID="animatedComponent"
2068
2019
  onClick={[Function]}
2069
2020
  onResponderGrant={[Function]}
2070
2021
  onResponderMove={[Function]}
@@ -2073,19 +2024,15 @@ Array [
2073
2024
  onResponderTerminationRequest={[Function]}
2074
2025
  onStartShouldSetResponder={[Function]}
2075
2026
  style={
2076
- Array [
2077
- Object {
2078
- "alignItems": "center",
2079
- "backgroundColor": "#ffffff",
2080
- "borderRadius": 4,
2081
- "flexDirection": "row",
2082
- "opacity": 1,
2083
- "padding": 16,
2084
- },
2085
- Object {
2086
- "marginHorizontal": 12,
2087
- },
2088
- ]
2027
+ Object {
2028
+ "alignItems": "center",
2029
+ "backgroundColor": "#ffffff",
2030
+ "borderRadius": 4,
2031
+ "flexDirection": "row",
2032
+ "marginHorizontal": 12,
2033
+ "opacity": 1,
2034
+ "padding": 16,
2035
+ }
2089
2036
  }
2090
2037
  >
2091
2038
  <View
@@ -2186,13 +2133,10 @@ Array [
2186
2133
  >
2187
2134
  <View>
2188
2135
  <View
2189
- accessibilityState={
2190
- Object {
2191
- "disabled": false,
2192
- }
2193
- }
2194
2136
  accessible={true}
2137
+ collapsable={false}
2195
2138
  focusable={true}
2139
+ nativeID="animatedComponent"
2196
2140
  onClick={[Function]}
2197
2141
  onResponderGrant={[Function]}
2198
2142
  onResponderMove={[Function]}
@@ -2201,19 +2145,15 @@ Array [
2201
2145
  onResponderTerminationRequest={[Function]}
2202
2146
  onStartShouldSetResponder={[Function]}
2203
2147
  style={
2204
- Array [
2205
- Object {
2206
- "alignItems": "center",
2207
- "backgroundColor": "#ffffff",
2208
- "borderRadius": 4,
2209
- "flexDirection": "row",
2210
- "opacity": 1,
2211
- "padding": 16,
2212
- },
2213
- Object {
2214
- "marginHorizontal": 12,
2215
- },
2216
- ]
2148
+ Object {
2149
+ "alignItems": "center",
2150
+ "backgroundColor": "#ffffff",
2151
+ "borderRadius": 4,
2152
+ "flexDirection": "row",
2153
+ "marginHorizontal": 12,
2154
+ "opacity": 1,
2155
+ "padding": 16,
2156
+ }
2217
2157
  }
2218
2158
  >
2219
2159
  <View
@@ -2314,13 +2254,10 @@ Array [
2314
2254
  >
2315
2255
  <View>
2316
2256
  <View
2317
- accessibilityState={
2318
- Object {
2319
- "disabled": false,
2320
- }
2321
- }
2322
2257
  accessible={true}
2258
+ collapsable={false}
2323
2259
  focusable={true}
2260
+ nativeID="animatedComponent"
2324
2261
  onClick={[Function]}
2325
2262
  onResponderGrant={[Function]}
2326
2263
  onResponderMove={[Function]}
@@ -2329,19 +2266,15 @@ Array [
2329
2266
  onResponderTerminationRequest={[Function]}
2330
2267
  onStartShouldSetResponder={[Function]}
2331
2268
  style={
2332
- Array [
2333
- Object {
2334
- "alignItems": "center",
2335
- "backgroundColor": "#ffffff",
2336
- "borderRadius": 4,
2337
- "flexDirection": "row",
2338
- "opacity": 1,
2339
- "padding": 16,
2340
- },
2341
- Object {
2342
- "marginHorizontal": 12,
2343
- },
2344
- ]
2269
+ Object {
2270
+ "alignItems": "center",
2271
+ "backgroundColor": "#ffffff",
2272
+ "borderRadius": 4,
2273
+ "flexDirection": "row",
2274
+ "marginHorizontal": 12,
2275
+ "opacity": 1,
2276
+ "padding": 16,
2277
+ }
2345
2278
  }
2346
2279
  >
2347
2280
  <View
@@ -2442,13 +2375,10 @@ Array [
2442
2375
  >
2443
2376
  <View>
2444
2377
  <View
2445
- accessibilityState={
2446
- Object {
2447
- "disabled": false,
2448
- }
2449
- }
2450
2378
  accessible={true}
2379
+ collapsable={false}
2451
2380
  focusable={true}
2381
+ nativeID="animatedComponent"
2452
2382
  onClick={[Function]}
2453
2383
  onResponderGrant={[Function]}
2454
2384
  onResponderMove={[Function]}
@@ -2457,19 +2387,15 @@ Array [
2457
2387
  onResponderTerminationRequest={[Function]}
2458
2388
  onStartShouldSetResponder={[Function]}
2459
2389
  style={
2460
- Array [
2461
- Object {
2462
- "alignItems": "center",
2463
- "backgroundColor": "#ffffff",
2464
- "borderRadius": 4,
2465
- "flexDirection": "row",
2466
- "opacity": 1,
2467
- "padding": 16,
2468
- },
2469
- Object {
2470
- "marginHorizontal": 12,
2471
- },
2472
- ]
2390
+ Object {
2391
+ "alignItems": "center",
2392
+ "backgroundColor": "#ffffff",
2393
+ "borderRadius": 4,
2394
+ "flexDirection": "row",
2395
+ "marginHorizontal": 12,
2396
+ "opacity": 1,
2397
+ "padding": 16,
2398
+ }
2473
2399
  }
2474
2400
  >
2475
2401
  <View
@@ -2571,13 +2497,10 @@ Array [
2571
2497
  >
2572
2498
  <View>
2573
2499
  <View
2574
- accessibilityState={
2575
- Object {
2576
- "disabled": true,
2577
- }
2578
- }
2579
2500
  accessible={true}
2501
+ collapsable={false}
2580
2502
  focusable={true}
2503
+ nativeID="animatedComponent"
2581
2504
  onClick={[Function]}
2582
2505
  onResponderGrant={[Function]}
2583
2506
  onResponderMove={[Function]}
@@ -2586,19 +2509,15 @@ Array [
2586
2509
  onResponderTerminationRequest={[Function]}
2587
2510
  onStartShouldSetResponder={[Function]}
2588
2511
  style={
2589
- Array [
2590
- Object {
2591
- "alignItems": "center",
2592
- "backgroundColor": "#ffffff",
2593
- "borderRadius": 4,
2594
- "flexDirection": "row",
2595
- "opacity": 0.38,
2596
- "padding": 16,
2597
- },
2598
- Object {
2599
- "marginHorizontal": 12,
2600
- },
2601
- ]
2512
+ Object {
2513
+ "alignItems": "center",
2514
+ "backgroundColor": "#ffffff",
2515
+ "borderRadius": 4,
2516
+ "flexDirection": "row",
2517
+ "marginHorizontal": 12,
2518
+ "opacity": 0.38,
2519
+ "padding": 16,
2520
+ }
2602
2521
  }
2603
2522
  >
2604
2523
  <View
@@ -2845,6 +2764,7 @@ Array [
2845
2764
  "flexGrow": 2,
2846
2765
  "fontSize": 14,
2847
2766
  "marginHorizontal": 8,
2767
+ "paddingVertical": 0,
2848
2768
  "textAlignVertical": "center",
2849
2769
  },
2850
2770
  Object {
@@ -2920,31 +2840,6 @@ Array [
2920
2840
  ]
2921
2841
  }
2922
2842
  >
2923
- <View
2924
- accessible={true}
2925
- collapsable={false}
2926
- focusable={true}
2927
- onBlur={[Function]}
2928
- onClick={[Function]}
2929
- onFocus={[Function]}
2930
- onResponderGrant={[Function]}
2931
- onResponderMove={[Function]}
2932
- onResponderRelease={[Function]}
2933
- onResponderTerminate={[Function]}
2934
- onResponderTerminationRequest={[Function]}
2935
- onStartShouldSetResponder={[Function]}
2936
- style={
2937
- Object {
2938
- "backgroundColor": "#001f23",
2939
- "bottom": 0,
2940
- "left": 0,
2941
- "opacity": 0.48,
2942
- "position": "absolute",
2943
- "right": 0,
2944
- "top": 0,
2945
- }
2946
- }
2947
- />
2948
2843
  <View
2949
2844
  onLayout={[Function]}
2950
2845
  style={
@@ -2962,6 +2857,31 @@ Array [
2962
2857
  ]
2963
2858
  }
2964
2859
  >
2860
+ <View
2861
+ accessible={true}
2862
+ collapsable={false}
2863
+ focusable={true}
2864
+ onBlur={[Function]}
2865
+ onClick={[Function]}
2866
+ onFocus={[Function]}
2867
+ onResponderGrant={[Function]}
2868
+ onResponderMove={[Function]}
2869
+ onResponderRelease={[Function]}
2870
+ onResponderTerminate={[Function]}
2871
+ onResponderTerminationRequest={[Function]}
2872
+ onStartShouldSetResponder={[Function]}
2873
+ style={
2874
+ Object {
2875
+ "backgroundColor": "#001f23",
2876
+ "bottom": 0,
2877
+ "left": 0,
2878
+ "opacity": 0.48,
2879
+ "position": "absolute",
2880
+ "right": 0,
2881
+ "top": 0,
2882
+ }
2883
+ }
2884
+ />
2965
2885
  <RCTSafeAreaView
2966
2886
  emulateUnlessSupported={true}
2967
2887
  style={
@@ -3146,7 +3066,6 @@ Array [
3146
3066
  onScroll={[Function]}
3147
3067
  onScrollBeginDrag={[Function]}
3148
3068
  onScrollEndDrag={[Function]}
3149
- onScrollToIndexFailed={[Function]}
3150
3069
  renderItem={[Function]}
3151
3070
  scrollEventThrottle={50}
3152
3071
  stickyHeaderIndices={
@@ -3220,11 +3139,6 @@ Array [
3220
3139
  }
3221
3140
  />
3222
3141
  <View
3223
- accessibilityState={
3224
- Object {
3225
- "disabled": false,
3226
- }
3227
- }
3228
3142
  accessible={true}
3229
3143
  focusable={true}
3230
3144
  onClick={[Function]}
@@ -3235,19 +3149,15 @@ Array [
3235
3149
  onResponderTerminationRequest={[Function]}
3236
3150
  onStartShouldSetResponder={[Function]}
3237
3151
  style={
3238
- Array [
3239
- Object {
3240
- "alignItems": "center",
3241
- "backgroundColor": "#d9d1df",
3242
- "borderRadius": 4,
3243
- "flexDirection": "row",
3244
- "opacity": 1,
3245
- "padding": 16,
3246
- },
3247
- Object {
3248
- "marginHorizontal": 12,
3249
- },
3250
- ]
3152
+ Object {
3153
+ "alignItems": "center",
3154
+ "backgroundColor": "#ece8ef",
3155
+ "borderRadius": 4,
3156
+ "flexDirection": "row",
3157
+ "marginHorizontal": 12,
3158
+ "opacity": 1,
3159
+ "padding": 16,
3160
+ }
3251
3161
  }
3252
3162
  >
3253
3163
  <View
@@ -3348,11 +3258,6 @@ Array [
3348
3258
  >
3349
3259
  <View>
3350
3260
  <View
3351
- accessibilityState={
3352
- Object {
3353
- "disabled": false,
3354
- }
3355
- }
3356
3261
  accessible={true}
3357
3262
  focusable={true}
3358
3263
  onClick={[Function]}
@@ -3363,19 +3268,15 @@ Array [
3363
3268
  onResponderTerminationRequest={[Function]}
3364
3269
  onStartShouldSetResponder={[Function]}
3365
3270
  style={
3366
- Array [
3367
- Object {
3368
- "alignItems": "center",
3369
- "backgroundColor": "#ffffff",
3370
- "borderRadius": 4,
3371
- "flexDirection": "row",
3372
- "opacity": 1,
3373
- "padding": 16,
3374
- },
3375
- Object {
3376
- "marginHorizontal": 12,
3377
- },
3378
- ]
3271
+ Object {
3272
+ "alignItems": "center",
3273
+ "backgroundColor": "#ffffff",
3274
+ "borderRadius": 4,
3275
+ "flexDirection": "row",
3276
+ "marginHorizontal": 12,
3277
+ "opacity": 1,
3278
+ "padding": 16,
3279
+ }
3379
3280
  }
3380
3281
  >
3381
3282
  <View
@@ -3476,11 +3377,6 @@ Array [
3476
3377
  >
3477
3378
  <View>
3478
3379
  <View
3479
- accessibilityState={
3480
- Object {
3481
- "disabled": false,
3482
- }
3483
- }
3484
3380
  accessible={true}
3485
3381
  focusable={true}
3486
3382
  onClick={[Function]}
@@ -3491,19 +3387,15 @@ Array [
3491
3387
  onResponderTerminationRequest={[Function]}
3492
3388
  onStartShouldSetResponder={[Function]}
3493
3389
  style={
3494
- Array [
3495
- Object {
3496
- "alignItems": "center",
3497
- "backgroundColor": "#ffffff",
3498
- "borderRadius": 4,
3499
- "flexDirection": "row",
3500
- "opacity": 1,
3501
- "padding": 16,
3502
- },
3503
- Object {
3504
- "marginHorizontal": 12,
3505
- },
3506
- ]
3390
+ Object {
3391
+ "alignItems": "center",
3392
+ "backgroundColor": "#ffffff",
3393
+ "borderRadius": 4,
3394
+ "flexDirection": "row",
3395
+ "marginHorizontal": 12,
3396
+ "opacity": 1,
3397
+ "padding": 16,
3398
+ }
3507
3399
  }
3508
3400
  >
3509
3401
  <View
@@ -3604,11 +3496,6 @@ Array [
3604
3496
  >
3605
3497
  <View>
3606
3498
  <View
3607
- accessibilityState={
3608
- Object {
3609
- "disabled": false,
3610
- }
3611
- }
3612
3499
  accessible={true}
3613
3500
  focusable={true}
3614
3501
  onClick={[Function]}
@@ -3619,19 +3506,15 @@ Array [
3619
3506
  onResponderTerminationRequest={[Function]}
3620
3507
  onStartShouldSetResponder={[Function]}
3621
3508
  style={
3622
- Array [
3623
- Object {
3624
- "alignItems": "center",
3625
- "backgroundColor": "#ffffff",
3626
- "borderRadius": 4,
3627
- "flexDirection": "row",
3628
- "opacity": 1,
3629
- "padding": 16,
3630
- },
3631
- Object {
3632
- "marginHorizontal": 12,
3633
- },
3634
- ]
3509
+ Object {
3510
+ "alignItems": "center",
3511
+ "backgroundColor": "#ffffff",
3512
+ "borderRadius": 4,
3513
+ "flexDirection": "row",
3514
+ "marginHorizontal": 12,
3515
+ "opacity": 1,
3516
+ "padding": 16,
3517
+ }
3635
3518
  }
3636
3519
  >
3637
3520
  <View
@@ -3732,11 +3615,6 @@ Array [
3732
3615
  >
3733
3616
  <View>
3734
3617
  <View
3735
- accessibilityState={
3736
- Object {
3737
- "disabled": false,
3738
- }
3739
- }
3740
3618
  accessible={true}
3741
3619
  focusable={true}
3742
3620
  onClick={[Function]}
@@ -3747,19 +3625,15 @@ Array [
3747
3625
  onResponderTerminationRequest={[Function]}
3748
3626
  onStartShouldSetResponder={[Function]}
3749
3627
  style={
3750
- Array [
3751
- Object {
3752
- "alignItems": "center",
3753
- "backgroundColor": "#ffffff",
3754
- "borderRadius": 4,
3755
- "flexDirection": "row",
3756
- "opacity": 1,
3757
- "padding": 16,
3758
- },
3759
- Object {
3760
- "marginHorizontal": 12,
3761
- },
3762
- ]
3628
+ Object {
3629
+ "alignItems": "center",
3630
+ "backgroundColor": "#ffffff",
3631
+ "borderRadius": 4,
3632
+ "flexDirection": "row",
3633
+ "marginHorizontal": 12,
3634
+ "opacity": 1,
3635
+ "padding": 16,
3636
+ }
3763
3637
  }
3764
3638
  >
3765
3639
  <View
@@ -3860,11 +3734,6 @@ Array [
3860
3734
  >
3861
3735
  <View>
3862
3736
  <View
3863
- accessibilityState={
3864
- Object {
3865
- "disabled": false,
3866
- }
3867
- }
3868
3737
  accessible={true}
3869
3738
  focusable={true}
3870
3739
  onClick={[Function]}
@@ -3875,19 +3744,15 @@ Array [
3875
3744
  onResponderTerminationRequest={[Function]}
3876
3745
  onStartShouldSetResponder={[Function]}
3877
3746
  style={
3878
- Array [
3879
- Object {
3880
- "alignItems": "center",
3881
- "backgroundColor": "#ffffff",
3882
- "borderRadius": 4,
3883
- "flexDirection": "row",
3884
- "opacity": 1,
3885
- "padding": 16,
3886
- },
3887
- Object {
3888
- "marginHorizontal": 12,
3889
- },
3890
- ]
3747
+ Object {
3748
+ "alignItems": "center",
3749
+ "backgroundColor": "#ffffff",
3750
+ "borderRadius": 4,
3751
+ "flexDirection": "row",
3752
+ "marginHorizontal": 12,
3753
+ "opacity": 1,
3754
+ "padding": 16,
3755
+ }
3891
3756
  }
3892
3757
  >
3893
3758
  <View
@@ -3989,11 +3854,6 @@ Array [
3989
3854
  >
3990
3855
  <View>
3991
3856
  <View
3992
- accessibilityState={
3993
- Object {
3994
- "disabled": true,
3995
- }
3996
- }
3997
3857
  accessible={true}
3998
3858
  focusable={true}
3999
3859
  onClick={[Function]}
@@ -4004,19 +3864,15 @@ Array [
4004
3864
  onResponderTerminationRequest={[Function]}
4005
3865
  onStartShouldSetResponder={[Function]}
4006
3866
  style={
4007
- Array [
4008
- Object {
4009
- "alignItems": "center",
4010
- "backgroundColor": "#ffffff",
4011
- "borderRadius": 4,
4012
- "flexDirection": "row",
4013
- "opacity": 0.38,
4014
- "padding": 16,
4015
- },
4016
- Object {
4017
- "marginHorizontal": 12,
4018
- },
4019
- ]
3867
+ Object {
3868
+ "alignItems": "center",
3869
+ "backgroundColor": "#ffffff",
3870
+ "borderRadius": 4,
3871
+ "flexDirection": "row",
3872
+ "marginHorizontal": 12,
3873
+ "opacity": 0.38,
3874
+ "padding": 16,
3875
+ }
4020
3876
  }
4021
3877
  >
4022
3878
  <View
@@ -4217,7 +4073,7 @@ Array [
4217
4073
  },
4218
4074
  Array [
4219
4075
  Object {
4220
- "color": "#bfc1c5",
4076
+ "color": "#808f91",
4221
4077
  },
4222
4078
  undefined,
4223
4079
  ],
@@ -4265,6 +4121,7 @@ Array [
4265
4121
  "flexGrow": 2,
4266
4122
  "fontSize": 14,
4267
4123
  "marginHorizontal": 8,
4124
+ "paddingVertical": 0,
4268
4125
  "textAlignVertical": "center",
4269
4126
  },
4270
4127
  Object {
@@ -4354,32 +4211,6 @@ Array [
4354
4211
  ]
4355
4212
  }
4356
4213
  >
4357
- <View
4358
- accessible={true}
4359
- collapsable={false}
4360
- focusable={true}
4361
- nativeID="animatedComponent"
4362
- onBlur={[Function]}
4363
- onClick={[Function]}
4364
- onFocus={[Function]}
4365
- onResponderGrant={[Function]}
4366
- onResponderMove={[Function]}
4367
- onResponderRelease={[Function]}
4368
- onResponderTerminate={[Function]}
4369
- onResponderTerminationRequest={[Function]}
4370
- onStartShouldSetResponder={[Function]}
4371
- style={
4372
- Object {
4373
- "backgroundColor": "#001f23",
4374
- "bottom": 0,
4375
- "left": 0,
4376
- "opacity": 0.48,
4377
- "position": "absolute",
4378
- "right": 0,
4379
- "top": 0,
4380
- }
4381
- }
4382
- />
4383
4214
  <View
4384
4215
  onLayout={[Function]}
4385
4216
  style={
@@ -4397,6 +4228,32 @@ Array [
4397
4228
  ]
4398
4229
  }
4399
4230
  >
4231
+ <View
4232
+ accessible={true}
4233
+ collapsable={false}
4234
+ focusable={true}
4235
+ nativeID="animatedComponent"
4236
+ onBlur={[Function]}
4237
+ onClick={[Function]}
4238
+ onFocus={[Function]}
4239
+ onResponderGrant={[Function]}
4240
+ onResponderMove={[Function]}
4241
+ onResponderRelease={[Function]}
4242
+ onResponderTerminate={[Function]}
4243
+ onResponderTerminationRequest={[Function]}
4244
+ onStartShouldSetResponder={[Function]}
4245
+ style={
4246
+ Object {
4247
+ "backgroundColor": "#001f23",
4248
+ "bottom": 0,
4249
+ "left": 0,
4250
+ "opacity": 0.48,
4251
+ "position": "absolute",
4252
+ "right": 0,
4253
+ "top": 0,
4254
+ }
4255
+ }
4256
+ />
4400
4257
  <RCTSafeAreaView
4401
4258
  collapsable={false}
4402
4259
  emulateUnlessSupported={true}
@@ -4585,7 +4442,6 @@ Array [
4585
4442
  onScroll={[Function]}
4586
4443
  onScrollBeginDrag={[Function]}
4587
4444
  onScrollEndDrag={[Function]}
4588
- onScrollToIndexFailed={[Function]}
4589
4445
  renderItem={[Function]}
4590
4446
  scrollEventThrottle={50}
4591
4447
  stickyHeaderIndices={
@@ -4659,13 +4515,10 @@ Array [
4659
4515
  }
4660
4516
  />
4661
4517
  <View
4662
- accessibilityState={
4663
- Object {
4664
- "disabled": false,
4665
- }
4666
- }
4667
4518
  accessible={true}
4519
+ collapsable={false}
4668
4520
  focusable={true}
4521
+ nativeID="animatedComponent"
4669
4522
  onClick={[Function]}
4670
4523
  onResponderGrant={[Function]}
4671
4524
  onResponderMove={[Function]}
@@ -4674,19 +4527,15 @@ Array [
4674
4527
  onResponderTerminationRequest={[Function]}
4675
4528
  onStartShouldSetResponder={[Function]}
4676
4529
  style={
4677
- Array [
4678
- Object {
4679
- "alignItems": "center",
4680
- "backgroundColor": "#d9d1df",
4681
- "borderRadius": 4,
4682
- "flexDirection": "row",
4683
- "opacity": 1,
4684
- "padding": 16,
4685
- },
4686
- Object {
4687
- "marginHorizontal": 12,
4688
- },
4689
- ]
4530
+ Object {
4531
+ "alignItems": "center",
4532
+ "backgroundColor": "#ece8ef",
4533
+ "borderRadius": 4,
4534
+ "flexDirection": "row",
4535
+ "marginHorizontal": 12,
4536
+ "opacity": 1,
4537
+ "padding": 16,
4538
+ }
4690
4539
  }
4691
4540
  >
4692
4541
  <View
@@ -4787,13 +4636,10 @@ Array [
4787
4636
  >
4788
4637
  <View>
4789
4638
  <View
4790
- accessibilityState={
4791
- Object {
4792
- "disabled": false,
4793
- }
4794
- }
4795
4639
  accessible={true}
4640
+ collapsable={false}
4796
4641
  focusable={true}
4642
+ nativeID="animatedComponent"
4797
4643
  onClick={[Function]}
4798
4644
  onResponderGrant={[Function]}
4799
4645
  onResponderMove={[Function]}
@@ -4802,19 +4648,15 @@ Array [
4802
4648
  onResponderTerminationRequest={[Function]}
4803
4649
  onStartShouldSetResponder={[Function]}
4804
4650
  style={
4805
- Array [
4806
- Object {
4807
- "alignItems": "center",
4808
- "backgroundColor": "#ffffff",
4809
- "borderRadius": 4,
4810
- "flexDirection": "row",
4811
- "opacity": 1,
4812
- "padding": 16,
4813
- },
4814
- Object {
4815
- "marginHorizontal": 12,
4816
- },
4817
- ]
4651
+ Object {
4652
+ "alignItems": "center",
4653
+ "backgroundColor": "#ffffff",
4654
+ "borderRadius": 4,
4655
+ "flexDirection": "row",
4656
+ "marginHorizontal": 12,
4657
+ "opacity": 1,
4658
+ "padding": 16,
4659
+ }
4818
4660
  }
4819
4661
  >
4820
4662
  <View
@@ -4915,13 +4757,10 @@ Array [
4915
4757
  >
4916
4758
  <View>
4917
4759
  <View
4918
- accessibilityState={
4919
- Object {
4920
- "disabled": false,
4921
- }
4922
- }
4923
4760
  accessible={true}
4761
+ collapsable={false}
4924
4762
  focusable={true}
4763
+ nativeID="animatedComponent"
4925
4764
  onClick={[Function]}
4926
4765
  onResponderGrant={[Function]}
4927
4766
  onResponderMove={[Function]}
@@ -4930,19 +4769,15 @@ Array [
4930
4769
  onResponderTerminationRequest={[Function]}
4931
4770
  onStartShouldSetResponder={[Function]}
4932
4771
  style={
4933
- Array [
4934
- Object {
4935
- "alignItems": "center",
4936
- "backgroundColor": "#ffffff",
4937
- "borderRadius": 4,
4938
- "flexDirection": "row",
4939
- "opacity": 1,
4940
- "padding": 16,
4941
- },
4942
- Object {
4943
- "marginHorizontal": 12,
4944
- },
4945
- ]
4772
+ Object {
4773
+ "alignItems": "center",
4774
+ "backgroundColor": "#ffffff",
4775
+ "borderRadius": 4,
4776
+ "flexDirection": "row",
4777
+ "marginHorizontal": 12,
4778
+ "opacity": 1,
4779
+ "padding": 16,
4780
+ }
4946
4781
  }
4947
4782
  >
4948
4783
  <View
@@ -5043,13 +4878,10 @@ Array [
5043
4878
  >
5044
4879
  <View>
5045
4880
  <View
5046
- accessibilityState={
5047
- Object {
5048
- "disabled": false,
5049
- }
5050
- }
5051
4881
  accessible={true}
4882
+ collapsable={false}
5052
4883
  focusable={true}
4884
+ nativeID="animatedComponent"
5053
4885
  onClick={[Function]}
5054
4886
  onResponderGrant={[Function]}
5055
4887
  onResponderMove={[Function]}
@@ -5058,19 +4890,15 @@ Array [
5058
4890
  onResponderTerminationRequest={[Function]}
5059
4891
  onStartShouldSetResponder={[Function]}
5060
4892
  style={
5061
- Array [
5062
- Object {
5063
- "alignItems": "center",
5064
- "backgroundColor": "#ffffff",
5065
- "borderRadius": 4,
5066
- "flexDirection": "row",
5067
- "opacity": 1,
5068
- "padding": 16,
5069
- },
5070
- Object {
5071
- "marginHorizontal": 12,
5072
- },
5073
- ]
4893
+ Object {
4894
+ "alignItems": "center",
4895
+ "backgroundColor": "#ffffff",
4896
+ "borderRadius": 4,
4897
+ "flexDirection": "row",
4898
+ "marginHorizontal": 12,
4899
+ "opacity": 1,
4900
+ "padding": 16,
4901
+ }
5074
4902
  }
5075
4903
  >
5076
4904
  <View
@@ -5171,13 +4999,10 @@ Array [
5171
4999
  >
5172
5000
  <View>
5173
5001
  <View
5174
- accessibilityState={
5175
- Object {
5176
- "disabled": false,
5177
- }
5178
- }
5179
5002
  accessible={true}
5003
+ collapsable={false}
5180
5004
  focusable={true}
5005
+ nativeID="animatedComponent"
5181
5006
  onClick={[Function]}
5182
5007
  onResponderGrant={[Function]}
5183
5008
  onResponderMove={[Function]}
@@ -5186,19 +5011,15 @@ Array [
5186
5011
  onResponderTerminationRequest={[Function]}
5187
5012
  onStartShouldSetResponder={[Function]}
5188
5013
  style={
5189
- Array [
5190
- Object {
5191
- "alignItems": "center",
5192
- "backgroundColor": "#ffffff",
5193
- "borderRadius": 4,
5194
- "flexDirection": "row",
5195
- "opacity": 1,
5196
- "padding": 16,
5197
- },
5198
- Object {
5199
- "marginHorizontal": 12,
5200
- },
5201
- ]
5014
+ Object {
5015
+ "alignItems": "center",
5016
+ "backgroundColor": "#ffffff",
5017
+ "borderRadius": 4,
5018
+ "flexDirection": "row",
5019
+ "marginHorizontal": 12,
5020
+ "opacity": 1,
5021
+ "padding": 16,
5022
+ }
5202
5023
  }
5203
5024
  >
5204
5025
  <View
@@ -5299,13 +5120,10 @@ Array [
5299
5120
  >
5300
5121
  <View>
5301
5122
  <View
5302
- accessibilityState={
5303
- Object {
5304
- "disabled": false,
5305
- }
5306
- }
5307
5123
  accessible={true}
5124
+ collapsable={false}
5308
5125
  focusable={true}
5126
+ nativeID="animatedComponent"
5309
5127
  onClick={[Function]}
5310
5128
  onResponderGrant={[Function]}
5311
5129
  onResponderMove={[Function]}
@@ -5314,19 +5132,15 @@ Array [
5314
5132
  onResponderTerminationRequest={[Function]}
5315
5133
  onStartShouldSetResponder={[Function]}
5316
5134
  style={
5317
- Array [
5318
- Object {
5319
- "alignItems": "center",
5320
- "backgroundColor": "#ffffff",
5321
- "borderRadius": 4,
5322
- "flexDirection": "row",
5323
- "opacity": 1,
5324
- "padding": 16,
5325
- },
5326
- Object {
5327
- "marginHorizontal": 12,
5328
- },
5329
- ]
5135
+ Object {
5136
+ "alignItems": "center",
5137
+ "backgroundColor": "#ffffff",
5138
+ "borderRadius": 4,
5139
+ "flexDirection": "row",
5140
+ "marginHorizontal": 12,
5141
+ "opacity": 1,
5142
+ "padding": 16,
5143
+ }
5330
5144
  }
5331
5145
  >
5332
5146
  <View
@@ -5428,13 +5242,10 @@ Array [
5428
5242
  >
5429
5243
  <View>
5430
5244
  <View
5431
- accessibilityState={
5432
- Object {
5433
- "disabled": true,
5434
- }
5435
- }
5436
5245
  accessible={true}
5246
+ collapsable={false}
5437
5247
  focusable={true}
5248
+ nativeID="animatedComponent"
5438
5249
  onClick={[Function]}
5439
5250
  onResponderGrant={[Function]}
5440
5251
  onResponderMove={[Function]}
@@ -5443,19 +5254,15 @@ Array [
5443
5254
  onResponderTerminationRequest={[Function]}
5444
5255
  onStartShouldSetResponder={[Function]}
5445
5256
  style={
5446
- Array [
5447
- Object {
5448
- "alignItems": "center",
5449
- "backgroundColor": "#ffffff",
5450
- "borderRadius": 4,
5451
- "flexDirection": "row",
5452
- "opacity": 0.38,
5453
- "padding": 16,
5454
- },
5455
- Object {
5456
- "marginHorizontal": 12,
5457
- },
5458
- ]
5257
+ Object {
5258
+ "alignItems": "center",
5259
+ "backgroundColor": "#ffffff",
5260
+ "borderRadius": 4,
5261
+ "flexDirection": "row",
5262
+ "marginHorizontal": 12,
5263
+ "opacity": 0.38,
5264
+ "padding": 16,
5265
+ }
5459
5266
  }
5460
5267
  >
5461
5268
  <View
@@ -5702,6 +5509,7 @@ Array [
5702
5509
  "flexGrow": 2,
5703
5510
  "fontSize": 14,
5704
5511
  "marginHorizontal": 8,
5512
+ "paddingVertical": 0,
5705
5513
  "textAlignVertical": "center",
5706
5514
  },
5707
5515
  Object {
@@ -5777,31 +5585,6 @@ Array [
5777
5585
  ]
5778
5586
  }
5779
5587
  >
5780
- <View
5781
- accessible={true}
5782
- collapsable={false}
5783
- focusable={true}
5784
- onBlur={[Function]}
5785
- onClick={[Function]}
5786
- onFocus={[Function]}
5787
- onResponderGrant={[Function]}
5788
- onResponderMove={[Function]}
5789
- onResponderRelease={[Function]}
5790
- onResponderTerminate={[Function]}
5791
- onResponderTerminationRequest={[Function]}
5792
- onStartShouldSetResponder={[Function]}
5793
- style={
5794
- Object {
5795
- "backgroundColor": "#001f23",
5796
- "bottom": 0,
5797
- "left": 0,
5798
- "opacity": 0.48,
5799
- "position": "absolute",
5800
- "right": 0,
5801
- "top": 0,
5802
- }
5803
- }
5804
- />
5805
5588
  <View
5806
5589
  onLayout={[Function]}
5807
5590
  style={
@@ -5819,6 +5602,31 @@ Array [
5819
5602
  ]
5820
5603
  }
5821
5604
  >
5605
+ <View
5606
+ accessible={true}
5607
+ collapsable={false}
5608
+ focusable={true}
5609
+ onBlur={[Function]}
5610
+ onClick={[Function]}
5611
+ onFocus={[Function]}
5612
+ onResponderGrant={[Function]}
5613
+ onResponderMove={[Function]}
5614
+ onResponderRelease={[Function]}
5615
+ onResponderTerminate={[Function]}
5616
+ onResponderTerminationRequest={[Function]}
5617
+ onStartShouldSetResponder={[Function]}
5618
+ style={
5619
+ Object {
5620
+ "backgroundColor": "#001f23",
5621
+ "bottom": 0,
5622
+ "left": 0,
5623
+ "opacity": 0.48,
5624
+ "position": "absolute",
5625
+ "right": 0,
5626
+ "top": 0,
5627
+ }
5628
+ }
5629
+ />
5822
5630
  <RCTSafeAreaView
5823
5631
  emulateUnlessSupported={true}
5824
5632
  style={
@@ -5991,7 +5799,6 @@ Array [
5991
5799
  onScroll={[Function]}
5992
5800
  onScrollBeginDrag={[Function]}
5993
5801
  onScrollEndDrag={[Function]}
5994
- onScrollToIndexFailed={[Function]}
5995
5802
  renderItem={[Function]}
5996
5803
  scrollEventThrottle={50}
5997
5804
  stickyHeaderIndices={
@@ -6118,11 +5925,6 @@ Array [
6118
5925
  }
6119
5926
  />
6120
5927
  <View
6121
- accessibilityState={
6122
- Object {
6123
- "disabled": false,
6124
- }
6125
- }
6126
5928
  accessible={true}
6127
5929
  focusable={true}
6128
5930
  onClick={[Function]}
@@ -6133,19 +5935,15 @@ Array [
6133
5935
  onResponderTerminationRequest={[Function]}
6134
5936
  onStartShouldSetResponder={[Function]}
6135
5937
  style={
6136
- Array [
6137
- Object {
6138
- "alignItems": "center",
6139
- "backgroundColor": "#d9d1df",
6140
- "borderRadius": 4,
6141
- "flexDirection": "row",
6142
- "opacity": 1,
6143
- "padding": 16,
6144
- },
6145
- Object {
6146
- "marginHorizontal": 12,
6147
- },
6148
- ]
5938
+ Object {
5939
+ "alignItems": "center",
5940
+ "backgroundColor": "#ece8ef",
5941
+ "borderRadius": 4,
5942
+ "flexDirection": "row",
5943
+ "marginHorizontal": 12,
5944
+ "opacity": 1,
5945
+ "padding": 16,
5946
+ }
6149
5947
  }
6150
5948
  >
6151
5949
  <View
@@ -6343,11 +6141,6 @@ Array [
6343
6141
  }
6344
6142
  />
6345
6143
  <View
6346
- accessibilityState={
6347
- Object {
6348
- "disabled": false,
6349
- }
6350
- }
6351
6144
  accessible={true}
6352
6145
  focusable={true}
6353
6146
  onClick={[Function]}
@@ -6358,19 +6151,15 @@ Array [
6358
6151
  onResponderTerminationRequest={[Function]}
6359
6152
  onStartShouldSetResponder={[Function]}
6360
6153
  style={
6361
- Array [
6362
- Object {
6363
- "alignItems": "center",
6364
- "backgroundColor": "#ffffff",
6365
- "borderRadius": 4,
6366
- "flexDirection": "row",
6367
- "opacity": 1,
6368
- "padding": 16,
6369
- },
6370
- Object {
6371
- "marginHorizontal": 12,
6372
- },
6373
- ]
6154
+ Object {
6155
+ "alignItems": "center",
6156
+ "backgroundColor": "#ffffff",
6157
+ "borderRadius": 4,
6158
+ "flexDirection": "row",
6159
+ "marginHorizontal": 12,
6160
+ "opacity": 1,
6161
+ "padding": 16,
6162
+ }
6374
6163
  }
6375
6164
  >
6376
6165
  <View
@@ -6461,11 +6250,6 @@ Array [
6461
6250
  >
6462
6251
  <View>
6463
6252
  <View
6464
- accessibilityState={
6465
- Object {
6466
- "disabled": false,
6467
- }
6468
- }
6469
6253
  accessible={true}
6470
6254
  focusable={true}
6471
6255
  onClick={[Function]}
@@ -6476,19 +6260,15 @@ Array [
6476
6260
  onResponderTerminationRequest={[Function]}
6477
6261
  onStartShouldSetResponder={[Function]}
6478
6262
  style={
6479
- Array [
6480
- Object {
6481
- "alignItems": "center",
6482
- "backgroundColor": "#ffffff",
6483
- "borderRadius": 4,
6484
- "flexDirection": "row",
6485
- "opacity": 1,
6486
- "padding": 16,
6487
- },
6488
- Object {
6489
- "marginHorizontal": 12,
6490
- },
6491
- ]
6263
+ Object {
6264
+ "alignItems": "center",
6265
+ "backgroundColor": "#ffffff",
6266
+ "borderRadius": 4,
6267
+ "flexDirection": "row",
6268
+ "marginHorizontal": 12,
6269
+ "opacity": 1,
6270
+ "padding": 16,
6271
+ }
6492
6272
  }
6493
6273
  >
6494
6274
  <View