@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
@@ -2,930 +2,1886 @@
2
2
 
3
3
  exports[`StyledButtonContainer has filled-danger style 1`] = `
4
4
  <View
5
- accessible={true}
6
- focusable={false}
7
- onClick={[Function]}
8
- onResponderGrant={[Function]}
9
- onResponderMove={[Function]}
10
- onResponderRelease={[Function]}
11
- onResponderTerminate={[Function]}
12
- onResponderTerminationRequest={[Function]}
13
- onStartShouldSetResponder={[Function]}
14
- style={
15
- Array [
16
- Object {
17
- "alignItems": "center",
18
- "alignSelf": "stretch",
19
- "backgroundColor": "#de350b",
20
- "borderRadius": 32,
21
- "flexDirection": "row",
22
- "justifyContent": "center",
23
- "padding": 16,
24
- },
25
- undefined,
26
- ]
27
- }
28
- >
29
- <Text>
30
- Title
31
- </Text>
5
+ style={
6
+ {
7
+ "flex": 1,
8
+ }
9
+ }
10
+ >
11
+ <View
12
+ accessibilityValue={
13
+ {
14
+ "max": undefined,
15
+ "min": undefined,
16
+ "now": undefined,
17
+ "text": undefined,
18
+ }
19
+ }
20
+ accessible={true}
21
+ focusable={false}
22
+ onClick={[Function]}
23
+ onResponderGrant={[Function]}
24
+ onResponderMove={[Function]}
25
+ onResponderRelease={[Function]}
26
+ onResponderTerminate={[Function]}
27
+ onResponderTerminationRequest={[Function]}
28
+ onStartShouldSetResponder={[Function]}
29
+ style={
30
+ [
31
+ {
32
+ "alignItems": "center",
33
+ "alignSelf": "stretch",
34
+ "backgroundColor": "#cb300a",
35
+ "borderRadius": 32,
36
+ "flexDirection": "row",
37
+ "height": 60,
38
+ "justifyContent": "center",
39
+ "padding": 16,
40
+ },
41
+ undefined,
42
+ ]
43
+ }
44
+ >
45
+ <Text>
46
+ Title
47
+ </Text>
48
+ </View>
49
+ <View
50
+ pointerEvents="box-none"
51
+ position="bottom"
52
+ style={
53
+ [
54
+ {
55
+ "bottom": 0,
56
+ "elevation": 9999,
57
+ "flexDirection": "column-reverse",
58
+ "left": 0,
59
+ "paddingHorizontal": 24,
60
+ "paddingVertical": 16,
61
+ "position": "absolute",
62
+ "right": 0,
63
+ "top": 0,
64
+ },
65
+ undefined,
66
+ ]
67
+ }
68
+ />
32
69
  </View>
33
70
  `;
34
71
 
35
72
  exports[`StyledButtonContainer has filled-primary style 1`] = `
36
73
  <View
37
- accessible={true}
38
- focusable={false}
39
- onClick={[Function]}
40
- onResponderGrant={[Function]}
41
- onResponderMove={[Function]}
42
- onResponderRelease={[Function]}
43
- onResponderTerminate={[Function]}
44
- onResponderTerminationRequest={[Function]}
45
- onStartShouldSetResponder={[Function]}
46
- style={
47
- Array [
48
- Object {
49
- "alignItems": "center",
50
- "alignSelf": "stretch",
51
- "backgroundColor": "#401960",
52
- "borderRadius": 32,
53
- "flexDirection": "row",
54
- "justifyContent": "center",
55
- "padding": 16,
56
- },
57
- undefined,
58
- ]
59
- }
60
- >
61
- <Text>
62
- Title
63
- </Text>
74
+ style={
75
+ {
76
+ "flex": 1,
77
+ }
78
+ }
79
+ >
80
+ <View
81
+ accessibilityValue={
82
+ {
83
+ "max": undefined,
84
+ "min": undefined,
85
+ "now": undefined,
86
+ "text": undefined,
87
+ }
88
+ }
89
+ accessible={true}
90
+ focusable={false}
91
+ onClick={[Function]}
92
+ onResponderGrant={[Function]}
93
+ onResponderMove={[Function]}
94
+ onResponderRelease={[Function]}
95
+ onResponderTerminate={[Function]}
96
+ onResponderTerminationRequest={[Function]}
97
+ onStartShouldSetResponder={[Function]}
98
+ style={
99
+ [
100
+ {
101
+ "alignItems": "center",
102
+ "alignSelf": "stretch",
103
+ "backgroundColor": "#401960",
104
+ "borderRadius": 32,
105
+ "flexDirection": "row",
106
+ "height": 60,
107
+ "justifyContent": "center",
108
+ "padding": 16,
109
+ },
110
+ undefined,
111
+ ]
112
+ }
113
+ >
114
+ <Text>
115
+ Title
116
+ </Text>
117
+ </View>
118
+ <View
119
+ pointerEvents="box-none"
120
+ position="bottom"
121
+ style={
122
+ [
123
+ {
124
+ "bottom": 0,
125
+ "elevation": 9999,
126
+ "flexDirection": "column-reverse",
127
+ "left": 0,
128
+ "paddingHorizontal": 24,
129
+ "paddingVertical": 16,
130
+ "position": "absolute",
131
+ "right": 0,
132
+ "top": 0,
133
+ },
134
+ undefined,
135
+ ]
136
+ }
137
+ />
64
138
  </View>
65
139
  `;
66
140
 
67
141
  exports[`StyledButtonContainer has filled-secondary style 1`] = `
68
142
  <View
69
- accessible={true}
70
- focusable={false}
71
- onClick={[Function]}
72
- onResponderGrant={[Function]}
73
- onResponderMove={[Function]}
74
- onResponderRelease={[Function]}
75
- onResponderTerminate={[Function]}
76
- onResponderTerminationRequest={[Function]}
77
- onStartShouldSetResponder={[Function]}
78
- style={
79
- Array [
80
- Object {
81
- "alignItems": "center",
82
- "alignSelf": "stretch",
83
- "backgroundColor": "#795e90",
84
- "borderRadius": 32,
85
- "flexDirection": "row",
86
- "justifyContent": "center",
87
- "padding": 16,
88
- },
89
- undefined,
90
- ]
91
- }
92
- >
93
- <Text>
94
- Title
95
- </Text>
143
+ style={
144
+ {
145
+ "flex": 1,
146
+ }
147
+ }
148
+ >
149
+ <View
150
+ accessibilityValue={
151
+ {
152
+ "max": undefined,
153
+ "min": undefined,
154
+ "now": undefined,
155
+ "text": undefined,
156
+ }
157
+ }
158
+ accessible={true}
159
+ focusable={false}
160
+ onClick={[Function]}
161
+ onResponderGrant={[Function]}
162
+ onResponderMove={[Function]}
163
+ onResponderRelease={[Function]}
164
+ onResponderTerminate={[Function]}
165
+ onResponderTerminationRequest={[Function]}
166
+ onStartShouldSetResponder={[Function]}
167
+ style={
168
+ [
169
+ {
170
+ "alignItems": "center",
171
+ "alignSelf": "stretch",
172
+ "backgroundColor": "#795e90",
173
+ "borderRadius": 32,
174
+ "flexDirection": "row",
175
+ "height": 60,
176
+ "justifyContent": "center",
177
+ "padding": 16,
178
+ },
179
+ undefined,
180
+ ]
181
+ }
182
+ >
183
+ <Text>
184
+ Title
185
+ </Text>
186
+ </View>
187
+ <View
188
+ pointerEvents="box-none"
189
+ position="bottom"
190
+ style={
191
+ [
192
+ {
193
+ "bottom": 0,
194
+ "elevation": 9999,
195
+ "flexDirection": "column-reverse",
196
+ "left": 0,
197
+ "paddingHorizontal": 24,
198
+ "paddingVertical": 16,
199
+ "position": "absolute",
200
+ "right": 0,
201
+ "top": 0,
202
+ },
203
+ undefined,
204
+ ]
205
+ }
206
+ />
96
207
  </View>
97
208
  `;
98
209
 
