@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
@@ -2,13 +2,10 @@
2
2
 
3
3
  exports[`Option renders correctly 1`] = `
4
4
  <View
5
- accessibilityState={
6
- Object {
7
- "disabled": false,
8
- }
9
- }
10
5
  accessible={true}
6
+ collapsable={false}
11
7
  focusable={true}
8
+ nativeID="animatedComponent"
12
9
  onClick={[Function]}
13
10
  onResponderGrant={[Function]}
14
11
  onResponderMove={[Function]}
@@ -17,19 +14,15 @@ exports[`Option renders correctly 1`] = `
17
14
  onResponderTerminationRequest={[Function]}
18
15
  onStartShouldSetResponder={[Function]}
19
16
  style={
20
- Array [
21
- Object {
22
- "alignItems": "center",
23
- "backgroundColor": "#d9d1df",
24
- "borderRadius": 4,
25
- "flexDirection": "row",
26
- "opacity": 1,
27
- "padding": 16,
28
- },
29
- Object {
30
- "marginHorizontal": 12,
31
- },
32
- ]
17
+ Object {
18
+ "alignItems": "center",
19
+ "backgroundColor": "#ece8ef",
20
+ "borderRadius": 4,
21
+ "flexDirection": "row",
22
+ "marginHorizontal": 12,
23
+ "opacity": 1,
24
+ "padding": 16,
25
+ }
33
26
  }
34
27
  >
35
28
  <View
@@ -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
@@ -405,13 +397,10 @@ exports[`OptionList render isLoading correctly 1`] = `
405
397
  }
406
398
  />
407
399
  <View
408
- accessibilityState={
409
- Object {
410
- "disabled": false,
411
- }
412
- }
413
400
  accessible={true}
401
+ collapsable={false}
414
402
  focusable={true}
403
+ nativeID="animatedComponent"
415
404
  onClick={[Function]}
416
405
  onResponderGrant={[Function]}
417
406
  onResponderMove={[Function]}
@@ -420,19 +409,15 @@ exports[`OptionList render isLoading correctly 1`] = `
420
409
  onResponderTerminationRequest={[Function]}
421
410
  onStartShouldSetResponder={[Function]}
422
411
  style={
423
- Array [
424
- Object {
425
- "alignItems": "center",
426
- "backgroundColor": "#ffffff",
427
- "borderRadius": 4,
428
- "flexDirection": "row",
429
- "opacity": 1,
430
- "padding": 16,
431
- },
432
- Object {
433
- "marginHorizontal": 12,
434
- },
435
- ]
412
+ Object {
413
+ "alignItems": "center",
414
+ "backgroundColor": "#ffffff",
415
+ "borderRadius": 4,
416
+ "flexDirection": "row",
417
+ "marginHorizontal": 12,
418
+ "opacity": 1,
419
+ "padding": 16,
420
+ }
436
421
  }
437
422
  >
438
423
  <View
@@ -523,13 +508,10 @@ exports[`OptionList render isLoading correctly 1`] = `
523
508
  >
524
509
  <View>
525
510
  <View
526
- accessibilityState={
527
- Object {
528
- "disabled": false,
529
- }
530
- }
531
511
  accessible={true}
512
+ collapsable={false}
532
513
  focusable={true}
514
+ nativeID="animatedComponent"
533
515
  onClick={[Function]}
534
516
  onResponderGrant={[Function]}
535
517
  onResponderMove={[Function]}
@@ -538,19 +520,15 @@ exports[`OptionList render isLoading correctly 1`] = `
538
520
  onResponderTerminationRequest={[Function]}
539
521
  onStartShouldSetResponder={[Function]}
540
522
  style={
541
- Array [
542
- Object {
543
- "alignItems": "center",
544
- "backgroundColor": "#ffffff",
545
- "borderRadius": 4,
546
- "flexDirection": "row",
547
- "opacity": 1,
548
- "padding": 16,
549
- },
550
- Object {
551
- "marginHorizontal": 12,
552
- },
553
- ]
523
+ Object {
524
+ "alignItems": "center",
525
+ "backgroundColor": "#ffffff",
526
+ "borderRadius": 4,
527
+ "flexDirection": "row",
528
+ "marginHorizontal": 12,
529
+ "opacity": 1,
530
+ "padding": 16,
531
+ }
554
532
  }
555
533
  >
