@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
@@ -53,7 +53,6 @@ exports[`OptionList render isLoading correctly 1`] = `
53
53
  onScroll={[Function]}
54
54
  onScrollBeginDrag={[Function]}
55
55
  onScrollEndDrag={[Function]}
56
- onScrollToIndexFailed={[Function]}
57
56
  renderItem={[Function]}
58
57
  scrollEventThrottle={50}
59
58
  stickyHeaderIndices={
@@ -180,13 +179,10 @@ exports[`OptionList render isLoading correctly 1`] = `
180
179
  }
181
180
  />
182
181
  <View
183
- accessibilityState={
184
- Object {
185
- "disabled": false,
186
- }
187
- }
188
182
  accessible={true}
183
+ collapsable={false}
189
184
  focusable={true}
185
+ nativeID="animatedComponent"
190
186
  onClick={[Function]}
191
187
  onResponderGrant={[Function]}
192
188
  onResponderMove={[Function]}
@@ -195,19 +191,15 @@ exports[`OptionList render isLoading correctly 1`] = `
195
191
  onResponderTerminationRequest={[Function]}
196
192
  onStartShouldSetResponder={[Function]}
197
193
  style={
198
- Array [
199
- Object {
200
- "alignItems": "center",
201
- "backgroundColor": "#d9d1df",
202
- "borderRadius": 4,
203
- "flexDirection": "row",
204
- "opacity": 1,
205
- "padding": 16,
206
- },
207
- Object {
208
- "marginHorizontal": 12,
209
- },
210
- ]
194
+ Object {
195
+ "alignItems": "center",
196
+ "backgroundColor": "#ece8ef",
197
+ "borderRadius": 4,
198
+ "flexDirection": "row",
199
+ "marginHorizontal": 12,
200
+ "opacity": 1,
201
+ "padding": 16,
202
+ }
211
203
  }
212
204
  >
213
205
  <View
@@ -255,13 +247,13 @@ exports[`OptionList render isLoading correctly 1`] = `
255
247
  style={
256
248
  Array [
257
249
  Object {
258
- "color": "#001f23",
250
+ "color": "#401960",
259
251
  "fontSize": 20,
260
252
  },
261
253
  undefined,
262
254
  ]
263
255
  }
264
- themeIntent="text"
256
+ themeIntent="primary"
265
257
  themeSize="small"
266
258
  />
267
259
  </View>
@@ -430,13 +422,10 @@ exports[`OptionList render isLoading correctly 1`] = `
430
422
  }
431
423
  />
432
424
  <View
433
- accessibilityState={
434
- Object {
435
- "disabled": false,
436
- }
437
- }
438
425
  accessible={true}
426
+ collapsable={false}
439
427
  focusable={true}
428
+ nativeID="animatedComponent"
440
429
  onClick={[Function]}
441
430
  onResponderGrant={[Function]}
442
431
  onResponderMove={[Function]}
@@ -445,19 +434,15 @@ exports[`OptionList render isLoading correctly 1`] = `
445
434
  onResponderTerminationRequest={[Function]}
446
435
  onStartShouldSetResponder={[Function]}
447
436
  style={
448
- Array [
449
- Object {
450
- "alignItems": "center",
451
- "backgroundColor": "#ffffff",
452
- "borderRadius": 4,
453
- "flexDirection": "row",
454
- "opacity": 1,
455
- "padding": 16,
456
- },
457
- Object {
458
- "marginHorizontal": 12,
459
- },
460
- ]
437
+ Object {
438
+ "alignItems": "center",
439
+ "backgroundColor": "#ffffff",
440
+ "borderRadius": 4,
441
+ "flexDirection": "row",
442
+ "marginHorizontal": 12,
443
+ "opacity": 1,
444
+ "padding": 16,
445
+ }
461
446
  }
462
447
  >
463
448
  <View