99
210
  exports[`StyledButtonContainer has outlined-danger style 1`] = `
100
211
  <View
101
- accessible={true}
102
- focusable={false}
103
- onClick={[Function]}
104
- onResponderGrant={[Function]}
105
- onResponderMove={[Function]}
106
- onResponderRelease={[Function]}
107
- onResponderTerminate={[Function]}
108
- onResponderTerminationRequest={[Function]}
109
- onStartShouldSetResponder={[Function]}
110
- style={
111
- Array [
112
- Object {
113
- "alignItems": "center",
114
- "alignSelf": "stretch",
115
- "backgroundColor": "transparent",
116
- "borderColor": "#de350b",
117
- "borderRadius": 32,
118
- "borderWidth": 2,
119
- "flexDirection": "row",
120
- "justifyContent": "center",
121
- "padding": 14,
122
- },
123
- undefined,
124
- ]
125
- }
126
- >
127
- <Text>
128
- Title
129
- </Text>
212
+ style={
213
+ {
214
+ "flex": 1,
215
+ }
216
+ }
217
+ >
218
+ <View
219
+ accessibilityValue={
220
+ {
221
+ "max": undefined,
222
+ "min": undefined,
223
+ "now": undefined,
224
+ "text": undefined,
225
+ }
226
+ }
227
+ accessible={true}
228
+ focusable={false}
229
+ onClick={[Function]}
230
+ onResponderGrant={[Function]}
231
+ onResponderMove={[Function]}
232
+ onResponderRelease={[Function]}
233
+ onResponderTerminate={[Function]}
234
+ onResponderTerminationRequest={[Function]}
235
+ onStartShouldSetResponder={[Function]}
236
+ style={
237
+ [
238
+ {
239
+ "alignItems": "center",
240
+ "alignSelf": "stretch",
241
+ "backgroundColor": "transparent",
242
+ "borderColor": "#cb300a",
243
+ "borderRadius": 32,
244
+ "borderWidth": 2,
245
+ "flexDirection": "row",
246
+ "height": 60,
247
+ "justifyContent": "center",
248
+ "padding": 14,
249
+ },
250
+ undefined,
251
+ ]
252
+ }
253
+ >
254
+ <Text>
255
+ Title
256
+ </Text>
257
+ </View>
258
+ <View
259
+ pointerEvents="box-none"
260
+ position="bottom"
261
+ style={
262
+ [
263
+ {
264
+ "bottom": 0,
265
+ "elevation": 9999,
266
+ "flexDirection": "column-reverse",
267
+ "left": 0,
268
+ "paddingHorizontal": 24,
269
+ "paddingVertical": 16,
270
+ "position": "absolute",
271
+ "right": 0,
272
+ "top": 0,
273
+ },
274
+ undefined,
275
+ ]
276
+ }
277
+ />
130
278
  </View>
131
279
  `;
132
280
 
133
281
  exports[`StyledButtonContainer has outlined-primary style 1`] = `
134
282
  <View
135
- accessible={true}
136
- focusable={false}
137
- onClick={[Function]}
138
- onResponderGrant={[Function]}
139
- onResponderMove={[Function]}
140
- onResponderRelease={[Function]}
141
- onResponderTerminate={[Function]}
142
- onResponderTerminationRequest={[Function]}
143
- onStartShouldSetResponder={[Function]}
144
- style={
145
- Array [
146
- Object {
147
- "alignItems": "center",
148
- "alignSelf": "stretch",
149
- "backgroundColor": "transparent",
150
- "borderColor": "#401960",
151
- "borderRadius": 32,
152
- "borderWidth": 2,
153
- "flexDirection": "row",
154
- "justifyContent": "center",
155
- "padding": 14,
156
- },
157
- undefined,
158
- ]
159
- }
160
- >
161
- <Text>
162
- Title
163
- </Text>
283
+ style={
284
+ {
285
+ "flex": 1,
286
+ }
287
+ }
288
+ >
289
+ <View
290
+ accessibilityValue={
291
+ {
292
+ "max": undefined,
293
+ "min": undefined,
294
+ "now": undefined,
295
+ "text": undefined,
296
+ }
297
+ }
298
+ accessible={true}
299
+ focusable={false}
300
+ onClick={[Function]}
301
+ onResponderGrant={[Function]}
302
+ onResponderMove={[Function]}
303
+ onResponderRelease={[Function]}
304
+ onResponderTerminate={[Function]}
305
+ onResponderTerminationRequest={[Function]}
306
+ onStartShouldSetResponder={[Function]}
307
+ style={
308
+ [
309
+ {
310
+ "alignItems": "center",
311
+ "alignSelf": "stretch",
312
+ "backgroundColor": "transparent",
313
+ "borderColor": "#401960",
314
+ "borderRadius": 32,
315
+ "borderWidth": 2,
316
+ "flexDirection": "row",
317
+ "height": 60,
318
+ "justifyContent": "center",
319
+ "padding": 14,
320
+ },
321
+ undefined,
322
+ ]
323
+ }
324
+ >
325
+ <Text>
326
+ Title
327
+ </Text>
328
+ </View>
329
+ <View
330
+ pointerEvents="box-none"
331
+ position="bottom"
332
+ style={
333
+ [
334
+ {
335
+ "bottom": 0,
336
+ "elevation": 9999,
337
+ "flexDirection": "column-reverse",
338
+ "left": 0,
339
+ "paddingHorizontal": 24,
340
+ "paddingVertical": 16,
341
+ "position": "absolute",
342
+ "right": 0,
343
+ "top": 0,
344
+ },
345
+ undefined,
346
+ ]
347
+ }
348
+ />
164
349
  </View>
165
350
  `;
166
351
 
167
352
  exports[`StyledButtonContainer has outlined-secondary style 1`] = `
168
353
  <View
169
- accessible={true}
170
- focusable={false}
171
- onClick={[Function]}
172
- onResponderGrant={[Function]}
173
- onResponderMove={[Function]}
174
- onResponderRelease={[Function]}
175
- onResponderTerminate={[Function]}
176
- onResponderTerminationRequest={[Function]}
177
- onStartShouldSetResponder={[Function]}
178
- style={
179
- Array [
180
- Object {
181
- "alignItems": "center",
182
- "alignSelf": "stretch",
183
- "backgroundColor": "transparent",
184
- "borderColor": "#795e90",
185
- "borderRadius": 32,
186
- "borderWidth": 2,
187
- "flexDirection": "row",
188
- "justifyContent": "center",
189
- "padding": 14,
190
- },
191
- undefined,
192
- ]
193
- }
194
- >
195
- <Text>
196
- Title
197
- </Text>
354
+ style={
355
+ {
356
+ "flex": 1,
357
+ }
358
+ }
359
+ >
360
+ <View
361
+ accessibilityValue={
362
+ {
363
+ "max": undefined,
364
+ "min": undefined,
365
+ "now": undefined,
366
+ "text": undefined,
367
+ }
368
+ }
369
+ accessible={true}
370
+ focusable={false}
371
+ onClick={[Function]}
372
+ onResponderGrant={[Function]}
373
+ onResponderMove={[Function]}
374
+ onResponderRelease={[Function]}
375
+ onResponderTerminate={[Function]}
376
+ onResponderTerminationRequest={[Function]}
377
+ onStartShouldSetResponder={[Function]}
378
+ style={
379
+ [
380
+ {
381
+ "alignItems": "center",
382
+ "alignSelf": "stretch",
383
+ "backgroundColor": "transparent",
384
+ "borderColor": "#795e90",
385
+ "borderRadius": 32,
386
+ "borderWidth": 2,
387
+ "flexDirection": "row",
388
+ "height": 60,
389
+ "justifyContent": "center",
390
+ "padding": 14,
391
+ },
392
+ undefined,
393
+ ]
394
+ }
395
+ >
396
+ <Text>
397
+ Title
398
+ </Text>
399
+ </View>
400
+ <View
401
+ pointerEvents="box-none"
402
+ position="bottom"
403
+ style={
404
+ [
405
+ {
406
+ "bottom": 0,
407
+ "elevation": 9999,
408
+ "flexDirection": "column-reverse",
409
+ "left": 0,
410
+ "paddingHorizontal": 24,
411
+ "paddingVertical": 16,
412
+ "position": "absolute",
413
+ "right": 0,
414
+ "top": 0,
415
+ },
416
+ undefined,
417
+ ]
418
+ }
419
+ />
198
420
  </View>
199
421
  `;
200
422
 
201
423
  exports[`StyledButtonContainer has text-danger style 1`] = `
202
424
  <View
203
- accessible={true}
204
- focusable={false}
205
- onClick={[Function]}
206
- onResponderGrant={[Function]}
207
- onResponderMove={[Function]}
208
- onResponderRelease={[Function]}
209
- onResponderTerminate={[Function]}
210
- onResponderTerminationRequest={[Function]}
211
- onStartShouldSetResponder={[Function]}
212
- style={
213
- Array [
214
- Object {
215
- "alignItems": "center",
216
- "backgroundColor": "transparent",
217
- "borderRadius": 4,
218
- "borderWidth": 0,
219
- "flexDirection": "row",
220
- "justifyContent": "center",
221
- "padding": 12,
222
- },
223
- undefined,
224
- ]
225
- }
226
- >
227
- <Text>
228
- Title
229
- </Text>
425
+ style={
426
+ {
427
+ "flex": 1,
428
+ }
429
+ }
430
+ >
431
+ <View
432
+ accessibilityValue={
433
+ {
434
+ "max": undefined,
435
+ "min": undefined,
436
+ "now": undefined,
437
+ "text": undefined,
438
+ }
439
+ }
440
+ accessible={true}
441
+ focusable={false}
442
+ onClick={[Function]}
443
+ onResponderGrant={[Function]}
444
+ onResponderMove={[Function]}
445
+ onResponderRelease={[Function]}
446
+ onResponderTerminate={[Function]}
447
+ onResponderTerminationRequest={[Function]}
448
+ onStartShouldSetResponder={[Function]}
449
+ style={
450
+ [
451
+ {
452
+ "alignItems": "center",
453
+ "backgroundColor": "transparent",
454
+ "borderRadius": 4,
455
+ "borderWidth": 0,
456
+ "flexDirection": "row",
457
+ "height": 60,
458
+ "justifyContent": "center",
459
+ "padding": 12,
460
+ },
461
+ undefined,
462
+ ]
463
+ }
464
+ >
465
+ <Text>
466
+ Title
467
+ </Text>
468
+ </View>
469
+ <View
470
+ pointerEvents="box-none"
471
+ position="bottom"
472
+ style={
473
+ [
474
+ {
475
+ "bottom": 0,
476
+ "elevation": 9999,
477
+ "flexDirection": "column-reverse",
478
+ "left": 0,
479
+ "paddingHorizontal": 24,
480
+ "paddingVertical": 16,
481
+ "position": "absolute",
482
+ "right": 0,
483
+ "top": 0,
484
+ },
485
+ undefined,
486
+ ]
487
+ }
488
+ />
230
489
  </View>
231
490
  `;
