@hero-design/rn 9.0.0-0 → 9.0.0-alpha.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 (668) hide show
  1. package/CHANGELOG.md +287 -0
  2. package/assets/fonts/hero-icons-mobile.ttf +0 -0
  3. package/es/index.js +17491 -14687
  4. package/jest-ci.config.js +17 -0
  5. package/jest-setup.ts +2 -0
  6. package/jest.config.js +1 -3
  7. package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
  8. package/lib/index.js +17376 -14565
  9. package/package.json +50 -40
  10. package/rollup.config.js +1 -0
  11. package/sonar-project.properties +11 -0
  12. package/src/components/Accordion/AccordionItem.tsx +1 -3
  13. package/src/components/Accordion/__tests__/AccordionItem.spec.tsx +5 -5
  14. package/src/components/Accordion/__tests__/__snapshots__/AccordionItem.spec.tsx.snap +580 -408
  15. package/src/components/Accordion/__tests__/__snapshots__/StyledAccordion.spec.tsx.snap +76 -20
  16. package/src/components/Accordion/__tests__/__snapshots__/index.spec.tsx.snap +818 -644
  17. package/src/components/Accordion/__tests__/index.spec.tsx +2 -2
  18. package/src/components/Alert/__tests__/__snapshots__/index.spec.tsx.snap +912 -644
  19. package/src/components/Alert/__tests__/index.spec.tsx +44 -2
  20. package/src/components/Alert/index.tsx +30 -4
  21. package/src/components/AnimatedScroller/AnimatedFAB.tsx +155 -0
  22. package/src/components/AnimatedScroller/AnimatedScrollable.tsx +70 -0
  23. package/src/components/AnimatedScroller/FlatListWithFAB.tsx +23 -0
  24. package/src/components/AnimatedScroller/ScrollViewWithFAB.tsx +21 -0
  25. package/src/components/AnimatedScroller/SectionListWithFAB.tsx +26 -0
  26. package/src/components/AnimatedScroller/__tests__/ScrollablesWithFAB.spec.tsx +193 -0
  27. package/src/components/AnimatedScroller/__tests__/__snapshots__/ScrollablesWithFAB.spec.tsx.snap +3462 -0
  28. package/src/components/AnimatedScroller/index.tsx +5 -0
  29. package/src/components/Attachment/__tests__/__snapshots__/index.spec.tsx.snap +178 -117
  30. package/src/components/Attachment/index.tsx +3 -1
  31. package/src/components/Avatar/AvatarStack/StyledAvatarStack.tsx +63 -9
  32. package/src/components/Avatar/AvatarStack/__tests__/StyledAvatarStack.spec.tsx +71 -9
  33. package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/StyledAvatarStack.spec.tsx.snap +410 -73
  34. package/src/components/Avatar/AvatarStack/__tests__/__snapshots__/index.spec.tsx.snap +2904 -591
  35. package/src/components/Avatar/AvatarStack/__tests__/index.spec.tsx +140 -6
  36. package/src/components/Avatar/AvatarStack/index.tsx +94 -9
  37. package/src/components/Avatar/__tests__/__snapshots__/StyledAvatar.spec.tsx.snap +163 -62
  38. package/src/components/Avatar/__tests__/__snapshots__/index.spec.tsx.snap +288 -168
  39. package/src/components/Badge/StyledBadge.tsx +1 -4
  40. package/src/components/Badge/__tests__/Status.spec.tsx +1 -1
  41. package/src/components/Badge/__tests__/__snapshots__/Badge.spec.tsx.snap +397 -259
  42. package/src/components/Badge/__tests__/__snapshots__/Status.spec.tsx.snap +123 -68
  43. package/src/components/BottomNavigation/StyledBottomNavigation.tsx +1 -1
  44. package/src/components/BottomNavigation/__tests__/__snapshots__/index.spec.tsx.snap +332 -276
  45. package/src/components/BottomNavigation/index.tsx +4 -1
  46. package/src/components/BottomSheet/Header.tsx +1 -3
  47. package/src/components/BottomSheet/__tests__/__snapshots__/index.spec.tsx.snap +330 -197
  48. package/src/components/Box/__tests__/__snapshots__/index.spec.tsx.snap +1042 -454
  49. package/src/components/Button/Button.tsx +60 -25
  50. package/src/components/Button/LoadingIndicator/StyledLoadingIndicator.tsx +6 -9
  51. package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/StyledLoadingIndicator.spec.tsx.snap +400 -140
  52. package/src/components/Button/LoadingIndicator/__tests__/__snapshots__/index.spec.tsx.snap +1090 -880
  53. package/src/components/Button/StyledButton.tsx +56 -59
  54. package/src/components/Button/UtilityButton/StyledUtilityButton.tsx +2 -4
  55. package/src/components/Button/UtilityButton/__tests__/__snapshots__/index.spec.tsx.snap +206 -122
  56. package/src/components/Button/__tests__/Button.spec.tsx +18 -0
  57. package/src/components/Button/__tests__/StyledButton.spec.tsx +12 -6
  58. package/src/components/Button/__tests__/__snapshots__/Button.spec.tsx.snap +1878 -1196
  59. package/src/components/Button/__tests__/__snapshots__/IconButton.spec.tsx.snap +74 -29
  60. package/src/components/Button/__tests__/__snapshots__/StyledButton.spec.tsx.snap +1734 -778
  61. package/src/components/Calendar/CalendarRowItem.tsx +5 -2
  62. package/src/components/Calendar/StyledCalendar.tsx +2 -2
  63. package/src/components/Calendar/__tests__/__snapshots__/CalendarRowItem.spec.tsx.snap +555 -335
  64. package/src/components/Calendar/__tests__/index.spec.tsx +76 -0
  65. package/src/components/Calendar/index.tsx +170 -59
  66. package/src/components/Card/DataCard/__tests__/__snapshots__/StyledDataCard.spec.tsx.snap +265 -69
  67. package/src/components/Card/DataCard/__tests__/__snapshots__/index.spec.tsx.snap +215 -75
  68. package/src/components/Card/__tests__/__snapshots__/StyledCard.spec.tsx.snap +36 -8
  69. package/src/components/Card/__tests__/__snapshots__/index.spec.tsx.snap +304 -142
  70. package/src/components/Card/__tests__/index.spec.tsx +1 -1
  71. package/src/components/Carousel/CardCarousel.tsx +23 -25
  72. package/src/components/Carousel/CarouselItem.tsx +39 -23
  73. package/src/components/Carousel/StyledCardCarousel.tsx +1 -16
  74. package/src/components/Carousel/StyledCarousel.tsx +8 -12
  75. package/src/components/Carousel/__tests__/CardCarousel.spec.tsx +18 -18
  76. package/src/components/Carousel/__tests__/__snapshots__/CardCarousel.spec.tsx.snap +370 -366
  77. package/src/components/Carousel/__tests__/__snapshots__/StyledCardCarousel.spec.tsx.snap +199 -72
  78. package/src/components/Carousel/__tests__/__snapshots__/StyledCarousel.spec.tsx.snap +41 -13
  79. package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +1621 -1861
  80. package/src/components/Carousel/__tests__/index.spec.tsx +107 -7
  81. package/src/components/Carousel/index.tsx +63 -35
  82. package/src/components/Carousel/types.ts +4 -4
  83. package/src/components/Checkbox/StyledCheckbox.tsx +24 -30
  84. package/src/components/Checkbox/__tests__/StyledCheckbox.spec.tsx +25 -16
  85. package/src/components/Checkbox/__tests__/__snapshots__/StyledCheckbox.spec.tsx.snap +432 -77
  86. package/src/components/Checkbox/__tests__/__snapshots__/index.spec.tsx.snap +598 -345
  87. package/src/components/Checkbox/__tests__/index.spec.tsx +24 -9
  88. package/src/components/Checkbox/index.tsx +60 -25
  89. package/src/components/Chip/StyledChip.tsx +121 -0
  90. package/src/components/Chip/__tests__/__snapshots__/index.spec.tsx.snap +1483 -0
  91. package/src/components/Chip/__tests__/index.spec.tsx +136 -0
  92. package/src/components/Chip/index.tsx +82 -0
  93. package/src/components/Collapse/__tests__/__snapshots__/StyledCollapse.spec.tsx.snap +74 -18
  94. package/src/components/Collapse/__tests__/__snapshots__/index.spec.tsx.snap +100 -44
  95. package/src/components/Collapse/index.tsx +1 -1
  96. package/src/components/ContentNavigator/StyledContentNavigator.tsx +1 -6
  97. package/src/components/ContentNavigator/__tests__/StyledContentNavigator.spec.tsx +1 -9
  98. package/src/components/ContentNavigator/__tests__/__snapshots__/StyledContentNavigator.spec.tsx.snap +37 -38
  99. package/src/components/ContentNavigator/__tests__/__snapshots__/index.spec.tsx.snap +449 -186
  100. package/src/components/ContentNavigator/__tests__/index.spec.tsx +16 -0
  101. package/src/components/ContentNavigator/index.tsx +30 -9
  102. package/src/components/DatePicker/DatePickerAndroid.tsx +8 -3
  103. package/src/components/DatePicker/DatePickerCalendar.tsx +44 -15
  104. package/src/components/DatePicker/DatePickerIOS.tsx +12 -23
  105. package/src/components/DatePicker/__tests__/DatePicker.spec.tsx +92 -0
  106. package/src/components/DatePicker/__tests__/DatePickerCalendar.spec.tsx +42 -0
  107. package/src/components/DatePicker/__tests__/DatePickerIOS.spec.tsx +6 -5
  108. package/src/components/DatePicker/__tests__/__snapshots__/DatePicker.spec.tsx.snap +676 -508
  109. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerAndroid.spec.tsx.snap +230 -174
  110. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerCalendar.spec.tsx.snap +222 -166
  111. package/src/components/DatePicker/__tests__/__snapshots__/DatePickerIOS.spec.tsx.snap +518 -423
  112. package/src/components/DatePicker/types.ts +8 -0
  113. package/src/components/DatePicker/useCalculateDate.tsx +34 -0
  114. package/src/components/Divider/__tests__/__snapshots__/StyledDivider.spec.tsx.snap +464 -128
  115. package/src/components/Drawer/DragableDrawer/__tests__/__snapshots__/index.spec.tsx.snap +99 -71
  116. package/src/components/Drawer/DragableDrawer/index.tsx +2 -2
  117. package/src/components/Drawer/__tests__/__snapshots__/index.spec.tsx.snap +327 -192
  118. package/src/components/Drawer/index.tsx +3 -3
  119. package/src/components/Empty/StyledEmpty.tsx +2 -6
  120. package/src/components/Empty/__tests__/__snapshots__/index.spec.tsx.snap +176 -134
  121. package/src/components/Empty/index.tsx +4 -2
  122. package/src/components/Error/StyledError.tsx +4 -9
  123. package/src/components/Error/__tests__/__snapshots__/index.spec.tsx.snap +431 -335
  124. package/src/components/Error/__tests__/index.spec.tsx +9 -6
  125. package/src/components/Error/index.tsx +6 -2
  126. package/src/components/FAB/ActionGroup/ActionItem.tsx +46 -15
  127. package/src/components/FAB/ActionGroup/StyledActionGroup.tsx +16 -18
  128. package/src/components/FAB/ActionGroup/StyledActionItem.tsx +1 -5
  129. package/src/components/FAB/ActionGroup/__tests__/__snapshots__/index.spec.tsx.snap +980 -1217
  130. package/src/components/FAB/ActionGroup/__tests__/index.spec.tsx +32 -22
  131. package/src/components/FAB/ActionGroup/index.tsx +135 -94
  132. package/src/components/FAB/AnimatedFABIcon.tsx +3 -5
  133. package/src/components/FAB/FAB.tsx +170 -28
  134. package/src/components/FAB/StyledFAB.tsx +26 -23
  135. package/src/components/FAB/__tests__/StyledFAB.spec.tsx +12 -2
  136. package/src/components/FAB/__tests__/__snapshots__/AnimatedFABIcon.spec.tsx.snap +102 -46
  137. package/src/components/FAB/__tests__/__snapshots__/StyledFAB.spec.tsx.snap +204 -52
  138. package/src/components/FAB/__tests__/__snapshots__/index.spec.tsx.snap +323 -180
  139. package/src/components/FAB/__tests__/index.spec.tsx +22 -2
  140. package/src/components/HeroDesignProvider/__tests__/__snapshots__/index.spec.tsx.snap +80 -0
  141. package/src/components/HeroDesignProvider/__tests__/index.spec.tsx +78 -0
  142. package/src/components/HeroDesignProvider/index.tsx +14 -0
  143. package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
  144. package/src/components/Icon/IconList.ts +36 -0
  145. package/src/components/Icon/__tests__/__snapshots__/index.spec.tsx.snap +162 -50
  146. package/src/components/Image/__tests__/__snapshots__/index.spec.tsx.snap +172 -60
  147. package/src/components/List/BasicListItem.tsx +2 -6
  148. package/src/components/List/ListItem.tsx +3 -5
  149. package/src/components/List/StyledListItem.tsx +8 -7
  150. package/src/components/List/__tests__/ListItem.spec.tsx +4 -4
  151. package/src/components/List/__tests__/StyledBasicListItem.spec.tsx +3 -1
  152. package/src/components/List/__tests__/StyledListItem.spec.tsx +3 -1
  153. package/src/components/List/__tests__/__snapshots__/BasicListItem.spec.tsx.snap +264 -198
  154. package/src/components/List/__tests__/__snapshots__/ListItem.spec.tsx.snap +798 -635
  155. package/src/components/List/__tests__/__snapshots__/StyledBasicListItem.spec.tsx.snap +280 -140
  156. package/src/components/List/__tests__/__snapshots__/StyledListItem.spec.tsx.snap +485 -203
  157. package/src/components/Modal/__tests__/__snapshots__/index.spec.tsx.snap +169 -0
  158. package/src/components/Modal/__tests__/index.spec.tsx +99 -0
  159. package/src/components/Modal/index.tsx +217 -0
  160. package/src/components/PageControl/__tests__/__snapshots__/index.spec.tsx.snap +84 -41
  161. package/src/components/PageControl/index.tsx +7 -4
  162. package/src/components/PinInput/PinCell.tsx +3 -1
  163. package/src/components/PinInput/StyledPinInput.tsx +2 -7
  164. package/src/components/PinInput/__tests__/StyledPinInput.spec.tsx +9 -4
  165. package/src/components/PinInput/__tests__/__snapshots__/PinCell.spec.tsx.snap +298 -178
  166. package/src/components/PinInput/__tests__/__snapshots__/StyledPinInput.spec.tsx.snap +15 -48
  167. package/src/components/PinInput/__tests__/__snapshots__/index.spec.tsx.snap +873 -777
  168. package/src/components/PinInput/index.tsx +3 -1
  169. package/src/components/Portal/PortalHost.tsx +27 -0
  170. package/src/components/Portal/PortalProvider.tsx +35 -0
  171. package/src/components/Portal/__tests__/PortalHost.spec.tsx +48 -0
  172. package/src/components/Portal/__tests__/PortalProvider.spec.tsx +24 -0
  173. package/src/components/Portal/__tests__/__snapshots__/index.spec.tsx.snap +57 -0
  174. package/src/components/Portal/__tests__/index.spec.tsx +48 -0
  175. package/src/components/Portal/__tests__/reducer.spec.tsx +110 -0
  176. package/src/components/Portal/constants.ts +10 -0
  177. package/src/components/Portal/contexts.ts +14 -0
  178. package/src/components/Portal/index.tsx +66 -0
  179. package/src/components/Portal/reducer.ts +106 -0
  180. package/src/components/Portal/types.tsx +31 -0
  181. package/src/components/Portal/usePortal.ts +50 -0
  182. package/src/components/Portal/usePortalState.ts +11 -0
  183. package/src/components/Progress/ProgressCircle.tsx +1 -3
  184. package/src/components/Progress/StyledProgressBar.tsx +1 -0
  185. package/src/components/Progress/__tests__/__snapshots__/index.spec.js.snap +810 -671
  186. package/src/components/Radio/Radio.tsx +25 -6
  187. package/src/components/Radio/RadioGroup.tsx +13 -4
  188. package/src/components/Radio/StyledRadio.tsx +20 -3
  189. package/src/components/Radio/__tests__/Radio.spec.tsx +46 -13
  190. package/src/components/Radio/__tests__/RadioGroup.spec.tsx +40 -7
  191. package/src/components/Radio/__tests__/__snapshots__/Radio.spec.tsx.snap +565 -126
  192. package/src/components/Radio/__tests__/__snapshots__/RadioGroup.spec.tsx.snap +1079 -196
  193. package/src/components/Radio/types.ts +9 -1
  194. package/src/components/Rate/StyledRate.tsx +16 -0
  195. package/src/components/Rate/__tests__/__snapshots__/index.spec.tsx.snap +1006 -0
  196. package/src/components/Rate/__tests__/index.spec.tsx +47 -0
  197. package/src/components/Rate/index.tsx +90 -0
  198. package/src/components/RefreshControl/__tests__/__snapshots__/index.spec.tsx.snap +131 -47
  199. package/src/components/RichTextEditor/RichTextEditor.tsx +94 -47
  200. package/src/components/RichTextEditor/__tests__/EditorToolbar.spec.tsx +5 -2
  201. package/src/components/RichTextEditor/__tests__/RichTextEditor.spec.tsx +3 -3
  202. package/src/components/RichTextEditor/__tests__/__snapshots__/EditorToolbar.spec.tsx.snap +420 -273
  203. package/src/components/RichTextEditor/__tests__/__snapshots__/MentionList.spec.tsx.snap +66 -37
  204. package/src/components/RichTextEditor/__tests__/__snapshots__/RichTextEditor.spec.tsx.snap +451 -355
  205. package/src/components/SectionHeading/StyledHeading.tsx +21 -10
  206. package/src/components/SectionHeading/__tests__/StyledHeading.spec.tsx +6 -2
  207. package/src/components/SectionHeading/__tests__/__snapshots__/StyledHeading.spec.tsx.snap +165 -30
  208. package/src/components/SectionHeading/__tests__/__snapshots__/index.spec.tsx.snap +469 -169
  209. package/src/components/SectionHeading/__tests__/index.spec.tsx +15 -1
  210. package/src/components/SectionHeading/index.tsx +51 -32
  211. package/src/components/Select/MultiSelect/Option.tsx +3 -0
  212. package/src/components/Select/MultiSelect/__tests__/__snapshots__/Option.spec.tsx.snap +100 -64
  213. package/src/components/Select/MultiSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +2557 -2320
  214. package/src/components/Select/MultiSelect/__tests__/__snapshots__/index.spec.tsx.snap +2739 -911
  215. package/src/components/Select/MultiSelect/__tests__/index.spec.tsx +39 -22
  216. package/src/components/Select/MultiSelect/index.tsx +1 -1
  217. package/src/components/Select/SingleSelect/__tests__/__snapshots__/Option.spec.tsx.snap +78 -43
  218. package/src/components/Select/SingleSelect/__tests__/__snapshots__/OptionList.spec.tsx.snap +2460 -2228
  219. package/src/components/Select/SingleSelect/__tests__/__snapshots__/index.spec.tsx.snap +1356 -843
  220. package/src/components/Select/SingleSelect/__tests__/index.spec.tsx +5 -9
  221. package/src/components/Skeleton/__tests__/__snapshots__/index.spec.tsx.snap +525 -329
  222. package/src/components/Skeleton/index.tsx +3 -7
  223. package/src/components/Slider/__tests__/__snapshots__/index.spec.tsx.snap +117 -33
  224. package/src/components/Spinner/__tests__/__snapshots__/AnimatedSpinner.spec.tsx.snap +114 -86
  225. package/src/components/Spinner/__tests__/__snapshots__/StyledSpinner.spec.tsx.snap +1336 -664
  226. package/src/components/Spinner/__tests__/__snapshots__/index.spec.tsx.snap +129 -101
  227. package/src/components/Success/StyledSuccess.tsx +4 -7
  228. package/src/components/Success/__tests__/__snapshots__/index.spec.tsx.snap +560 -311
  229. package/src/components/Success/__tests__/index.spec.tsx +37 -9
  230. package/src/components/Success/index.tsx +7 -4
  231. package/src/components/Swipeable/__tests__/SwipeableAction.spec.tsx +2 -2
  232. package/src/components/Swipeable/__tests__/__snapshots__/SwipeableAction.spec.tsx.snap +219 -87
  233. package/src/components/Swipeable/__tests__/__snapshots__/index.spec.tsx.snap +158 -24
  234. package/src/components/Swipeable/__tests__/index.spec.tsx +12 -5
  235. package/src/components/Swipeable/index.tsx +42 -15
  236. package/src/components/Switch/SelectorSwitch/Option.tsx +1 -1
  237. package/src/components/Switch/SelectorSwitch/StyledSelectorSwitch.tsx +4 -7
  238. package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/Option.spec.tsx.snap +242 -131
  239. package/src/components/Switch/SelectorSwitch/__tests__/__snapshots__/index.spec.tsx.snap +152 -116
  240. package/src/components/Switch/SelectorSwitch/index.tsx +7 -15
  241. package/src/components/Switch/__tests__/__snapshots__/StyledSwitch.spec.tsx.snap +203 -63
  242. package/src/components/Switch/__tests__/__snapshots__/index.spec.tsx.snap +134 -70
  243. package/src/components/Tabs/SceneView.tsx +11 -6
  244. package/src/components/Tabs/ScrollableTabs.tsx +26 -8
  245. package/src/components/Tabs/{ScrollableTabsHeader.tsx → ScrollableTabsHeader/ScrollableTabsHeader.tsx} +74 -45
  246. package/src/components/Tabs/ScrollableTabsHeader/hooks/useInitHighlightedAnimation.ts +45 -0
  247. package/src/components/Tabs/ScrollableTabsHeader/hooks/useInitUnderlinedAnimation.ts +91 -0
  248. package/src/components/Tabs/StyledScrollableTabs.tsx +14 -9
  249. package/src/components/Tabs/StyledTabs.tsx +1 -9
  250. package/src/components/Tabs/__tests__/SceneView.spec.tsx +11 -11
  251. package/src/components/Tabs/__tests__/ScrollableTabsHeader.spec.tsx +7 -3
  252. package/src/components/Tabs/__tests__/__snapshots__/SceneView.spec.tsx.snap +219 -110
  253. package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabs.spec.tsx.snap +2348 -2072
  254. package/src/components/Tabs/__tests__/__snapshots__/ScrollableTabsHeader.spec.tsx.snap +1134 -444
  255. package/src/components/Tabs/__tests__/__snapshots__/TabWithBadge.spec.tsx.snap +124 -73
  256. package/src/components/Tabs/__tests__/__snapshots__/index.spec.tsx.snap +1694 -1487
  257. package/src/components/Tabs/__tests__/useInitHighlightedAnimation.spec.tsx +56 -0
  258. package/src/components/Tabs/__tests__/useInitUnderlinedAnimation.spec.tsx +65 -0
  259. package/src/components/Tabs/index.tsx +9 -6
  260. package/src/components/Tag/StyledTag.tsx +7 -39
  261. package/src/components/Tag/__tests__/Tag.spec.tsx +18 -14
  262. package/src/components/Tag/__tests__/__snapshots__/Tag.spec.tsx.snap +572 -377
  263. package/src/components/Tag/index.tsx +8 -2
  264. package/src/components/TextInput/StyledTextInput.tsx +18 -49
  265. package/src/components/TextInput/__tests__/StyledTextInput.spec.tsx +2 -46
  266. package/src/components/TextInput/__tests__/__snapshots__/StyledTextInput.spec.tsx.snap +1001 -803
  267. package/src/components/TextInput/__tests__/__snapshots__/index.spec.tsx.snap +3774 -3075
  268. package/src/components/TextInput/__tests__/index.spec.tsx +151 -9
  269. package/src/components/TextInput/index.tsx +253 -105
  270. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerAndroid.spec.tsx.snap +452 -347
  271. package/src/components/TimePicker/__tests__/__snapshots__/TimePickerIOS.spec.tsx.snap +741 -597
  272. package/src/components/Toast/StyledToast.tsx +1 -1
  273. package/src/components/Toast/Toast.tsx +6 -5
  274. package/src/components/Toast/ToastContainer.tsx +2 -0
  275. package/src/components/Toast/ToastContext.ts +20 -2
  276. package/src/components/Toast/ToastProvider.tsx +7 -4
  277. package/src/components/Toast/__tests__/Toast.spec.tsx +5 -1
  278. package/src/components/Toast/__tests__/__snapshots__/Toast.spec.tsx.snap +916 -631
  279. package/src/components/Toast/__tests__/__snapshots__/ToastContainer.spec.tsx.snap +180 -68
  280. package/src/components/Toolbar/StyledToolbar.tsx +1 -1
  281. package/src/components/Toolbar/ToolbarItem.tsx +4 -6
  282. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarGroup.spec.tsx.snap +606 -456
  283. package/src/components/Toolbar/__tests__/__snapshots__/ToolbarItem.spec.tsx.snap +714 -401
  284. package/src/components/Typography/Body/StyledBody.tsx +46 -0
  285. package/src/components/Typography/Body/__tests__/StyledBody.tsx +56 -0
  286. package/src/components/Typography/Body/__tests__/__snapshots__/StyledBody.tsx.snap +801 -0
  287. package/src/components/Typography/Body/__tests__/__snapshots__/index.spec.tsx.snap +970 -0
  288. package/src/components/Typography/Body/__tests__/index.spec.tsx +54 -0
  289. package/src/components/Typography/Body/index.tsx +71 -0
  290. package/src/components/Typography/Caption/StyledCaption.tsx +17 -0
  291. package/src/components/Typography/Caption/__tests__/StyledCaption.spec.tsx +39 -0
  292. package/src/components/Typography/Caption/__tests__/__snapshots__/StyledCaption.spec.tsx.snap +491 -0
  293. package/src/components/Typography/Caption/__tests__/__snapshots__/index.spec.tsx.snap +651 -0
  294. package/src/components/Typography/Caption/__tests__/index.spec.tsx +46 -0
  295. package/src/components/Typography/Caption/index.tsx +61 -0
  296. package/src/components/Typography/Label/StyledLabel.tsx +14 -0
  297. package/src/components/Typography/Label/__tests__/StyledLabel.tsx +23 -0
  298. package/src/components/Typography/Label/__tests__/__snapshots__/StyledLabel.tsx.snap +377 -0
  299. package/src/components/Typography/Label/__tests__/__snapshots__/index.spec.tsx.snap +529 -0
  300. package/src/components/Typography/Label/__tests__/index.spec.tsx +32 -0
  301. package/src/components/Typography/Label/index.tsx +55 -0
  302. package/src/components/Typography/Text/__tests__/__snapshots__/StyledText.spec.tsx.snap +900 -340
  303. package/src/components/Typography/Text/index.tsx +19 -12
  304. package/src/components/Typography/Title/StyledTitle.tsx +20 -0
  305. package/src/components/Typography/Title/__tests__/StyledTitle.tsx +53 -0
  306. package/src/components/Typography/Title/__tests__/__snapshots__/StyledTitle.tsx.snap +1001 -0
  307. package/src/components/Typography/Title/__tests__/__snapshots__/index.spec.tsx.snap +1174 -0
  308. package/src/components/Typography/Title/__tests__/index.spec.tsx +55 -0
  309. package/src/components/Typography/Title/index.tsx +70 -0
  310. package/src/components/Typography/index.tsx +15 -0
  311. package/src/components/Typography/types.ts +18 -0
  312. package/src/index.ts +16 -0
  313. package/src/testHelpers/renderWithTheme.tsx +2 -2
  314. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +539 -345
  315. package/src/theme/components/badge.ts +15 -0
  316. package/src/theme/components/button.ts +17 -1
  317. package/src/theme/components/calendar.ts +2 -0
  318. package/src/theme/components/cardCarousel.ts +1 -8
  319. package/src/theme/components/carousel.ts +15 -1
  320. package/src/theme/components/checkbox.ts +5 -2
  321. package/src/theme/components/chip.ts +47 -0
  322. package/src/theme/components/empty.ts +12 -0
  323. package/src/theme/components/error.ts +16 -0
  324. package/src/theme/components/fab.ts +17 -11
  325. package/src/theme/components/list.ts +9 -5
  326. package/src/theme/components/pinInput.ts +15 -0
  327. package/src/theme/components/progress.ts +2 -2
  328. package/src/theme/components/radio.ts +8 -2
  329. package/src/theme/components/rate.ts +16 -0
  330. package/src/theme/components/sectionHeading.ts +2 -1
  331. package/src/theme/components/success.ts +12 -0
  332. package/src/theme/components/swipeable.ts +10 -1
  333. package/src/theme/components/switch.ts +4 -4
  334. package/src/theme/components/tabs.ts +3 -2
  335. package/src/theme/components/tag.ts +18 -2
  336. package/src/theme/components/textInput.ts +4 -4
  337. package/src/theme/components/toast.ts +5 -5
  338. package/src/theme/components/typography.ts +132 -1
  339. package/src/theme/getTheme.ts +24 -18
  340. package/src/theme/global/colors/__tests__/__snapshots__/eBens.spec.ts.snap +8 -8
  341. package/src/theme/global/colors/__tests__/__snapshots__/global.spec.ts.snap +6 -6
  342. package/src/theme/global/colors/__tests__/__snapshots__/globalDark.spec.ts.snap +1 -1
  343. package/src/theme/global/colors/__tests__/__snapshots__/jobs.spec.ts.snap +7 -7
  344. package/src/theme/global/colors/__tests__/__snapshots__/swag.spec.ts.snap +7 -7
  345. package/src/theme/global/colors/__tests__/__snapshots__/swagDark.spec.ts.snap +1 -1
  346. package/src/theme/global/colors/__tests__/__snapshots__/wallet.spec.ts.snap +8 -8
  347. package/src/theme/global/colors/__tests__/__snapshots__/work.spec.ts.snap +10 -10
  348. package/src/theme/global/colors/eBens.ts +2 -2
  349. package/src/theme/global/colors/global.ts +5 -5
  350. package/src/theme/global/colors/jobs.ts +1 -1
  351. package/src/theme/global/colors/swag.ts +1 -1
  352. package/src/theme/global/colors/wallet.ts +2 -2
  353. package/src/theme/global/colors/work.ts +4 -4
  354. package/src/theme/global/index.ts +3 -0
  355. package/src/theme/global/shadows.ts +19 -0
  356. package/src/theme/global/space.ts +2 -0
  357. package/src/types.ts +4 -0
  358. package/src/utils/helpers.ts +4 -1
  359. package/testUtils/setup.tsx +32 -2
  360. package/tsconfig.json +14 -3
  361. package/types/components/Accordion/AccordionItem.d.ts +2 -1
  362. package/types/components/Accordion/StyledAccordion.d.ts +5 -6
  363. package/types/components/Accordion/index.d.ts +1 -1
  364. package/types/components/Alert/StyledAlert.d.ts +5 -6
  365. package/types/components/Alert/index.d.ts +18 -2
  366. package/types/components/AnimatedScroller/AnimatedFAB.d.ts +12 -0
  367. package/types/components/AnimatedScroller/AnimatedScrollable.d.ts +16 -0
  368. package/types/components/AnimatedScroller/FlatListWithFAB.d.ts +12 -0
  369. package/types/components/AnimatedScroller/ScrollViewWithFAB.d.ts +12 -0
  370. package/types/components/AnimatedScroller/SectionListWithFAB.d.ts +12 -0
  371. package/types/components/AnimatedScroller/index.d.ts +4 -0
  372. package/types/components/Attachment/StyledAttachment.d.ts +4 -5
  373. package/types/components/Attachment/index.d.ts +2 -1
  374. package/types/components/Avatar/Avatar.d.ts +2 -1
  375. package/types/components/Avatar/AvatarStack/StyledAvatarStack.d.ts +15 -3
  376. package/types/components/Avatar/AvatarStack/index.d.ts +14 -2
  377. package/types/components/Avatar/AvatarStack/utils.d.ts +0 -0
  378. package/types/components/Avatar/StyledAvatar.d.ts +4 -5
  379. package/types/components/Avatar/index.d.ts +2 -2
  380. package/types/components/Badge/Status.d.ts +0 -0
  381. package/types/components/Badge/StyledBadge.d.ts +4 -9
  382. package/types/components/Badge/index.d.ts +0 -0
  383. package/types/components/BottomNavigation/StyledBottomNavigation.d.ts +8 -9
  384. package/types/components/BottomNavigation/index.d.ts +0 -0
  385. package/types/components/BottomSheet/BottomSheetContext.d.ts +0 -1
  386. package/types/components/BottomSheet/Footer.d.ts +2 -1
  387. package/types/components/BottomSheet/Header.d.ts +2 -1
  388. package/types/components/BottomSheet/ScrollView.d.ts +0 -0
  389. package/types/components/BottomSheet/StyledBottomSheet.d.ts +8 -13
  390. package/types/components/BottomSheet/index.d.ts +0 -0
  391. package/types/components/Box/StyledBox.d.ts +1 -2
  392. package/types/components/Box/config.d.ts +0 -0
  393. package/types/components/Box/index.d.ts +2 -1
  394. package/types/components/Box/types.d.ts +0 -1
  395. package/types/components/Button/Button.d.ts +3 -3
  396. package/types/components/Button/IconButton.d.ts +2 -1
  397. package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +5 -6
  398. package/types/components/Button/LoadingIndicator/index.d.ts +2 -1
  399. package/types/components/Button/StyledButton.d.ts +16 -10
  400. package/types/components/Button/UtilityButton/StyledUtilityButton.d.ts +4 -5
  401. package/types/components/Button/UtilityButton/index.d.ts +2 -1
  402. package/types/components/Button/index.d.ts +0 -0
  403. package/types/components/Calendar/CalendarRowItem.d.ts +2 -1
  404. package/types/components/Calendar/StyledCalendar.d.ts +8 -9
  405. package/types/components/Calendar/helpers.d.ts +0 -0
  406. package/types/components/Calendar/index.d.ts +15 -1
  407. package/types/components/Card/DataCard/StyledDataCard.d.ts +2 -3
  408. package/types/components/Card/DataCard/index.d.ts +0 -0
  409. package/types/components/Card/StyledCard.d.ts +1 -2
  410. package/types/components/Card/index.d.ts +0 -0
  411. package/types/components/Carousel/CardCarousel.d.ts +2 -1
  412. package/types/components/Carousel/CarouselItem.d.ts +2 -1
  413. package/types/components/Carousel/StyledCardCarousel.d.ts +5 -12
  414. package/types/components/Carousel/StyledCarousel.d.ts +13 -14
  415. package/types/components/Carousel/contants.d.ts +0 -0
  416. package/types/components/Carousel/index.d.ts +2 -2
  417. package/types/components/Carousel/types.d.ts +4 -4
  418. package/types/components/Checkbox/StyledCheckbox.d.ts +12 -10
  419. package/types/components/Checkbox/index.d.ts +12 -1
  420. package/types/components/Chip/StyledChip.d.ts +30 -0
  421. package/types/components/Chip/index.d.ts +27 -0
  422. package/types/components/Collapse/StyledCollapse.d.ts +3 -6
  423. package/types/components/Collapse/index.d.ts +2 -1
  424. package/types/components/ContentNavigator/StyledContentNavigator.d.ts +2 -7
  425. package/types/components/ContentNavigator/index.d.ts +2 -1
  426. package/types/components/DatePicker/DatePickerAndroid.d.ts +2 -1
  427. package/types/components/DatePicker/DatePickerCalendar.d.ts +2 -1
  428. package/types/components/DatePicker/DatePickerIOS.d.ts +2 -2
  429. package/types/components/DatePicker/StyledDatePicker.d.ts +1 -2
  430. package/types/components/DatePicker/index.d.ts +2 -1
  431. package/types/components/DatePicker/types.d.ts +8 -0
  432. package/types/components/DatePicker/useCalculateDate.d.ts +4 -0
  433. package/types/components/Divider/StyledDivider.d.ts +1 -2
  434. package/types/components/Divider/index.d.ts +2 -1
  435. package/types/components/Drawer/DragableDrawer/helpers.d.ts +0 -0
  436. package/types/components/Drawer/DragableDrawer/index.d.ts +0 -0
  437. package/types/components/Drawer/StyledDrawer.d.ts +7 -14
  438. package/types/components/Drawer/index.d.ts +0 -0
  439. package/types/components/Empty/StyledEmpty.d.ts +5 -6
  440. package/types/components/Empty/index.d.ts +0 -0
  441. package/types/components/Error/StyledError.d.ts +15 -22
  442. package/types/components/Error/index.d.ts +0 -0
  443. package/types/components/FAB/ActionGroup/ActionItem.d.ts +7 -2
  444. package/types/components/FAB/ActionGroup/StyledActionGroup.d.ts +13 -17
  445. package/types/components/FAB/ActionGroup/StyledActionItem.d.ts +4 -5
  446. package/types/components/FAB/ActionGroup/index.d.ts +12 -1
  447. package/types/components/FAB/AnimatedFABIcon.d.ts +2 -1
  448. package/types/components/FAB/FAB.d.ts +8 -2
  449. package/types/components/FAB/StyledFAB.d.ts +11 -12
  450. package/types/components/FAB/index.d.ts +2 -2
  451. package/types/components/HeroDesignProvider/index.d.ts +4 -0
  452. package/types/components/Icon/AnimatedIcon.d.ts +2 -1
  453. package/types/components/Icon/HeroIcon/index.d.ts +1 -2
  454. package/types/components/Icon/IconList.d.ts +1 -1
  455. package/types/components/Icon/index.d.ts +3 -2
  456. package/types/components/Icon/utils.d.ts +1 -1
  457. package/types/components/Image/index.d.ts +0 -0
  458. package/types/components/List/BasicListItem.d.ts +0 -0
  459. package/types/components/List/ListItem.d.ts +0 -0
  460. package/types/components/List/StyledBasicListItem.d.ts +4 -5
  461. package/types/components/List/StyledListItem.d.ts +7 -8
  462. package/types/components/List/index.d.ts +0 -0
  463. package/types/components/Modal/index.d.ts +37 -0
  464. package/types/components/PageControl/StyledPageControl.d.ts +2 -5
  465. package/types/components/PageControl/index.d.ts +2 -1
  466. package/types/components/PinInput/PinCell.d.ts +2 -1
  467. package/types/components/PinInput/StyledPinInput.d.ts +12 -13
  468. package/types/components/PinInput/index.d.ts +0 -0
  469. package/types/components/Portal/PortalHost.d.ts +5 -0
  470. package/types/components/Portal/PortalProvider.d.ts +7 -0
  471. package/types/components/Portal/constants.d.ts +8 -0
  472. package/types/components/Portal/contexts.d.ts +9 -0
  473. package/types/components/Portal/index.d.ts +18 -0
  474. package/types/components/Portal/reducer.d.ts +5 -0
  475. package/types/components/Portal/types.d.ts +22 -0
  476. package/types/components/Portal/usePortal.d.ts +8 -0
  477. package/types/components/Portal/usePortalState.d.ts +1 -0
  478. package/types/components/Progress/ProgressBar.d.ts +0 -0
  479. package/types/components/Progress/ProgressCircle.d.ts +0 -0
  480. package/types/components/Progress/StyledProgressBar.d.ts +2 -5
  481. package/types/components/Progress/StyledProgressCircle.d.ts +6 -7
  482. package/types/components/Progress/__tests__/index.spec.d.ts +0 -0
  483. package/types/components/Progress/constants.d.ts +0 -0
  484. package/types/components/Progress/index.d.ts +0 -0
  485. package/types/components/Progress/types.d.ts +0 -0
  486. package/types/components/Radio/Radio.d.ts +15 -3
  487. package/types/components/Radio/RadioGroup.d.ts +5 -1
  488. package/types/components/Radio/StyledRadio.d.ts +14 -5
  489. package/types/components/Radio/index.d.ts +1 -2
  490. package/types/components/Radio/types.d.ts +3 -0
  491. package/types/components/Rate/StyledRate.d.ts +10 -0
  492. package/types/components/Rate/index.d.ts +29 -0
  493. package/types/components/RefreshControl/index.d.ts +2 -1
  494. package/types/components/RichTextEditor/EditorEvent.d.ts +1 -0
  495. package/types/components/RichTextEditor/EditorToolbar.d.ts +2 -1
  496. package/types/components/RichTextEditor/MentionList.d.ts +2 -1
  497. package/types/components/RichTextEditor/RichTextEditor.d.ts +2 -2
  498. package/types/components/RichTextEditor/StyledRichTextEditor.d.ts +2 -3
  499. package/types/components/RichTextEditor/StyledToolbar.d.ts +3 -4
  500. package/types/components/RichTextEditor/__mocks__/heroEditorApp.d.ts +0 -0
  501. package/types/components/RichTextEditor/constants.d.ts +0 -0
  502. package/types/components/RichTextEditor/heroEditorApp.d.ts +0 -0
  503. package/types/components/RichTextEditor/index.d.ts +2 -3
  504. package/types/components/RichTextEditor/types.d.ts +0 -0
  505. package/types/components/RichTextEditor/utils/events.d.ts +0 -0
  506. package/types/components/RichTextEditor/utils/rnWebView.d.ts +0 -0
  507. package/types/components/SectionHeading/StyledHeading.d.ts +7 -5
  508. package/types/components/SectionHeading/index.d.ts +7 -1
  509. package/types/components/Select/BaseOptionList.d.ts +1 -1
  510. package/types/components/Select/Footer.d.ts +2 -1
  511. package/types/components/Select/MultiSelect/Option.d.ts +2 -1
  512. package/types/components/Select/MultiSelect/OptionList.d.ts +2 -1
  513. package/types/components/Select/MultiSelect/index.d.ts +1 -1
  514. package/types/components/Select/SingleSelect/Option.d.ts +2 -1
  515. package/types/components/Select/SingleSelect/OptionList.d.ts +1 -1
  516. package/types/components/Select/SingleSelect/StyledSingleSelect.d.ts +1 -1
  517. package/types/components/Select/SingleSelect/index.d.ts +1 -1
  518. package/types/components/Select/StyledSelect.d.ts +3 -4
  519. package/types/components/Select/helpers.d.ts +1 -2
  520. package/types/components/Select/index.d.ts +1 -1
  521. package/types/components/Select/types.d.ts +0 -0
  522. package/types/components/Skeleton/StyledSkeleton.d.ts +2 -3
  523. package/types/components/Skeleton/index.d.ts +2 -1
  524. package/types/components/Slider/index.d.ts +2 -1
  525. package/types/components/Spinner/AnimatedSpinner.d.ts +2 -1
  526. package/types/components/Spinner/StyledSpinner.d.ts +4 -5
  527. package/types/components/Spinner/index.d.ts +0 -0
  528. package/types/components/Success/StyledSuccess.d.ts +14 -19
  529. package/types/components/Success/index.d.ts +1 -1
  530. package/types/components/Swipeable/StyledSwipeable.d.ts +1 -2
  531. package/types/components/Swipeable/SwipeableAction.d.ts +2 -2
  532. package/types/components/Swipeable/index.d.ts +8 -4
  533. package/types/components/Switch/SelectorSwitch/Option.d.ts +2 -1
  534. package/types/components/Switch/SelectorSwitch/StyledSelectorSwitch.d.ts +4 -11
  535. package/types/components/Switch/SelectorSwitch/index.d.ts +0 -0
  536. package/types/components/Switch/StyledSwitch.d.ts +2 -5
  537. package/types/components/Switch/index.d.ts +0 -0
  538. package/types/components/Tabs/ActiveTabIndicator.d.ts +2 -1
  539. package/types/components/Tabs/SceneView.d.ts +1 -1
  540. package/types/components/Tabs/ScrollableTabs.d.ts +5 -1
  541. package/types/components/Tabs/{ScrollableTabsHeader.d.ts → ScrollableTabsHeader/ScrollableTabsHeader.d.ts} +8 -3
  542. package/types/components/Tabs/ScrollableTabsHeader/hooks/useInitHighlightedAnimation.d.ts +9 -0
  543. package/types/components/Tabs/ScrollableTabsHeader/hooks/useInitUnderlinedAnimation.d.ts +10 -0
  544. package/types/components/Tabs/StyledScrollableTabs.d.ts +12 -20
  545. package/types/components/Tabs/StyledTabs.d.ts +8 -18
  546. package/types/components/Tabs/TabWithBadge.d.ts +2 -2
  547. package/types/components/Tabs/index.d.ts +2 -1
  548. package/types/components/Tabs/useIsFocused.d.ts +0 -0
  549. package/types/components/Tabs/utils.d.ts +0 -0
  550. package/types/components/Tag/StyledTag.d.ts +4 -8
  551. package/types/components/Tag/index.d.ts +1 -0
  552. package/types/components/TextInput/StyledTextInput.d.ts +22 -46
  553. package/types/components/TextInput/index.d.ts +31 -2
  554. package/types/components/TimePicker/StyledTimePicker.d.ts +1 -2
  555. package/types/components/TimePicker/TimePickerAndroid.d.ts +2 -1
  556. package/types/components/TimePicker/TimePickerIOS.d.ts +2 -1
  557. package/types/components/TimePicker/index.d.ts +2 -1
  558. package/types/components/TimePicker/types.d.ts +0 -0
  559. package/types/components/Toast/StyledToast.d.ts +6 -9
  560. package/types/components/Toast/Toast.d.ts +0 -0
  561. package/types/components/Toast/ToastContainer.d.ts +0 -0
  562. package/types/components/Toast/ToastContext.d.ts +1 -1
  563. package/types/components/Toast/ToastProvider.d.ts +2 -1
  564. package/types/components/Toast/index.d.ts +1 -2
  565. package/types/components/Toast/types.d.ts +0 -0
  566. package/types/components/Toolbar/StyledToolbar.d.ts +6 -7
  567. package/types/components/Toolbar/ToolbarGroup.d.ts +2 -1
  568. package/types/components/Toolbar/ToolbarItem.d.ts +2 -1
  569. package/types/components/Toolbar/index.d.ts +3 -2
  570. package/types/components/Typography/Body/StyledBody.d.ts +14 -0
  571. package/types/components/Typography/Body/__tests__/StyledBody.d.ts +1 -0
  572. package/types/components/Typography/Body/index.d.ts +33 -0
  573. package/types/components/Typography/Caption/StyledCaption.d.ts +12 -0
  574. package/types/components/Typography/Caption/index.d.ts +27 -0
  575. package/types/components/Typography/Label/StyledLabel.d.ts +11 -0
  576. package/types/components/Typography/Label/__tests__/StyledLabel.d.ts +1 -0
  577. package/types/components/Typography/Label/index.d.ts +23 -0
  578. package/types/components/Typography/Text/StyledText.d.ts +1 -2
  579. package/types/components/Typography/Text/index.d.ts +2 -1
  580. package/types/components/Typography/Title/StyledTitle.d.ts +14 -0
  581. package/types/components/Typography/Title/__tests__/StyledTitle.d.ts +1 -0
  582. package/types/components/Typography/Title/index.d.ts +33 -0
  583. package/types/components/Typography/index.d.ts +11 -0
  584. package/types/components/Typography/types.d.ts +6 -0
  585. package/types/index.d.ts +6 -1
  586. package/types/testHelpers/renderWithTheme.d.ts +0 -0
  587. package/types/theme/ThemeProvider.d.ts +0 -1
  588. package/types/theme/ThemeSwitcher.d.ts +2 -2
  589. package/types/theme/components/accordion.d.ts +0 -0
  590. package/types/theme/components/alert.d.ts +0 -0
  591. package/types/theme/components/attachment.d.ts +0 -0
  592. package/types/theme/components/avatar.d.ts +0 -0
  593. package/types/theme/components/badge.d.ts +15 -0
  594. package/types/theme/components/bottomNavigation.d.ts +0 -0
  595. package/types/theme/components/bottomSheet.d.ts +0 -0
  596. package/types/theme/components/button.d.ts +14 -0
  597. package/types/theme/components/calendar.d.ts +2 -0
  598. package/types/theme/components/card.d.ts +0 -0
  599. package/types/theme/components/cardCarousel.d.ts +0 -10
  600. package/types/theme/components/carousel.d.ts +15 -1
  601. package/types/theme/components/checkbox.d.ts +5 -2
  602. package/types/theme/components/chip.d.ts +40 -0
  603. package/types/theme/components/contentNavigator.d.ts +0 -0
  604. package/types/theme/components/datePicker.d.ts +0 -0
  605. package/types/theme/components/divider.d.ts +0 -0
  606. package/types/theme/components/drawer.d.ts +0 -0
  607. package/types/theme/components/empty.d.ts +11 -0
  608. package/types/theme/components/error.d.ts +15 -0
  609. package/types/theme/components/fab.d.ts +13 -7
  610. package/types/theme/components/icon.d.ts +0 -0
  611. package/types/theme/components/image.d.ts +0 -0
  612. package/types/theme/components/list.d.ts +11 -7
  613. package/types/theme/components/pageControl.d.ts +0 -0
  614. package/types/theme/components/pinInput.d.ts +15 -0
  615. package/types/theme/components/progress.d.ts +0 -0
  616. package/types/theme/components/radio.d.ts +7 -1
  617. package/types/theme/components/rate.d.ts +11 -0
  618. package/types/theme/components/refreshControl.d.ts +0 -0
  619. package/types/theme/components/richTextEditor.d.ts +0 -0
  620. package/types/theme/components/sectionHeading.d.ts +1 -0
  621. package/types/theme/components/select.d.ts +0 -0
  622. package/types/theme/components/skeleton.d.ts +0 -0
  623. package/types/theme/components/slider.d.ts +0 -0
  624. package/types/theme/components/spinner.d.ts +0 -0
  625. package/types/theme/components/success.d.ts +11 -0
  626. package/types/theme/components/swipeable.d.ts +7 -0
  627. package/types/theme/components/switch.d.ts +1 -1
  628. package/types/theme/components/tabs.d.ts +1 -0
  629. package/types/theme/components/tag.d.ts +16 -1
  630. package/types/theme/components/textInput.d.ts +2 -2
  631. package/types/theme/components/timePicker.d.ts +0 -0
  632. package/types/theme/components/toast.d.ts +1 -1
  633. package/types/theme/components/toolbar.d.ts +0 -0
  634. package/types/theme/components/typography.d.ts +122 -0
  635. package/types/theme/getTheme.d.ts +22 -18
  636. package/types/theme/global/borders.d.ts +0 -0
  637. package/types/theme/global/colors/eBens.d.ts +0 -0
  638. package/types/theme/global/colors/global.d.ts +0 -0
  639. package/types/theme/global/colors/globalDark.d.ts +0 -0
  640. package/types/theme/global/colors/jobs.d.ts +0 -0
  641. package/types/theme/global/colors/swag.d.ts +0 -0
  642. package/types/theme/global/colors/swagDark.d.ts +0 -0
  643. package/types/theme/global/colors/types.d.ts +0 -0
  644. package/types/theme/global/colors/wallet.d.ts +0 -0
  645. package/types/theme/global/colors/work.d.ts +0 -0
  646. package/types/theme/global/index.d.ts +12 -0
  647. package/types/theme/global/scale.d.ts +0 -0
  648. package/types/theme/global/shadows.d.ts +16 -0
  649. package/types/theme/global/sizes.d.ts +0 -0
  650. package/types/theme/global/space.d.ts +1 -0
  651. package/types/theme/global/typography.d.ts +0 -0
  652. package/types/theme/index.d.ts +0 -0
  653. package/types/types.d.ts +3 -1
  654. package/types/utils/functions.d.ts +0 -0
  655. package/types/utils/helpers.d.ts +1 -1
  656. package/types/utils/hooks.d.ts +0 -0
  657. package/types/utils/scale.d.ts +0 -0
  658. package/.turbo/turbo-build.log +0 -8
  659. package/.turbo/turbo-build:types.log +0 -1
  660. package/.turbo/turbo-lint.log +0 -153
  661. package/.turbo/turbo-publish:npm.log +0 -0
  662. package/.turbo/turbo-type-check.log +0 -1
  663. package/types/components/Carousel/CarouselPaginator/StyledCarouselPaginator.d.ts +0 -14
  664. package/types/components/Carousel/CarouselPaginator/index.d.ts +0 -7
  665. package/types/components/Select/StyledOptionList.d.ts +0 -12
  666. package/types/components/SwipeableV2/StyledSwipeable.d.ts +0 -15
  667. package/types/components/SwipeableV2/index.d.ts +0 -46
  668. package/types/theme/global/colors/legacySystemPalette.d.ts +0 -3