@@ -548,13 +533,10 @@ exports[`OptionList render isLoading correctly 1`] = `
548
533
  >
549
534
  <View>
550
535
  <View
551
- accessibilityState={
552
- Object {
553
- "disabled": false,
554
- }
555
- }
556
536
  accessible={true}
537
+ collapsable={false}
557
538
  focusable={true}
539
+ nativeID="animatedComponent"
558
540
  onClick={[Function]}
559
541
  onResponderGrant={[Function]}
560
542
  onResponderMove={[Function]}
@@ -563,19 +545,15 @@ exports[`OptionList render isLoading correctly 1`] = `
563
545
  onResponderTerminationRequest={[Function]}
564
546
  onStartShouldSetResponder={[Function]}
565
547
  style={
566
- Array [
567
- Object {
568
- "alignItems": "center",
569
- "backgroundColor": "#ffffff",
570
- "borderRadius": 4,
571
- "flexDirection": "row",
572
- "opacity": 1,
573
- "padding": 16,
574
- },
575
- Object {
576
- "marginHorizontal": 12,
577
- },
578
- ]
548
+ Object {
549
+ "alignItems": "center",
550
+ "backgroundColor": "#ffffff",
551
+ "borderRadius": 4,
552
+ "flexDirection": "row",
553
+ "marginHorizontal": 12,
554
+ "opacity": 1,
555
+ "padding": 16,
556
+ }
579
557
  }
580
558
  >
581
559
  <View