232
491
 
233
492
  exports[`StyledButtonContainer has text-primary style 1`] = `
234
493
  <View
235
- accessible={true}
236
- focusable={false}
237
- onClick={[Function]}
238
- onResponderGrant={[Function]}
239
- onResponderMove={[Function]}
240
- onResponderRelease={[Function]}
241
- onResponderTerminate={[Function]}
242
- onResponderTerminationRequest={[Function]}
243
- onStartShouldSetResponder={[Function]}
244
- style={
245
- Array [
246
- Object {
247
- "alignItems": "center",
248
- "backgroundColor": "transparent",
249
- "borderRadius": 4,
250
- "borderWidth": 0,
251
- "flexDirection": "row",
252
- "justifyContent": "center",
253
- "padding": 12,
254
- },
255
- undefined,
256
- ]
257
- }
258
- >
259
- <Text>
260
- Title
261
- </Text>
494
+ style={
495
+ {
496
+ "flex": 1,
497
+ }
498
+ }
499
+ >
500
+ <View
501
+ accessibilityValue={
502
+ {
503
+ "max": undefined,
504
+ "min": undefined,
505
+ "now": undefined,
506
+ "text": undefined,
507
+ }
508
+ }
509
+ accessible={true}
510
+ focusable={false}
511
+ onClick={[Function]}
512
+ onResponderGrant={[Function]}
513
+ onResponderMove={[Function]}
514
+ onResponderRelease={[Function]}
515
+ onResponderTerminate={[Function]}
516
+ onResponderTerminationRequest={[Function]}
517
+ onStartShouldSetResponder={[Function]}
518
+ style={
519
+ [
520
+ {
521
+ "alignItems": "center",
522
+ "backgroundColor": "transparent",
523
+ "borderRadius": 4,
524
+ "borderWidth": 0,
525
+ "flexDirection": "row",
526
+ "height": 60,
527
+ "justifyContent": "center",
528
+ "padding": 12,
529
+ },
530
+ undefined,
531
+ ]
532
+ }
533
+ >
534
+ <Text>
535
+ Title
536
+ </Text>
537
+ </View>
538
+ <View
539
+ pointerEvents="box-none"
540
+ position="bottom"
541
+ style={
542
+ [
543
+ {
544
+ "bottom": 0,
545
+ "elevation": 9999,
546
+ "flexDirection": "column-reverse",
547
+ "left": 0,
548
+ "paddingHorizontal": 24,
549
+ "paddingVertical": 16,
550
+ "position": "absolute",
551
+ "right": 0,
552
+ "top": 0,
553
+ },
554
+ undefined,
555
+ ]
556
+ }
557
+ />
262
558
  </View>
263
559
  `;
264
560
 
265
561
  exports[`StyledButtonContainer has text-secondary style 1`] = `
266
562
  <View
267
- accessible={true}
268
- focusable={false}
269
- onClick={[Function]}
270
- onResponderGrant={[Function]}
271
- onResponderMove={[Function]}
272
- onResponderRelease={[Function]}
273
- onResponderTerminate={[Function]}
274
- onResponderTerminationRequest={[Function]}
275
- onStartShouldSetResponder={[Function]}
276
- style={
277
- Array [
278
- Object {
279
- "alignItems": "center",
280
- "backgroundColor": "transparent",
281
- "borderRadius": 4,
282
- "borderWidth": 0,
283
- "flexDirection": "row",
284
- "justifyContent": "center",
285
- "padding": 12,
286
- },
287
- undefined,
288
- ]
289
- }
290
- >
291
- <Text>
292
- Title
293
- </Text>
563
+ style={
564
+ {
565
+ "flex": 1,
566
+ }
567
+ }
568
+ >
569
+ <View
570
+ accessibilityValue={
571
+ {
572
+ "max": undefined,
573
+ "min": undefined,
574
+ "now": undefined,
575
+ "text": undefined,
576
+ }
577
+ }
578
+ accessible={true}
579
+ focusable={false}
580
+ onClick={[Function]}
581
+ onResponderGrant={[Function]}
582
+ onResponderMove={[Function]}
583
+ onResponderRelease={[Function]}
584
+ onResponderTerminate={[Function]}
585
+ onResponderTerminationRequest={[Function]}
586
+ onStartShouldSetResponder={[Function]}
587
+ style={
588
+ [
589
+ {
590
+ "alignItems": "center",
591
+ "backgroundColor": "transparent",
592
+ "borderRadius": 4,
593
+ "borderWidth": 0,
594
+ "flexDirection": "row",
595
+ "height": 60,
596
+ "justifyContent": "center",
597
+ "padding": 12,
598
+ },
599
+ undefined,
600
+ ]
601
+ }
602
+ >
603
+ <Text>
604
+ Title
605
+ </Text>
606
+ </View>
607
+ <View
608
+ pointerEvents="box-none"
609
+ position="bottom"
610
+ style={
611
+ [
612
+ {
613
+ "bottom": 0,
614
+ "elevation": 9999,
615
+ "flexDirection": "column-reverse",
616
+ "left": 0,
617
+ "paddingHorizontal": 24,
618
+ "paddingVertical": 16,
619
+ "position": "absolute",
620
+ "right": 0,
621
+ "top": 0,
622
+ },
623
+ undefined,
624
+ ]
625
+ }
626
+ />
294
627
  </View>
295
628
  `;
296
629
 
297
630
  exports[`StyledButtonContainer renders disabled correctly 1`] = `
298
631
  <View
299
- accessibilityState={
300
- Object {
301
- "disabled": true,
302
- }
303
- }
304
- accessible={true}
305
- focusable={false}
306
- onClick={[Function]}
307
- onResponderGrant={[Function]}
308
- onResponderMove={[Function]}
309
- onResponderRelease={[Function]}
310
- onResponderTerminate={[Function]}
311
- onResponderTerminationRequest={[Function]}
312
- onStartShouldSetResponder={[Function]}
313
- style={
314
- Array [
315
- Object {
316
- "alignItems": "center",
317
- "alignSelf": "stretch",
318
- "backgroundColor": "#bfc1c5",
319
- "borderRadius": 32,
320
- "flexDirection": "row",
321
- "justifyContent": "center",
322
- "padding": 16,
323
- },
324
- undefined,
325
- ]
326
- }
327
- >
328
- <Text>
329
- Title
330
- </Text>
632
+ style={
633
+ {
634
+ "flex": 1,
635
+ }
636
+ }
637
+ >
638
+ <View
639
+ accessibilityState={
640
+ {
641
+ "disabled": true,
642
+ }
643
+ }
644
+ accessibilityValue={
645
+ {
646
+ "max": undefined,
647
+ "min": undefined,
648
+ "now": undefined,
649
+ "text": undefined,
650
+ }
651
+ }
652
+ accessible={true}
653
+ focusable={false}
654
+ onClick={[Function]}
655
+ onResponderGrant={[Function]}
656
+ onResponderMove={[Function]}
657
+ onResponderRelease={[Function]}
658
+ onResponderTerminate={[Function]}
659
+ onResponderTerminationRequest={[Function]}
660
+ onStartShouldSetResponder={[Function]}
661
+ style={
662
+ [
663
+ {
664
+ "alignItems": "center",
665
+ "alignSelf": "stretch",
666
+ "backgroundColor": "#bfc1c5",
667
+ "borderRadius": 32,
668
+ "flexDirection": "row",
669
+ "height": 60,
670
+ "justifyContent": "center",
671
+ "padding": 16,
672
+ },
673
+ undefined,
674
+ ]
675
+ }
676
+ >
677
+ <Text>
678
+ Title
679
+ </Text>
680
+ </View>
681
+ <View
682
+ pointerEvents="box-none"
683
+ position="bottom"
684
+ style={
685
+ [
686
+ {
687
+ "bottom": 0,
688
+ "elevation": 9999,
689
+ "flexDirection": "column-reverse",
690
+ "left": 0,
691
+ "paddingHorizontal": 24,
692
+ "paddingVertical": 16,
693
+ "position": "absolute",
694
+ "right": 0,
695
+ "top": 0,
696
+ },
697
+ undefined,
698
+ ]
699
+ }
700
+ />
331
701
  </View>
332
702
  `;