@@ -1,11 +1,34 @@
1
1
  // Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
 
3
3
  exports[`rendering allows custom renderer 1`] = `
4
- Array [
4
+ <View
5
+ style={
6
+ {
7
+ "flex": 1,
8
+ }
9
+ }
10
+ >
5
11
  <View
6
12
  pointerEvents="auto"
7
13
  >
8
14
  <View
15
+ accessibilityState={
16
+ {
17
+ "busy": undefined,
18
+ "checked": undefined,
19
+ "disabled": undefined,
20
+ "expanded": undefined,
21
+ "selected": undefined,
22
+ }
23
+ }
24
+ accessibilityValue={
25
+ {
26
+ "max": undefined,
27
+ "min": undefined,
28
+ "now": undefined,
29
+ "text": undefined,
30
+ }
31
+ }
9
32
  accessible={true}
10
33
  collapsable={false}
11
34
  focusable={true}
@@ -17,7 +40,7 @@ Array [
17
40
  onResponderTerminationRequest={[Function]}
18
41
  onStartShouldSetResponder={[Function]}
19
42
  style={
20
- Object {
43
+ {
21
44
  "opacity": 1,
22
45
  }
23
46
  }
@@ -28,8 +51,8 @@ Array [
28
51
  <View
29
52
  pointerEvents="auto"
30
53
  style={
31
- Array [
32
- Object {
54
+ [
55
+ {
33
56
  "marginTop": 8,
34
57
  "width": "100%",
35
58
  },
@@ -38,9 +61,10 @@ Array [
38
61
  }
39
62
  >
40
63
  <View
64
+ onLayout={[Function]}
41
65
  style={
42
- Array [
43
- Object {
66
+ [
67
+ {
44
68
  "alignItems": "center",
45
69
  "backgroundColor": "#ffffff",
46
70
  "borderRadius": 8,
@@ -53,8 +77,8 @@ Array [
53
77
  >
54
78
  <View
55
79
  style={
56
- Array [
57
- Object {
80
+ [
81
+ {
58
82
  "borderColor": "#001f23",
59
83
  "borderRadius": 8,
60
84
  "borderWidth": 1,
@@ -64,8 +88,8 @@ Array [
64
88
  "right": 0,
65
89
  "top": 0,
66
90
  },
67
- Array [
68
- Object {
91
+ [
92
+ {
69
93
  "backgroundColor": "#ffffff",
70
94
  },
71
95
  undefined,
@@ -76,10 +100,76 @@ Array [
76
100
  themeFocused={false}
77
101
  themeState="default"
78
102
  />
103
+ <View
104
+ onLayout={[Function]}
105
+ />
106
+ <View
107
+ collapsable={false}
108
+ pointerEvents="none"
109
+ style={
110
+ {
111
+ "alignItems": "center",
112
+ "flexDirection": "row",
113
+ "justifyContent": "center",
114
+ "left": 0,
115
+ "position": "absolute",
116
+ "right": 0,
117
+ "top": -10.666666666666666,
118
+ "transform": [
119
+ {
120
+ "translateY": 0,
121
+ },
122
+ {
123
+ "translateX": 24,
124
+ },
125
+ {
126
+ "scale": 1,
127
+ },
128
+ ],
129
+ "zIndex": 1,
130
+ }
131
+ }
132
+ themeVariant="text"
133
+ >
134
+ <Text
135
+ allowFontScaling={false}
136
+ onLayout={[Function]}
137
+ style={
138
+ [
139
+ {
140
+ "color": "#001f23",
141
+ "fontFamily": "BeVietnamPro-Regular",
142
+ "fontSize": 16,
143
+ "letterSpacing": 0.48,
144
+ "lineHeight": 24,
145
+ },
146
+ [
147
+ {
148
+ "alignContent": "center",
149
+ "alignItems": "center",
150
+ "color": "#001f23",
151
+ "marginTop": -2,
152
+ "textAlignVertical": "center",
153
+ },
154
+ {
155
+ "backgroundColor": "#ffffff",
156
+ },
157
+ ],
158
+ ]
159
+ }
160
+ testID="input-label"
161
+ themeIntent="body"
162
+ themeState="default"
163
+ themeTypeface="neutral"
164
+ themeVariant="regular"
165
+ >
166
+ Choose collaborators
167
+ </Text>
168
+ </View>
79
169
  <View
80
170
  style={
81
- Array [
82
- Object {
171
+ [
172
+ {
83
173
  "alignItems": "center",
84
174
  "alignSelf": "stretch",
85
175
  "flexDirection": "row",
@@ -90,62 +180,9 @@ Array [
90
180
  ]
91
181
  }
92
182
  >
93
- <View
94
- pointerEvents="none"
95
- style={
96
- Array [
97
- Object {
98
- "alignItems": "center",
99
- "bottom": 0,
100
- "flexDirection": "row",
101
- "left": 0,
102
- "position": "absolute",
103
- "right": 0,
104
- "top": 0,
105
- "zIndex": 9999,
106
- },
107
- undefined,
108
- ]
109
- }
110
- themeVariant="text"
111
- >
112
- <Text
113
- allowFontScaling={false}
114
- style={
115
- Array [
116
- Object {
117
- "color": "#001f23",
118
- "fontFamily": "BeVietnamPro-Regular",
119
- "fontSize": 14,
120
- "letterSpacing": 0.42,
121
- "lineHeight": 22,
122
- },
123
- Array [
124
- Object {
125
- "alignContent": "center",
126
- "alignItems": "center",
127
- "color": "#001f23",
128
- "fontSize": 16,
129
- "marginTop": -2,
130
- "textAlignVertical": "center",
131
- },
132
- undefined,
133
- ],
134
- ]
135
- }
136
- testID="input-label"
137
- themeFontSize="medium"
138
- themeFontWeight="regular"
139
- themeIntent="body"
140
- themeState="default"
141
- themeTypeface="neutral"
142
- >
143
- Choose collaborators
144
- </Text>
145
- </View>
146
183
  <TextInput
147
184
  accessibilityState={
148
- Object {
185
+ {
149
186
  "disabled": false,
150
187
  }
151
188
  }
@@ -158,8 +195,8 @@ Array [
158
195
  placeholder=" "
159
196
  pointerEvents="none"
160
197
  style={
161
- Array [
162
- Object {
198
+ [
199
+ {
163
200
  "alignSelf": "stretch",
164
201
  "flexGrow": 2,
165
202
  "fontFamily": "BeVietnamPro-Regular",
@@ -170,7 +207,7 @@ Array [
170
207
  "paddingVertical": 0,
171
208
  "textAlignVertical": "center",
172
209
  },
173
- Object {
210
+ {
174
211
  "backgroundColor": "#ffffff",
175
212
  "color": "#001f23",
176
213
  },
@@ -183,8 +220,8 @@ Array [
183
220
  <HeroIcon
184
221
  name="arrow-down"
185
222
  style={
186
- Array [
187
- Object {
223
+ [
224
+ {
188
225
  "color": "#001f23",
189
226
  "fontSize": 24,
190
227
  },
@@ -198,10 +235,11 @@ Array [
198
235
  </View>
199
236
  <View
200
237
  style={
201
- Array [
202
- Object {
238
+ [
239
+ {
203
240
  "minHeight": 16,
204
- "paddingLeft": 16,
241
+ "paddingHorizontal": 16,
242
+ "paddingTop": 2,
205
243
  },
206
244
  undefined,
207
245
  ]
@@ -209,8 +247,9 @@ Array [
209
247
  >
210
248
  <View
211
249
  style={
212
- Array [
213
- Object {
250
+ [
251
+ {
252
+ "alignItems": "flex-start",
214
253
  "flexDirection": "row",
215
254
  "justifyContent": "space-between",
216
255
  },
@@ -222,7 +261,7 @@ Array [
222
261
  </View>
223
262
  </View>
224
263
  </View>
225
- </View>,
264
+ </View>
226
265
  <Modal
227
266
  hardwareAccelerated={false}
228
267
  onRequestClose={[Function]}
@@ -232,8 +271,8 @@ Array [
232
271
  <View
233
272
  pointerEvents="box-none"
234
273
  style={
235
- Array [
236
- Object {
274
+ [
275
+ {
237
276
  "bottom": 0,
238
277
  "flexDirection": "column-reverse",
239
278
  "left": 0,
@@ -248,21 +287,38 @@ Array [
248
287
  <View
249
288
  onLayout={[Function]}
250
289
  style={
251
- Array [
252
- Array [
253
- Object {
290
+ [
291
+ [
292
+ {
254
293
  "flex": 1,
255
294
  "flexDirection": "column-reverse",
256
295
  },
257
296
  undefined,
258
297
  ],
259
- Object {
298
+ {
260
299
  "paddingBottom": 0,
261
300
  },
262
301
  ]
263
302
  }
264
303
  >
265
304
  <View
305
+ accessibilityState={
306
+ {
307
+ "busy": undefined,
308
+ "checked": undefined,
309
+ "disabled": undefined,
310
+ "expanded": undefined,
311
+ "selected": undefined,
312
+ }
313
+ }
314
+ accessibilityValue={
315
+ {
316
+ "max": undefined,
317
+ "min": undefined,
318
+ "now": undefined,
319
+ "text": undefined,
320
+ }
321
+ }
266
322
  accessible={true}
267
323
  collapsable={false}
268
324
  focusable={true}
@@ -276,7 +332,7 @@ Array [
276
332
  onResponderTerminationRequest={[Function]}
277
333
  onStartShouldSetResponder={[Function]}
278
334
  style={
279
- Object {
335
+ {
280
336
  "backgroundColor": "#000000",
281
337
  "bottom": 0,
282
338
  "left": 0,
@@ -289,9 +345,8 @@ Array [
289
345
  />
290
346
  <RCTSafeAreaView
291
347
  collapsable={false}
292
- emulateUnlessSupported={true}
293
348
  style={
294
- Object {
349
+ {
295
350
  "backgroundColor": "#ffffff",
296
351
  "borderTopLeftRadius": 16,
297
352
  "borderTopRightRadius": 16,
@@ -299,17 +354,17 @@ Array [
299
354
  "maxHeight": "94%",
300
355
  "paddingBottom": 0,
301
356
  "shadowColor": "#001f23",
302
- "shadowOffset": Object {
357
+ "shadowOffset": {
303
358
  "height": 3,
304
359
  "width": 0,
305
360
  },
306
361
  "shadowOpacity": 0.4,
307
362
  "shadowRadius": 16,
308
- "transform": Array [
309
- Object {
363
+ "transform": [
364
+ {
310
365
  "scaleY": 1,
311
366
  },
312
- Object {
367
+ {
313
368
  "translateY": 0,
314
369
  },
315
370
  ],
@@ -319,8 +374,8 @@ Array [
319
374
  >
320
375
  <View
321
376
  style={
322
- Array [
323
- Object {
377
+ [
378
+ {
324
379
  "flexDirection": "row",
325
380
  "paddingHorizontal": 16,
326
381
  "paddingVertical": 8,
@@ -331,8 +386,8 @@ Array [
331
386
  >
332
387
  <View
333
388
  style={
334
- Array [
335
- Object {
389
+ [
390
+ {
336
391
  "flex": 1,
337
392
  "justifyContent": "center",
338
393
  },
@@ -343,29 +398,28 @@ Array [
343
398
  <Text
344
399
  allowFontScaling={false}
345
400
  style={
346
- Array [
347
- Object {
401
+ [
402
+ {
348
403
  "color": "#001f23",
349
404
  "fontFamily": "BeVietnamPro-SemiBold",
350
405
  "fontSize": 16,
351
- "letterSpacing": 0.48,
406
+ "letterSpacing": 0.24,
352
407
  "lineHeight": 24,
353
408
  },
354
409
  undefined,
355
410
  ]
356
411
  }
357
- themeFontSize="large"
358
- themeFontWeight="semi-bold"
359
412
  themeIntent="body"
360
413
  themeTypeface="neutral"
414
+ themeVariant="regular-bold"
361
415
  >
362
416
  Choose collaborators
363
417
  </Text>
364
418
  </View>
365
419
  <View
366
420
  style={
367
- Array [
368
- Object {
421
+ [
422
+ {
369
423
  "alignItems": "center",
370
424
  "height": 48,
371
425
  "justifyContent": "center",
@@ -377,6 +431,23 @@ Array [
377
431
  }
378
432
  >
379
433
  <View
434
+ accessibilityState={
435
+ {
436
+ "busy": undefined,
437
+ "checked": undefined,
438
+ "disabled": undefined,
439
+ "expanded": undefined,
440
+ "selected": undefined,
441
+ }
442
+ }
443
+ accessibilityValue={
444
+ {
445
+ "max": undefined,
446
+ "min": undefined,
447
+ "now": undefined,
448
+ "text": undefined,
449
+ }
450
+ }
380
451
  accessible={true}
381
452
  collapsable={false}
382
453
  focusable={true}
@@ -388,7 +459,7 @@ Array [
388
459
  onResponderTerminationRequest={[Function]}
389
460
  onStartShouldSetResponder={[Function]}
390
461
  style={
391
- Object {
462
+ {
392
463
  "opacity": 1,
393
464
  }
394
465
  }
@@ -397,8 +468,8 @@ Array [
397
468
  <HeroIcon
398
469
  name="cancel"
399
470
  style={
400
- Array [
401
- Object {
471
+ [
472
+ {
402
473
  "color": "#001f23",
403
474
  "fontSize": 16,
404
475
  },
@@ -414,31 +485,31 @@ Array [
414
485
  <RCTScrollView
415
486
  ListFooterComponent={null}
416
487
  data={
417
- Array [
418
- Object {
488
+ [
489
+ {
419
490
  "category": "D",
420
- "data": Array [
421
- Object {
491
+ "data": [
492
+ {
422
493
  "role": "Senior Developer",
423
494
  "text": "Daniel",
424
495
  "value": "daniel",
425
496
  },
426
- Object {
497
+ {
427
498
  "role": "Manager",
428
499
  "text": "Daemon",
429
500
  "value": "daemon",
430
501
  },
431
502
  ],
432
503
  },
433
- Object {
504
+ {
434
505
  "category": "J",
435
- "data": Array [
436
- Object {
506
+ "data": [
507
+ {
437
508
  "role": "UX Designer",
438
509
  "text": "Jennifer",
439
510
  "value": "jennifer",
440
511
  },
441
- Object {
512
+ {
442
513
  "role": "Junior Developer",
443
514
  "text": "Josh ",
444
515
  "value": "josh",
@@ -463,34 +534,35 @@ Array [
463
534
  renderItem={[Function]}
464
535
  scrollEventThrottle={50}
465
536
  stickyHeaderIndices={
466
- Array [
537
+ [
467
538
  0,
468
539
  4,
469
540
  ]
470
541
  }
471
542
  style={
472
- Array [
473
- Object {
543
+ [
544
+ {
474
545
  "paddingHorizontal": 12,
475
546
  },
476
- Array [
477
- Object {
547
+ [
548
+ {
478
549
  "paddingBottom": 16,
479
550
  },
480
- Object {},
551
+ {},
481
552
  ],
482
553
  ]
483
554
  }
484
555
  >
485
556
  <View>
486
557
  <View
558
+ onFocusCapture={[Function]}
487
559
  onLayout={[Function]}
488
560
  style={null}
489
561
  >
490
562
  <View
491
563
  style={
492
- Array [
493
- Object {
564
+ [
565
+ {
494
566
  "alignContent": "center",
495
567
  "backgroundColor": "#f6f6f7",
496
568
  "display": "flex",
@@ -500,16 +572,18 @@ Array [
500
572
  "paddingHorizontal": 16,
501
573
  "paddingVertical": 8,
502
574
  },
503
- Object {
575
+ {
504
576
  "marginBottom": 0,
505
577
  },
506
578
  ]
507
579
  }
580
+ themeSize="medium"
508
581
  >
509
582
  <View
510
583
  style={
511
- Array [
512
- Object {
584
+ [
585
+ {
586
+ "alignItems": "center",
513
587
  "display": "flex",
514
588
  "flexDirection": "row",
515
589
  },
@@ -519,9 +593,9 @@ Array [
519
593
  >
520
594
  <View
521
595
  style={
522
- Array [
523
- Object {
524
- "marginRight": 8,
596
+ [
597
+ {
598
+ "marginRight": 12,
525
599
  },
526
600
  undefined,
527
601
  ]
@@ -530,21 +604,20 @@ Array [
530
604
  <Text
531
605
  allowFontScaling={false}
532
606
  style={
533
- Array [
534
- Object {
607
+ [
608
+ {
535
609
  "color": "#001f23",
536
610
  "fontFamily": "BeVietnamPro-Regular",
537
- "fontSize": 16,
611
+ "fontSize": 14,
538
612
  "letterSpacing": 0.48,
539
- "lineHeight": 24,
613
+ "lineHeight": 22,
540
614
  },
541
615
  undefined,
542
616
  ]
543
617
  }
544
- themeFontSize="large"
545
- themeFontWeight="regular"
546
618
  themeIntent="body"
547
619
  themeTypeface="neutral"
620
+ themeVariant="small"
548
621
  >
549
622
  D
550
623
  </Text>
@@ -552,6 +625,7 @@ Array [
552
625
  </View>
553
626
  </View>
554
627
  <View
628
+ onFocusCapture={[Function]}
555
629
  onLayout={[Function]}
556
630
  style={null}
557
631
  >
@@ -559,15 +633,15 @@ Array [
559
633
  <View
560
634
  highlighted={false}
561
635
  section={
562
- Object {
636
+ {
563
637
  "category": "D",
564
- "data": Array [
565
- Object {
638
+ "data": [
639
+ {
566
640
  "role": "Senior Developer",
567
641
  "text": "Daniel",
568
642
  "value": "daniel",
569
643
  },
570
- Object {
644
+ {
571
645
  "role": "Manager",
572
646
  "text": "Daemon",
573
647
  "value": "daemon",
@@ -576,30 +650,30 @@ Array [
576
650
  }
577
651
  }
578
652
  style={
579
- Array [
580
- Object {
653
+ [
654
+ {
581
655
  "marginTop": 12,
582
656
  },
583
657
  undefined,
584
658
  ]
585
659
  }
586
660
  trailingItem={
587
- Object {
661
+ {
588
662
  "role": "Senior Developer",
589
663
  "text": "Daniel",
590
664
  "value": "daniel",
591
665
  }
592
666
  }
593
667
  trailingSection={
594
- Object {
668
+ {
595
669
  "category": "J",
596
- "data": Array [
597
- Object {
670
+ "data": [
671
+ {
598
672
  "role": "UX Designer",
599
673
  "text": "Jennifer",
600
674
  "value": "jennifer",
601
675
  },
602
- Object {
676
+ {
603
677
  "role": "Junior Developer",
604
678
  "text": "Josh ",
605
679
  "value": "josh",
@@ -610,10 +684,18 @@ Array [
610
684
  />
611
685
  <View
612
686
  accessibilityState={
613
- Object {
687
+ {
614
688
  "disabled": false,
615
689
  }
616
690
  }
691
+ accessibilityValue={
692
+ {
693
+ "max": undefined,
694
+ "min": undefined,
695
+ "now": undefined,
696
+ "text": undefined,
697
+ }
698
+ }
617
699
  accessible={true}
618
700
  focusable={true}
619
701
  onClick={[Function]}
@@ -624,8 +706,8 @@ Array [
624
706
  onResponderTerminationRequest={[Function]}
625
707
  onStartShouldSetResponder={[Function]}
626
708
  style={
627
- Array [
628
- Object {
709
+ [
710
+ {
629
711
  "alignItems": "center",
630
712
  "backgroundColor": "#ffffff",
631
713
  "borderRadius": 4,
@@ -639,8 +721,8 @@ Array [
639
721
  >
640
722
  <View
641
723
  style={
642
- Array [
643
- Object {
724
+ [
725
+ {
644
726
  "flex": 1,
645
727
  },
646
728
  undefined,
@@ -650,29 +732,28 @@ Array [
650
732
  <Text
651
733
  allowFontScaling={false}
652
734
  style={
653
- Array [
654
- Object {
735
+ [
736
+ {
655
737
  "color": "#001f23",
656
738
  "fontFamily": "BeVietnamPro-SemiBold",
657
739
  "fontSize": 16,
658
- "letterSpacing": 0.48,
740
+ "letterSpacing": 0.24,
659
741
  "lineHeight": 24,
660
742
  },
661
743
  undefined,
662
744
  ]
663
745
  }
664
- themeFontSize="large"
665
- themeFontWeight="semi-bold"
666
746
  themeIntent="body"
667
747
  themeTypeface="neutral"
748
+ themeVariant="regular-bold"
668
749
  >
669
750
  Daniel
670
751
  </Text>
671
752
  <Text
672
753
  allowFontScaling={false}
673
754
  style={
674
- Array [
675
- Object {
755
+ [
756
+ {
676
757
  "color": "#4d6265",
677
758
  "fontFamily": "BeVietnamPro-Regular",
678
759
  "fontSize": 16,
@@ -682,10 +763,9 @@ Array [
682
763
  undefined,
683
764
  ]
684
765
  }
685
- themeFontSize="large"
686
- themeFontWeight="regular"
687
766
  themeIntent="subdued"
688
767
  themeTypeface="neutral"
768
+ themeVariant="regular"
689
769
  >
690
770
  Senior Developer
691
771
  </Text>
@@ -694,22 +774,22 @@ Array [
694
774
  <View
695
775
  highlighted={false}
696
776
  leadingItem={
697
- Object {
777
+ {
698
778
  "role": "Senior Developer",
699
779
  "text": "Daniel",
700
780
  "value": "daniel",
701
781
  }
702
782
  }
703
783
  section={
704
- Object {
784
+ {
705
785
  "category": "D",
706
- "data": Array [
707
- Object {
786
+ "data": [
787
+ {
708
788
  "role": "Senior Developer",
709
789
  "text": "Daniel",
710
790
  "value": "daniel",
711
791
  },
712
- Object {
792
+ {
713
793
  "role": "Manager",
714
794
  "text": "Daemon",
715
795
  "value": "daemon",
@@ -718,30 +798,30 @@ Array [
718
798
  }
719
799
  }
720
800
  style={
721
- Array [
722
- Object {
801
+ [
802
+ {
723
803
  "marginTop": 4,
724
804
  },
725
805
  undefined,
726
806
  ]
727
807
  }
728
808
  trailingItem={
729
- Object {
809
+ {
730
810
  "role": "Manager",
731
811
  "text": "Daemon",
732
812
  "value": "daemon",
733
813
  }
734
814
  }
735
815
  trailingSection={
736
- Object {
816
+ {
737
817
  "category": "J",
738
- "data": Array [
739
- Object {
818
+ "data": [
819
+ {
740
820
  "role": "UX Designer",
741
821
  "text": "Jennifer",
742
822
  "value": "jennifer",
743
823
  },
744
- Object {
824
+ {
745
825
  "role": "Junior Developer",
746
826
  "text": "Josh ",
747
827
  "value": "josh",
@@ -753,16 +833,25 @@ Array [
753
833
  </View>
754
834
  </View>
755
835
  <View
836
+ onFocusCapture={[Function]}
756
837
  onLayout={[Function]}
757
838
  style={null}
758
839
  >
759
840
  <View>
760
841
  <View
761
842
  accessibilityState={
762
- Object {
843
+ {
763
844
  "disabled": false,
764
845
  }
765
846
  }
847
+ accessibilityValue={
848
+ {
849
+ "max": undefined,
850
+ "min": undefined,
851
+ "now": undefined,
852
+ "text": undefined,
853
+ }
854
+ }
766
855
  accessible={true}
767
856
  focusable={true}
768
857
  onClick={[Function]}
@@ -773,8 +862,8 @@ Array [
773
862
  onResponderTerminationRequest={[Function]}
774
863
  onStartShouldSetResponder={[Function]}
775
864
  style={
776
- Array [
777
- Object {
865
+ [
866
+ {
778
867
  "alignItems": "center",
779
868
  "backgroundColor": "#ffffff",
780
869
  "borderRadius": 4,
@@ -788,8 +877,8 @@ Array [
788
877
  >
789
878
  <View
790
879
  style={
791
- Array [
792
- Object {
880
+ [
881
+ {
793
882
  "flex": 1,
794
883
  },
795
884
  undefined,
@@ -799,29 +888,28 @@ Array [
799
888
  <Text
800
889
  allowFontScaling={false}
801
890
  style={
802
- Array [
803
- Object {
891
+ [
892
+ {
804
893
  "color": "#001f23",
805
894
  "fontFamily": "BeVietnamPro-SemiBold",
806
895
  "fontSize": 16,
807
- "letterSpacing": 0.48,
896
+ "letterSpacing": 0.24,
808
897
  "lineHeight": 24,
809
898
  },
810
899
  undefined,
811
900
  ]
812
901
  }
813
- themeFontSize="large"
814
- themeFontWeight="semi-bold"
815
902
  themeIntent="body"
816
903
  themeTypeface="neutral"
904
+ themeVariant="regular-bold"
817
905
  >
818
906
  Daemon
819
907
  </Text>
820
908
  <Text
821
909
  allowFontScaling={false}
822
910
  style={
823
- Array [
824
- Object {
911
+ [
912
+ {
825
913
  "color": "#4d6265",
826
914
  "fontFamily": "BeVietnamPro-Regular",
827
915
  "fontSize": 16,
@@ -831,10 +919,9 @@ Array [
831
919
  undefined,
832
920
  ]
833
921
  }
834
- themeFontSize="large"
835
- themeFontWeight="regular"
836
922
  themeIntent="subdued"
837
923
  themeTypeface="neutral"
924
+ themeVariant="regular"
838
925
  >
839
926
  Manager
840
927
  </Text>
@@ -843,22 +930,22 @@ Array [
843
930
  <View
844
931
  highlighted={false}
845
932
  leadingItem={
846
- Object {
933
+ {
847
934
  "role": "Manager",
848
935
  "text": "Daemon",
849
936
  "value": "daemon",
850
937
  }
851
938
  }
852
939
  section={
853
- Object {
940
+ {
854
941
  "category": "D",
855
- "data": Array [
856
- Object {
942
+ "data": [
943
+ {
857
944
  "role": "Senior Developer",
858
945
  "text": "Daniel",
859
946
  "value": "daniel",
860
947
  },
861
- Object {
948
+ {
862
949
  "role": "Manager",
863
950
  "text": "Daemon",
864
951
  "value": "daemon",
@@ -867,23 +954,23 @@ Array [
867
954
  }
868
955
  }
869
956
  style={
870
- Array [
871
- Object {
957
+ [
958
+ {
872
959
  "marginTop": 12,
873
960
  },
874
961
  undefined,
875
962
  ]
876
963
  }
877
964
  trailingSection={
878
- Object {
965
+ {
879
966
  "category": "J",
880
- "data": Array [
881
- Object {
967
+ "data": [
968
+ {
882
969
  "role": "UX Designer",
883
970
  "text": "Jennifer",
884
971
  "value": "jennifer",
885
972
  },
886
- Object {
973
+ {
887
974
  "role": "Junior Developer",
888
975
  "text": "Josh ",
889
976
  "value": "josh",
@@ -895,17 +982,19 @@ Array [
895
982
  </View>
896
983
  </View>
897
984
  <View
985
+ onFocusCapture={[Function]}
898
986
  onLayout={[Function]}
899
987
  style={null}
900
988
  />
901
989
  <View
990
+ onFocusCapture={[Function]}
902
991
  onLayout={[Function]}
903
992
  style={null}
904
993
  >
905
994
  <View
906
995
  style={
907
- Array [
908
- Object {
996
+ [
997
+ {
909
998
  "alignContent": "center",
910
999
  "backgroundColor": "#f6f6f7",
911
1000
  "display": "flex",
@@ -915,16 +1004,18 @@ Array [
915
1004
  "paddingHorizontal": 16,
916
1005
  "paddingVertical": 8,
917
1006
  },
918
- Object {
1007
+ {
919
1008
  "marginBottom": 0,
920
1009
  },
921
1010
  ]
922
1011
  }
1012
+ themeSize="medium"
923
1013
  >
924
1014
  <View
925
1015
  style={
926
- Array [
927
- Object {
1016
+ [
1017
+ {
1018
+ "alignItems": "center",
928
1019
  "display": "flex",
929
1020
  "flexDirection": "row",
930
1021
  },
@@ -934,9 +1025,9 @@ Array [
934
1025
  >
935
1026
  <View
936
1027
  style={
937
- Array [
938
- Object {
939
- "marginRight": 8,
1028
+ [
1029
+ {
1030
+ "marginRight": 12,
940
1031
  },
941
1032
  undefined,
942
1033
  ]
@@ -945,21 +1036,20 @@ Array [
945
1036
  <Text
946
1037
  allowFontScaling={false}
947
1038
  style={
948
- Array [
949
- Object {
1039
+ [
1040
+ {
950
1041
  "color": "#001f23",
951
1042
  "fontFamily": "BeVietnamPro-Regular",
952
- "fontSize": 16,
1043
+ "fontSize": 14,
953
1044
  "letterSpacing": 0.48,
954
- "lineHeight": 24,
1045
+ "lineHeight": 22,
955
1046
  },
956
1047
  undefined,
957
1048
  ]
958
1049
  }
959
- themeFontSize="large"
960
- themeFontWeight="regular"
961
1050
  themeIntent="body"
962
1051
  themeTypeface="neutral"
1052
+ themeVariant="small"
963
1053
  >
964
1054
  J
965
1055
  </Text>
@@ -967,6 +1057,7 @@ Array [
967
1057
  </View>
968
1058
  </View>
969
1059
  <View
1060
+ onFocusCapture={[Function]}
970
1061
  onLayout={[Function]}
971
1062
  style={null}
972
1063
  >
@@ -974,15 +1065,15 @@ Array [
974
1065
  <View
975
1066
  highlighted={false}
976
1067
  leadingSection={
977
- Object {
1068
+ {
978
1069
  "category": "D",
979
- "data": Array [
980
- Object {
1070
+ "data": [
1071
+ {
981
1072
  "role": "Senior Developer",
982
1073
  "text": "Daniel",
983
1074
  "value": "daniel",
984
1075
  },
985
- Object {
1076
+ {
986
1077
  "role": "Manager",
987
1078
  "text": "Daemon",
988
1079
  "value": "daemon",
@@ -991,15 +1082,15 @@ Array [
991
1082
  }
992
1083
  }
993
1084
  section={
994
- Object {
1085
+ {
995
1086
  "category": "J",
996
- "data": Array [
997
- Object {
1087
+ "data": [
1088
+ {
998
1089
  "role": "UX Designer",
999
1090
  "text": "Jennifer",
1000
1091
  "value": "jennifer",
1001
1092
  },
1002
- Object {
1093
+ {
1003
1094
  "role": "Junior Developer",
1004
1095
  "text": "Josh ",
1005
1096
  "value": "josh",
@@ -1008,15 +1099,15 @@ Array [
1008
1099
  }
1009
1100
  }
1010
1101
  style={
1011
- Array [
1012
- Object {
1102
+ [
1103
+ {
1013
1104
  "marginTop": 12,
1014
1105
  },
1015
1106
  undefined,
1016
1107
  ]
1017
1108
  }
1018
1109
  trailingItem={
1019
- Object {
1110
+ {
1020
1111
  "role": "UX Designer",
1021
1112
  "text": "Jennifer",
1022
1113
  "value": "jennifer",
@@ -1025,10 +1116,18 @@ Array [
1025
1116
  />
1026
1117
  <View
1027
1118
  accessibilityState={
1028
- Object {
1119
+ {
1029
1120
  "disabled": false,
1030
1121
  }
1031
1122
  }
1123
+ accessibilityValue={
1124
+ {
1125
+ "max": undefined,
1126
+ "min": undefined,
1127
+ "now": undefined,
1128
+ "text": undefined,
1129
+ }
1130
+ }
1032
1131
  accessible={true}
1033
1132
  focusable={true}
1034
1133
  onClick={[Function]}
@@ -1039,8 +1138,8 @@ Array [
1039
1138
  onResponderTerminationRequest={[Function]}
1040
1139
  onStartShouldSetResponder={[Function]}
1041
1140
  style={
1042
- Array [
1043
- Object {
1141
+ [
1142
+ {
1044
1143
  "alignItems": "center",
1045
1144
  "backgroundColor": "#ffffff",
1046
1145
  "borderRadius": 4,
@@ -1054,8 +1153,8 @@ Array [
1054
1153
  >
1055
1154
  <View
1056
1155
  style={
1057
- Array [
1058
- Object {
1156
+ [
1157
+ {
1059
1158
  "flex": 1,
1060
1159
  },
1061
1160
  undefined,
@@ -1065,29 +1164,28 @@ Array [
1065
1164
  <Text
1066
1165
  allowFontScaling={false}
1067
1166
  style={
1068
- Array [
1069
- Object {
1167
+ [
1168
+ {
1070
1169
  "color": "#001f23",
1071
1170
  "fontFamily": "BeVietnamPro-SemiBold",
1072
1171
  "fontSize": 16,
1073
- "letterSpacing": 0.48,
1172
+ "letterSpacing": 0.24,
1074
1173
  "lineHeight": 24,
1075
1174
  },
1076
1175
  undefined,
1077
1176
  ]
1078
1177
  }
1079
- themeFontSize="large"
1080
- themeFontWeight="semi-bold"
1081
1178
  themeIntent="body"
1082
1179
  themeTypeface="neutral"
1180
+ themeVariant="regular-bold"
1083
1181
  >
1084
1182
  Jennifer
1085
1183
  </Text>
1086
1184
  <Text
1087
1185
  allowFontScaling={false}
1088
1186
  style={
1089
- Array [
1090
- Object {
1187
+ [
1188
+ {
1091
1189
  "color": "#4d6265",
1092
1190
  "fontFamily": "BeVietnamPro-Regular",
1093
1191
  "fontSize": 16,
@@ -1097,10 +1195,9 @@ Array [
1097
1195
  undefined,
1098
1196
  ]
1099
1197
  }
1100
- themeFontSize="large"
1101
- themeFontWeight="regular"
1102
1198
  themeIntent="subdued"
1103
1199
  themeTypeface="neutral"
1200
+ themeVariant="regular"
1104
1201
  >
1105
1202
  UX Designer
1106
1203
  </Text>
@@ -1109,22 +1206,22 @@ Array [
1109
1206
  <View
1110
1207
  highlighted={false}
1111
1208
  leadingItem={
1112
- Object {
1209
+ {
1113
1210
  "role": "UX Designer",
1114
1211
  "text": "Jennifer",
1115
1212
  "value": "jennifer",
1116
1213
  }
1117
1214
  }
1118
1215
  leadingSection={
1119
- Object {
1216
+ {
1120
1217
  "category": "D",
1121
- "data": Array [
1122
- Object {
1218
+ "data": [
1219
+ {
1123
1220
  "role": "Senior Developer",
1124
1221
  "text": "Daniel",
1125
1222
  "value": "daniel",
1126
1223
  },
1127
- Object {
1224
+ {
1128
1225
  "role": "Manager",
1129
1226
  "text": "Daemon",
1130
1227
  "value": "daemon",
@@ -1133,15 +1230,15 @@ Array [
1133
1230
  }
1134
1231
  }
1135
1232
  section={
1136
- Object {
1233
+ {
1137
1234
  "category": "J",
1138
- "data": Array [
1139
- Object {
1235
+ "data": [
1236
+ {
1140
1237
  "role": "UX Designer",
1141
1238
  "text": "Jennifer",
1142
1239
  "value": "jennifer",
1143
1240
  },
1144
- Object {
1241
+ {
1145
1242
  "role": "Junior Developer",
1146
1243
  "text": "Josh ",
1147
1244
  "value": "josh",
@@ -1150,15 +1247,15 @@ Array [
1150
1247
  }
1151
1248
  }
1152
1249
  style={
1153
- Array [
1154
- Object {
1250
+ [
1251
+ {
1155
1252
  "marginTop": 4,
1156
1253
  },
1157
1254
  undefined,
1158
1255
  ]
1159
1256
  }
1160
1257
  trailingItem={
1161
- Object {
1258
+ {
1162
1259
  "role": "Junior Developer",
1163
1260
  "text": "Josh ",
1164
1261
  "value": "josh",
@@ -1168,16 +1265,25 @@ Array [
1168
1265
  </View>
1169
1266
  </View>
1170
1267
  <View
1268
+ onFocusCapture={[Function]}
1171
1269
  onLayout={[Function]}
1172
1270
  style={null}
1173
1271
  >
1174
1272
  <View>
1175
1273
  <View
1176
1274
  accessibilityState={
1177
- Object {
1275
+ {
1178
1276
  "disabled": false,
1179
1277
  }
1180
1278
  }
1279
+ accessibilityValue={
1280
+ {
1281
+ "max": undefined,
1282
+ "min": undefined,
1283
+ "now": undefined,
1284
+ "text": undefined,
1285
+ }
1286
+ }
1181
1287
  accessible={true}
1182
1288
  focusable={true}
1183
1289
  onClick={[Function]}
@@ -1188,8 +1294,8 @@ Array [
1188
1294
  onResponderTerminationRequest={[Function]}
1189
1295
  onStartShouldSetResponder={[Function]}
1190
1296
  style={
1191
- Array [
1192
- Object {
1297
+ [
1298
+ {
1193
1299
  "alignItems": "center",
1194
1300
  "backgroundColor": "#ffffff",
1195
1301
  "borderRadius": 4,
@@ -1203,8 +1309,8 @@ Array [
1203
1309
  >
1204
1310
  <View
1205
1311
  style={
1206
- Array [
1207
- Object {
1312
+ [
1313
+ {
1208
1314
  "flex": 1,
1209
1315
  },
1210
1316
  undefined,
@@ -1214,29 +1320,28 @@ Array [
1214
1320
  <Text
1215
1321
  allowFontScaling={false}
1216
1322
  style={
1217
- Array [
1218
- Object {
1323
+ [
1324
+ {
1219
1325
  "color": "#001f23",
1220
1326
  "fontFamily": "BeVietnamPro-SemiBold",
1221
1327
  "fontSize": 16,
1222
- "letterSpacing": 0.48,
1328
+ "letterSpacing": 0.24,
1223
1329
  "lineHeight": 24,
1224
1330
  },
1225
1331
  undefined,
1226
1332
  ]
1227
1333
  }
1228
- themeFontSize="large"
1229
- themeFontWeight="semi-bold"
1230
1334
  themeIntent="body"
1231
1335
  themeTypeface="neutral"
1336
+ themeVariant="regular-bold"
1232
1337
  >
1233
1338
  Josh
1234
1339
  </Text>
1235
1340
  <Text
1236
1341
  allowFontScaling={false}
1237
1342
  style={
1238
- Array [
1239
- Object {
1343
+ [
1344
+ {
1240
1345
  "color": "#4d6265",
1241
1346
  "fontFamily": "BeVietnamPro-Regular",
1242
1347
  "fontSize": 16,
@@ -1246,10 +1351,9 @@ Array [
1246
1351
  undefined,
1247
1352
  ]
1248
1353
  }
1249
- themeFontSize="large"
1250
- themeFontWeight="regular"
1251
1354
  themeIntent="subdued"
1252
1355
  themeTypeface="neutral"
1356
+ themeVariant="regular"
1253
1357
  >
1254
1358
  Junior Developer
1255
1359
  </Text>
@@ -1258,22 +1362,22 @@ Array [
1258
1362
  <View
1259
1363
  highlighted={false}
1260
1364
  leadingItem={
1261
- Object {
1365
+ {
1262
1366
  "role": "Junior Developer",
1263
1367
  "text": "Josh ",
1264
1368
  "value": "josh",
1265
1369
  }
1266
1370
  }
1267
1371
  leadingSection={
1268
- Object {
1372
+ {
1269
1373
  "category": "D",
1270
- "data": Array [
1271
- Object {
1374
+ "data": [
1375
+ {
1272
1376
  "role": "Senior Developer",
1273
1377
  "text": "Daniel",
1274
1378
  "value": "daniel",
1275
1379
  },
1276
- Object {
1380
+ {
1277
1381
  "role": "Manager",
1278
1382
  "text": "Daemon",
1279
1383
  "value": "daemon",
@@ -1282,15 +1386,15 @@ Array [
1282
1386
  }
1283
1387
  }
1284
1388
  section={
1285
- Object {
1389
+ {
1286
1390
  "category": "J",
1287
- "data": Array [
1288
- Object {
1391
+ "data": [
1392
+ {
1289
1393
  "role": "UX Designer",
1290
1394
  "text": "Jennifer",
1291
1395
  "value": "jennifer",
1292
1396
  },
1293
- Object {
1397
+ {
1294
1398
  "role": "Junior Developer",
1295
1399
  "text": "Josh ",
1296
1400
  "value": "josh",
@@ -1299,8 +1403,8 @@ Array [
1299
1403
  }
1300
1404
  }
1301
1405
  style={
1302
- Array [
1303
- Object {
1406
+ [
1407
+ {
1304
1408
  "marginTop": 12,
1305
1409
  },
1306
1410
  undefined,
@@ -1310,6 +1414,7 @@ Array [
1310
1414
  </View>
1311
1415
  </View>
1312
1416
  <View
1417
+ onFocusCapture={[Function]}
1313
1418
  onLayout={[Function]}
1314
1419
  style={null}
1315
1420
  />
@@ -1318,16 +1423,59 @@ Array [
1318
1423
  </RCTSafeAreaView>
1319
1424
  </View>
1320
1425
  </View>
1321
- </Modal>,
1322
- ]
1426
+ </Modal>
1427
+ <View
1428
+ pointerEvents="box-none"
1429
+ position="bottom"
1430
+ style={
1431
+ [
1432
+ {
1433
+ "bottom": 0,
1434
+ "elevation": 9999,
1435
+ "flexDirection": "column-reverse",
1436
+ "left": 0,
1437
+ "paddingHorizontal": 24,
1438
+ "paddingVertical": 16,
1439
+ "position": "absolute",
1440
+ "right": 0,
1441
+ "top": 0,
1442
+ },
1443
+ undefined,
1444
+ ]
1445
+ }
1446
+ />
1447
+ </View>
1323
1448
  `;