556
534
  <View
@@ -699,7 +677,7 @@ exports[`OptionList render isLoading correctly 1`] = `
699
677
  style={
700
678
  Array [
701
679
  Object {
702
- "backgroundColor": "#001f23",
680
+ "backgroundColor": "#401960",
703
681
  "borderRadius": 999,
704
682
  "height": 16,
705
683
  "opacity": 0.9,
@@ -718,7 +696,7 @@ exports[`OptionList render isLoading correctly 1`] = `
718
696
  style={
719
697
  Array [
720
698
  Object {
721
- "backgroundColor": "#001f23",
699
+ "backgroundColor": "#401960",
722
700
  "borderRadius": 999,
723
701
  "height": 16,
724
702
  "marginLeft": 8,
@@ -754,7 +732,7 @@ exports[`OptionList render isLoading correctly 1`] = `
754
732
  style={
755
733
  Array [
756
734
  Object {
757
- "backgroundColor": "#001f23",
735
+ "backgroundColor": "#401960",
758
736
  "borderRadius": 999,
759
737
  "height": 16,
760
738
  "opacity": 0.45,
@@ -773,7 +751,7 @@ exports[`OptionList render isLoading correctly 1`] = `
773
751
  style={
774
752
  Array [
775
753
  Object {
776
- "backgroundColor": "#001f23",
754
+ "backgroundColor": "#401960",
777
755
  "borderRadius": 999,
778
756
  "height": 16,
779
757
  "marginLeft": 8,
@@ -838,7 +816,6 @@ exports[`OptionList renders correctly 1`] = `
838
816
  onScroll={[Function]}
839
817
  onScrollBeginDrag={[Function]}
840
818
  onScrollEndDrag={[Function]}
841
- onScrollToIndexFailed={[Function]}
842
819
  renderItem={[Function]}
843
820
  scrollEventThrottle={50}
844
821
  stickyHeaderIndices={
@@ -965,13 +942,10 @@ exports[`OptionList renders correctly 1`] = `
965
942
  }
966
943
  />
967
944
  <View
968
- accessibilityState={
969
- Object {
970
- "disabled": false,
971
- }
972
- }
973
945
  accessible={true}
946
+ collapsable={false}
974
947
  focusable={true}
948
+ nativeID="animatedComponent"
975
949
  onClick={[Function]}
976
950
  onResponderGrant={[Function]}
977
951
  onResponderMove={[Function]}
@@ -980,19 +954,15 @@ exports[`OptionList renders correctly 1`] = `
980
954
  onResponderTerminationRequest={[Function]}
981
955
  onStartShouldSetResponder={[Function]}
982
956
  style={
983
- Array [
984
- Object {
985
- "alignItems": "center",
986
- "backgroundColor": "#d9d1df",
987
- "borderRadius": 4,
988
- "flexDirection": "row",
989
- "opacity": 1,
990
- "padding": 16,
991
- },
992
- Object {
993
- "marginHorizontal": 12,
994
- },
995
- ]
957
+ Object {
958
+ "alignItems": "center",
959
+ "backgroundColor": "#ece8ef",
960
+ "borderRadius": 4,
961
+ "flexDirection": "row",
962
+ "marginHorizontal": 12,
963
+ "opacity": 1,
964
+ "padding": 16,
965
+ }
996
966
  }
997
967
  >
998
968
  <View
@@ -1190,13 +1160,10 @@ exports[`OptionList renders correctly 1`] = `
1190
1160
  }
1191
1161
  />
1192
1162
  <View
1193
- accessibilityState={
1194
- Object {
1195
- "disabled": false,
1196
- }
1197
- }
1198
1163
  accessible={true}
1164
+ collapsable={false}
1199
1165
  focusable={true}
1166
+ nativeID="animatedComponent"
1200
1167
  onClick={[Function]}
1201
1168
  onResponderGrant={[Function]}
1202
1169
  onResponderMove={[Function]}
@@ -1205,19 +1172,15 @@ exports[`OptionList renders correctly 1`] = `
1205
1172
  onResponderTerminationRequest={[Function]}
1206
1173
  onStartShouldSetResponder={[Function]}
1207
1174
  style={
1208
- Array [
1209
- Object {
1210
- "alignItems": "center",
1211
- "backgroundColor": "#ffffff",
1212
- "borderRadius": 4,
1213
- "flexDirection": "row",
1214
- "opacity": 1,
1215
- "padding": 16,
1216
- },
1217
- Object {
1218
- "marginHorizontal": 12,
1219
- },
1220
- ]
1175
+ Object {
1176
+ "alignItems": "center",
1177
+ "backgroundColor": "#ffffff",
1178
+ "borderRadius": 4,
1179
+ "flexDirection": "row",
1180
+ "marginHorizontal": 12,
1181
+ "opacity": 1,
1182
+ "padding": 16,
1183
+ }
1221
1184
  }
1222
1185
  >
1223
1186
  <View
@@ -1308,13 +1271,10 @@ exports[`OptionList renders correctly 1`] = `
1308
1271
  >
1309
1272
  <View>
1310
1273
  <View
1311
- accessibilityState={
1312
- Object {
1313
- "disabled": false,
1314
- }
1315
- }
1316
1274
  accessible={true}
1275
+ collapsable={false}
1317
1276
  focusable={true}
1277
+ nativeID="animatedComponent"
1318
1278
  onClick={[Function]}
1319
1279
  onResponderGrant={[Function]}
1320
1280
  onResponderMove={[Function]}
@@ -1323,19 +1283,15 @@ exports[`OptionList renders correctly 1`] = `
1323
1283
  onResponderTerminationRequest={[Function]}
1324
1284
  onStartShouldSetResponder={[Function]}
1325
1285
  style={
1326
- Array [
1327
- Object {
1328
- "alignItems": "center",
1329
- "backgroundColor": "#ffffff",
1330
- "borderRadius": 4,
1331
- "flexDirection": "row",
1332
- "opacity": 1,
1333
- "padding": 16,
1334
- },
1335
- Object {
1336
- "marginHorizontal": 12,
1337
- },
1338
- ]
1286
+ Object {
1287
+ "alignItems": "center",
1288
+ "backgroundColor": "#ffffff",
1289
+ "borderRadius": 4,
1290
+ "flexDirection": "row",
1291
+ "marginHorizontal": 12,
1292
+ "opacity": 1,
1293
+ "padding": 16,
1294
+ }
1339
1295
  }
1340
1296
  >
1341
1297
  <View
@@ -1463,7 +1419,6 @@ exports[`OptionList trigger onPress correctly on select new value 1`] = `
1463
1419
  onScroll={[Function]}
1464
1420
  onScrollBeginDrag={[Function]}
1465
1421
  onScrollEndDrag={[Function]}
1466
- onScrollToIndexFailed={[Function]}
1467
1422
  renderItem={[Function]}
1468
1423
  scrollEventThrottle={50}
1469
1424
  stickyHeaderIndices={
@@ -1590,13 +1545,10 @@ exports[`OptionList trigger onPress correctly on select new value 1`] = `
1590
1545
  }
1591
1546
  />
1592
1547
  <View
1593
- accessibilityState={
1594
- Object {
1595
- "disabled": false,
1596
- }
1597
- }
1598
1548
  accessible={true}
1549
+ collapsable={false}
1599
1550
  focusable={true}
1551
+ nativeID="animatedComponent"
1600
1552
  onClick={[Function]}
1601
1553
  onResponderGrant={[Function]}
1602
1554
  onResponderMove={[Function]}
@@ -1605,19 +1557,15 @@ exports[`OptionList trigger onPress correctly on select new value 1`] = `
1605
1557
  onResponderTerminationRequest={[Function]}
1606
1558
  onStartShouldSetResponder={[Function]}
1607
1559
  style={
1608
- Array [
1609
- Object {
1610
- "alignItems": "center",
1611
- "backgroundColor": "#d9d1df",
1612
- "borderRadius": 4,
1613
- "flexDirection": "row",
1614
- "opacity": 1,
1615
- "padding": 16,
1616
- },
1617
- Object {
1618
- "marginHorizontal": 12,
1619
- },
1620
- ]
1560
+ Object {
1561
+ "alignItems": "center",
1562
+ "backgroundColor": "#ece8ef",
1563
+ "borderRadius": 4,
1564
+ "flexDirection": "row",
1565
+ "marginHorizontal": 12,
1566
+ "opacity": 1,
1567
+ "padding": 16,
1568
+ }
1621
1569
  }
1622
1570
  >
1623
1571
  <View
@@ -1815,13 +1763,10 @@ exports[`OptionList trigger onPress correctly on select new value 1`] = `
1815
1763
  }
1816
1764
  />
1817
1765
  <View
1818
- accessibilityState={
1819
- Object {
1820
- "disabled": false,
1821
- }
1822
- }
1823
1766
  accessible={true}
1767
+ collapsable={false}
1824
1768
  focusable={true}
1769
+ nativeID="animatedComponent"
1825
1770
  onClick={[Function]}
1826
1771
  onResponderGrant={[Function]}
1827
1772
  onResponderMove={[Function]}
@@ -1830,19 +1775,15 @@ exports[`OptionList trigger onPress correctly on select new value 1`] = `
1830
1775
  onResponderTerminationRequest={[Function]}
1831
1776
  onStartShouldSetResponder={[Function]}
1832
1777
  style={
1833
- Array [
1834
- Object {
1835
- "alignItems": "center",
1836
- "backgroundColor": "#ffffff",
1837
- "borderRadius": 4,
1838
- "flexDirection": "row",
1839
- "opacity": 1,
1840
- "padding": 16,
1841
- },
1842
- Object {
1843
- "marginHorizontal": 12,
1844
- },
1845
- ]
1778
+ Object {
1779
+ "alignItems": "center",
1780
+ "backgroundColor": "#ffffff",
1781
+ "borderRadius": 4,
1782
+ "flexDirection": "row",
1783
+ "marginHorizontal": 12,
1784
+ "opacity": 1,
1785
+ "padding": 16,
1786
+ }
1846
1787
  }
1847
1788
  >
1848
1789
  <View
@@ -1933,13 +1874,10 @@ exports[`OptionList trigger onPress correctly on select new value 1`] = `
1933
1874
  >
1934
1875
  <View>
1935
1876
  <View
1936
- accessibilityState={
1937
- Object {
1938
- "disabled": false,
1939
- }
1940
- }
1941
1877
  accessible={true}
1878
+ collapsable={false}
1942
1879
  focusable={true}
1880
+ nativeID="animatedComponent"
1943
1881
  onClick={[Function]}
1944
1882
  onResponderGrant={[Function]}
1945
1883
  onResponderMove={[Function]}
@@ -1948,19 +1886,15 @@ exports[`OptionList trigger onPress correctly on select new value 1`] = `
1948
1886
  onResponderTerminationRequest={[Function]}
1949
1887
  onStartShouldSetResponder={[Function]}
1950
1888
  style={
1951
- Array [
1952
- Object {
1953
- "alignItems": "center",
1954
- "backgroundColor": "#ffffff",
1955
- "borderRadius": 4,
1956
- "flexDirection": "row",
1957
- "opacity": 1,
1958
- "padding": 16,
1959
- },
1960
- Object {
1961
- "marginHorizontal": 12,
1962
- },
1963
- ]
1889
+ Object {
1890
+ "alignItems": "center",
1891
+ "backgroundColor": "#ffffff",
1892
+ "borderRadius": 4,
1893
+ "flexDirection": "row",
1894
+ "marginHorizontal": 12,
1895
+ "opacity": 1,
1896
+ "padding": 16,
1897
+ }
1964
1898
  }
1965
1899
  >
1966
1900
  <View
@@ -2088,7 +2022,6 @@ exports[`OptionList trigger onPress correctly on unselect current value 1`] = `
2088
2022
  onScroll={[Function]}
2089
2023
  onScrollBeginDrag={[Function]}
2090
2024
  onScrollEndDrag={[Function]}
2091
- onScrollToIndexFailed={[Function]}
2092
2025
  renderItem={[Function]}
2093
2026
  scrollEventThrottle={50}
2094
2027
  stickyHeaderIndices={
@@ -2215,13 +2148,10 @@ exports[`OptionList trigger onPress correctly on unselect current value 1`] = `
2215
2148
  }
2216
2149
  />
2217
2150
  <View
2218
- accessibilityState={
2219
- Object {
2220
- "disabled": false,
2221
- }
2222
- }
2223
2151
  accessible={true}
2152
+ collapsable={false}
2224
2153
  focusable={true}
2154
+ nativeID="animatedComponent"
2225
2155
  onClick={[Function]}
2226
2156
  onResponderGrant={[Function]}
2227
2157
  onResponderMove={[Function]}
@@ -2230,19 +2160,15 @@ exports[`OptionList trigger onPress correctly on unselect current value 1`] = `
2230
2160
  onResponderTerminationRequest={[Function]}
2231
2161
  onStartShouldSetResponder={[Function]}
2232
2162
  style={
2233
- Array [
2234
- Object {
2235
- "alignItems": "center",
2236
- "backgroundColor": "#d9d1df",
2237
- "borderRadius": 4,
2238
- "flexDirection": "row",
2239
- "opacity": 1,
2240
- "padding": 16,
2241
- },
2242
- Object {
2243
- "marginHorizontal": 12,
2244
- },
2245
- ]
2163
+ Object {
2164
+ "alignItems": "center",
2165
+ "backgroundColor": "#ece8ef",
2166
+ "borderRadius": 4,
2167
+ "flexDirection": "row",
2168
+ "marginHorizontal": 12,
2169
+ "opacity": 1,
2170
+ "padding": 16,
2171
+ }
2246
2172
  }
2247
2173
  >
2248
2174
  <View
@@ -2440,13 +2366,10 @@ exports[`OptionList trigger onPress correctly on unselect current value 1`] = `
2440
2366
  }
2441
2367
  />
2442
2368
  <View
2443
- accessibilityState={
2444
- Object {
2445
- "disabled": false,
2446
- }
2447
- }
2448
2369
  accessible={true}
2370
+ collapsable={false}
2449
2371
  focusable={true}
2372
+ nativeID="animatedComponent"
2450
2373
  onClick={[Function]}
2451
2374
  onResponderGrant={[Function]}
2452
2375
  onResponderMove={[Function]}
@@ -2455,19 +2378,15 @@ exports[`OptionList trigger onPress correctly on unselect current value 1`] = `
2455
2378
  onResponderTerminationRequest={[Function]}
2456
2379
  onStartShouldSetResponder={[Function]}
2457
2380
  style={
2458
- Array [
2459
- Object {
2460
- "alignItems": "center",
2461
- "backgroundColor": "#ffffff",
2462
- "borderRadius": 4,
2463
- "flexDirection": "row",
2464
- "opacity": 1,
2465
- "padding": 16,
2466
- },
2467
- Object {
2468
- "marginHorizontal": 12,
2469
- },
2470
- ]
2381
+ Object {
2382
+ "alignItems": "center",
2383
+ "backgroundColor": "#ffffff",
2384
+ "borderRadius": 4,
2385
+ "flexDirection": "row",
2386
+ "marginHorizontal": 12,
2387
+ "opacity": 1,
2388
+ "padding": 16,
2389
+ }
2471
2390
  }
2472
2391
  >
2473
2392
  <View
@@ -2558,13 +2477,10 @@ exports[`OptionList trigger onPress correctly on unselect current value 1`] = `
2558
2477
  >
2559
2478
  <View>
2560
2479
  <View
2561
- accessibilityState={
2562
- Object {
2563
- "disabled": false,
2564
- }
2565
- }
2566
2480
  accessible={true}
2481
+ collapsable={false}
2567
2482
  focusable={true}
2483
+ nativeID="animatedComponent"
2568
2484
  onClick={[Function]}
2569
2485
  onResponderGrant={[Function]}
2570
2486
  onResponderMove={[Function]}
@@ -2573,19 +2489,15 @@ exports[`OptionList trigger onPress correctly on unselect current value 1`] = `
2573
2489
  onResponderTerminationRequest={[Function]}
2574
2490
  onStartShouldSetResponder={[Function]}
2575
2491
  style={
2576
- Array [
2577
- Object {
2578
- "alignItems": "center",
2579
- "backgroundColor": "#ffffff",
2580
- "borderRadius": 4,
2581
- "flexDirection": "row",
2582
- "opacity": 1,
2583
- "padding": 16,
2584
- },
2585
- Object {
2586
- "marginHorizontal": 12,
2587
- },
2588
- ]
2492
+ Object {
2493
+ "alignItems": "center",
2494
+ "backgroundColor": "#ffffff",
2495
+ "borderRadius": 4,
2496
+ "flexDirection": "row",
2497
+ "marginHorizontal": 12,
2498
+ "opacity": 1,
2499
+ "padding": 16,
2500
+ }
2589
2501
  }
2590
2502
  >
2591
2503
  <View