333
703
 
334
704
  exports[`StyledButtonIcon has filled-danger style 1`] = `
335
- <HeroIcon
336
- name="bell"
705
+ <View
337
706
  style={
338
- Array [
339
- Object {
340
- "color": "#001f23",
341
- "fontSize": 24,
342
- },
343
- Array [
344
- Object {
345
- "color": "#ffffff",
346
- "fontSize": 20,
707
+ {
708
+ "flex": 1,
709
+ }
710
+ }
711
+ >
712
+ <HeroIcon
713
+ name="bell"
714
+ style={
715
+ [
716
+ {
717
+ "color": "#001f23",
718
+ "fontSize": 24,
719
+ },
720
+ [
721
+ {
722
+ "color": "#ffffff",
723
+ "fontSize": 20,
724
+ },
725
+ undefined,
726
+ ],
727
+ ]
728
+ }
729
+ themeIntent="text"
730
+ themeSize="medium"
731
+ />
732
+ <View
733
+ pointerEvents="box-none"
734
+ position="bottom"
735
+ style={
736
+ [
737
+ {
738
+ "bottom": 0,
739
+ "elevation": 9999,
740
+ "flexDirection": "column-reverse",
741
+ "left": 0,
742
+ "paddingHorizontal": 24,
743
+ "paddingVertical": 16,
744
+ "position": "absolute",
745
+ "right": 0,
746
+ "top": 0,
347
747
  },
348
748
  undefined,
349
- ],
350
- ]
351
- }
352
- themeIntent="text"
353
- themeSize="medium"
354
- />
749
+ ]
750
+ }
751
+ />
752
+ </View>
355
753
  `;
356
754
 
357
755
  exports[`StyledButtonIcon has filled-primary style 1`] = `
358
- <HeroIcon
359
- name="bell"
756
+ <View
360
757
  style={
361
- Array [
362
- Object {
363
- "color": "#001f23",
364
- "fontSize": 24,
365
- },
366
- Array [
367
- Object {
368
- "color": "#ffffff",
369
- "fontSize": 20,
758
+ {
759
+ "flex": 1,
760
+ }
761
+ }
762
+ >
763
+ <HeroIcon
764
+ name="bell"
765
+ style={
766
+ [
767
+ {
768
+ "color": "#001f23",
769
+ "fontSize": 24,
770
+ },
771
+ [
772
+ {
773
+ "color": "#ffffff",
774
+ "fontSize": 20,
775
+ },
776
+ undefined,
777
+ ],
778
+ ]
779
+ }
780
+ themeIntent="text"
781
+ themeSize="medium"
782
+ />
783
+ <View
784
+ pointerEvents="box-none"
785
+ position="bottom"
786
+ style={
787
+ [
788
+ {
789
+ "bottom": 0,
790
+ "elevation": 9999,
791
+ "flexDirection": "column-reverse",
792
+ "left": 0,
793
+ "paddingHorizontal": 24,
794
+ "paddingVertical": 16,
795
+ "position": "absolute",
796
+ "right": 0,
797
+ "top": 0,
370
798
  },
371
799
  undefined,
372
- ],
373
- ]
374
- }
375
- themeIntent="text"
376
- themeSize="medium"
377
- />
800
+ ]
801
+ }
802
+ />
803
+ </View>
378
804
  `;
379
805
 
380
806
  exports[`StyledButtonIcon has filled-secondary style 1`] = `
381
- <HeroIcon
382
- name="bell"
807
+ <View
383
808
  style={
384
- Array [
385
- Object {
386
- "color": "#001f23",
387
- "fontSize": 24,
388
- },
389
- Array [
390
- Object {
391
- "color": "#ffffff",
392
- "fontSize": 20,
809
+ {
810
+ "flex": 1,
811
+ }
812
+ }
813
+ >
814
+ <HeroIcon
815
+ name="bell"
816
+ style={
817
+ [
818
+ {
819
+ "color": "#001f23",
820
+ "fontSize": 24,
821
+ },
822
+ [
823
+ {
824
+ "color": "#ffffff",
825
+ "fontSize": 20,
826
+ },
827
+ undefined,
828
+ ],
829
+ ]
830
+ }
831
+ themeIntent="text"
832
+ themeSize="medium"
833
+ />
834
+ <View
835
+ pointerEvents="box-none"
836
+ position="bottom"
837
+ style={
838
+ [
839
+ {
840
+ "bottom": 0,
841
+ "elevation": 9999,
842
+ "flexDirection": "column-reverse",
843
+ "left": 0,
844
+ "paddingHorizontal": 24,
845
+ "paddingVertical": 16,
846
+ "position": "absolute",
847
+ "right": 0,
848
+ "top": 0,
393
849
  },
394
850
  undefined,
395
- ],
396
- ]
397
- }
398
- themeIntent="text"
399
- themeSize="medium"
400
- />
851
+ ]
852
+ }
853
+ />
854
+ </View>
401
855
  `;
402
856
 
403
857
  exports[`StyledButtonIcon has outlined-danger style 1`] = `
404
- <HeroIcon
405
- name="bell"
858
+ <View
406
859
  style={
407
- Array [
408
- Object {
409
- "color": "#001f23",
410
- "fontSize": 24,
411
- },
412
- Array [
413
- Object {
414
- "color": "#de350b",
415
- "fontSize": 18,
860
+ {
861
+ "flex": 1,
862
+ }
863
+ }
864
+ >
865
+ <HeroIcon
866
+ name="bell"
867
+ style={
868
+ [
869
+ {
870
+ "color": "#001f23",
871
+ "fontSize": 24,
872
+ },
873
+ [
874
+ {
875
+ "color": "#cb300a",
876
+ "fontSize": 20,
877
+ },
878
+ undefined,
879
+ ],
880
+ ]
881
+ }
882
+ themeIntent="text"
883
+ themeSize="medium"
884
+ />
885
+ <View
886
+ pointerEvents="box-none"
887
+ position="bottom"
888
+ style={
889
+ [
890
+ {
891
+ "bottom": 0,
892
+ "elevation": 9999,
893
+ "flexDirection": "column-reverse",
894
+ "left": 0,
895
+ "paddingHorizontal": 24,
896
+ "paddingVertical": 16,
897
+ "position": "absolute",
898
+ "right": 0,
899
+ "top": 0,
416
900
  },
417
901
  undefined,
418
- ],
419
- ]
420
- }
421
- themeIntent="text"
422
- themeSize="medium"
423
- />
902
+ ]
903
+ }
904
+ />
905
+ </View>
424
906
  `;
425
907
 
426
908
  exports[`StyledButtonIcon has outlined-primary style 1`] = `
427
- <HeroIcon
428
- name="bell"
909
+ <View
429
910
  style={
430
- Array [
431
- Object {
432
- "color": "#001f23",
433
- "fontSize": 24,
434
- },
435
- Array [
436
- Object {
437
- "color": "#401960",
438
- "fontSize": 18,
911
+ {
912
+ "flex": 1,
913
+ }
914
+ }
915
+ >
916
+ <HeroIcon
917
+ name="bell"
918
+ style={
919
+ [
920
+ {
921
+ "color": "#001f23",
922
+ "fontSize": 24,
923
+ },
924
+ [
925
+ {
926
+ "color": "#401960",
927
+ "fontSize": 20,
928
+ },
929
+ undefined,
930
+ ],
931
+ ]
932
+ }
933
+ themeIntent="text"
934
+ themeSize="medium"
935
+ />
936
+ <View
937
+ pointerEvents="box-none"
938
+ position="bottom"
939
+ style={
940
+ [
941
+ {
942
+ "bottom": 0,
943
+ "elevation": 9999,
944
+ "flexDirection": "column-reverse",
945
+ "left": 0,
946
+ "paddingHorizontal": 24,
947
+ "paddingVertical": 16,
948
+ "position": "absolute",
949
+ "right": 0,
950
+ "top": 0,
439
951
  },
440
952
  undefined,
441
- ],
442
- ]
443
- }
444
- themeIntent="text"
445
- themeSize="medium"
446
- />
953
+ ]
954
+ }
955
+ />
956
+ </View>
447
957
  `;
448
958
 