1324
1449
 
1325
1450
  exports[`rendering renders correctly when bottom sheet is NOT visible 1`] = `
1326
- Array [
1451
+ <View
1452
+ style={
1453
+ {
1454
+ "flex": 1,
1455
+ }
1456
+ }
1457
+ >
1327
1458
  <View
1328
1459
  pointerEvents="auto"
1329
1460
  >
1330
1461
  <View
1462
+ accessibilityState={
1463
+ {
1464
+ "busy": undefined,
1465
+ "checked": undefined,
1466
+ "disabled": undefined,
1467
+ "expanded": undefined,
1468
+ "selected": undefined,
1469
+ }
1470
+ }
1471
+ accessibilityValue={
1472
+ {
1473
+ "max": undefined,
1474
+ "min": undefined,
1475
+ "now": undefined,
1476
+ "text": undefined,
1477
+ }
1478
+ }
1331
1479
  accessible={true}
1332
1480
  collapsable={false}
1333
1481
  focusable={true}
@@ -1339,7 +1487,7 @@ Array [
1339
1487
  onResponderTerminationRequest={[Function]}
1340
1488
  onStartShouldSetResponder={[Function]}
1341
1489
  style={
1342
- Object {
1490
+ {
1343
1491
  "opacity": 1,
1344
1492
  }
1345
1493
  }
@@ -1350,8 +1498,8 @@ Array [
1350
1498
  <View
1351
1499
  pointerEvents="auto"
1352
1500
  style={
1353
- Array [
1354
- Object {
1501
+ [
1502
+ {
1355
1503
  "marginTop": 8,
1356
1504
  "width": "100%",
1357
1505
  },
@@ -1360,9 +1508,10 @@ Array [
1360
1508
  }
1361
1509
  >
1362
1510
  <View
1511
+ onLayout={[Function]}
1363
1512
  style={
1364
- Array [
1365
- Object {
1513
+ [
1514
+ {
1366
1515
  "alignItems": "center",
1367
1516
  "backgroundColor": "#ffffff",
1368
1517
  "borderRadius": 8,
@@ -1375,8 +1524,8 @@ Array [
1375
1524
  >
1376
1525
  <View
1377
1526
  style={
1378
- Array [
1379
- Object {
1527
+ [
1528
+ {
1380
1529
  "borderColor": "#001f23",
1381
1530
  "borderRadius": 8,
1382
1531
  "borderWidth": 1,
@@ -1386,8 +1535,8 @@ Array [
1386
1535
  "right": 0,
1387
1536
  "top": 0,
1388
1537
  },
1389
- Array [
1390
- Object {
1538
+ [
1539
+ {
1391
1540
  "backgroundColor": "#ffffff",
1392
1541
  },
1393
1542
  undefined,
@@ -1399,62 +1548,75 @@ Array [
1399
1548
  themeState="filled"
1400
1549
  />
1401
1550
  <View
1551
+ onLayout={[Function]}
1552
+ />
1553
+ <View
1554
+ collapsable={false}
1402
1555
  pointerEvents="none"
1403
1556
  style={
1404
- Array [
1405
- Object {
1406
- "backgroundColor": "#ffffff",
1407
- "flexDirection": "row",
1408
- "left": 16,
1409
- "paddingHorizontal": 4,
1410
- "position": "absolute",
1411
- "top": -4,
1412
- "zIndex": 1,
1413
- },
1414
- Object {
1415
- "backgroundColor": "#ffffff",
1416
- },
1417
- ]
1557
+ {
1558
+ "alignItems": "center",
1559
+ "flexDirection": "row",
1560
+ "justifyContent": "center",
1561
+ "left": 0,
1562
+ "position": "absolute",
1563
+ "right": 0,
1564
+ "top": -10.666666666666666,
1565
+ "transform": [
1566
+ {
1567
+ "translateY": 0,
1568
+ },
1569
+ {
1570
+ "translateX": 24,
1571
+ },
1572
+ {
1573
+ "scale": 1,
1574
+ },
1575
+ ],
1576
+ "zIndex": 1,
1577
+ }
1418
1578
  }
1419
- testID="label-container"
1579
+ themeVariant="text"
1420
1580
  >
1421
1581
  <Text
1422
1582
  allowFontScaling={false}
1583
+ onLayout={[Function]}
1423
1584
  style={
1424
- Array [
1425
- Object {
1585
+ [
1586
+ {
1426
1587
  "color": "#001f23",
1427
1588
  "fontFamily": "BeVietnamPro-Regular",
1428
- "fontSize": 14,
1429
- "letterSpacing": 0.42,
1430
- "lineHeight": 22,
1589
+ "fontSize": 16,
1590
+ "letterSpacing": 0.48,
1591
+ "lineHeight": 24,
1431
1592
  },
1432
- Array [
1433
- Object {
1593
+ [
1594
+ {
1595
+ "alignContent": "center",
1596
+ "alignItems": "center",
1434
1597
  "color": "#001f23",
1435
- "fontSize": 12,
1436
- "lineHeight": 12,
1598
+ "marginTop": -2,
1599
+ "textAlignVertical": "center",
1437
1600
  },
1438
- Object {
1601
+ {
1439
1602
  "backgroundColor": "#ffffff",
1440
1603
  },
1441
1604
  ],
1442
1605
  ]
1443
1606
  }
1444
1607
  testID="input-label"
1445
- themeFontSize="medium"
1446
- themeFontWeight="regular"
1447
1608
  themeIntent="body"
1448
1609
  themeState="filled"
1449
1610
  themeTypeface="neutral"
1611
+ themeVariant="regular"
1450
1612
  >
1451
1613
  Allow notifications
1452
1614
  </Text>
1453
1615
  </View>
1454
1616
  <View
1455
1617
  style={
1456
- Array [
1457
- Object {
1618
+ [
1619
+ {
1458
1620
  "alignItems": "center",
1459
1621
  "alignSelf": "stretch",
1460
1622
  "flexDirection": "row",
@@ -1467,7 +1629,7 @@ Array [
1467
1629
  >
1468
1630
  <TextInput
1469
1631
  accessibilityState={
1470
- Object {
1632
+ {
1471
1633
  "disabled": false,
1472
1634
  }
1473
1635
  }
@@ -1480,8 +1642,8 @@ Array [
1480
1642
  placeholder=" "
1481
1643
  pointerEvents="none"
1482
1644
  style={
1483
- Array [
1484
- Object {
1645
+ [
1646
+ {
1485
1647
  "alignSelf": "stretch",
1486
1648
  "flexGrow": 2,
1487
1649
  "fontFamily": "BeVietnamPro-Regular",
@@ -1492,7 +1654,7 @@ Array [
1492
1654
  "paddingVertical": 0,
1493
1655
  "textAlignVertical": "center",
1494
1656
  },
1495
- Object {
1657
+ {
1496
1658
  "backgroundColor": "#ffffff",
1497
1659
  "color": "#001f23",
1498
1660
  },
@@ -1506,8 +1668,8 @@ Array [
1506
1668
  <HeroIcon
1507
1669
  name="arrow-down"
1508
1670
  style={
1509
- Array [
1510
- Object {
1671
+ [
1672
+ {
1511
1673
  "color": "#001f23",
1512
1674
  "fontSize": 24,
1513
1675
  },
@@ -1521,10 +1683,11 @@ Array [
1521
1683
  </View>
1522
1684
  <View
1523
1685
  style={
1524
- Array [
1525
- Object {
1686
+ [
1687
+ {
1526
1688
  "minHeight": 16,
1527
- "paddingLeft": 16,
1689
+ "paddingHorizontal": 16,
1690
+ "paddingTop": 2,
1528
1691
  },
1529
1692
  undefined,
1530
1693
  ]
@@ -1532,8 +1695,9 @@ Array [
1532
1695
  >
1533
1696
  <View
1534
1697
  style={
1535
- Array [
1536
- Object {
1698
+ [
1699
+ {
1700
+ "alignItems": "flex-start",
1537
1701
  "flexDirection": "row",
1538
1702
  "justifyContent": "space-between",
1539
1703
  },
@@ -1545,22 +1709,65 @@ Array [
1545
1709
  </View>
1546
1710
  </View>
1547
1711
  </View>
1548
- </View>,
1712
+ </View>
1549
1713
  <Modal
1550
1714
  hardwareAccelerated={false}
1551
1715
  onRequestClose={[Function]}
1552
1716
  transparent={true}
1553
1717
  visible={false}
1554
- />,
1555
- ]
1718
+ />
1719
+ <View
1720
+ pointerEvents="box-none"
1721
+ position="bottom"
1722
+ style={
1723
+ [
1724
+ {
1725
+ "bottom": 0,
1726
+ "elevation": 9999,
1727
+ "flexDirection": "column-reverse",
1728
+ "left": 0,
1729
+ "paddingHorizontal": 24,
1730
+ "paddingVertical": 16,
1731
+ "position": "absolute",
1732
+ "right": 0,
1733
+ "top": 0,
1734
+ },
1735
+ undefined,
1736
+ ]
1737
+ }
1738
+ />
1739
+ </View>
1556
1740
  `;
