@utilitywarehouse/hearth-react-native 0.1.0 → 0.2.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 (557) hide show
  1. package/.storybook/preview.tsx +5 -0
  2. package/.storybook/prism-setup.ts +104 -0
  3. package/.turbo/turbo-build.log +1 -1
  4. package/.turbo/turbo-lint.log +1 -1
  5. package/CHANGELOG.md +20 -0
  6. package/build/components/Accordion/Accordion.d.ts +1 -1
  7. package/build/components/Accordion/Accordion.js +7 -7
  8. package/build/components/Accordion/Accordion.props.d.ts +2 -2
  9. package/build/components/Accordion/AccordionIcon.js +2 -2
  10. package/build/components/Accordion/AccordionItemRoot.js +2 -2
  11. package/build/components/Accordion/AccordionTrigger.js +4 -4
  12. package/build/components/Accordion/index.d.ts +1 -2
  13. package/build/components/Accordion/index.js +1 -2
  14. package/build/components/Alert/Alert.js +21 -21
  15. package/build/components/Alert/Alert.props.d.ts +3 -3
  16. package/build/components/Alert/AlertCloseButton.js +2 -2
  17. package/build/components/Alert/AlertIcon.js +5 -5
  18. package/build/components/Badge/Badge.context.d.ts +4 -0
  19. package/build/components/Badge/Badge.js +86 -27
  20. package/build/components/Badge/Badge.props.d.ts +2 -1
  21. package/build/components/Badge/BadgeIcon.js +102 -18
  22. package/build/components/Badge/BadgeText.js +102 -17
  23. package/build/components/BodyText/BodyText.js +2 -2
  24. package/build/components/BottomSheet/BottomSheet.d.ts +1 -1
  25. package/build/components/BottomSheet/BottomSheet.js +3 -3
  26. package/build/components/BottomSheet/BottomSheetHandle.js +1 -1
  27. package/build/components/BottomSheet/BottomSheetModal.js +1 -1
  28. package/build/components/BottomSheet/BottomSheetScrollView.js +3 -1
  29. package/build/components/BottomSheet/BottomSheetView.js +1 -1
  30. package/build/components/Button/Button.props.d.ts +7 -7
  31. package/build/components/Button/ButtonIcon.js +29 -29
  32. package/build/components/Button/ButtonRoot.js +79 -88
  33. package/build/components/Button/ButtonSpinner.js +28 -31
  34. package/build/components/Button/ButtonText.js +40 -26
  35. package/build/components/Card/Card.props.d.ts +1 -1
  36. package/build/components/Card/CardRoot.js +56 -56
  37. package/build/components/Checkbox/CheckboxIcon.js +3 -3
  38. package/build/components/Checkbox/CheckboxIndicator.js +3 -3
  39. package/build/components/Checkbox/CheckboxTileRoot.js +3 -3
  40. package/build/components/DetailText/DetailText.js +2 -2
  41. package/build/components/Divider/Divider.js +1 -1
  42. package/build/components/Heading/Heading.js +2 -2
  43. package/build/components/Heading/Heading.props.d.ts +3 -1
  44. package/build/components/Helper/HelperIcon.js +3 -3
  45. package/build/components/Helper/HelperText.js +4 -4
  46. package/build/components/IconButton/IconButtonIcon.js +29 -29
  47. package/build/components/IconButton/IconButtonRoot.js +94 -88
  48. package/build/components/IconButton/IconButtonSpinner.js +27 -30
  49. package/build/components/InlineLink/InlineLinkRoot.js +2 -2
  50. package/build/components/Input/Input.d.ts +9 -3
  51. package/build/components/Input/Input.js +13 -13
  52. package/build/components/Input/Input.props.d.ts +1 -0
  53. package/build/components/Input/InputField.d.ts +3 -1
  54. package/build/components/Input/InputField.js +9 -39
  55. package/build/components/Input/InputIcon.js +1 -1
  56. package/build/components/Input/InputRoot.js +9 -9
  57. package/build/components/Label/Label.js +1 -1
  58. package/build/components/Link/LinkRoot.js +2 -2
  59. package/build/components/List/List.d.ts +1 -1
  60. package/build/components/List/List.js +6 -4
  61. package/build/components/List/List.props.d.ts +9 -10
  62. package/build/components/List/ListItem/ListItemHelperText.js +1 -1
  63. package/build/components/List/ListItem/ListItemIcon.js +1 -1
  64. package/build/components/List/ListItem/ListItemRoot.js +15 -6
  65. package/build/components/List/ListItem/ListItemTrailingIcon.js +1 -1
  66. package/build/components/List/index.d.ts +0 -1
  67. package/build/components/List/index.js +0 -1
  68. package/build/components/Modal/Modal.d.ts +7 -0
  69. package/build/components/Modal/Modal.js +164 -0
  70. package/build/components/Modal/Modal.props.d.ts +24 -0
  71. package/build/components/Modal/Modal.web.d.ts +7 -0
  72. package/build/components/Modal/Modal.web.js +164 -0
  73. package/build/components/Modal/index.d.ts +2 -0
  74. package/build/components/Modal/index.js +1 -0
  75. package/build/components/Radio/RadioIndicator.js +2 -2
  76. package/build/components/Radio/RadioTileRoot.js +3 -3
  77. package/build/components/RadioCard/RadioCardIndicator.js +2 -2
  78. package/build/components/RadioCard/RadioCardRoot.js +3 -3
  79. package/build/components/SectionHeader/SectionHeader.d.ts +6 -0
  80. package/build/components/SectionHeader/SectionHeader.js +19 -0
  81. package/build/components/{List/ListHeading/ListHeading.props.d.ts → SectionHeader/SectionHeader.props.d.ts} +7 -9
  82. package/build/components/SectionHeader/SectionHeaderHeading.d.ts +6 -0
  83. package/build/components/SectionHeader/SectionHeaderHeading.js +7 -0
  84. package/build/components/SectionHeader/SectionHeaderHelperText.d.ts +6 -0
  85. package/build/components/{List/ListHeading/ListHeadingHelperText.js → SectionHeader/SectionHeaderHelperText.js} +5 -5
  86. package/build/components/{List/ListHeading/ListHeadingTextContent.d.ts → SectionHeader/SectionHeaderTextContent.d.ts} +2 -2
  87. package/build/components/{List/ListHeading/ListHeadingTextContent.js → SectionHeader/SectionHeaderTextContent.js} +4 -4
  88. package/build/components/SectionHeader/index.d.ts +4 -0
  89. package/build/components/SectionHeader/index.js +4 -0
  90. package/build/components/Select/Select.js +10 -10
  91. package/build/components/Select/SelectOption.js +6 -6
  92. package/build/components/Spinner/Spinner.web.js +3 -3
  93. package/build/components/Switch/Switch.js +10 -7
  94. package/build/components/Switch/Switch.web.js +10 -8
  95. package/build/components/Textarea/TextareaField.js +5 -5
  96. package/build/components/Textarea/TextareaRoot.js +9 -9
  97. package/build/components/ToggleButton/ToggleButtonIcon.js +3 -3
  98. package/build/components/ToggleButton/ToggleButtonRoot.js +9 -9
  99. package/build/components/ToggleButton/ToggleButtonText.js +2 -2
  100. package/build/components/ToggleButtonCard/ToggleButtonCardRoot.js +3 -3
  101. package/build/components/index.d.ts +5 -3
  102. package/build/components/index.js +5 -3
  103. package/build/core/themes.d.ts +1094 -178
  104. package/build/core/themes.js +2 -2
  105. package/build/tokens/color.d.ts +1002 -86
  106. package/build/tokens/color.js +501 -43
  107. package/build/tokens/components/dark/accordion.d.ts +0 -2
  108. package/build/tokens/components/dark/accordion.js +0 -2
  109. package/build/tokens/components/dark/alert.d.ts +0 -16
  110. package/build/tokens/components/dark/alert.js +0 -16
  111. package/build/tokens/components/dark/avatar.d.ts +19 -0
  112. package/build/tokens/components/dark/avatar.js +18 -0
  113. package/build/tokens/components/dark/badge.d.ts +7 -34
  114. package/build/tokens/components/dark/badge.js +7 -34
  115. package/build/tokens/components/dark/banner.d.ts +1 -10
  116. package/build/tokens/components/dark/banner.js +1 -10
  117. package/build/tokens/components/dark/bottom-navigation.d.ts +2 -7
  118. package/build/tokens/components/dark/bottom-navigation.js +2 -7
  119. package/build/tokens/components/dark/bottom-sheet.d.ts +1 -2
  120. package/build/tokens/components/dark/bottom-sheet.js +1 -2
  121. package/build/tokens/components/dark/breadcrumb.d.ts +0 -1
  122. package/build/tokens/components/dark/breadcrumb.js +0 -1
  123. package/build/tokens/components/dark/button.d.ts +0 -86
  124. package/build/tokens/components/dark/button.js +0 -86
  125. package/build/tokens/components/dark/card.d.ts +0 -28
  126. package/build/tokens/components/dark/card.js +0 -28
  127. package/build/tokens/components/dark/carousel-control.d.ts +0 -8
  128. package/build/tokens/components/dark/carousel-control.js +0 -8
  129. package/build/tokens/components/dark/checkbox.d.ts +1 -10
  130. package/build/tokens/components/dark/checkbox.js +1 -10
  131. package/build/tokens/components/dark/date-picker.d.ts +0 -12
  132. package/build/tokens/components/dark/date-picker.js +0 -12
  133. package/build/tokens/components/dark/description-list.d.ts +20 -0
  134. package/build/tokens/components/dark/description-list.js +19 -0
  135. package/build/tokens/components/dark/dialog.d.ts +0 -1
  136. package/build/tokens/components/dark/dialog.js +0 -1
  137. package/build/tokens/components/dark/divider.d.ts +4 -1
  138. package/build/tokens/components/dark/divider.js +4 -1
  139. package/build/tokens/components/dark/expandable-card.d.ts +11 -0
  140. package/build/tokens/components/dark/expandable-card.js +10 -0
  141. package/build/tokens/components/dark/icon-button.d.ts +5 -5
  142. package/build/tokens/components/dark/icon-button.js +5 -5
  143. package/build/tokens/components/dark/icon-container.d.ts +0 -17
  144. package/build/tokens/components/dark/icon-container.js +0 -17
  145. package/build/tokens/components/dark/index.d.ts +10 -4
  146. package/build/tokens/components/dark/index.js +10 -4
  147. package/build/tokens/components/dark/indicator-icon-button.d.ts +11 -0
  148. package/build/tokens/components/dark/indicator-icon-button.js +10 -0
  149. package/build/tokens/components/dark/inline-link.d.ts +1 -1
  150. package/build/tokens/components/dark/inline-link.js +1 -1
  151. package/build/tokens/components/dark/input.d.ts +1 -9
  152. package/build/tokens/components/dark/input.js +1 -9
  153. package/build/tokens/components/dark/link.d.ts +2 -2
  154. package/build/tokens/components/dark/link.js +2 -2
  155. package/build/tokens/components/dark/list.d.ts +20 -20
  156. package/build/tokens/components/dark/list.js +20 -20
  157. package/build/tokens/components/dark/menu.d.ts +0 -12
  158. package/build/tokens/components/dark/menu.js +0 -12
  159. package/build/tokens/components/dark/modal.d.ts +0 -1
  160. package/build/tokens/components/dark/modal.js +0 -1
  161. package/build/tokens/components/dark/navigation.d.ts +1 -6
  162. package/build/tokens/components/dark/navigation.js +1 -6
  163. package/build/tokens/components/dark/pagination.d.ts +12 -0
  164. package/build/tokens/components/dark/pagination.js +11 -0
  165. package/build/tokens/components/dark/parts.d.ts +14 -4
  166. package/build/tokens/components/dark/parts.js +14 -4
  167. package/build/tokens/components/dark/pill.d.ts +0 -10
  168. package/build/tokens/components/dark/pill.js +0 -10
  169. package/build/tokens/components/dark/progress-stepper.d.ts +0 -8
  170. package/build/tokens/components/dark/progress-stepper.js +0 -8
  171. package/build/tokens/components/dark/radio.d.ts +1 -8
  172. package/build/tokens/components/dark/radio.js +1 -8
  173. package/build/tokens/components/dark/{focus.d.ts → section-header.d.ts} +4 -2
  174. package/build/tokens/components/dark/{focus.js → section-header.js} +4 -2
  175. package/build/tokens/components/dark/segmented-control.d.ts +0 -8
  176. package/build/tokens/components/dark/segmented-control.js +0 -8
  177. package/build/tokens/components/dark/select.d.ts +0 -10
  178. package/build/tokens/components/dark/select.js +0 -10
  179. package/build/tokens/components/dark/spinner.d.ts +1 -1
  180. package/build/tokens/components/dark/spinner.js +1 -1
  181. package/build/tokens/components/dark/switch.d.ts +1 -11
  182. package/build/tokens/components/dark/switch.js +1 -11
  183. package/build/tokens/components/dark/table.d.ts +23 -0
  184. package/build/tokens/components/dark/table.js +22 -0
  185. package/build/tokens/components/dark/tabs.d.ts +24 -0
  186. package/build/tokens/components/dark/tabs.js +23 -0
  187. package/build/tokens/components/dark/toast.d.ts +10 -0
  188. package/build/tokens/components/dark/toast.js +9 -0
  189. package/build/tokens/components/dark/toggle-button.d.ts +0 -11
  190. package/build/tokens/components/dark/toggle-button.js +0 -11
  191. package/build/tokens/components/dark/tooltip.d.ts +12 -0
  192. package/build/tokens/components/dark/tooltip.js +11 -0
  193. package/build/tokens/components/dark/top-navigation.d.ts +0 -8
  194. package/build/tokens/components/dark/top-navigation.js +0 -8
  195. package/build/tokens/components/light/accordion.d.ts +0 -2
  196. package/build/tokens/components/light/accordion.js +0 -2
  197. package/build/tokens/components/light/alert.d.ts +0 -16
  198. package/build/tokens/components/light/alert.js +0 -16
  199. package/build/tokens/components/light/avatar.d.ts +19 -0
  200. package/build/tokens/components/light/avatar.js +18 -0
  201. package/build/tokens/components/light/badge.d.ts +7 -34
  202. package/build/tokens/components/light/badge.js +7 -34
  203. package/build/tokens/components/light/banner.d.ts +2 -11
  204. package/build/tokens/components/light/banner.js +2 -11
  205. package/build/tokens/components/light/bottom-navigation.d.ts +0 -5
  206. package/build/tokens/components/light/bottom-navigation.js +0 -5
  207. package/build/tokens/components/light/bottom-sheet.d.ts +1 -2
  208. package/build/tokens/components/light/bottom-sheet.js +1 -2
  209. package/build/tokens/components/light/breadcrumb.d.ts +0 -1
  210. package/build/tokens/components/light/breadcrumb.js +0 -1
  211. package/build/tokens/components/light/button.d.ts +0 -86
  212. package/build/tokens/components/light/button.js +0 -86
  213. package/build/tokens/components/light/card.d.ts +0 -28
  214. package/build/tokens/components/light/card.js +0 -28
  215. package/build/tokens/components/light/carousel-control.d.ts +0 -8
  216. package/build/tokens/components/light/carousel-control.js +0 -8
  217. package/build/tokens/components/light/checkbox.d.ts +0 -9
  218. package/build/tokens/components/light/checkbox.js +0 -9
  219. package/build/tokens/components/light/date-picker.d.ts +0 -12
  220. package/build/tokens/components/light/date-picker.js +0 -12
  221. package/build/tokens/components/light/description-list.d.ts +20 -0
  222. package/build/tokens/components/light/description-list.js +19 -0
  223. package/build/tokens/components/light/dialog.d.ts +0 -1
  224. package/build/tokens/components/light/dialog.js +0 -1
  225. package/build/tokens/components/light/divider.d.ts +4 -1
  226. package/build/tokens/components/light/divider.js +4 -1
  227. package/build/tokens/components/light/expandable-card.d.ts +11 -0
  228. package/build/tokens/components/light/expandable-card.js +10 -0
  229. package/build/tokens/components/light/icon-button.d.ts +5 -5
  230. package/build/tokens/components/light/icon-button.js +5 -5
  231. package/build/tokens/components/light/icon-container.d.ts +0 -17
  232. package/build/tokens/components/light/icon-container.js +0 -17
  233. package/build/tokens/components/light/index.d.ts +10 -4
  234. package/build/tokens/components/light/index.js +10 -4
  235. package/build/tokens/components/light/indicator-icon-button.d.ts +11 -0
  236. package/build/tokens/components/light/indicator-icon-button.js +10 -0
  237. package/build/tokens/components/light/input.d.ts +1 -9
  238. package/build/tokens/components/light/input.js +1 -9
  239. package/build/tokens/components/light/link.d.ts +2 -2
  240. package/build/tokens/components/light/link.js +2 -2
  241. package/build/tokens/components/light/list.d.ts +20 -20
  242. package/build/tokens/components/light/list.js +20 -20
  243. package/build/tokens/components/light/menu.d.ts +0 -12
  244. package/build/tokens/components/light/menu.js +0 -12
  245. package/build/tokens/components/light/modal.d.ts +0 -1
  246. package/build/tokens/components/light/modal.js +0 -1
  247. package/build/tokens/components/light/navigation.d.ts +1 -6
  248. package/build/tokens/components/light/navigation.js +1 -6
  249. package/build/tokens/components/light/pagination.d.ts +12 -0
  250. package/build/tokens/components/light/pagination.js +11 -0
  251. package/build/tokens/components/light/parts.d.ts +11 -1
  252. package/build/tokens/components/light/parts.js +11 -1
  253. package/build/tokens/components/light/pill.d.ts +0 -10
  254. package/build/tokens/components/light/pill.js +0 -10
  255. package/build/tokens/components/light/progress-stepper.d.ts +0 -8
  256. package/build/tokens/components/light/progress-stepper.js +0 -8
  257. package/build/tokens/components/light/radio.d.ts +0 -7
  258. package/build/tokens/components/light/radio.js +0 -7
  259. package/build/tokens/components/light/section-header.d.ts +10 -0
  260. package/build/tokens/components/light/section-header.js +9 -0
  261. package/build/tokens/components/light/segmented-control.d.ts +0 -8
  262. package/build/tokens/components/light/segmented-control.js +0 -8
  263. package/build/tokens/components/light/select.d.ts +0 -10
  264. package/build/tokens/components/light/select.js +0 -10
  265. package/build/tokens/components/light/switch.d.ts +1 -11
  266. package/build/tokens/components/light/switch.js +1 -11
  267. package/build/tokens/components/light/table.d.ts +23 -0
  268. package/build/tokens/components/light/table.js +22 -0
  269. package/build/tokens/components/light/tabs.d.ts +24 -0
  270. package/build/tokens/components/light/tabs.js +23 -0
  271. package/build/tokens/components/light/toast.d.ts +10 -0
  272. package/build/tokens/components/light/toast.js +9 -0
  273. package/build/tokens/components/light/toggle-button.d.ts +0 -11
  274. package/build/tokens/components/light/toggle-button.js +0 -11
  275. package/build/tokens/components/light/tooltip.d.ts +12 -0
  276. package/build/tokens/components/light/tooltip.js +11 -0
  277. package/build/tokens/components/light/top-navigation.d.ts +0 -8
  278. package/build/tokens/components/light/top-navigation.js +0 -8
  279. package/build/tokens/index.d.ts +1 -0
  280. package/build/tokens/index.js +1 -0
  281. package/build/tokens/semantic-dark.d.ts +240 -13
  282. package/build/tokens/semantic-dark.js +240 -13
  283. package/build/tokens/semantic-light.d.ts +240 -13
  284. package/build/tokens/semantic-light.js +240 -13
  285. package/build/tokens/{components/light/focus.d.ts → semantic.d.ts} +3 -2
  286. package/build/tokens/{components/light/focus.js → semantic.js} +3 -2
  287. package/build/types/values.d.ts +10 -6
  288. package/build/utils/coloursAsArray.d.ts +8 -0
  289. package/build/utils/coloursAsArray.js +37 -2
  290. package/build/utils/getFlattenedColorValue.d.ts +3 -1
  291. package/build/utils/hexWithOpacity.d.ts +2 -0
  292. package/build/utils/hexWithOpacity.js +15 -0
  293. package/build/utils/index.d.ts +2 -1
  294. package/build/utils/index.js +2 -1
  295. package/build/utils/styleUtils.js +33 -1
  296. package/docs/assets/modal-android.mp4 +0 -0
  297. package/docs/assets/modal-ios.mp4 +0 -0
  298. package/docs/assets/pigs.png +0 -0
  299. package/docs/components/AllComponents.web.tsx +39 -2
  300. package/docs/components/BadgeList.tsx +8 -8
  301. package/docs/components/ViewFigmaButton.tsx +3 -3
  302. package/docs/introduction.mdx +2 -2
  303. package/docs/llm-docs/unistyles-llms-full.txt +1 -1
  304. package/docs/theme-tokens.mdx +49 -26
  305. package/package.json +20 -17
  306. package/src/components/Accordion/Accordion.docs.mdx +25 -39
  307. package/src/components/Accordion/Accordion.props.ts +2 -2
  308. package/src/components/Accordion/Accordion.stories.tsx +10 -10
  309. package/src/components/Accordion/Accordion.tsx +14 -14
  310. package/src/components/Accordion/AccordionIcon.tsx +2 -2
  311. package/src/components/Accordion/AccordionItemRoot.tsx +3 -3
  312. package/src/components/Accordion/AccordionTrigger.tsx +4 -4
  313. package/src/components/Accordion/index.ts +3 -4
  314. package/src/components/Alert/Alert.docs.mdx +25 -25
  315. package/src/components/Alert/Alert.props.ts +3 -3
  316. package/src/components/Alert/Alert.stories.tsx +11 -11
  317. package/src/components/Alert/Alert.tsx +22 -22
  318. package/src/components/Alert/AlertCloseButton.tsx +3 -3
  319. package/src/components/Alert/AlertIcon.tsx +7 -7
  320. package/src/components/Badge/Badge.context.ts +2 -0
  321. package/src/components/Badge/Badge.docs.mdx +16 -15
  322. package/src/components/Badge/Badge.props.ts +13 -1
  323. package/src/components/Badge/Badge.stories.tsx +106 -48
  324. package/src/components/Badge/Badge.tsx +96 -29
  325. package/src/components/Badge/BadgeIcon.tsx +102 -18
  326. package/src/components/Badge/BadgeText.tsx +102 -17
  327. package/src/components/BodyText/BodyText.tsx +4 -4
  328. package/src/components/BottomSheet/BottomSheet.docs.mdx +23 -5
  329. package/src/components/BottomSheet/BottomSheet.stories.tsx +9 -9
  330. package/src/components/BottomSheet/BottomSheet.tsx +5 -5
  331. package/src/components/BottomSheet/BottomSheetHandle.tsx +1 -1
  332. package/src/components/BottomSheet/BottomSheetModal.tsx +1 -1
  333. package/src/components/BottomSheet/BottomSheetScrollView.tsx +4 -2
  334. package/src/components/BottomSheet/BottomSheetView.tsx +1 -1
  335. package/src/components/Box/Box.stories.tsx +3 -3
  336. package/src/components/Button/Button.docs.mdx +35 -35
  337. package/src/components/Button/Button.props.tsx +7 -7
  338. package/src/components/Button/Button.stories.tsx +16 -16
  339. package/src/components/Button/ButtonIcon.tsx +29 -29
  340. package/src/components/Button/ButtonRoot.tsx +79 -89
  341. package/src/components/Button/ButtonSpinner.tsx +30 -33
  342. package/src/components/Button/ButtonText.tsx +40 -26
  343. package/src/components/Card/Card.docs.mdx +22 -22
  344. package/src/components/Card/Card.props.ts +9 -9
  345. package/src/components/Card/Card.stories.tsx +34 -34
  346. package/src/components/Card/CardRoot.tsx +56 -56
  347. package/src/components/Checkbox/CheckboxIcon.tsx +4 -4
  348. package/src/components/Checkbox/CheckboxIndicator.tsx +3 -3
  349. package/src/components/Checkbox/CheckboxTileRoot.tsx +3 -3
  350. package/src/components/DetailText/DetailText.tsx +3 -3
  351. package/src/components/Divider/Divider.tsx +1 -1
  352. package/src/components/Heading/Heading.props.ts +3 -1
  353. package/src/components/Heading/Heading.tsx +2 -2
  354. package/src/components/Helper/HelperIcon.tsx +3 -3
  355. package/src/components/Helper/HelperText.tsx +4 -4
  356. package/src/components/Icon/Icon.stories.tsx +2 -2
  357. package/src/components/IconButton/IconButton.docs.mdx +21 -16
  358. package/src/components/IconButton/IconButton.figma.tsx +1 -1
  359. package/src/components/IconButton/IconButton.stories.tsx +14 -14
  360. package/src/components/IconButton/IconButtonIcon.tsx +29 -29
  361. package/src/components/IconButton/IconButtonRoot.tsx +94 -88
  362. package/src/components/IconButton/IconButtonSpinner.tsx +27 -30
  363. package/src/components/InlineLink/InlineLinkRoot.tsx +2 -2
  364. package/src/components/Input/Input.docs.mdx +16 -14
  365. package/src/components/Input/Input.props.ts +1 -0
  366. package/src/components/Input/Input.stories.tsx +5 -4
  367. package/src/components/Input/Input.tsx +15 -13
  368. package/src/components/Input/InputField.tsx +25 -52
  369. package/src/components/Input/InputIcon.tsx +1 -1
  370. package/src/components/Input/InputRoot.tsx +10 -10
  371. package/src/components/Label/Label.tsx +2 -2
  372. package/src/components/Link/LinkRoot.tsx +2 -2
  373. package/src/components/List/List.docs.mdx +35 -56
  374. package/src/components/List/List.props.ts +9 -10
  375. package/src/components/List/List.stories.tsx +8 -8
  376. package/src/components/List/List.tsx +25 -25
  377. package/src/components/List/ListItem/ListItemHelperText.tsx +1 -1
  378. package/src/components/List/ListItem/ListItemIcon.tsx +1 -1
  379. package/src/components/List/ListItem/ListItemRoot.tsx +15 -6
  380. package/src/components/List/ListItem/ListItemTrailingIcon.tsx +1 -1
  381. package/src/components/List/index.ts +0 -1
  382. package/src/components/Modal/Modal.docs.mdx +547 -0
  383. package/src/components/Modal/Modal.props.ts +26 -0
  384. package/src/components/Modal/Modal.stories.tsx +222 -0
  385. package/src/components/Modal/Modal.tsx +333 -0
  386. package/src/components/Modal/Modal.web.tsx +333 -0
  387. package/src/components/Modal/index.ts +2 -0
  388. package/src/components/Radio/RadioIndicator.tsx +2 -2
  389. package/src/components/Radio/RadioTileRoot.tsx +3 -3
  390. package/src/components/RadioCard/RadioCardIndicator.tsx +2 -2
  391. package/src/components/RadioCard/RadioCardRoot.tsx +3 -3
  392. package/src/components/{List/ListHeading/ListHeading.figma.tsx → SectionHeader/SectionHeader.figma.tsx} +3 -3
  393. package/src/components/{List/ListHeading/ListHeading.props.ts → SectionHeader/SectionHeader.props.ts} +7 -9
  394. package/src/components/SectionHeader/SectionHeader.stories.tsx +76 -0
  395. package/src/components/{List/ListHeading/ListHeading.tsx → SectionHeader/SectionHeader.tsx} +16 -19
  396. package/src/components/SectionHeader/SectionHeaderHeading.tsx +14 -0
  397. package/src/components/SectionHeader/SectionHeaderHelperText.tsx +21 -0
  398. package/src/components/{List/ListHeading/ListHeadingTextContent.tsx → SectionHeader/SectionHeaderTextContent.tsx} +4 -4
  399. package/src/components/SectionHeader/Sectionheader.docs.mdx +83 -0
  400. package/src/components/SectionHeader/index.ts +4 -0
  401. package/src/components/Select/Select.tsx +10 -10
  402. package/src/components/Select/SelectOption.tsx +7 -7
  403. package/src/components/Spinner/Spinner.tsx +3 -3
  404. package/src/components/Spinner/Spinner.web.tsx +12 -12
  405. package/src/components/Switch/Switch.tsx +10 -7
  406. package/src/components/Switch/Switch.web.tsx +10 -12
  407. package/src/components/Textarea/TextareaField.tsx +5 -5
  408. package/src/components/Textarea/TextareaRoot.tsx +10 -10
  409. package/src/components/ToggleButton/ToggleButtonIcon.tsx +3 -3
  410. package/src/components/ToggleButton/ToggleButtonRoot.tsx +11 -11
  411. package/src/components/ToggleButton/ToggleButtonText.tsx +2 -2
  412. package/src/components/ToggleButtonCard/ToggleButtonCardRoot.tsx +3 -3
  413. package/src/components/index.ts +7 -5
  414. package/src/core/themes.ts +2 -2
  415. package/src/tokens/color.ts +501 -43
  416. package/src/tokens/components/dark/accordion.ts +0 -2
  417. package/src/tokens/components/dark/alert.ts +0 -16
  418. package/src/tokens/components/dark/avatar.ts +19 -0
  419. package/src/tokens/components/dark/badge.ts +7 -34
  420. package/src/tokens/components/dark/banner.ts +1 -10
  421. package/src/tokens/components/dark/bottom-navigation.ts +2 -7
  422. package/src/tokens/components/dark/bottom-sheet.ts +1 -2
  423. package/src/tokens/components/dark/breadcrumb.ts +0 -1
  424. package/src/tokens/components/dark/button.ts +0 -86
  425. package/src/tokens/components/dark/card.ts +0 -28
  426. package/src/tokens/components/dark/carousel-control.ts +0 -8
  427. package/src/tokens/components/dark/checkbox.ts +1 -10
  428. package/src/tokens/components/dark/date-picker.ts +0 -12
  429. package/src/tokens/components/dark/description-list.ts +20 -0
  430. package/src/tokens/components/dark/dialog.ts +0 -1
  431. package/src/tokens/components/dark/divider.ts +4 -1
  432. package/src/tokens/components/{light/footer.ts → dark/expandable-card.ts} +4 -5
  433. package/src/tokens/components/dark/icon-button.ts +5 -5
  434. package/src/tokens/components/dark/icon-container.ts +0 -17
  435. package/src/tokens/components/dark/index.ts +10 -4
  436. package/src/tokens/components/dark/{footer.ts → indicator-icon-button.ts} +4 -5
  437. package/src/tokens/components/dark/inline-link.ts +1 -1
  438. package/src/tokens/components/dark/input.ts +1 -9
  439. package/src/tokens/components/dark/link.ts +2 -2
  440. package/src/tokens/components/dark/list.ts +20 -20
  441. package/src/tokens/components/dark/menu.ts +0 -12
  442. package/src/tokens/components/dark/modal.ts +0 -1
  443. package/src/tokens/components/dark/navigation.ts +1 -6
  444. package/src/tokens/components/dark/pagination.ts +12 -0
  445. package/src/tokens/components/dark/parts.ts +14 -4
  446. package/src/tokens/components/dark/pill.ts +0 -10
  447. package/src/tokens/components/dark/progress-stepper.ts +0 -8
  448. package/src/tokens/components/dark/radio.ts +1 -8
  449. package/src/tokens/components/dark/{focus.ts → section-header.ts} +4 -2
  450. package/src/tokens/components/dark/segmented-control.ts +0 -8
  451. package/src/tokens/components/dark/select.ts +0 -10
  452. package/src/tokens/components/dark/spinner.ts +1 -1
  453. package/src/tokens/components/dark/switch.ts +1 -11
  454. package/src/tokens/components/dark/table.ts +23 -0
  455. package/src/tokens/components/dark/tabs.ts +24 -0
  456. package/src/tokens/components/dark/toast.ts +10 -0
  457. package/src/tokens/components/dark/toggle-button.ts +0 -11
  458. package/src/tokens/components/dark/tooltip.ts +12 -0
  459. package/src/tokens/components/dark/top-navigation.ts +0 -8
  460. package/src/tokens/components/light/accordion.ts +0 -2
  461. package/src/tokens/components/light/alert.ts +0 -16
  462. package/src/tokens/components/light/avatar.ts +19 -0
  463. package/src/tokens/components/light/badge.ts +7 -34
  464. package/src/tokens/components/light/banner.ts +2 -11
  465. package/src/tokens/components/light/bottom-navigation.ts +0 -5
  466. package/src/tokens/components/light/bottom-sheet.ts +1 -2
  467. package/src/tokens/components/light/breadcrumb.ts +0 -1
  468. package/src/tokens/components/light/button.ts +0 -86
  469. package/src/tokens/components/light/card.ts +0 -28
  470. package/src/tokens/components/light/carousel-control.ts +0 -8
  471. package/src/tokens/components/light/checkbox.ts +0 -9
  472. package/src/tokens/components/light/date-picker.ts +0 -12
  473. package/src/tokens/components/light/description-list.ts +20 -0
  474. package/src/tokens/components/light/dialog.ts +0 -1
  475. package/src/tokens/components/light/divider.ts +4 -1
  476. package/src/tokens/components/light/expandable-card.ts +11 -0
  477. package/src/tokens/components/light/icon-button.ts +5 -5
  478. package/src/tokens/components/light/icon-container.ts +0 -17
  479. package/src/tokens/components/light/index.ts +10 -4
  480. package/src/tokens/components/light/indicator-icon-button.ts +11 -0
  481. package/src/tokens/components/light/input.ts +1 -9
  482. package/src/tokens/components/light/link.ts +2 -2
  483. package/src/tokens/components/light/list.ts +20 -20
  484. package/src/tokens/components/light/menu.ts +0 -12
  485. package/src/tokens/components/light/modal.ts +0 -1
  486. package/src/tokens/components/light/navigation.ts +1 -6
  487. package/src/tokens/components/light/pagination.ts +12 -0
  488. package/src/tokens/components/light/parts.ts +11 -1
  489. package/src/tokens/components/light/pill.ts +0 -10
  490. package/src/tokens/components/light/progress-stepper.ts +0 -8
  491. package/src/tokens/components/light/radio.ts +0 -7
  492. package/src/tokens/components/light/{focus.ts → section-header.ts} +4 -2
  493. package/src/tokens/components/light/segmented-control.ts +0 -8
  494. package/src/tokens/components/light/select.ts +0 -10
  495. package/src/tokens/components/light/switch.ts +1 -11
  496. package/src/tokens/components/light/table.ts +23 -0
  497. package/src/tokens/components/light/tabs.ts +24 -0
  498. package/src/tokens/components/light/toast.ts +10 -0
  499. package/src/tokens/components/light/toggle-button.ts +0 -11
  500. package/src/tokens/components/light/tooltip.ts +12 -0
  501. package/src/tokens/components/light/top-navigation.ts +0 -8
  502. package/src/tokens/index.ts +1 -0
  503. package/src/tokens/semantic-dark.ts +240 -13
  504. package/src/tokens/semantic-light.ts +240 -13
  505. package/src/tokens/semantic.ts +9 -0
  506. package/src/types/values.ts +28 -6
  507. package/src/utils/coloursAsArray.ts +44 -2
  508. package/src/utils/getFlattenedColorValue.ts +1 -1
  509. package/src/utils/hexWithOpacity.ts +19 -0
  510. package/src/utils/index.ts +2 -1
  511. package/src/utils/styleUtils.ts +39 -1
  512. package/src/vite-env.d.ts +5 -0
  513. package/build/components/Accordion/AccordionHeading/AccordionHeading.d.ts +0 -6
  514. package/build/components/Accordion/AccordionHeading/AccordionHeading.js +0 -16
  515. package/build/components/Accordion/AccordionHeading/AccordionHeading.props.d.ts +0 -14
  516. package/build/components/Accordion/AccordionHeading/AccordionHeadingHelperText.d.ts +0 -6
  517. package/build/components/Accordion/AccordionHeading/AccordionHeadingHelperText.js +0 -13
  518. package/build/components/Accordion/AccordionHeading/AccordionHeadingTextContent.d.ts +0 -6
  519. package/build/components/Accordion/AccordionHeading/AccordionHeadingTextContent.js +0 -14
  520. package/build/components/Accordion/AccordionHeading/AccordionHeadingTitle.d.ts +0 -6
  521. package/build/components/Accordion/AccordionHeading/AccordionHeadingTitle.js +0 -7
  522. package/build/components/Accordion/AccordionHeading/index.d.ts +0 -4
  523. package/build/components/Accordion/AccordionHeading/index.js +0 -4
  524. package/build/components/List/ListHeading/ListHeading.d.ts +0 -6
  525. package/build/components/List/ListHeading/ListHeading.js +0 -20
  526. package/build/components/List/ListHeading/ListHeadingHelperText.d.ts +0 -6
  527. package/build/components/List/ListHeading/ListHeadingTitle.d.ts +0 -6
  528. package/build/components/List/ListHeading/ListHeadingTitle.js +0 -7
  529. package/build/components/List/ListHeading/index.d.ts +0 -4
  530. package/build/components/List/ListHeading/index.js +0 -4
  531. package/build/tokens/components/dark/footer.d.ts +0 -12
  532. package/build/tokens/components/dark/footer.js +0 -11
  533. package/build/tokens/components/dark/icon.d.ts +0 -15
  534. package/build/tokens/components/dark/icon.js +0 -14
  535. package/build/tokens/components/dark/text.d.ts +0 -11
  536. package/build/tokens/components/dark/text.js +0 -10
  537. package/build/tokens/components/light/footer.d.ts +0 -12
  538. package/build/tokens/components/light/footer.js +0 -11
  539. package/build/tokens/components/light/icon.d.ts +0 -15
  540. package/build/tokens/components/light/icon.js +0 -14
  541. package/build/tokens/components/light/text.d.ts +0 -11
  542. package/build/tokens/components/light/text.js +0 -10
  543. package/src/components/Accordion/AccordionHeading/AccordionHeading.props.ts +0 -19
  544. package/src/components/Accordion/AccordionHeading/AccordionHeading.tsx +0 -38
  545. package/src/components/Accordion/AccordionHeading/AccordionHeadingHelperText.tsx +0 -22
  546. package/src/components/Accordion/AccordionHeading/AccordionHeadingTextContent.tsx +0 -21
  547. package/src/components/Accordion/AccordionHeading/AccordionHeadingTitle.tsx +0 -14
  548. package/src/components/Accordion/AccordionHeading/index.ts +0 -4
  549. package/src/components/List/ListHeading/ListHeadingHelperText.tsx +0 -21
  550. package/src/components/List/ListHeading/ListHeadingTitle.tsx +0 -14
  551. package/src/components/List/ListHeading/index.ts +0 -4
  552. package/src/tokens/components/dark/icon.ts +0 -15
  553. package/src/tokens/components/dark/text.ts +0 -11
  554. package/src/tokens/components/light/icon.ts +0 -15
  555. package/src/tokens/components/light/text.ts +0 -11
  556. /package/build/components/{Accordion/AccordionHeading/AccordionHeading.props.js → Modal/Modal.props.js} +0 -0
  557. /package/build/components/{List/ListHeading/ListHeading.props.js → SectionHeader/SectionHeader.props.js} +0 -0