449
959
  exports[`StyledButtonIcon has outlined-secondary style 1`] = `
450
- <HeroIcon
451
- name="bell"
960
+ <View
452
961
  style={
453
- Array [
454
- Object {
455
- "color": "#001f23",
456
- "fontSize": 24,
457
- },
458
- Array [
459
- Object {
460
- "color": "#795e90",
461
- "fontSize": 18,
962
+ {
963
+ "flex": 1,
964
+ }
965
+ }
966
+ >
967
+ <HeroIcon
968
+ name="bell"
969
+ style={
970
+ [
971
+ {
972
+ "color": "#001f23",
973
+ "fontSize": 24,
974
+ },
975
+ [
976
+ {
977
+ "color": "#795e90",
978
+ "fontSize": 20,
979
+ },
980
+ undefined,
981
+ ],
982
+ ]
983
+ }
984
+ themeIntent="text"
985
+ themeSize="medium"
986
+ />
987
+ <View
988
+ pointerEvents="box-none"
989
+ position="bottom"
990
+ style={
991
+ [
992
+ {
993
+ "bottom": 0,
994
+ "elevation": 9999,
995
+ "flexDirection": "column-reverse",
996
+ "left": 0,
997
+ "paddingHorizontal": 24,
998
+ "paddingVertical": 16,
999
+ "position": "absolute",
1000
+ "right": 0,
1001
+ "top": 0,
462
1002
  },
463
1003
  undefined,
464
- ],
465
- ]
466
- }
467
- themeIntent="text"
468
- themeSize="medium"
469
- />
1004
+ ]
1005
+ }
1006
+ />
1007
+ </View>
470
1008
  `;
471
1009
 
472
1010
  exports[`StyledButtonIcon has text-danger style 1`] = `
473
- <HeroIcon
474
- name="bell"
1011
+ <View
475
1012
  style={
476
- Array [
477
- Object {
478
- "color": "#001f23",
479
- "fontSize": 24,
480
- },
481
- Array [
482
- Object {
483
- "color": "#de350b",
484
- "fontSize": 16,
1013
+ {
1014
+ "flex": 1,
1015
+ }
1016
+ }
1017
+ >
1018
+ <HeroIcon
1019
+ name="bell"
1020
+ style={
1021
+ [
1022
+ {
1023
+ "color": "#001f23",
1024
+ "fontSize": 24,
1025
+ },
1026
+ [
1027
+ {
1028
+ "color": "#cb300a",
1029
+ "fontSize": 20,
1030
+ },
1031
+ undefined,
1032
+ ],
1033
+ ]
1034
+ }
1035
+ themeIntent="text"
1036
+ themeSize="medium"
1037
+ />
1038
+ <View
1039
+ pointerEvents="box-none"
1040
+ position="bottom"
1041
+ style={
1042
+ [
1043
+ {
1044
+ "bottom": 0,
1045
+ "elevation": 9999,
1046
+ "flexDirection": "column-reverse",
1047
+ "left": 0,
1048
+ "paddingHorizontal": 24,
1049
+ "paddingVertical": 16,
1050
+ "position": "absolute",
1051
+ "right": 0,
1052
+ "top": 0,
485
1053
  },
486
1054
  undefined,
487
- ],
488
- ]
489
- }
490
- themeIntent="text"
491
- themeSize="medium"
492
- />
1055
+ ]
1056
+ }
1057
+ />
1058
+ </View>
493
1059
  `;
494
1060
 
495
1061
  exports[`StyledButtonIcon has text-primary style 1`] = `
496
- <HeroIcon
497
- name="bell"
1062
+ <View
498
1063
  style={
499
- Array [
500
- Object {
501
- "color": "#001f23",
502
- "fontSize": 24,
503
- },
504
- Array [
505
- Object {
506
- "color": "#401960",
507
- "fontSize": 16,
1064
+ {
1065
+ "flex": 1,
1066
+ }
1067
+ }
1068
+ >
1069
+ <HeroIcon
1070
+ name="bell"
1071
+ style={
1072
+ [
1073
+ {
1074
+ "color": "#001f23",
1075
+ "fontSize": 24,
1076
+ },
1077
+ [
1078
+ {
1079
+ "color": "#401960",
1080
+ "fontSize": 20,
1081
+ },
1082
+ undefined,
1083
+ ],
1084
+ ]
1085
+ }
1086
+ themeIntent="text"
1087
+ themeSize="medium"
1088
+ />
1089
+ <View
1090
+ pointerEvents="box-none"
1091
+ position="bottom"
1092
+ style={
1093
+ [
1094
+ {
1095
+ "bottom": 0,
1096
+ "elevation": 9999,
1097
+ "flexDirection": "column-reverse",
1098
+ "left": 0,
1099
+ "paddingHorizontal": 24,
1100
+ "paddingVertical": 16,
1101
+ "position": "absolute",
1102
+ "right": 0,
1103
+ "top": 0,
508
1104
  },
509
1105
  undefined,
510
- ],
511
- ]
512
- }
513
- themeIntent="text"
514
- themeSize="medium"
515
- />
1106
+ ]
1107
+ }
1108
+ />
1109
+ </View>
516
1110
  `;
517
1111
 
518
1112
  exports[`StyledButtonIcon has text-secondary style 1`] = `
519
- <HeroIcon
520
- name="bell"
1113
+ <View
521
1114
  style={
522
- Array [
523
- Object {
524
- "color": "#001f23",
525
- "fontSize": 24,
526
- },
527
- Array [
528
- Object {
529
- "color": "#795e90",
530
- "fontSize": 16,
1115
+ {
1116
+ "flex": 1,
1117
+ }
1118
+ }
1119
+ >
1120
+ <HeroIcon
1121
+ name="bell"
1122
+ style={
1123
+ [
1124
+ {
1125
+ "color": "#001f23",
1126
+ "fontSize": 24,
1127
+ },
1128
+ [
1129
+ {
1130
+ "color": "#795e90",
1131
+ "fontSize": 20,
1132
+ },
1133
+ undefined,
1134
+ ],
1135
+ ]
1136
+ }
1137
+ themeIntent="text"
1138
+ themeSize="medium"
1139
+ />
1140
+ <View
1141
+ pointerEvents="box-none"
1142
+ position="bottom"
1143
+ style={
1144
+ [
1145
+ {
1146
+ "bottom": 0,
1147
+ "elevation": 9999,
1148
+ "flexDirection": "column-reverse",
1149
+ "left": 0,
1150
+ "paddingHorizontal": 24,
1151
+ "paddingVertical": 16,
1152
+ "position": "absolute",
1153
+ "right": 0,
1154
+ "top": 0,
531
1155
  },
532
1156
  undefined,
533
- ],
534
- ]
535
- }
536
- themeIntent="text"
537
- themeSize="medium"
538
- />
1157
+ ]
1158
+ }
1159
+ />
1160
+ </View>
539
1161
  `;
540
1162
 
541
1163
  exports[`StyledButtonIcon renders disabled correctly 1`] = `
542
- <HeroIcon
543
- name="bell"
1164
+ <View
544
1165
  style={
545
- Array [
546
- Object {
547
- "color": "#001f23",
548
- "fontSize": 24,
549
- },
550
- Array [
551
- Object {
552
- "color": "#ffffff",
553
- "fontSize": 20,
1166
+ {
1167
+ "flex": 1,
1168
+ }
1169
+ }
1170
+ >
1171
+ <HeroIcon
1172
+ name="bell"
1173
+ style={
1174
+ [
1175
+ {
1176
+ "color": "#001f23",
1177
+ "fontSize": 24,
1178
+ },
1179
+ [
1180
+ {
1181
+ "color": "#ffffff",
1182
+ "fontSize": 20,
1183
+ },
1184
+ undefined,
1185
+ ],
1186
+ ]
1187
+ }
1188
+ themeIntent="text"
1189
+ themeSize="medium"
1190
+ />
1191
+ <View
1192
+ pointerEvents="box-none"
1193
+ position="bottom"
1194
+ style={
1195
+ [
1196
+ {
1197
+ "bottom": 0,
1198
+ "elevation": 9999,
1199
+ "flexDirection": "column-reverse",
1200
+ "left": 0,
1201
+ "paddingHorizontal": 24,
1202
+ "paddingVertical": 16,
1203
+ "position": "absolute",
1204
+ "right": 0,
1205
+ "top": 0,
554
1206
  },
555
1207
  undefined,
556
- ],
557
- ]
558
- }
559
- themeIntent="text"
560
- themeSize="medium"
561
- />
1208
+ ]
1209
+ }
1210
+ />
1211
+ </View>
562
1212
  `;
563
1213
 
564
1214
  exports[`StyledButtonIconWrapper has left style 1`] = `
565
1215
  <View
566
1216
  style={
567
- Array [
568
- Object {
569
- "paddingRight": 12,
570
- },
571
- undefined,
572
- ]
1217
+ {
1218
+ "flex": 1,
1219
+ }
573
1220
  }
574
- themePosition="left"
575
- />
1221
+ >
1222
+ <View
1223
+ style={
1224
+ [
1225
+ {
1226
+ "paddingRight": 12,
1227
+ },
1228
+ undefined,
1229
+ ]
1230
+ }
1231
+ themePosition="left"
1232
+ />
1233
+ <View
1234
+ pointerEvents="box-none"
1235
+ position="bottom"
1236
+ style={
1237
+ [
1238
+ {
1239
+ "bottom": 0,
1240
+ "elevation": 9999,
1241
+ "flexDirection": "column-reverse",
1242
+ "left": 0,
1243
+ "paddingHorizontal": 24,
1244
+ "paddingVertical": 16,
1245
+ "position": "absolute",
1246
+ "right": 0,
1247
+ "top": 0,
1248
+ },
1249
+ undefined,
1250
+ ]
1251
+ }
1252
+ />
1253
+ </View>
576
1254
  `;