1557
1741
 
1558
1742
  exports[`rendering renders correctly when bottom sheet is visible 1`] = `
1559
- Array [
1743
+ <View
1744
+ style={
1745
+ {
1746
+ "flex": 1,
1747
+ }
1748
+ }
1749
+ >
1560
1750
  <View
1561
1751
  pointerEvents="auto"
1562
1752
  >
1563
1753
  <View
1754
+ accessibilityState={
1755
+ {
1756
+ "busy": undefined,
1757
+ "checked": undefined,
1758
+ "disabled": undefined,
1759
+ "expanded": undefined,
1760
+ "selected": undefined,
1761
+ }
1762
+ }
1763
+ accessibilityValue={
1764
+ {
1765
+ "max": undefined,
1766
+ "min": undefined,
1767
+ "now": undefined,
1768
+ "text": undefined,
1769
+ }
1770
+ }
1564
1771
  accessible={true}
1565
1772
  collapsable={false}
1566
1773
  focusable={true}
@@ -1572,7 +1779,7 @@ Array [
1572
1779
  onResponderTerminationRequest={[Function]}
1573
1780
  onStartShouldSetResponder={[Function]}
1574
1781
  style={
1575
- Object {
1782
+ {
1576
1783
  "opacity": 1,
1577
1784
  }
1578
1785
  }
@@ -1583,8 +1790,8 @@ Array [
1583
1790
  <View
1584
1791
  pointerEvents="auto"
1585
1792
  style={
1586
- Array [
1587
- Object {
1793
+ [
1794
+ {
1588
1795
  "marginTop": 8,
1589
1796
  "width": "100%",
1590
1797
  },
@@ -1593,9 +1800,10 @@ Array [
1593
1800
  }
1594
1801
  >
1595
1802
  <View
1803
+ onLayout={[Function]}
1596
1804
  style={
1597
- Array [
1598
- Object {
1805
+ [
1806
+ {
1599
1807
  "alignItems": "center",
1600
1808
  "backgroundColor": "#ffffff",
1601
1809
  "borderRadius": 8,
@@ -1608,8 +1816,8 @@ Array [
1608
1816
  >
1609
1817
  <View
1610
1818
  style={
1611
- Array [
1612
- Object {
1819
+ [
1820
+ {
1613
1821
  "borderColor": "#001f23",
1614
1822
  "borderRadius": 8,
1615
1823
  "borderWidth": 1,
@@ -1619,8 +1827,8 @@ Array [
1619
1827
  "right": 0,
1620
1828
  "top": 0,
1621
1829
  },
1622
- Array [
1623
- Object {
1830
+ [
1831
+ {
1624
1832
  "backgroundColor": "#ffffff",
1625
1833
  },
1626
1834
  undefined,
@@ -1632,62 +1840,75 @@ Array [
1632
1840
  themeState="filled"
1633
1841
  />
1634
1842
  <View
1843
+ onLayout={[Function]}
1844
+ />
1845
+ <View
1846
+ collapsable={false}
1635
1847
  pointerEvents="none"
1636
1848
  style={
1637
- Array [
1638
- Object {
1639
- "backgroundColor": "#ffffff",
1640
- "flexDirection": "row",
1641
- "left": 16,
1642
- "paddingHorizontal": 4,
1643
- "position": "absolute",
1644
- "top": -4,
1645
- "zIndex": 1,
1646
- },
1647
- Object {
1648
- "backgroundColor": "#ffffff",
1649
- },
1650
- ]
1849
+ {
1850
+ "alignItems": "center",
1851
+ "flexDirection": "row",
1852
+ "justifyContent": "center",
1853
+ "left": 0,
1854
+ "position": "absolute",
1855
+ "right": 0,
1856
+ "top": -10.666666666666666,
1857
+ "transform": [
1858
+ {
1859
+ "translateY": 0,
1860
+ },
1861
+ {
1862
+ "translateX": 24,
1863
+ },
1864
+ {
1865
+ "scale": 1,
1866
+ },
1867
+ ],
1868
+ "zIndex": 1,
1869
+ }
1651
1870
  }
1652
- testID="label-container"
1871
+ themeVariant="text"
1653
1872
  >
1654
1873
  <Text
1655
1874
  allowFontScaling={false}
1875
+ onLayout={[Function]}
1656
1876
  style={
1657
- Array [
1658
- Object {
1877
+ [
1878
+ {
1659
1879
  "color": "#001f23",
1660
1880
  "fontFamily": "BeVietnamPro-Regular",
1661
- "fontSize": 14,
1662
- "letterSpacing": 0.42,
1663
- "lineHeight": 22,
1881
+ "fontSize": 16,
1882
+ "letterSpacing": 0.48,
1883
+ "lineHeight": 24,
1664
1884
  },
1665
- Array [
1666
- Object {
1885
+ [
1886
+ {
1887
+ "alignContent": "center",
1888
+ "alignItems": "center",
1667
1889
  "color": "#001f23",
1668
- "fontSize": 12,
1669
- "lineHeight": 12,
1890
+ "marginTop": -2,
1891
+ "textAlignVertical": "center",
1670
1892
  },
1671
- Object {
1893
+ {
1672
1894
  "backgroundColor": "#ffffff",
1673
1895
  },
1674
1896
  ],
1675
1897
  ]
1676
1898
  }
1677
1899
  testID="input-label"
1678
- themeFontSize="medium"
1679
- themeFontWeight="regular"
1680
1900
  themeIntent="body"
1681
1901
  themeState="filled"
1682
1902
  themeTypeface="neutral"
1903
+ themeVariant="regular"
1683
1904
  >
1684
1905
  Allow notifications
1685
1906
  </Text>
1686
1907
  </View>
1687
1908
  <View
1688
1909
  style={
1689
- Array [
1690
- Object {
1910
+ [
1911
+ {
1691
1912
  "alignItems": "center",
1692
1913
  "alignSelf": "stretch",
1693
1914
  "flexDirection": "row",
@@ -1700,7 +1921,7 @@ Array [
1700
1921
  >
1701
1922
  <TextInput
1702
1923
  accessibilityState={
1703
- Object {
1924
+ {
1704
1925
  "disabled": false,
1705
1926
  }
1706
1927
  }
@@ -1713,8 +1934,8 @@ Array [
1713
1934
  placeholder=" "
1714
1935
  pointerEvents="none"
1715
1936
  style={
1716
- Array [
1717
- Object {
1937
+ [
1938
+ {
1718
1939
  "alignSelf": "stretch",
1719
1940
  "flexGrow": 2,
1720
1941
  "fontFamily": "BeVietnamPro-Regular",
@@ -1725,7 +1946,7 @@ Array [
1725
1946
  "paddingVertical": 0,
1726
1947
  "textAlignVertical": "center",
1727
1948
  },
1728
- Object {
1949
+ {
1729
1950
  "backgroundColor": "#ffffff",
1730
1951
  "color": "#001f23",
1731
1952
  },
@@ -1739,8 +1960,8 @@ Array [
1739
1960
  <HeroIcon
1740
1961
  name="arrow-down"
1741
1962
  style={
1742
- Array [
1743
- Object {
1963
+ [
1964
+ {
1744
1965
  "color": "#001f23",
1745
1966
  "fontSize": 24,
1746
1967
  },
@@ -1754,10 +1975,11 @@ Array [
1754
1975
  </View>
1755
1976
  <View
1756
1977
  style={
1757
- Array [
1758
- Object {
1978
+ [
1979
+ {
1759
1980
  "minHeight": 16,
1760
- "paddingLeft": 16,
1981
+ "paddingHorizontal": 16,
1982
+ "paddingTop": 2,
1761
1983
  },
1762
1984
  undefined,
1763
1985
  ]
@@ -1765,8 +1987,9 @@ Array [
1765
1987
  >
1766
1988
  <View
1767
1989
  style={
1768
- Array [
1769
- Object {
1990
+ [
1991
+ {
1992
+ "alignItems": "flex-start",
1770
1993
  "flexDirection": "row",
1771
1994
  "justifyContent": "space-between",
1772
1995
  },
@@ -1778,7 +2001,7 @@ Array [
1778
2001
  </View>
1779
2002
  </View>
1780
2003
  </View>
1781
- </View>,
2004
+ </View>
1782
2005
  <Modal
1783
2006
  hardwareAccelerated={false}
1784
2007
  onRequestClose={[Function]}
@@ -1788,8 +2011,8 @@ Array [
1788
2011
  <View
1789
2012
  pointerEvents="box-none"
1790
2013
  style={
1791
- Array [
1792
- Object {
2014
+ [
2015
+ {
1793
2016
  "bottom": 0,
1794
2017
  "flexDirection": "column-reverse",
1795
2018
  "left": 0,
@@ -1804,21 +2027,38 @@ Array [
1804
2027
  <View
1805
2028
  onLayout={[Function]}
1806
2029
  style={
1807
- Array [
1808
- Array [
1809
- Object {
2030
+ [
2031
+ [
2032
+ {
1810
2033
  "flex": 1,
1811
2034
  "flexDirection": "column-reverse",
1812
2035
  },
1813
2036
  undefined,
1814
2037
  ],
1815
- Object {
2038
+ {
1816
2039
  "paddingBottom": 0,
1817
2040
  },
1818
2041
  ]
1819
2042
  }
1820
2043
  >
1821
2044
  <View
2045
+ accessibilityState={
2046
+ {
2047
+ "busy": undefined,
2048
+ "checked": undefined,
2049
+ "disabled": undefined,
2050
+ "expanded": undefined,
2051
+ "selected": undefined,
2052
+ }
2053
+ }
2054
+ accessibilityValue={
2055
+ {
2056
+ "max": undefined,
2057
+ "min": undefined,
2058
+ "now": undefined,
2059
+ "text": undefined,
2060
+ }
2061
+ }
1822
2062
  accessible={true}
1823
2063
  collapsable={false}
1824
2064
  focusable={true}
@@ -1832,7 +2072,7 @@ Array [
1832
2072
  onResponderTerminationRequest={[Function]}
1833
2073
  onStartShouldSetResponder={[Function]}
1834
2074
  style={
1835
- Object {
2075
+ {
1836
2076
  "backgroundColor": "#000000",
1837
2077
  "bottom": 0,
1838
2078
  "left": 0,
@@ -1845,9 +2085,8 @@ Array [
1845
2085
  />
1846
2086
  <RCTSafeAreaView
1847
2087
  collapsable={false}
1848
- emulateUnlessSupported={true}
1849
2088
  style={
1850
- Object {
2089
+ {
1851
2090
  "backgroundColor": "#ffffff",
1852
2091
  "borderTopLeftRadius": 16,
1853
2092
  "borderTopRightRadius": 16,
@@ -1855,17 +2094,17 @@ Array [
1855
2094
  "maxHeight": "94%",
1856
2095
  "paddingBottom": 0,
1857
2096
  "shadowColor": "#001f23",
1858
- "shadowOffset": Object {
2097
+ "shadowOffset": {
1859
2098
  "height": 3,
1860
2099
  "width": 0,
1861
2100
  },
1862
2101
  "shadowOpacity": 0.4,
1863
2102
  "shadowRadius": 16,
1864
- "transform": Array [
1865
- Object {
2103
+ "transform": [
2104
+ {
1866
2105
  "scaleY": 1,
1867
2106
  },
1868
- Object {
2107
+ {
1869
2108
  "translateY": 0,
1870
2109
  },
1871
2110
  ],
@@ -1875,8 +2114,8 @@ Array [
1875
2114
  >
1876
2115
  <View
1877
2116
  style={
1878
- Array [
1879
- Object {
2117
+ [
2118
+ {
1880
2119
  "flexDirection": "row",
1881
2120
  "paddingHorizontal": 16,
1882
2121
  "paddingVertical": 8,
@@ -1887,8 +2126,8 @@ Array [
1887
2126
  >
1888
2127
  <View
1889
2128
  style={
1890
- Array [
1891
- Object {
2129
+ [
2130
+ {
1892
2131
  "flex": 1,
1893
2132
  "justifyContent": "center",
1894
2133
  },
@@ -1899,29 +2138,28 @@ Array [
1899
2138
  <Text
1900
2139
  allowFontScaling={false}
1901
2140
  style={
1902
- Array [
1903
- Object {
2141
+ [
2142
+ {
1904
2143
  "color": "#001f23",
1905
2144
  "fontFamily": "BeVietnamPro-SemiBold",
1906
2145
  "fontSize": 16,
1907
- "letterSpacing": 0.48,
2146
+ "letterSpacing": 0.24,
1908
2147
  "lineHeight": 24,
1909
2148
  },
1910
2149
  undefined,
1911
2150
  ]
1912
2151
  }
1913
- themeFontSize="large"
1914
- themeFontWeight="semi-bold"
1915
2152
  themeIntent="body"
1916
2153
  themeTypeface="neutral"
2154
+ themeVariant="regular-bold"
1917
2155
  >
1918
2156
  Allow notifications
1919
2157
  </Text>
1920
2158
  </View>
1921
2159
  <View
1922
2160
  style={
1923
- Array [
1924
- Object {
2161
+ [
2162
+ {
1925
2163
  "alignItems": "center",
1926
2164
  "height": 48,
1927
2165
  "justifyContent": "center",
@@ -1933,6 +2171,23 @@ Array [
1933
2171
  }
1934
2172
  >
1935
2173
  <View
2174
+ accessibilityState={
2175
+ {
2176
+ "busy": undefined,
2177
+ "checked": undefined,
2178
+ "disabled": undefined,
2179
+ "expanded": undefined,
2180
+ "selected": undefined,
2181
+ }
2182
+ }
2183
+ accessibilityValue={
2184
+ {
2185
+ "max": undefined,
2186
+ "min": undefined,
2187
+ "now": undefined,
2188
+ "text": undefined,
2189
+ }
2190
+ }
1936
2191
  accessible={true}
1937
2192
  collapsable={false}
1938
2193
  focusable={true}
@@ -1944,7 +2199,7 @@ Array [
1944
2199
  onResponderTerminationRequest={[Function]}
1945
2200
  onStartShouldSetResponder={[Function]}
1946
2201
  style={
1947
- Object {
2202
+ {
1948
2203
  "opacity": 1,
1949
2204
  }
1950
2205
  }
@@ -1953,8 +2208,8 @@ Array [
1953
2208
  <HeroIcon
1954
2209
  name="cancel"
1955
2210
  style={
1956
- Array [
1957
- Object {
2211
+ [
2212
+ {
1958
2213
  "color": "#001f23",
1959
2214
  "fontSize": 16,
1960
2215
  },
@@ -1970,35 +2225,35 @@ Array [
1970
2225
  <RCTScrollView
1971
2226
  ListFooterComponent={null}
1972
2227
  data={
1973
- Array [
1974
- Object {
2228
+ [
2229
+ {
1975
2230
  "category": "",
1976
- "data": Array [
1977
- Object {
2231
+ "data": [
2232
+ {
1978
2233
  "text": "Monday",
1979
2234
  "value": "mon",
1980
2235
  },
1981
- Object {
2236
+ {
1982
2237
  "text": "Tuesday",
1983
2238
  "value": "tue",
1984
2239
  },
1985
- Object {
2240
+ {
1986
2241
  "text": "Wednesday",
1987
2242
  "value": "wed",
1988
2243
  },
1989
- Object {
2244
+ {
1990
2245
  "text": "Thursday",
1991
2246
  "value": "thu",
1992
2247
  },
1993
- Object {
2248
+ {
1994
2249
  "text": "Friday",
1995
2250
  "value": "fri",
1996
2251
  },
1997
- Object {
2252
+ {
1998
2253
  "text": "Saturday",
1999
2254
  "value": "sat",
2000
2255
  },
2001
- Object {
2256
+ {
2002
2257
  "disabled": true,
2003
2258
  "text": "Sunday",
2004
2259
  "value": "sun",
@@ -2023,30 +2278,32 @@ Array [
2023
2278
  renderItem={[Function]}
2024
2279
  scrollEventThrottle={50}
2025
2280
  stickyHeaderIndices={
2026
- Array [
2281
+ [
2027
2282
  0,
2028
2283
  ]
2029
2284
  }
2030
2285
  style={
2031
- Array [
2032
- Object {
2286
+ [
2287
+ {
2033
2288
  "paddingHorizontal": 12,
2034
2289
  },
2035
- Array [
2036
- Object {
2290
+ [
2291
+ {
2037
2292
  "paddingBottom": 16,
2038
2293
  },
2039
- Object {},
2294
+ {},
2040
2295
  ],
2041
2296
  ]
2042
2297
  }
2043
2298
  >
2044
2299
  <View>
2045
2300
  <View
2301
+ onFocusCapture={[Function]}
2046
2302
  onLayout={[Function]}
2047
2303
  style={null}
2048
2304
  />
2049
2305
  <View
2306
+ onFocusCapture={[Function]}
2050
2307
  onLayout={[Function]}
2051
2308
  style={null}
2052
2309
  >
@@ -2054,34 +2311,34 @@ Array [
2054
2311
  <View
2055
2312
  highlighted={false}
2056
2313
  section={
2057
- Object {
2314
+ {
2058
2315
  "category": "",
2059
- "data": Array [
2060
- Object {
2316
+ "data": [
2317
+ {
2061
2318
  "text": "Monday",
2062
2319
  "value": "mon",
2063
2320
  },
2064
- Object {
2321
+ {
2065
2322
  "text": "Tuesday",
2066
2323
  "value": "tue",
2067
2324
  },
2068
- Object {
2325
+ {
2069
2326
  "text": "Wednesday",
2070
2327
  "value": "wed",
2071
2328
  },
2072
- Object {
2329
+ {
2073
2330
  "text": "Thursday",
2074
2331
  "value": "thu",
2075
2332
  },
2076
- Object {
2333
+ {
2077
2334
  "text": "Friday",
2078
2335
  "value": "fri",
2079
2336
  },
2080
- Object {
2337
+ {
2081
2338
  "text": "Saturday",
2082
2339
  "value": "sat",
2083
2340
  },
2084
- Object {
2341
+ {
2085
2342
  "disabled": true,
2086
2343
  "text": "Sunday",
2087
2344
  "value": "sun",
@@ -2090,15 +2347,15 @@ Array [
2090
2347
  }
2091
2348
  }
2092
2349
  style={
2093
- Array [
2094
- Object {
2350
+ [
2351
+ {
2095
2352
  "marginTop": 12,
2096
2353
  },
2097
2354
  undefined,
2098
2355
  ]
2099
2356
  }
2100
2357
  trailingItem={
2101
- Object {
2358
+ {
2102
2359
  "text": "Monday",
2103
2360
  "value": "mon",
2104
2361
  }
@@ -2106,10 +2363,18 @@ Array [
2106
2363
  />
2107
2364
  <View
2108
2365
  accessibilityState={
2109
- Object {
2366
+ {
2110
2367
  "disabled": false,
2111
2368
  }
2112
2369
  }
2370
+ accessibilityValue={
2371
+ {
2372
+ "max": undefined,
2373
+ "min": undefined,
2374
+ "now": undefined,
2375
+ "text": undefined,
2376
+ }
2377
+ }
2113
2378
  accessible={true}
2114
2379
  focusable={true}
2115
2380
  onClick={[Function]}
@@ -2120,8 +2385,8 @@ Array [
2120
2385
  onResponderTerminationRequest={[Function]}
2121
2386
  onStartShouldSetResponder={[Function]}
2122
2387
  style={
2123
- Array [
2124
- Object {
2388
+ [
2389
+ {
2125
2390
  "alignItems": "center",
2126
2391
  "backgroundColor": "#ece8ef",
2127
2392
  "borderRadius": 4,
@@ -2135,8 +2400,8 @@ Array [
2135
2400
  >
2136
2401
  <View
2137
2402
  style={
2138
- Array [
2139
- Object {
2403
+ [
2404
+ {
2140
2405
  "flex": 1,
2141
2406
  },
2142
2407
  undefined,
@@ -2146,8 +2411,8 @@ Array [
2146
2411
  <Text
2147
2412
  allowFontScaling={false}
2148
2413
  style={
2149
- Array [
2150
- Object {
2414
+ [
2415
+ {
2151
2416
  "color": "#001f23",
2152
2417
  "fontFamily": "BeVietnamPro-Regular",
2153
2418
  "fontSize": 16,
@@ -2157,10 +2422,9 @@ Array [
2157
2422
  undefined,
2158
2423
  ]
2159
2424
  }
2160
- themeFontSize="large"
2161
- themeFontWeight="regular"
2162
2425
  themeIntent="body"
2163
2426
  themeTypeface="neutral"
2427
+ themeVariant="regular"
2164
2428
  >
2165
2429
  Monday
2166
2430
  </Text>
@@ -2169,40 +2433,40 @@ Array [
2169
2433
  <View
2170
2434
  highlighted={false}
2171
2435
  leadingItem={
2172
- Object {
2436
+ {
2173
2437
  "text": "Monday",
2174
2438
  "value": "mon",
2175
2439
  }
2176
2440
  }
2177
2441
  section={
2178
- Object {
2442
+ {
2179
2443
  "category": "",
2180
- "data": Array [
2181
- Object {
2444
+ "data": [
2445
+ {
2182
2446
  "text": "Monday",
2183
2447
  "value": "mon",
2184
2448
  },
2185
- Object {
2449
+ {
2186
2450
  "text": "Tuesday",
2187
2451
  "value": "tue",
2188
2452
  },
2189
- Object {
2453
+ {
2190
2454
  "text": "Wednesday",
2191
2455
  "value": "wed",
2192
2456
  },
2193
- Object {
2457
+ {
2194
2458
  "text": "Thursday",
2195
2459
  "value": "thu",
2196
2460
  },
2197
- Object {
2461
+ {
2198
2462
  "text": "Friday",
2199
2463
  "value": "fri",
2200
2464
  },
2201
- Object {
2465
+ {
2202
2466
  "text": "Saturday",
2203
2467
  "value": "sat",
2204
2468
  },
2205
- Object {
2469
+ {
2206
2470
  "disabled": true,
2207
2471
  "text": "Sunday",
2208
2472
  "value": "sun",
@@ -2211,15 +2475,15 @@ Array [
2211
2475
  }
2212
2476
  }
2213
2477
  style={
2214
- Array [
2215
- Object {
2478
+ [
2479
+ {
2216
2480
  "marginTop": 4,
2217
2481
  },
2218
2482
  undefined,
2219
2483
  ]
2220
2484
  }
2221
2485
  trailingItem={
2222
- Object {
2486
+ {
2223
2487
  "text": "Tuesday",
2224
2488
  "value": "tue",
2225
2489
  }
@@ -2228,16 +2492,25 @@ Array [
2228
2492
  </View>
2229
2493
  </View>
2230
2494
  <View
2495
+ onFocusCapture={[Function]}
2231
2496
  onLayout={[Function]}
2232
2497
  style={null}
2233
2498
  >
2234
2499
  <View>
2235
2500
  <View
2236
2501
  accessibilityState={
2237
- Object {
2502
+ {
2238
2503
  "disabled": false,
2239
2504
  }
2240
2505
  }
2506
+ accessibilityValue={
2507
+ {
2508
+ "max": undefined,
2509
+ "min": undefined,
2510
+ "now": undefined,
2511
+ "text": undefined,
2512
+ }
2513
+ }
2241
2514
  accessible={true}
2242
2515
  focusable={true}
2243
2516
  onClick={[Function]}
@@ -2248,8 +2521,8 @@ Array [
2248
2521
  onResponderTerminationRequest={[Function]}
2249
2522
  onStartShouldSetResponder={[Function]}
2250
2523
  style={
2251
- Array [
2252
- Object {
2524
+ [
2525
+ {
2253
2526
  "alignItems": "center",
2254
2527
  "backgroundColor": "#ffffff",
2255
2528
  "borderRadius": 4,
@@ -2263,8 +2536,8 @@ Array [
2263
2536
  >
2264
2537
  <View
2265
2538
  style={
2266
- Array [
2267
- Object {
2539
+ [
2540
+ {
2268
2541
  "flex": 1,
2269
2542
  },
2270
2543
  undefined,
@@ -2274,8 +2547,8 @@ Array [
2274
2547
  <Text
2275
2548
  allowFontScaling={false}
2276
2549
  style={
2277
- Array [
2278
- Object {
2550
+ [
2551
+ {
2279
2552
  "color": "#001f23",
2280
2553
  "fontFamily": "BeVietnamPro-Regular",
2281
2554
  "fontSize": 16,
@@ -2285,10 +2558,9 @@ Array [
2285
2558
  undefined,
2286
2559
  ]
2287
2560
  }
2288
- themeFontSize="large"
2289
- themeFontWeight="regular"
2290
2561
  themeIntent="body"
2291
2562
  themeTypeface="neutral"
2563
+ themeVariant="regular"
2292
2564
  >
2293
2565
  Tuesday
2294
2566
  </Text>
@@ -2297,40 +2569,40 @@ Array [
2297
2569
  <View
2298
2570
  highlighted={false}
2299
2571
  leadingItem={
2300
- Object {
2572
+ {
2301
2573
  "text": "Tuesday",
2302
2574
  "value": "tue",
2303
2575
  }
2304
2576
  }
2305
2577
  section={
2306
- Object {
2578
+ {
2307
2579
  "category": "",
2308
- "data": Array [
2309
- Object {
2580
+ "data": [
2581
+ {
2310
2582
  "text": "Monday",
2311
2583
  "value": "mon",
2312
2584
  },
2313
- Object {
2585
+ {
2314
2586
  "text": "Tuesday",
2315
2587
  "value": "tue",
2316
2588
  },
2317
- Object {
2589
+ {
2318
2590
  "text": "Wednesday",
2319
2591
  "value": "wed",
2320
2592
  },
2321
- Object {
2593
+ {
2322
2594
  "text": "Thursday",
2323
2595
  "value": "thu",
2324
2596
  },
2325
- Object {
2597
+ {
2326
2598
  "text": "Friday",
2327
2599
  "value": "fri",
2328
2600
  },
2329
- Object {
2601
+ {
2330
2602
  "text": "Saturday",
2331
2603
  "value": "sat",
2332
2604
  },
2333
- Object {
2605
+ {
2334
2606
  "disabled": true,
2335
2607
  "text": "Sunday",
2336
2608
  "value": "sun",
@@ -2339,15 +2611,15 @@ Array [
2339
2611
  }
2340
2612
  }
2341
2613
  style={
2342
- Array [
2343
- Object {
2614
+ [
2615
+ {
2344
2616
  "marginTop": 4,
2345
2617
  },
2346
2618
  undefined,
2347
2619
  ]
2348
2620
  }
2349
2621
  trailingItem={
2350
- Object {
2622
+ {
2351
2623
  "text": "Wednesday",
2352
2624
  "value": "wed",
2353
2625
  }
@@ -2356,16 +2628,25 @@ Array [
2356
2628
  </View>
2357
2629
  </View>
2358
2630
  <View
2631
+ onFocusCapture={[Function]}
2359
2632
  onLayout={[Function]}
2360
2633
  style={null}
2361
2634
  >
2362
2635
  <View>
2363
2636
  <View
2364
2637
  accessibilityState={
2365
- Object {
2638
+ {
2366
2639
  "disabled": false,
2367
2640
  }
2368
2641
  }
2642
+ accessibilityValue={
2643
+ {
2644
+ "max": undefined,
2645
+ "min": undefined,
2646
+ "now": undefined,
2647
+ "text": undefined,
2648
+ }
2649
+ }
2369
2650
  accessible={true}
2370
2651
  focusable={true}
2371
2652
  onClick={[Function]}
@@ -2376,8 +2657,8 @@ Array [
2376
2657
  onResponderTerminationRequest={[Function]}
2377
2658
  onStartShouldSetResponder={[Function]}
2378
2659
  style={
2379
- Array [
2380
- Object {
2660
+ [
2661
+ {
2381
2662
  "alignItems": "center",
2382
2663
  "backgroundColor": "#ffffff",
2383
2664
  "borderRadius": 4,
@@ -2391,8 +2672,8 @@ Array [
2391
2672
  >
2392
2673
  <View
2393
2674
  style={
2394
- Array [
2395
- Object {
2675
+ [
2676
+ {
2396
2677
  "flex": 1,
2397
2678
  },
2398
2679
  undefined,
@@ -2402,8 +2683,8 @@ Array [
2402
2683
  <Text
2403
2684
  allowFontScaling={false}
2404
2685
  style={
2405
- Array [
2406
- Object {
2686
+ [
2687
+ {
2407
2688
  "color": "#001f23",
2408
2689
  "fontFamily": "BeVietnamPro-Regular",
2409
2690
  "fontSize": 16,
@@ -2413,10 +2694,9 @@ Array [
2413
2694
  undefined,
2414
2695
  ]
2415
2696
  }
2416
- themeFontSize="large"
2417
- themeFontWeight="regular"
2418
2697
  themeIntent="body"
2419
2698
  themeTypeface="neutral"
2699
+ themeVariant="regular"
2420
2700
  >
2421
2701
  Wednesday
2422
2702
  </Text>
@@ -2425,40 +2705,40 @@ Array [
2425
2705
  <View
2426
2706
  highlighted={false}
2427
2707
  leadingItem={
2428
- Object {
2708
+ {
2429
2709
  "text": "Wednesday",
2430
2710
  "value": "wed",
2431
2711
  }
2432
2712
  }
2433
2713
  section={
2434
- Object {
2714
+ {
2435
2715
  "category": "",
2436
- "data": Array [
2437
- Object {
2716
+ "data": [
2717
+ {
2438
2718
  "text": "Monday",
2439
2719
  "value": "mon",
2440
2720
  },
2441
- Object {
2721
+ {
2442
2722
  "text": "Tuesday",
2443
2723
  "value": "tue",
2444
2724
  },
2445
- Object {
2725
+ {
2446
2726
  "text": "Wednesday",
2447
2727
  "value": "wed",
2448
2728
  },
2449
- Object {
2729
+ {
2450
2730
  "text": "Thursday",
2451
2731
  "value": "thu",
2452
2732
  },
2453
- Object {
2733
+ {
2454
2734
  "text": "Friday",
2455
2735
  "value": "fri",
2456
2736
  },
2457
- Object {
2737
+ {
2458
2738
  "text": "Saturday",
2459
2739
  "value": "sat",
2460
2740
  },
2461
- Object {
2741
+ {
2462
2742
  "disabled": true,
2463
2743
  "text": "Sunday",
2464
2744
  "value": "sun",
@@ -2467,15 +2747,15 @@ Array [
2467
2747
  }
2468
2748
  }
2469
2749
  style={
2470
- Array [
2471
- Object {
2750
+ [
2751
+ {
2472
2752
  "marginTop": 4,
2473
2753
  },
2474
2754
  undefined,
2475
2755
  ]
2476
2756
  }
2477
2757
  trailingItem={
2478
- Object {
2758
+ {
2479
2759
  "text": "Thursday",
2480
2760
  "value": "thu",
2481
2761
  }
@@ -2484,16 +2764,25 @@ Array [
2484
2764
  </View>
2485
2765
  </View>
2486
2766
  <View
2767
+ onFocusCapture={[Function]}
2487
2768
  onLayout={[Function]}
2488
2769
  style={null}
2489
2770
  >
2490
2771
  <View>
2491
2772
  <View
2492
2773
  accessibilityState={
2493
- Object {
2774
+ {
2494
2775
  "disabled": false,
2495
2776
  }
2496
2777
  }
2778
+ accessibilityValue={
2779
+ {
2780
+ "max": undefined,
2781
+ "min": undefined,
2782
+ "now": undefined,
2783
+ "text": undefined,
2784
+ }
2785
+ }
2497
2786
  accessible={true}
2498
2787
  focusable={true}
2499
2788
  onClick={[Function]}
@@ -2504,8 +2793,8 @@ Array [
2504
2793
  onResponderTerminationRequest={[Function]}
2505
2794
  onStartShouldSetResponder={[Function]}
2506
2795
  style={
2507
- Array [
2508
- Object {
2796
+ [
2797
+ {
2509
2798
  "alignItems": "center",
2510
2799
  "backgroundColor": "#ffffff",
2511
2800
  "borderRadius": 4,
@@ -2519,8 +2808,8 @@ Array [
2519
2808
  >
2520
2809
  <View
2521
2810
  style={
2522
- Array [
2523
- Object {
2811
+ [
2812
+ {
2524
2813
  "flex": 1,
2525
2814
  },
2526
2815
  undefined,
@@ -2530,8 +2819,8 @@ Array [
2530
2819
  <Text
2531
2820
  allowFontScaling={false}
2532
2821
  style={
2533
- Array [
2534
- Object {
2822
+ [
2823
+ {
2535
2824
  "color": "#001f23",
2536
2825
  "fontFamily": "BeVietnamPro-Regular",
2537
2826
  "fontSize": 16,
@@ -2541,10 +2830,9 @@ Array [
2541
2830
  undefined,
2542
2831
  ]
2543
2832
  }
2544
- themeFontSize="large"
2545
- themeFontWeight="regular"
2546
2833
  themeIntent="body"
2547
2834
  themeTypeface="neutral"
2835
+ themeVariant="regular"
2548
2836
  >
2549
2837
  Thursday
2550
2838
  </Text>
@@ -2553,40 +2841,40 @@ Array [
2553
2841
  <View
2554
2842
  highlighted={false}
2555
2843
  leadingItem={
2556
- Object {
2844
+ {
2557
2845
  "text": "Thursday",
2558
2846
  "value": "thu",
2559
2847
  }
2560
2848
  }
2561
2849
  section={
2562
- Object {
2850
+ {
2563
2851
  "category": "",
2564
- "data": Array [
2565
- Object {
2852
+ "data": [
2853
+ {
2566
2854
  "text": "Monday",
2567
2855
  "value": "mon",
2568
2856
  },
2569
- Object {
2857
+ {
2570
2858
  "text": "Tuesday",
2571
2859
  "value": "tue",
2572
2860
  },
2573
- Object {
2861
+ {
2574
2862
  "text": "Wednesday",
2575
2863
  "value": "wed",
2576
2864
  },
2577
- Object {
2865
+ {
2578
2866
  "text": "Thursday",
2579
2867
  "value": "thu",
2580
2868
  },
2581
- Object {
2869
+ {
2582
2870
  "text": "Friday",
2583
2871
  "value": "fri",
2584
2872
  },
2585
- Object {
2873
+ {
2586
2874
  "text": "Saturday",
2587
2875
  "value": "sat",
2588
2876
  },
2589
- Object {
2877
+ {
2590
2878
  "disabled": true,
2591
2879
  "text": "Sunday",
2592
2880
  "value": "sun",
@@ -2595,15 +2883,15 @@ Array [
2595
2883
  }
2596
2884
  }
2597
2885
  style={
2598
- Array [
2599
- Object {
2886
+ [
2887
+ {
2600
2888
  "marginTop": 4,
2601
2889
  },
2602
2890
  undefined,
2603
2891
  ]
2604
2892
  }
2605
2893
  trailingItem={
2606
- Object {
2894
+ {
2607
2895
  "text": "Friday",
2608
2896
  "value": "fri",
2609
2897
  }
@@ -2612,16 +2900,25 @@ Array [
2612
2900
  </View>
2613
2901
  </View>
2614
2902
  <View
2903
+ onFocusCapture={[Function]}
2615
2904
  onLayout={[Function]}
2616
2905
  style={null}
2617
2906
  >
2618
2907
  <View>
2619
2908
  <View
2620
2909
  accessibilityState={
2621
- Object {
2910
+ {
2622
2911
  "disabled": false,
2623
2912
  }
2624
2913
  }
2914
+ accessibilityValue={
2915
+ {
2916
+ "max": undefined,
2917
+ "min": undefined,
2918
+ "now": undefined,
2919
+ "text": undefined,
2920
+ }
2921
+ }
2625
2922
  accessible={true}
2626
2923
  focusable={true}
2627
2924
  onClick={[Function]}
@@ -2632,8 +2929,8 @@ Array [
2632
2929
  onResponderTerminationRequest={[Function]}
2633
2930
  onStartShouldSetResponder={[Function]}
2634
2931
  style={
2635
- Array [
2636
- Object {
2932
+ [
2933
+ {
2637
2934
  "alignItems": "center",
2638
2935
  "backgroundColor": "#ffffff",
2639
2936
  "borderRadius": 4,
@@ -2647,8 +2944,8 @@ Array [
2647
2944
  >
2648
2945
  <View
2649
2946
  style={
2650
- Array [
2651
- Object {
2947
+ [
2948
+ {
2652
2949
  "flex": 1,
2653
2950
  },
2654
2951
  undefined,
@@ -2658,8 +2955,8 @@ Array [
2658
2955
  <Text
2659
2956
  allowFontScaling={false}
2660
2957
  style={
2661
- Array [
2662
- Object {
2958
+ [
2959
+ {
2663
2960
  "color": "#001f23",
2664
2961
  "fontFamily": "BeVietnamPro-Regular",
2665
2962
  "fontSize": 16,
@@ -2669,10 +2966,9 @@ Array [
2669
2966
  undefined,
2670
2967
  ]
2671
2968
  }
2672
- themeFontSize="large"
2673
- themeFontWeight="regular"
2674
2969
  themeIntent="body"
2675
2970
  themeTypeface="neutral"
2971
+ themeVariant="regular"
2676
2972
  >
2677
2973
  Friday
2678
2974
  </Text>
@@ -2681,40 +2977,40 @@ Array [
2681
2977
  <View
2682
2978
  highlighted={false}
2683
2979
  leadingItem={
2684
- Object {
2980
+ {
2685
2981
  "text": "Friday",
2686
2982
  "value": "fri",
2687
2983
  }
2688
2984
  }
2689
2985
  section={
2690
- Object {
2986
+ {
2691
2987
  "category": "",
2692
- "data": Array [
2693
- Object {
2988
+ "data": [
2989
+ {
2694
2990
  "text": "Monday",
2695
2991
  "value": "mon",
2696
2992
  },
2697
- Object {
2993
+ {
2698
2994
  "text": "Tuesday",
2699
2995
  "value": "tue",
2700
2996
  },
2701
- Object {
2997
+ {
2702
2998
  "text": "Wednesday",
2703
2999
  "value": "wed",
2704
3000
  },
2705
- Object {
3001
+ {
2706
3002
  "text": "Thursday",
2707
3003
  "value": "thu",
2708
3004
  },
2709
- Object {
3005
+ {
2710
3006
  "text": "Friday",
2711
3007
  "value": "fri",
2712
3008
  },
2713
- Object {
3009
+ {
2714
3010
  "text": "Saturday",
2715
3011
  "value": "sat",
2716
3012
  },
2717
- Object {
3013
+ {
2718
3014
  "disabled": true,
2719
3015
  "text": "Sunday",
2720
3016
  "value": "sun",
@@ -2723,15 +3019,15 @@ Array [
2723
3019
  }
2724
3020
  }
2725
3021
  style={
2726
- Array [
2727
- Object {
3022
+ [
3023
+ {
2728
3024
  "marginTop": 4,
2729
3025
  },
2730
3026
  undefined,
2731
3027
  ]
2732
3028
  }
2733
3029
  trailingItem={
2734
- Object {
3030
+ {
2735
3031
  "text": "Saturday",
2736
3032
  "value": "sat",
2737
3033
  }
@@ -2740,16 +3036,25 @@ Array [
2740
3036
  </View>
2741
3037
  </View>
2742
3038
  <View
3039
+ onFocusCapture={[Function]}
2743
3040
  onLayout={[Function]}
2744
3041
  style={null}
2745
3042
  >
2746
3043
  <View>
2747
3044
  <View
2748
3045
  accessibilityState={
2749
- Object {
3046
+ {
2750
3047
  "disabled": false,
2751
3048
  }
2752
3049
  }
3050
+ accessibilityValue={
3051
+ {
3052
+ "max": undefined,
3053
+ "min": undefined,
3054
+ "now": undefined,
3055
+ "text": undefined,
3056
+ }
3057
+ }
2753
3058
  accessible={true}
2754
3059
  focusable={true}
2755
3060
  onClick={[Function]}
@@ -2760,8 +3065,8 @@ Array [
2760
3065
  onResponderTerminationRequest={[Function]}
2761
3066
  onStartShouldSetResponder={[Function]}
2762
3067
  style={
2763
- Array [
2764
- Object {
3068
+ [
3069
+ {
2765
3070
  "alignItems": "center",
2766
3071
  "backgroundColor": "#ffffff",
2767
3072
  "borderRadius": 4,
@@ -2775,8 +3080,8 @@ Array [
2775
3080
  >
2776
3081
  <View
2777
3082
  style={
2778
- Array [
2779
- Object {
3083
+ [
3084
+ {
2780
3085
  "flex": 1,
2781
3086
  },
2782
3087
  undefined,
@@ -2786,8 +3091,8 @@ Array [
2786
3091
  <Text
2787
3092
  allowFontScaling={false}
2788
3093
  style={
2789
- Array [
2790
- Object {
3094
+ [
3095
+ {
2791
3096
  "color": "#001f23",
2792
3097
  "fontFamily": "BeVietnamPro-Regular",
2793
3098
  "fontSize": 16,
@@ -2797,10 +3102,9 @@ Array [
2797
3102
  undefined,
2798
3103
  ]
2799
3104
  }
2800
- themeFontSize="large"
2801
- themeFontWeight="regular"
2802
3105
  themeIntent="body"
2803
3106
  themeTypeface="neutral"
3107
+ themeVariant="regular"
2804
3108
  >
2805
3109
  Saturday
2806
3110
  </Text>
@@ -2809,40 +3113,40 @@ Array [
2809
3113
  <View
2810
3114
  highlighted={false}
2811
3115
  leadingItem={
2812
- Object {
3116
+ {
2813
3117
  "text": "Saturday",
2814
3118
  "value": "sat",
2815
3119
  }
2816
3120
  }
2817
3121
  section={
2818
- Object {
3122
+ {
2819
3123
  "category": "",
2820
- "data": Array [
2821
- Object {
3124
+ "data": [
3125
+ {
2822
3126
  "text": "Monday",
2823
3127
  "value": "mon",
2824
3128
  },
2825
- Object {
3129
+ {
2826
3130
  "text": "Tuesday",
2827
3131
  "value": "tue",
2828
3132
  },
2829
- Object {
3133
+ {
2830
3134
  "text": "Wednesday",
2831
3135
  "value": "wed",
2832
3136
  },
2833
- Object {
3137
+ {
2834
3138
  "text": "Thursday",
2835
3139
  "value": "thu",
2836
3140
  },
2837
- Object {
3141
+ {
2838
3142
  "text": "Friday",
2839
3143
  "value": "fri",
2840
3144
  },
2841
- Object {
3145
+ {
2842
3146
  "text": "Saturday",
2843
3147
  "value": "sat",
2844
3148
  },
2845
- Object {
3149
+ {
2846
3150
  "disabled": true,
2847
3151
  "text": "Sunday",
2848
3152
  "value": "sun",
@@ -2851,15 +3155,15 @@ Array [
2851
3155
  }
2852
3156
  }
2853
3157
  style={
2854
- Array [
2855
- Object {
3158
+ [
3159
+ {
2856
3160
  "marginTop": 4,
2857
3161
  },
2858
3162
  undefined,
2859
3163
  ]
2860
3164
  }
2861
3165
  trailingItem={
2862
- Object {
3166
+ {
2863
3167
  "disabled": true,
2864
3168
  "text": "Sunday",
2865
3169
  "value": "sun",
@@ -2869,16 +3173,25 @@ Array [
2869
3173
  </View>
2870
3174
  </View>
2871
3175
  <View
3176
+ onFocusCapture={[Function]}
2872
3177
  onLayout={[Function]}
2873
3178
  style={null}
2874
3179
  >
2875
3180
  <View>
2876
3181
  <View
2877
3182
  accessibilityState={
2878
- Object {
3183
+ {
2879
3184
  "disabled": true,
2880
3185
  }
2881
3186
  }
3187
+ accessibilityValue={
3188
+ {
3189
+ "max": undefined,
3190
+ "min": undefined,
3191
+ "now": undefined,
3192
+ "text": undefined,
3193
+ }
3194
+ }
2882
3195
  accessible={true}
2883
3196
  focusable={true}
2884
3197
  onClick={[Function]}
@@ -2889,8 +3202,8 @@ Array [
2889
3202
  onResponderTerminationRequest={[Function]}
2890
3203
  onStartShouldSetResponder={[Function]}
2891
3204
  style={
2892
- Array [
2893
- Object {
3205
+ [
3206
+ {
2894
3207
  "alignItems": "center",
2895
3208
  "backgroundColor": "#ffffff",
2896
3209
  "borderRadius": 4,
@@ -2904,8 +3217,8 @@ Array [
2904
3217
  >
2905
3218
  <View
2906
3219
  style={
2907
- Array [
2908
- Object {
3220
+ [
3221
+ {
2909
3222
  "flex": 1,
2910
3223
  },
2911
3224
  undefined,
@@ -2915,8 +3228,8 @@ Array [
2915
3228
  <Text
2916
3229
  allowFontScaling={false}
2917
3230
  style={
2918
- Array [
2919
- Object {
3231
+ [
3232
+ {
2920
3233
  "color": "#001f23",
2921
3234
  "fontFamily": "BeVietnamPro-Regular",
2922
3235
  "fontSize": 16,
@@ -2926,10 +3239,9 @@ Array [
2926
3239
  undefined,
2927
3240
  ]
2928
3241
  }
2929
- themeFontSize="large"
2930
- themeFontWeight="regular"
2931
3242
  themeIntent="body"
2932
3243
  themeTypeface="neutral"
3244
+ themeVariant="regular"
2933
3245
  >
2934
3246
  Sunday
2935
3247
  </Text>
@@ -2938,41 +3250,41 @@ Array [
2938
3250
  <View
2939
3251
  highlighted={false}
2940
3252
  leadingItem={
2941
- Object {
3253
+ {
2942
3254
  "disabled": true,
2943
3255
  "text": "Sunday",
2944
3256
  "value": "sun",
2945
3257
  }
2946
3258
  }
2947
3259
  section={
2948
- Object {
3260
+ {
2949
3261
  "category": "",
2950
- "data": Array [
2951
- Object {
3262
+ "data": [
3263
+ {
2952
3264
  "text": "Monday",
2953
3265
  "value": "mon",
2954
3266
  },
2955
- Object {
3267
+ {
2956
3268
  "text": "Tuesday",
2957
3269
  "value": "tue",
2958
3270
  },
2959
- Object {
3271
+ {
2960
3272
  "text": "Wednesday",
2961
3273
  "value": "wed",
2962
3274
  },
2963
- Object {
3275
+ {
2964
3276
  "text": "Thursday",
2965
3277
  "value": "thu",
2966
3278
  },
2967
- Object {
3279
+ {
2968
3280
  "text": "Friday",
2969
3281
  "value": "fri",
2970
3282
  },
2971
- Object {
3283
+ {
2972
3284
  "text": "Saturday",
2973
3285
  "value": "sat",
2974
3286
  },
2975
- Object {
3287
+ {
2976
3288
  "disabled": true,
2977
3289
  "text": "Sunday",
2978
3290
  "value": "sun",
@@ -2981,8 +3293,8 @@ Array [
2981
3293
  }
2982
3294
  }
2983
3295
  style={
2984
- Array [
2985
- Object {
3296
+ [
3297
+ {
2986
3298
  "marginTop": 12,
2987
3299
  },
2988
3300
  undefined,
@@ -2992,6 +3304,7 @@ Array [
2992
3304
  </View>
2993
3305
  </View>
2994
3306
  <View
3307
+ onFocusCapture={[Function]}
2995
3308
  onLayout={[Function]}
2996
3309
  style={null}
2997
3310
  />
@@ -3000,16 +3313,59 @@ Array [
3000
3313
  </RCTSafeAreaView>
3001
3314
  </View>
3002
3315
  </View>
3003
- </Modal>,
3004
- ]
3316
+ </Modal>
3317
+ <View
3318
+ pointerEvents="box-none"
3319
+ position="bottom"
3320
+ style={
3321
+ [
3322
+ {
3323
+ "bottom": 0,
3324
+ "elevation": 9999,
3325
+ "flexDirection": "column-reverse",
3326
+ "left": 0,
3327
+ "paddingHorizontal": 24,
3328
+ "paddingVertical": 16,
3329
+ "position": "absolute",
3330
+ "right": 0,
3331
+ "top": 0,
3332
+ },
3333
+ undefined,
3334
+ ]
3335
+ }
3336
+ />
3337
+ </View>
3005
3338
  `;
