@hero-design/rn 8.82.0-alpha.0 → 8.82.1

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 (353) hide show
  1. package/.turbo/turbo-build.log +7 -0
  2. package/CHANGELOG.md +11 -1
  3. package/assets/fonts/Saiga-Light.otf +0 -0
  4. package/assets/fonts/Saiga-Medium.otf +0 -0
  5. package/assets/fonts/Saiga-Regular.otf +0 -0
  6. package/assets/fonts/hero-icons-mobile.ttf +0 -0
  7. package/es/index.js +37391 -0
  8. package/lib/assets/fonts/hero-icons-mobile.ttf +0 -0
  9. package/lib/index.js +37488 -0
  10. package/package.json +1 -1
  11. package/src/components/BottomSheet/index.tsx +15 -13
  12. package/src/components/Carousel/__tests__/__snapshots__/index.spec.tsx.snap +11 -11
  13. package/src/components/Empty/__tests__/__snapshots__/index.spec.tsx.snap +4 -4
  14. package/src/components/Error/__tests__/__snapshots__/index.spec.tsx.snap +8 -8
  15. package/src/components/Icon/HeroIcon/glyphMap.json +1 -1
  16. package/src/components/Icon/IconList.ts +14 -0
  17. package/src/components/Success/__tests__/__snapshots__/index.spec.tsx.snap +5 -5
  18. package/src/components/Typography/Body/__tests__/__snapshots__/StyledBody.tsx.snap +4 -4
  19. package/src/components/Typography/Body/__tests__/__snapshots__/index.spec.tsx.snap +4 -4
  20. package/src/components/Typography/Text/__tests__/__snapshots__/StyledText.spec.tsx.snap +1 -1
  21. package/src/components/Typography/Title/__tests__/__snapshots__/StyledTitle.tsx.snap +6 -6
  22. package/src/components/Typography/Title/__tests__/__snapshots__/index.spec.tsx.snap +6 -6
  23. package/src/theme/__tests__/__snapshots__/index.spec.ts.snap +21 -21
  24. package/src/theme/global/scale.ts +1 -1
  25. package/src/theme/global/typography.ts +2 -2
  26. package/stats/8.82.0/rn-stats.html +4842 -0
  27. package/stats/8.82.1/rn-stats.html +4844 -0
  28. package/types/components/Accordion/AccordionItem.d.ts +15 -0
  29. package/types/components/Accordion/StyledAccordion.d.ts +32 -0
  30. package/types/components/Accordion/index.d.ts +39 -0
  31. package/types/components/Alert/StyledAlert.d.ts +53 -0
  32. package/types/components/Alert/index.d.ts +58 -0
  33. package/types/components/AnimatedScroller/AnimatedFAB.d.ts +12 -0
  34. package/types/components/AnimatedScroller/AnimatedScrollable.d.ts +16 -0
  35. package/types/components/AnimatedScroller/FlatListWithFAB.d.ts +12 -0
  36. package/types/components/AnimatedScroller/ScrollViewWithFAB.d.ts +12 -0
  37. package/types/components/AnimatedScroller/SectionListWithFAB.d.ts +12 -0
  38. package/types/components/AnimatedScroller/index.d.ts +4 -0
  39. package/types/components/Attachment/StyledAttachment.d.ts +28 -0
  40. package/types/components/Attachment/index.d.ts +38 -0
  41. package/types/components/Avatar/Avatar.d.ts +34 -0
  42. package/types/components/Avatar/AvatarStack/StyledAvatarStack.d.ts +30 -0
  43. package/types/components/Avatar/AvatarStack/index.d.ts +35 -0
  44. package/types/components/Avatar/AvatarStack/utils.d.ts +4 -0
  45. package/types/components/Avatar/StyledAvatar.d.ts +34 -0
  46. package/types/components/Avatar/index.d.ts +6 -0
  47. package/types/components/Badge/Status.d.ts +24 -0
  48. package/types/components/Badge/StyledBadge.d.ts +33 -0
  49. package/types/components/Badge/index.d.ts +6 -0
  50. package/types/components/Badge/types.d.ts +53 -0
  51. package/types/components/BottomNavigation/StyledBottomNavigation.d.ts +51 -0
  52. package/types/components/BottomNavigation/index.d.ts +45 -0
  53. package/types/components/BottomSheet/BottomSheetContext.d.ts +5 -0
  54. package/types/components/BottomSheet/Footer.d.ts +7 -0
  55. package/types/components/BottomSheet/Header.d.ts +10 -0
  56. package/types/components/BottomSheet/ScrollView.d.ts +3 -0
  57. package/types/components/BottomSheet/StyledBottomSheet.d.ts +61 -0
  58. package/types/components/BottomSheet/index.d.ts +74 -0
  59. package/types/components/Box/StyledBox.d.ts +15 -0
  60. package/types/components/Box/config.d.ts +170 -0
  61. package/types/components/Box/index.d.ts +6 -0
  62. package/types/components/Box/types.d.ts +31 -0
  63. package/types/components/Button/Button.d.ts +57 -0
  64. package/types/components/Button/IconButton.d.ts +39 -0
  65. package/types/components/Button/LoadingIndicator/StyledLoadingIndicator.d.ts +20 -0
  66. package/types/components/Button/LoadingIndicator/index.d.ts +27 -0
  67. package/types/components/Button/StyledButton.d.ts +48 -0
  68. package/types/components/Button/UtilityButton/StyledUtilityButton.d.ts +17 -0
  69. package/types/components/Button/UtilityButton/index.d.ts +24 -0
  70. package/types/components/Button/index.d.ts +10 -0
  71. package/types/components/Calendar/CalendarRowItem.d.ts +12 -0
  72. package/types/components/Calendar/StyledCalendar.d.ts +62 -0
  73. package/types/components/Calendar/helpers.d.ts +3 -0
  74. package/types/components/Calendar/index.d.ts +58 -0
  75. package/types/components/Card/DataCard/StyledDataCard.d.ts +16 -0
  76. package/types/components/Card/DataCard/index.d.ts +22 -0
  77. package/types/components/Card/StyledCard.d.ts +11 -0
  78. package/types/components/Card/index.d.ts +25 -0
  79. package/types/components/Carousel/CardCarousel.d.ts +42 -0
  80. package/types/components/Carousel/CarouselItem.d.ts +7 -0
  81. package/types/components/Carousel/StyledCardCarousel.d.ts +24 -0
  82. package/types/components/Carousel/StyledCarousel.d.ts +54 -0
  83. package/types/components/Carousel/contants.d.ts +2 -0
  84. package/types/components/Carousel/index.d.ts +44 -0
  85. package/types/components/Carousel/types.d.ts +14 -0
  86. package/types/components/Checkbox/StyledCheckbox.d.ts +35 -0
  87. package/types/components/Checkbox/index.d.ts +44 -0
  88. package/types/components/Chip/StyledChip.d.ts +16 -0
  89. package/types/components/Chip/index.d.ts +31 -0
  90. package/types/components/Collapse/StyledCollapse.d.ts +23 -0
  91. package/types/components/Collapse/index.d.ts +20 -0
  92. package/types/components/ContentNavigator/StyledContentNavigator.d.ts +8 -0
  93. package/types/components/ContentNavigator/index.d.ts +43 -0
  94. package/types/components/DatePicker/DatePickerAndroid.d.ts +7 -0
  95. package/types/components/DatePicker/DatePickerCalendar.d.ts +4 -0
  96. package/types/components/DatePicker/DatePickerIOS.d.ts +7 -0
  97. package/types/components/DatePicker/StyledDatePicker.d.ts +9 -0
  98. package/types/components/DatePicker/index.d.ts +4 -0
  99. package/types/components/DatePicker/types.d.ts +79 -0
  100. package/types/components/DatePicker/useCalculateDate.d.ts +4 -0
  101. package/types/components/Divider/StyledDivider.d.ts +12 -0
  102. package/types/components/Divider/index.d.ts +22 -0
  103. package/types/components/Drawer/DragableDrawer/helpers.d.ts +8 -0
  104. package/types/components/Drawer/DragableDrawer/index.d.ts +33 -0
  105. package/types/components/Drawer/StyledDrawer.d.ts +49 -0
  106. package/types/components/Drawer/index.d.ts +27 -0
  107. package/types/components/Empty/StyledEmpty.d.ts +21 -0
  108. package/types/components/Empty/index.d.ts +31 -0
  109. package/types/components/Error/StyledError.d.ts +53 -0
  110. package/types/components/Error/index.d.ts +56 -0
  111. package/types/components/FAB/ActionGroup/ActionItem.d.ts +18 -0
  112. package/types/components/FAB/ActionGroup/StyledActionGroup.d.ts +27 -0
  113. package/types/components/FAB/ActionGroup/StyledActionItem.d.ts +18 -0
  114. package/types/components/FAB/ActionGroup/index.d.ts +54 -0
  115. package/types/components/FAB/AnimatedFABIcon.d.ts +7 -0
  116. package/types/components/FAB/FAB.d.ts +40 -0
  117. package/types/components/FAB/Pair/StyledFAB.d.ts +12 -0
  118. package/types/components/FAB/Pair/index.d.ts +16 -0
  119. package/types/components/FAB/StyledFAB.d.ts +21 -0
  120. package/types/components/FAB/index.d.ts +5 -0
  121. package/types/components/FloatingIsland/StyledFloatingIsland.d.ts +19 -0
  122. package/types/components/FloatingIsland/index.d.ts +23 -0
  123. package/types/components/HeroDesignProvider/index.d.ts +4 -0
  124. package/types/components/Icon/AnimatedIcon.d.ts +6 -0
  125. package/types/components/Icon/HeroIcon/index.d.ts +12 -0
  126. package/types/components/Icon/IconList.d.ts +2 -0
  127. package/types/components/Icon/index.d.ts +35 -0
  128. package/types/components/Icon/utils.d.ts +2 -0
  129. package/types/components/Image/index.d.ts +17 -0
  130. package/types/components/List/BasicListItem.d.ts +43 -0
  131. package/types/components/List/ListItem.d.ts +52 -0
  132. package/types/components/List/StyledBasicListItem.d.ts +29 -0
  133. package/types/components/List/StyledListItem.d.ts +51 -0
  134. package/types/components/List/index.d.ts +8 -0
  135. package/types/components/MapPin/Focussed.d.ts +13 -0
  136. package/types/components/MapPin/StyledMapPin.d.ts +31 -0
  137. package/types/components/MapPin/index.d.ts +5 -0
  138. package/types/components/MapPin/types.d.ts +38 -0
  139. package/types/components/Modal/index.d.ts +37 -0
  140. package/types/components/PageControl/StyledPageControl.d.ts +12 -0
  141. package/types/components/PageControl/index.d.ts +22 -0
  142. package/types/components/PinInput/PinCell.d.ts +9 -0
  143. package/types/components/PinInput/StyledPinInput.d.ts +69 -0
  144. package/types/components/PinInput/index.d.ts +69 -0
  145. package/types/components/Portal/PortalHost.d.ts +5 -0
  146. package/types/components/Portal/PortalProvider.d.ts +7 -0
  147. package/types/components/Portal/constants.d.ts +8 -0
  148. package/types/components/Portal/contexts.d.ts +9 -0
  149. package/types/components/Portal/index.d.ts +18 -0
  150. package/types/components/Portal/reducer.d.ts +5 -0
  151. package/types/components/Portal/types.d.ts +22 -0
  152. package/types/components/Portal/usePortal.d.ts +8 -0
  153. package/types/components/Portal/usePortalState.d.ts +1 -0
  154. package/types/components/Progress/ProgressBar.d.ts +18 -0
  155. package/types/components/Progress/ProgressCircle.d.ts +20 -0
  156. package/types/components/Progress/ProgressStep.d.ts +20 -0
  157. package/types/components/Progress/StyledProgressBar.d.ts +18 -0
  158. package/types/components/Progress/StyledProgressCircle.d.ts +46 -0
  159. package/types/components/Progress/StyledStep.d.ts +23 -0
  160. package/types/components/Progress/__tests__/index.spec.d.ts +1 -0
  161. package/types/components/Progress/constants.d.ts +15 -0
  162. package/types/components/Progress/index.d.ts +6 -0
  163. package/types/components/Progress/types.d.ts +1 -0
  164. package/types/components/Radio/Radio.d.ts +38 -0
  165. package/types/components/Radio/RadioGroup.d.ts +36 -0
  166. package/types/components/Radio/StyledRadio.d.ts +30 -0
  167. package/types/components/Radio/index.d.ts +4 -0
  168. package/types/components/Radio/types.d.ts +8 -0
  169. package/types/components/Rate/StyledRate.d.ts +10 -0
  170. package/types/components/Rate/index.d.ts +29 -0
  171. package/types/components/RefreshControl/index.d.ts +5 -0
  172. package/types/components/RichTextEditor/EditorEvent.d.ts +4 -0
  173. package/types/components/RichTextEditor/EditorToolbar.d.ts +18 -0
  174. package/types/components/RichTextEditor/MentionList.d.ts +17 -0
  175. package/types/components/RichTextEditor/RichTextEditor.d.ts +70 -0
  176. package/types/components/RichTextEditor/StyledRichTextEditor.d.ts +16 -0
  177. package/types/components/RichTextEditor/StyledToolbar.d.ts +21 -0
  178. package/types/components/RichTextEditor/__mocks__/heroEditorApp.d.ts +2 -0
  179. package/types/components/RichTextEditor/constants.d.ts +9 -0
  180. package/types/components/RichTextEditor/heroEditorApp.d.ts +2 -0
  181. package/types/components/RichTextEditor/index.d.ts +7 -0
  182. package/types/components/RichTextEditor/types.d.ts +1 -0
  183. package/types/components/RichTextEditor/utils/events.d.ts +8 -0
  184. package/types/components/RichTextEditor/utils/rnWebView.d.ts +7 -0
  185. package/types/components/Search/SearchOneLine.d.ts +69 -0
  186. package/types/components/Search/SearchSuffixIcon.d.ts +24 -0
  187. package/types/components/Search/SearchTwoLine.d.ts +36 -0
  188. package/types/components/Search/StyledSearch.d.ts +49 -0
  189. package/types/components/Search/index.d.ts +10 -0
  190. package/types/components/Search/utils.d.ts +8 -0
  191. package/types/components/SectionHeading/StyledHeading.d.ts +23 -0
  192. package/types/components/SectionHeading/index.d.ts +45 -0
  193. package/types/components/Select/BaseOptionList.d.ts +8 -0
  194. package/types/components/Select/Footer.d.ts +6 -0
  195. package/types/components/Select/MultiSelect/Option.d.ts +10 -0
  196. package/types/components/Select/MultiSelect/OptionList.d.ts +9 -0
  197. package/types/components/Select/MultiSelect/index.d.ts +30 -0
  198. package/types/components/Select/SingleSelect/Option.d.ts +10 -0
  199. package/types/components/Select/SingleSelect/OptionList.d.ts +11 -0
  200. package/types/components/Select/SingleSelect/StyledSingleSelect.d.ts +1 -0
  201. package/types/components/Select/SingleSelect/index.d.ts +23 -0
  202. package/types/components/Select/StyledSelect.d.ts +21 -0
  203. package/types/components/Select/helpers.d.ts +14 -0
  204. package/types/components/Select/index.d.ts +8 -0
  205. package/types/components/Select/types.d.ts +84 -0
  206. package/types/components/Skeleton/StyledSkeleton.d.ts +16 -0
  207. package/types/components/Skeleton/index.d.ts +14 -0
  208. package/types/components/Slider/index.d.ts +53 -0
  209. package/types/components/Spinner/AnimatedSpinner.d.ts +6 -0
  210. package/types/components/Spinner/StyledSpinner.d.ts +34 -0
  211. package/types/components/Spinner/index.d.ts +18 -0
  212. package/types/components/Success/StyledSuccess.d.ts +49 -0
  213. package/types/components/Success/index.d.ts +50 -0
  214. package/types/components/Swipeable/StyledSwipeable.d.ts +10 -0
  215. package/types/components/Swipeable/SwipeableAction.d.ts +27 -0
  216. package/types/components/Swipeable/index.d.ts +49 -0
  217. package/types/components/Switch/SelectorSwitch/Option.d.ts +16 -0
  218. package/types/components/Switch/SelectorSwitch/StyledSelectorSwitch.d.ts +19 -0
  219. package/types/components/Switch/SelectorSwitch/index.d.ts +37 -0
  220. package/types/components/Switch/StyledSwitch.d.ts +15 -0
  221. package/types/components/Switch/index.d.ts +28 -0
  222. package/types/components/Tabs/ActiveTabIndicator.d.ts +9 -0
  223. package/types/components/Tabs/SceneView.d.ts +10 -0
  224. package/types/components/Tabs/ScrollableTabs.d.ts +7 -0
  225. package/types/components/Tabs/ScrollableTabsHeader/ScrollableTabsHeader.d.ts +40 -0
  226. package/types/components/Tabs/ScrollableTabsHeader/hooks/useInitHighlightedAnimation.d.ts +9 -0
  227. package/types/components/Tabs/ScrollableTabsHeader/hooks/useInitUnderlinedAnimation.d.ts +10 -0
  228. package/types/components/Tabs/StyledScrollableTabs.d.ts +55 -0
  229. package/types/components/Tabs/StyledTabs.d.ts +51 -0
  230. package/types/components/Tabs/TabWithBadge.d.ts +16 -0
  231. package/types/components/Tabs/index.d.ts +62 -0
  232. package/types/components/Tabs/useHandlePageScroll.d.ts +8 -0
  233. package/types/components/Tabs/useIsFocused.d.ts +6 -0
  234. package/types/components/Tabs/utils.d.ts +2 -0
  235. package/types/components/Tag/StyledTag.d.ts +17 -0
  236. package/types/components/Tag/index.d.ts +27 -0
  237. package/types/components/TextInput/StyledTextInput.d.ts +86 -0
  238. package/types/components/TextInput/index.d.ts +124 -0
  239. package/types/components/TimePicker/StyledTimePicker.d.ts +9 -0
  240. package/types/components/TimePicker/TimePickerAndroid.d.ts +4 -0
  241. package/types/components/TimePicker/TimePickerIOS.d.ts +4 -0
  242. package/types/components/TimePicker/index.d.ts +4 -0
  243. package/types/components/TimePicker/types.d.ts +61 -0
  244. package/types/components/Toast/StyledToast.d.ts +59 -0
  245. package/types/components/Toast/Toast.d.ts +3 -0
  246. package/types/components/Toast/ToastContainer.d.ts +5 -0
  247. package/types/components/Toast/ToastContext.d.ts +12 -0
  248. package/types/components/Toast/ToastProvider.d.ts +11 -0
  249. package/types/components/Toast/index.d.ts +8 -0
  250. package/types/components/Toast/types.d.ts +72 -0
  251. package/types/components/Toolbar/StyledToolbar.d.ts +71 -0
  252. package/types/components/Toolbar/ToolbarGroup.d.ts +14 -0
  253. package/types/components/Toolbar/ToolbarItem.d.ts +31 -0
  254. package/types/components/Toolbar/ToolbarMessage.d.ts +59 -0
  255. package/types/components/Toolbar/index.d.ts +14 -0
  256. package/types/components/Typography/Body/StyledBody.d.ts +14 -0
  257. package/types/components/Typography/Body/__tests__/StyledBody.d.ts +1 -0
  258. package/types/components/Typography/Body/index.d.ts +33 -0
  259. package/types/components/Typography/Caption/StyledCaption.d.ts +12 -0
  260. package/types/components/Typography/Caption/index.d.ts +27 -0
  261. package/types/components/Typography/Label/StyledLabel.d.ts +11 -0
  262. package/types/components/Typography/Label/__tests__/StyledLabel.d.ts +1 -0
  263. package/types/components/Typography/Label/index.d.ts +23 -0
  264. package/types/components/Typography/Text/StyledText.d.ts +13 -0
  265. package/types/components/Typography/Text/index.d.ts +37 -0
  266. package/types/components/Typography/Title/StyledTitle.d.ts +14 -0
  267. package/types/components/Typography/Title/__tests__/StyledTitle.d.ts +1 -0
  268. package/types/components/Typography/Title/index.d.ts +33 -0
  269. package/types/components/Typography/index.d.ts +17 -0
  270. package/types/components/Typography/types.d.ts +6 -0
  271. package/types/index.d.ts +57 -0
  272. package/types/testHelpers/renderWithTheme.d.ts +3 -0
  273. package/types/testHelpers/utils.d.ts +1 -0
  274. package/types/theme/ThemeProvider.d.ts +12 -0
  275. package/types/theme/ThemeSwitcher.d.ts +8 -0
  276. package/types/theme/components/accordion.d.ts +13 -0
  277. package/types/theme/components/alert.d.ts +36 -0
  278. package/types/theme/components/attachment.d.ts +21 -0
  279. package/types/theme/components/avatar.d.ts +50 -0
  280. package/types/theme/components/badge.d.ts +56 -0
  281. package/types/theme/components/bottomNavigation.d.ts +23 -0
  282. package/types/theme/components/bottomSheet.d.ts +38 -0
  283. package/types/theme/components/button.d.ts +72 -0
  284. package/types/theme/components/calendar.d.ts +28 -0
  285. package/types/theme/components/card.d.ts +21 -0
  286. package/types/theme/components/cardCarousel.d.ts +15 -0
  287. package/types/theme/components/carousel.d.ts +36 -0
  288. package/types/theme/components/checkbox.d.ts +27 -0
  289. package/types/theme/components/chip.d.ts +43 -0
  290. package/types/theme/components/contentNavigator.d.ts +7 -0
  291. package/types/theme/components/datePicker.d.ts +7 -0
  292. package/types/theme/components/divider.d.ts +17 -0
  293. package/types/theme/components/drawer.d.ts +30 -0
  294. package/types/theme/components/empty.d.ts +37 -0
  295. package/types/theme/components/error.d.ts +51 -0
  296. package/types/theme/components/fab.d.ts +71 -0
  297. package/types/theme/components/floatingIsland.d.ts +32 -0
  298. package/types/theme/components/icon.d.ts +23 -0
  299. package/types/theme/components/image.d.ts +8 -0
  300. package/types/theme/components/list.d.ts +46 -0
  301. package/types/theme/components/mapPin.d.ts +39 -0
  302. package/types/theme/components/pageControl.d.ts +18 -0
  303. package/types/theme/components/pinInput.d.ts +57 -0
  304. package/types/theme/components/progress.d.ts +51 -0
  305. package/types/theme/components/radio.d.ts +24 -0
  306. package/types/theme/components/rate.d.ts +11 -0
  307. package/types/theme/components/refreshControl.d.ts +7 -0
  308. package/types/theme/components/richTextEditor.d.ts +28 -0
  309. package/types/theme/components/search.d.ts +64 -0
  310. package/types/theme/components/sectionHeading.d.ts +14 -0
  311. package/types/theme/components/select.d.ts +18 -0
  312. package/types/theme/components/skeleton.d.ts +17 -0
  313. package/types/theme/components/slider.d.ts +9 -0
  314. package/types/theme/components/spinner.d.ts +27 -0
  315. package/types/theme/components/success.d.ts +43 -0
  316. package/types/theme/components/swipeable.d.ts +16 -0
  317. package/types/theme/components/switch.d.ts +38 -0
  318. package/types/theme/components/tabs.d.ts +30 -0
  319. package/types/theme/components/tag.d.ts +53 -0
  320. package/types/theme/components/textInput.d.ts +87 -0
  321. package/types/theme/components/timePicker.d.ts +7 -0
  322. package/types/theme/components/toast.d.ts +50 -0
  323. package/types/theme/components/toolbar.d.ts +47 -0
  324. package/types/theme/components/typography.d.ts +165 -0
  325. package/types/theme/getTheme.d.ts +106 -0
  326. package/types/theme/global/borders.d.ts +18 -0
  327. package/types/theme/global/colors/eBens.d.ts +3 -0
  328. package/types/theme/global/colors/global.d.ts +3 -0
  329. package/types/theme/global/colors/globalDark.d.ts +3 -0
  330. package/types/theme/global/colors/jobs.d.ts +3 -0
  331. package/types/theme/global/colors/swag.d.ts +3 -0
  332. package/types/theme/global/colors/swagDark.d.ts +3 -0
  333. package/types/theme/global/colors/swagLight.d.ts +3 -0
  334. package/types/theme/global/colors/swagLightGlobal.d.ts +3 -0
  335. package/types/theme/global/colors/swagLightJobs.d.ts +48 -0
  336. package/types/theme/global/colors/types.d.ts +50 -0
  337. package/types/theme/global/colors/wallet.d.ts +3 -0
  338. package/types/theme/global/colors/work.d.ts +3 -0
  339. package/types/theme/global/index.d.ts +82 -0
  340. package/types/theme/global/scale.d.ts +14 -0
  341. package/types/theme/global/shadows.d.ts +16 -0
  342. package/types/theme/global/sizes.d.ts +14 -0
  343. package/types/theme/global/space.d.ts +16 -0
  344. package/types/theme/global/typography.d.ts +31 -0
  345. package/types/theme/index.d.ts +9 -0
  346. package/types/types.d.ts +14 -0
  347. package/types/utils/functions.d.ts +1 -0
  348. package/types/utils/helpers.d.ts +4 -0
  349. package/types/utils/hooks.d.ts +3 -0
  350. package/types/utils/scale.d.ts +3 -0
  351. package/assets/fonts/RebondGrotesque-Light.otf +0 -0
  352. package/assets/fonts/RebondGrotesque-SemiBold.otf +0 -0
  353. package/assets/fonts/RebondGrotesque.otf +0 -0