577
1255
 
578
1256
  exports[`StyledButtonIconWrapper has right style 1`] = `
579
1257
  <View
580
1258
  style={
581
- Array [
582
- Object {
583
- "paddingLeft": 12,
584
- },
585
- undefined,
586
- ]
1259
+ {
1260
+ "flex": 1,
1261
+ }
587
1262
  }
588
- themePosition="right"
589
- />
1263
+ >
1264
+ <View
1265
+ style={
1266
+ [
1267
+ {
1268
+ "paddingLeft": 12,
1269
+ },
1270
+ undefined,
1271
+ ]
1272
+ }
1273
+ themePosition="right"
1274
+ />
1275
+ <View
1276
+ pointerEvents="box-none"
1277
+ position="bottom"
1278
+ style={
1279
+ [
1280
+ {
1281
+ "bottom": 0,
1282
+ "elevation": 9999,
1283
+ "flexDirection": "column-reverse",
1284
+ "left": 0,
1285
+ "paddingHorizontal": 24,
1286
+ "paddingVertical": 16,
1287
+ "position": "absolute",
1288
+ "right": 0,
1289
+ "top": 0,
1290
+ },
1291
+ undefined,
1292
+ ]
1293
+ }
1294
+ />
1295
+ </View>
590
1296
  `;
591
1297
 
592
1298
  exports[`StyledButtonText has filled-danger style 1`] = `
593
- <Text
594
- allowFontScaling={false}
595
- style={
596
- Array [
597
- Object {
598
- "color": "#001f23",
599
- "fontFamily": "BeVietnamPro-Regular",
600
- "fontSize": 14,
601
- "letterSpacing": 0.42,
602
- "lineHeight": 22,
603
- },
604
- Array [
605
- Object {
606
- "color": "#ffffff",
607
- "flexShrink": 1,
608
- "fontFamily": "BeVietnamPro-SemiBold",
609
- "fontSize": 18,
610
- "textAlign": "center",
611
- },
612
- undefined,
613
- ],
614
- ]
615
- }
616
- themeFontSize="medium"
617
- themeFontWeight="regular"
618
- themeIntent="body"
619
- themeTypeface="neutral"
620
- themeVariant="filled-danger"
621
- >
622
- Example
623
- </Text>
1299
+ <View
1300
+ style={
1301
+ {
1302
+ "flex": 1,
1303
+ }
1304
+ }
1305
+ >
1306
+ <Text
1307
+ allowFontScaling={false}
1308
+ style={
1309
+ [
1310
+ {
1311
+ "color": "#001f23",
1312
+ "fontFamily": "BeVietnamPro-Regular",
1313
+ "fontSize": 42,
1314
+ "letterSpacing": 0,
1315
+ "lineHeight": 50,
1316
+ },
1317
+ [
1318
+ {
1319
+ "color": "#ffffff",
1320
+ "flexShrink": 1,
1321
+ "textAlign": "center",
1322
+ },
1323
+ undefined,
1324
+ ],
1325
+ ]
1326
+ }
1327
+ themeButtonVariant="filled-danger"
1328
+ themeIntent="body"
1329
+ themeLevel="h1"
1330
+ themeTypeface="neutral"
1331
+ >
1332
+ Example
1333
+ </Text>
1334
+ <View
1335
+ pointerEvents="box-none"
1336
+ position="bottom"
1337
+ style={
1338
+ [
1339
+ {
1340
+ "bottom": 0,
1341
+ "elevation": 9999,
1342
+ "flexDirection": "column-reverse",
1343
+ "left": 0,
1344
+ "paddingHorizontal": 24,
1345
+ "paddingVertical": 16,
1346
+ "position": "absolute",
1347
+ "right": 0,
1348
+ "top": 0,
1349
+ },
1350
+ undefined,
1351
+ ]
1352
+ }
1353
+ />
1354
+ </View>
624
1355
  `;
625
1356
 
626
1357
  exports[`StyledButtonText has filled-primary style 1`] = `
627
- <Text
628
- allowFontScaling={false}
629
- style={
630
- Array [
631
- Object {
632
- "color": "#001f23",
633
- "fontFamily": "BeVietnamPro-Regular",
634
- "fontSize": 14,
635
- "letterSpacing": 0.42,
636
- "lineHeight": 22,
637
- },
638
- Array [
639
- Object {
640
- "color": "#ffffff",
641
- "flexShrink": 1,
642
- "fontFamily": "BeVietnamPro-SemiBold",
643
- "fontSize": 18,
644
- "textAlign": "center",
645
- },
646
- undefined,
647
- ],
648
- ]
649
- }
650
- themeFontSize="medium"
651
- themeFontWeight="regular"
652
- themeIntent="body"
653
- themeTypeface="neutral"
654
- themeVariant="filled-primary"
655
- >
656
- Example
657
- </Text>
1358
+ <View
1359
+ style={
1360
+ {
1361
+ "flex": 1,
1362
+ }
1363
+ }
1364
+ >
1365
+ <Text
1366
+ allowFontScaling={false}
1367
+ style={
1368
+ [
1369
+ {
1370
+ "color": "#001f23",
1371
+ "fontFamily": "BeVietnamPro-Regular",
1372
+ "fontSize": 42,
1373
+ "letterSpacing": 0,
1374
+ "lineHeight": 50,
1375
+ },
1376
+ [
1377
+ {
1378
+ "color": "#ffffff",
1379
+ "flexShrink": 1,
1380
+ "textAlign": "center",
1381
+ },
1382
+ undefined,
1383
+ ],
1384
+ ]
1385
+ }
1386
+ themeButtonVariant="filled-primary"
1387
+ themeIntent="body"
1388
+ themeLevel="h1"
1389
+ themeTypeface="neutral"
1390
+ >
1391
+ Example
1392
+ </Text>
1393
+ <View
1394
+ pointerEvents="box-none"
1395
+ position="bottom"
1396
+ style={
1397
+ [
1398
+ {
1399
+ "bottom": 0,
1400
+ "elevation": 9999,
1401
+ "flexDirection": "column-reverse",
1402
+ "left": 0,
1403
+ "paddingHorizontal": 24,
1404
+ "paddingVertical": 16,
1405
+ "position": "absolute",
1406
+ "right": 0,
1407
+ "top": 0,
1408
+ },
1409
+ undefined,
1410
+ ]
1411
+ }
1412
+ />
1413
+ </View>
658
1414
  `;
659
1415
 
660
1416
  exports[`StyledButtonText has filled-secondary style 1`] = `
661
- <Text
662
- allowFontScaling={false}
663
- style={
664
- Array [
665
- Object {
666
- "color": "#001f23",
667
- "fontFamily": "BeVietnamPro-Regular",
668
- "fontSize": 14,
669
- "letterSpacing": 0.42,
670
- "lineHeight": 22,
671
- },
672
- Array [
673
- Object {
674
- "color": "#ffffff",
675
- "flexShrink": 1,
676
- "fontFamily": "BeVietnamPro-SemiBold",
677
- "fontSize": 18,
678
- "textAlign": "center",
679
- },
680
- undefined,
681
- ],
682
- ]
683
- }
684
- themeFontSize="medium"
685
- themeFontWeight="regular"
686
- themeIntent="body"
687
- themeTypeface="neutral"
688
- themeVariant="filled-secondary"
689
- >
690
- Example
691
- </Text>
1417
+ <View
1418
+ style={
1419
+ {
1420
+ "flex": 1,
1421
+ }
1422
+ }
1423
+ >
1424
+ <Text
1425
+ allowFontScaling={false}
1426
+ style={
1427
+ [
1428
+ {
1429
+ "color": "#001f23",
1430
+ "fontFamily": "BeVietnamPro-Regular",
1431
+ "fontSize": 42,
1432
+ "letterSpacing": 0,
1433
+ "lineHeight": 50,
1434
+ },
1435
+ [
1436
+ {
1437
+ "color": "#ffffff",
1438
+ "flexShrink": 1,
1439
+ "textAlign": "center",
1440
+ },
1441
+ undefined,
1442
+ ],
1443
+ ]
1444
+ }
1445
+ themeButtonVariant="filled-secondary"
1446
+ themeIntent="body"
1447
+ themeLevel="h1"
1448
+ themeTypeface="neutral"
1449
+ >
1450
+ Example
1451
+ </Text>
1452
+ <View
1453
+ pointerEvents="box-none"
1454
+ position="bottom"
1455
+ style={
1456
+ [
1457
+ {
1458
+ "bottom": 0,
1459
+ "elevation": 9999,
1460
+ "flexDirection": "column-reverse",
1461
+ "left": 0,
1462
+ "paddingHorizontal": 24,
1463
+ "paddingVertical": 16,
1464
+ "position": "absolute",
1465
+ "right": 0,
1466
+ "top": 0,
1467
+ },
1468
+ undefined,
1469
+ ]
1470
+ }
1471
+ />
1472
+ </View>
692
1473
  `;
