@hero-design/rn 7.24.0 → 7.25.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 (248) hide show
  1. package/.turbo/turbo-build.log +2 -2
  2. package/assets/fonts/hero-icons.ttf +0 -0
  3. package/es/index.js +845 -752
  4. package/lib/assets/fonts/hero-icons.ttf +0 -0
  5. package/lib/index.js +846 -750
  6. package/package.json +6 -5
  7. package/src/components/Accordion/__tests__/__snapshots__/AccordionItem.spec.tsx.snap +4 -4
  8. package/src/components/Accordion/__tests__/__snapshots__/index.spec.tsx.snap +6 -6
  9. package/src/components/Attachment/StyledAttachment.tsx +44 -0
  10. package/src/components/Attachment/__tests__/__snapshots__/index.spec.tsx.snap +158 -0
  11. package/src/components/Attachment/__tests__/index.spec.tsx +59 -0
  12. package/src/components/Attachment/index.tsx +77 -0
  13. package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +3 -3
  14. package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
  15. package/src/components/Badge/Status.tsx +1 -1
  16. package/src/components/Badge/StyledBadge.tsx +8 -1
  17. package/src/components/Badge/__tests__/Badge.spec.tsx +9 -0
  18. package/src/components/Badge/__tests__/__snapshots__/Badge.spec.tsx.snap +44 -0
  19. package/src/components/Badge/index.tsx +1 -1
  20. package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +3 -3
  21. package/src/components/BottomSheet/Header.tsx +2 -1
  22. package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +52 -52
  23. package/src/components/BottomSheet/index.tsx +4 -4
  24. package/src/components/Button/Button.tsx +0 -11
  25. package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +4 -4
  26. package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +12 -12
  27. package/src/components/Button/LoadingIndicator/index.tsx +1 -1
  28. package/src/components/Button/StyledButton.tsx +24 -63
  29. package/src/components/Button/UtilityButton/__tests__/index.spec.tsx +2 -2
  30. package/src/components/Button/__tests__/Button.spec.tsx +10 -5
  31. package/src/components/Button/__tests__/StyledButton.spec.tsx +0 -70
  32. package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +301 -1206
  33. package/src/components/Calendar/CalendarRowItem.tsx +1 -4
  34. package/src/components/Calendar/__tests__/__snapshots__/CalendarRowItem.spec.tsx.snap +5 -5
  35. package/src/components/Calendar/index.tsx +4 -3
  36. package/src/components/Card/DataCard/__tests__/__snapshots__/StyledDataCard.spec.tsx.snap +1 -1
  37. package/src/components/Card/__tests__/__snapshots__/StyledCard.spec.tsx.snap +1 -1
  38. package/src/components/Card/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
  39. package/src/components/Checkbox/StyledCheckbox.tsx +7 -5
  40. package/src/components/Checkbox/__tests__/__snapshots__/StyledCheckbox.spec.tsx.snap +4 -12
  41. package/src/components/Checkbox/__tests__/__snapshots__/index.spec.tsx.snap +95 -42
  42. package/src/components/Checkbox/index.tsx +4 -2
  43. package/src/components/ContentNavigator/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
  44. package/src/components/ContentNavigator/index.tsx +14 -9
  45. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +1 -0
  46. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +28 -27
  47. package/src/components/Drawer/DragableDrawer/index.tsx +0 -2
  48. package/src/components/Empty/__tests__/__snapshots__/index.spec.tsx.snap +2 -2
  49. package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +12 -12
  50. package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +1 -1
  51. package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +3 -3
  52. package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
  53. package/src/components/Icon/IconList.ts +30 -3
  54. package/src/components/Icon/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
  55. package/src/components/List/BasicListItem.tsx +13 -8
  56. package/src/components/List/ListItem.tsx +8 -6
  57. package/src/components/List/StyledBasicListItem.tsx +2 -2
  58. package/src/components/List/StyledListItem.tsx +2 -2
  59. package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +24 -36
  60. package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +39 -59
  61. package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +40 -44
  62. package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +50 -50
  63. package/src/components/PinInput/__tests__/__snapshots__/PinCell.spec.tsx.snap +6 -6
  64. package/src/components/PinInput/__tests__/__snapshots__/index.spec.tsx.snap +21 -21
  65. package/src/components/Progress/ProgressBar.tsx +1 -1
  66. package/src/components/Progress/ProgressCircle.tsx +1 -1
  67. package/src/components/Progress/__tests__/__snapshots__/index.spec.js.snap +10 -10
  68. package/src/components/Progress/types.ts +7 -1
  69. package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +20 -32
  70. package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +30 -48
  71. package/src/components/RefreshControl/__tests__/index.spec.tsx +1 -3
  72. package/src/components/RefreshControl/index.tsx +4 -2
  73. package/src/components/RichTextEditor/MentionList.tsx +12 -3
  74. package/src/components/RichTextEditor/RichTextEditor.tsx +3 -4
  75. package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +4 -4
  76. package/src/components/SectionHeading/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
  77. package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +13 -20
  78. package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +146 -234
  79. package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +430 -650
  80. package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +11 -18
  81. package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +136 -224
  82. package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +409 -629
  83. package/src/components/Select/StyledOptionList.tsx +0 -1
  84. package/src/components/Select/__tests__/__snapshots__/StyledSelect.spec.tsx.snap +1 -1
  85. package/src/components/Spinner/StyledSpinner.tsx +1 -2
  86. package/src/components/Spinner/__tests__/__snapshots__/AnimatedSpinner.spec.tsx.snap +4 -4
  87. package/src/components/Spinner/__tests__/__snapshots__/StyledSpinner.spec.tsx.snap +16 -16
  88. package/src/components/Spinner/__tests__/__snapshots__/index.spec.tsx.snap +4 -4
  89. package/src/components/Swipeable/__tests__/__snapshots__/SwipeableAction.spec.tsx.snap +1 -1
  90. package/src/components/Swipeable/index.tsx +14 -2
  91. package/src/components/Switch/SelectorSwitch/Option.tsx +1 -5
  92. package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/Option.spec.tsx.snap +3 -3
  93. package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/index.spec.tsx.snap +3 -3
  94. package/src/components/Switch/SelectorSwitch/__tests__/index.spec.tsx +1 -0
  95. package/src/components/Switch/SelectorSwitch/index.tsx +4 -1
  96. package/src/components/Switch/__tests__/__snapshots__/StyledSwitch.spec.tsx.snap +1 -1
  97. package/src/components/Tabs/StyledTabs.tsx +1 -1
  98. package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +1 -1
  99. package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +1 -1
  100. package/src/components/Tag/__tests__/__snapshots__/Tag.spec.tsx.snap +2 -2
  101. package/src/components/TextInput/StyledTextInput.tsx +1 -0
  102. package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +11 -10
  103. package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +27 -14
  104. package/src/components/TextInput/index.tsx +1 -0
  105. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +1 -0
  106. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +28 -27
  107. package/src/components/Toast/Toast.tsx +0 -3
  108. package/src/components/Toast/ToastProvider.tsx +1 -0
  109. package/src/components/Toast/__tests__/index.spec.tsx +1 -1
  110. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarGroup.spec.tsx.snap +12 -12
  111. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +6 -6
  112. package/src/components/Typography/Text/__tests__/__snapshots__/StyledText.spec.tsx.snap +4 -4
  113. package/src/emotion.d.ts +1 -0
  114. package/src/index.ts +6 -0
  115. package/src/theme/ThemeSwitcher.tsx +7 -1
  116. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +87 -74
  117. package/src/theme/__tests__/ensureCompatibleWithV7.spec.tsx +13 -0
  118. package/src/theme/components/alert.ts +1 -1
  119. package/src/theme/components/attachment.ts +28 -0
  120. package/src/theme/components/avatar.ts +1 -1
  121. package/src/theme/components/badge.ts +2 -1
  122. package/src/theme/components/bottomNavigation.ts +1 -1
  123. package/src/theme/components/bottomSheet.ts +2 -2
  124. package/src/theme/components/button.ts +4 -20
  125. package/src/theme/components/calendar.ts +3 -3
  126. package/src/theme/components/card.ts +1 -1
  127. package/src/theme/components/checkbox.ts +2 -2
  128. package/src/theme/components/divider.ts +1 -1
  129. package/src/theme/components/drawer.ts +2 -2
  130. package/src/theme/components/empty.ts +3 -3
  131. package/src/theme/components/fab.ts +7 -7
  132. package/src/theme/components/icon.ts +4 -4
  133. package/src/theme/components/list.ts +0 -2
  134. package/src/theme/components/pinInput.ts +4 -4
  135. package/src/theme/components/progress.ts +6 -5
  136. package/src/theme/components/radio.ts +1 -1
  137. package/src/theme/components/richTextEditor.ts +2 -2
  138. package/src/theme/components/slider.ts +2 -2
  139. package/src/theme/components/switch.ts +4 -4
  140. package/src/theme/components/tabs.ts +6 -5
  141. package/src/theme/components/tag.ts +2 -2
  142. package/src/theme/components/textInput.ts +23 -28
  143. package/src/theme/components/toast.ts +3 -3
  144. package/src/theme/components/toolbar.ts +3 -3
  145. package/src/theme/components/typography.ts +7 -7
  146. package/src/theme/getTheme.ts +4 -1
  147. package/src/theme/global/colors/eBens.ts +23 -0
  148. package/src/theme/global/colors/global.ts +15 -6
  149. package/src/theme/global/colors/jobs.ts +15 -9
  150. package/src/theme/global/colors/legacySystemPalette.ts +6 -6
  151. package/src/theme/global/colors/swag.ts +32 -53
  152. package/src/theme/global/colors/types.ts +35 -15
  153. package/src/theme/global/colors/wallet.ts +23 -0
  154. package/src/theme/global/colors/work.ts +15 -9
  155. package/src/theme/global/index.ts +4 -0
  156. package/src/theme/index.ts +4 -0
  157. package/src/utils/functions.ts +2 -0
  158. package/src/utils/scale.ts +1 -1
  159. package/tsconfig.json +8 -2
  160. package/types/components/Accordion/StyledAccordion.d.ts +14 -14
  161. package/types/components/Alert/StyledAlert.d.ts +15 -15
  162. package/types/components/Attachment/StyledAttachment.d.ts +28 -0
  163. package/types/components/Attachment/index.d.ts +37 -0
  164. package/types/components/Avatar/StyledAvatar.d.ts +15 -15
  165. package/types/components/Avatar/index.d.ts +1 -1
  166. package/types/components/Badge/Status.d.ts +1 -1
  167. package/types/components/Badge/StyledBadge.d.ts +8 -8
  168. package/types/components/Badge/index.d.ts +1 -1
  169. package/types/components/BottomNavigation/StyledBottomNavigation.d.ts +21 -21
  170. package/types/components/BottomSheet/Header.d.ts +1 -1
  171. package/types/components/BottomSheet/StyledBottomSheet.d.ts +22 -22
  172. package/types/components/Box/StyledBox.d.ts +4 -4
  173. package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +7 -7
  174. package/types/components/Button/StyledButton.d.ts +15 -18
  175. package/types/components/Button/UtilityButton/StyledUtilityButton.d.ts +8 -8
  176. package/types/components/Calendar/StyledCalendar.d.ts +25 -25
  177. package/types/components/Calendar/helpers.d.ts +2 -2
  178. package/types/components/Card/DataCard/StyledDataCard.d.ts +6 -6
  179. package/types/components/Card/StyledCard.d.ts +7 -7
  180. package/types/components/Checkbox/StyledCheckbox.d.ts +16 -10
  181. package/types/components/Collapse/StyledCollapse.d.ts +8 -8
  182. package/types/components/ContentNavigator/StyledContentNavigator.d.ts +5 -5
  183. package/types/components/ContentNavigator/index.d.ts +2 -1
  184. package/types/components/DatePicker/StyledDatePicker.d.ts +3 -3
  185. package/types/components/Divider/StyledDivider.d.ts +5 -5
  186. package/types/components/Drawer/StyledDrawer.d.ts +19 -19
  187. package/types/components/Empty/StyledEmpty.d.ts +9 -9
  188. package/types/components/FAB/ActionGroup/StyledActionGroup.d.ts +11 -11
  189. package/types/components/FAB/ActionGroup/StyledActionItem.d.ts +7 -7
  190. package/types/components/FAB/StyledFAB.d.ts +8 -8
  191. package/types/components/Icon/HeroIcon/index.d.ts +3 -3
  192. package/types/components/Icon/IconList.d.ts +1 -1
  193. package/types/components/Icon/index.d.ts +1 -1
  194. package/types/components/Icon/utils.d.ts +1 -1
  195. package/types/components/List/StyledBasicListItem.d.ts +16 -16
  196. package/types/components/List/StyledListItem.d.ts +25 -25
  197. package/types/components/PinInput/StyledPinInput.d.ts +30 -30
  198. package/types/components/Progress/ProgressBar.d.ts +1 -1
  199. package/types/components/Progress/ProgressCircle.d.ts +1 -1
  200. package/types/components/Progress/StyledProgressBar.d.ts +5 -5
  201. package/types/components/Progress/StyledProgressCircle.d.ts +18 -18
  202. package/types/components/Progress/types.d.ts +1 -1
  203. package/types/components/Radio/StyledRadio.d.ts +9 -9
  204. package/types/components/RefreshControl/index.d.ts +1 -2
  205. package/types/components/RichTextEditor/EditorToolbar.d.ts +1 -1
  206. package/types/components/RichTextEditor/MentionList.d.ts +1 -1
  207. package/types/components/RichTextEditor/StyledRichTextEditor.d.ts +6 -6
  208. package/types/components/RichTextEditor/StyledToolbar.d.ts +9 -9
  209. package/types/components/RichTextEditor/index.d.ts +2 -2
  210. package/types/components/SectionHeading/StyledHeading.d.ts +9 -9
  211. package/types/components/Select/MultiSelect/Option.d.ts +1 -1
  212. package/types/components/Select/SingleSelect/Option.d.ts +1 -1
  213. package/types/components/Select/StyledSelect.d.ts +11 -11
  214. package/types/components/Select/helpers.d.ts +1 -1
  215. package/types/components/Spinner/StyledSpinner.d.ts +12 -12
  216. package/types/components/Swipeable/StyledSwipeable.d.ts +3 -3
  217. package/types/components/Swipeable/index.d.ts +7 -3
  218. package/types/components/Switch/SelectorSwitch/Option.d.ts +3 -1
  219. package/types/components/Switch/SelectorSwitch/StyledSelectorSwitch.d.ts +9 -9
  220. package/types/components/Switch/StyledSwitch.d.ts +5 -5
  221. package/types/components/Tabs/StyledScrollableTabs.d.ts +23 -23
  222. package/types/components/Tabs/StyledTabs.d.ts +22 -22
  223. package/types/components/Tag/StyledTag.d.ts +6 -6
  224. package/types/components/TextInput/StyledTextInput.d.ts +44 -44
  225. package/types/components/TextInput/index.d.ts +5 -5
  226. package/types/components/TimePicker/StyledTimePicker.d.ts +3 -3
  227. package/types/components/Toast/StyledToast.d.ts +17 -17
  228. package/types/components/Toolbar/StyledToolbar.d.ts +9 -9
  229. package/types/components/Typography/Text/StyledText.d.ts +3 -3
  230. package/types/index.d.ts +3 -2
  231. package/types/testHelpers/renderWithTheme.d.ts +1 -1
  232. package/types/theme/ThemeSwitcher.d.ts +2 -2
  233. package/types/theme/components/attachment.d.ts +21 -0
  234. package/types/theme/components/badge.d.ts +1 -0
  235. package/types/theme/components/button.d.ts +0 -15
  236. package/types/theme/components/list.d.ts +0 -1
  237. package/types/theme/components/progress.d.ts +1 -0
  238. package/types/theme/components/tabs.d.ts +1 -0
  239. package/types/theme/components/tag.d.ts +2 -2
  240. package/types/theme/components/textInput.d.ts +0 -5
  241. package/types/theme/getTheme.d.ts +2 -0
  242. package/types/theme/global/colors/eBens.d.ts +3 -0
  243. package/types/theme/global/colors/types.d.ts +23 -16
  244. package/types/theme/global/colors/wallet.d.ts +3 -0
  245. package/types/theme/global/index.d.ts +26 -12
  246. package/types/theme/index.d.ts +2 -2
  247. package/types/utils/functions.d.ts +1 -0
  248. package/types/utils/hooks.d.ts +1 -1