@@ -0,0 +1,164 @@
1
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
+ import { CloseMediumIcon } from '@utilitywarehouse/hearth-react-native-icons';
3
+ import { useCallback, useEffect, useImperativeHandle, useRef } from 'react';
4
+ import { AccessibilityInfo, Image, Platform, View, findNodeHandle } from 'react-native';
5
+ import Animated, { Easing, useAnimatedStyle, useSharedValue, withDelay, withTiming, } from 'react-native-reanimated';
6
+ import { StyleSheet } from 'react-native-unistyles';
7
+ import { useTheme } from '../../hooks';
8
+ import { hexWithOpacity } from '../../utils';
9
+ import { BodyText } from '../BodyText';
10
+ import { BottomSheetModal, BottomSheetScrollView } from '../BottomSheet';
11
+ import { Button } from '../Button';
12
+ import { Heading } from '../Heading';
13
+ import { Spinner } from '../Spinner';
14
+ import { UnstyledIconButton } from '../UnstyledIconButton';
15
+ const Modal = ({ ref, children, heading, description, showCloseButton = true, primaryButtonText, secondaryButtonText, onPressPrimaryButton, onPressCloseButton, onPressSecondaryButton, closeOnPrimaryButtonPress = true, closeOnSecondaryButtonPress = true, loading, image, primaryButtonProps, secondaryButtonProps, closeButtonProps, fullscreen = false, ...props }) => {
16
+ const bottomSheetModalRef = useRef(null);
17
+ const viewRef = useRef(null);
18
+ const scrollViewRef = useRef(null);
19
+ const theme = useTheme();
20
+ const backgroundOpacity = useSharedValue(0);
21
+ const pretendContentTranslateY = useSharedValue(20);
22
+ const triggerCloseAnimation = useCallback(() => {
23
+ if (Platform.OS === 'android' && fullscreen) {
24
+ pretendContentTranslateY.value = withTiming(20, {
25
+ duration: 50,
26
+ easing: Easing.in(Easing.quad),
27
+ });
28
+ backgroundOpacity.value = withTiming(0, {
29
+ duration: 100,
30
+ easing: Easing.in(Easing.quad),
31
+ });
32
+ }
33
+ }, [Platform.OS, fullscreen, pretendContentTranslateY, backgroundOpacity]);
34
+ useImperativeHandle(ref, () => ({
35
+ ...bottomSheetModalRef.current,
36
+ triggerCloseAnimation,
37
+ }));
38
+ // Trigger animations on render for fullscreen Android modal
39
+ useEffect(() => {
40
+ if (Platform.OS === 'android' && fullscreen) {
41
+ backgroundOpacity.value = withDelay(300, withTiming(1, {
42
+ duration: 200,
43
+ easing: Easing.out(Easing.quad),
44
+ }));
45
+ pretendContentTranslateY.value = withDelay(500, withTiming(0, {
46
+ duration: 300,
47
+ easing: Easing.out(Easing.quad),
48
+ }));
49
+ }
50
+ }, [fullscreen, backgroundOpacity, pretendContentTranslateY]);
51
+ const animatedBackgroundStyle = useAnimatedStyle(() => ({
52
+ backgroundColor: hexWithOpacity(theme.components.overlay.backgroundColor, backgroundOpacity.value * (theme.components.overlay.opacity / 100)),
53
+ }));
54
+ const animatedFullscreenStyle = useAnimatedStyle(() => ({
55
+ backgroundColor: hexWithOpacity(theme.components.overlay.backgroundColor, backgroundOpacity.value * (theme.components.overlay.opacity / 100)),
56
+ }));
57
+ const animatedPretendContentStyle = useAnimatedStyle(() => ({
58
+ transform: [{ translateY: pretendContentTranslateY.value }],
59
+ }));
60
+ const handleChange = (index, position, type) => {
61
+ if (index > -1) {
62
+ // Add a small delay to ensure the modal is fully rendered
63
+ setTimeout(() => {
64
+ // Announce the modal opening to screen readers
65
+ AccessibilityInfo.announceForAccessibility('Modal opened.');
66
+ const scrollViewTargetRef = scrollViewRef.current?.getInnerViewNode();
67
+ const targetRef = viewRef.current;
68
+ if ((Platform.OS === 'android' && targetRef) || scrollViewTargetRef) {
69
+ const nodeHandle = findNodeHandle(Platform.OS === 'android' ? targetRef : scrollViewTargetRef);
70
+ if (nodeHandle) {
71
+ AccessibilityInfo.setAccessibilityFocus(nodeHandle);
72
+ }
73
+ }
74
+ }, 100);
75
+ }
76
+ props.onChange?.(index, position, type);
77
+ };
78
+ const handleCloseButtonPress = () => {
79
+ bottomSheetModalRef.current?.dismiss();
80
+ if (onPressCloseButton) {
81
+ onPressCloseButton();
82
+ }
83
+ };
84
+ const handlePrimaryButtonPress = () => {
85
+ if (onPressPrimaryButton) {
86
+ onPressPrimaryButton();
87
+ }
88
+ if (closeOnPrimaryButtonPress) {
89
+ bottomSheetModalRef.current?.dismiss();
90
+ }
91
+ };
92
+ const handleSecondaryButtonPress = () => {
93
+ if (onPressSecondaryButton) {
94
+ onPressSecondaryButton();
95
+ }
96
+ if (closeOnSecondaryButtonPress) {
97
+ bottomSheetModalRef.current?.dismiss();
98
+ }
99
+ };
100
+ const content = (_jsx(_Fragment, { children: loading ? (_jsxs(View, { style: styles.loadingContainer, accessible: Platform.OS === 'android' ? true : undefined, accessibilityLabel: Platform.OS === 'android' ? 'Loading' : undefined, screenReaderFocusable: true, ref: viewRef, children: [_jsx(Spinner, { size: "lg" }), _jsx(Heading, { size: "lg", textAlign: "center", children: "Loading..." })] })) : (_jsxs(View, { style: styles.container, accessible: Platform.OS === 'android' ? true : undefined, accessibilityLabel: Platform.OS === 'android' ? 'Modal content' : undefined, screenReaderFocusable: true, ref: viewRef, children: [_jsxs(View, { style: styles.header, children: [_jsxs(View, { style: styles.headerTextContent, children: [heading && !image ? (_jsx(Heading, { size: "lg", accessible: true, children: heading })) : null, description && !image ? _jsx(BodyText, { accessible: true, children: description }) : null] }), showCloseButton ? (_jsx(UnstyledIconButton, { icon: CloseMediumIcon, onPress: handleCloseButtonPress, accessibilityLabel: "Close modal", ...closeButtonProps })) : null] }), image ? (_jsxs(View, { style: styles.imageContainer, children: [_jsx(Image, { style: styles.image, ...image }), _jsxs(View, { style: styles.textContent, children: [heading ? (_jsx(Heading, { size: "lg", textAlign: "center", accessible: true, children: heading })) : null, description ? (_jsx(BodyText, { textAlign: "center", accessible: true, children: description })) : null] })] })) : null, children, _jsxs(View, { style: styles.footer, children: [onPressPrimaryButton && primaryButtonText ? (_jsx(Button, { onPress: handlePrimaryButtonPress, text: primaryButtonText, ...primaryButtonProps, variant: primaryButtonProps?.variant ?? 'solid', colorScheme: primaryButtonProps?.colorScheme ?? 'highlight' })) : null, onPressSecondaryButton && secondaryButtonText ? (_jsx(Button, { onPress: handleSecondaryButtonPress, text: secondaryButtonText, ...secondaryButtonProps, variant: secondaryButtonProps?.variant ?? 'outline', colorScheme: secondaryButtonProps?.colorScheme ?? 'functional' })) : null] })] })) }));
101
+ return fullscreen ? (_jsxs(View, { style: { flex: 1, backgroundColor: theme.color.background.primary }, children: [Platform.OS === 'android' ? (_jsx(Animated.View, { style: [styles.androidContainer, animatedBackgroundStyle], children: _jsx(Animated.View, { style: [styles.pretendContent, animatedPretendContentStyle] }) })) : null, _jsx(Animated.View, { style: [styles.fullscreenContainer, Platform.OS === 'android' && animatedFullscreenStyle], children: _jsx(View, { style: styles.fullscreenContent, children: content }) })] })) : (_jsx(BottomSheetModal, { ref: bottomSheetModalRef, enableDynamicSizing: true, snapPoints: image ? ['90%'] : props.snapPoints, showHandle: typeof loading !== 'undefined' && loading ? false : props.showHandle, accessible: false, ...props, onChange: handleChange, children: _jsx(BottomSheetScrollView, { contentContainerStyle: styles.container, ref: scrollViewRef, children: content }) }));
102
+ };
103
+ const styles = StyleSheet.create((theme, rt) => ({
104
+ container: {
105
+ flex: 1,
106
+ gap: theme.components.dialog.gap,
107
+ },
108
+ header: {
109
+ flexDirection: 'row',
110
+ gap: theme.components.dialog.gap,
111
+ },
112
+ headerTextContent: {
113
+ flex: 1,
114
+ gap: theme.components.dialog.content.gap,
115
+ },
116
+ image: {
117
+ width: 260,
118
+ height: 260,
119
+ },
120
+ imageContainer: {
121
+ alignItems: 'center',
122
+ justifyContent: 'center',
123
+ flex: 1,
124
+ },
125
+ textContent: {
126
+ gap: theme.components.dialog.content.gap,
127
+ },
128
+ loadingContainer: {
129
+ flex: 1,
130
+ alignItems: 'center',
131
+ justifyContent: 'center',
132
+ minHeight: 140,
133
+ gap: theme.components.dialog.content.gap,
134
+ },
135
+ footer: {
136
+ gap: theme.components.dialog.action.gap,
137
+ },
138
+ fullscreenContainer: {
139
+ flex: 1,
140
+ ...(Platform.OS === 'ios' ? { backgroundColor: theme.components.overlay.backgroundColor } : {}),
141
+ },
142
+ fullscreenContent: {
143
+ flex: 1,
144
+ borderTopLeftRadius: theme.components.dialog.borderRadius,
145
+ borderTopRightRadius: theme.components.dialog.borderRadius,
146
+ backgroundColor: theme.color.surface.neutral.strong,
147
+ gap: theme.components.dialog.gap,
148
+ padding: theme.components.dialog.padding,
149
+ paddingBottom: theme.components.dialog.padding + rt.insets.bottom,
150
+ },
151
+ androidContainer: {
152
+ height: rt.insets.top + 18,
153
+ paddingLeft: theme.components.dialog.padding,
154
+ paddingRight: theme.components.dialog.padding,
155
+ justifyContent: 'flex-end',
156
+ },
157
+ pretendContent: {
158
+ borderTopLeftRadius: theme.components.dialog.borderRadius,
159
+ borderTopRightRadius: theme.components.dialog.borderRadius,
160
+ height: 12,
161
+ backgroundColor: theme.components.parts.modalStack.backgroundColorCardTop,
162
+ },
163
+ }));
164
+ export default Modal;
@@ -0,0 +1,2 @@
1
+ export { default as Modal } from './Modal';
2
+ export type { default as ModalProps } from './Modal.props';
@@ -0,0 +1 @@
1
+ export { default as Modal } from './Modal';
@@ -17,8 +17,8 @@ const styles = StyleSheet.create(theme => ({
17
17
  container: {
18
18
  justifyContent: 'center',
19
19
  alignItems: 'center',
20
- backgroundColor: theme.components.radio.unchecked.backgroundColor,
21
- borderColor: theme.components.radio.unchecked.borderColor,
20
+ backgroundColor: theme.color.surface.neutral.strong,
21
+ borderColor: theme.color.border.strong,
22
22
  borderWidth: theme.components.radio.borderWidth,
23
23
  borderRadius: theme.components.radio.borderRadius,
24
24
  width: 24,
@@ -18,14 +18,14 @@ const styles = StyleSheet.create(theme => ({
18
18
  gap: theme.components.radio.gap,
19
19
  padding: theme.components.radio.tile.padding,
20
20
  borderWidth: theme.components.radio.tile.borderWidth,
21
- borderColor: theme.components.radio.tile.borderColor,
21
+ borderColor: theme.color.border.subtle,
22
22
  borderRadius: theme.components.radio.tile.borderRadius,
23
- backgroundColor: theme.components.radio.tile.backgroundColor,
23
+ backgroundColor: theme.color.surface.neutral.strong,
24
24
  variants: {
25
25
  checked: {
26
26
  true: {
27
27
  borderWidth: theme.components.radio.tile.borderWidthSelected,
28
- borderColor: theme.components.radio.tile.borderColorSelected,
28
+ borderColor: theme.color.border.strong,
29
29
  margin: -theme.components.radio.tile.borderWidthSelected / 2,
30
30
  },
31
31
  },
@@ -17,8 +17,8 @@ const styles = StyleSheet.create(theme => ({
17
17
  container: {
18
18
  justifyContent: 'center',
19
19
  alignItems: 'center',
20
- backgroundColor: theme.components.radio.unchecked.backgroundColor,
21
- borderColor: theme.components.radio.unchecked.borderColor,
20
+ backgroundColor: theme.color.surface.neutral.strong,
21
+ borderColor: theme.color.border.strong,
22
22
  borderWidth: theme.components.radio.borderWidth,
23
23
  borderRadius: theme.components.radio.borderRadius,
24
24
  width: 24,
@@ -20,9 +20,9 @@ const styles = StyleSheet.create(theme => ({
20
20
  flexDirection: 'column',
21
21
  gap: theme.components.card.selectable.gap,
22
22
  borderRadius: theme.components.card.borderRadius,
23
- backgroundColor: theme.components.card.neutral.whiteBackgroundColor,
23
+ backgroundColor: theme.color.surface.neutral.strong,
24
24
  borderWidth: theme.components.card.selectable.borderWidth,
25
- borderColor: theme.components.card.selectable.borderColor,
25
+ borderColor: theme.color.border.subtle,
26
26
  alignSelf: 'stretch',
27
27
  padding: {
28
28
  base: theme.components.card.mobile.padding,
@@ -33,7 +33,7 @@ const styles = StyleSheet.create(theme => ({
33
33
  selected: {
34
34
  true: {
35
35
  borderWidth: theme.components.card.selectable.borderWidthSelected,
36
- borderColor: theme.components.card.selectable.borderColorSelected,
36
+ borderColor: theme.color.border.strong,
37
37
  margin: -theme.components.card.selectable.borderWidthSelected / 2,
38
38
  },
39
39
  },
@@ -0,0 +1,6 @@
1
+ import SectionHeaderProps from './SectionHeader.props';
2
+ declare const SectionHeader: {
3
+ ({ heading, helperText, children, style, linkHref, linkIcon, linkIconPosition, linkOnPress, linkShowIcon, linkTarget, linkText, ...props }: SectionHeaderProps): import("react/jsx-runtime").JSX.Element;
4
+ displayName: string;
5
+ };
6
+ export default SectionHeader;
@@ -0,0 +1,19 @@
1
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
+ import { View } from 'react-native';
3
+ import { StyleSheet } from 'react-native-unistyles';
4
+ import { Link } from '../Link';
5
+ import SectionHeaderTitle from './SectionHeaderHeading';
6
+ import SectionHeaderHelperText from './SectionHeaderHelperText';
7
+ import SectionHeaderTextContent from './SectionHeaderTextContent';
8
+ const SectionHeader = ({ heading, helperText, children, style, linkHref, linkIcon, linkIconPosition, linkOnPress, linkShowIcon, linkTarget, linkText, ...props }) => {
9
+ return (_jsx(View, { ...props, style: [styles.container, style], children: children ? (children) : (_jsxs(_Fragment, { children: [_jsxs(SectionHeaderTextContent, { children: [_jsx(SectionHeaderTitle, { children: heading }), !!helperText && _jsx(SectionHeaderHelperText, { children: helperText })] }), !!linkText && (_jsx(Link, { href: linkHref, onPress: linkOnPress, icon: linkIcon, showIcon: linkShowIcon, iconPosition: linkIconPosition, target: linkTarget, children: linkText }))] })) }));
10
+ };
11
+ SectionHeader.displayName = 'SectionHeader';
12
+ const styles = StyleSheet.create(theme => ({
13
+ container: {
14
+ flexDirection: 'row',
15
+ gap: theme.components.sectionHeader.gap,
16
+ alignItems: 'flex-start',
17
+ },
18
+ }));
19
+ export default SectionHeader;
@@ -1,33 +1,31 @@
1
1
  import { ComponentType, Ref } from 'react';
2
2
  import type { ViewProps, View } from 'react-native';
3
- interface ListHeadingBaseProps extends Omit<ViewProps, 'children'> {
3
+ interface SectionHeaderBaseProps extends Omit<ViewProps, 'children'> {
4
4
  ref?: Ref<View>;
5
5
  }
6
- export interface ListHeadingWithChildren extends ListHeadingBaseProps {
6
+ export interface SectionHeaderWithChildren extends SectionHeaderBaseProps {
7
7
  children: ViewProps['children'];
8
- text?: never;
8
+ heading?: never;
9
9
  helperText?: never;
10
10
  linkText?: never;
11
11
  linkHref?: never;
12
12
  linkOnPress?: never;
13
13
  linkTarget?: never;
14
- linkDisabled?: never;
15
14
  linkIcon?: never;
16
15
  linkIconPosition?: never;
17
16
  linkShowIcon?: never;
18
17
  }
19
- export interface ListHeadingWithoutChildren extends ListHeadingBaseProps {
18
+ export interface SectionHeaderWithoutChildren extends SectionHeaderBaseProps {
20
19
  children?: never;
21
- text: string;
20
+ heading: string;
22
21
  helperText?: string;
23
22
  linkText?: string;
24
23
  linkHref?: string;
25
24
  linkOnPress?: () => void;
26
25
  linkTarget?: '_blank' | '_self' | '_parent' | '_top';
27
- linkDisabled?: boolean;
28
26
  linkIcon?: ComponentType;
29
27
  linkIconPosition?: 'left' | 'right';
30
28
  linkShowIcon?: boolean;
31
29
  }
32
- type ListHeadingProps = ListHeadingWithChildren | ListHeadingWithoutChildren;
33
- export default ListHeadingProps;
30
+ type SectionHeaderProps = SectionHeaderWithChildren | SectionHeaderWithoutChildren;
31
+ export default SectionHeaderProps;
@@ -0,0 +1,6 @@
1
+ import HeadingProps from '../Heading/Heading.props';
2
+ declare const SectionHeaderHeading: {
3
+ ({ children, ...props }: HeadingProps): import("react/jsx-runtime").JSX.Element;
4
+ displayName: string;
5
+ };
6
+ export default SectionHeaderHeading;
@@ -0,0 +1,7 @@
1
+ import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { Heading } from '../Heading';
3
+ const SectionHeaderHeading = ({ children, ...props }) => {
4
+ return (_jsx(Heading, { size: "md", ...props, children: children }));
5
+ };
6
+ SectionHeaderHeading.displayName = 'SectionHeaderHeading';
7
+ export default SectionHeaderHeading;
@@ -0,0 +1,6 @@
1
+ import TextProps from '../BodyText/BodyText.props';
2
+ declare const SectionHeaderHelperText: {
3
+ ({ children, ...props }: TextProps): import("react/jsx-runtime").JSX.Element;
4
+ displayName: string;
5
+ };
6
+ export default SectionHeaderHelperText;
@@ -1,13 +1,13 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { StyleSheet } from 'react-native-unistyles';
3
- import { BodyText } from '../../BodyText';
4
- const ListHeadingHelperText = ({ children, ...props }) => {
3
+ import { BodyText } from '../BodyText';
4
+ const SectionHeaderHelperText = ({ children, ...props }) => {
5
5
  return (_jsx(BodyText, { size: "md", ...props, style: [styles.helperText, props.style], children: children }));
6
6
  };
7
- ListHeadingHelperText.displayName = 'ListHeadingHelperText';
7
+ SectionHeaderHelperText.displayName = 'SectionHeaderHelperText';
8
8
  const styles = StyleSheet.create(theme => ({
9
9
  helperText: {
10
- color: theme.components.text.colorSecondary,
10
+ color: theme.color.text.secondary,
11
11
  },
12
12
  }));
13
- export default ListHeadingHelperText;
13
+ export default SectionHeaderHelperText;
@@ -1,6 +1,6 @@
1
1
  import { type ViewProps } from 'react-native';
2
- declare const ListHeadingTextContent: {
2
+ declare const SectionHeaderTextContent: {
3
3
  ({ children, ...props }: ViewProps): import("react/jsx-runtime").JSX.Element;
4
4
  displayName: string;
5
5
  };
6
- export default ListHeadingTextContent;
6
+ export default SectionHeaderTextContent;
@@ -1,14 +1,14 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  import { View } from 'react-native';
3
3
  import { StyleSheet } from 'react-native-unistyles';
4
- const ListHeadingTextContent = ({ children, ...props }) => {
4
+ const SectionHeaderTextContent = ({ children, ...props }) => {
5
5
  return (_jsx(View, { ...props, style: [styles.container, props.style], children: children }));
6
6
  };
7
- ListHeadingTextContent.displayName = 'ListHeadingTextContent';
7
+ SectionHeaderTextContent.displayName = 'SectionHeaderTextContent';
8
8
  const styles = StyleSheet.create(theme => ({
9
9
  container: {
10
- gap: theme.components.list.heading.textContentGap,
10
+ gap: theme.components.sectionHeader.textContent.gap,
11
11
  flex: 1,
12
12
  },
13
13
  }));
14
- export default ListHeadingTextContent;
14
+ export default SectionHeaderTextContent;
@@ -0,0 +1,4 @@
1
+ export { default as SectionHeader } from './SectionHeader';
2
+ export { default as SectionHeaderHeading } from './SectionHeaderHeading';
3
+ export { default as SectionHeaderHelperText } from './SectionHeaderHelperText';
4
+ export { default as SectionHeaderTextContent } from './SectionHeaderTextContent';
@@ -0,0 +1,4 @@
1
+ export { default as SectionHeader } from './SectionHeader';
2
+ export { default as SectionHeaderHeading } from './SectionHeaderHeading';
3
+ export { default as SectionHeaderHelperText } from './SectionHeaderHelperText';
4
+ export { default as SectionHeaderTextContent } from './SectionHeaderTextContent';
@@ -86,9 +86,9 @@ const styles = StyleSheet.create(theme => ({
86
86
  selectContainer: {
87
87
  flexDirection: 'row',
88
88
  alignItems: 'center',
89
- backgroundColor: theme.components.select.backgroundColor,
89
+ backgroundColor: theme.color.surface.neutral.strong,
90
90
  borderWidth: theme.components.select.borderWidth,
91
- borderColor: theme.components.select.borderColor,
91
+ borderColor: theme.color.border.strong,
92
92
  borderRadius: theme.components.select.borderRadius,
93
93
  paddingHorizontal: theme.components.select.paddingHorizontal,
94
94
  paddingVertical: theme.components.select.paddingVertical,
@@ -101,16 +101,16 @@ const styles = StyleSheet.create(theme => ({
101
101
  },
102
102
  readonly: {
103
103
  true: {
104
- borderColor: theme.components.select.borderColorReadOnly,
104
+ borderColor: theme.color.border.subtle,
105
105
  },
106
106
  },
107
107
  validationStatus: {
108
108
  initial: {},
109
109
  valid: {
110
- borderColor: theme.components.select.borderColorValid,
110
+ borderColor: theme.color.feedback.positive.border,
111
111
  },
112
112
  invalid: {
113
- borderColor: theme.components.select.borderColorInvalid,
113
+ borderColor: theme.color.feedback.danger.border,
114
114
  },
115
115
  },
116
116
  },
@@ -133,27 +133,27 @@ const styles = StyleSheet.create(theme => ({
133
133
  pressedContainer: pressed => ({
134
134
  outlineWidth: pressed ? theme.components.select.borderWidth : 0,
135
135
  outlineStyle: 'solid',
136
- outlineColor: pressed ? theme.components.select.borderColor : 'transparent',
136
+ outlineColor: pressed ? theme.color.border.strong : 'transparent',
137
137
  variants: {
138
138
  validationStatus: {
139
139
  initial: {},
140
140
  valid: {
141
- outlineColor: theme.components.select.borderColorValid,
141
+ outlineColor: theme.color.feedback.positive.border,
142
142
  },
143
143
  invalid: {
144
- outlineColor: theme.components.select.borderColorInvalid,
144
+ outlineColor: theme.color.feedback.danger.border,
145
145
  },
146
146
  },
147
147
  },
148
148
  }),
149
149
  icon: {
150
- color: theme.components.icon.color,
150
+ color: theme.color.icon.primary,
151
151
  },
152
152
  placeholderText: {
153
153
  variants: {
154
154
  hasValue: {
155
155
  false: {
156
- color: theme.components.text.colorSecondary,
156
+ color: theme.color.text.secondary,
157
157
  },
158
158
  },
159
159
  },
@@ -1,10 +1,10 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { TickSmallIcon } from '@utilitywarehouse/hearth-react-native-icons';
2
3
  import { Pressable, View } from 'react-native';
3
- import { useSelectContext } from './Select.context';
4
- import { BodyText } from '../BodyText';
5
4
  import { StyleSheet } from 'react-native-unistyles';
6
- import { TickSmallIcon } from '@utilitywarehouse/hearth-react-native-icons';
5
+ import { BodyText } from '../BodyText';
7
6
  import { Icon } from '../Icon';
7
+ import { useSelectContext } from './Select.context';
8
8
  const SelectOption = ({ label, value, leadingIcon: LeftIcon, trailingIcon: RightIcon, selected, disabled, onPress, }) => {
9
9
  const { selectedValue, onValueChange, close } = useSelectContext();
10
10
  const isSelected = selected !== undefined ? selected : selectedValue === value;
@@ -47,15 +47,15 @@ const styles = StyleSheet.create(theme => ({
47
47
  },
48
48
  _web: {
49
49
  _hover: {
50
- backgroundColor: theme.components.select.dropdown.item.backgroundColorHover,
50
+ backgroundColor: theme.color.interactive.functional.surface.subtle.hover,
51
51
  },
52
52
  },
53
53
  },
54
54
  icon: {
55
- color: theme.components.select.dropdown.item.foregroundColor,
55
+ color: theme.color.interactive.functional.foreground.subtle,
56
56
  },
57
57
  pressed: {
58
- backgroundColor: theme.components.select.dropdown.item.backgroundColorActive,
58
+ backgroundColor: theme.color.interactive.functional.surface.subtle.active,
59
59
  },
60
60
  labelContainer: {
61
61
  flex: 1,
@@ -1,11 +1,11 @@
1
1
  import { jsx as _jsx } from "react/jsx-runtime";
2
2
  /* eslint-disable react-hooks/exhaustive-deps */
3
+ import { createSpinner } from '@gluestack-ui/spinner';
3
4
  import { useCallback, useEffect, useMemo } from 'react';
4
- import Animated, { useSharedValue, withTiming, useAnimatedProps, Easing, withSequence, withRepeat, useReducedMotion, } from 'react-native-reanimated';
5
+ import { View } from 'react-native';
6
+ import Animated, { Easing, useAnimatedProps, useReducedMotion, useSharedValue, withRepeat, withSequence, withTiming, } from 'react-native-reanimated';
5
7
  import { Circle, G, Svg } from 'react-native-svg';
6
- import { createSpinner } from '@gluestack-ui/spinner';
7
8
  import { StyleSheet } from 'react-native-unistyles';
8
- import { View } from 'react-native';
9
9
  import { useTheme } from '../../hooks';
10
10
  import { getFlattenedColorValue } from '../../utils';
11
11
  const AnimatedSvg = Animated.createAnimatedComponent(Svg);
@@ -7,7 +7,7 @@ import { StyleSheet } from 'react-native-unistyles';
7
7
  import { useTheme } from '../../hooks';
8
8
  import { Icon } from '../Icon';
9
9
  const CustomSwitch = ({ value = false, onValueChange, disabled = false, size = 'medium', ...accessibilityProps }) => {
10
- const { components } = useTheme();
10
+ const { components, color } = useTheme();
11
11
  const SWITCH_WIDTH = size === 'medium' ? components.switch.md.width : components.switch.sm.width;
12
12
  const THUMB_SIZE = size === 'medium' ? components.switch.md.circle.size : components.switch.sm.circle.size;
13
13
  const PADDING = components.switch.padding;
@@ -19,7 +19,10 @@ const CustomSwitch = ({ value = false, onValueChange, disabled = false, size = '
19
19
  transform: [{ translateX: offset.value }],
20
20
  }));
21
21
  const animatedSwitchBackgroundStyle = useAnimatedStyle(() => {
22
- const backgroundColor = interpolateColor(progress.value, [0, 1], [components.switch.unchecked.backgroundColor, components.switch.checked.backgroundColor]);
22
+ const backgroundColor = interpolateColor(progress.value, [0, 1], [
23
+ color.interactive.functional.surface.strong.default,
24
+ color.interactive.brand.surface.strong.default,
25
+ ]);
23
26
  return { backgroundColor };
24
27
  });
25
28
  // Icon animations
@@ -89,10 +92,10 @@ const styles = StyleSheet.create(theme => ({
89
92
  },
90
93
  value: {
91
94
  true: {
92
- backgroundColor: theme.components.switch.checked.backgroundColor,
95
+ backgroundColor: theme.color.interactive.brand.surface.strong.default,
93
96
  },
94
97
  false: {
95
- backgroundColor: theme.components.switch.unchecked.backgroundColor,
98
+ backgroundColor: theme.color.interactive.functional.surface.strong.default,
96
99
  },
97
100
  },
98
101
  disabled: {
@@ -103,7 +106,7 @@ const styles = StyleSheet.create(theme => ({
103
106
  },
104
107
  },
105
108
  thumb: {
106
- backgroundColor: theme.components.switch.circle.backgroundColor,
109
+ backgroundColor: theme.color.surface.neutral.strong,
107
110
  alignItems: 'center',
108
111
  justifyContent: 'center',
109
112
  variants: {
@@ -128,10 +131,10 @@ const styles = StyleSheet.create(theme => ({
128
131
  variants: {
129
132
  value: {
130
133
  true: {
131
- color: theme.components.switch.checked.iconColor,
134
+ color: theme.color.icon.primary,
132
135
  },
133
136
  false: {
134
- color: theme.components.switch.unchecked.iconColor,
137
+ color: theme.color.icon.primary,
135
138
  },
136
139
  },
137
140
  },
@@ -6,10 +6,9 @@ import Animated, { Easing, interpolateColor, useAnimatedStyle, useReducedMotion,
6
6
  import { StyleSheet } from 'react-native-unistyles';
7
7
  import { useTheme } from '../../hooks';
8
8
  import { Icon } from '../Icon';
9
- // @ts-expect-error - Animated.createAnimatedComponent is not typed correctly in the library
10
9
  const AnimatedView = Animated.createAnimatedComponent(View);
11
10
  const CustomSwitch = ({ value = false, onValueChange, disabled = false, size = 'medium', ...accessibilityProps }) => {
12
- const { components } = useTheme();
11
+ const { components, color } = useTheme();
13
12
  const SWITCH_WIDTH = size === 'medium' ? components.switch.md.width : components.switch.sm.width;
14
13
  const THUMB_SIZE = size === 'medium' ? components.switch.md.circle.size : components.switch.sm.circle.size;
15
14
  const PADDING = components.switch.padding;
@@ -21,7 +20,10 @@ const CustomSwitch = ({ value = false, onValueChange, disabled = false, size = '
21
20
  transform: [{ translateX: offset.value }],
22
21
  }));
23
22
  const animatedSwitchBackgroundStyle = useAnimatedStyle(() => {
24
- const backgroundColor = interpolateColor(progress.value, [0, 1], [components.switch.unchecked.backgroundColor, components.switch.checked.backgroundColor]);
23
+ const backgroundColor = interpolateColor(progress.value, [0, 1], [
24
+ color.interactive.functional.surface.strong.default,
25
+ color.interactive.brand.surface.strong.default,
26
+ ]);
25
27
  return { backgroundColor };
26
28
  });
27
29
  // Icon animations
@@ -91,10 +93,10 @@ const styles = StyleSheet.create(theme => ({
91
93
  },
92
94
  value: {
93
95
  true: {
94
- backgroundColor: theme.components.switch.checked.backgroundColor,
96
+ backgroundColor: theme.color.interactive.brand.surface.strong.default,
95
97
  },
96
98
  false: {
97
- backgroundColor: theme.components.switch.unchecked.backgroundColor,
99
+ backgroundColor: theme.color.interactive.functional.surface.strong.default,
98
100
  },
99
101
  },
100
102
  disabled: {
@@ -105,7 +107,7 @@ const styles = StyleSheet.create(theme => ({
105
107
  },
106
108
  },
107
109
  thumb: {
108
- backgroundColor: theme.components.switch.circle.backgroundColor,
110
+ backgroundColor: theme.color.surface.neutral.strong,
109
111
  alignItems: 'center',
110
112
  justifyContent: 'center',
111
113
  variants: {
@@ -130,10 +132,10 @@ const styles = StyleSheet.create(theme => ({
130
132
  variants: {
131
133
  value: {
132
134
  true: {
133
- color: theme.components.switch.checked.iconColor,
135
+ color: theme.color.icon.primary,
134
136
  },
135
137
  false: {
136
- color: theme.components.switch.unchecked.iconColor,
138
+ color: theme.color.icon.primary,
137
139
  },
138
140
  },
139
141
  },