@@ -724,7 +702,7 @@ exports[`OptionList render isLoading correctly 1`] = `
724
702
  style={
725
703
  Array [
726
704
  Object {
727
- "backgroundColor": "#001f23",
705
+ "backgroundColor": "#401960",
728
706
  "borderRadius": 999,
729
707
  "height": 16,
730
708
  "opacity": 0.9,
@@ -743,7 +721,7 @@ exports[`OptionList render isLoading correctly 1`] = `
743
721
  style={
744
722
  Array [
745
723
  Object {
746
- "backgroundColor": "#001f23",
724
+ "backgroundColor": "#401960",
747
725
  "borderRadius": 999,
748
726
  "height": 16,
749
727
  "marginLeft": 8,
@@ -779,7 +757,7 @@ exports[`OptionList render isLoading correctly 1`] = `
779
757
  style={
780
758
  Array [
781
759
  Object {
782
- "backgroundColor": "#001f23",
760
+ "backgroundColor": "#401960",
783
761
  "borderRadius": 999,
784
762
  "height": 16,
785
763
  "opacity": 0.45,
@@ -798,7 +776,7 @@ exports[`OptionList render isLoading correctly 1`] = `
798
776
  style={
799
777
  Array [
800
778
  Object {
801
- "backgroundColor": "#001f23",
779
+ "backgroundColor": "#401960",
802
780
  "borderRadius": 999,
803
781
  "height": 16,
804
782
  "marginLeft": 8,
@@ -863,7 +841,6 @@ exports[`OptionList renders correctly 1`] = `
863
841
  onScroll={[Function]}
864
842
  onScrollBeginDrag={[Function]}
865
843
  onScrollEndDrag={[Function]}
866
- onScrollToIndexFailed={[Function]}
867
844
  renderItem={[Function]}
868
845
  scrollEventThrottle={50}
869
846
  stickyHeaderIndices={
@@ -990,13 +967,10 @@ exports[`OptionList renders correctly 1`] = `
990
967
  }
991
968
  />
992
969
  <View
993
- accessibilityState={
994
- Object {
995
- "disabled": false,
996
- }
997
- }
998
970
  accessible={true}
971
+ collapsable={false}
999
972
  focusable={true}
973
+ nativeID="animatedComponent"
1000
974
  onClick={[Function]}
1001
975
  onResponderGrant={[Function]}
1002
976
  onResponderMove={[Function]}
@@ -1005,19 +979,15 @@ exports[`OptionList renders correctly 1`] = `
1005
979
  onResponderTerminationRequest={[Function]}
1006
980
  onStartShouldSetResponder={[Function]}
1007
981
  style={
1008
- Array [
1009
- Object {
1010
- "alignItems": "center",
1011
- "backgroundColor": "#d9d1df",
1012
- "borderRadius": 4,
1013
- "flexDirection": "row",
1014
- "opacity": 1,
1015
- "padding": 16,
1016
- },
1017
- Object {
1018
- "marginHorizontal": 12,
1019
- },
1020
- ]
982
+ Object {
983
+ "alignItems": "center",
984
+ "backgroundColor": "#ece8ef",
985
+ "borderRadius": 4,
986
+ "flexDirection": "row",
987
+ "marginHorizontal": 12,
988
+ "opacity": 1,
989
+ "padding": 16,
990
+ }
1021
991
  }
1022
992
  >
1023
993
  <View
@@ -1065,13 +1035,13 @@ exports[`OptionList renders correctly 1`] = `
1065
1035
  style={
1066
1036
  Array [
1067
1037
  Object {
1068
- "color": "#001f23",
1038
+ "color": "#401960",
1069
1039
  "fontSize": 20,
1070
1040
  },
1071
1041
  undefined,
1072
1042
  ]
1073
1043
  }
1074
- themeIntent="text"
1044
+ themeIntent="primary"
1075
1045
  themeSize="small"
1076
1046
  />
1077
1047
  </View>
@@ -1240,13 +1210,10 @@ exports[`OptionList renders correctly 1`] = `
1240
1210
  }
1241
1211
  />
1242
1212
  <View
1243
- accessibilityState={
1244
- Object {
1245
- "disabled": false,
1246
- }
1247
- }
1248
1213
  accessible={true}
1214
+ collapsable={false}
1249
1215
  focusable={true}
1216
+ nativeID="animatedComponent"
1250
1217
  onClick={[Function]}
1251
1218
  onResponderGrant={[Function]}
1252
1219
  onResponderMove={[Function]}
@@ -1255,19 +1222,15 @@ exports[`OptionList renders correctly 1`] = `
1255
1222
  onResponderTerminationRequest={[Function]}
1256
1223
  onStartShouldSetResponder={[Function]}
1257
1224
  style={
1258
- Array [
1259
- Object {
1260
- "alignItems": "center",
1261
- "backgroundColor": "#ffffff",
1262
- "borderRadius": 4,
1263
- "flexDirection": "row",
1264
- "opacity": 1,
1265
- "padding": 16,
1266
- },
1267
- Object {
1268
- "marginHorizontal": 12,
1269
- },
1270
- ]
1225
+ Object {
1226
+ "alignItems": "center",
1227
+ "backgroundColor": "#ffffff",
1228
+ "borderRadius": 4,
1229
+ "flexDirection": "row",
1230
+ "marginHorizontal": 12,
1231
+ "opacity": 1,
1232
+ "padding": 16,
1233
+ }
1271
1234
  }
1272
1235
  >
1273
1236
  <View
@@ -1358,13 +1321,10 @@ exports[`OptionList renders correctly 1`] = `
1358
1321
  >
1359
1322
  <View>
1360
1323
  <View
1361
- accessibilityState={
1362
- Object {
1363
- "disabled": false,
1364
- }
1365
- }
1366
1324
  accessible={true}
1325
+ collapsable={false}
1367
1326
  focusable={true}
1327
+ nativeID="animatedComponent"
1368
1328
  onClick={[Function]}
1369
1329
  onResponderGrant={[Function]}
1370
1330
  onResponderMove={[Function]}
@@ -1373,19 +1333,15 @@ exports[`OptionList renders correctly 1`] = `
1373
1333
  onResponderTerminationRequest={[Function]}
1374
1334
  onStartShouldSetResponder={[Function]}
1375
1335
  style={
1376
- Array [
1377
- Object {
1378
- "alignItems": "center",
1379
- "backgroundColor": "#ffffff",
1380
- "borderRadius": 4,
1381
- "flexDirection": "row",
1382
- "opacity": 1,
1383
- "padding": 16,
1384
- },
1385
- Object {
1386
- "marginHorizontal": 12,
1387
- },
1388
- ]
1336
+ Object {
1337
+ "alignItems": "center",
1338
+ "backgroundColor": "#ffffff",
1339
+ "borderRadius": 4,
1340
+ "flexDirection": "row",
1341
+ "marginHorizontal": 12,
1342
+ "opacity": 1,
1343
+ "padding": 16,
1344
+ }
1389
1345
  }
1390
1346
  >
1391
1347
  <View
@@ -1513,7 +1469,6 @@ exports[`OptionList trigger onPress correctly on changing selection 1`] = `
1513
1469
  onScroll={[Function]}
1514
1470
  onScrollBeginDrag={[Function]}
1515
1471
  onScrollEndDrag={[Function]}
1516
- onScrollToIndexFailed={[Function]}
1517
1472
  renderItem={[Function]}
1518
1473
  scrollEventThrottle={50}
1519
1474
  stickyHeaderIndices={
@@ -1640,13 +1595,10 @@ exports[`OptionList trigger onPress correctly on changing selection 1`] = `
1640
1595
  }
1641
1596
  />
1642
1597
  <View
1643
- accessibilityState={
1644
- Object {
1645
- "disabled": false,
1646
- }
1647
- }
1648
1598
  accessible={true}
1599
+ collapsable={false}
1649
1600
  focusable={true}
1601
+ nativeID="animatedComponent"
1650
1602
  onClick={[Function]}
1651
1603
  onResponderGrant={[Function]}
1652
1604
  onResponderMove={[Function]}
@@ -1655,19 +1607,15 @@ exports[`OptionList trigger onPress correctly on changing selection 1`] = `
1655
1607
  onResponderTerminationRequest={[Function]}
1656
1608
  onStartShouldSetResponder={[Function]}
1657
1609
  style={
1658
- Array [
1659
- Object {
1660
- "alignItems": "center",
1661
- "backgroundColor": "#d9d1df",
1662
- "borderRadius": 4,
1663
- "flexDirection": "row",
1664
- "opacity": 1,
1665
- "padding": 16,
1666
- },
1667
- Object {
1668
- "marginHorizontal": 12,
1669
- },
1670
- ]
1610
+ Object {
1611
+ "alignItems": "center",
1612
+ "backgroundColor": "#ece8ef",
1613
+ "borderRadius": 4,
1614
+ "flexDirection": "row",
1615
+ "marginHorizontal": 12,
1616
+ "opacity": 1,
1617
+ "padding": 16,
1618
+ }
1671
1619
  }
1672
1620
  >
1673
1621
  <View
@@ -1715,13 +1663,13 @@ exports[`OptionList trigger onPress correctly on changing selection 1`] = `
1715
1663
  style={
1716
1664
  Array [
1717
1665
  Object {
1718
- "color": "#001f23",
1666
+ "color": "#401960",
1719
1667
  "fontSize": 20,
1720
1668
  },
1721
1669
  undefined,
1722
1670
  ]
1723
1671
  }
1724
- themeIntent="text"
1672
+ themeIntent="primary"
1725
1673
  themeSize="small"
1726
1674
  />
1727
1675
  </View>
@@ -1890,13 +1838,10 @@ exports[`OptionList trigger onPress correctly on changing selection 1`] = `
1890
1838
  }
1891
1839
  />
1892
1840
  <View
1893
- accessibilityState={
1894
- Object {
1895
- "disabled": false,
1896
- }
1897
- }
1898
1841
  accessible={true}
1842
+ collapsable={false}
1899
1843
  focusable={true}
1844
+ nativeID="animatedComponent"
1900
1845
  onClick={[Function]}
1901
1846
  onResponderGrant={[Function]}
1902
1847
  onResponderMove={[Function]}
@@ -1905,19 +1850,15 @@ exports[`OptionList trigger onPress correctly on changing selection 1`] = `
1905
1850
  onResponderTerminationRequest={[Function]}
1906
1851
  onStartShouldSetResponder={[Function]}
1907
1852
  style={
1908
- Array [
1909
- Object {
1910
- "alignItems": "center",
1911
- "backgroundColor": "#d9d1df",
1912
- "borderRadius": 4,
1913
- "flexDirection": "row",
1914
- "opacity": 1,
1915
- "padding": 16,
1916
- },
1917
- Object {
1918
- "marginHorizontal": 12,
1919
- },
1920
- ]
1853
+ Object {
1854
+ "alignItems": "center",
1855
+ "backgroundColor": "#ece8ef",
1856
+ "borderRadius": 4,
1857
+ "flexDirection": "row",
1858
+ "marginHorizontal": 12,
1859
+ "opacity": 1,
1860
+ "padding": 16,
1861
+ }
1921
1862
  }
1922
1863
  >
1923
1864
  <View
@@ -1965,13 +1906,13 @@ exports[`OptionList trigger onPress correctly on changing selection 1`] = `
1965
1906
  style={
1966
1907
  Array [
1967
1908
  Object {
1968
- "color": "#001f23",
1909
+ "color": "#401960",
1969
1910
  "fontSize": 20,
1970
1911
  },
1971
1912
  undefined,
1972
1913
  ]
1973
1914
  }
1974
- themeIntent="text"
1915
+ themeIntent="primary"
1975
1916
  themeSize="small"
1976
1917
  />
1977
1918
  </View>
@@ -2033,13 +1974,10 @@ exports[`OptionList trigger onPress correctly on changing selection 1`] = `
2033
1974
  >
2034
1975
  <View>
2035
1976
  <View
2036
- accessibilityState={
2037
- Object {
2038
- "disabled": false,
2039
- }
2040
- }
2041
1977
  accessible={true}
1978
+ collapsable={false}
2042
1979
  focusable={true}
1980
+ nativeID="animatedComponent"
2043
1981
  onClick={[Function]}
2044
1982
  onResponderGrant={[Function]}
2045
1983
  onResponderMove={[Function]}
@@ -2048,19 +1986,15 @@ exports[`OptionList trigger onPress correctly on changing selection 1`] = `
2048
1986
  onResponderTerminationRequest={[Function]}
2049
1987
  onStartShouldSetResponder={[Function]}
2050
1988
  style={
2051
- Array [
2052
- Object {
2053
- "alignItems": "center",
2054
- "backgroundColor": "#ffffff",
2055
- "borderRadius": 4,
2056
- "flexDirection": "row",
2057
- "opacity": 1,
2058
- "padding": 16,
2059
- },
2060
- Object {
2061
- "marginHorizontal": 12,
2062
- },
2063
- ]
1989
+ Object {
1990
+ "alignItems": "center",
1991
+ "backgroundColor": "#ffffff",
1992
+ "borderRadius": 4,
1993
+ "flexDirection": "row",
1994
+ "marginHorizontal": 12,
1995
+ "opacity": 1,
1996
+ "padding": 16,
1997
+ }
2064
1998
  }
2065
1999
  >
2066
2000
  <View
@@ -2188,7 +2122,6 @@ exports[`OptionList trigger onPress correctly on select additional value 1`] = `
2188
2122
  onScroll={[Function]}
2189
2123
  onScrollBeginDrag={[Function]}
2190
2124
  onScrollEndDrag={[Function]}
2191
- onScrollToIndexFailed={[Function]}
2192
2125
  renderItem={[Function]}
2193
2126
  scrollEventThrottle={50}
2194
2127
  stickyHeaderIndices={
@@ -2315,13 +2248,10 @@ exports[`OptionList trigger onPress correctly on select additional value 1`] = `
2315
2248
  }
2316
2249
  />
2317
2250
  <View
2318
- accessibilityState={
2319
- Object {
2320
- "disabled": false,
2321
- }
2322
- }
2323
2251
  accessible={true}
2252
+ collapsable={false}
2324
2253
  focusable={true}
2254
+ nativeID="animatedComponent"
2325
2255
  onClick={[Function]}
2326
2256
  onResponderGrant={[Function]}
2327
2257
  onResponderMove={[Function]}
@@ -2330,19 +2260,15 @@ exports[`OptionList trigger onPress correctly on select additional value 1`] = `
2330
2260
  onResponderTerminationRequest={[Function]}
2331
2261
  onStartShouldSetResponder={[Function]}
2332
2262
  style={
2333
- Array [
2334
- Object {
2335
- "alignItems": "center",
2336
- "backgroundColor": "#d9d1df",
2337
- "borderRadius": 4,
2338
- "flexDirection": "row",
2339
- "opacity": 1,
2340
- "padding": 16,
2341
- },
2342
- Object {
2343
- "marginHorizontal": 12,
2344
- },
2345
- ]
2263
+ Object {
2264
+ "alignItems": "center",
2265
+ "backgroundColor": "#ece8ef",
2266
+ "borderRadius": 4,
2267
+ "flexDirection": "row",
2268
+ "marginHorizontal": 12,
2269
+ "opacity": 1,
2270
+ "padding": 16,
2271
+ }
2346
2272
  }
2347
2273
  >
2348
2274
  <View
@@ -2390,13 +2316,13 @@ exports[`OptionList trigger onPress correctly on select additional value 1`] = `
2390
2316
  style={
2391
2317
  Array [
2392
2318
  Object {
2393
- "color": "#001f23",
2319
+ "color": "#401960",
2394
2320
  "fontSize": 20,
2395
2321
  },
2396
2322
  undefined,
2397
2323
  ]
2398
2324
  }
2399
- themeIntent="text"
2325
+ themeIntent="primary"
2400
2326
  themeSize="small"
2401
2327
  />
2402
2328
  </View>
@@ -2565,13 +2491,10 @@ exports[`OptionList trigger onPress correctly on select additional value 1`] = `
2565
2491
  }
2566
2492
  />
2567
2493
  <View
2568
- accessibilityState={
2569
- Object {
2570
- "disabled": false,
2571
- }
2572
- }
2573
2494
  accessible={true}
2495
+ collapsable={false}
2574
2496
  focusable={true}
2497
+ nativeID="animatedComponent"
2575
2498
  onClick={[Function]}
2576
2499
  onResponderGrant={[Function]}
2577
2500
  onResponderMove={[Function]}
@@ -2580,19 +2503,15 @@ exports[`OptionList trigger onPress correctly on select additional value 1`] = `
2580
2503
  onResponderTerminationRequest={[Function]}
2581
2504
  onStartShouldSetResponder={[Function]}
2582
2505
  style={
2583
- Array [
2584
- Object {
2585
- "alignItems": "center",
2586
- "backgroundColor": "#ffffff",
2587
- "borderRadius": 4,
2588
- "flexDirection": "row",
2589
- "opacity": 1,
2590
- "padding": 16,
2591
- },
2592
- Object {
2593
- "marginHorizontal": 12,
2594
- },
2595
- ]
2506
+ Object {
2507
+ "alignItems": "center",
2508
+ "backgroundColor": "#ffffff",
2509
+ "borderRadius": 4,
2510
+ "flexDirection": "row",
2511
+ "marginHorizontal": 12,
2512
+ "opacity": 1,
2513
+ "padding": 16,
2514
+ }
2596
2515
  }
2597
2516
  >
2598
2517
  <View
@@ -2683,13 +2602,10 @@ exports[`OptionList trigger onPress correctly on select additional value 1`] = `
2683
2602
  >
2684
2603
  <View>
2685
2604
  <View
2686
- accessibilityState={
2687
- Object {
2688
- "disabled": false,
2689
- }
2690
- }
2691
2605
  accessible={true}
2606
+ collapsable={false}
2692
2607
  focusable={true}
2608
+ nativeID="animatedComponent"
2693
2609
  onClick={[Function]}
2694
2610
  onResponderGrant={[Function]}
2695
2611
  onResponderMove={[Function]}
@@ -2698,19 +2614,15 @@ exports[`OptionList trigger onPress correctly on select additional value 1`] = `
2698
2614
  onResponderTerminationRequest={[Function]}
2699
2615
  onStartShouldSetResponder={[Function]}
2700
2616
  style={
2701
- Array [
2702
- Object {
2703
- "alignItems": "center",
2704
- "backgroundColor": "#ffffff",
2705
- "borderRadius": 4,
2706
- "flexDirection": "row",
2707
- "opacity": 1,
2708
- "padding": 16,
2709
- },
2710
- Object {
2711
- "marginHorizontal": 12,
2712
- },
2713
- ]
2617
+ Object {
2618
+ "alignItems": "center",
2619
+ "backgroundColor": "#ffffff",
2620
+ "borderRadius": 4,
2621
+ "flexDirection": "row",
2622
+ "marginHorizontal": 12,
2623
+ "opacity": 1,
2624
+ "padding": 16,
2625
+ }
2714
2626
  }
2715
2627
  >
2716
2628
  <View