@@ -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 {
@@ -224,31 +225,6 @@ Array [
224
225
  ]
225
226
  }
226
227
  >
227
- <View
228
- accessible={true}
229
- collapsable={false}
230
- focusable={true}
231
- onBlur={[Function]}
232
- onClick={[Function]}
233
- onFocus={[Function]}
234
- onResponderGrant={[Function]}
235
- onResponderMove={[Function]}
236
- onResponderRelease={[Function]}
237
- onResponderTerminate={[Function]}
238
- onResponderTerminationRequest={[Function]}
239
- onStartShouldSetResponder={[Function]}
240
- style={
241
- Object {
242
- "backgroundColor": "#001f23",
243
- "bottom": 0,
244
- "left": 0,
245
- "opacity": 0.48,
246
- "position": "absolute",
247
- "right": 0,
248
- "top": 0,
249
- }
250
- }
251
- />
252
228
  <View
253
229
  onLayout={[Function]}
254
230
  style={
@@ -266,6 +242,31 @@ Array [
266
242
  ]
267
243
  }
268
244
  >
245
+ <View
246
+ accessible={true}
247
+ collapsable={false}
248
+ focusable={true}
249
+ onBlur={[Function]}
250
+ onClick={[Function]}
251
+ onFocus={[Function]}
252
+ onResponderGrant={[Function]}
253
+ onResponderMove={[Function]}
254
+ onResponderRelease={[Function]}
255
+ onResponderTerminate={[Function]}
256
+ onResponderTerminationRequest={[Function]}
257
+ onStartShouldSetResponder={[Function]}
258
+ style={
259
+ Object {
260
+ "backgroundColor": "#001f23",
261
+ "bottom": 0,
262
+ "left": 0,
263
+ "opacity": 0.48,
264
+ "position": "absolute",
265
+ "right": 0,
266
+ "top": 0,
267
+ }
268
+ }
269
+ />
269
270
  <RCTSafeAreaView
270
271
  emulateUnlessSupported={true}