3006
3339
 
3007
3340
  exports[`rendering renders correctly when input is loading 1`] = `
3008
- Array [
3341
+ <View
3342
+ style={
3343
+ {
3344
+ "flex": 1,
3345
+ }
3346
+ }
3347
+ >
3009
3348
  <View
3010
3349
  pointerEvents="none"
3011
3350
  >
3012
3351
  <View
3352
+ accessibilityState={
3353
+ {
3354
+ "busy": undefined,
3355
+ "checked": undefined,
3356
+ "disabled": undefined,
3357
+ "expanded": undefined,
3358
+ "selected": undefined,
3359
+ }
3360
+ }
3361
+ accessibilityValue={
3362
+ {
3363
+ "max": undefined,
3364
+ "min": undefined,
3365
+ "now": undefined,
3366
+ "text": undefined,
3367
+ }
3368
+ }
3013
3369
  accessible={true}
3014
3370
  collapsable={false}
3015
3371
  focusable={true}
@@ -3021,7 +3377,7 @@ Array [
3021
3377
  onResponderTerminationRequest={[Function]}
3022
3378
  onStartShouldSetResponder={[Function]}
3023
3379
  style={
3024
- Object {
3380
+ {
3025
3381
  "opacity": 1,
3026
3382
  }
3027
3383
  }
@@ -3032,8 +3388,8 @@ Array [
3032
3388
  <View
3033
3389
  pointerEvents="none"
3034
3390
  style={
3035
- Array [
3036
- Object {
3391
+ [
3392
+ {
3037
3393
  "marginTop": 8,
3038
3394
  "width": "100%",
3039
3395
  },
@@ -3042,9 +3398,10 @@ Array [
3042
3398
  }
3043
3399
  >
3044
3400
  <View
3401
+ onLayout={[Function]}
3045
3402
  style={
3046
- Array [
3047
- Object {
3403
+ [
3404
+ {
3048
3405
  "alignItems": "center",
3049
3406
  "backgroundColor": "#ffffff",
3050
3407
  "borderRadius": 8,
@@ -3057,8 +3414,8 @@ Array [
3057
3414
  >
3058
3415
  <View
3059
3416
  style={
3060
- Array [
3061
- Object {
3417
+ [
3418
+ {
3062
3419
  "borderColor": "#808f91",
3063
3420
  "borderRadius": 8,
3064
3421
  "borderWidth": 1,
@@ -3068,8 +3425,8 @@ Array [
3068
3425
  "right": 0,
3069
3426
  "top": 0,
3070
3427
  },
3071
- Array [
3072
- Object {
3428
+ [
3429
+ {
3073
3430
  "backgroundColor": "#ffffff",
3074
3431
  },
3075
3432
  undefined,
@@ -3081,62 +3438,75 @@ Array [
3081
3438
  themeState="readonly"
3082
3439
  />
3083
3440
  <View
3441
+ onLayout={[Function]}
3442
+ />
3443
+ <View
3444
+ collapsable={false}
3084
3445
  pointerEvents="none"
3085
3446
  style={
3086
- Array [
3087
- Object {
3088
- "backgroundColor": "#ffffff",
3089
- "flexDirection": "row",
3090
- "left": 16,
3091
- "paddingHorizontal": 4,
3092
- "position": "absolute",
3093
- "top": -4,
3094
- "zIndex": 1,
3095
- },
3096
- Object {
3097
- "backgroundColor": "#ffffff",
3098
- },
3099
- ]
3447
+ {
3448
+ "alignItems": "center",
3449
+ "flexDirection": "row",
3450
+ "justifyContent": "center",
3451
+ "left": 0,
3452
+ "position": "absolute",
3453
+ "right": 0,
3454
+ "top": -10.666666666666666,
3455
+ "transform": [
3456
+ {
3457
+ "translateY": 0,
3458
+ },
3459
+ {
3460
+ "translateX": 24,
3461
+ },
3462
+ {
3463
+ "scale": 1,
3464
+ },
3465
+ ],
3466
+ "zIndex": 1,
3467
+ }
3100
3468
  }
3101
- testID="label-container"
3469
+ themeVariant="text"
3102
3470
  >
3103
3471
  <Text
3104
3472
  allowFontScaling={false}
3473
+ onLayout={[Function]}
3105
3474
  style={
3106
- Array [
3107
- Object {
3475
+ [
3476
+ {
3108
3477
  "color": "#001f23",
3109
3478
  "fontFamily": "BeVietnamPro-Regular",
3110
- "fontSize": 14,
3111
- "letterSpacing": 0.42,
3112
- "lineHeight": 22,
3479
+ "fontSize": 16,
3480
+ "letterSpacing": 0.48,
3481
+ "lineHeight": 24,
3113
3482
  },
3114
- Array [
3115
- Object {
3483
+ [
3484
+ {
3485
+ "alignContent": "center",
3486
+ "alignItems": "center",
3116
3487
  "color": "#808f91",
3117
- "fontSize": 12,
3118
- "lineHeight": 12,
3488
+ "marginTop": -2,
3489
+ "textAlignVertical": "center",
3119
3490
  },
3120
- Object {
3491
+ {
3121
3492
  "backgroundColor": "#ffffff",
3122
3493
  },
3123
3494
  ],
3124
3495
  ]
3125
3496
  }
3126
3497
  testID="input-label"
3127
- themeFontSize="medium"
3128
- themeFontWeight="regular"
3129
3498
  themeIntent="body"
3130
3499
  themeState="readonly"
3131
3500
  themeTypeface="neutral"
3501
+ themeVariant="regular"
3132
3502
  >
3133
3503
  Allow notifications
3134
3504
  </Text>
3135
3505
  </View>
3136
3506
  <View
3137
3507
  style={
3138
- Array [
3139
- Object {
3508
+ [
3509
+ {
3140
3510
  "alignItems": "center",
3141
3511
  "alignSelf": "stretch",
3142
3512
  "flexDirection": "row",
@@ -3149,7 +3519,7 @@ Array [
3149
3519
  >
3150
3520
  <TextInput
3151
3521
  accessibilityState={
3152
- Object {
3522
+ {
3153
3523
  "disabled": true,
3154
3524
  }
3155
3525
  }
@@ -3162,8 +3532,8 @@ Array [
3162
3532
  placeholder=" "
3163
3533
  pointerEvents="none"
3164
3534
  style={
3165
- Array [
3166
- Object {
3535
+ [
3536
+ {
3167
3537
  "alignSelf": "stretch",
3168
3538
  "flexGrow": 2,
3169
3539
  "fontFamily": "BeVietnamPro-Regular",
@@ -3174,7 +3544,7 @@ Array [
3174
3544
  "paddingVertical": 0,
3175
3545
  "textAlignVertical": "center",
3176
3546
  },
3177
- Object {
3547
+ {
3178
3548
  "backgroundColor": "#ffffff",
3179
3549
  "color": "#001f23",
3180
3550
  },
@@ -3188,9 +3558,9 @@ Array [
3188
3558
  <View
3189
3559
  collapsable={false}
3190
3560
  style={
3191
- Object {
3192
- "transform": Array [
3193
- Object {
3561
+ {
3562
+ "transform": [
3563
+ {
3194
3564
  "rotate": "0deg",
3195
3565
  },
3196
3566
  ],
@@ -3200,8 +3570,8 @@ Array [
3200
3570
  <HeroIcon
3201
3571
  name="loading"
3202
3572
  style={
3203
- Array [
3204
- Object {
3573
+ [
3574
+ {
3205
3575
  "color": "#001f23",
3206
3576
  "fontSize": 24,
3207
3577
  },
@@ -3216,10 +3586,11 @@ Array [
3216
3586
  </View>
3217
3587
  <View
3218
3588
  style={
3219
- Array [
3220
- Object {
3589
+ [
3590
+ {
3221
3591
  "minHeight": 16,
3222
- "paddingLeft": 16,
3592
+ "paddingHorizontal": 16,
3593
+ "paddingTop": 2,
3223
3594
  },
3224
3595
  undefined,
3225
3596
  ]
@@ -3227,8 +3598,9 @@ Array [
3227
3598
  >
3228
3599
  <View
3229
3600
  style={
3230
- Array [
3231
- Object {
3601
+ [
3602
+ {
3603
+ "alignItems": "flex-start",
3232
3604
  "flexDirection": "row",
3233
3605
  "justifyContent": "space-between",
3234
3606
  },
@@ -3240,22 +3612,65 @@ Array [
3240
3612
  </View>
3241
3613
  </View>
3242
3614
  </View>
3243
- </View>,
3615
+ </View>
3244
3616
  <Modal
3245
3617
  hardwareAccelerated={false}
3246
3618
  onRequestClose={[Function]}
3247
3619
  transparent={true}
3248
3620
  visible={false}
3249
- />,
3250
- ]
3621
+ />
3622
+ <View
3623
+ pointerEvents="box-none"
3624
+ position="bottom"
3625
+ style={
3626
+ [
3627
+ {
3628
+ "bottom": 0,
3629
+ "elevation": 9999,
3630
+ "flexDirection": "column-reverse",
3631
+ "left": 0,
3632
+ "paddingHorizontal": 24,
3633
+ "paddingVertical": 16,
3634
+ "position": "absolute",
3635
+ "right": 0,
3636
+ "top": 0,
3637
+ },
3638
+ undefined,
3639
+ ]
3640
+ }
3641
+ />
3642
+ </View>
3251
3643
  `;