693
1474
 
694
1475
  exports[`StyledButtonText has outlined-danger style 1`] = `
695
- <Text
696
- allowFontScaling={false}
697
- style={
698
- Array [
699
- Object {
700
- "color": "#001f23",
701
- "fontFamily": "BeVietnamPro-Regular",
702
- "fontSize": 14,
703
- "letterSpacing": 0.42,
704
- "lineHeight": 22,
705
- },
706
- Array [
707
- Object {
708
- "color": "#de350b",
709
- "flexShrink": 1,
710
- "fontFamily": "BeVietnamPro-SemiBold",
711
- "fontSize": 18,
712
- "textAlign": "center",
713
- },
714
- undefined,
715
- ],
716
- ]
717
- }
718
- themeFontSize="medium"
719
- themeFontWeight="regular"
720
- themeIntent="body"
721
- themeTypeface="neutral"
722
- themeVariant="outlined-danger"
723
- >
724
- Example
725
- </Text>
1476
+ <View
1477
+ style={
1478
+ {
1479
+ "flex": 1,
1480
+ }
1481
+ }
1482
+ >
1483
+ <Text
1484
+ allowFontScaling={false}
1485
+ style={
1486
+ [
1487
+ {
1488
+ "color": "#001f23",
1489
+ "fontFamily": "BeVietnamPro-Regular",
1490
+ "fontSize": 42,
1491
+ "letterSpacing": 0,
1492
+ "lineHeight": 50,
1493
+ },
1494
+ [
1495
+ {
1496
+ "color": "#cb300a",
1497
+ "flexShrink": 1,
1498
+ "textAlign": "center",
1499
+ },
1500
+ undefined,
1501
+ ],
1502
+ ]
1503
+ }
1504
+ themeButtonVariant="outlined-danger"
1505
+ themeIntent="body"
1506
+ themeLevel="h1"
1507
+ themeTypeface="neutral"
1508
+ >
1509
+ Example
1510
+ </Text>
1511
+ <View
1512
+ pointerEvents="box-none"
1513
+ position="bottom"
1514
+ style={
1515
+ [
1516
+ {
1517
+ "bottom": 0,
1518
+ "elevation": 9999,
1519
+ "flexDirection": "column-reverse",
1520
+ "left": 0,
1521
+ "paddingHorizontal": 24,
1522
+ "paddingVertical": 16,
1523
+ "position": "absolute",
1524
+ "right": 0,
1525
+ "top": 0,
1526
+ },
1527
+ undefined,
1528
+ ]
1529
+ }
1530
+ />
1531
+ </View>
726
1532
  `;
727
1533
 
728
1534
  exports[`StyledButtonText has outlined-primary style 1`] = `
729
- <Text
730
- allowFontScaling={false}
731
- style={
732
- Array [
733
- Object {
734
- "color": "#001f23",
735
- "fontFamily": "BeVietnamPro-Regular",
736
- "fontSize": 14,
737
- "letterSpacing": 0.42,
738
- "lineHeight": 22,
739
- },
740
- Array [
741
- Object {
742
- "color": "#401960",
743
- "flexShrink": 1,
744
- "fontFamily": "BeVietnamPro-SemiBold",
745
- "fontSize": 18,
746
- "textAlign": "center",
747
- },
748
- undefined,
749
- ],
750
- ]
751
- }
752
- themeFontSize="medium"
753
- themeFontWeight="regular"
754
- themeIntent="body"
755
- themeTypeface="neutral"
756
- themeVariant="outlined-primary"
757
- >
758
- Example
759
- </Text>
1535
+ <View
1536
+ style={
1537
+ {
1538
+ "flex": 1,
1539
+ }
1540
+ }
1541
+ >
1542
+ <Text
1543
+ allowFontScaling={false}
1544
+ style={
1545
+ [
1546
+ {
1547
+ "color": "#001f23",
1548
+ "fontFamily": "BeVietnamPro-Regular",
1549
+ "fontSize": 42,
1550
+ "letterSpacing": 0,
1551
+ "lineHeight": 50,
1552
+ },
1553
+ [
1554
+ {
1555
+ "color": "#401960",
1556
+ "flexShrink": 1,
1557
+ "textAlign": "center",
1558
+ },
1559
+ undefined,
1560
+ ],
1561
+ ]
1562
+ }
1563
+ themeButtonVariant="outlined-primary"
1564
+ themeIntent="body"
1565
+ themeLevel="h1"
1566
+ themeTypeface="neutral"
1567
+ >
1568
+ Example
1569
+ </Text>
1570
+ <View
1571
+ pointerEvents="box-none"
1572
+ position="bottom"
1573
+ style={
1574
+ [
1575
+ {
1576
+ "bottom": 0,
1577
+ "elevation": 9999,
1578
+ "flexDirection": "column-reverse",
1579
+ "left": 0,
1580
+ "paddingHorizontal": 24,
1581
+ "paddingVertical": 16,
1582
+ "position": "absolute",
1583
+ "right": 0,
1584
+ "top": 0,
1585
+ },
1586
+ undefined,
1587
+ ]
1588
+ }
1589
+ />
1590
+ </View>
760
1591
  `;
761
1592
 
762
1593
  exports[`StyledButtonText has outlined-secondary style 1`] = `
763
- <Text
764
- allowFontScaling={false}
765
- style={
766
- Array [
767
- Object {
768
- "color": "#001f23",
769
- "fontFamily": "BeVietnamPro-Regular",
770
- "fontSize": 14,
771
- "letterSpacing": 0.42,
772
- "lineHeight": 22,
773
- },
774
- Array [
775
- Object {
776
- "color": "#795e90",
777
- "flexShrink": 1,
778
- "fontFamily": "BeVietnamPro-SemiBold",
779
- "fontSize": 18,
780
- "textAlign": "center",
781
- },
782
- undefined,
783
- ],
784
- ]
785
- }
786
- themeFontSize="medium"
787
- themeFontWeight="regular"
788
- themeIntent="body"
789
- themeTypeface="neutral"
790
- themeVariant="outlined-secondary"
791
- >
792
- Example
793
- </Text>
1594
+ <View
1595
+ style={
1596
+ {
1597
+ "flex": 1,
1598
+ }
1599
+ }
1600
+ >
1601
+ <Text
1602
+ allowFontScaling={false}
1603
+ style={
1604
+ [
1605
+ {
1606
+ "color": "#001f23",
1607
+ "fontFamily": "BeVietnamPro-Regular",
1608
+ "fontSize": 42,
1609
+ "letterSpacing": 0,
1610
+ "lineHeight": 50,
1611
+ },
1612
+ [
1613
+ {
1614
+ "color": "#795e90",
1615
+ "flexShrink": 1,
1616
+ "textAlign": "center",
1617
+ },
1618
+ undefined,
1619
+ ],
1620
+ ]
1621
+ }
1622
+ themeButtonVariant="outlined-secondary"
1623
+ themeIntent="body"
1624
+ themeLevel="h1"
1625
+ themeTypeface="neutral"
1626
+ >
1627
+ Example
1628
+ </Text>
1629
+ <View
1630
+ pointerEvents="box-none"
1631
+ position="bottom"
1632
+ style={
1633
+ [
1634
+ {
1635
+ "bottom": 0,
1636
+ "elevation": 9999,
1637
+ "flexDirection": "column-reverse",
1638
+ "left": 0,
1639
+ "paddingHorizontal": 24,
1640
+ "paddingVertical": 16,
1641
+ "position": "absolute",
1642
+ "right": 0,
1643
+ "top": 0,
1644
+ },
1645
+ undefined,
1646
+ ]
1647
+ }
1648
+ />
1649
+ </View>
794
1650
  `;
795
1651
 
