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