271
272
  style={
@@ -446,7 +447,6 @@ Array [
446
447
  onScroll={[Function]}
447
448
  onScrollBeginDrag={[Function]}
448
449
  onScrollEndDrag={[Function]}
449
- onScrollToIndexFailed={[Function]}
450
450
  renderItem={[Function]}
451
451
  scrollEventThrottle={50}
452
452
  stickyHeaderIndices={
@@ -582,11 +582,6 @@ Array [
582
582
  }
583
583
  />
584
584
  <View
585
- accessibilityState={
586
- Object {
587
- "disabled": false,
588
- }
589
- }
590
585
  accessible={true}
591
586
  focusable={true}
592
587
  onClick={[Function]}
@@ -597,17 +592,14 @@ Array [
597
592
  onResponderTerminationRequest={[Function]}
598
593
  onStartShouldSetResponder={[Function]}
599
594
  style={
600
- Array [
601
- Object {
602
- "alignItems": "center",
603
- "backgroundColor": "#ffffff",
604
- "borderRadius": 4,
605
- "flexDirection": "row",
606
- "opacity": 1,
607
- "padding": 16,
608
- },
609
- undefined,
610
- ]
595
+ Object {
596
+ "alignItems": "center",
597
+ "backgroundColor": "#ffffff",
598
+ "borderRadius": 4,
599
+ "flexDirection": "row",
600
+ "opacity": 1,
601
+ "padding": 16,
602
+ }
611
603
  }
612
604
  >
613
605
  <View
@@ -727,11 +719,6 @@ Array [
727
719
  >
728
720
  <View>
729
721
  <View
730
- accessibilityState={
731
- Object {
732
- "disabled": false,
733
- }
734
- }
735
722
  accessible={true}
736
723
  focusable={true}
737
724
  onClick={[Function]}
@@ -742,17 +729,14 @@ Array [
742
729
  onResponderTerminationRequest={[Function]}
743
730
  onStartShouldSetResponder={[Function]}
744
731
  style={
745
- Array [
746
- Object {
747
- "alignItems": "center",
748
- "backgroundColor": "#ffffff",
749
- "borderRadius": 4,
750
- "flexDirection": "row",
751
- "opacity": 1,
752
- "padding": 16,
753
- },
754
- undefined,
755
- ]
732
+ Object {
733
+ "alignItems": "center",
734
+ "backgroundColor": "#ffffff",
735
+ "borderRadius": 4,
736
+ "flexDirection": "row",
737
+ "opacity": 1,
738
+ "padding": 16,
739
+ }
756
740
  }
757
741
  >
758
742
  <View
@@ -987,11 +971,6 @@ Array [
987
971
  }
988
972
  />
989
973
  <View
990
- accessibilityState={
991
- Object {
992
- "disabled": false,
993
- }
994
- }
995
974
  accessible={true}
996
975
  focusable={true}
997
976
  onClick={[Function]}
@@ -1002,17 +981,14 @@ Array [
1002
981
  onResponderTerminationRequest={[Function]}
1003
982
  onStartShouldSetResponder={[Function]}
1004
983
  style={
1005
- Array [
1006
- Object {
1007
- "alignItems": "center",
1008
- "backgroundColor": "#ffffff",
1009
- "borderRadius": 4,
1010
- "flexDirection": "row",
1011
- "opacity": 1,
1012
- "padding": 16,
1013
- },
1014
- undefined,
1015
- ]
984
+ Object {
985
+ "alignItems": "center",
986
+ "backgroundColor": "#ffffff",
987
+ "borderRadius": 4,
988
+ "flexDirection": "row",
989
+ "opacity": 1,
990
+ "padding": 16,
991
+ }
1016
992
  }
1017
993
  >
1018
994
  <View
@@ -1132,11 +1108,6 @@ Array [
1132
1108
  >
1133
1109
  <View>
1134
1110
  <View
1135
- accessibilityState={
1136
- Object {
1137
- "disabled": false,
1138
- }
1139
- }
1140
1111
  accessible={true}
1141
1112
  focusable={true}
1142
1113
  onClick={[Function]}
@@ -1147,17 +1118,14 @@ Array [
1147
1118
  onResponderTerminationRequest={[Function]}
1148
1119
  onStartShouldSetResponder={[Function]}
1149
1120
  style={
1150
- Array [
1151
- Object {
1152
- "alignItems": "center",
1153
- "backgroundColor": "#ffffff",
1154
- "borderRadius": 4,
1155
- "flexDirection": "row",
1156
- "opacity": 1,
1157
- "padding": 16,
1158
- },
1159
- undefined,
1160
- ]
1121
+ Object {
1122
+ "alignItems": "center",
1123
+ "backgroundColor": "#ffffff",
1124
+ "borderRadius": 4,
1125
+ "flexDirection": "row",
1126
+ "opacity": 1,
1127
+ "padding": 16,
1128
+ }
1161
1129
  }
1162
1130
  >
1163
1131
  <View
@@ -1326,7 +1294,7 @@ Array [
1326
1294
  },
1327
1295
  Array [
1328
1296
  Object {
1329
- "color": "#401960",
1297
+ "color": "#795e90",
1330
1298
  },
1331
1299
  undefined,
1332
1300
  ],
@@ -1494,6 +1462,7 @@ Array [
1494
1462
  "flexGrow": 2,
1495
1463
  "fontSize": 14,
1496
1464
  "marginHorizontal": 8,
1465
+ "paddingVertical": 0,
1497
1466
  "textAlignVertical": "center",
1498
1467
  },
1499
1468
  Object {
@@ -1569,32 +1538,6 @@ Array [
1569
1538
  ]
1570
1539
  }
1571
1540
  >
1572
- <View
1573
- accessible={true}
1574
- collapsable={false}
1575
- focusable={true}
1576
- nativeID="animatedComponent"
1577
- onBlur={[Function]}
1578
- onClick={[Function]}
1579
- onFocus={[Function]}
1580
- onResponderGrant={[Function]}
1581
- onResponderMove={[Function]}
1582
- onResponderRelease={[Function]}
1583
- onResponderTerminate={[Function]}
1584
- onResponderTerminationRequest={[Function]}
1585
- onStartShouldSetResponder={[Function]}
1586
- style={
1587
- Object {
1588
- "backgroundColor": "#001f23",
1589
- "bottom": 0,
1590
- "left": 0,
1591
- "opacity": 0.48,
1592
- "position": "absolute",
1593
- "right": 0,
1594
- "top": 0,
1595
- }
1596
- }
1597
- />
1598
1541
  <View
1599
1542
  onLayout={[Function]}
1600
1543
  style={
@@ -1612,6 +1555,32 @@ Array [
1612
1555
  ]
1613
1556
  }
1614
1557
  >
1558
+ <View
1559
+ accessible={true}
1560
+ collapsable={false}
1561
+ focusable={true}
1562
+ nativeID="animatedComponent"
1563
+ onBlur={[Function]}
1564
+ onClick={[Function]}
1565
+ onFocus={[Function]}
1566
+ onResponderGrant={[Function]}
1567
+ onResponderMove={[Function]}
1568
+ onResponderRelease={[Function]}
1569
+ onResponderTerminate={[Function]}
1570
+ onResponderTerminationRequest={[Function]}
1571
+ onStartShouldSetResponder={[Function]}
1572
+ style={
1573
+ Object {
1574
+ "backgroundColor": "#001f23",
1575
+ "bottom": 0,
1576
+ "left": 0,
1577
+ "opacity": 0.48,
1578
+ "position": "absolute",
1579
+ "right": 0,
1580
+ "top": 0,
1581
+ }
1582
+ }
1583
+ />
1615
1584
  <RCTSafeAreaView
1616
1585
  collapsable={false}
1617
1586
  emulateUnlessSupported={true}
@@ -1800,7 +1769,6 @@ Array [
1800
1769
  onScroll={[Function]}
1801
1770
  onScrollBeginDrag={[Function]}
1802
1771
  onScrollEndDrag={[Function]}
1803
- onScrollToIndexFailed={[Function]}
1804
1772
  renderItem={[Function]}
1805
1773
  scrollEventThrottle={50}
1806
1774
  stickyHeaderIndices={
@@ -1874,13 +1842,10 @@ Array [
1874
1842
  }
1875
1843
  />
1876
1844
  <View
1877
- accessibilityState={
1878
- Object {
1879
- "disabled": false,
1880
- }
1881
- }
1882
1845
  accessible={true}
1846
+ collapsable={false}
1883
1847
  focusable={true}
1848
+ nativeID="animatedComponent"
1884
1849
  onClick={[Function]}
1885
1850
  onResponderGrant={[Function]}
1886
1851
  onResponderMove={[Function]}
@@ -1889,19 +1854,15 @@ Array [
1889
1854
  onResponderTerminationRequest={[Function]}
1890
1855
  onStartShouldSetResponder={[Function]}
1891
1856
  style={
1892
- Array [
1893
- Object {
1894
- "alignItems": "center",
1895
- "backgroundColor": "#d9d1df",
1896
- "borderRadius": 4,
1897
- "flexDirection": "row",
1898
- "opacity": 1,
1899
- "padding": 16,
1900
- },
1901
- Object {
1902
- "marginHorizontal": 12,
1903
- },
1904
- ]
1857
+ Object {
1858
+ "alignItems": "center",
1859
+ "backgroundColor": "#ece8ef",
1860
+ "borderRadius": 4,
1861
+ "flexDirection": "row",
1862
+ "marginHorizontal": 12,
1863
+ "opacity": 1,
1864
+ "padding": 16,
1865
+ }
1905
1866
  }
1906
1867
  >
1907
1868
  <View
@@ -1949,13 +1910,13 @@ Array [
1949
1910
  style={
1950
1911
  Array [
1951
1912
  Object {
1952
- "color": "#001f23",
1913
+ "color": "#401960",
1953
1914
  "fontSize": 20,
1954
1915
  },
1955
1916
  undefined,
1956
1917
  ]
1957
1918
  }
1958
- themeIntent="text"
1919
+ themeIntent="primary"
1959
1920
  themeSize="small"
1960
1921
  />
1961
1922
  </View>
@@ -2027,13 +1988,10 @@ Array [
2027
1988
  >
2028
1989
  <View>
2029
1990
  <View
2030
- accessibilityState={
2031
- Object {
2032
- "disabled": false,
2033
- }
2034
- }
2035
1991
  accessible={true}
1992
+ collapsable={false}
2036
1993
  focusable={true}
1994
+ nativeID="animatedComponent"
2037
1995
  onClick={[Function]}
2038
1996
  onResponderGrant={[Function]}
2039
1997
  onResponderMove={[Function]}
@@ -2042,19 +2000,15 @@ Array [
2042
2000
  onResponderTerminationRequest={[Function]}
2043
2001
  onStartShouldSetResponder={[Function]}
2044
2002
  style={
2045
- Array [
2046
- Object {
2047
- "alignItems": "center",
2048
- "backgroundColor": "#d9d1df",
2049
- "borderRadius": 4,
2050
- "flexDirection": "row",
2051
- "opacity": 1,
2052
- "padding": 16,
2053
- },
2054
- Object {
2055
- "marginHorizontal": 12,
2056
- },
2057
- ]
2003
+ Object {
2004
+ "alignItems": "center",
2005
+ "backgroundColor": "#ece8ef",
2006
+ "borderRadius": 4,
2007
+ "flexDirection": "row",
2008
+ "marginHorizontal": 12,
2009
+ "opacity": 1,
2010
+ "padding": 16,
2011
+ }
2058
2012
  }
2059
2013
  >
2060
2014
  <View
@@ -2102,13 +2056,13 @@ Array [
2102
2056
  style={
2103
2057
  Array [
2104
2058
  Object {
2105
- "color": "#001f23",
2059
+ "color": "#401960",
2106
2060
  "fontSize": 20,
2107
2061
  },
2108
2062
  undefined,
2109
2063
  ]
2110
2064
  }
2111
- themeIntent="text"
2065
+ themeIntent="primary"
2112
2066
  themeSize="small"
2113
2067
  />
2114
2068
  </View>
@@ -2180,13 +2134,10 @@ Array [
2180
2134
  >
2181
2135
  <View>
2182
2136
  <View
2183
- accessibilityState={
2184
- Object {
2185
- "disabled": false,
2186
- }
2187
- }
2188
2137
  accessible={true}
2138
+ collapsable={false}
2189
2139
  focusable={true}
2140
+ nativeID="animatedComponent"
2190
2141
  onClick={[Function]}
2191
2142
  onResponderGrant={[Function]}
2192
2143
  onResponderMove={[Function]}
@@ -2195,19 +2146,15 @@ Array [
2195
2146
  onResponderTerminationRequest={[Function]}
2196
2147
  onStartShouldSetResponder={[Function]}
2197
2148
  style={
2198
- Array [
2199
- Object {
2200
- "alignItems": "center",
2201
- "backgroundColor": "#ffffff",
2202
- "borderRadius": 4,
2203
- "flexDirection": "row",
2204
- "opacity": 1,
2205
- "padding": 16,
2206
- },
2207
- Object {
2208
- "marginHorizontal": 12,
2209
- },
2210
- ]
2149
+ Object {
2150
+ "alignItems": "center",
2151
+ "backgroundColor": "#ffffff",
2152
+ "borderRadius": 4,
2153
+ "flexDirection": "row",
2154
+ "marginHorizontal": 12,
2155
+ "opacity": 1,
2156
+ "padding": 16,
2157
+ }
2211
2158
  }
2212
2159
  >
2213
2160
  <View
@@ -2308,13 +2255,10 @@ Array [
2308
2255
  >
2309
2256
  <View>
2310
2257
  <View
2311
- accessibilityState={
2312
- Object {
2313
- "disabled": false,
2314
- }
2315
- }
2316
2258
  accessible={true}
2259
+ collapsable={false}
2317
2260
  focusable={true}
2261
+ nativeID="animatedComponent"
2318
2262
  onClick={[Function]}
2319
2263
  onResponderGrant={[Function]}
2320
2264
  onResponderMove={[Function]}
@@ -2323,19 +2267,15 @@ Array [
2323
2267
  onResponderTerminationRequest={[Function]}
2324
2268
  onStartShouldSetResponder={[Function]}
2325
2269
  style={
2326
- Array [
2327
- Object {
2328
- "alignItems": "center",
2329
- "backgroundColor": "#ffffff",
2330
- "borderRadius": 4,
2331
- "flexDirection": "row",
2332
- "opacity": 1,
2333
- "padding": 16,
2334
- },
2335
- Object {
2336
- "marginHorizontal": 12,
2337
- },
2338
- ]
2270
+ Object {
2271
+ "alignItems": "center",
2272
+ "backgroundColor": "#ffffff",
2273
+ "borderRadius": 4,
2274
+ "flexDirection": "row",
2275
+ "marginHorizontal": 12,
2276
+ "opacity": 1,
2277
+ "padding": 16,
2278
+ }
2339
2279
  }
2340
2280
  >
2341
2281
  <View
@@ -2436,13 +2376,10 @@ Array [
2436
2376
  >
2437
2377
  <View>
2438
2378
  <View
2439
- accessibilityState={
2440
- Object {
2441
- "disabled": false,
2442
- }
2443
- }
2444
2379
  accessible={true}
2380
+ collapsable={false}
2445
2381
  focusable={true}
2382
+ nativeID="animatedComponent"
2446
2383
  onClick={[Function]}
2447
2384
  onResponderGrant={[Function]}
2448
2385
  onResponderMove={[Function]}
@@ -2451,19 +2388,15 @@ Array [
2451
2388
  onResponderTerminationRequest={[Function]}
2452
2389
  onStartShouldSetResponder={[Function]}
2453
2390
  style={
2454
- Array [
2455
- Object {
2456
- "alignItems": "center",
2457
- "backgroundColor": "#ffffff",
2458
- "borderRadius": 4,
2459
- "flexDirection": "row",
2460
- "opacity": 1,
2461
- "padding": 16,
2462
- },
2463
- Object {
2464
- "marginHorizontal": 12,
2465
- },
2466
- ]
2391
+ Object {
2392
+ "alignItems": "center",
2393
+ "backgroundColor": "#ffffff",
2394
+ "borderRadius": 4,
2395
+ "flexDirection": "row",
2396
+ "marginHorizontal": 12,
2397
+ "opacity": 1,
2398
+ "padding": 16,
2399
+ }
2467
2400
  }
2468
2401
  >
2469
2402
  <View
@@ -2564,13 +2497,10 @@ Array [
2564
2497
  >
2565
2498
  <View>
2566
2499
  <View
2567
- accessibilityState={
2568
- Object {
2569
- "disabled": false,
2570
- }
2571
- }
2572
2500
  accessible={true}
2501
+ collapsable={false}
2573
2502
  focusable={true}
2503
+ nativeID="animatedComponent"
2574
2504
  onClick={[Function]}
2575
2505
  onResponderGrant={[Function]}
2576
2506
  onResponderMove={[Function]}
@@ -2579,19 +2509,15 @@ Array [
2579
2509
  onResponderTerminationRequest={[Function]}
2580
2510
  onStartShouldSetResponder={[Function]}
2581
2511
  style={
2582
- Array [
2583
- Object {
2584
- "alignItems": "center",
2585
- "backgroundColor": "#ffffff",
2586
- "borderRadius": 4,
2587
- "flexDirection": "row",
2588
- "opacity": 1,
2589
- "padding": 16,
2590
- },
2591
- Object {
2592
- "marginHorizontal": 12,
2593
- },
2594
- ]
2512
+ Object {
2513
+ "alignItems": "center",
2514
+ "backgroundColor": "#ffffff",
2515
+ "borderRadius": 4,
2516
+ "flexDirection": "row",
2517
+ "marginHorizontal": 12,
2518
+ "opacity": 1,
2519
+ "padding": 16,
2520
+ }
2595
2521
  }
2596
2522
  >
2597
2523
  <View
@@ -2693,13 +2619,10 @@ Array [
2693
2619
  >
2694
2620
  <View>
2695
2621
  <View
2696
- accessibilityState={
2697
- Object {
2698
- "disabled": true,
2699
- }
2700
- }
2701
2622
  accessible={true}
2623
+ collapsable={false}
2702
2624
  focusable={true}
2625
+ nativeID="animatedComponent"
2703
2626
  onClick={[Function]}
2704
2627
  onResponderGrant={[Function]}
2705
2628
  onResponderMove={[Function]}
@@ -2708,19 +2631,15 @@ Array [
2708
2631
  onResponderTerminationRequest={[Function]}
2709
2632
  onStartShouldSetResponder={[Function]}
2710
2633
  style={
2711
- Array [
2712
- Object {
2713
- "alignItems": "center",
2714
- "backgroundColor": "#ffffff",
2715
- "borderRadius": 4,
2716
- "flexDirection": "row",
2717
- "opacity": 0.38,
2718
- "padding": 16,
2719
- },
2720
- Object {
2721
- "marginHorizontal": 12,
2722
- },
2723
- ]
2634
+ Object {
2635
+ "alignItems": "center",
2636
+ "backgroundColor": "#ffffff",
2637
+ "borderRadius": 4,
2638
+ "flexDirection": "row",
2639
+ "marginHorizontal": 12,
2640
+ "opacity": 0.38,
2641
+ "padding": 16,
2642
+ }
2724
2643
  }
2725
2644
  >
2726
2645
  <View
@@ -2874,7 +2793,7 @@ Array [
2874
2793
  },
2875
2794
  Array [
2876
2795
  Object {
2877
- "color": "#401960",
2796
+ "color": "#795e90",
2878
2797
  },
2879
2798
  undefined,
2880
2799
  ],
@@ -3040,6 +2959,7 @@ Array [
3040
2959
  "flexGrow": 2,
3041
2960
  "fontSize": 14,
3042
2961
  "marginHorizontal": 8,
2962
+ "paddingVertical": 0,
3043
2963
  "textAlignVertical": "center",
3044
2964
  },
3045
2965
  Object {
@@ -3115,31 +3035,6 @@ Array [
3115
3035
  ]
3116
3036
  }
3117
3037
  >
3118
- <View
3119
- accessible={true}
3120
- collapsable={false}
3121
- focusable={true}
3122
- onBlur={[Function]}
3123
- onClick={[Function]}
3124
- onFocus={[Function]}
3125
- onResponderGrant={[Function]}
3126
- onResponderMove={[Function]}
3127
- onResponderRelease={[Function]}
3128
- onResponderTerminate={[Function]}
3129
- onResponderTerminationRequest={[Function]}
3130
- onStartShouldSetResponder={[Function]}
3131
- style={
3132
- Object {
3133
- "backgroundColor": "#001f23",
3134
- "bottom": 0,
3135
- "left": 0,
3136
- "opacity": 0.48,
3137
- "position": "absolute",
3138
- "right": 0,
3139
- "top": 0,
3140
- }
3141
- }
3142
- />
3143
3038
  <View
3144
3039
  onLayout={[Function]}
3145
3040
  style={
@@ -3157,6 +3052,31 @@ Array [
3157
3052
  ]
3158
3053
  }
3159
3054
  >
3055
+ <View
3056
+ accessible={true}
3057
+ collapsable={false}
3058
+ focusable={true}
3059
+ onBlur={[Function]}
3060
+ onClick={[Function]}
3061
+ onFocus={[Function]}
3062
+ onResponderGrant={[Function]}
3063
+ onResponderMove={[Function]}
3064
+ onResponderRelease={[Function]}
3065
+ onResponderTerminate={[Function]}
3066
+ onResponderTerminationRequest={[Function]}
3067
+ onStartShouldSetResponder={[Function]}
3068
+ style={
3069
+ Object {
3070
+ "backgroundColor": "#001f23",
3071
+ "bottom": 0,
3072
+ "left": 0,
3073
+ "opacity": 0.48,
3074
+ "position": "absolute",
3075
+ "right": 0,
3076
+ "top": 0,
3077
+ }
3078
+ }
3079
+ />
3160
3080
  <RCTSafeAreaView
3161
3081
  emulateUnlessSupported={true}
3162
3082
  style={
@@ -3341,7 +3261,6 @@ Array [
3341
3261
  onScroll={[Function]}
3342
3262
  onScrollBeginDrag={[Function]}
3343
3263
  onScrollEndDrag={[Function]}
3344
- onScrollToIndexFailed={[Function]}
3345
3264
  renderItem={[Function]}
3346
3265
  scrollEventThrottle={50}
3347
3266
  stickyHeaderIndices={
@@ -3415,11 +3334,6 @@ Array [
3415
3334
  }
3416
3335
  />
3417
3336
  <View
3418
- accessibilityState={
3419
- Object {
3420
- "disabled": false,
3421
- }
3422
- }
3423
3337
  accessible={true}
3424
3338
  focusable={true}
3425
3339
  onClick={[Function]}
@@ -3430,19 +3344,15 @@ Array [
3430
3344
  onResponderTerminationRequest={[Function]}
3431
3345
  onStartShouldSetResponder={[Function]}
3432
3346
  style={
3433
- Array [
3434
- Object {
3435
- "alignItems": "center",
3436
- "backgroundColor": "#d9d1df",
3437
- "borderRadius": 4,
3438
- "flexDirection": "row",
3439
- "opacity": 1,
3440
- "padding": 16,
3441
- },
3442
- Object {
3443
- "marginHorizontal": 12,
3444
- },
3445
- ]
3347
+ Object {
3348
+ "alignItems": "center",
3349
+ "backgroundColor": "#ece8ef",
3350
+ "borderRadius": 4,
3351
+ "flexDirection": "row",
3352
+ "marginHorizontal": 12,
3353
+ "opacity": 1,
3354
+ "padding": 16,
3355
+ }
3446
3356
  }
3447
3357
  >
3448
3358
  <View
@@ -3490,13 +3400,13 @@ Array [
3490
3400
  style={
3491
3401
  Array [
3492
3402
  Object {
3493
- "color": "#001f23",
3403
+ "color": "#401960",
3494
3404
  "fontSize": 20,
3495
3405
  },
3496
3406
  undefined,
3497
3407
  ]
3498
3408
  }
3499
- themeIntent="text"
3409
+ themeIntent="primary"
3500
3410
  themeSize="small"
3501
3411
  />
3502
3412
  </View>
@@ -3568,11 +3478,6 @@ Array [
3568
3478
  >
3569
3479
  <View>
3570
3480
  <View
3571
- accessibilityState={
3572
- Object {
3573
- "disabled": false,
3574
- }
3575
- }
3576
3481
  accessible={true}
3577
3482
  focusable={true}
3578
3483
  onClick={[Function]}
@@ -3583,19 +3488,15 @@ Array [
3583
3488
  onResponderTerminationRequest={[Function]}
3584
3489
  onStartShouldSetResponder={[Function]}
3585
3490
  style={
3586
- Array [
3587
- Object {
3588
- "alignItems": "center",
3589
- "backgroundColor": "#d9d1df",
3590
- "borderRadius": 4,
3591
- "flexDirection": "row",
3592
- "opacity": 1,
3593
- "padding": 16,
3594
- },
3595
- Object {
3596
- "marginHorizontal": 12,
3597
- },
3598
- ]
3491
+ Object {
3492
+ "alignItems": "center",
3493
+ "backgroundColor": "#ece8ef",
3494
+ "borderRadius": 4,
3495
+ "flexDirection": "row",
3496
+ "marginHorizontal": 12,
3497
+ "opacity": 1,
3498
+ "padding": 16,
3499
+ }
3599
3500
  }
3600
3501
  >
3601
3502
  <View
@@ -3643,13 +3544,13 @@ Array [
3643
3544
  style={
3644
3545
  Array [
3645
3546
  Object {
3646
- "color": "#001f23",
3547
+ "color": "#401960",
3647
3548
  "fontSize": 20,
3648
3549
  },
3649
3550
  undefined,
3650
3551
  ]
3651
3552
  }
3652
- themeIntent="text"
3553
+ themeIntent="primary"
3653
3554
  themeSize="small"
3654
3555
  />
3655
3556
  </View>
@@ -3721,11 +3622,6 @@ Array [
3721
3622
  >
3722
3623
  <View>
3723
3624
  <View
3724
- accessibilityState={
3725
- Object {
3726
- "disabled": false,
3727
- }
3728
- }
3729
3625
  accessible={true}
3730
3626
  focusable={true}
3731
3627
  onClick={[Function]}
@@ -3736,19 +3632,15 @@ Array [
3736
3632
  onResponderTerminationRequest={[Function]}
3737
3633
  onStartShouldSetResponder={[Function]}
3738
3634
  style={
3739
- Array [
3740
- Object {
3741
- "alignItems": "center",
3742
- "backgroundColor": "#ffffff",
3743
- "borderRadius": 4,
3744
- "flexDirection": "row",
3745
- "opacity": 1,
3746
- "padding": 16,
3747
- },
3748
- Object {
3749
- "marginHorizontal": 12,
3750
- },
3751
- ]
3635
+ Object {
3636
+ "alignItems": "center",
3637
+ "backgroundColor": "#ffffff",
3638
+ "borderRadius": 4,
3639
+ "flexDirection": "row",
3640
+ "marginHorizontal": 12,
3641
+ "opacity": 1,
3642
+ "padding": 16,
3643
+ }
3752
3644
  }
3753
3645
  >
3754
3646
  <View
@@ -3849,11 +3741,6 @@ Array [
3849
3741
  >
3850
3742
  <View>
3851
3743
  <View
3852
- accessibilityState={
3853
- Object {
3854
- "disabled": false,
3855
- }
3856
- }
3857
3744
  accessible={true}
3858
3745
  focusable={true}
3859
3746
  onClick={[Function]}
@@ -3864,19 +3751,15 @@ Array [
3864
3751
  onResponderTerminationRequest={[Function]}
3865
3752
  onStartShouldSetResponder={[Function]}
3866
3753
  style={
3867
- Array [
3868
- Object {
3869
- "alignItems": "center",
3870
- "backgroundColor": "#ffffff",
3871
- "borderRadius": 4,
3872
- "flexDirection": "row",
3873
- "opacity": 1,
3874
- "padding": 16,
3875
- },
3876
- Object {
3877
- "marginHorizontal": 12,
3878
- },
3879
- ]
3754
+ Object {
3755
+ "alignItems": "center",
3756
+ "backgroundColor": "#ffffff",
3757
+ "borderRadius": 4,
3758
+ "flexDirection": "row",
3759
+ "marginHorizontal": 12,
3760
+ "opacity": 1,
3761
+ "padding": 16,
3762
+ }
3880
3763
  }
3881
3764
  >
3882
3765
  <View
@@ -3977,11 +3860,6 @@ Array [
3977
3860
  >
3978
3861
  <View>
3979
3862
  <View
3980
- accessibilityState={
3981
- Object {
3982
- "disabled": false,
3983
- }
3984
- }
3985
3863
  accessible={true}
3986
3864
  focusable={true}
3987
3865
  onClick={[Function]}
@@ -3992,19 +3870,15 @@ Array [
3992
3870
  onResponderTerminationRequest={[Function]}
3993
3871
  onStartShouldSetResponder={[Function]}
3994
3872
  style={
3995
- Array [
3996
- Object {
3997
- "alignItems": "center",
3998
- "backgroundColor": "#ffffff",
3999
- "borderRadius": 4,
4000
- "flexDirection": "row",
4001
- "opacity": 1,
4002
- "padding": 16,
4003
- },
4004
- Object {
4005
- "marginHorizontal": 12,
4006
- },
4007
- ]
3873
+ Object {
3874
+ "alignItems": "center",
3875
+ "backgroundColor": "#ffffff",
3876
+ "borderRadius": 4,
3877
+ "flexDirection": "row",
3878
+ "marginHorizontal": 12,
3879
+ "opacity": 1,
3880
+ "padding": 16,
3881
+ }
4008
3882
  }
4009
3883
  >
4010
3884
  <View
@@ -4105,11 +3979,6 @@ Array [
4105
3979
  >
4106
3980
  <View>
4107
3981
  <View
4108
- accessibilityState={
4109
- Object {
4110
- "disabled": false,
4111
- }
4112
- }
4113
3982
  accessible={true}
4114
3983
  focusable={true}
4115
3984
  onClick={[Function]}
@@ -4120,19 +3989,15 @@ Array [
4120
3989
  onResponderTerminationRequest={[Function]}
4121
3990
  onStartShouldSetResponder={[Function]}
4122
3991
  style={
4123
- Array [
4124
- Object {
4125
- "alignItems": "center",
4126
- "backgroundColor": "#ffffff",
4127
- "borderRadius": 4,
4128
- "flexDirection": "row",
4129
- "opacity": 1,
4130
- "padding": 16,
4131
- },
4132
- Object {
4133
- "marginHorizontal": 12,
4134
- },
4135
- ]
3992
+ Object {
3993
+ "alignItems": "center",
3994
+ "backgroundColor": "#ffffff",
3995
+ "borderRadius": 4,
3996
+ "flexDirection": "row",
3997
+ "marginHorizontal": 12,
3998
+ "opacity": 1,
3999
+ "padding": 16,
4000
+ }
4136
4001
  }
4137
4002
  >
4138
4003
  <View
@@ -4234,11 +4099,6 @@ Array [
4234
4099
  >
4235
4100
  <View>
4236
4101
  <View
4237
- accessibilityState={
4238
- Object {
4239
- "disabled": true,
4240
- }
4241
- }
4242
4102
  accessible={true}
4243
4103
  focusable={true}
4244
4104
  onClick={[Function]}
@@ -4249,19 +4109,15 @@ Array [
4249
4109
  onResponderTerminationRequest={[Function]}
4250
4110
  onStartShouldSetResponder={[Function]}
4251
4111
  style={
4252
- Array [
4253
- Object {
4254
- "alignItems": "center",
4255
- "backgroundColor": "#ffffff",
4256
- "borderRadius": 4,
4257
- "flexDirection": "row",
4258
- "opacity": 0.38,
4259
- "padding": 16,
4260
- },
4261
- Object {
4262
- "marginHorizontal": 12,
4263
- },
4264
- ]
4112
+ Object {
4113
+ "alignItems": "center",
4114
+ "backgroundColor": "#ffffff",
4115
+ "borderRadius": 4,
4116
+ "flexDirection": "row",
4117
+ "marginHorizontal": 12,
4118
+ "opacity": 0.38,
4119
+ "padding": 16,
4120
+ }
4265
4121
  }
4266
4122
  >
4267
4123
  <View
@@ -4413,7 +4269,7 @@ Array [
4413
4269
  },
4414
4270
  Array [
4415
4271
  Object {
4416
- "color": "#401960",
4272
+ "color": "#795e90",
4417
4273
  },
4418
4274
  undefined,
4419
4275
  ],
@@ -4533,7 +4389,7 @@ Array [
4533
4389
  },
4534
4390
  Array [
4535
4391
  Object {
4536
- "color": "#bfc1c5",
4392
+ "color": "#808f91",
4537
4393
  },
4538
4394
  undefined,
4539
4395
  ],
@@ -4581,6 +4437,7 @@ Array [
4581
4437
  "flexGrow": 2,
4582
4438
  "fontSize": 14,
4583
4439
  "marginHorizontal": 8,
4440
+ "paddingVertical": 0,
4584
4441
  "textAlignVertical": "center",
4585
4442
  },
4586
4443
  Object {
@@ -4670,32 +4527,6 @@ Array [
4670
4527
  ]
4671
4528
  }
4672
4529
  >
4673
- <View
4674
- accessible={true}
4675
- collapsable={false}
4676
- focusable={true}
4677
- nativeID="animatedComponent"
4678
- onBlur={[Function]}
4679
- onClick={[Function]}
4680
- onFocus={[Function]}
4681
- onResponderGrant={[Function]}
4682
- onResponderMove={[Function]}
4683
- onResponderRelease={[Function]}
4684
- onResponderTerminate={[Function]}
4685
- onResponderTerminationRequest={[Function]}
4686
- onStartShouldSetResponder={[Function]}
4687
- style={
4688
- Object {
4689
- "backgroundColor": "#001f23",
4690
- "bottom": 0,
4691
- "left": 0,
4692
- "opacity": 0.48,
4693
- "position": "absolute",
4694
- "right": 0,
4695
- "top": 0,
4696
- }
4697
- }
4698
- />
4699
4530
  <View
4700
4531
  onLayout={[Function]}
4701
4532
  style={
@@ -4713,6 +4544,32 @@ Array [
4713
4544
  ]
4714
4545
  }
4715
4546
  >
4547
+ <View
4548
+ accessible={true}
4549
+ collapsable={false}
4550
+ focusable={true}
4551
+ nativeID="animatedComponent"
4552
+ onBlur={[Function]}
4553
+ onClick={[Function]}
4554
+ onFocus={[Function]}
4555
+ onResponderGrant={[Function]}
4556
+ onResponderMove={[Function]}
4557
+ onResponderRelease={[Function]}
4558
+ onResponderTerminate={[Function]}
4559
+ onResponderTerminationRequest={[Function]}
4560
+ onStartShouldSetResponder={[Function]}
4561
+ style={
4562
+ Object {
4563
+ "backgroundColor": "#001f23",
4564
+ "bottom": 0,
4565
+ "left": 0,
4566
+ "opacity": 0.48,
4567
+ "position": "absolute",
4568
+ "right": 0,
4569
+ "top": 0,
4570
+ }
4571
+ }
4572
+ />
4716
4573
  <RCTSafeAreaView
4717
4574
  collapsable={false}
4718
4575
  emulateUnlessSupported={true}
@@ -4901,7 +4758,6 @@ Array [
4901
4758
  onScroll={[Function]}
4902
4759
  onScrollBeginDrag={[Function]}
4903
4760
  onScrollEndDrag={[Function]}
4904
- onScrollToIndexFailed={[Function]}
4905
4761
  renderItem={[Function]}
4906
4762
  scrollEventThrottle={50}
4907
4763
  stickyHeaderIndices={
@@ -4975,13 +4831,10 @@ Array [
4975
4831
  }
4976
4832
  />
4977
4833
  <View
4978
- accessibilityState={
4979
- Object {
4980
- "disabled": false,
4981
- }
4982
- }
4983
4834
  accessible={true}
4835
+ collapsable={false}
4984
4836
  focusable={true}
4837
+ nativeID="animatedComponent"
4985
4838
  onClick={[Function]}
4986
4839
  onResponderGrant={[Function]}
4987
4840
  onResponderMove={[Function]}
@@ -4990,19 +4843,15 @@ Array [
4990
4843
  onResponderTerminationRequest={[Function]}
4991
4844
  onStartShouldSetResponder={[Function]}
4992
4845
  style={
4993
- Array [
4994
- Object {
4995
- "alignItems": "center",
4996
- "backgroundColor": "#d9d1df",
4997
- "borderRadius": 4,
4998
- "flexDirection": "row",
4999
- "opacity": 1,
5000
- "padding": 16,
5001
- },
5002
- Object {
5003
- "marginHorizontal": 12,
5004
- },
5005
- ]
4846
+ Object {
4847
+ "alignItems": "center",
4848
+ "backgroundColor": "#ece8ef",
4849
+ "borderRadius": 4,
4850
+ "flexDirection": "row",
4851
+ "marginHorizontal": 12,
4852
+ "opacity": 1,
4853
+ "padding": 16,
4854
+ }
5006
4855
  }
5007
4856
  >
5008
4857
  <View
@@ -5050,13 +4899,13 @@ Array [
5050
4899
  style={
5051
4900
  Array [
5052
4901
  Object {
5053
- "color": "#001f23",
4902
+ "color": "#401960",
5054
4903
  "fontSize": 20,
5055
4904
  },
5056
4905
  undefined,
5057
4906
  ]
5058
4907
  }
5059
- themeIntent="text"
4908
+ themeIntent="primary"
5060
4909
  themeSize="small"
5061
4910
  />
5062
4911
  </View>
@@ -5128,13 +4977,10 @@ Array [
5128
4977
  >
5129
4978
  <View>
5130
4979
  <View
5131
- accessibilityState={
5132
- Object {
5133
- "disabled": false,
5134
- }
5135
- }
5136
4980
  accessible={true}
4981
+ collapsable={false}
5137
4982
  focusable={true}
4983
+ nativeID="animatedComponent"
5138
4984
  onClick={[Function]}
5139
4985
  onResponderGrant={[Function]}
5140
4986
  onResponderMove={[Function]}
@@ -5143,19 +4989,15 @@ Array [
5143
4989
  onResponderTerminationRequest={[Function]}
5144
4990
  onStartShouldSetResponder={[Function]}
5145
4991
  style={
5146
- Array [
5147
- Object {
5148
- "alignItems": "center",
5149
- "backgroundColor": "#d9d1df",
5150
- "borderRadius": 4,
5151
- "flexDirection": "row",
5152
- "opacity": 1,
5153
- "padding": 16,
5154
- },
5155
- Object {
5156
- "marginHorizontal": 12,
5157
- },
5158
- ]
4992
+ Object {
4993
+ "alignItems": "center",
4994
+ "backgroundColor": "#ece8ef",
4995
+ "borderRadius": 4,
4996
+ "flexDirection": "row",
4997
+ "marginHorizontal": 12,
4998
+ "opacity": 1,
4999
+ "padding": 16,
5000
+ }
5159
5001
  }
5160
5002
  >
5161
5003
  <View
@@ -5203,13 +5045,13 @@ Array [
5203
5045
  style={
5204
5046
  Array [
5205
5047
  Object {
5206
- "color": "#001f23",
5048
+ "color": "#401960",
5207
5049
  "fontSize": 20,
5208
5050
  },
5209
5051
  undefined,
5210
5052
  ]
5211
5053
  }
5212
- themeIntent="text"
5054
+ themeIntent="primary"
5213
5055
  themeSize="small"
5214
5056
  />
5215
5057
  </View>
@@ -5281,13 +5123,10 @@ Array [
5281
5123
  >
5282
5124
  <View>
5283
5125
  <View
5284
- accessibilityState={
5285
- Object {
5286
- "disabled": false,
5287
- }
5288
- }
5289
5126
  accessible={true}
5127
+ collapsable={false}
5290
5128
  focusable={true}
5129
+ nativeID="animatedComponent"
5291
5130
  onClick={[Function]}
5292
5131
  onResponderGrant={[Function]}
5293
5132
  onResponderMove={[Function]}
@@ -5296,19 +5135,15 @@ Array [
5296
5135
  onResponderTerminationRequest={[Function]}
5297
5136
  onStartShouldSetResponder={[Function]}
5298
5137
  style={
5299
- Array [
5300
- Object {
5301
- "alignItems": "center",
5302
- "backgroundColor": "#ffffff",
5303
- "borderRadius": 4,
5304
- "flexDirection": "row",
5305
- "opacity": 1,
5306
- "padding": 16,
5307
- },
5308
- Object {
5309
- "marginHorizontal": 12,
5310
- },
5311
- ]
5138
+ Object {
5139
+ "alignItems": "center",
5140
+ "backgroundColor": "#ffffff",
5141
+ "borderRadius": 4,
5142
+ "flexDirection": "row",
5143
+ "marginHorizontal": 12,
5144
+ "opacity": 1,
5145
+ "padding": 16,
5146
+ }
5312
5147
  }
5313
5148
  >
5314
5149
  <View
@@ -5409,13 +5244,10 @@ Array [
5409
5244
  >
5410
5245
  <View>
5411
5246
  <View
5412
- accessibilityState={
5413
- Object {
5414
- "disabled": false,
5415
- }
5416
- }
5417
5247
  accessible={true}
5248
+ collapsable={false}
5418
5249
  focusable={true}
5250
+ nativeID="animatedComponent"
5419
5251
  onClick={[Function]}
5420
5252
  onResponderGrant={[Function]}
5421
5253
  onResponderMove={[Function]}
@@ -5424,19 +5256,15 @@ Array [
5424
5256
  onResponderTerminationRequest={[Function]}
5425
5257
  onStartShouldSetResponder={[Function]}
5426
5258
  style={
5427
- Array [
5428
- Object {
5429
- "alignItems": "center",
5430
- "backgroundColor": "#ffffff",
5431
- "borderRadius": 4,
5432
- "flexDirection": "row",
5433
- "opacity": 1,
5434
- "padding": 16,
5435
- },
5436
- Object {
5437
- "marginHorizontal": 12,
5438
- },
5439
- ]
5259
+ Object {
5260
+ "alignItems": "center",
5261
+ "backgroundColor": "#ffffff",
5262
+ "borderRadius": 4,
5263
+ "flexDirection": "row",
5264
+ "marginHorizontal": 12,
5265
+ "opacity": 1,
5266
+ "padding": 16,
5267
+ }
5440
5268
  }
5441
5269
  >
5442
5270
  <View
@@ -5537,13 +5365,10 @@ Array [
5537
5365
  >
5538
5366
  <View>
5539
5367
  <View
5540
- accessibilityState={
5541
- Object {
5542
- "disabled": false,
5543
- }
5544
- }
5545
5368
  accessible={true}
5369
+ collapsable={false}
5546
5370
  focusable={true}
5371
+ nativeID="animatedComponent"
5547
5372
  onClick={[Function]}
5548
5373
  onResponderGrant={[Function]}
5549
5374
  onResponderMove={[Function]}
@@ -5552,19 +5377,15 @@ Array [
5552
5377
  onResponderTerminationRequest={[Function]}
5553
5378
  onStartShouldSetResponder={[Function]}
5554
5379
  style={
5555
- Array [
5556
- Object {
5557
- "alignItems": "center",
5558
- "backgroundColor": "#ffffff",
5559
- "borderRadius": 4,
5560
- "flexDirection": "row",
5561
- "opacity": 1,
5562
- "padding": 16,
5563
- },
5564
- Object {
5565
- "marginHorizontal": 12,
5566
- },
5567
- ]
5380
+ Object {
5381
+ "alignItems": "center",
5382
+ "backgroundColor": "#ffffff",
5383
+ "borderRadius": 4,
5384
+ "flexDirection": "row",
5385
+ "marginHorizontal": 12,
5386
+ "opacity": 1,
5387
+ "padding": 16,
5388
+ }
5568
5389
  }
5569
5390
  >
5570
5391
  <View
@@ -5665,13 +5486,10 @@ Array [
5665
5486
  >
5666
5487
  <View>
5667
5488
  <View
5668
- accessibilityState={
5669
- Object {
5670
- "disabled": false,
5671
- }
5672
- }
5673
5489
  accessible={true}
5490
+ collapsable={false}
5674
5491
  focusable={true}
5492
+ nativeID="animatedComponent"
5675
5493
  onClick={[Function]}
5676
5494
  onResponderGrant={[Function]}
5677
5495
  onResponderMove={[Function]}
@@ -5680,19 +5498,15 @@ Array [
5680
5498
  onResponderTerminationRequest={[Function]}
5681
5499
  onStartShouldSetResponder={[Function]}
5682
5500
  style={
5683
- Array [
5684
- Object {
5685
- "alignItems": "center",
5686
- "backgroundColor": "#ffffff",
5687
- "borderRadius": 4,
5688
- "flexDirection": "row",
5689
- "opacity": 1,
5690
- "padding": 16,
5691
- },
5692
- Object {
5693
- "marginHorizontal": 12,
5694
- },
5695
- ]
5501
+ Object {
5502
+ "alignItems": "center",
5503
+ "backgroundColor": "#ffffff",
5504
+ "borderRadius": 4,
5505
+ "flexDirection": "row",
5506
+ "marginHorizontal": 12,
5507
+ "opacity": 1,
5508
+ "padding": 16,
5509
+ }
5696
5510
  }
5697
5511
  >
5698
5512
  <View
@@ -5794,13 +5608,10 @@ Array [
5794
5608
  >
5795
5609
  <View>
5796
5610
  <View
5797
- accessibilityState={
5798
- Object {
5799
- "disabled": true,
5800
- }
5801
- }
5802
5611
  accessible={true}
5612
+ collapsable={false}
5803
5613
  focusable={true}
5614
+ nativeID="animatedComponent"
5804
5615
  onClick={[Function]}
5805
5616
  onResponderGrant={[Function]}
5806
5617
  onResponderMove={[Function]}
@@ -5809,19 +5620,15 @@ Array [
5809
5620
  onResponderTerminationRequest={[Function]}
5810
5621
  onStartShouldSetResponder={[Function]}
5811
5622
  style={
5812
- Array [
5813
- Object {
5814
- "alignItems": "center",
5815
- "backgroundColor": "#ffffff",
5816
- "borderRadius": 4,
5817
- "flexDirection": "row",
5818
- "opacity": 0.38,
5819
- "padding": 16,
5820
- },
5821
- Object {
5822
- "marginHorizontal": 12,
5823
- },
5824
- ]
5623
+ Object {
5624
+ "alignItems": "center",
5625
+ "backgroundColor": "#ffffff",
5626
+ "borderRadius": 4,
5627
+ "flexDirection": "row",
5628
+ "marginHorizontal": 12,
5629
+ "opacity": 0.38,
5630
+ "padding": 16,
5631
+ }
5825
5632
  }
5826
5633
  >
5827
5634
  <View
@@ -5975,7 +5782,7 @@ Array [
5975
5782
  },
5976
5783
  Array [
5977
5784
  Object {
5978
- "color": "#401960",
5785
+ "color": "#795e90",
5979
5786
  },
5980
5787
  undefined,
5981
5788
  ],
@@ -6141,6 +5948,7 @@ Array [
6141
5948
  "flexGrow": 2,
6142
5949
  "fontSize": 14,
6143
5950
  "marginHorizontal": 8,
5951
+ "paddingVertical": 0,
6144
5952
  "textAlignVertical": "center",
6145
5953
  },
6146
5954
  Object {
@@ -6216,31 +6024,6 @@ Array [
6216
6024
  ]
6217
6025
  }
6218
6026
  >
6219
- <View
6220
- accessible={true}
6221
- collapsable={false}
6222
- focusable={true}
6223
- onBlur={[Function]}
6224
- onClick={[Function]}
6225
- onFocus={[Function]}
6226
- onResponderGrant={[Function]}
6227
- onResponderMove={[Function]}
6228
- onResponderRelease={[Function]}
6229
- onResponderTerminate={[Function]}
6230
- onResponderTerminationRequest={[Function]}
6231
- onStartShouldSetResponder={[Function]}
6232
- style={
6233
- Object {
6234
- "backgroundColor": "#001f23",
6235
- "bottom": 0,
6236
- "left": 0,
6237
- "opacity": 0.48,
6238
- "position": "absolute",
6239
- "right": 0,
6240
- "top": 0,
6241
- }
6242
- }
6243
- />
6244
6027
  <View
6245
6028
  onLayout={[Function]}
6246
6029
  style={
@@ -6258,6 +6041,31 @@ Array [
6258
6041
  ]
6259
6042
  }
6260
6043
  >
6044
+ <View
6045
+ accessible={true}
6046
+ collapsable={false}
6047
+ focusable={true}
6048
+ onBlur={[Function]}
6049
+ onClick={[Function]}
6050
+ onFocus={[Function]}
6051
+ onResponderGrant={[Function]}
6052
+ onResponderMove={[Function]}
6053
+ onResponderRelease={[Function]}
6054
+ onResponderTerminate={[Function]}
6055
+ onResponderTerminationRequest={[Function]}
6056
+ onStartShouldSetResponder={[Function]}
6057
+ style={
6058
+ Object {
6059
+ "backgroundColor": "#001f23",
6060
+ "bottom": 0,
6061
+ "left": 0,
6062
+ "opacity": 0.48,
6063
+ "position": "absolute",
6064
+ "right": 0,
6065
+ "top": 0,
6066
+ }
6067
+ }
6068
+ />
6261
6069
  <RCTSafeAreaView
6262
6070
  emulateUnlessSupported={true}
6263
6071
  style={
@@ -6430,7 +6238,6 @@ Array [
6430
6238
  onScroll={[Function]}
6431
6239
  onScrollBeginDrag={[Function]}
6432
6240
  onScrollEndDrag={[Function]}
6433
- onScrollToIndexFailed={[Function]}
6434
6241
  renderItem={[Function]}
6435
6242
  scrollEventThrottle={50}
6436
6243
  stickyHeaderIndices={
@@ -6557,11 +6364,6 @@ Array [
6557
6364
  }
6558
6365
  />
6559
6366
  <View
6560
- accessibilityState={
6561
- Object {
6562
- "disabled": false,
6563
- }
6564
- }
6565
6367
  accessible={true}
6566
6368
  focusable={true}
6567
6369
  onClick={[Function]}
@@ -6572,19 +6374,15 @@ Array [
6572
6374
  onResponderTerminationRequest={[Function]}
6573
6375
  onStartShouldSetResponder={[Function]}
6574
6376
  style={
6575
- Array [
6576
- Object {
6577
- "alignItems": "center",
6578
- "backgroundColor": "#ffffff",
6579
- "borderRadius": 4,
6580
- "flexDirection": "row",
6581
- "opacity": 1,
6582
- "padding": 16,
6583
- },
6584
- Object {
6585
- "marginHorizontal": 12,
6586
- },
6587
- ]
6377
+ Object {
6378
+ "alignItems": "center",
6379
+ "backgroundColor": "#ffffff",
6380
+ "borderRadius": 4,
6381
+ "flexDirection": "row",
6382
+ "marginHorizontal": 12,
6383
+ "opacity": 1,
6384
+ "padding": 16,
6385
+ }
6588
6386
  }
6589
6387
  >
6590
6388
  <View
@@ -6782,11 +6580,6 @@ Array [
6782
6580
  }
6783
6581
  />
6784
6582
  <View
6785
- accessibilityState={
6786
- Object {
6787
- "disabled": false,
6788
- }
6789
- }
6790
6583
  accessible={true}
6791
6584
  focusable={true}
6792
6585
  onClick={[Function]}
@@ -6797,19 +6590,15 @@ Array [
6797
6590
  onResponderTerminationRequest={[Function]}
6798
6591
  onStartShouldSetResponder={[Function]}
6799
6592
  style={
6800
- Array [
6801
- Object {
6802
- "alignItems": "center",
6803
- "backgroundColor": "#d9d1df",
6804
- "borderRadius": 4,
6805
- "flexDirection": "row",
6806
- "opacity": 1,
6807
- "padding": 16,
6808
- },
6809
- Object {
6810
- "marginHorizontal": 12,
6811
- },
6812
- ]
6593
+ Object {
6594
+ "alignItems": "center",
6595
+ "backgroundColor": "#ece8ef",
6596
+ "borderRadius": 4,
6597
+ "flexDirection": "row",
6598
+ "marginHorizontal": 12,
6599
+ "opacity": 1,
6600
+ "padding": 16,
6601
+ }
6813
6602
  }
6814
6603
  >
6815
6604
  <View
@@ -6857,13 +6646,13 @@ Array [
6857
6646
  style={
6858
6647
  Array [
6859
6648
  Object {
6860
- "color": "#001f23",
6649
+ "color": "#401960",
6861
6650
  "fontSize": 20,
6862
6651
  },
6863
6652
  undefined,
6864
6653
  ]
6865
6654
  }
6866
- themeIntent="text"
6655
+ themeIntent="primary"
6867
6656
  themeSize="small"
6868
6657
  />
6869
6658
  </View>
@@ -6925,11 +6714,6 @@ Array [
6925
6714
  >
6926
6715
  <View>
6927
6716
  <View
6928
- accessibilityState={
6929
- Object {
6930
- "disabled": false,
6931
- }
6932
- }
6933
6717
  accessible={true}
6934
6718
  focusable={true}
6935
6719
  onClick={[Function]}
@@ -6940,19 +6724,15 @@ Array [
6940
6724
  onResponderTerminationRequest={[Function]}
6941
6725
  onStartShouldSetResponder={[Function]}
6942
6726
  style={
6943
- Array [
6944
- Object {
6945
- "alignItems": "center",
6946
- "backgroundColor": "#d9d1df",
6947
- "borderRadius": 4,
6948
- "flexDirection": "row",
6949
- "opacity": 1,
6950
- "padding": 16,
6951
- },
6952
- Object {
6953
- "marginHorizontal": 12,
6954
- },
6955
- ]
6727
+ Object {
6728
+ "alignItems": "center",
6729
+ "backgroundColor": "#ece8ef",
6730
+ "borderRadius": 4,
6731
+ "flexDirection": "row",
6732
+ "marginHorizontal": 12,
6733
+ "opacity": 1,
6734
+ "padding": 16,
6735
+ }
6956
6736
  }
6957
6737
  >
6958
6738
  <View
@@ -7000,13 +6780,13 @@ Array [
7000
6780
  style={
7001
6781
  Array [
7002
6782
  Object {
7003
- "color": "#001f23",
6783
+ "color": "#401960",
7004
6784
  "fontSize": 20,
7005
6785
  },
7006
6786
  undefined,
7007
6787
  ]
7008
6788
  }
7009
- themeIntent="text"
6789
+ themeIntent="primary"
7010
6790
  themeSize="small"
7011
6791
  />
7012
6792
  </View>
@@ -7118,7 +6898,7 @@ Array [
7118
6898
  },
7119
6899
  Array [
7120
6900
  Object {
7121
- "color": "#401960",
6901
+ "color": "#795e90",
7122
6902
  },
7123
6903
  undefined,
7124
6904
  ],