3252
3644
 
3253
3645
  exports[`rendering renders correctly when receives sections 1`] = `
3254
- Array [
3646
+ <View
3647
+ style={
3648
+ {
3649
+ "flex": 1,
3650
+ }
3651
+ }
3652
+ >
3255
3653
  <View
3256
3654
  pointerEvents="auto"
3257
3655
  >
3258
3656
  <View
3657
+ accessibilityState={
3658
+ {
3659
+ "busy": undefined,
3660
+ "checked": undefined,
3661
+ "disabled": undefined,
3662
+ "expanded": undefined,
3663
+ "selected": undefined,
3664
+ }
3665
+ }
3666
+ accessibilityValue={
3667
+ {
3668
+ "max": undefined,
3669
+ "min": undefined,
3670
+ "now": undefined,
3671
+ "text": undefined,
3672
+ }
3673
+ }
3259
3674
  accessible={true}
3260
3675
  collapsable={false}
3261
3676
  focusable={true}
@@ -3267,7 +3682,7 @@ Array [
3267
3682
  onResponderTerminationRequest={[Function]}
3268
3683
  onStartShouldSetResponder={[Function]}
3269
3684
  style={
3270
- Object {
3685
+ {
3271
3686
  "opacity": 1,
3272
3687
  }
3273
3688
  }
@@ -3278,8 +3693,8 @@ Array [
3278
3693
  <View
3279
3694
  pointerEvents="auto"
3280
3695
  style={
3281
- Array [
3282
- Object {
3696
+ [
3697
+ {
3283
3698
  "marginTop": 8,
3284
3699
  "width": "100%",
3285
3700
  },
@@ -3288,9 +3703,10 @@ Array [
3288
3703
  }
3289
3704
  >
3290
3705
  <View
3706
+ onLayout={[Function]}
3291
3707
  style={
3292
- Array [
3293
- Object {
3708
+ [
3709
+ {
3294
3710
  "alignItems": "center",
3295
3711
  "backgroundColor": "#ffffff",
3296
3712
  "borderRadius": 8,
@@ -3303,8 +3719,8 @@ Array [
3303
3719
  >
3304
3720
  <View
3305
3721
  style={
3306
- Array [
3307
- Object {
3722
+ [
3723
+ {
3308
3724
  "borderColor": "#001f23",
3309
3725
  "borderRadius": 8,
3310
3726
  "borderWidth": 1,
@@ -3314,8 +3730,8 @@ Array [
3314
3730
  "right": 0,
3315
3731
  "top": 0,
3316
3732
  },
3317
- Array [
3318
- Object {
3733
+ [
3734
+ {
3319
3735
  "backgroundColor": "#ffffff",
3320
3736
  },
3321
3737
  undefined,
@@ -3327,62 +3743,75 @@ Array [
3327
3743
  themeState="filled"
3328
3744
  />
3329
3745
  <View
3746
+ onLayout={[Function]}
3747
+ />
3748
+ <View
3749
+ collapsable={false}
3330
3750
  pointerEvents="none"
3331
3751
  style={
3332
- Array [
3333
- Object {
3334
- "backgroundColor": "#ffffff",
3335
- "flexDirection": "row",
3336
- "left": 16,
3337
- "paddingHorizontal": 4,
3338
- "position": "absolute",
3339
- "top": -4,
3340
- "zIndex": 1,
3341
- },
3342
- Object {
3343
- "backgroundColor": "#ffffff",
3344
- },
3345
- ]
3752
+ {
3753
+ "alignItems": "center",
3754
+ "flexDirection": "row",
3755
+ "justifyContent": "center",
3756
+ "left": 0,
3757
+ "position": "absolute",
3758
+ "right": 0,
3759
+ "top": -10.666666666666666,
3760
+ "transform": [
3761
+ {
3762
+ "translateY": 0,
3763
+ },
3764
+ {
3765
+ "translateX": 24,
3766
+ },
3767
+ {
3768
+ "scale": 1,
3769
+ },
3770
+ ],
3771
+ "zIndex": 1,
3772
+ }
3346
3773
  }
3347
- testID="label-container"
3774
+ themeVariant="text"
3348
3775
  >
3349
3776
  <Text
3350
3777
  allowFontScaling={false}
3778
+ onLayout={[Function]}
3351
3779
  style={
3352
- Array [
3353
- Object {
3780
+ [
3781
+ {
3354
3782
  "color": "#001f23",
3355
3783
  "fontFamily": "BeVietnamPro-Regular",
3356
- "fontSize": 14,
3357
- "letterSpacing": 0.42,
3358
- "lineHeight": 22,
3784
+ "fontSize": 16,
3785
+ "letterSpacing": 0.48,
3786
+ "lineHeight": 24,
3359
3787
  },
3360
- Array [
3361
- Object {
3788
+ [
3789
+ {
3790
+ "alignContent": "center",
3791
+ "alignItems": "center",
3362
3792
  "color": "#001f23",
3363
- "fontSize": 12,
3364
- "lineHeight": 12,
3793
+ "marginTop": -2,
3794
+ "textAlignVertical": "center",
3365
3795
  },
3366
- Object {
3796
+ {
3367
3797
  "backgroundColor": "#ffffff",
3368
3798
  },
3369
3799
  ],
3370
3800
  ]
3371
3801
  }
3372
3802
  testID="input-label"
3373
- themeFontSize="medium"
3374
- themeFontWeight="regular"
3375
3803
  themeIntent="body"
3376
3804
  themeState="filled"
3377
3805
  themeTypeface="neutral"
3806
+ themeVariant="regular"
3378
3807
  >
3379
3808
  Allow notifications
3380
3809
  </Text>
3381
3810
  </View>
3382
3811
  <View
3383
3812
  style={
3384
- Array [
3385
- Object {
3813
+ [
3814
+ {
3386
3815
  "alignItems": "center",
3387
3816
  "alignSelf": "stretch",
3388
3817
  "flexDirection": "row",
@@ -3395,7 +3824,7 @@ Array [
3395
3824
  >
3396
3825
  <TextInput
3397
3826
  accessibilityState={
3398
- Object {
3827
+ {
3399
3828
  "disabled": false,
3400
3829
  }
3401
3830
  }
@@ -3408,8 +3837,8 @@ Array [
3408
3837
  placeholder=" "
3409
3838
  pointerEvents="none"
3410
3839
  style={
3411
- Array [
3412
- Object {
3840
+ [
3841
+ {
3413
3842
  "alignSelf": "stretch",
3414
3843
  "flexGrow": 2,
3415
3844
  "fontFamily": "BeVietnamPro-Regular",
@@ -3420,7 +3849,7 @@ Array [
3420
3849
  "paddingVertical": 0,
3421
3850
  "textAlignVertical": "center",
3422
3851
  },
3423
- Object {
3852
+ {
3424
3853
  "backgroundColor": "#ffffff",
3425
3854
  "color": "#001f23",
3426
3855
  },
@@ -3434,8 +3863,8 @@ Array [
3434
3863
  <HeroIcon
3435
3864
  name="arrow-down"
3436
3865
  style={
3437
- Array [
3438
- Object {
3866
+ [
3867
+ {
3439
3868
  "color": "#001f23",
3440
3869
  "fontSize": 24,
3441
3870
  },
@@ -3449,10 +3878,11 @@ Array [
3449
3878
  </View>
3450
3879
  <View
3451
3880
  style={
3452
- Array [
3453
- Object {
3881
+ [
3882
+ {
3454
3883
  "minHeight": 16,
3455
- "paddingLeft": 16,
3884
+ "paddingHorizontal": 16,
3885
+ "paddingTop": 2,
3456
3886
  },
3457
3887
  undefined,
3458
3888
  ]
@@ -3460,8 +3890,9 @@ Array [
3460
3890
  >
3461
3891
  <View
3462
3892
  style={
3463
- Array [
3464
- Object {
3893
+ [
3894
+ {
3895
+ "alignItems": "flex-start",
3465
3896
  "flexDirection": "row",
3466
3897
  "justifyContent": "space-between",
3467
3898
  },
@@ -3473,7 +3904,7 @@ Array [
3473
3904
  </View>
3474
3905
  </View>
3475
3906
  </View>
3476
- </View>,
3907
+ </View>
3477
3908
  <Modal
3478
3909
  hardwareAccelerated={false}
3479
3910
  onRequestClose={[Function]}
@@ -3483,8 +3914,8 @@ Array [
3483
3914
  <View
3484
3915
  pointerEvents="box-none"
3485
3916
  style={
3486
- Array [
3487
- Object {
3917
+ [
3918
+ {
3488
3919
  "bottom": 0,
3489
3920
  "flexDirection": "column-reverse",
3490
3921
  "left": 0,
@@ -3499,21 +3930,38 @@ Array [
3499
3930
  <View
3500
3931
  onLayout={[Function]}
3501
3932
  style={
3502
- Array [
3503
- Array [
3504
- Object {
3933
+ [
3934
+ [
3935
+ {
3505
3936
  "flex": 1,
3506
3937
  "flexDirection": "column-reverse",
3507
3938
  },
3508
3939
  undefined,
3509
3940
  ],
3510
- Object {
3941
+ {
3511
3942
  "paddingBottom": 0,
3512
3943
  },
3513
3944
  ]
3514
3945
  }
3515
3946
  >
3516
3947
  <View
3948
+ accessibilityState={
3949
+ {
3950
+ "busy": undefined,
3951
+ "checked": undefined,
3952
+ "disabled": undefined,
3953
+ "expanded": undefined,
3954
+ "selected": undefined,
3955
+ }
3956
+ }
3957
+ accessibilityValue={
3958
+ {
3959
+ "max": undefined,
3960
+ "min": undefined,
3961
+ "now": undefined,
3962
+ "text": undefined,
3963
+ }
3964
+ }
3517
3965
  accessible={true}
3518
3966
  collapsable={false}
3519
3967
  focusable={true}
@@ -3527,7 +3975,7 @@ Array [
3527
3975
  onResponderTerminationRequest={[Function]}
3528
3976
  onStartShouldSetResponder={[Function]}
3529
3977
  style={
3530
- Object {
3978
+ {
3531
3979
  "backgroundColor": "#000000",
3532
3980
  "bottom": 0,
3533
3981
  "left": 0,
@@ -3540,9 +3988,8 @@ Array [
3540
3988
  />
3541
3989
  <RCTSafeAreaView
3542
3990
  collapsable={false}
3543
- emulateUnlessSupported={true}
3544
3991
  style={
3545
- Object {
3992
+ {
3546
3993
  "backgroundColor": "#ffffff",
3547
3994
  "borderTopLeftRadius": 16,
3548
3995
  "borderTopRightRadius": 16,
@@ -3550,17 +3997,17 @@ Array [
3550
3997
  "maxHeight": "94%",
3551
3998
  "paddingBottom": 0,
3552
3999
  "shadowColor": "#001f23",
3553
- "shadowOffset": Object {
4000
+ "shadowOffset": {
3554
4001
  "height": 3,
3555
4002
  "width": 0,
3556
4003
  },
3557
4004
  "shadowOpacity": 0.4,
3558
4005
  "shadowRadius": 16,
3559
- "transform": Array [
3560
- Object {
4006
+ "transform": [
4007
+ {
3561
4008
  "scaleY": 1,
3562
4009
  },
3563
- Object {
4010
+ {
3564
4011
  "translateY": 0,
3565
4012
  },
3566
4013
  ],
@@ -3570,8 +4017,8 @@ Array [
3570
4017
  >
3571
4018
  <View
3572
4019
  style={
3573
- Array [
3574
- Object {
4020
+ [
4021
+ {
3575
4022
  "flexDirection": "row",
3576
4023
  "paddingHorizontal": 16,
3577
4024
  "paddingVertical": 8,
@@ -3582,8 +4029,8 @@ Array [
3582
4029
  >
3583
4030
  <View
3584
4031
  style={
3585
- Array [
3586
- Object {
4032
+ [
4033
+ {
3587
4034
  "flex": 1,
3588
4035
  "justifyContent": "center",
3589
4036
  },
@@ -3594,29 +4041,28 @@ Array [
3594
4041
  <Text
3595
4042
  allowFontScaling={false}
3596
4043
  style={
3597
- Array [
3598
- Object {
4044
+ [
4045
+ {
3599
4046
  "color": "#001f23",
3600
4047
  "fontFamily": "BeVietnamPro-SemiBold",
3601
4048
  "fontSize": 16,
3602
- "letterSpacing": 0.48,
4049
+ "letterSpacing": 0.24,
3603
4050
  "lineHeight": 24,
3604
4051
  },
3605
4052
  undefined,
3606
4053
  ]
3607
4054
  }
3608
- themeFontSize="large"
3609
- themeFontWeight="semi-bold"
3610
4055
  themeIntent="body"
3611
4056
  themeTypeface="neutral"
4057
+ themeVariant="regular-bold"
3612
4058
  >
3613
4059
  Allow notifications
3614
4060
  </Text>
3615
4061
  </View>
3616
4062
  <View
3617
4063
  style={
3618
- Array [
3619
- Object {
4064
+ [
4065
+ {
3620
4066
  "alignItems": "center",
3621
4067
  "height": 48,
3622
4068
  "justifyContent": "center",
@@ -3628,6 +4074,23 @@ Array [
3628
4074
  }
3629
4075
  >
3630
4076
  <View
4077
+ accessibilityState={
4078
+ {
4079
+ "busy": undefined,
4080
+ "checked": undefined,
4081
+ "disabled": undefined,
4082
+ "expanded": undefined,
4083
+ "selected": undefined,
4084
+ }
4085
+ }
4086
+ accessibilityValue={
4087
+ {
4088
+ "max": undefined,
4089
+ "min": undefined,
4090
+ "now": undefined,
4091
+ "text": undefined,
4092
+ }
4093
+ }
3631
4094
  accessible={true}
3632
4095
  collapsable={false}
3633
4096
  focusable={true}
@@ -3639,7 +4102,7 @@ Array [
3639
4102
  onResponderTerminationRequest={[Function]}
3640
4103
  onStartShouldSetResponder={[Function]}
3641
4104
  style={
3642
- Object {
4105
+ {
3643
4106
  "opacity": 1,
3644
4107
  }
3645
4108
  }
@@ -3648,8 +4111,8 @@ Array [
3648
4111
  <HeroIcon
3649
4112
  name="cancel"
3650
4113
  style={
3651
- Array [
3652
- Object {
4114
+ [
4115
+ {
3653
4116
  "color": "#001f23",
3654
4117
  "fontSize": 16,
3655
4118
  },
@@ -3665,24 +4128,24 @@ Array [
3665
4128
  <RCTScrollView
3666
4129
  ListFooterComponent={null}
3667
4130
  data={
3668
- Array [
3669
- Object {
4131
+ [
4132
+ {
3670
4133
  "category": "A",
3671
- "data": Array [
3672
- Object {
4134
+ "data": [
4135
+ {
3673
4136
  "text": "A1",
3674
4137
  "value": "a1",
3675
4138
  },
3676
4139
  ],
3677
4140
  },
3678
- Object {
4141
+ {
3679
4142
  "category": "B",
3680
- "data": Array [
3681
- Object {
4143
+ "data": [
4144
+ {
3682
4145
  "text": "B1",
3683
4146
  "value": "b1",
3684
4147
  },
3685
- Object {
4148
+ {
3686
4149
  "text": "B2",
3687
4150
  "value": "b2",
3688
4151
  },
@@ -3706,34 +4169,35 @@ Array [
3706
4169
  renderItem={[Function]}
3707
4170
  scrollEventThrottle={50}
3708
4171
  stickyHeaderIndices={
3709
- Array [
4172
+ [
3710
4173
  0,
3711
4174
  3,
3712
4175
  ]
3713
4176
  }
3714
4177
  style={
3715
- Array [
3716
- Object {
4178
+ [
4179
+ {
3717
4180
  "paddingHorizontal": 12,
3718
4181
  },
3719
- Array [
3720
- Object {
4182
+ [
4183
+ {
3721
4184
  "paddingBottom": 16,
3722
4185
  },
3723
- Object {},
4186
+ {},
3724
4187
  ],
3725
4188
  ]
3726
4189
  }
3727
4190
  >
3728
4191
  <View>
3729
4192
  <View
4193
+ onFocusCapture={[Function]}
3730
4194
  onLayout={[Function]}
3731
4195
  style={null}
3732
4196
  >
3733
4197
  <View
3734
4198
  style={
3735
- Array [
3736
- Object {
4199
+ [
4200
+ {
3737
4201
  "alignContent": "center",
3738
4202
  "backgroundColor": "#f6f6f7",
3739
4203
  "display": "flex",
@@ -3743,16 +4207,18 @@ Array [
3743
4207
  "paddingHorizontal": 16,
3744
4208
  "paddingVertical": 8,
3745
4209
  },
3746
- Object {
4210
+ {
3747
4211
  "marginBottom": 0,
3748
4212
  },
3749
4213
  ]
3750
4214
  }
4215
+ themeSize="medium"
3751
4216
  >
3752
4217
  <View
3753
4218
  style={
3754
- Array [
3755
- Object {
4219
+ [
4220
+ {
4221
+ "alignItems": "center",
3756
4222
  "display": "flex",
3757
4223
  "flexDirection": "row",
3758
4224
  },
@@ -3762,9 +4228,9 @@ Array [
3762
4228
  >
3763
4229
  <View
3764
4230
  style={
3765
- Array [
3766
- Object {
3767
- "marginRight": 8,
4231
+ [
4232
+ {
4233
+ "marginRight": 12,
3768
4234
  },
3769
4235
  undefined,
3770
4236
  ]
@@ -3773,21 +4239,20 @@ Array [
3773
4239
  <Text
3774
4240
  allowFontScaling={false}
3775
4241
  style={
3776
- Array [
3777
- Object {
4242
+ [
4243
+ {
3778
4244
  "color": "#001f23",
3779
4245
  "fontFamily": "BeVietnamPro-Regular",
3780
- "fontSize": 16,
4246
+ "fontSize": 14,
3781
4247
  "letterSpacing": 0.48,
3782
- "lineHeight": 24,
4248
+ "lineHeight": 22,
3783
4249
  },
3784
4250
  undefined,
3785
4251
  ]
3786
4252
  }
3787
- themeFontSize="large"
3788
- themeFontWeight="regular"
3789
4253
  themeIntent="body"
3790
4254
  themeTypeface="neutral"
4255
+ themeVariant="small"
3791
4256
  >
3792
4257
  A
3793
4258
  </Text>
@@ -3795,6 +4260,7 @@ Array [
3795
4260
  </View>
3796
4261
  </View>
3797
4262
  <View
4263
+ onFocusCapture={[Function]}
3798
4264
  onLayout={[Function]}
3799
4265
  style={null}
3800
4266
  >
@@ -3802,10 +4268,10 @@ Array [
3802
4268
  <View
3803
4269
  highlighted={false}
3804
4270
  section={
3805
- Object {
4271
+ {
3806
4272
  "category": "A",
3807
- "data": Array [
3808
- Object {
4273
+ "data": [
4274
+ {
3809
4275
  "text": "A1",
3810
4276
  "value": "a1",
3811
4277
  },
@@ -3813,28 +4279,28 @@ Array [
3813
4279
  }
3814
4280
  }
3815
4281
  style={
3816
- Array [
3817
- Object {
4282
+ [
4283
+ {
3818
4284
  "marginTop": 12,
3819
4285
  },
3820
4286
  undefined,
3821
4287
  ]
3822
4288
  }
3823
4289
  trailingItem={
3824
- Object {
4290
+ {
3825
4291
  "text": "A1",
3826
4292
  "value": "a1",
3827
4293
  }
3828
4294
  }
3829
4295
  trailingSection={
3830
- Object {
4296
+ {
3831
4297
  "category": "B",
3832
- "data": Array [
3833
- Object {
4298
+ "data": [
4299
+ {
3834
4300
  "text": "B1",
3835
4301
  "value": "b1",
3836
4302
  },
3837
- Object {
4303
+ {
3838
4304
  "text": "B2",
3839
4305
  "value": "b2",
3840
4306
  },
@@ -3844,10 +4310,18 @@ Array [
3844
4310
  />
3845
4311
  <View
3846
4312
  accessibilityState={
3847
- Object {
4313
+ {
3848
4314
  "disabled": false,
3849
4315
  }
3850
4316
  }
4317
+ accessibilityValue={
4318
+ {
4319
+ "max": undefined,
4320
+ "min": undefined,
4321
+ "now": undefined,
4322
+ "text": undefined,
4323
+ }
4324
+ }
3851
4325
  accessible={true}
3852
4326
  focusable={true}
3853
4327
  onClick={[Function]}
@@ -3858,8 +4332,8 @@ Array [
3858
4332
  onResponderTerminationRequest={[Function]}
3859
4333
  onStartShouldSetResponder={[Function]}
3860
4334
  style={
3861
- Array [
3862
- Object {
4335
+ [
4336
+ {
3863
4337
  "alignItems": "center",
3864
4338
  "backgroundColor": "#ece8ef",
3865
4339
  "borderRadius": 4,
@@ -3873,8 +4347,8 @@ Array [
3873
4347
  >
3874
4348
  <View
3875
4349
  style={
3876
- Array [
3877
- Object {
4350
+ [
4351
+ {
3878
4352
  "flex": 1,
3879
4353
  },
3880
4354
  undefined,
@@ -3884,8 +4358,8 @@ Array [
3884
4358
  <Text
3885
4359
  allowFontScaling={false}
3886
4360
  style={
3887
- Array [
3888
- Object {
4361
+ [
4362
+ {
3889
4363
  "color": "#001f23",
3890
4364
  "fontFamily": "BeVietnamPro-Regular",
3891
4365
  "fontSize": 16,
@@ -3895,10 +4369,9 @@ Array [
3895
4369
  undefined,
3896
4370
  ]
3897
4371
  }
3898
- themeFontSize="large"
3899
- themeFontWeight="regular"
3900
4372
  themeIntent="body"
3901
4373
  themeTypeface="neutral"
4374
+ themeVariant="regular"
3902
4375
  >
3903
4376
  A1
3904
4377
  </Text>
@@ -3907,16 +4380,16 @@ Array [
3907
4380
  <View
3908
4381
  highlighted={false}
3909
4382
  leadingItem={
3910
- Object {
4383
+ {
3911
4384
  "text": "A1",
3912
4385
  "value": "a1",
3913
4386
  }
3914
4387
  }
3915
4388
  section={
3916
- Object {
4389
+ {
3917
4390
  "category": "A",
3918
- "data": Array [
3919
- Object {
4391
+ "data": [
4392
+ {
3920
4393
  "text": "A1",
3921
4394
  "value": "a1",
3922
4395
  },
@@ -3924,22 +4397,22 @@ Array [
3924
4397
  }
3925
4398
  }
3926
4399
  style={
3927
- Array [
3928
- Object {
4400
+ [
4401
+ {
3929
4402
  "marginTop": 12,
3930
4403
  },
3931
4404
  undefined,
3932
4405
  ]
3933
4406
  }
3934
4407
  trailingSection={
3935
- Object {
4408
+ {
3936
4409
  "category": "B",
3937
- "data": Array [
3938
- Object {
4410
+ "data": [
4411
+ {
3939
4412
  "text": "B1",
3940
4413
  "value": "b1",
3941
4414
  },
3942
- Object {
4415
+ {
3943
4416
  "text": "B2",
3944
4417
  "value": "b2",
3945
4418
  },
@@ -3950,17 +4423,19 @@ Array [
3950
4423
  </View>
3951
4424
  </View>
3952
4425
  <View
4426
+ onFocusCapture={[Function]}
3953
4427
  onLayout={[Function]}
3954
4428
  style={null}
3955
4429
  />
3956
4430
  <View
4431
+ onFocusCapture={[Function]}
3957
4432
  onLayout={[Function]}
3958
4433
  style={null}
3959
4434
  >
3960
4435
  <View
3961
4436
  style={
3962
- Array [
3963
- Object {
4437
+ [
4438
+ {
3964
4439
  "alignContent": "center",
3965
4440
  "backgroundColor": "#f6f6f7",
3966
4441
  "display": "flex",
@@ -3970,16 +4445,18 @@ Array [
3970
4445
  "paddingHorizontal": 16,
3971
4446
  "paddingVertical": 8,
3972
4447
  },
3973
- Object {
4448
+ {
3974
4449
  "marginBottom": 0,
3975
4450
  },
3976
4451
  ]
3977
4452
  }
4453
+ themeSize="medium"
3978
4454
  >
3979
4455
  <View
3980
4456
  style={
3981
- Array [
3982
- Object {
4457
+ [
4458
+ {
4459
+ "alignItems": "center",
3983
4460
  "display": "flex",
3984
4461
  "flexDirection": "row",
3985
4462
  },
@@ -3989,9 +4466,9 @@ Array [
3989
4466
  >
3990
4467
  <View
3991
4468
  style={
3992
- Array [
3993
- Object {
3994
- "marginRight": 8,
4469
+ [
4470
+ {
4471
+ "marginRight": 12,
3995
4472
  },
3996
4473
  undefined,
3997
4474
  ]
@@ -4000,21 +4477,20 @@ Array [
4000
4477
  <Text
4001
4478
  allowFontScaling={false}
4002
4479
  style={
4003
- Array [
4004
- Object {
4480
+ [
4481
+ {
4005
4482
  "color": "#001f23",
4006
4483
  "fontFamily": "BeVietnamPro-Regular",
4007
- "fontSize": 16,
4484
+ "fontSize": 14,
4008
4485
  "letterSpacing": 0.48,
4009
- "lineHeight": 24,
4486
+ "lineHeight": 22,
4010
4487
  },
4011
4488
  undefined,
4012
4489
  ]
4013
4490
  }
4014
- themeFontSize="large"
4015
- themeFontWeight="regular"
4016
4491
  themeIntent="body"
4017
4492
  themeTypeface="neutral"
4493
+ themeVariant="small"
4018
4494
  >
4019
4495
  B
4020
4496
  </Text>
@@ -4022,6 +4498,7 @@ Array [
4022
4498
  </View>
4023
4499
  </View>
4024
4500
  <View
4501
+ onFocusCapture={[Function]}
4025
4502
  onLayout={[Function]}
4026
4503
  style={null}
4027
4504
  >
@@ -4029,10 +4506,10 @@ Array [
4029
4506
  <View
4030
4507
  highlighted={false}
4031
4508
  leadingSection={
4032
- Object {
4509
+ {
4033
4510
  "category": "A",
4034
- "data": Array [
4035
- Object {
4511
+ "data": [
4512
+ {
4036
4513
  "text": "A1",
4037
4514
  "value": "a1",
4038
4515
  },
@@ -4040,14 +4517,14 @@ Array [
4040
4517
  }
4041
4518
  }
4042
4519
  section={
4043
- Object {
4520
+ {
4044
4521
  "category": "B",
4045
- "data": Array [
4046
- Object {
4522
+ "data": [
4523
+ {
4047
4524
  "text": "B1",
4048
4525
  "value": "b1",
4049
4526
  },
4050
- Object {
4527
+ {
4051
4528
  "text": "B2",
4052
4529
  "value": "b2",
4053
4530
  },
@@ -4055,15 +4532,15 @@ Array [
4055
4532
  }
4056
4533
  }
4057
4534
  style={
4058
- Array [
4059
- Object {
4535
+ [
4536
+ {
4060
4537
  "marginTop": 12,
4061
4538
  },
4062
4539
  undefined,
4063
4540
  ]
4064
4541
  }
4065
4542
  trailingItem={
4066
- Object {
4543
+ {
4067
4544
  "text": "B1",
4068
4545
  "value": "b1",
4069
4546
  }
@@ -4071,10 +4548,18 @@ Array [
4071
4548
  />
4072
4549
  <View
4073
4550
  accessibilityState={
4074
- Object {
4551
+ {
4075
4552
  "disabled": false,
4076
4553
  }
4077
4554
  }
4555
+ accessibilityValue={
4556
+ {
4557
+ "max": undefined,
4558
+ "min": undefined,
4559
+ "now": undefined,
4560
+ "text": undefined,
4561
+ }
4562
+ }
4078
4563
  accessible={true}
4079
4564
  focusable={true}
4080
4565
  onClick={[Function]}
@@ -4085,8 +4570,8 @@ Array [
4085
4570
  onResponderTerminationRequest={[Function]}
4086
4571
  onStartShouldSetResponder={[Function]}
4087
4572
  style={
4088
- Array [
4089
- Object {
4573
+ [
4574
+ {
4090
4575
  "alignItems": "center",
4091
4576
  "backgroundColor": "#ffffff",
4092
4577
  "borderRadius": 4,
@@ -4100,8 +4585,8 @@ Array [
4100
4585
  >
4101
4586
  <View
4102
4587
  style={
4103
- Array [
4104
- Object {
4588
+ [
4589
+ {
4105
4590
  "flex": 1,
4106
4591
  },
4107
4592
  undefined,
@@ -4111,8 +4596,8 @@ Array [
4111
4596
  <Text
4112
4597
  allowFontScaling={false}
4113
4598
  style={
4114
- Array [
4115
- Object {
4599
+ [
4600
+ {
4116
4601
  "color": "#001f23",
4117
4602
  "fontFamily": "BeVietnamPro-Regular",
4118
4603
  "fontSize": 16,
@@ -4122,10 +4607,9 @@ Array [
4122
4607
  undefined,
4123
4608
  ]
4124
4609
  }
4125
- themeFontSize="large"
4126
- themeFontWeight="regular"
4127
4610
  themeIntent="body"
4128
4611
  themeTypeface="neutral"
4612
+ themeVariant="regular"
4129
4613
  >
4130
4614
  B1
4131
4615
  </Text>
@@ -4134,16 +4618,16 @@ Array [
4134
4618
  <View
4135
4619
  highlighted={false}
4136
4620
  leadingItem={
4137
- Object {
4621
+ {
4138
4622
  "text": "B1",
4139
4623
  "value": "b1",
4140
4624
  }
4141
4625
  }
4142
4626
  leadingSection={
4143
- Object {
4627
+ {
4144
4628
  "category": "A",
4145
- "data": Array [
4146
- Object {
4629
+ "data": [
4630
+ {
4147
4631
  "text": "A1",
4148
4632
  "value": "a1",
4149
4633
  },
@@ -4151,14 +4635,14 @@ Array [
4151
4635
  }
4152
4636
  }
4153
4637
  section={
4154
- Object {
4638
+ {
4155
4639
  "category": "B",
4156
- "data": Array [
4157
- Object {
4640
+ "data": [
4641
+ {
4158
4642
  "text": "B1",
4159
4643
  "value": "b1",
4160
4644
  },
4161
- Object {
4645
+ {
4162
4646
  "text": "B2",
4163
4647
  "value": "b2",
4164
4648
  },
@@ -4166,15 +4650,15 @@ Array [
4166
4650
  }
4167
4651
  }
4168
4652
  style={
4169
- Array [
4170
- Object {
4653
+ [
4654
+ {
4171
4655
  "marginTop": 4,
4172
4656
  },
4173
4657
  undefined,
4174
4658
  ]
4175
4659
  }
4176
4660
  trailingItem={
4177
- Object {
4661
+ {
4178
4662
  "text": "B2",
4179
4663
  "value": "b2",
4180
4664
  }
@@ -4183,16 +4667,25 @@ Array [
4183
4667
  </View>
4184
4668
  </View>
4185
4669
  <View
4670
+ onFocusCapture={[Function]}
4186
4671
  onLayout={[Function]}
4187
4672
  style={null}
4188
4673
  >
4189
4674
  <View>
4190
4675
  <View
4191
4676
  accessibilityState={
4192
- Object {
4677
+ {
4193
4678
  "disabled": false,
4194
4679
  }
4195
4680
  }
4681
+ accessibilityValue={
4682
+ {
4683
+ "max": undefined,
4684
+ "min": undefined,
4685
+ "now": undefined,
4686
+ "text": undefined,
4687
+ }
4688
+ }
4196
4689
  accessible={true}
4197
4690
  focusable={true}
4198
4691
  onClick={[Function]}
@@ -4203,8 +4696,8 @@ Array [
4203
4696
  onResponderTerminationRequest={[Function]}
4204
4697
  onStartShouldSetResponder={[Function]}
4205
4698
  style={
4206
- Array [
4207
- Object {
4699
+ [
4700
+ {
4208
4701
  "alignItems": "center",
4209
4702
  "backgroundColor": "#ffffff",
4210
4703
  "borderRadius": 4,
@@ -4218,8 +4711,8 @@ Array [
4218
4711
  >
4219
4712
  <View
4220
4713
  style={
4221
- Array [
4222
- Object {
4714
+ [
4715
+ {
4223
4716
  "flex": 1,
4224
4717
  },
4225
4718
  undefined,
@@ -4229,8 +4722,8 @@ Array [
4229
4722
  <Text
4230
4723
  allowFontScaling={false}
4231
4724
  style={
4232
- Array [
4233
- Object {
4725
+ [
4726
+ {
4234
4727
  "color": "#001f23",
4235
4728
  "fontFamily": "BeVietnamPro-Regular",
4236
4729
  "fontSize": 16,
@@ -4240,10 +4733,9 @@ Array [
4240
4733
  undefined,
4241
4734
  ]
4242
4735
  }
4243
- themeFontSize="large"
4244
- themeFontWeight="regular"
4245
4736
  themeIntent="body"
4246
4737
  themeTypeface="neutral"
4738
+ themeVariant="regular"
4247
4739
  >
4248
4740
  B2
4249
4741
  </Text>
@@ -4252,16 +4744,16 @@ Array [
4252
4744
  <View
4253
4745
  highlighted={false}
4254
4746
  leadingItem={
4255
- Object {
4747
+ {
4256
4748
  "text": "B2",
4257
4749
  "value": "b2",
4258
4750
  }
4259
4751
  }
4260
4752
  leadingSection={
4261
- Object {
4753
+ {
4262
4754
  "category": "A",
4263
- "data": Array [
4264
- Object {
4755
+ "data": [
4756
+ {
4265
4757
  "text": "A1",
4266
4758
  "value": "a1",
4267
4759
  },
@@ -4269,14 +4761,14 @@ Array [
4269
4761
  }
4270
4762
  }
4271
4763
  section={
4272
- Object {
4764
+ {
4273
4765
  "category": "B",
4274
- "data": Array [
4275
- Object {
4766
+ "data": [
4767
+ {
4276
4768
  "text": "B1",
4277
4769
  "value": "b1",
4278
4770
  },
4279
- Object {
4771
+ {
4280
4772
  "text": "B2",
4281
4773
  "value": "b2",
4282
4774
  },
@@ -4284,8 +4776,8 @@ Array [
4284
4776
  }
4285
4777
  }
4286
4778
  style={
4287
- Array [
4288
- Object {
4779
+ [
4780
+ {
4289
4781
  "marginTop": 12,
4290
4782
  },
4291
4783
  undefined,
@@ -4295,6 +4787,7 @@ Array [
4295
4787
  </View>
4296
4788
  </View>
4297
4789
  <View
4790
+ onFocusCapture={[Function]}
4298
4791
  onLayout={[Function]}
4299
4792
  style={null}
4300
4793
  />
@@ -4303,6 +4796,26 @@ Array [
4303
4796
  </RCTSafeAreaView>
4304
4797
  </View>
4305
4798
  </View>
4306
- </Modal>,
4307
- ]
4799
+ </Modal>
4800
+ <View
4801
+ pointerEvents="box-none"
4802
+ position="bottom"
4803
+ style={
4804
+ [
4805
+ {
4806
+ "bottom": 0,
4807
+ "elevation": 9999,
4808
+ "flexDirection": "column-reverse",
4809
+ "left": 0,
4810
+ "paddingHorizontal": 24,
4811
+ "paddingVertical": 16,
4812
+ "position": "absolute",
4813
+ "right": 0,
4814
+ "top": 0,
4815
+ },
4816
+ undefined,
4817
+ ]
4818
+ }
4819
+ />
4820
+ </View>
4308
4821
  `;