796
1652
  exports[`StyledButtonText has text-danger style 1`] = `
797
- <Text
798
- allowFontScaling={false}
799
- style={
800
- Array [
801
- Object {
802
- "color": "#001f23",
803
- "fontFamily": "BeVietnamPro-Regular",
804
- "fontSize": 14,
805
- "letterSpacing": 0.42,
806
- "lineHeight": 22,
807
- },
808
- Array [
809
- Object {
810
- "color": "#de350b",
811
- "flexShrink": 1,
812
- "fontFamily": "BeVietnamPro-SemiBold",
813
- "fontSize": 16,
814
- "textAlign": "center",
815
- },
816
- undefined,
817
- ],
818
- ]
819
- }
820
- themeFontSize="medium"
821
- themeFontWeight="regular"
822
- themeIntent="body"
823
- themeTypeface="neutral"
824
- themeVariant="text-danger"
825
- >
826
- Example
827
- </Text>
1653
+ <View
1654
+ style={
1655
+ {
1656
+ "flex": 1,
1657
+ }
1658
+ }
1659
+ >
1660
+ <Text
1661
+ allowFontScaling={false}
1662
+ style={
1663
+ [
1664
+ {
1665
+ "color": "#001f23",
1666
+ "fontFamily": "BeVietnamPro-Regular",
1667
+ "fontSize": 42,
1668
+ "letterSpacing": 0,
1669
+ "lineHeight": 50,
1670
+ },
1671
+ [
1672
+ {
1673
+ "color": "#cb300a",
1674
+ "flexShrink": 1,
1675
+ "textAlign": "center",
1676
+ },
1677
+ undefined,
1678
+ ],
1679
+ ]
1680
+ }
1681
+ themeButtonVariant="text-danger"
1682
+ themeIntent="body"
1683
+ themeLevel="h1"
1684
+ themeTypeface="neutral"
1685
+ >
1686
+ Example
1687
+ </Text>
1688
+ <View
1689
+ pointerEvents="box-none"
1690
+ position="bottom"
1691
+ style={
1692
+ [
1693
+ {
1694
+ "bottom": 0,
1695
+ "elevation": 9999,
1696
+ "flexDirection": "column-reverse",
1697
+ "left": 0,
1698
+ "paddingHorizontal": 24,
1699
+ "paddingVertical": 16,
1700
+ "position": "absolute",
1701
+ "right": 0,
1702
+ "top": 0,
1703
+ },
1704
+ undefined,
1705
+ ]
1706
+ }
1707
+ />
1708
+ </View>
828
1709
  `;
829
1710
 
830
1711
  exports[`StyledButtonText has text-primary style 1`] = `
831
- <Text
832
- allowFontScaling={false}
833
- style={
834
- Array [
835
- Object {
836
- "color": "#001f23",
837
- "fontFamily": "BeVietnamPro-Regular",
838
- "fontSize": 14,
839
- "letterSpacing": 0.42,
840
- "lineHeight": 22,
841
- },
842
- Array [
843
- Object {
844
- "color": "#401960",
845
- "flexShrink": 1,
846
- "fontFamily": "BeVietnamPro-SemiBold",
847
- "fontSize": 16,
848
- "textAlign": "center",
849
- },
850
- undefined,
851
- ],
852
- ]
853
- }
854
- themeFontSize="medium"
855
- themeFontWeight="regular"
856
- themeIntent="body"
857
- themeTypeface="neutral"
858
- themeVariant="text-primary"
859
- >
860
- Example
861
- </Text>
1712
+ <View
1713
+ style={
1714
+ {
1715
+ "flex": 1,
1716
+ }
1717
+ }
1718
+ >
1719
+ <Text
1720
+ allowFontScaling={false}
1721
+ style={
1722
+ [
1723
+ {
1724
+ "color": "#001f23",
1725
+ "fontFamily": "BeVietnamPro-Regular",
1726
+ "fontSize": 42,
1727
+ "letterSpacing": 0,
1728
+ "lineHeight": 50,
1729
+ },
1730
+ [
1731
+ {
1732
+ "color": "#401960",
1733
+ "flexShrink": 1,
1734
+ "textAlign": "center",
1735
+ },
1736
+ undefined,
1737
+ ],
1738
+ ]
1739
+ }
1740
+ themeButtonVariant="text-primary"
1741
+ themeIntent="body"
1742
+ themeLevel="h1"
1743
+ themeTypeface="neutral"
1744
+ >
1745
+ Example
1746
+ </Text>
1747
+ <View
1748
+ pointerEvents="box-none"
1749
+ position="bottom"
1750
+ style={
1751
+ [
1752
+ {
1753
+ "bottom": 0,
1754
+ "elevation": 9999,
1755
+ "flexDirection": "column-reverse",
1756
+ "left": 0,
1757
+ "paddingHorizontal": 24,
1758
+ "paddingVertical": 16,
1759
+ "position": "absolute",
1760
+ "right": 0,
1761
+ "top": 0,
1762
+ },
1763
+ undefined,
1764
+ ]
1765
+ }
1766
+ />
1767
+ </View>
862
1768
  `;
863
1769
 
864
1770
  exports[`StyledButtonText has text-secondary style 1`] = `
865
- <Text
866
- allowFontScaling={false}
867
- style={
868
- Array [
869
- Object {
870
- "color": "#001f23",
871
- "fontFamily": "BeVietnamPro-Regular",
872
- "fontSize": 14,
873
- "letterSpacing": 0.42,
874
- "lineHeight": 22,
875
- },
876
- Array [
877
- Object {
878
- "color": "#795e90",
879
- "flexShrink": 1,
880
- "fontFamily": "BeVietnamPro-SemiBold",
881
- "fontSize": 16,
882
- "textAlign": "center",
883
- },
884
- undefined,
885
- ],
886
- ]
887
- }
888
- themeFontSize="medium"
889
- themeFontWeight="regular"
890
- themeIntent="body"
891
- themeTypeface="neutral"
892
- themeVariant="text-secondary"
893
- >
894
- Example
895
- </Text>
1771
+ <View
1772
+ style={
1773
+ {
1774
+ "flex": 1,
1775
+ }
1776
+ }
1777
+ >
1778
+ <Text
1779
+ allowFontScaling={false}
1780
+ style={
1781
+ [
1782
+ {
1783
+ "color": "#001f23",
1784
+ "fontFamily": "BeVietnamPro-Regular",
1785
+ "fontSize": 42,
1786
+ "letterSpacing": 0,
1787
+ "lineHeight": 50,
1788
+ },
1789
+ [
1790
+ {
1791
+ "color": "#795e90",
1792
+ "flexShrink": 1,
1793
+ "textAlign": "center",
1794
+ },
1795
+ undefined,
1796
+ ],
1797
+ ]
1798
+ }
1799
+ themeButtonVariant="text-secondary"
1800
+ themeIntent="body"
1801
+ themeLevel="h1"
1802
+ themeTypeface="neutral"
1803
+ >
1804
+ Example
1805
+ </Text>
1806
+ <View
1807
+ pointerEvents="box-none"
1808
+ position="bottom"
1809
+ style={
1810
+ [
1811
+ {
1812
+ "bottom": 0,
1813
+ "elevation": 9999,
1814
+ "flexDirection": "column-reverse",
1815
+ "left": 0,
1816
+ "paddingHorizontal": 24,
1817
+ "paddingVertical": 16,
1818
+ "position": "absolute",
1819
+ "right": 0,
1820
+ "top": 0,
1821
+ },
1822
+ undefined,
1823
+ ]
1824
+ }
1825
+ />
1826
+ </View>
896
1827
  `;
897
1828
 
898
1829
  exports[`StyledButtonText renders disabled correctly 1`] = `
899
- <Text
900
- allowFontScaling={false}
901
- disabled={true}
902
- style={
903
- Array [
904
- Object {
905
- "color": "#001f23",
906
- "fontFamily": "BeVietnamPro-Regular",
907
- "fontSize": 14,
908
- "letterSpacing": 0.42,
909
- "lineHeight": 22,
910
- },
911
- Array [
912
- Object {
913
- "color": "#ffffff",
914
- "flexShrink": 1,
915
- "fontFamily": "BeVietnamPro-SemiBold",
916
- "fontSize": 18,
917
- "textAlign": "center",
918
- },
919
- undefined,
920
- ],
921
- ]
922
- }
923
- themeFontSize="medium"
924
- themeFontWeight="regular"
925
- themeIntent="body"
926
- themeTypeface="neutral"
927
- themeVariant="filled-primary"
928
- >
929
- Example
930
- </Text>
1830
+ <View
1831
+ style={
1832
+ {
1833
+ "flex": 1,
1834
+ }
1835
+ }
1836
+ >
1837
+ <Text
1838
+ allowFontScaling={false}
1839
+ disabled={true}
1840
+ style={
1841
+ [
1842
+ {
1843
+ "color": "#001f23",
1844
+ "fontFamily": "BeVietnamPro-Regular",
1845
+ "fontSize": 42,
1846
+ "letterSpacing": 0,
1847
+ "lineHeight": 50,
1848
+ },
1849
+ [
1850
+ {
1851
+ "color": "#ffffff",
1852
+ "flexShrink": 1,
1853
+ "textAlign": "center",
1854
+ },
1855
+ undefined,
1856
+ ],
1857
+ ]
1858
+ }
1859
+ themeButtonVariant="filled-primary"
1860
+ themeIntent="body"
1861
+ themeLevel="h1"
1862
+ themeTypeface="neutral"
1863
+ >
1864
+ Example
1865
+ </Text>
1866
+ <View
1867
+ pointerEvents="box-none"
1868
+ position="bottom"
1869
+ style={
1870
+ [
1871
+ {
1872
+ "bottom": 0,
1873
+ "elevation": 9999,
1874
+ "flexDirection": "column-reverse",
1875
+ "left": 0,
1876
+ "paddingHorizontal": 24,
1877
+ "paddingVertical": 16,
1878
+ "position": "absolute",
1879
+ "right": 0,
1880
+ "top": 0,
1881
+ },
1882
+ undefined,
1883
+ ]
1884
+ }
1885
+ />
1886
+ </View>
931
1887
  `;