@@ -0,0 +1,54 @@
1
+ import React from 'react';
2
+ import type { StyleProp, ViewStyle } from 'react-native';
3
+ import type { IconName } from '../../Icon';
4
+ import type { ActionItemProps } from './ActionItem';
5
+ export declare type ActionGroupHandles = {
6
+ showFAB: () => void;
7
+ collapseFAB: () => void;
8
+ hideFAB: () => void;
9
+ };
10
+ export interface ActionGroupProps {
11
+ /**
12
+ * @deprecated headerTitle will be removed in the next major release.
13
+ * Title of the action group header.
14
+ */
15
+ headerTitle?: string;
16
+ /**
17
+ * This function is called on pressing the FAB button.
18
+ * */
19
+ onPress?: () => void;
20
+ /**
21
+ * This function is called on pressing the FAB backdrop.
22
+ * */
23
+ onBackdropPress?: () => void;
24
+ /**
25
+ * Specify if the FAB button is in active state and the action group is shown.
26
+ * */
27
+ active?: boolean;
28
+ /**
29
+ * Title of the floating action button
30
+ */
31
+ fabTitle?: string;
32
+ /**
33
+ * Icon name of the floating action button
34
+ */
35
+ fabIcon?: IconName;
36
+ /**
37
+ * Additional style.
38
+ */
39
+ style?: StyleProp<ViewStyle>;
40
+ /**
41
+ * Action items of the action group.
42
+ * */
43
+ items?: Array<ActionItemProps>;
44
+ /**
45
+ * Testing id of the component.
46
+ */
47
+ testID?: string;
48
+ /**
49
+ * Supported orientations for the ActionGroup modal, iOS only.
50
+ */
51
+ supportedOrientations?: ('portrait' | 'landscape')[];
52
+ }
53
+ declare const ActionGroup: React.ForwardRefExoticComponent<ActionGroupProps & React.RefAttributes<ActionGroupHandles>>;
54
+ export default ActionGroup;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { IconProps } from '../Icon';
3
+ declare type Props = {
4
+ active?: boolean;
5
+ } & IconProps;
6
+ declare const AnimatedFABIcon: ({ active, ...iconProps }: Props) => React.JSX.Element;
7
+ export { AnimatedFABIcon };
@@ -0,0 +1,40 @@
1
+ import React from 'react';
2
+ import { StyleProp, ViewStyle } from 'react-native';
3
+ import type { IconName } from '../Icon';
4
+ export declare type FABHandles = {
5
+ show: () => void;
6
+ collapse: () => void;
7
+ hide: () => void;
8
+ };
9
+ export interface FABProps {
10
+ /**
11
+ * Name of the Icon.
12
+ */
13
+ icon: IconName;
14
+ /**
15
+ * title of the component.
16
+ */
17
+ title?: string;
18
+ /**
19
+ * This function is called on pressing the button.
20
+ */
21
+ onPress?: () => void;
22
+ /**
23
+ * Specify if the button is animated.
24
+ */
25
+ animated?: boolean;
26
+ /**
27
+ * Specify if the button is in active state. It only works if animated is true.
28
+ */
29
+ active?: boolean;
30
+ /**
31
+ * Additional style.
32
+ */
33
+ style?: StyleProp<ViewStyle>;
34
+ /**
35
+ * Testing id of the component.
36
+ */
37
+ testID?: string;
38
+ }
39
+ declare const FAB: React.ForwardRefExoticComponent<FABProps & React.RefAttributes<FABHandles>>;
40
+ export default FAB;
@@ -0,0 +1,12 @@
1
+ declare const StyledFABPairWrapper: import("@emotion/native").StyledComponent<import("../../Box").BoxProps & {
2
+ theme?: import("@emotion/react").Theme | undefined;
3
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
4
+ }, {}, {}>;
5
+ declare const StyledFAB: import("@emotion/native").StyledComponent<import("../FAB").FABProps & import("react").RefAttributes<import("../FAB").FABHandles> & {
6
+ theme?: import("@emotion/react").Theme | undefined;
7
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
8
+ } & {
9
+ iconOnly?: boolean | undefined;
10
+ isLast?: boolean | undefined;
11
+ }, {}, {}>;
12
+ export { StyledFABPairWrapper, StyledFAB };
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ import { ViewProps } from 'react-native';
3
+ import { FABProps } from '../FAB';
4
+ export declare type InnerFABProps = Pick<FABProps, 'icon' | 'title' | 'onPress' | 'testID'>;
5
+ export interface FABPairProps extends ViewProps {
6
+ /**
7
+ * Configuration for the main FAB.
8
+ */
9
+ fabConfig: InnerFABProps;
10
+ /**
11
+ * Callback to be called when the cancel FAB is pressed.
12
+ */
13
+ onCancel: () => void;
14
+ }
15
+ declare const Pair: ({ fabConfig, onCancel, ...props }: FABPairProps) => React.JSX.Element;
16
+ export default Pair;
@@ -0,0 +1,21 @@
1
+ import { TextProps, Animated, TouchableOpacity } from 'react-native';
2
+ import type { IconProps } from '../Icon';
3
+ declare const StyledFAB: import("@emotion/native").StyledComponent<Animated.AnimatedProps<import("react-native").TouchableOpacityProps & import("react").RefAttributes<TouchableOpacity>> & {
4
+ theme?: import("@emotion/react").Theme | undefined;
5
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
6
+ } & {
7
+ themeActive?: boolean | undefined;
8
+ }, {}, {}>;
9
+ declare const StyledFABIcon: import("@emotion/native").StyledComponent<IconProps & {
10
+ theme?: import("@emotion/react").Theme | undefined;
11
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
12
+ }, {}, {}>;
13
+ declare const StyledFABText: import("@emotion/native").StyledComponent<import("../Typography/Body").BodyProps & {
14
+ theme?: import("@emotion/react").Theme | undefined;
15
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
16
+ } & TextProps, {}, {}>;
17
+ declare const StyledIconContainer: import("@emotion/native").StyledComponent<import("../Box").BoxProps & {
18
+ theme?: import("@emotion/react").Theme | undefined;
19
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
20
+ }, {}, {}>;
21
+ export { StyledFAB, StyledFABIcon, StyledFABText, StyledIconContainer };
@@ -0,0 +1,5 @@
1
+ declare const _default: import("react").ForwardRefExoticComponent<import("./FAB").FABProps & import("react").RefAttributes<import("./FAB").FABHandles>> & {
2
+ ActionGroup: import("react").ForwardRefExoticComponent<import("./ActionGroup").ActionGroupProps & import("react").RefAttributes<import("./ActionGroup").ActionGroupHandles>>;
3
+ Pair: ({ fabConfig, onCancel, ...props }: import("./Pair").FABPairProps) => import("react").JSX.Element;
4
+ };
5
+ export default _default;
@@ -0,0 +1,19 @@
1
+ declare const StyledWrapper: import("@emotion/native").StyledComponent<import("react-native/types").TouchableOpacityProps & {
2
+ theme?: import("@emotion/react").Theme | undefined;
3
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
4
+ }, {}, {
5
+ ref?: import("react").Ref<import("react-native/types").TouchableOpacity> | undefined;
6
+ }>;
7
+ declare const StyledPrefixWrapper: import("@emotion/native").StyledComponent<import("../Box").BoxProps & {
8
+ theme?: import("@emotion/react").Theme | undefined;
9
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
10
+ }, {}, {}>;
11
+ declare const StyledSuffixWrapper: import("@emotion/native").StyledComponent<import("../Box").BoxProps & {
12
+ theme?: import("@emotion/react").Theme | undefined;
13
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
14
+ }, {}, {}>;
15
+ declare const StyledIcon: import("@emotion/native").StyledComponent<import("../Icon").IconProps & {
16
+ theme?: import("@emotion/react").Theme | undefined;
17
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
18
+ }, {}, {}>;
19
+ export { StyledWrapper, StyledPrefixWrapper, StyledSuffixWrapper, StyledIcon };
@@ -0,0 +1,23 @@
1
+ import React, { ReactNode } from 'react';
2
+ import { ViewProps } from 'react-native';
3
+ import { IconName } from '../Icon';
4
+ export interface FloatingIslandProps extends ViewProps {
5
+ /**
6
+ * Callback that is called when the floating island is pressed.
7
+ */
8
+ onPress?: () => void;
9
+ /**
10
+ * Children of the floating island.
11
+ */
12
+ children: ReactNode;
13
+ /**
14
+ * Prefix element that is displayed before the children.
15
+ */
16
+ prefix?: IconName | ReactNode;
17
+ /**
18
+ * Suffix element that is displayed after the children.
19
+ */
20
+ suffix?: IconName | ReactNode;
21
+ }
22
+ declare const FloatingIsland: ({ onPress, onLayout, style, children, prefix, suffix, ...props }: FloatingIslandProps) => React.JSX.Element;
23
+ export default FloatingIsland;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { ThemeProviderProps } from '../../theme/ThemeProvider';
3
+ declare const HeroDesignProvider: ({ theme, children }: ThemeProviderProps) => React.JSX.Element;
4
+ export default HeroDesignProvider;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import type { ComponentProps } from 'react';
3
+ import StyledHeroIcon from './HeroIcon';
4
+ declare type AnimatedIconProps = ComponentProps<typeof StyledHeroIcon>;
5
+ declare const AnimatedIcon: ({ style, ...otherProps }: AnimatedIconProps) => React.JSX.Element;
6
+ export default AnimatedIcon;
@@ -0,0 +1,12 @@
1
+ declare type ThemeSize = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
2
+ declare type ThemeIntent = 'text' | 'primary' | 'secondary' | 'info' | 'danger' | 'success' | 'warning' | 'disabled-text' | 'text-inverted' | 'muted';
3
+ declare const StyledHeroIcon: import("@emotion/native").StyledComponent<import("react-native-vector-icons/Icon").IconProps & {
4
+ theme?: import("@emotion/react").Theme | undefined;
5
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
6
+ } & {
7
+ themeSize: ThemeSize;
8
+ themeIntent: ThemeIntent;
9
+ }, {}, {
10
+ ref?: import("react").Ref<import("react-native-vector-icons/Icon").Icon> | undefined;
11
+ }>;
12
+ export default StyledHeroIcon;
@@ -0,0 +1,2 @@
1
+ declare const IconList: readonly ["activate", "add-emoji", "add-person", "adjustment", "alignment", "antenna", "archive", "assignment-warning", "bank", "bell", "billing", "bolt", "bookmark-added", "bookmark", "box-check", "box", "bpay", "buildings", "cake", "calendar-clock", "calendar", "candy-box-menu", "caret-down-small", "caret-down", "caret-left-small", "caret-left", "caret-right-small", "caret-right", "caret-up-small", "caret-up", "check-radio", "circle-add", "circle-cancel", "circle-check", "circle-down", "circle-info", "circle-left", "circle-ok", "circle-pencil", "circle-question", "circle-remove", "circle-right", "circle-up", "circle-warning", "clock-3", "clock", "cloud-download", "cloud-upload", "cog", "coin", "contacts", "credit-card", "diamond", "direction-arrows", "directory", "document", "dollar-coin-shine", "dot", "double-buildings", "edit-template", "envelope", "exclude", "expand-content", "expense", "explore_nearby", "eye-circle", "eye-invisible", "eye", "face-meh", "face-sad", "face-smiley", "feed", "feedbacks", "file-certified", "file-clone", "file-copy", "file-csv", "file-dispose", "file-doc", "file-excel", "file-export", "file-lock", "file-pdf", "file-powerpoint", "file-search", "file-secured", "file-sheets", "file-slide", "file-verified", "file-word", "file", "filter", "folder-user", "folder", "format-bold", "format-heading1", "format-heading2", "format-italic", "format-list-bulleted", "format-list-numbered", "format-underlined", "funnel-filter", "global-dollar", "globe", "graduation-cap", "graph", "happy-sun", "health-bag", "heart", "hero-points", "home", "image", "import", "incident-siren", "instapay-daily", "instapay-now", "instapay", "list", "loading-2", "loading", "location-on", "location", "lock", "looks-one", "looks-two", "media-content", "menu", "money-notes", "moneybag", "moon", "multiple-stars", "multiple-users", "near-me", "node", "open-folder", "paperclip", "payment-summary", "pencil", "phone", "piggy-bank", "plane-up", "plane", "play-arrow", "play-circle", "print", "raising-hands", "reply-arrow", "reply", "reschedule", "rostering", "salary-sacrifice", "save", "schedule-send", "schedule", "search-person", "send", "speaker-active", "speaker", "star-award", "star-badge", "star-circle", "star-medal", "star", "steps-circle", "stopwatch", "suitcase", "surfing", "survey", "swag-pillar-benefit", "swag-pillar-career", "swag-pillar-money", "swag-pillar-work", "swag", "swipe-right", "switch", "tag", "target", "teams", "thumb-down", "timesheet", "touch-id", "trash-bin", "unlock", "user", "video-1", "video-2", "wallet", "warning", "accommodation-outlined", "activate-outlined", "add-credit-card-outlined", "add-person-outlined", "add-section-outlined", "add-time-outlined", "add", "adjustment-outlined", "afternoon-outlined", "ai-outlined", "alignment-2-outlined", "alignment-outlined", "all-caps", "application-outlined", "arrow-down", "arrow-downwards", "arrow-left", "arrow-leftwards", "arrow-right", "arrow-rightwards", "arrow-up", "arrow-upwards", "article-outlined", "at-sign", "auto-graph-outlined", "automotive-outlined", "bakery-outlined", "bar-outlined", "beauty-outlined", "beer-outlined", "bell-active-outlined", "bell-outlined", "bell-slash-outlined", "bill-management-outlined", "billing-outlined", "body-outlined", "bold", "bolt-outlined", "book-outlined", "bookmark-added-outlined", "bookmark-outlined", "box-1-outlined", "box-check-outlined", "box-outlined", "bullet-points", "cake-outlined", "calendar-dates-outlined", "calendar-star-outlined", "call-outlined", "call-split-outlined", "camera-outlined", "cancel", "car-forward-outlined", "cashback-outlined", "charging-station-outlined", "chat-bubble-outlined", "chat-unread-outlined", "checkmark", "circle-add-outlined", "circle-cancel-outlined", "circle-down-outlined", "circle-info-outlined", "circle-left-outlined", "circle-ok-outlined", "circle-question-outlined", "circle-remove-outlined", "circle-right-outlined", "circle-up-outlined", "circle-warning-outlined", "clock-2-outlined", "clock-in-outlined", "clock-out-outlined", "clock-outlined", "cog-outlined", "coin-outlined", "coin-super-outlined", "comment-outlined", "contacts-outlined", "contacts-user-outlined", "credit-card-outlined", "cultural-site-outlined", "cup-outlined", "dentistry-outlined", "direction-arrows-outlined", "directory-outlined", "document-outlined", "dollar-box-outlined", "dollar-card-outlined", "dollar-coin-shine-outlined", "dollar-credit-card-outlined", "dollar-sign", "double-buildings-outlined", "double-left-arrows", "double-right-arrows", "download-box-outlined", "download-outlined", "edit-template-outlined", "electronics-outlined", "email-outlined", "end-break-outlined", "enter-arrow", "entertainment-outlined", "envelope-outlined", "evening-outlined", "expense-approval-outlined", "expense-outlined", "explore-outlined", "extension-outlined", "external-link", "eye-invisible-outlined", "eye-outlined", "face-id", "face-meh-outlined", "face-open-smiley-outlined", "face-sad-outlined", "face-smiley-outlined", "fastfood-outlined", "feed-outlined", "file-certified-outlined", "file-clone-outlined", "file-copy-outlined", "file-dispose-outlined", "file-dollar-certified-outlined", "file-dollar-outlined", "file-download-outlined", "file-export-outlined", "file-lock-outlined", "file-outlined", "file-search-outlined", "file-secured-outlined", "file-statutory-outlined", "file-verified-outlined", "filter-outlined", "fitness-outlined", "folder-outlined", "folder-upload-outlined", "folder-user-outlined", "form-outlined", "funnel-filter-outline", "goal-outlined", "graph-outlined", "grocery-outlined", "hand-holding-user-outlined", "handshake-outlined", "happy-sun-outlined", "health-bag-outlined", "heart-outlined", "home-active-outlined", "home-outlined", "id-card-outlined", "image-outlined", "import-outlined", "instapay-outlined", "italic", "job-search-outlined", "leave-approval-outlined", "link-1", "link-2", "list-outlined", "live-help-outlined", "local_mall_outlined", "location-on-outlined", "location-outlined", "lock-outlined", "locked-file-outlined", "log-out", "mail-outlined", "map-outlined", "media-content-outlined", "menu-close", "menu-expand", "menu-fold-outlined", "menu-unfold-outlined", "moneybag-outlined", "moon-outlined", "more-horizontal", "more-vertical", "morning-outlined", "multiple-folders-outlined", "multiple-users-outlined", "near-me-outlined", "node-outlined", "number-points", "number", "overview-outlined", "park-outlined", "payment-summary-outlined", "payslip-outlined", "pencil-outlined", "percentage", "phone-outlined", "piggy-bank-outlined", "plane-outlined", "play-circle-outlined", "print-outlined", "propane-tank-outlined", "qr-code-outlined", "qualification-outlined", "re-assign", "redeem", "refresh", "remove", "reply-outlined", "restart", "restaurant-outlined", "resume-outlined", "return-arrow", "rostering-outlined", "safety-outlined", "save-outlined", "schedule-outlined", "search-outlined", "search-secured-outlined", "send-outlined", "share-1", "share-2", "share-outlined-2", "share-outlined", "shop-outlined", "shopping_basket_outlined", "show-chart-outlined", "single-down-arrow", "single-left-arrow", "single-right-arrow", "single-up-arrow", "smart-match-outlined", "sparkle-outlined", "speaker-active-outlined", "speaker-outlined", "star-circle-outlined", "star-outlined", "start-break-outlined", "stash-outlined", "stopwatch-outlined", "strikethrough", "styler-outlined", "suitcase-clock-outlined", "suitcase-outlined", "survey-outlined", "switch-outlined", "sync", "tag-outlined", "target-outlined", "tennis-outlined", "thumb-down-outlined", "ticket-outlined", "timesheet-outlined", "timesheets-outlined", "today-outlined", "transfer", "transportation-outlined", "trash-bin-outlined", "umbrela-outlined", "unavailability-outlined", "unavailable", "underline", "union-outlined", "unlock-outlined", "upload-outlined", "user-circle-outlined", "user-gear-outlined", "user-outlined", "user-rectangle-outlined", "video-1-outlined", "video-2-outlined", "volunteer-outlined", "wallet-outlined", "wellness-outlined"];
2
+ export default IconList;
@@ -0,0 +1,35 @@
1
+ import React from 'react';
2
+ import type { AccessibilityProps, StyleProp, TextStyle } from 'react-native';
3
+ import IconList from './IconList';
4
+ export declare type IconName = typeof IconList[number];
5
+ export interface IconProps extends AccessibilityProps {
6
+ /**
7
+ * Name of the Icon.
8
+ */
9
+ icon: IconName;
10
+ /**
11
+ * Intent of the Icon.
12
+ */
13
+ intent?: 'text' | 'primary' | 'secondary' | 'info' | 'danger' | 'success' | 'warning' | 'disabled-text' | 'text-inverted' | 'muted';
14
+ /**
15
+ * Size of the Icon.
16
+ */
17
+ size?: 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge';
18
+ /**
19
+ * Rotate icon with animation.
20
+ */
21
+ spin?: boolean;
22
+ /**
23
+ * Additional style.
24
+ */
25
+ style?: StyleProp<TextStyle>;
26
+ /**
27
+ * Testing id of the component.
28
+ */
29
+ testID?: string;
30
+ }
31
+ declare const Icon: {
32
+ ({ icon, style, size, intent, testID, spin, accessibilityLabel, accessibilityHint, accessibilityRole, accessibilityState, accessibilityValue, accessibilityLiveRegion, accessibilityElementsHidden, accessible, accessibilityIgnoresInvertColors, accessibilityViewIsModal, accessibilityActions, }: IconProps): React.JSX.Element;
33
+ List: readonly ["activate", "add-emoji", "add-person", "adjustment", "alignment", "antenna", "archive", "assignment-warning", "bank", "bell", "billing", "bolt", "bookmark-added", "bookmark", "box-check", "box", "bpay", "buildings", "cake", "calendar-clock", "calendar", "candy-box-menu", "caret-down-small", "caret-down", "caret-left-small", "caret-left", "caret-right-small", "caret-right", "caret-up-small", "caret-up", "check-radio", "circle-add", "circle-cancel", "circle-check", "circle-down", "circle-info", "circle-left", "circle-ok", "circle-pencil", "circle-question", "circle-remove", "circle-right", "circle-up", "circle-warning", "clock-3", "clock", "cloud-download", "cloud-upload", "cog", "coin", "contacts", "credit-card", "diamond", "direction-arrows", "directory", "document", "dollar-coin-shine", "dot", "double-buildings", "edit-template", "envelope", "exclude", "expand-content", "expense", "explore_nearby", "eye-circle", "eye-invisible", "eye", "face-meh", "face-sad", "face-smiley", "feed", "feedbacks", "file-certified", "file-clone", "file-copy", "file-csv", "file-dispose", "file-doc", "file-excel", "file-export", "file-lock", "file-pdf", "file-powerpoint", "file-search", "file-secured", "file-sheets", "file-slide", "file-verified", "file-word", "file", "filter", "folder-user", "folder", "format-bold", "format-heading1", "format-heading2", "format-italic", "format-list-bulleted", "format-list-numbered", "format-underlined", "funnel-filter", "global-dollar", "globe", "graduation-cap", "graph", "happy-sun", "health-bag", "heart", "hero-points", "home", "image", "import", "incident-siren", "instapay-daily", "instapay-now", "instapay", "list", "loading-2", "loading", "location-on", "location", "lock", "looks-one", "looks-two", "media-content", "menu", "money-notes", "moneybag", "moon", "multiple-stars", "multiple-users", "near-me", "node", "open-folder", "paperclip", "payment-summary", "pencil", "phone", "piggy-bank", "plane-up", "plane", "play-arrow", "play-circle", "print", "raising-hands", "reply-arrow", "reply", "reschedule", "rostering", "salary-sacrifice", "save", "schedule-send", "schedule", "search-person", "send", "speaker-active", "speaker", "star-award", "star-badge", "star-circle", "star-medal", "star", "steps-circle", "stopwatch", "suitcase", "surfing", "survey", "swag-pillar-benefit", "swag-pillar-career", "swag-pillar-money", "swag-pillar-work", "swag", "swipe-right", "switch", "tag", "target", "teams", "thumb-down", "timesheet", "touch-id", "trash-bin", "unlock", "user", "video-1", "video-2", "wallet", "warning", "accommodation-outlined", "activate-outlined", "add-credit-card-outlined", "add-person-outlined", "add-section-outlined", "add-time-outlined", "add", "adjustment-outlined", "afternoon-outlined", "ai-outlined", "alignment-2-outlined", "alignment-outlined", "all-caps", "application-outlined", "arrow-down", "arrow-downwards", "arrow-left", "arrow-leftwards", "arrow-right", "arrow-rightwards", "arrow-up", "arrow-upwards", "article-outlined", "at-sign", "auto-graph-outlined", "automotive-outlined", "bakery-outlined", "bar-outlined", "beauty-outlined", "beer-outlined", "bell-active-outlined", "bell-outlined", "bell-slash-outlined", "bill-management-outlined", "billing-outlined", "body-outlined", "bold", "bolt-outlined", "book-outlined", "bookmark-added-outlined", "bookmark-outlined", "box-1-outlined", "box-check-outlined", "box-outlined", "bullet-points", "cake-outlined", "calendar-dates-outlined", "calendar-star-outlined", "call-outlined", "call-split-outlined", "camera-outlined", "cancel", "car-forward-outlined", "cashback-outlined", "charging-station-outlined", "chat-bubble-outlined", "chat-unread-outlined", "checkmark", "circle-add-outlined", "circle-cancel-outlined", "circle-down-outlined", "circle-info-outlined", "circle-left-outlined", "circle-ok-outlined", "circle-question-outlined", "circle-remove-outlined", "circle-right-outlined", "circle-up-outlined", "circle-warning-outlined", "clock-2-outlined", "clock-in-outlined", "clock-out-outlined", "clock-outlined", "cog-outlined", "coin-outlined", "coin-super-outlined", "comment-outlined", "contacts-outlined", "contacts-user-outlined", "credit-card-outlined", "cultural-site-outlined", "cup-outlined", "dentistry-outlined", "direction-arrows-outlined", "directory-outlined", "document-outlined", "dollar-box-outlined", "dollar-card-outlined", "dollar-coin-shine-outlined", "dollar-credit-card-outlined", "dollar-sign", "double-buildings-outlined", "double-left-arrows", "double-right-arrows", "download-box-outlined", "download-outlined", "edit-template-outlined", "electronics-outlined", "email-outlined", "end-break-outlined", "enter-arrow", "entertainment-outlined", "envelope-outlined", "evening-outlined", "expense-approval-outlined", "expense-outlined", "explore-outlined", "extension-outlined", "external-link", "eye-invisible-outlined", "eye-outlined", "face-id", "face-meh-outlined", "face-open-smiley-outlined", "face-sad-outlined", "face-smiley-outlined", "fastfood-outlined", "feed-outlined", "file-certified-outlined", "file-clone-outlined", "file-copy-outlined", "file-dispose-outlined", "file-dollar-certified-outlined", "file-dollar-outlined", "file-download-outlined", "file-export-outlined", "file-lock-outlined", "file-outlined", "file-search-outlined", "file-secured-outlined", "file-statutory-outlined", "file-verified-outlined", "filter-outlined", "fitness-outlined", "folder-outlined", "folder-upload-outlined", "folder-user-outlined", "form-outlined", "funnel-filter-outline", "goal-outlined", "graph-outlined", "grocery-outlined", "hand-holding-user-outlined", "handshake-outlined", "happy-sun-outlined", "health-bag-outlined", "heart-outlined", "home-active-outlined", "home-outlined", "id-card-outlined", "image-outlined", "import-outlined", "instapay-outlined", "italic", "job-search-outlined", "leave-approval-outlined", "link-1", "link-2", "list-outlined", "live-help-outlined", "local_mall_outlined", "location-on-outlined", "location-outlined", "lock-outlined", "locked-file-outlined", "log-out", "mail-outlined", "map-outlined", "media-content-outlined", "menu-close", "menu-expand", "menu-fold-outlined", "menu-unfold-outlined", "moneybag-outlined", "moon-outlined", "more-horizontal", "more-vertical", "morning-outlined", "multiple-folders-outlined", "multiple-users-outlined", "near-me-outlined", "node-outlined", "number-points", "number", "overview-outlined", "park-outlined", "payment-summary-outlined", "payslip-outlined", "pencil-outlined", "percentage", "phone-outlined", "piggy-bank-outlined", "plane-outlined", "play-circle-outlined", "print-outlined", "propane-tank-outlined", "qr-code-outlined", "qualification-outlined", "re-assign", "redeem", "refresh", "remove", "reply-outlined", "restart", "restaurant-outlined", "resume-outlined", "return-arrow", "rostering-outlined", "safety-outlined", "save-outlined", "schedule-outlined", "search-outlined", "search-secured-outlined", "send-outlined", "share-1", "share-2", "share-outlined-2", "share-outlined", "shop-outlined", "shopping_basket_outlined", "show-chart-outlined", "single-down-arrow", "single-left-arrow", "single-right-arrow", "single-up-arrow", "smart-match-outlined", "sparkle-outlined", "speaker-active-outlined", "speaker-outlined", "star-circle-outlined", "star-outlined", "start-break-outlined", "stash-outlined", "stopwatch-outlined", "strikethrough", "styler-outlined", "suitcase-clock-outlined", "suitcase-outlined", "survey-outlined", "switch-outlined", "sync", "tag-outlined", "target-outlined", "tennis-outlined", "thumb-down-outlined", "ticket-outlined", "timesheet-outlined", "timesheets-outlined", "today-outlined", "transfer", "transportation-outlined", "trash-bin-outlined", "umbrela-outlined", "unavailability-outlined", "unavailable", "underline", "union-outlined", "unlock-outlined", "upload-outlined", "user-circle-outlined", "user-gear-outlined", "user-outlined", "user-rectangle-outlined", "video-1-outlined", "video-2-outlined", "volunteer-outlined", "wallet-outlined", "wellness-outlined"];
34
+ };
35
+ export default Icon;
@@ -0,0 +1,2 @@
1
+ declare const isHeroIcon: (x: any) => x is "number" | "swag" | "wallet" | "bold" | "menu" | "filter" | "image" | "switch" | "target" | "restart" | "directory" | "document" | "feed" | "list" | "billing" | "home" | "user" | "send" | "file" | "loading" | "sync" | "warning" | "activate" | "add-emoji" | "add-person" | "adjustment" | "alignment" | "antenna" | "archive" | "assignment-warning" | "bank" | "bell" | "bolt" | "bookmark-added" | "bookmark" | "box-check" | "box" | "bpay" | "buildings" | "cake" | "calendar-clock" | "calendar" | "candy-box-menu" | "caret-down-small" | "caret-down" | "caret-left-small" | "caret-left" | "caret-right-small" | "caret-right" | "caret-up-small" | "caret-up" | "check-radio" | "circle-add" | "circle-cancel" | "circle-check" | "circle-down" | "circle-info" | "circle-left" | "circle-ok" | "circle-pencil" | "circle-question" | "circle-remove" | "circle-right" | "circle-up" | "circle-warning" | "clock-3" | "clock" | "cloud-download" | "cloud-upload" | "cog" | "coin" | "contacts" | "credit-card" | "diamond" | "direction-arrows" | "dollar-coin-shine" | "dot" | "double-buildings" | "edit-template" | "envelope" | "exclude" | "expand-content" | "expense" | "explore_nearby" | "eye-circle" | "eye-invisible" | "eye" | "face-meh" | "face-sad" | "face-smiley" | "feedbacks" | "file-certified" | "file-clone" | "file-copy" | "file-csv" | "file-dispose" | "file-doc" | "file-excel" | "file-export" | "file-lock" | "file-pdf" | "file-powerpoint" | "file-search" | "file-secured" | "file-sheets" | "file-slide" | "file-verified" | "file-word" | "folder-user" | "folder" | "format-bold" | "format-heading1" | "format-heading2" | "format-italic" | "format-list-bulleted" | "format-list-numbered" | "format-underlined" | "funnel-filter" | "global-dollar" | "globe" | "graduation-cap" | "graph" | "happy-sun" | "health-bag" | "heart" | "hero-points" | "import" | "incident-siren" | "instapay-daily" | "instapay-now" | "instapay" | "loading-2" | "location-on" | "location" | "lock" | "looks-one" | "looks-two" | "media-content" | "money-notes" | "moneybag" | "moon" | "multiple-stars" | "multiple-users" | "near-me" | "node" | "open-folder" | "paperclip" | "payment-summary" | "pencil" | "phone" | "piggy-bank" | "plane-up" | "plane" | "play-arrow" | "play-circle" | "print" | "raising-hands" | "reply-arrow" | "reply" | "reschedule" | "rostering" | "salary-sacrifice" | "save" | "schedule-send" | "schedule" | "search-person" | "speaker-active" | "speaker" | "star-award" | "star-badge" | "star-circle" | "star-medal" | "star" | "steps-circle" | "stopwatch" | "suitcase" | "surfing" | "survey" | "swag-pillar-benefit" | "swag-pillar-career" | "swag-pillar-money" | "swag-pillar-work" | "swipe-right" | "tag" | "teams" | "thumb-down" | "timesheet" | "touch-id" | "trash-bin" | "unlock" | "video-1" | "video-2" | "accommodation-outlined" | "activate-outlined" | "add-credit-card-outlined" | "add-person-outlined" | "add-section-outlined" | "add-time-outlined" | "add" | "adjustment-outlined" | "afternoon-outlined" | "ai-outlined" | "alignment-2-outlined" | "alignment-outlined" | "all-caps" | "application-outlined" | "arrow-down" | "arrow-downwards" | "arrow-left" | "arrow-leftwards" | "arrow-right" | "arrow-rightwards" | "arrow-up" | "arrow-upwards" | "article-outlined" | "at-sign" | "auto-graph-outlined" | "automotive-outlined" | "bakery-outlined" | "bar-outlined" | "beauty-outlined" | "beer-outlined" | "bell-active-outlined" | "bell-outlined" | "bell-slash-outlined" | "bill-management-outlined" | "billing-outlined" | "body-outlined" | "bolt-outlined" | "book-outlined" | "bookmark-added-outlined" | "bookmark-outlined" | "box-1-outlined" | "box-check-outlined" | "box-outlined" | "bullet-points" | "cake-outlined" | "calendar-dates-outlined" | "calendar-star-outlined" | "call-outlined" | "call-split-outlined" | "camera-outlined" | "cancel" | "car-forward-outlined" | "cashback-outlined" | "charging-station-outlined" | "chat-bubble-outlined" | "chat-unread-outlined" | "checkmark" | "circle-add-outlined" | "circle-cancel-outlined" | "circle-down-outlined" | "circle-info-outlined" | "circle-left-outlined" | "circle-ok-outlined" | "circle-question-outlined" | "circle-remove-outlined" | "circle-right-outlined" | "circle-up-outlined" | "circle-warning-outlined" | "clock-2-outlined" | "clock-in-outlined" | "clock-out-outlined" | "clock-outlined" | "cog-outlined" | "coin-outlined" | "coin-super-outlined" | "comment-outlined" | "contacts-outlined" | "contacts-user-outlined" | "credit-card-outlined" | "cultural-site-outlined" | "cup-outlined" | "dentistry-outlined" | "direction-arrows-outlined" | "directory-outlined" | "document-outlined" | "dollar-box-outlined" | "dollar-card-outlined" | "dollar-coin-shine-outlined" | "dollar-credit-card-outlined" | "dollar-sign" | "double-buildings-outlined" | "double-left-arrows" | "double-right-arrows" | "download-box-outlined" | "download-outlined" | "edit-template-outlined" | "electronics-outlined" | "email-outlined" | "end-break-outlined" | "enter-arrow" | "entertainment-outlined" | "envelope-outlined" | "evening-outlined" | "expense-approval-outlined" | "expense-outlined" | "explore-outlined" | "extension-outlined" | "external-link" | "eye-invisible-outlined" | "eye-outlined" | "face-id" | "face-meh-outlined" | "face-open-smiley-outlined" | "face-sad-outlined" | "face-smiley-outlined" | "fastfood-outlined" | "feed-outlined" | "file-certified-outlined" | "file-clone-outlined" | "file-copy-outlined" | "file-dispose-outlined" | "file-dollar-certified-outlined" | "file-dollar-outlined" | "file-download-outlined" | "file-export-outlined" | "file-lock-outlined" | "file-outlined" | "file-search-outlined" | "file-secured-outlined" | "file-statutory-outlined" | "file-verified-outlined" | "filter-outlined" | "fitness-outlined" | "folder-outlined" | "folder-upload-outlined" | "folder-user-outlined" | "form-outlined" | "funnel-filter-outline" | "goal-outlined" | "graph-outlined" | "grocery-outlined" | "hand-holding-user-outlined" | "handshake-outlined" | "happy-sun-outlined" | "health-bag-outlined" | "heart-outlined" | "home-active-outlined" | "home-outlined" | "id-card-outlined" | "image-outlined" | "import-outlined" | "instapay-outlined" | "italic" | "job-search-outlined" | "leave-approval-outlined" | "link-1" | "link-2" | "list-outlined" | "live-help-outlined" | "local_mall_outlined" | "location-on-outlined" | "location-outlined" | "lock-outlined" | "locked-file-outlined" | "log-out" | "mail-outlined" | "map-outlined" | "media-content-outlined" | "menu-close" | "menu-expand" | "menu-fold-outlined" | "menu-unfold-outlined" | "moneybag-outlined" | "moon-outlined" | "more-horizontal" | "more-vertical" | "morning-outlined" | "multiple-folders-outlined" | "multiple-users-outlined" | "near-me-outlined" | "node-outlined" | "number-points" | "overview-outlined" | "park-outlined" | "payment-summary-outlined" | "payslip-outlined" | "pencil-outlined" | "percentage" | "phone-outlined" | "piggy-bank-outlined" | "plane-outlined" | "play-circle-outlined" | "print-outlined" | "propane-tank-outlined" | "qr-code-outlined" | "qualification-outlined" | "re-assign" | "redeem" | "refresh" | "remove" | "reply-outlined" | "restaurant-outlined" | "resume-outlined" | "return-arrow" | "rostering-outlined" | "safety-outlined" | "save-outlined" | "schedule-outlined" | "search-outlined" | "search-secured-outlined" | "send-outlined" | "share-1" | "share-2" | "share-outlined-2" | "share-outlined" | "shop-outlined" | "shopping_basket_outlined" | "show-chart-outlined" | "single-down-arrow" | "single-left-arrow" | "single-right-arrow" | "single-up-arrow" | "smart-match-outlined" | "sparkle-outlined" | "speaker-active-outlined" | "speaker-outlined" | "star-circle-outlined" | "star-outlined" | "start-break-outlined" | "stash-outlined" | "stopwatch-outlined" | "strikethrough" | "styler-outlined" | "suitcase-clock-outlined" | "suitcase-outlined" | "survey-outlined" | "switch-outlined" | "tag-outlined" | "target-outlined" | "tennis-outlined" | "thumb-down-outlined" | "ticket-outlined" | "timesheet-outlined" | "timesheets-outlined" | "today-outlined" | "transfer" | "transportation-outlined" | "trash-bin-outlined" | "umbrela-outlined" | "unavailability-outlined" | "unavailable" | "underline" | "union-outlined" | "unlock-outlined" | "upload-outlined" | "user-circle-outlined" | "user-gear-outlined" | "user-outlined" | "user-rectangle-outlined" | "video-1-outlined" | "video-2-outlined" | "volunteer-outlined" | "wallet-outlined" | "wellness-outlined";
2
+ export { isHeroIcon };
@@ -0,0 +1,17 @@
1
+ import type { ImageProps as RNImageProps } from 'react-native';
2
+ export interface ImageProps extends RNImageProps {
3
+ /**
4
+ * Whether the image is rounded.
5
+ */
6
+ rounded?: boolean;
7
+ /**
8
+ * Image sizes, following the same sizes as the `sizes` global theme.
9
+ */
10
+ size?: '6xlarge' | '15xlarge';
11
+ /**
12
+ * Testing id of the component.
13
+ */
14
+ testID?: string;
15
+ }
16
+ declare const Image: ({ rounded, size, testID, style, ...imageNativeProps }: ImageProps) => JSX.Element;
17
+ export default Image;
@@ -0,0 +1,43 @@
1
+ import React from 'react';
2
+ import type { StyleProp, ViewStyle } from 'react-native';
3
+ import type { IconName } from '../Icon';
4
+ export interface ListItemProps {
5
+ /**
6
+ * Name of Icon or component to render on the left side of title.
7
+ */
8
+ prefix?: IconName | React.ReactElement;
9
+ /**
10
+ * Name of Icon or component to render on the right side of title.
11
+ */
12
+ suffix?: IconName | React.ReactElement;
13
+ /**
14
+ * The title of the component.
15
+ */
16
+ title: string | React.ReactElement;
17
+ /**
18
+ * The subtile title of the component.
19
+ */
20
+ subtitle?: string;
21
+ /**
22
+ * Whether the component is disabled. Default value is false
23
+ */
24
+ disabled?: boolean;
25
+ /**
26
+ * Whether the component is selected. Default value is false
27
+ */
28
+ selected?: boolean;
29
+ /**
30
+ * Additional wrapper style.
31
+ */
32
+ style?: StyleProp<ViewStyle>;
33
+ /**
34
+ * Testing id of the component.
35
+ */
36
+ testID?: string;
37
+ /**
38
+ * Set the handler to handle press event.
39
+ */
40
+ onPress?: () => void;
41
+ }
42
+ declare const BasicListItem: ({ prefix, suffix, title, subtitle, style, testID, selected, disabled, onPress, }: ListItemProps) => JSX.Element;
43
+ export default BasicListItem;
@@ -0,0 +1,52 @@
1
+ import React, { ReactElement } from 'react';
2
+ import type { ReactNode } from 'react';
3
+ import type { StyleProp, ViewStyle } from 'react-native';
4
+ import type { IconName } from '../Icon';
5
+ export interface ListItemProps {
6
+ /**
7
+ * Name of Icon or ReactElement to render on the left side of title.
8
+ */
9
+ prefix?: IconName | React.ReactElement;
10
+ /**
11
+ * Name of Icon or ReactElement to render on the right side of title.
12
+ */
13
+ suffix?: IconName | React.ReactElement;
14
+ /**
15
+ * The title of the component.
16
+ */
17
+ title?: string | ReactElement;
18
+ /**
19
+ * The subtile title of the component.
20
+ */
21
+ subtitle?: string;
22
+ /**
23
+ * Additional wrapper style.
24
+ */
25
+ style?: StyleProp<ViewStyle>;
26
+ /**
27
+ * Children to be rendered inside the component.
28
+ */
29
+ children?: ReactNode;
30
+ /**
31
+ * Leading status of the component
32
+ * */
33
+ leadingStatus?: 'success' | 'warning' | 'danger' | 'info' | 'archived';
34
+ variant?: 'full-width' | 'card';
35
+ /**
36
+ * Whether the component is disabled. Default value is false
37
+ */
38
+ disabled?: boolean;
39
+ /** * Whether the component is selected. Default value is false
40
+ */
41
+ selected?: boolean;
42
+ /**
43
+ * Testing id of the component.
44
+ */
45
+ testID?: string;
46
+ /**
47
+ * Set the handler to handle press event.
48
+ */
49
+ onPress?: () => void;
50
+ }
51
+ declare const ListItem: ({ prefix, suffix, title, subtitle, style, testID, selected, children, leadingStatus, variant, onPress, disabled, }: ListItemProps) => JSX.Element;
52
+ export default ListItem;
@@ -0,0 +1,29 @@
1
+ import { TouchableHighlight, View } from 'react-native';
2
+ declare const StyledPrefixContainer: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
3
+ theme?: import("@emotion/react").Theme | undefined;
4
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
5
+ }, {}, {
6
+ ref?: import("react").Ref<View> | undefined;
7
+ }>;
8
+ declare const StyledSuffixContainer: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
9
+ theme?: import("@emotion/react").Theme | undefined;
10
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
11
+ }, {}, {
12
+ ref?: import("react").Ref<View> | undefined;
13
+ }>;
14
+ declare const StyledTitleContainer: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
15
+ theme?: import("@emotion/react").Theme | undefined;
16
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
17
+ }, {}, {
18
+ ref?: import("react").Ref<View> | undefined;
19
+ }>;
20
+ declare const StyledListItemContainer: import("@emotion/native").StyledComponent<import("react-native").TouchableHighlightProps & {
21
+ theme?: import("@emotion/react").Theme | undefined;
22
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
23
+ } & {
24
+ themeSelected?: boolean | undefined;
25
+ themeDisabled?: boolean | undefined;
26
+ }, {}, {
27
+ ref?: import("react").Ref<TouchableHighlight> | undefined;
28
+ }>;
29
+ export { StyledListItemContainer, StyledPrefixContainer, StyledTitleContainer, StyledSuffixContainer, };
@@ -0,0 +1,51 @@
1
+ import { TouchableHighlight, View } from 'react-native';
2
+ export declare type Variant = 'full-width' | 'card';
3
+ export declare type LeadingStatusIntent = 'success' | 'warning' | 'danger' | 'info' | 'archived';
4
+ declare const StyledListItemContainer: import("@emotion/native").StyledComponent<import("react-native").TouchableHighlightProps & {
5
+ theme?: import("@emotion/react").Theme | undefined;
6
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
7
+ } & {
8
+ themeSelected?: boolean | undefined;
9
+ themeVariant?: Variant | undefined;
10
+ }, {}, {
11
+ ref?: import("react").Ref<TouchableHighlight> | undefined;
12
+ }>;
13
+ declare const StyledContentContainer: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
14
+ theme?: import("@emotion/react").Theme | undefined;
15
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
16
+ }, {}, {
17
+ ref?: import("react").Ref<View> | undefined;
18
+ }>;
19
+ declare const StyledChildrenContainer: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
20
+ theme?: import("@emotion/react").Theme | undefined;
21
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
22
+ }, {}, {
23
+ ref?: import("react").Ref<View> | undefined;
24
+ }>;
25
+ declare const StyledLeadingStatus: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
26
+ theme?: import("@emotion/react").Theme | undefined;
27
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
28
+ } & {
29
+ themeLeadingStatusIntent: LeadingStatusIntent;
30
+ }, {}, {
31
+ ref?: import("react").Ref<View> | undefined;
32
+ }>;
33
+ declare const StyledPrefixContainer: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
34
+ theme?: import("@emotion/react").Theme | undefined;
35
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
36
+ }, {}, {
37
+ ref?: import("react").Ref<View> | undefined;
38
+ }>;
39
+ declare const StyledSuffixContainer: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
40
+ theme?: import("@emotion/react").Theme | undefined;
41
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
42
+ }, {}, {
43
+ ref?: import("react").Ref<View> | undefined;
44
+ }>;
45
+ declare const StyledTitleContainer: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
46
+ theme?: import("@emotion/react").Theme | undefined;
47
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
48
+ }, {}, {
49
+ ref?: import("react").Ref<View> | undefined;
50
+ }>;
51
+ export { StyledListItemContainer, StyledContentContainer, StyledChildrenContainer, StyledLeadingStatus, StyledPrefixContainer, StyledTitleContainer, StyledSuffixContainer, };
@@ -0,0 +1,8 @@
1
+ import ListItem from './ListItem';
2
+ import BasicListItem from './BasicListItem';
3
+ interface ListType {
4
+ Item: typeof ListItem;
5
+ BasicItem: typeof BasicListItem;
6
+ }
7
+ declare const List: ListType;
8
+ export default List;
@@ -0,0 +1,13 @@
1
+ import { ViewProps, StyleProp, ViewStyle } from 'react-native';
2
+ export interface MapPinFocussedProps extends ViewProps {
3
+ /**
4
+ * Additional style.
5
+ */
6
+ style?: StyleProp<ViewStyle>;
7
+ /**
8
+ * Testing id of the component.
9
+ */
10
+ testID?: string;
11
+ }
12
+ declare const MapPinFocussed: ({ style, testID, ...nativeProps }: MapPinFocussedProps) => JSX.Element;
13
+ export default MapPinFocussed;
@@ -0,0 +1,31 @@
1
+ import { View } from 'react-native';
2
+ declare type State = 'idle' | 'selected' | 'applied';
3
+ export declare const StyledContainer: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
4
+ theme?: import("@emotion/react").Theme | undefined;
5
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
6
+ }, {}, {
7
+ ref?: import("react").Ref<View> | undefined;
8
+ }>;
9
+ export declare const StyledContent: import("@emotion/native").StyledComponent<import("react-native").ViewProps & {
10
+ theme?: import("@emotion/react").Theme | undefined;
11
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
12
+ } & {
13
+ themeState: State;
14
+ }, {}, {
15
+ ref?: import("react").Ref<View> | undefined;
16
+ }>;
17
+ export declare const StyledBadge: import("@emotion/native").StyledComponent<import("../Badge/types").IconBadgeProps & {
18
+ theme?: import("@emotion/react").Theme | undefined;
19
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
20
+ }, {}, {}>;
21
+ export declare const StyledImage: import("@emotion/native").StyledComponent<import("react-native").ImageProps & {
22
+ theme?: import("@emotion/react").Theme | undefined;
23
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
24
+ }, {}, {
25
+ ref?: import("react").Ref<import("react-native").Image> | undefined;
26
+ }>;
27
+ export declare const StyledFocusIcon: import("@emotion/native").StyledComponent<import("../Icon").IconProps & {
28
+ theme?: import("@emotion/react").Theme | undefined;
29
+ as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
30
+ }, {}, {}>;
31
+ export {};
@@ -0,0 +1,5 @@
1
+ import { MapPinProps } from './types';
2
+ declare const _default: (({ style, testID, state, image, icon, ...nativeProps }: MapPinProps) => JSX.Element) & {
3
+ Focussed: ({ style, testID, ...nativeProps }: import("./Focussed").MapPinFocussedProps) => JSX.Element;
4
+ };
5
+ export default _default;