@utilitywarehouse/hearth-react-native 0.34.5 → 0.35.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 (1036) hide show
  1. package/LICENSE +194 -0
  2. package/README.md +52 -0
  3. package/SKILL.md +361 -0
  4. package/build/components/Alert/AlertIcon.js +4 -4
  5. package/build/components/Badge/BadgeIcon.js +4 -4
  6. package/build/components/Card/CardAction/CardActionIcon.js +2 -2
  7. package/build/components/Card/CardAction/CardActionTrailingIcon.js +2 -2
  8. package/build/components/Carousel/CarouselControlItem.js +2 -2
  9. package/build/components/Carousel/CarouselControls.js +2 -2
  10. package/build/components/Checkbox/CheckboxGroup.d.ts +1 -1
  11. package/build/components/Checkbox/CheckboxGroup.js +5 -2
  12. package/build/components/Checkbox/CheckboxGroup.props.d.ts +4 -0
  13. package/build/components/Combobox/Combobox.js +2 -9
  14. package/build/components/Combobox/Combobox.utils.d.ts +2 -0
  15. package/build/components/Combobox/Combobox.utils.js +8 -0
  16. package/build/components/Combobox/Combobox.utils.test.d.ts +1 -0
  17. package/build/components/Combobox/Combobox.utils.test.js +27 -0
  18. package/build/components/DatePicker/DatePickerHeader/DatePickerNextButton.js +2 -2
  19. package/build/components/DatePicker/DatePickerHeader/DatePickerPrevButton.js +2 -2
  20. package/build/components/DatePicker/DatePickerHeader/DatePickerSelectors.js +2 -2
  21. package/build/components/DatePicker/utils.test.d.ts +1 -0
  22. package/build/components/DatePicker/utils.test.js +191 -0
  23. package/build/components/DatePickerInput/DatePickerInput.js +1 -8
  24. package/build/components/DatePickerInput/DatePickerInput.utils.d.ts +2 -0
  25. package/build/components/DatePickerInput/DatePickerInput.utils.js +8 -0
  26. package/build/components/DatePickerInput/DatePickerInput.utils.test.d.ts +1 -0
  27. package/build/components/DatePickerInput/DatePickerInput.utils.test.js +22 -0
  28. package/build/components/ExpandableCard/ExpandableCardIcon.js +2 -2
  29. package/build/components/FormField/FormField.d.ts +5 -5
  30. package/build/components/Helper/HelperIcon.js +2 -2
  31. package/build/components/IconButton/IconButtonIcon.js +4 -4
  32. package/build/components/List/ListAction/ListActionTrailingIcon.js +2 -2
  33. package/build/components/List/ListItem/ListItemIcon.js +2 -2
  34. package/build/components/PillGroup/PillGroup.d.ts +1 -1
  35. package/build/components/PillGroup/PillGroup.js +4 -2
  36. package/build/components/PillGroup/PillGroup.props.d.ts +10 -0
  37. package/build/components/Radio/RadioGroup.d.ts +1 -1
  38. package/build/components/Radio/RadioGroup.js +5 -2
  39. package/build/components/Radio/RadioGroup.props.d.ts +4 -0
  40. package/build/components/RadioCard/RadioCard.d.ts +5 -24
  41. package/build/components/RadioCard/RadioCard.js +5 -1
  42. package/build/components/RadioCard/RadioCardGroup.props.d.ts +4 -0
  43. package/build/components/Rating/Rating.d.ts +1 -1
  44. package/build/components/Rating/Rating.js +3 -2
  45. package/build/components/Rating/Rating.props.d.ts +5 -0
  46. package/build/components/SegmentedControl/SegmentedControl.js +2 -2
  47. package/build/components/Select/Select.js +2 -3
  48. package/build/components/Select/Select.utils.d.ts +2 -0
  49. package/build/components/Select/Select.utils.js +1 -0
  50. package/build/components/Select/Select.utils.test.d.ts +1 -0
  51. package/build/components/Select/Select.utils.test.js +21 -0
  52. package/build/components/StepperInput/StepperInput.js +1 -62
  53. package/build/components/StepperInput/StepperInput.utils.d.ts +6 -0
  54. package/build/components/StepperInput/StepperInput.utils.js +62 -0
  55. package/build/components/StepperInput/StepperInput.utils.test.d.ts +1 -0
  56. package/build/components/StepperInput/StepperInput.utils.test.js +99 -0
  57. package/build/components/Switch/Switch.js +10 -8
  58. package/build/components/Switch/Switch.props.d.ts +11 -1
  59. package/build/components/Switch/Switch.web.js +10 -8
  60. package/build/components/TimePickerInput/TimePickerInput.js +1 -8
  61. package/build/components/TimePickerInput/TimePickerInput.utils.d.ts +3 -0
  62. package/build/components/TimePickerInput/TimePickerInput.utils.js +8 -0
  63. package/build/components/TimePickerInput/TimePickerInput.utils.test.d.ts +1 -0
  64. package/build/components/TimePickerInput/TimePickerInput.utils.test.js +20 -0
  65. package/build/components/Toast/ToastItem.js +2 -2
  66. package/build/components/ToggleButton/ToggleButtonRoot.js +1 -1
  67. package/build/components/ToggleButtonCard/ToggleButtonCard.d.ts +5 -1
  68. package/build/components/ToggleButtonCard/ToggleButtonCard.js +5 -1
  69. package/build/components/ToggleButtonCard/ToggleButtonCardGroup.props.d.ts +4 -0
  70. package/build/tokens/components/dark/chip.d.ts +14 -0
  71. package/build/tokens/components/dark/chip.js +13 -0
  72. package/build/tokens/components/dark/icon.d.ts +26 -0
  73. package/build/tokens/components/dark/icon.js +25 -0
  74. package/build/tokens/components/dark/index.d.ts +2 -0
  75. package/build/tokens/components/dark/index.js +2 -0
  76. package/build/tokens/components/light/chip.d.ts +14 -0
  77. package/build/tokens/components/light/chip.js +13 -0
  78. package/build/tokens/components/light/icon.d.ts +26 -0
  79. package/build/tokens/components/light/icon.js +25 -0
  80. package/build/tokens/components/light/index.d.ts +2 -0
  81. package/build/tokens/components/light/index.js +2 -0
  82. package/build/tokens/semantic-dark.d.ts +4 -4
  83. package/build/tokens/semantic-dark.js +4 -4
  84. package/build/tokens/semantic-light.d.ts +4 -4
  85. package/build/tokens/semantic-light.js +4 -4
  86. package/build/utils/formatThousands.test.d.ts +1 -0
  87. package/build/utils/formatThousands.test.js +31 -0
  88. package/build/utils/getFlattenedColorValue.test.d.ts +1 -0
  89. package/build/utils/getFlattenedColorValue.test.js +21 -0
  90. package/build/utils/getInitials.test.d.ts +1 -0
  91. package/build/utils/getInitials.test.js +23 -0
  92. package/build/utils/hexWithOpacity.test.d.ts +1 -0
  93. package/build/utils/hexWithOpacity.test.js +22 -0
  94. package/build/utils/isEqual.test.d.ts +1 -0
  95. package/build/utils/isEqual.test.js +44 -0
  96. package/build/utils/themeValueHelpers.test.d.ts +1 -0
  97. package/build/utils/themeValueHelpers.test.js +82 -0
  98. package/package.json +25 -7
  99. package/{src/components/Accordion/Accordion.docs.mdx → public/llms/components/accordion.md} +62 -97
  100. package/{src/components/Alert/Alert.docs.mdx → public/llms/components/alert.md} +46 -49
  101. package/{src/components/Avatar/Avatar.docs.mdx → public/llms/components/avatar.md} +18 -50
  102. package/{src/components/Badge/Badge.docs.mdx → public/llms/components/badge.md} +56 -38
  103. package/{src/components/Banner/Banner.docs.mdx → public/llms/components/banner.md} +487 -40
  104. package/{src/components/BodyText/BodyText.docs.mdx → public/llms/components/body-text.md} +32 -25
  105. package/{src/components/BottomSheet/BottomSheet.docs.mdx → public/llms/components/bottom-sheet.md} +25 -33
  106. package/{src/components/Box/Box.docs.mdx → public/llms/components/box.md} +7 -21
  107. package/{src/components/Button/Button.docs.mdx → public/llms/components/button.md} +118 -109
  108. package/{src/components/Card/Card.docs.mdx → public/llms/components/card.md} +281 -47
  109. package/{src/components/Carousel/Carousel.docs.mdx → public/llms/components/carousel.md} +14 -92
  110. package/public/llms/components/center.md +24 -0
  111. package/{src/components/Checkbox/Checkbox.docs.mdx → public/llms/components/checkbox.md} +114 -155
  112. package/{src/components/Combobox/Combobox.docs.mdx → public/llms/components/combobox.md} +53 -47
  113. package/{src/components/Container/Container.docs.mdx → public/llms/components/container.md} +59 -26
  114. package/{src/components/CurrencyInput/CurrencyInput.docs.mdx → public/llms/components/currency-input.md} +48 -44
  115. package/{src/components/DateInput/DateInput.docs.mdx → public/llms/components/date-input.md} +162 -29
  116. package/{src/components/DatePickerInput/DatePickerInput.docs.mdx → public/llms/components/date-picker-input.md} +11 -51
  117. package/{src/components/DatePicker/DatePicker.docs.mdx → public/llms/components/date-picker.md} +49 -26
  118. package/{src/components/DescriptionList/DescriptionList.docs.mdx → public/llms/components/description-list.md} +64 -31
  119. package/{src/components/DetailText/DetailText.docs.mdx → public/llms/components/detail-text.md} +47 -25
  120. package/{src/components/Divider/Divider.docs.mdx → public/llms/components/divider.md} +10 -22
  121. package/{src/components/ExpandableCard/ExpandableCard.docs.mdx → public/llms/components/expandable-card.md} +213 -28
  122. package/{src/components/Expandable/Expandable.docs.mdx → public/llms/components/expandable.md} +165 -21
  123. package/{src/components/Flex/Flex.docs.mdx → public/llms/components/flex.md} +18 -24
  124. package/{src/components/FormField/FormField.docs.mdx → public/llms/components/form-field.md} +57 -109
  125. package/{src/components/Grid/Grid.docs.mdx → public/llms/components/grid.md} +15 -79
  126. package/{src/components/Heading/Heading.docs.mdx → public/llms/components/heading.md} +32 -21
  127. package/{src/components/HighlightBanner/HighlightBanner.docs.mdx → public/llms/components/highlight-banner.md} +204 -41
  128. package/{src/components/HTMLElements/Lists.docs.mdx → public/llms/components/html-elements/lists.md} +20 -43
  129. package/{src/components/IconButton/IconButton.docs.mdx → public/llms/components/icon-button.md} +134 -32
  130. package/{src/components/IconContainer/IconContainer.docs.mdx → public/llms/components/icon-container.md} +44 -35
  131. package/{src/components/Icon/Icon.docs.mdx → public/llms/components/icon.md} +6 -30
  132. package/public/llms/components/indicator-icon-button.md +138 -0
  133. package/{src/components/InlineLink/InlineLink.docs.mdx → public/llms/components/inline-link.md} +7 -26
  134. package/{src/components/Input/Input.docs.mdx → public/llms/components/input.md} +73 -75
  135. package/{src/components/Link/Link.docs.mdx → public/llms/components/link.md} +5 -20
  136. package/{src/components/List/List.docs.mdx → public/llms/components/list.md} +192 -127
  137. package/{src/components/Menu/Menu.docs.mdx → public/llms/components/menu.md} +52 -29
  138. package/{src/components/Modal/Modal.docs.mdx → public/llms/components/modal.md} +119 -50
  139. package/{src/components/NavModal/NavModal.docs.mdx → public/llms/components/nav-modal.md} +65 -24
  140. package/{src/components/Pagination/Pagination.docs.mdx → public/llms/components/pagination.md} +38 -27
  141. package/public/llms/components/pill-group.md +162 -0
  142. package/{src/components/ProgressBar/ProgressBar.docs.mdx → public/llms/components/progress-bar.md} +42 -28
  143. package/public/llms/components/progress-stepper.md +144 -0
  144. package/{src/components/RadioCard/RadioCard.docs.mdx → public/llms/components/radio-card.md} +19 -50
  145. package/{src/components/Radio/Radio.docs.mdx → public/llms/components/radio.md} +146 -132
  146. package/public/llms/components/rating.md +147 -0
  147. package/{src/components/Roundel/Roundel.docs.mdx → public/llms/components/roundel.md} +19 -19
  148. package/{src/components/SectionHeader/Sectionheader.docs.mdx → public/llms/components/section-header.md} +46 -19
  149. package/{src/components/SegmentedControl/SegmentedControl.docs.mdx → public/llms/components/segmented-control.md} +40 -28
  150. package/{src/components/Select/Select.docs.mdx → public/llms/components/select.md} +70 -57
  151. package/{src/components/Skeleton/Skeleton.docs.mdx → public/llms/components/skeleton.md} +5 -9
  152. package/{src/components/Spinner/Spinner.docs.mdx → public/llms/components/spinner.md} +22 -22
  153. package/{src/components/StepperInput/StepperInput.docs.mdx → public/llms/components/stepper-input.md} +102 -29
  154. package/{src/components/Switch/Switch.docs.mdx → public/llms/components/switch.md} +56 -60
  155. package/public/llms/components/table.md +408 -0
  156. package/{src/components/Tabs/Tabs.docs.mdx → public/llms/components/tabs.md} +176 -41
  157. package/{src/components/Textarea/Textarea.docs.mdx → public/llms/components/textarea.md} +7 -49
  158. package/{src/components/ThemedImage/ThemedImage.docs.mdx → public/llms/components/themed-image.md} +79 -14
  159. package/{src/components/TimePickerInput/TimePickerInput.docs.mdx → public/llms/components/time-picker-input.md} +10 -48
  160. package/{src/components/TimePicker/TimePicker.docs.mdx → public/llms/components/time-picker.md} +17 -20
  161. package/{src/components/Timeline/Timeline.docs.mdx → public/llms/components/timeline.md} +30 -73
  162. package/{src/components/Toast/Toast.docs.mdx → public/llms/components/toast.md} +50 -31
  163. package/{src/components/ToggleButtonCard/ToggleButtonCard.docs.mdx → public/llms/components/toggle-button-card.md} +34 -56
  164. package/{src/components/VerificationInput/VerificationInput.docs.mdx → public/llms/components/verification-input.md} +106 -21
  165. package/{docs/adding-shadows.mdx → public/llms/docs/adding-shadows.md} +2 -29
  166. package/public/llms/docs/ai-tooling.md +188 -0
  167. package/public/llms/docs/all-components.md +3 -0
  168. package/{docs/dark-mode-best-practice.mdx → public/llms/docs/dark-mode-best-practice.md} +10 -139
  169. package/{docs/getting-started.mdx → public/llms/docs/getting-started.md} +2 -13
  170. package/{docs/hooks.mdx → public/llms/docs/hooks.md} +16 -13
  171. package/{docs/introduction.mdx → public/llms/docs/introduction.md} +6 -12
  172. package/{docs/layout-components.docs.mdx → public/llms/docs/layout-components.md} +59 -26
  173. package/{docs/styling.mdx → public/llms/docs/styling.md} +21 -17
  174. package/{docs/theme-tokens.mdx → public/llms/docs/theme-tokens.md} +23 -18
  175. package/public/llms.txt +128 -0
  176. package/scripts/init-ai.js +157 -0
  177. package/.storybook/main.ts +0 -81
  178. package/.storybook/manager.ts +0 -11
  179. package/.storybook/preview.tsx +0 -174
  180. package/.storybook/prism-setup.ts +0 -104
  181. package/.storybook/vitest.setup.ts +0 -31
  182. package/.turbo/turbo-build.log +0 -1
  183. package/CHANGELOG.md +0 -2083
  184. package/CLAUDE.md +0 -109
  185. package/chromatic.config.json +0 -6
  186. package/docs/all-components.mdx +0 -19
  187. package/docs/assets/bank-logo.png +0 -0
  188. package/docs/assets/bank-logo1.png +0 -0
  189. package/docs/assets/modal-android.mp4 +0 -0
  190. package/docs/assets/modal-ios.mp4 +0 -0
  191. package/docs/assets/pigs.png +0 -0
  192. package/docs/assets/toast-ios.MP4 +0 -0
  193. package/docs/changelog.mdx +0 -2100
  194. package/docs/components/AdvancedInputExample.tsx +0 -39
  195. package/docs/components/AllComponents.web.tsx +0 -1005
  196. package/docs/components/BackToTopButton.tsx +0 -58
  197. package/docs/components/BadgeList.tsx +0 -30
  198. package/docs/components/DocComponentWrap.tsx +0 -7
  199. package/docs/components/InputShadowExample.tsx +0 -19
  200. package/docs/components/NextPrevPage.tsx +0 -54
  201. package/docs/components/SwitchExample.tsx +0 -13
  202. package/docs/components/SwitchList.tsx +0 -52
  203. package/docs/components/UsageWrap.tsx +0 -21
  204. package/docs/components/VariantTitle.tsx +0 -40
  205. package/docs/components/ViewFigmaButton.tsx +0 -43
  206. package/docs/components/ViewWrap.tsx +0 -32
  207. package/docs/components/index.ts +0 -13
  208. package/docs/heplers/addReactNativePrefix.ts +0 -8
  209. package/docs/heplers/index.ts +0 -1
  210. package/docs/llm-docs/unistyles-llms-full.txt +0 -9135
  211. package/docs/llm-docs/unistyles-llms-small.txt +0 -247
  212. package/eslint.config.js +0 -35
  213. package/figma.config.json +0 -11
  214. package/scripts/copyChangelog.js +0 -57
  215. package/scripts/copyTokens.js +0 -96
  216. package/src/components/Accordion/Accordion.context.tsx +0 -13
  217. package/src/components/Accordion/Accordion.figma.tsx +0 -21
  218. package/src/components/Accordion/Accordion.props.ts +0 -43
  219. package/src/components/Accordion/Accordion.stories.tsx +0 -118
  220. package/src/components/Accordion/Accordion.tsx +0 -127
  221. package/src/components/Accordion/AccordionContent.tsx +0 -44
  222. package/src/components/Accordion/AccordionContentText.tsx +0 -10
  223. package/src/components/Accordion/AccordionHeader.tsx +0 -18
  224. package/src/components/Accordion/AccordionIcon.tsx +0 -11
  225. package/src/components/Accordion/AccordionItem.context.tsx +0 -11
  226. package/src/components/Accordion/AccordionItem.figma.tsx +0 -27
  227. package/src/components/Accordion/AccordionItem.props.ts +0 -20
  228. package/src/components/Accordion/AccordionItemRoot.tsx +0 -27
  229. package/src/components/Accordion/AccordionRoot.tsx +0 -35
  230. package/src/components/Accordion/AccordionTitleText.tsx +0 -19
  231. package/src/components/Accordion/AccordionTrigger.tsx +0 -54
  232. package/src/components/Accordion/index.ts +0 -10
  233. package/src/components/Alert/Alert.context.ts +0 -8
  234. package/src/components/Alert/Alert.figma.tsx +0 -47
  235. package/src/components/Alert/Alert.props.ts +0 -67
  236. package/src/components/Alert/Alert.stories.tsx +0 -87
  237. package/src/components/Alert/Alert.tsx +0 -109
  238. package/src/components/Alert/AlertCloseButton.tsx +0 -54
  239. package/src/components/Alert/AlertContent.tsx +0 -22
  240. package/src/components/Alert/AlertIcon.tsx +0 -54
  241. package/src/components/Alert/AlertIconButton.tsx +0 -49
  242. package/src/components/Alert/AlertLink.tsx +0 -60
  243. package/src/components/Alert/AlertText.tsx +0 -39
  244. package/src/components/Alert/AlertTitle.tsx +0 -39
  245. package/src/components/Alert/index.ts +0 -8
  246. package/src/components/Avatar/Avatar.figma.tsx +0 -23
  247. package/src/components/Avatar/Avatar.props.ts +0 -31
  248. package/src/components/Avatar/Avatar.stories.tsx +0 -76
  249. package/src/components/Avatar/Avatar.tsx +0 -134
  250. package/src/components/Avatar/index.ts +0 -2
  251. package/src/components/Badge/Badge.context.ts +0 -11
  252. package/src/components/Badge/Badge.figma.tsx +0 -47
  253. package/src/components/Badge/Badge.props.ts +0 -26
  254. package/src/components/Badge/Badge.stories.tsx +0 -184
  255. package/src/components/Badge/Badge.tsx +0 -300
  256. package/src/components/Badge/BadgeIcon.tsx +0 -158
  257. package/src/components/Badge/BadgeText.tsx +0 -166
  258. package/src/components/Badge/index.ts +0 -3
  259. package/src/components/Banner/Banner.context.ts +0 -11
  260. package/src/components/Banner/Banner.figma.tsx +0 -23
  261. package/src/components/Banner/Banner.props.ts +0 -99
  262. package/src/components/Banner/Banner.stories.tsx +0 -650
  263. package/src/components/Banner/Banner.tsx +0 -337
  264. package/src/components/Banner/BannerIllustration.figma.tsx +0 -30
  265. package/src/components/Banner/BannerIllustration.tsx +0 -58
  266. package/src/components/Banner/BannerImage.tsx +0 -63
  267. package/src/components/Banner/index.ts +0 -4
  268. package/src/components/BodyText/BodyText.props.ts +0 -10
  269. package/src/components/BodyText/BodyText.stories.tsx +0 -147
  270. package/src/components/BodyText/BodyText.tsx +0 -144
  271. package/src/components/BodyText/index.ts +0 -2
  272. package/src/components/BottomSheet/BottomSheet.context.ts +0 -15
  273. package/src/components/BottomSheet/BottomSheet.props.ts +0 -49
  274. package/src/components/BottomSheet/BottomSheet.stories.tsx +0 -335
  275. package/src/components/BottomSheet/BottomSheet.tsx +0 -71
  276. package/src/components/BottomSheet/BottomSheetBackdrop.tsx +0 -29
  277. package/src/components/BottomSheet/BottomSheetFlatList.tsx +0 -65
  278. package/src/components/BottomSheet/BottomSheetHandle.tsx +0 -48
  279. package/src/components/BottomSheet/BottomSheetModal.figma.tsx +0 -20
  280. package/src/components/BottomSheet/BottomSheetModal.tsx +0 -70
  281. package/src/components/BottomSheet/BottomSheetModalProvider.tsx +0 -33
  282. package/src/components/BottomSheet/BottomSheetScrollView.tsx +0 -74
  283. package/src/components/BottomSheet/BottomSheetView.tsx +0 -67
  284. package/src/components/BottomSheet/index.ts +0 -20
  285. package/src/components/BottomSheet/useBottomSheetLogic.tsx +0 -53
  286. package/src/components/Box/Box.props.ts +0 -13
  287. package/src/components/Box/Box.stories.tsx +0 -70
  288. package/src/components/Box/Box.tsx +0 -107
  289. package/src/components/Box/index.ts +0 -1
  290. package/src/components/Button/Button.context.ts +0 -13
  291. package/src/components/Button/Button.figma.tsx +0 -132
  292. package/src/components/Button/Button.props.tsx +0 -84
  293. package/src/components/Button/Button.stories.tsx +0 -293
  294. package/src/components/Button/Button.tsx +0 -83
  295. package/src/components/Button/ButtonGroup.context.ts +0 -5
  296. package/src/components/Button/ButtonGroup.tsx +0 -25
  297. package/src/components/Button/ButtonGroupRoot.tsx +0 -85
  298. package/src/components/Button/ButtonIcon.tsx +0 -141
  299. package/src/components/Button/ButtonRoot.tsx +0 -451
  300. package/src/components/Button/ButtonSpinner.tsx +0 -60
  301. package/src/components/Button/ButtonText.tsx +0 -134
  302. package/src/components/Button/index.ts +0 -3
  303. package/src/components/Card/Card.context.ts +0 -19
  304. package/src/components/Card/Card.figma.tsx +0 -29
  305. package/src/components/Card/Card.props.ts +0 -34
  306. package/src/components/Card/Card.stories.tsx +0 -370
  307. package/src/components/Card/Card.tsx +0 -10
  308. package/src/components/Card/CardAction/CardAction.context.ts +0 -22
  309. package/src/components/Card/CardAction/CardAction.figma.tsx +0 -44
  310. package/src/components/Card/CardAction/CardAction.props.ts +0 -86
  311. package/src/components/Card/CardAction/CardAction.stories.tsx +0 -412
  312. package/src/components/Card/CardAction/CardAction.tsx +0 -10
  313. package/src/components/Card/CardAction/CardActionContent.tsx +0 -20
  314. package/src/components/Card/CardAction/CardActionHelperText.tsx +0 -21
  315. package/src/components/Card/CardAction/CardActionIcon.tsx +0 -32
  316. package/src/components/Card/CardAction/CardActionLeadingContent.tsx +0 -9
  317. package/src/components/Card/CardAction/CardActionRoot.tsx +0 -270
  318. package/src/components/Card/CardAction/CardActionText.tsx +0 -17
  319. package/src/components/Card/CardAction/CardActionTrailingContent.tsx +0 -9
  320. package/src/components/Card/CardAction/CardActionTrailingIcon.tsx +0 -32
  321. package/src/components/Card/CardAction/index.ts +0 -10
  322. package/src/components/Card/CardActions.context.ts +0 -12
  323. package/src/components/Card/CardActions.tsx +0 -40
  324. package/src/components/Card/CardContent.tsx +0 -40
  325. package/src/components/Card/CardPressHandler.context.ts +0 -12
  326. package/src/components/Card/CardPressHandler.tsx +0 -20
  327. package/src/components/Card/CardRoot.tsx +0 -357
  328. package/src/components/Card/helpers.tsx +0 -195
  329. package/src/components/Card/index.ts +0 -7
  330. package/src/components/Carousel/Carousel.context.tsx +0 -8
  331. package/src/components/Carousel/Carousel.figma.tsx +0 -22
  332. package/src/components/Carousel/Carousel.props.ts +0 -89
  333. package/src/components/Carousel/Carousel.stories.tsx +0 -317
  334. package/src/components/Carousel/Carousel.tsx +0 -448
  335. package/src/components/Carousel/CarouselControlItem.tsx +0 -87
  336. package/src/components/Carousel/CarouselControls.tsx +0 -150
  337. package/src/components/Carousel/CarouselItem.tsx +0 -68
  338. package/src/components/Carousel/index.ts +0 -6
  339. package/src/components/Center/Center.docs.mdx +0 -42
  340. package/src/components/Center/Center.stories.tsx +0 -30
  341. package/src/components/Center/Center.tsx +0 -12
  342. package/src/components/Center/index.ts +0 -1
  343. package/src/components/Checkbox/Checkbox.context.ts +0 -9
  344. package/src/components/Checkbox/Checkbox.figma.tsx +0 -26
  345. package/src/components/Checkbox/Checkbox.props.ts +0 -47
  346. package/src/components/Checkbox/Checkbox.stories.tsx +0 -217
  347. package/src/components/Checkbox/Checkbox.tsx +0 -110
  348. package/src/components/Checkbox/CheckboxGroup.context.ts +0 -10
  349. package/src/components/Checkbox/CheckboxGroup.figma.tsx +0 -73
  350. package/src/components/Checkbox/CheckboxGroup.props.ts +0 -23
  351. package/src/components/Checkbox/CheckboxGroup.stories.tsx +0 -100
  352. package/src/components/Checkbox/CheckboxGroup.tsx +0 -114
  353. package/src/components/Checkbox/CheckboxGroupRoot.tsx +0 -36
  354. package/src/components/Checkbox/CheckboxGroupTextContent.tsx +0 -14
  355. package/src/components/Checkbox/CheckboxIcon.tsx +0 -30
  356. package/src/components/Checkbox/CheckboxImage.figma.tsx +0 -27
  357. package/src/components/Checkbox/CheckboxImage.tsx +0 -14
  358. package/src/components/Checkbox/CheckboxIndicator.tsx +0 -63
  359. package/src/components/Checkbox/CheckboxLabel.tsx +0 -14
  360. package/src/components/Checkbox/CheckboxRoot.tsx +0 -64
  361. package/src/components/Checkbox/CheckboxTextContent.tsx +0 -21
  362. package/src/components/Checkbox/CheckboxTileRoot.figma.tsx +0 -29
  363. package/src/components/Checkbox/CheckboxTileRoot.tsx +0 -50
  364. package/src/components/Checkbox/index.ts +0 -12
  365. package/src/components/Combobox/Combobox.context.ts +0 -26
  366. package/src/components/Combobox/Combobox.figma.tsx +0 -60
  367. package/src/components/Combobox/Combobox.props.ts +0 -187
  368. package/src/components/Combobox/Combobox.stories.tsx +0 -233
  369. package/src/components/Combobox/Combobox.tsx +0 -446
  370. package/src/components/Combobox/ComboboxOption.tsx +0 -100
  371. package/src/components/Combobox/index.ts +0 -9
  372. package/src/components/Container/Container.props.ts +0 -32
  373. package/src/components/Container/Container.stories.tsx +0 -290
  374. package/src/components/Container/Container.tsx +0 -52
  375. package/src/components/Container/index.tsx +0 -2
  376. package/src/components/CurrencyInput/CurrencyInput.figma.tsx +0 -72
  377. package/src/components/CurrencyInput/CurrencyInput.props.ts +0 -27
  378. package/src/components/CurrencyInput/CurrencyInput.stories.tsx +0 -147
  379. package/src/components/CurrencyInput/CurrencyInput.tsx +0 -101
  380. package/src/components/CurrencyInput/index.ts +0 -1
  381. package/src/components/DateInput/DateInput.figma.tsx +0 -88
  382. package/src/components/DateInput/DateInput.props.ts +0 -125
  383. package/src/components/DateInput/DateInput.stories.tsx +0 -314
  384. package/src/components/DateInput/DateInput.tsx +0 -135
  385. package/src/components/DateInput/DateInputSegment.tsx +0 -69
  386. package/src/components/DateInput/index.ts +0 -2
  387. package/src/components/DatePicker/DatePicker.context.ts +0 -23
  388. package/src/components/DatePicker/DatePicker.figma.tsx +0 -47
  389. package/src/components/DatePicker/DatePicker.props.ts +0 -139
  390. package/src/components/DatePicker/DatePicker.stories.tsx +0 -98
  391. package/src/components/DatePicker/DatePicker.tsx +0 -673
  392. package/src/components/DatePicker/DatePickerCalendar.tsx +0 -58
  393. package/src/components/DatePicker/DatePickerDay.tsx +0 -302
  394. package/src/components/DatePicker/DatePickerDays.tsx +0 -241
  395. package/src/components/DatePicker/DatePickerFooter.tsx +0 -35
  396. package/src/components/DatePicker/DatePickerHeader/DatePickerHeader.props.ts +0 -8
  397. package/src/components/DatePicker/DatePickerHeader/DatePickerMonthButton.tsx +0 -29
  398. package/src/components/DatePicker/DatePickerHeader/DatePickerNextButton.tsx +0 -46
  399. package/src/components/DatePicker/DatePickerHeader/DatePickerPrevButton.tsx +0 -46
  400. package/src/components/DatePicker/DatePickerHeader/DatePickerSelectors.tsx +0 -96
  401. package/src/components/DatePicker/DatePickerHeader/DatePickerTimeButton.tsx +0 -48
  402. package/src/components/DatePicker/DatePickerHeader/DatePickerYearButton.tsx +0 -50
  403. package/src/components/DatePicker/DatePickerHeader/index.tsx +0 -64
  404. package/src/components/DatePicker/DatePickerMonths.tsx +0 -101
  405. package/src/components/DatePicker/DatePickerWeekdays.tsx +0 -49
  406. package/src/components/DatePicker/DatePickerYears.tsx +0 -119
  407. package/src/components/DatePicker/enums.ts +0 -14
  408. package/src/components/DatePicker/index.ts +0 -15
  409. package/src/components/DatePicker/polyfill.ts +0 -21
  410. package/src/components/DatePicker/utils.ts +0 -549
  411. package/src/components/DatePickerInput/DatePickerInput.figma.tsx +0 -34
  412. package/src/components/DatePickerInput/DatePickerInput.props.ts +0 -56
  413. package/src/components/DatePickerInput/DatePickerInput.stories.tsx +0 -178
  414. package/src/components/DatePickerInput/DatePickerInput.tsx +0 -277
  415. package/src/components/DatePickerInput/DatePickerInputDoneButton.tsx +0 -42
  416. package/src/components/DatePickerInput/DatePickerInputDoneButton.web.tsx +0 -7
  417. package/src/components/DatePickerInput/index.ts +0 -2
  418. package/src/components/DescriptionList/DescriptionList.context.ts +0 -18
  419. package/src/components/DescriptionList/DescriptionList.figma.tsx +0 -47
  420. package/src/components/DescriptionList/DescriptionList.props.ts +0 -14
  421. package/src/components/DescriptionList/DescriptionList.stories.tsx +0 -172
  422. package/src/components/DescriptionList/DescriptionList.tsx +0 -54
  423. package/src/components/DescriptionList/DescriptionListItem.figma.tsx +0 -42
  424. package/src/components/DescriptionList/DescriptionListItem.props.ts +0 -15
  425. package/src/components/DescriptionList/DescriptionListItem.tsx +0 -106
  426. package/src/components/DescriptionList/index.ts +0 -4
  427. package/src/components/DetailText/DetailText.props.ts +0 -8
  428. package/src/components/DetailText/DetailText.stories.tsx +0 -148
  429. package/src/components/DetailText/DetailText.tsx +0 -147
  430. package/src/components/DetailText/index.ts +0 -1
  431. package/src/components/Divider/Divider.figma.tsx +0 -12
  432. package/src/components/Divider/Divider.props.ts +0 -19
  433. package/src/components/Divider/Divider.stories.tsx +0 -60
  434. package/src/components/Divider/Divider.tsx +0 -240
  435. package/src/components/Divider/index.ts +0 -1
  436. package/src/components/Expandable/Expandable.props.ts +0 -46
  437. package/src/components/Expandable/Expandable.stories.tsx +0 -284
  438. package/src/components/Expandable/Expandable.tsx +0 -92
  439. package/src/components/Expandable/index.ts +0 -2
  440. package/src/components/ExpandableCard/ExpandableCard.figma.tsx +0 -49
  441. package/src/components/ExpandableCard/ExpandableCard.props.ts +0 -108
  442. package/src/components/ExpandableCard/ExpandableCard.stories.tsx +0 -376
  443. package/src/components/ExpandableCard/ExpandableCard.tsx +0 -84
  444. package/src/components/ExpandableCard/ExpandableCardContent.tsx +0 -21
  445. package/src/components/ExpandableCard/ExpandableCardExpandedContent.tsx +0 -42
  446. package/src/components/ExpandableCard/ExpandableCardGroup.figma.tsx +0 -40
  447. package/src/components/ExpandableCard/ExpandableCardGroup.props.ts +0 -36
  448. package/src/components/ExpandableCard/ExpandableCardGroup.tsx +0 -42
  449. package/src/components/ExpandableCard/ExpandableCardHelperText.tsx +0 -21
  450. package/src/components/ExpandableCard/ExpandableCardIcon.tsx +0 -32
  451. package/src/components/ExpandableCard/ExpandableCardLeadingContent.tsx +0 -9
  452. package/src/components/ExpandableCard/ExpandableCardText.tsx +0 -14
  453. package/src/components/ExpandableCard/ExpandableCardTrailingContent.tsx +0 -9
  454. package/src/components/ExpandableCard/ExpandableCardTrailingIcon.tsx +0 -30
  455. package/src/components/ExpandableCard/ExpandableCardTrigger.props.ts +0 -76
  456. package/src/components/ExpandableCard/ExpandableCardTrigger.tsx +0 -9
  457. package/src/components/ExpandableCard/ExpandableCardTriggerRoot.tsx +0 -173
  458. package/src/components/ExpandableCard/index.ts +0 -14
  459. package/src/components/Flex/Flex.props.ts +0 -31
  460. package/src/components/Flex/Flex.stories.tsx +0 -78
  461. package/src/components/Flex/Flex.tsx +0 -46
  462. package/src/components/Flex/index.ts +0 -1
  463. package/src/components/FormField/FormFielInvalidIcon.tsx +0 -11
  464. package/src/components/FormField/FormField.context.ts +0 -11
  465. package/src/components/FormField/FormField.figma.tsx +0 -23
  466. package/src/components/FormField/FormField.props.ts +0 -20
  467. package/src/components/FormField/FormField.stories.tsx +0 -134
  468. package/src/components/FormField/FormField.tsx +0 -123
  469. package/src/components/FormField/FormFieldHelper.tsx +0 -23
  470. package/src/components/FormField/FormFieldInvalid.tsx +0 -33
  471. package/src/components/FormField/FormFieldLabel.tsx +0 -16
  472. package/src/components/FormField/FormFieldRoot.tsx +0 -21
  473. package/src/components/FormField/FormFieldValid.tsx +0 -33
  474. package/src/components/FormField/FormFieldValidIcon.tsx +0 -11
  475. package/src/components/FormField/index.ts +0 -16
  476. package/src/components/Grid/Grid.props.ts +0 -62
  477. package/src/components/Grid/Grid.stories.tsx +0 -199
  478. package/src/components/Grid/Grid.tsx +0 -146
  479. package/src/components/Grid/index.ts +0 -2
  480. package/src/components/HTMLElements/ListItem.tsx +0 -33
  481. package/src/components/HTMLElements/OrderedList.stories.tsx +0 -86
  482. package/src/components/HTMLElements/OrderedList.tsx +0 -98
  483. package/src/components/HTMLElements/UnorderedList.stories.tsx +0 -110
  484. package/src/components/HTMLElements/UnorderedList.tsx +0 -92
  485. package/src/components/HTMLElements/index.ts +0 -3
  486. package/src/components/Heading/Heading.props.ts +0 -8
  487. package/src/components/Heading/Heading.stories.tsx +0 -128
  488. package/src/components/Heading/Heading.tsx +0 -193
  489. package/src/components/Heading/index.ts +0 -1
  490. package/src/components/Helper/Helper.props.ts +0 -24
  491. package/src/components/Helper/Helper.tsx +0 -66
  492. package/src/components/Helper/HelperContext.ts +0 -6
  493. package/src/components/Helper/HelperIcon.tsx +0 -44
  494. package/src/components/Helper/HelperText.figma.tsx +0 -23
  495. package/src/components/Helper/HelperText.tsx +0 -46
  496. package/src/components/Helper/index.ts +0 -3
  497. package/src/components/HighlightBanner/HighlightBanner.figma.tsx +0 -46
  498. package/src/components/HighlightBanner/HighlightBanner.props.ts +0 -29
  499. package/src/components/HighlightBanner/HighlightBanner.stories.tsx +0 -314
  500. package/src/components/HighlightBanner/HighlightBanner.tsx +0 -127
  501. package/src/components/HighlightBanner/HighlightBannerImage.tsx +0 -20
  502. package/src/components/HighlightBanner/index.ts +0 -3
  503. package/src/components/Icon/Icon.props.ts +0 -17
  504. package/src/components/Icon/Icon.stories.tsx +0 -44
  505. package/src/components/Icon/Icon.tsx +0 -52
  506. package/src/components/Icon/index.tsx +0 -2
  507. package/src/components/IconButton/IconButton.context.ts +0 -13
  508. package/src/components/IconButton/IconButton.figma.tsx +0 -45
  509. package/src/components/IconButton/IconButton.props.ts +0 -45
  510. package/src/components/IconButton/IconButton.stories.tsx +0 -271
  511. package/src/components/IconButton/IconButton.tsx +0 -37
  512. package/src/components/IconButton/IconButtonIcon.tsx +0 -156
  513. package/src/components/IconButton/IconButtonRoot.tsx +0 -478
  514. package/src/components/IconButton/IconButtonSpinner.tsx +0 -68
  515. package/src/components/IconButton/index.tsx +0 -2
  516. package/src/components/IconContainer/IconContainer.figma.tsx +0 -44
  517. package/src/components/IconContainer/IconContainer.props.ts +0 -17
  518. package/src/components/IconContainer/IconContainer.stories.tsx +0 -135
  519. package/src/components/IconContainer/IconContainer.tsx +0 -178
  520. package/src/components/IconContainer/index.tsx +0 -2
  521. package/src/components/Icons/CircleIcon.tsx +0 -21
  522. package/src/components/Icons/index.ts +0 -1
  523. package/src/components/IndicatorIconButton/IndicatorIconButton.docs.mdx +0 -85
  524. package/src/components/IndicatorIconButton/IndicatorIconButton.figma.tsx +0 -16
  525. package/src/components/IndicatorIconButton/IndicatorIconButton.props.ts +0 -12
  526. package/src/components/IndicatorIconButton/IndicatorIconButton.stories.tsx +0 -150
  527. package/src/components/IndicatorIconButton/IndicatorIconButton.tsx +0 -36
  528. package/src/components/IndicatorIconButton/index.tsx +0 -2
  529. package/src/components/InlineLink/InlineLink.context.ts +0 -10
  530. package/src/components/InlineLink/InlineLink.props.ts +0 -10
  531. package/src/components/InlineLink/InlineLink.stories.tsx +0 -91
  532. package/src/components/InlineLink/InlineLink.tsx +0 -26
  533. package/src/components/InlineLink/InlineLinkRoot.tsx +0 -87
  534. package/src/components/InlineLink/index.ts +0 -3
  535. package/src/components/Input/Input.context.ts +0 -6
  536. package/src/components/Input/Input.figma.tsx +0 -123
  537. package/src/components/Input/Input.props.ts +0 -118
  538. package/src/components/Input/Input.stories.tsx +0 -235
  539. package/src/components/Input/Input.tsx +0 -215
  540. package/src/components/Input/InputField.tsx +0 -75
  541. package/src/components/Input/InputIcon.tsx +0 -30
  542. package/src/components/Input/InputRoot.tsx +0 -89
  543. package/src/components/Input/InputSlot.tsx +0 -32
  544. package/src/components/Input/index.ts +0 -1
  545. package/src/components/Label/Label.figma.tsx +0 -24
  546. package/src/components/Label/Label.props.ts +0 -9
  547. package/src/components/Label/Label.tsx +0 -44
  548. package/src/components/Label/index.ts +0 -1
  549. package/src/components/Link/Link.context.ts +0 -10
  550. package/src/components/Link/Link.figma.tsx +0 -35
  551. package/src/components/Link/Link.props.ts +0 -18
  552. package/src/components/Link/Link.stories.tsx +0 -75
  553. package/src/components/Link/Link.tsx +0 -44
  554. package/src/components/Link/LinkIcon.tsx +0 -60
  555. package/src/components/Link/LinkRoot.tsx +0 -65
  556. package/src/components/Link/LinkText.tsx +0 -59
  557. package/src/components/Link/index.ts +0 -4
  558. package/src/components/List/List.context.ts +0 -16
  559. package/src/components/List/List.figma.tsx +0 -45
  560. package/src/components/List/List.props.ts +0 -13
  561. package/src/components/List/List.stories.tsx +0 -535
  562. package/src/components/List/List.tsx +0 -109
  563. package/src/components/List/ListAction/ListAction.figma.tsx +0 -21
  564. package/src/components/List/ListAction/ListAction.props.ts +0 -10
  565. package/src/components/List/ListAction/ListAction.tsx +0 -165
  566. package/src/components/List/ListAction/ListActionContent.tsx +0 -21
  567. package/src/components/List/ListAction/ListActionText.tsx +0 -14
  568. package/src/components/List/ListAction/ListActionTrailingContent.tsx +0 -9
  569. package/src/components/List/ListAction/ListActionTrailingIcon.tsx +0 -33
  570. package/src/components/List/ListAction/index.ts +0 -6
  571. package/src/components/List/ListItem/ListItem.context.ts +0 -11
  572. package/src/components/List/ListItem/ListItem.figma.tsx +0 -56
  573. package/src/components/List/ListItem/ListItem.props.ts +0 -38
  574. package/src/components/List/ListItem/ListItem.tsx +0 -10
  575. package/src/components/List/ListItem/ListItemContent.tsx +0 -21
  576. package/src/components/List/ListItem/ListItemHeading.tsx +0 -20
  577. package/src/components/List/ListItem/ListItemHelperText.tsx +0 -20
  578. package/src/components/List/ListItem/ListItemIcon.tsx +0 -32
  579. package/src/components/List/ListItem/ListItemLeadingContent.figma.tsx +0 -29
  580. package/src/components/List/ListItem/ListItemLeadingContent.tsx +0 -9
  581. package/src/components/List/ListItem/ListItemRoot.tsx +0 -221
  582. package/src/components/List/ListItem/ListItemTrailingContent.figma.tsx +0 -27
  583. package/src/components/List/ListItem/ListItemTrailingContent.tsx +0 -9
  584. package/src/components/List/ListItem/ListItemTrailingIcon.tsx +0 -31
  585. package/src/components/List/ListItem/index.ts +0 -9
  586. package/src/components/List/index.ts +0 -4
  587. package/src/components/Menu/Menu.context.ts +0 -15
  588. package/src/components/Menu/Menu.figma.tsx +0 -30
  589. package/src/components/Menu/Menu.props.ts +0 -20
  590. package/src/components/Menu/Menu.stories.tsx +0 -292
  591. package/src/components/Menu/Menu.tsx +0 -51
  592. package/src/components/Menu/MenuItem.figma.tsx +0 -39
  593. package/src/components/Menu/MenuItem.props.ts +0 -29
  594. package/src/components/Menu/MenuItem.tsx +0 -145
  595. package/src/components/Menu/MenuTrigger.props.ts +0 -14
  596. package/src/components/Menu/MenuTrigger.tsx +0 -20
  597. package/src/components/Menu/index.ts +0 -7
  598. package/src/components/Modal/Modal.figma.tsx +0 -67
  599. package/src/components/Modal/Modal.props.ts +0 -25
  600. package/src/components/Modal/Modal.shared.types.ts +0 -43
  601. package/src/components/Modal/Modal.stories.tsx +0 -405
  602. package/src/components/Modal/Modal.tsx +0 -423
  603. package/src/components/Modal/Modal.web.tsx +0 -250
  604. package/src/components/Modal/ModalImage.tsx +0 -20
  605. package/src/components/Modal/index.ts +0 -3
  606. package/src/components/NavModal/NavModal.figma.tsx +0 -13
  607. package/src/components/NavModal/NavModal.props.ts +0 -31
  608. package/src/components/NavModal/NavModal.stories.tsx +0 -200
  609. package/src/components/NavModal/NavModal.tsx +0 -436
  610. package/src/components/NavModal/index.ts +0 -2
  611. package/src/components/Pagination/Pagination.figma.tsx +0 -20
  612. package/src/components/Pagination/Pagination.props.ts +0 -28
  613. package/src/components/Pagination/Pagination.stories.tsx +0 -88
  614. package/src/components/Pagination/Pagination.tsx +0 -248
  615. package/src/components/Pagination/Pagination.utils.test.ts +0 -20
  616. package/src/components/Pagination/Pagination.utils.ts +0 -37
  617. package/src/components/Pagination/index.ts +0 -2
  618. package/src/components/PillGroup/Pill.figma.tsx +0 -12
  619. package/src/components/PillGroup/Pill.props.ts +0 -13
  620. package/src/components/PillGroup/Pill.tsx +0 -118
  621. package/src/components/PillGroup/PillGroup.context.tsx +0 -12
  622. package/src/components/PillGroup/PillGroup.docs.mdx +0 -96
  623. package/src/components/PillGroup/PillGroup.figma.tsx +0 -20
  624. package/src/components/PillGroup/PillGroup.props.ts +0 -36
  625. package/src/components/PillGroup/PillGroup.stories.tsx +0 -158
  626. package/src/components/PillGroup/PillGroup.tsx +0 -70
  627. package/src/components/PillGroup/index.ts +0 -4
  628. package/src/components/ProgressBar/ProgressBar.figma.tsx +0 -79
  629. package/src/components/ProgressBar/ProgressBar.props.ts +0 -60
  630. package/src/components/ProgressBar/ProgressBar.stories.tsx +0 -117
  631. package/src/components/ProgressBar/ProgressBar.tsx +0 -74
  632. package/src/components/ProgressBar/ProgressBarCircular.tsx +0 -181
  633. package/src/components/ProgressBar/ProgressBarLinear.tsx +0 -127
  634. package/src/components/ProgressBar/index.ts +0 -7
  635. package/src/components/ProgressStepper/ProgressStep.figma.tsx +0 -19
  636. package/src/components/ProgressStepper/ProgressStep.tsx +0 -134
  637. package/src/components/ProgressStepper/ProgressStepper.docs.mdx +0 -87
  638. package/src/components/ProgressStepper/ProgressStepper.figma.tsx +0 -13
  639. package/src/components/ProgressStepper/ProgressStepper.props.ts +0 -27
  640. package/src/components/ProgressStepper/ProgressStepper.stories.tsx +0 -107
  641. package/src/components/ProgressStepper/ProgressStepper.tsx +0 -26
  642. package/src/components/ProgressStepper/ProgressStepperRoot.tsx +0 -32
  643. package/src/components/ProgressStepper/index.ts +0 -3
  644. package/src/components/Radio/Radio.context.ts +0 -9
  645. package/src/components/Radio/Radio.figma.tsx +0 -38
  646. package/src/components/Radio/Radio.props.ts +0 -38
  647. package/src/components/Radio/Radio.stories.tsx +0 -254
  648. package/src/components/Radio/Radio.tsx +0 -98
  649. package/src/components/Radio/RadioGroup.context.ts +0 -10
  650. package/src/components/Radio/RadioGroup.figma.tsx +0 -82
  651. package/src/components/Radio/RadioGroup.props.ts +0 -23
  652. package/src/components/Radio/RadioGroup.stories.tsx +0 -131
  653. package/src/components/Radio/RadioGroup.tsx +0 -113
  654. package/src/components/Radio/RadioGroupRoot.tsx +0 -36
  655. package/src/components/Radio/RadioGroupTextContent.tsx +0 -14
  656. package/src/components/Radio/RadioIcon.tsx +0 -37
  657. package/src/components/Radio/RadioImage.figma.tsx +0 -27
  658. package/src/components/Radio/RadioImage.tsx +0 -14
  659. package/src/components/Radio/RadioIndicator.tsx +0 -63
  660. package/src/components/Radio/RadioLabel.tsx +0 -14
  661. package/src/components/Radio/RadioRoot.tsx +0 -65
  662. package/src/components/Radio/RadioTextContent.tsx +0 -21
  663. package/src/components/Radio/RadioTile.figma.tsx +0 -38
  664. package/src/components/Radio/RadioTileRoot.tsx +0 -46
  665. package/src/components/Radio/index.ts +0 -6
  666. package/src/components/RadioCard/RadioCard.context.ts +0 -8
  667. package/src/components/RadioCard/RadioCard.figma.tsx +0 -24
  668. package/src/components/RadioCard/RadioCard.props.ts +0 -19
  669. package/src/components/RadioCard/RadioCard.stories.tsx +0 -45
  670. package/src/components/RadioCard/RadioCard.tsx +0 -62
  671. package/src/components/RadioCard/RadioCardGroup.context.ts +0 -16
  672. package/src/components/RadioCard/RadioCardGroup.props.ts +0 -36
  673. package/src/components/RadioCard/RadioCardGroup.stories.tsx +0 -94
  674. package/src/components/RadioCard/RadioCardGroup.tsx +0 -57
  675. package/src/components/RadioCard/RadioCardIcon.tsx +0 -33
  676. package/src/components/RadioCard/RadioCardIndicator.tsx +0 -63
  677. package/src/components/RadioCard/RadioCardLabel.tsx +0 -19
  678. package/src/components/RadioCard/RadioCardRoot.tsx +0 -85
  679. package/src/components/RadioCard/index.ts +0 -8
  680. package/src/components/Rating/Rating.docs.mdx +0 -217
  681. package/src/components/Rating/Rating.figma.tsx +0 -39
  682. package/src/components/Rating/Rating.props.ts +0 -28
  683. package/src/components/Rating/Rating.stories.tsx +0 -112
  684. package/src/components/Rating/Rating.tsx +0 -198
  685. package/src/components/Rating/Rating.utils.test.ts +0 -15
  686. package/src/components/Rating/Rating.utils.ts +0 -14
  687. package/src/components/Rating/RatingEmoji.tsx +0 -28
  688. package/src/components/Rating/RatingStarEmpty.tsx +0 -22
  689. package/src/components/Rating/RatingStarFilled.tsx +0 -27
  690. package/src/components/Rating/index.ts +0 -2
  691. package/src/components/Roundel/Roundel.figma.tsx +0 -17
  692. package/src/components/Roundel/Roundel.props.ts +0 -8
  693. package/src/components/Roundel/Roundel.stories.tsx +0 -49
  694. package/src/components/Roundel/Roundel.tsx +0 -51
  695. package/src/components/Roundel/index.ts +0 -2
  696. package/src/components/SectionHeader/SectionHeader.figma.tsx +0 -37
  697. package/src/components/SectionHeader/SectionHeader.props.ts +0 -29
  698. package/src/components/SectionHeader/SectionHeader.stories.tsx +0 -86
  699. package/src/components/SectionHeader/SectionHeader.tsx +0 -61
  700. package/src/components/SectionHeader/SectionHeaderHeading.tsx +0 -14
  701. package/src/components/SectionHeader/SectionHeaderHelperText.tsx +0 -21
  702. package/src/components/SectionHeader/SectionHeaderTextContent.tsx +0 -21
  703. package/src/components/SectionHeader/SectionHeaderTrailingContent.tsx +0 -20
  704. package/src/components/SectionHeader/index.ts +0 -5
  705. package/src/components/SegmentedControl/SegmentedControl.context.ts +0 -22
  706. package/src/components/SegmentedControl/SegmentedControl.figma.tsx +0 -39
  707. package/src/components/SegmentedControl/SegmentedControl.props.ts +0 -20
  708. package/src/components/SegmentedControl/SegmentedControl.stories.tsx +0 -98
  709. package/src/components/SegmentedControl/SegmentedControl.tsx +0 -260
  710. package/src/components/SegmentedControl/SegmentedControlOption.props.ts +0 -16
  711. package/src/components/SegmentedControl/SegmentedControlOption.tsx +0 -237
  712. package/src/components/SegmentedControl/index.ts +0 -4
  713. package/src/components/Select/Select.context.ts +0 -15
  714. package/src/components/Select/Select.figma.tsx +0 -56
  715. package/src/components/Select/Select.props.ts +0 -161
  716. package/src/components/Select/Select.stories.tsx +0 -290
  717. package/src/components/Select/Select.tsx +0 -321
  718. package/src/components/Select/SelectOption.figma.tsx +0 -18
  719. package/src/components/Select/SelectOption.tsx +0 -103
  720. package/src/components/Select/index.ts +0 -7
  721. package/src/components/Skeleton/Skeleton.props.ts +0 -11
  722. package/src/components/Skeleton/Skeleton.stories.tsx +0 -33
  723. package/src/components/Skeleton/Skeleton.tsx +0 -77
  724. package/src/components/Skeleton/index.ts +0 -1
  725. package/src/components/Spinner/Spinner.figma.tsx +0 -14
  726. package/src/components/Spinner/Spinner.props.ts +0 -10
  727. package/src/components/Spinner/Spinner.stories.tsx +0 -56
  728. package/src/components/Spinner/Spinner.tsx +0 -157
  729. package/src/components/Spinner/Spinner.web.tsx +0 -149
  730. package/src/components/Spinner/index.ts +0 -2
  731. package/src/components/StepperInput/StepperButton.tsx +0 -83
  732. package/src/components/StepperInput/StepperInput.figma.tsx +0 -45
  733. package/src/components/StepperInput/StepperInput.props.ts +0 -39
  734. package/src/components/StepperInput/StepperInput.stories.tsx +0 -270
  735. package/src/components/StepperInput/StepperInput.tsx +0 -322
  736. package/src/components/StepperInput/index.ts +0 -2
  737. package/src/components/Switch/Switch.figma.tsx +0 -16
  738. package/src/components/Switch/Switch.props.ts +0 -10
  739. package/src/components/Switch/Switch.stories.tsx +0 -80
  740. package/src/components/Switch/Switch.tsx +0 -209
  741. package/src/components/Switch/Switch.web.tsx +0 -207
  742. package/src/components/Switch/index.ts +0 -1
  743. package/src/components/Table/Table.context.tsx +0 -23
  744. package/src/components/Table/Table.docs.mdx +0 -239
  745. package/src/components/Table/Table.figma.tsx +0 -65
  746. package/src/components/Table/Table.props.ts +0 -65
  747. package/src/components/Table/Table.stories.tsx +0 -399
  748. package/src/components/Table/Table.tsx +0 -127
  749. package/src/components/Table/Table.utils.test.ts +0 -82
  750. package/src/components/Table/Table.utils.ts +0 -72
  751. package/src/components/Table/TableBody.tsx +0 -25
  752. package/src/components/Table/TableCell.tsx +0 -67
  753. package/src/components/Table/TableHeader.tsx +0 -41
  754. package/src/components/Table/TableHeaderCell.tsx +0 -145
  755. package/src/components/Table/TablePagination.tsx +0 -10
  756. package/src/components/Table/TableRow.tsx +0 -42
  757. package/src/components/Table/index.ts +0 -16
  758. package/src/components/Tabs/Tab.figma.tsx +0 -21
  759. package/src/components/Tabs/Tab.props.ts +0 -16
  760. package/src/components/Tabs/Tab.tsx +0 -114
  761. package/src/components/Tabs/TabPanel.props.ts +0 -10
  762. package/src/components/Tabs/TabPanel.tsx +0 -46
  763. package/src/components/Tabs/Tabs.context.ts +0 -26
  764. package/src/components/Tabs/Tabs.figma.tsx +0 -20
  765. package/src/components/Tabs/Tabs.props.ts +0 -21
  766. package/src/components/Tabs/Tabs.stories.tsx +0 -270
  767. package/src/components/Tabs/Tabs.tsx +0 -138
  768. package/src/components/Tabs/TabsList.props.ts +0 -8
  769. package/src/components/Tabs/TabsList.tsx +0 -194
  770. package/src/components/Tabs/index.ts +0 -8
  771. package/src/components/Textarea/Textarea.context.ts +0 -6
  772. package/src/components/Textarea/Textarea.figma.tsx +0 -64
  773. package/src/components/Textarea/Textarea.props.ts +0 -74
  774. package/src/components/Textarea/Textarea.stories.tsx +0 -106
  775. package/src/components/Textarea/Textarea.tsx +0 -207
  776. package/src/components/Textarea/TextareaField.tsx +0 -45
  777. package/src/components/Textarea/TextareaRoot.tsx +0 -83
  778. package/src/components/Textarea/index.ts +0 -1
  779. package/src/components/ThemedImage/ThemedImage.props.ts +0 -15
  780. package/src/components/ThemedImage/ThemedImage.stories.tsx +0 -175
  781. package/src/components/ThemedImage/ThemedImage.tsx +0 -34
  782. package/src/components/ThemedImage/index.tsx +0 -2
  783. package/src/components/TimePicker/TimePicker.figma.tsx +0 -29
  784. package/src/components/TimePicker/TimePicker.props.ts +0 -45
  785. package/src/components/TimePicker/TimePicker.stories.tsx +0 -85
  786. package/src/components/TimePicker/TimePicker.tsx +0 -150
  787. package/src/components/TimePicker/TimePickerView.tsx +0 -216
  788. package/src/components/TimePicker/TimePickerWheel.tsx +0 -161
  789. package/src/components/TimePicker/TimePickerWheel.web.tsx +0 -217
  790. package/src/components/TimePicker/index.ts +0 -8
  791. package/src/components/TimePickerInput/TimePickerInput.figma.tsx +0 -34
  792. package/src/components/TimePickerInput/TimePickerInput.props.ts +0 -55
  793. package/src/components/TimePickerInput/TimePickerInput.stories.tsx +0 -175
  794. package/src/components/TimePickerInput/TimePickerInput.tsx +0 -283
  795. package/src/components/TimePickerInput/TimePickerInputDoneButton.tsx +0 -42
  796. package/src/components/TimePickerInput/TimePickerInputDoneButton.web.tsx +0 -7
  797. package/src/components/TimePickerInput/index.ts +0 -2
  798. package/src/components/Timeline/Timeline.figma.tsx +0 -89
  799. package/src/components/Timeline/Timeline.props.ts +0 -51
  800. package/src/components/Timeline/Timeline.stories.tsx +0 -102
  801. package/src/components/Timeline/Timeline.tsx +0 -48
  802. package/src/components/Timeline/TimelineItem.tsx +0 -293
  803. package/src/components/Timeline/index.ts +0 -9
  804. package/src/components/Toast/Toast.context.tsx +0 -139
  805. package/src/components/Toast/Toast.props.ts +0 -38
  806. package/src/components/Toast/Toast.stories.tsx +0 -385
  807. package/src/components/Toast/ToastItem.figma.tsx +0 -15
  808. package/src/components/Toast/ToastItem.tsx +0 -205
  809. package/src/components/Toast/index.ts +0 -3
  810. package/src/components/ToggleButton/ToggleButton.props.tsx +0 -7
  811. package/src/components/ToggleButton/ToggleButton.stories.tsx +0 -35
  812. package/src/components/ToggleButton/ToggleButton.tsx +0 -32
  813. package/src/components/ToggleButton/ToggleButtonIcon.tsx +0 -47
  814. package/src/components/ToggleButton/ToggleButtonRoot.tsx +0 -98
  815. package/src/components/ToggleButton/ToggleButtonText.tsx +0 -29
  816. package/src/components/ToggleButton/index.ts +0 -2
  817. package/src/components/ToggleButtonCard/ToggleButtonCard.context.ts +0 -8
  818. package/src/components/ToggleButtonCard/ToggleButtonCard.figma.tsx +0 -24
  819. package/src/components/ToggleButtonCard/ToggleButtonCard.props.ts +0 -17
  820. package/src/components/ToggleButtonCard/ToggleButtonCard.stories.tsx +0 -45
  821. package/src/components/ToggleButtonCard/ToggleButtonCard.tsx +0 -32
  822. package/src/components/ToggleButtonCard/ToggleButtonCardGroup.props.ts +0 -34
  823. package/src/components/ToggleButtonCard/ToggleButtonCardGroup.stories.tsx +0 -85
  824. package/src/components/ToggleButtonCard/ToggleButtonCardGroup.tsx +0 -48
  825. package/src/components/ToggleButtonCard/ToggleButtonCardRoot.tsx +0 -97
  826. package/src/components/ToggleButtonCard/index.ts +0 -2
  827. package/src/components/UnstyledIconButton/UnstyledIconButton.context.ts +0 -11
  828. package/src/components/UnstyledIconButton/UnstyledIconButton.figma.tsx +0 -49
  829. package/src/components/UnstyledIconButton/UnstyledIconButton.props.ts +0 -34
  830. package/src/components/UnstyledIconButton/UnstyledIconButton.stories.tsx +0 -96
  831. package/src/components/UnstyledIconButton/UnstyledIconButton.tsx +0 -68
  832. package/src/components/UnstyledIconButton/UnstyledIconButtonIcon.tsx +0 -74
  833. package/src/components/UnstyledIconButton/UnstyledIconButtonRoot.tsx +0 -61
  834. package/src/components/UnstyledIconButton/UnstyledIconButtonSpinner.tsx +0 -39
  835. package/src/components/UnstyledIconButton/index.tsx +0 -2
  836. package/src/components/VerificationInput/VerificationInput.figma.tsx +0 -53
  837. package/src/components/VerificationInput/VerificationInput.props.ts +0 -66
  838. package/src/components/VerificationInput/VerificationInput.stories.tsx +0 -249
  839. package/src/components/VerificationInput/VerificationInput.tsx +0 -290
  840. package/src/components/VerificationInput/VerificationInput.utils.test.ts +0 -48
  841. package/src/components/VerificationInput/VerificationInput.utils.ts +0 -32
  842. package/src/components/VerificationInput/VerificationInputSlot.tsx +0 -170
  843. package/src/components/VerificationInput/index.ts +0 -7
  844. package/src/components/index.ts +0 -77
  845. package/src/core/breakpoints.ts +0 -10
  846. package/src/core/index.ts +0 -38
  847. package/src/core/themes.ts +0 -390
  848. package/src/hooks/index.ts +0 -8
  849. package/src/hooks/useBreakpointValue.ts +0 -62
  850. package/src/hooks/useColorMode.ts +0 -18
  851. package/src/hooks/useFormFieldAccessibility.test.tsx +0 -74
  852. package/src/hooks/useFormFieldAccessibility.ts +0 -67
  853. package/src/hooks/useMedia.ts +0 -31
  854. package/src/hooks/usePrevious.ts +0 -9
  855. package/src/hooks/useStyleProps.ts +0 -95
  856. package/src/hooks/useTheme.ts +0 -9
  857. package/src/hooks/useToken.ts +0 -40
  858. package/src/index.ts +0 -4
  859. package/src/legacyTokens/common/brand.ts +0 -18
  860. package/src/legacyTokens/common/index.ts +0 -10
  861. package/src/legacyTokens/common/service.ts +0 -22
  862. package/src/legacyTokens/dark/apple.ts +0 -30
  863. package/src/legacyTokens/dark/cyan.ts +0 -50
  864. package/src/legacyTokens/dark/gold.ts +0 -46
  865. package/src/legacyTokens/dark/grape.ts +0 -30
  866. package/src/legacyTokens/dark/green.ts +0 -42
  867. package/src/legacyTokens/dark/grey.ts +0 -62
  868. package/src/legacyTokens/dark/index.ts +0 -42
  869. package/src/legacyTokens/dark/pink.ts +0 -30
  870. package/src/legacyTokens/dark/purple.ts +0 -50
  871. package/src/legacyTokens/dark/red.ts +0 -42
  872. package/src/legacyTokens/dark/rose.ts +0 -30
  873. package/src/legacyTokens/index.ts +0 -14
  874. package/src/legacyTokens/light/apple.ts +0 -30
  875. package/src/legacyTokens/light/cyan.ts +0 -50
  876. package/src/legacyTokens/light/gold.ts +0 -46
  877. package/src/legacyTokens/light/grape.ts +0 -30
  878. package/src/legacyTokens/light/green.ts +0 -42
  879. package/src/legacyTokens/light/grey.ts +0 -62
  880. package/src/legacyTokens/light/index.ts +0 -42
  881. package/src/legacyTokens/light/pink.ts +0 -30
  882. package/src/legacyTokens/light/purple.ts +0 -50
  883. package/src/legacyTokens/light/red.ts +0 -42
  884. package/src/legacyTokens/light/rose.ts +0 -34
  885. package/src/tokens/README.md +0 -7
  886. package/src/tokens/border-radius.ts +0 -12
  887. package/src/tokens/border-width.ts +0 -8
  888. package/src/tokens/color.ts +0 -659
  889. package/src/tokens/components/dark/accordion.ts +0 -27
  890. package/src/tokens/components/dark/alert.ts +0 -23
  891. package/src/tokens/components/dark/avatar.ts +0 -19
  892. package/src/tokens/components/dark/badge.ts +0 -24
  893. package/src/tokens/components/dark/banner.ts +0 -53
  894. package/src/tokens/components/dark/bottom-navigation.ts +0 -30
  895. package/src/tokens/components/dark/bottom-sheet.ts +0 -16
  896. package/src/tokens/components/dark/breadcrumb.ts +0 -7
  897. package/src/tokens/components/dark/button.ts +0 -19
  898. package/src/tokens/components/dark/card-accordion.ts +0 -13
  899. package/src/tokens/components/dark/card-action.ts +0 -11
  900. package/src/tokens/components/dark/card-content.ts +0 -25
  901. package/src/tokens/components/dark/card.ts +0 -38
  902. package/src/tokens/components/dark/carousel-control.ts +0 -11
  903. package/src/tokens/components/dark/checkbox.ts +0 -42
  904. package/src/tokens/components/dark/date-picker.ts +0 -44
  905. package/src/tokens/components/dark/description-list.ts +0 -20
  906. package/src/tokens/components/dark/divider.ts +0 -11
  907. package/src/tokens/components/dark/drawer.ts +0 -29
  908. package/src/tokens/components/dark/expandable-card.ts +0 -11
  909. package/src/tokens/components/dark/form-field.ts +0 -10
  910. package/src/tokens/components/dark/icon-button.ts +0 -46
  911. package/src/tokens/components/dark/icon-container.ts +0 -25
  912. package/src/tokens/components/dark/illustrations.ts +0 -7
  913. package/src/tokens/components/dark/index.ts +0 -58
  914. package/src/tokens/components/dark/indicator-icon-button.ts +0 -11
  915. package/src/tokens/components/dark/inline-link.ts +0 -14
  916. package/src/tokens/components/dark/input.ts +0 -43
  917. package/src/tokens/components/dark/link.ts +0 -20
  918. package/src/tokens/components/dark/list.ts +0 -48
  919. package/src/tokens/components/dark/menu.ts +0 -34
  920. package/src/tokens/components/dark/modal.ts +0 -36
  921. package/src/tokens/components/dark/navigation.ts +0 -61
  922. package/src/tokens/components/dark/overlay.ts +0 -8
  923. package/src/tokens/components/dark/pagination.ts +0 -13
  924. package/src/tokens/components/dark/parts.ts +0 -33
  925. package/src/tokens/components/dark/pill.ts +0 -16
  926. package/src/tokens/components/dark/progress-bar.ts +0 -41
  927. package/src/tokens/components/dark/progress-stepper.ts +0 -24
  928. package/src/tokens/components/dark/radio.ts +0 -39
  929. package/src/tokens/components/dark/rating.ts +0 -8
  930. package/src/tokens/components/dark/section-header.ts +0 -10
  931. package/src/tokens/components/dark/segmented-control.ts +0 -19
  932. package/src/tokens/components/dark/select.ts +0 -45
  933. package/src/tokens/components/dark/skeleton.ts +0 -7
  934. package/src/tokens/components/dark/spinner.ts +0 -24
  935. package/src/tokens/components/dark/switch.ts +0 -25
  936. package/src/tokens/components/dark/table.ts +0 -27
  937. package/src/tokens/components/dark/tabs.ts +0 -25
  938. package/src/tokens/components/dark/time-picker.ts +0 -30
  939. package/src/tokens/components/dark/timeline.ts +0 -27
  940. package/src/tokens/components/dark/toast.ts +0 -17
  941. package/src/tokens/components/dark/toggle-button.ts +0 -13
  942. package/src/tokens/components/dark/tooltip.ts +0 -13
  943. package/src/tokens/components/dark/top-navigation.ts +0 -18
  944. package/src/tokens/components/index.ts +0 -6
  945. package/src/tokens/components/light/accordion.ts +0 -27
  946. package/src/tokens/components/light/alert.ts +0 -23
  947. package/src/tokens/components/light/avatar.ts +0 -19
  948. package/src/tokens/components/light/badge.ts +0 -24
  949. package/src/tokens/components/light/banner.ts +0 -53
  950. package/src/tokens/components/light/bottom-navigation.ts +0 -30
  951. package/src/tokens/components/light/bottom-sheet.ts +0 -16
  952. package/src/tokens/components/light/breadcrumb.ts +0 -7
  953. package/src/tokens/components/light/button.ts +0 -19
  954. package/src/tokens/components/light/card-accordion.ts +0 -13
  955. package/src/tokens/components/light/card-action.ts +0 -11
  956. package/src/tokens/components/light/card-content.ts +0 -25
  957. package/src/tokens/components/light/card.ts +0 -38
  958. package/src/tokens/components/light/carousel-control.ts +0 -11
  959. package/src/tokens/components/light/checkbox.ts +0 -42
  960. package/src/tokens/components/light/date-picker.ts +0 -44
  961. package/src/tokens/components/light/description-list.ts +0 -20
  962. package/src/tokens/components/light/divider.ts +0 -11
  963. package/src/tokens/components/light/drawer.ts +0 -29
  964. package/src/tokens/components/light/expandable-card.ts +0 -11
  965. package/src/tokens/components/light/form-field.ts +0 -10
  966. package/src/tokens/components/light/icon-button.ts +0 -46
  967. package/src/tokens/components/light/icon-container.ts +0 -25
  968. package/src/tokens/components/light/illustrations.ts +0 -7
  969. package/src/tokens/components/light/index.ts +0 -58
  970. package/src/tokens/components/light/indicator-icon-button.ts +0 -11
  971. package/src/tokens/components/light/inline-link.ts +0 -14
  972. package/src/tokens/components/light/input.ts +0 -43
  973. package/src/tokens/components/light/link.ts +0 -20
  974. package/src/tokens/components/light/list.ts +0 -48
  975. package/src/tokens/components/light/menu.ts +0 -34
  976. package/src/tokens/components/light/modal.ts +0 -36
  977. package/src/tokens/components/light/navigation.ts +0 -61
  978. package/src/tokens/components/light/overlay.ts +0 -8
  979. package/src/tokens/components/light/pagination.ts +0 -13
  980. package/src/tokens/components/light/parts.ts +0 -33
  981. package/src/tokens/components/light/pill.ts +0 -16
  982. package/src/tokens/components/light/progress-bar.ts +0 -41
  983. package/src/tokens/components/light/progress-stepper.ts +0 -24
  984. package/src/tokens/components/light/radio.ts +0 -39
  985. package/src/tokens/components/light/rating.ts +0 -8
  986. package/src/tokens/components/light/section-header.ts +0 -10
  987. package/src/tokens/components/light/segmented-control.ts +0 -19
  988. package/src/tokens/components/light/select.ts +0 -45
  989. package/src/tokens/components/light/skeleton.ts +0 -7
  990. package/src/tokens/components/light/spinner.ts +0 -24
  991. package/src/tokens/components/light/switch.ts +0 -25
  992. package/src/tokens/components/light/table.ts +0 -27
  993. package/src/tokens/components/light/tabs.ts +0 -25
  994. package/src/tokens/components/light/time-picker.ts +0 -30
  995. package/src/tokens/components/light/timeline.ts +0 -27
  996. package/src/tokens/components/light/toast.ts +0 -17
  997. package/src/tokens/components/light/toggle-button.ts +0 -13
  998. package/src/tokens/components/light/tooltip.ts +0 -13
  999. package/src/tokens/components/light/top-navigation.ts +0 -18
  1000. package/src/tokens/font.ts +0 -29
  1001. package/src/tokens/index.ts +0 -20
  1002. package/src/tokens/layout.ts +0 -94
  1003. package/src/tokens/letter-spacing.ts +0 -13
  1004. package/src/tokens/line-height.ts +0 -16
  1005. package/src/tokens/motion.ts +0 -23
  1006. package/src/tokens/primitive.ts +0 -102
  1007. package/src/tokens/semantic-dark.ts +0 -255
  1008. package/src/tokens/semantic-light.ts +0 -255
  1009. package/src/tokens/semantic.ts +0 -9
  1010. package/src/tokens/shadow.ts +0 -52
  1011. package/src/tokens/space.ts +0 -23
  1012. package/src/tokens/typography.ts +0 -298
  1013. package/src/types/index.ts +0 -6
  1014. package/src/types/refs.ts +0 -8
  1015. package/src/types/semanticColorValues.ts +0 -26
  1016. package/src/types/states.ts +0 -11
  1017. package/src/types/unistyles.ts +0 -12
  1018. package/src/types/utilityProps.ts +0 -410
  1019. package/src/types/values.ts +0 -81
  1020. package/src/utils/coloursAsArray.ts +0 -65
  1021. package/src/utils/formatThousands.ts +0 -14
  1022. package/src/utils/getFlattenedColorValue.ts +0 -13
  1023. package/src/utils/getInitials.ts +0 -7
  1024. package/src/utils/getStyleValue.ts +0 -9
  1025. package/src/utils/hasChildrenByDisplayName.ts +0 -43
  1026. package/src/utils/hexWithOpacity.ts +0 -19
  1027. package/src/utils/index.ts +0 -17
  1028. package/src/utils/isEqual.ts +0 -30
  1029. package/src/utils/isThemedImageProps.ts +0 -8
  1030. package/src/utils/styleUtils.ts +0 -264
  1031. package/src/utils/themeValueHelpers.ts +0 -98
  1032. package/src/vite-env.d.ts +0 -19
  1033. package/tsconfig.eslint.json +0 -14
  1034. package/tsconfig.json +0 -45
  1035. package/vitest.config.js +0 -37
  1036. package/vitest.unit.config.ts +0 -9
package/CHANGELOG.md DELETED
@@ -1,2083 +0,0 @@
1
- # @utilitywarehouse/hearth-react-native
2
-
3
- ## 0.34.5
4
-
5
- ### Patch Changes
6
-
7
- - [#1384](https://github.com/utilitywarehouse/hearth/pull/1384) [`be839e2`](https://github.com/utilitywarehouse/hearth/commit/be839e2ca46f079a0fe867f976044f4f31cca551) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: `NavModal` and `Modal` `description` prop accepts JSX
8
-
9
- `description` now accepts `ReactNode` in addition to a string, so you can pass
10
- custom content such as links or styled text alongside the default text
11
- styling.
12
-
13
- **Components affected**:
14
-
15
- - `NavModal`
16
- - `Modal`
17
-
18
- **Developer changes**:
19
-
20
- No changes required for existing usage. To pass custom content, provide JSX
21
- instead of a string:
22
-
23
- ```tsx
24
- <Modal
25
- heading="Update available"
26
- description={
27
- <BodyText>
28
- Read the <InlineLink onPress={() => {}}>release notes</InlineLink> before updating.
29
- </BodyText>
30
- }
31
- />
32
- ```
33
-
34
- ## 0.34.4
35
-
36
- ### Patch Changes
37
-
38
- - [#1375](https://github.com/utilitywarehouse/hearth/pull/1375) [`549739e`](https://github.com/utilitywarehouse/hearth/commit/549739eae90e467dbe2311dbc60cfd35d13f49c4) Thanks [@declanelcocks](https://github.com/declanelcocks)! - 🐛 [FIX]: `Modal` image container children pushed to bottom, and missing gap between image and heading
39
-
40
- `imageContainer` had `flex: 1` applied, which caused `children` to be pushed to the bottom of the container. Additionally, the gap between the `image` and the `heading` was missing.
41
-
42
- ## 0.34.3
43
-
44
- ### Patch Changes
45
-
46
- - [#1359](https://github.com/utilitywarehouse/hearth/pull/1359) [`60c5940`](https://github.com/utilitywarehouse/hearth/commit/60c59401f6a46821884002187601191f78bdf423) Thanks [@MichalCiesliczka](https://github.com/MichalCiesliczka)! - 🐛 [FIX]: `UnorderedList` and `OrderedList` layout when inside a centred flex container
47
-
48
- Both list components now render correctly when their parent uses
49
- `alignItems="center"`. Previously, the list would collapse to the width of the
50
- bullet/number, leaving text invisible or clipped beside each list item.
51
-
52
- **Before**: wrapping `UL` or `OL` in a `Box` with `alignItems="center"` caused
53
- bullets and numbers to appear without any adjacent text.
54
-
55
- **After**: both components always stretch to fill their parent's width via
56
- `alignSelf: 'stretch'`, regardless of the parent's `alignItems` setting.
57
-
58
- - Updated dependencies [[`fd31bf8`](https://github.com/utilitywarehouse/hearth/commit/fd31bf8208278a580f8039d09f4e8e78aac2b477)]:
59
- - @utilitywarehouse/hearth-react-native-icons@0.8.4
60
-
61
- ## 0.34.2
62
-
63
- ### Patch Changes
64
-
65
- - [#1349](https://github.com/utilitywarehouse/hearth/pull/1349) [`bed03da`](https://github.com/utilitywarehouse/hearth/commit/bed03da1252280145ca55bb50f4a9d3eb53440b2) Thanks [@robphoenix](https://github.com/robphoenix)! - 🌟 [FEATURE]: `BodyText` `xl` size (20px / 28px line-height)
66
-
67
- A new `xl` size is now available for the `BodyText` component, matching the
68
- existing `xl` body text token (20px font size, 28px line height).
69
-
70
- ## 0.34.1
71
-
72
- ### Patch Changes
73
-
74
- - [#1341](https://github.com/utilitywarehouse/hearth/pull/1341) [`2165fd8`](https://github.com/utilitywarehouse/hearth/commit/2165fd820cc879fe169df878944b41e337a06c89) Thanks [@robphoenix](https://github.com/robphoenix)! - 🧹 [HOUSEKEEPING]: Make all packages public
75
-
76
- - Updated dependencies [[`2165fd8`](https://github.com/utilitywarehouse/hearth/commit/2165fd820cc879fe169df878944b41e337a06c89)]:
77
- - @utilitywarehouse/hearth-react-native-icons@0.8.3
78
-
79
- ## 0.34.0
80
-
81
- ### Minor Changes
82
-
83
- - [#1338](https://github.com/utilitywarehouse/hearth/pull/1338) [`fe9767f`](https://github.com/utilitywarehouse/hearth/commit/fe9767f916975ba2e0ba8aea585858d8ea00a147) Thanks [@robphoenix](https://github.com/robphoenix)! - 💔 [BREAKING_CHANGE]: Remove pruned design tokens from React Native token exports
84
-
85
- Several unused design tokens have been removed from the React Native token exports
86
- to align with the updated design token set.
87
-
88
- **Tokens removed**:
89
-
90
- - `borderRadius.lg`
91
- - `color`: multiple shades pruned across all colour palettes (`blue`, `broadbandGreen`, `cashbackLilac`, `energyBlue`, `green`, `insuranceOrange`, `mobileRose`, `orange`, `piggyPink`, `purple`, `red`, `warmWhite`, `yellow`)
92
- - `font.size`: `50`, `75`, `600`, `700`, `800`, `900`, `1000`
93
- - `font.weight.heavy`
94
- - `letterSpacing`: `0`, `50`, `75`, `550`, `600`, `700`, `800`, `900`, `1000`
95
- - `lineHeight`: `50`, `75`, `100`, `900`, `1000`, `1100`, `1200`
96
- - `space['1000']`
97
-
98
- **Developer changes**:
99
-
100
- If you are referencing any of the removed tokens directly, replace them with the
101
- nearest available equivalent or remove the usage.
102
-
103
- For example:
104
-
105
- ```diff
106
- - borderRadius: tokens.borderRadius.lg,
107
- + borderRadius: tokens.borderRadius.md,
108
- ```
109
-
110
- ```diff
111
- - fontSize: tokens.font.size['50'],
112
- + fontSize: tokens.font.size['90'],
113
- ```
114
-
115
- ```diff
116
- - fontWeight: tokens.font.weight.heavy,
117
- + fontWeight: tokens.font.weight.bold,
118
- ```
119
-
120
- ### Patch Changes
121
-
122
- - [#1338](https://github.com/utilitywarehouse/hearth/pull/1338) [`fe9767f`](https://github.com/utilitywarehouse/hearth/commit/fe9767f916975ba2e0ba8aea585858d8ea00a147) Thanks [@robphoenix](https://github.com/robphoenix)! - 🌟 [FEATURE]: Add `xl` variant to `bodyText` typography tokens
123
-
124
- The `bodyText` typography scale now includes an `xl` variant across mobile,
125
- tablet, and desktop breakpoints.
126
-
127
- | Property | Value |
128
- | ------------------ | ----- |
129
- | `fontSize` | `20` |
130
- | `lineHeight` | `28` |
131
- | `paragraphSpacing` | `20` |
132
-
133
- ## 0.33.1
134
-
135
- ### Patch Changes
136
-
137
- - [#1311](https://github.com/utilitywarehouse/hearth/pull/1311) [`3d286c9`](https://github.com/utilitywarehouse/hearth/commit/3d286c97710a1483a054e4b19c2453920cda4598) Thanks [@robphoenix](https://github.com/robphoenix)! - 🧹 [HOUSEKEEPING]: Update token usage for Divider
138
-
139
- ## 0.33.0
140
-
141
- ### Minor Changes
142
-
143
- - [#1298](https://github.com/utilitywarehouse/hearth/pull/1298) [`43bf936`](https://github.com/utilitywarehouse/hearth/commit/43bf936fa03db109c669369cac6d0483877ae49a) Thanks [@robphoenix](https://github.com/robphoenix)! - 🧹 [HOUSEKEEPING]: Remove component color tokens in favour of semantic tokens
144
-
145
- Updated `TabsList` to use `theme.color.border.strong` and removed the
146
- `tabs.divider.color` component token (and other unused component color tokens)
147
- in favour of semantic tokens.
148
-
149
- ## 0.32.5
150
-
151
- ### Patch Changes
152
-
153
- - [#1261](https://github.com/utilitywarehouse/hearth/pull/1261) [`745df73`](https://github.com/utilitywarehouse/hearth/commit/745df73a245dfe89d07aae5bac14256a4ff89e0a) Thanks [@robphoenix](https://github.com/robphoenix)! - 🧹 [HOUSEKEEPING]: Update dependencies
154
-
155
- ## 0.32.4
156
-
157
- ### Patch Changes
158
-
159
- - [#1222](https://github.com/utilitywarehouse/hearth/pull/1222) [`3f35a43`](https://github.com/utilitywarehouse/hearth/commit/3f35a431ba4a0fae45cc640a62ea6cb53f85c384) Thanks [@Utakato](https://github.com/Utakato)! - 🌟 [FEATURE]: `Rating` component `emojis` variant
160
-
161
- The `Rating` component now supports an `emojis` variant that renders emoji faces
162
- instead of stars. When selected, the chosen emoji appears larger whilst
163
- unselected emojis become grayscale. Two static labels ("Very dissatisfied" /
164
- "Very satisfied") are displayed at the extremes.
165
-
166
- **Components affected**:
167
- - `Rating`
168
-
169
- **Developer changes**:
170
-
171
- ```tsx
172
- import { Rating } from '@utilitywarehouse/hearth-react-native';
173
-
174
- <Rating value={rating} onChange={setRating} variant="emojis" />;
175
- ```
176
-
177
- All existing props (`value`, `defaultValue`, `onChange`, `disabled`, `hideLabel`)
178
- work with the emoji variant. The new `rangeLabels` prop allows overriding the
179
- endpoint labels (defaulting to "Very dissatisfied" / "Very satisfied"):
180
-
181
- ```tsx
182
- <Rating variant="emojis" rangeLabels={{ low: 'Not at all', high: 'Absolutely' }} />
183
- ```
184
-
185
- ## 0.32.3
186
-
187
- ### Patch Changes
188
-
189
- - [#1192](https://github.com/utilitywarehouse/hearth/pull/1192) [`a74bf02`](https://github.com/utilitywarehouse/hearth/commit/a74bf02c58c12e1b42351e0d7f8e3e79ea0acbd6) Thanks [@robphoenix](https://github.com/robphoenix)! - 🧹 [HOUSEKEEPING]: Fix dependencies and types
190
-
191
- ## 0.32.2
192
-
193
- ### Patch Changes
194
-
195
- - [#1164](https://github.com/utilitywarehouse/hearth/pull/1164) [`c8848d9`](https://github.com/utilitywarehouse/hearth/commit/c8848d9b01611e4c25b9caef7f211b8c623432c4) Thanks [@MichalCiesliczka](https://github.com/MichalCiesliczka)! - 🐛 [FIX]: Badge and Tabs now adapt their height for larger accessibility font sizes.
196
-
197
- When larger text sizes are enabled (for example in iOS accessibility settings),
198
- Badge and Tabs no longer clip text within fixed-height layouts. Their containers
199
- now grow to fit scaled text while keeping the default visual sizing at standard
200
- font settings.
201
-
202
- **Components affected**:
203
- - Badge
204
- - Tab
205
-
206
- **Developer changes**:
207
-
208
- No code changes are required.
209
-
210
- - Updated dependencies [[`e4167f2`](https://github.com/utilitywarehouse/hearth/commit/e4167f27325dacc0cbc1feae456697387162aa77)]:
211
- - @utilitywarehouse/hearth-react-native-icons@0.8.1
212
-
213
- ## 0.32.1
214
-
215
- ### Patch Changes
216
-
217
- - [#1144](https://github.com/utilitywarehouse/hearth/pull/1144) [`85459f2`](https://github.com/utilitywarehouse/hearth/commit/85459f2f4d7dcd8a99685a11dcda070530cee8dc) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Add the missing `highlight` color scheme support across the `Banner` and `Card` components.
218
-
219
- ## 0.32.0
220
-
221
- ### Minor Changes
222
-
223
- - [#1134](https://github.com/utilitywarehouse/hearth/pull/1134) [`8824186`](https://github.com/utilitywarehouse/hearth/commit/ebccb55afebcbd47508d7992614b2495c7839cc6) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `Roundel` status indicator component.
224
-
225
- `Roundel` is a compact status indicator with `success`, `pending`, and `error` variants, intended for inline state cues.
226
-
227
- **Components affected**:
228
-
229
- - `Roundel`
230
-
231
- **Developer changes**:
232
-
233
- Import and use `Roundel` from `@utilitywarehouse/hearth-react-native`:
234
-
235
- ```tsx
236
- import { Roundel } from '@utilitywarehouse/hearth-react-native';
237
-
238
- <Roundel variant="success" />;
239
- ```
240
-
241
- - [#1132](https://github.com/utilitywarehouse/hearth/pull/1132) [`8824186`](https://github.com/utilitywarehouse/hearth/commit/882418633ee8c3a11e204329d07363dc411996dc) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add the `Rating` component
242
-
243
- **Components affected**:
244
- - `Rating`
245
-
246
- **Developer changes**:
247
-
248
- ```tsx
249
- import { Rating } from '@utilitywarehouse/hearth-react-native';
250
-
251
- const MyComponent = () => <Rating value={3} />;
252
- ```
253
-
254
- - [#1129](https://github.com/utilitywarehouse/hearth/pull/1129) [`ec385a8`](https://github.com/utilitywarehouse/hearth/commit/ec385a8185bfa4ec7f4d5f1366ecc069a98cbba8) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `StepperInput` for controlled numeric input with increment and decrement buttons.
255
-
256
- `StepperInput` is a new React Native form component for adjusting numeric values with direct text entry and dedicated step controls. It supports min and max bounds, configurable step size, validation and helper text through `FormField`, and an opt-in `focusInputOnStepPress` prop for keyboard-first flows.
257
-
258
- **Components affected**:
259
- - `StepperInput`
260
-
261
- **Developer changes**:
262
-
263
- Import and use `StepperInput` from `@utilitywarehouse/hearth-react-native`:
264
-
265
- ```tsx
266
- import { StepperInput } from '@utilitywarehouse/hearth-react-native';
267
-
268
- <StepperInput label="Guests" min={1} max={10} value={value} onChangeText={setValue} />;
269
- ```
270
-
271
- ### Patch Changes
272
-
273
- - [#1133](https://github.com/utilitywarehouse/hearth/pull/1133) [`5cae98e`](https://github.com/utilitywarehouse/hearth/commit/5cae98e640a708a7d99eaf0395b7b52e71b8e6ec) Thanks [@jordmccord](https://github.com/jordmccord)! - 💅 [ENHANCEMENT]: Add a `defaultHeight` prop to `Textarea` so the initial height can be configured.
274
-
275
- ## 0.31.1
276
-
277
- ### Patch Changes
278
-
279
- - [#1119](https://github.com/utilitywarehouse/hearth/pull/1119) [`19415d4`](https://github.com/utilitywarehouse/hearth/commit/19415d4d54458b3fb019df6647b9a5e4c375b672) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Refresh dark mode tokens across components and semantic colors.
280
-
281
- Dark mode color tokens have been updated across semantic and component tokens to improve contrast and visual consistency. This also fixes `TableHeaderCell` text colors so purple and white header variants resolve the correct foreground token.
282
-
283
- **Components affected**:
284
- - dark mode tokens
285
- - `TableHeaderCell`
286
-
287
- **Developer changes**:
288
-
289
- No code changes are required unless you rely on the previous dark mode token values or visual snapshots.
290
-
291
- ## 0.31.0
292
-
293
- ### Minor Changes
294
-
295
- - [#1108](https://github.com/utilitywarehouse/hearth/pull/1108) [`8c2f3b5`](https://github.com/utilitywarehouse/hearth/commit/8c2f3b5334de83a7dd799b857394a34209b748e7) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add margin, padding, and layout utility props to `Flex`.
296
-
297
- `Flex` now exposes the shared margin and padding utility props, along with the existing layout utility prop surface, so it can be used more like other layout primitives such as `Card`.
298
-
299
- **Component affected**:
300
- - `Flex`
301
-
302
- **Developer changes**:
303
-
304
- You can now apply spacing and layout utility props directly on `Flex`:
305
-
306
- ```tsx
307
- <Flex direction="row" spacing="md" padding="300" marginTop="200" flex={1}>
308
- <Button>Back</Button>
309
- <Button>Continue</Button>
310
- </Flex>
311
- ```
312
-
313
- - [#1104](https://github.com/utilitywarehouse/hearth/pull/1104) [`91feeab`](https://github.com/utilitywarehouse/hearth/commit/91feeab091ae6bf80e543f9196214066ce8b29b0) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add custom trigger content options to `ExpandableCard`.
314
-
315
- `ExpandableCard` now supports a `triggerContent` prop for replacing the default trigger layout while keeping the chevron. `ExpandableCardTrigger` also now supports `children` with an optional `showChevron` prop, so you can fully compose the trigger content yourself and still opt in to the built-in expand/collapse chevron.
316
-
317
- **Components affected**:
318
- - `ExpandableCard`
319
- - `ExpandableCardTrigger`
320
-
321
- **Developer changes**:
322
-
323
- Use `triggerContent` when you want a single prop on `ExpandableCard` to replace the standard trigger content:
324
-
325
- ```tsx
326
- <ExpandableCard
327
- triggerContent={<BodyText weight="semibold">March bill ready</BodyText>}
328
- expandedContent={<BodyText>Balance: £89.50</BodyText>}
329
- />
330
- ```
331
-
332
- Use `ExpandableCardTrigger` children when you want full control over the trigger structure. Add `showChevron` if you still want the built-in chevron:
333
-
334
- ```tsx
335
- <ExpandableCardTrigger isExpanded={expanded} onPress={toggleExpanded} showChevron>
336
- <ExpandableCardContent>
337
- <ExpandableCardText>Custom trigger</ExpandableCardText>
338
- </ExpandableCardContent>
339
- </ExpandableCardTrigger>
340
- ```
341
-
342
- - [#1109](https://github.com/utilitywarehouse/hearth/pull/1109) [`8215550`](https://github.com/utilitywarehouse/hearth/commit/8215550745d08a8b4c18a6902e39d3199018092a) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `numberOfLines` support to `Badge` text.
343
-
344
- `Badge` now renders its text content on a single line by default and supports a new `numberOfLines` prop when you want to allow more lines.
345
-
346
- **Components affected**:
347
- - `Badge`
348
-
349
- **Developer changes**:
350
-
351
- No changes are required unless you want a `Badge` to wrap onto more than one line. To opt in, pass `numberOfLines`:
352
-
353
- ```tsx
354
- <Badge numberOfLines={2} text="Long badge text that can wrap onto a second line" />
355
- ```
356
-
357
- - [#1108](https://github.com/utilitywarehouse/hearth/pull/1108) [`8c2f3b5`](https://github.com/utilitywarehouse/hearth/commit/8c2f3b5334de83a7dd799b857394a34209b748e7) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add custom footer support to `Modal` and `NavModal`.
358
-
359
- `Modal` and `NavModal` now support a `footer` prop for replacing the built-in primary and secondary action buttons with custom content, plus a `footerStyle` prop for styling the footer container. When `footer` is provided, the button props are now disallowed at the type level.
360
-
361
- **Components affected**:
362
- - `Modal`
363
- - `NavModal`
364
-
365
- **Developer changes**:
366
-
367
- Use `footer` when you need a custom footer layout, such as horizontal actions or extra decoration:
368
-
369
- ```tsx
370
- <Modal
371
- heading="Update billing details"
372
- footer={
373
- <Flex direction="row" spacing="md" pt="250">
374
- <Button variant="outline" colorScheme="functional" style={{ flex: 1 }}>
375
- Cancel
376
- </Button>
377
- <Button style={{ flex: 1 }}>Save changes</Button>
378
- </Flex>
379
- }
380
- footerStyle={{
381
- boxShadow: '0px -6px 12px rgba(16, 24, 40, 0.12)',
382
- }}
383
- />
384
- ```
385
-
386
- - [#1103](https://github.com/utilitywarehouse/hearth/pull/1103) [`e375a44`](https://github.com/utilitywarehouse/hearth/commit/e375a442c507da1807e49f4d78e44edfff51d245) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add optional vertical resizing to `Textarea`.
387
-
388
- `Textarea` now supports a new `resizable` prop that adds a bottom-right drag handle so people can increase the field height when they need more space for longer content.
389
-
390
- **Components affected**:
391
- - `Textarea`
392
-
393
- **Developer changes**:
394
-
395
- No changes are required unless you want to enable resizing for a textarea. To opt in, pass the new `resizable` prop:
396
-
397
- ```tsx
398
- <Textarea
399
- label="Additional notes"
400
- helperText="Drag the corner handle to resize"
401
- placeholder="Enter your text here..."
402
- resizable
403
- />
404
- ```
405
-
406
- - [#1108](https://github.com/utilitywarehouse/hearth/pull/1108) [`8c2f3b5`](https://github.com/utilitywarehouse/hearth/commit/8c2f3b5334de83a7dd799b857394a34209b748e7) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add flex utility props to `Container`.
407
-
408
- `Container` now exposes shared flex layout utility props, allowing layout properties such as `flex`, `alignItems`, `justifyContent`, and `flexDirection` to be applied directly through its public prop API.
409
-
410
- **Component affected**:
411
- - `Container`
412
-
413
- **Developer changes**:
414
-
415
- You can now combine `Container`'s existing spacing props with flex layout props:
416
-
417
- ```tsx
418
- <Container flex={1} justifyContent="center" alignItems="stretch" gap="200">
419
- <BodyText>Content</BodyText>
420
- </Container>
421
- ```
422
-
423
- ### Patch Changes
424
-
425
- - [#1103](https://github.com/utilitywarehouse/hearth/pull/1103) [`e375a44`](https://github.com/utilitywarehouse/hearth/commit/e375a442c507da1807e49f4d78e44edfff51d245) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Render FormField optional text with regular weight instead of inheriting the label weight.
426
-
427
- This fixes FormField labels that append `(Optional)` so the optional text no longer inherits the main label weight.
428
-
429
- **Components affected**:
430
- - `FormField`
431
- - `Textarea`
432
- - `Input`
433
-
434
- **Developer changes**:
435
-
436
- No changes are required.
437
-
438
- - [#1104](https://github.com/utilitywarehouse/hearth/pull/1104) [`91feeab`](https://github.com/utilitywarehouse/hearth/commit/91feeab091ae6bf80e543f9196214066ce8b29b0) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: `ExpandableCard` heading font size and weight
439
-
440
- ## 0.30.4
441
-
442
- ### Patch Changes
443
-
444
- - [#1096](https://github.com/utilitywarehouse/hearth/pull/1096) [`6fd9021`](https://github.com/utilitywarehouse/hearth/commit/6fd9021a91ef38b56b78755965515a0807b34fa1) Thanks [@fillyD](https://github.com/fillyD)! - 🐛 [FIX]: Restore visibility of bottom sheet content in iOS accessibility tree, enabling automated tests to interact with `Select` options
445
-
446
- ## 0.30.3
447
-
448
- ### Patch Changes
449
-
450
- - [#1094](https://github.com/utilitywarehouse/hearth/pull/1094) [`a9d8e66`](https://github.com/utilitywarehouse/hearth/commit/a9d8e660b7efa23c7a573af2658fc10ab6c043b9) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Make horizontal pressable `Banner` content flex correctly on native and web.
451
-
452
- This fixes horizontal pressable `Banner` layouts where the content area did not expand consistently, which could misplace the chevron and action content.
453
-
454
- **Components affected**:
455
- - `Banner`
456
-
457
- **Developer changes**:
458
-
459
- No changes are required.
460
-
461
- ## 0.30.2
462
-
463
- ### Patch Changes
464
-
465
- - [#1090](https://github.com/utilitywarehouse/hearth/pull/1090) [`1420244`](https://github.com/utilitywarehouse/hearth/commit/1420244fbc23c8a755f9249f8b39cb094a865cea) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `alignChevron` to `Banner` for horizontal pressable layouts.
466
-
467
- `Banner` now supports an `alignChevron` prop to control the chevron alignment when `onPress` is used in the horizontal layout. Use `'start'`, `'center'`, or `'end'` to match the chevron position to the content layout.
468
-
469
- **Components affected**:
470
- - `Banner`
471
-
472
- **Developer changes**:
473
-
474
- No changes are required unless you want to override the default centred chevron alignment.
475
-
476
- ## 0.30.1
477
-
478
- ### Patch Changes
479
-
480
- - [#1081](https://github.com/utilitywarehouse/hearth/pull/1081) [`5db8538`](https://github.com/utilitywarehouse/hearth/commit/5db8538b69115a23289f0038f681fc8b87a310c4) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Correct `NavModal` safe area handling across sheet and full-screen presentations.
481
-
482
- `NavModal` now applies safe area insets directly within the component layout, which fixes padding in full-screen presentations and keeps sheet-style presentations aligned with the modal footer behaviour.
483
-
484
- **Developer changes**:
485
-
486
- If you need to disable the inset padding, use the `useSafeAreaInsets` prop. The old `safeAreaViewProps` escape hatch is no longer available.
487
-
488
- ## 0.30.0
489
-
490
- ### Minor Changes
491
-
492
- - [#1072](https://github.com/utilitywarehouse/hearth/pull/1072) [`55f0095`](https://github.com/utilitywarehouse/hearth/commit/55f009576ba55081de358bccc21691861ddd7c33) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `loadingDescription` support to `Modal` and `NavModal`
493
-
494
- `Modal` and `NavModal` now accept a `loadingDescription` prop to render supporting text beneath the spinner while `loading` is true. This makes it easier to give users more context during loading states without building custom loading content.
495
-
496
- **Components affected**:
497
- - `Modal`
498
- - `NavModal`
499
-
500
- **Developer changes**:
501
-
502
- No changes are required for existing usage. To show supporting text in a loading state, pass `loadingDescription` alongside `loading` and, if needed, `loadingHeading`.
503
-
504
- ### Patch Changes
505
-
506
- - [#1070](https://github.com/utilitywarehouse/hearth/pull/1070) [`93c042c`](https://github.com/utilitywarehouse/hearth/commit/93c042c7772ab298e2ea4888a9777e8176453098) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Standardise numeric value typography across list-based components.
507
-
508
- Numeric values in `DescriptionListItem`, `ExpandableCard`, and `ListItem` now render with semibold `BodyText` instead of `DetailText`, aligning them with the updated content hierarchy used elsewhere in the library.
509
-
510
- **Components affected**:
511
- - `DescriptionListItem`
512
- - `ExpandableCard`
513
- - `ListItem`
514
-
515
- **Developer changes**:
516
-
517
- No changes are required.
518
-
519
- - [#1073](https://github.com/utilitywarehouse/hearth/pull/1073) [`9759622`](https://github.com/utilitywarehouse/hearth/commit/975962229137dd196e5f72a04037a8f181907818) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Announce `Heading` as a header for assistive technologies.
520
-
521
- `Heading` now sets `accessibilityRole="header"` automatically so VoiceOver and TalkBack can identify headings as part of the screen structure.
522
-
523
- **Components affected**:
524
- - `Heading`
525
-
526
- **Developer changes**:
527
-
528
- No changes are required.
529
-
530
- - [#1074](https://github.com/utilitywarehouse/hearth/pull/1074) [`95fe19e`](https://github.com/utilitywarehouse/hearth/commit/95fe19e6328bf652ff3ac1b2c723e1389fc59936) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Improve accessibility roles for `List`, `ListItem`, and `ListAction`
531
-
532
- `List` now defaults to `accessibilityRole="list"`, `ListAction` now defaults to `accessibilityRole="button"`, and `ListItem` respects an explicitly provided `accessibilityRole` instead of always forcing button semantics when `onPress` is set.
533
-
534
- **Components affected**:
535
- - `List`
536
- - `ListItem`
537
- - `ListAction`
538
-
539
- **Developer changes**:
540
-
541
- No changes are required unless you want a tappable `ListItem` to be announced as something other than a button. In that case, pass `accessibilityRole` explicitly.
542
-
543
- ## 0.29.2
544
-
545
- ### Patch Changes
546
-
547
- - [#1067](https://github.com/utilitywarehouse/hearth/pull/1067) [`893cbfd`](https://github.com/utilitywarehouse/hearth/commit/893cbfd1bf090b8b75df6f58f2babaf8ba1e0033) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add a `useSafeAreaInsets` prop to `BottomSheetModalProvider` to control Hearth's bottom-sheet safe-area spacing.
548
-
549
- Bottom-sheet wrappers such as `BottomSheetView`, `BottomSheetScrollView`, `BottomSheetFlatList`, and components that render `SafeAreaView` inside a bottom sheet now respect `BottomSheetModalProvider` configuration.
550
-
551
- **Components affected**:
552
- - `BottomSheetModalProvider`
553
- - `BottomSheetView`
554
- - `BottomSheetScrollView`
555
- - `BottomSheetFlatList`
556
- - `Modal`
557
- - `Select`
558
- - `Combobox`
559
-
560
- **Developer changes**:
561
-
562
- No changes are required if you want the current behaviour. If your app already applies its own safe-area padding around bottom-sheet content, opt out like this:
563
-
564
- ```tsx
565
- <BottomSheetModalProvider useSafeAreaInsets={false}>
566
- {/* Your app content */}
567
- </BottomSheetModalProvider>
568
- ```
569
-
570
- ## 0.29.1
571
-
572
- ### Patch Changes
573
-
574
- - [#1062](https://github.com/utilitywarehouse/hearth/pull/1062) [`0da3ffe`](https://github.com/utilitywarehouse/hearth/commit/0da3ffe12691a4287694ae9fcb2290d459e3c041) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Respect the selected `NavModal` background style
575
-
576
- Fixed an issue where `NavModal` always rendered its inner content with the default surface background, which prevented the `background="brand"` treatment from being applied correctly.
577
-
578
- **Components affected**:
579
- - `NavModal`
580
-
581
- **Developer changes**:
582
-
583
- No changes are required.
584
-
585
- ## 0.29.0
586
-
587
- ### Minor Changes
588
-
589
- - [#1060](https://github.com/utilitywarehouse/hearth/pull/1060) [`05d38f9`](https://github.com/utilitywarehouse/hearth/commit/05d38f9414fec6d6b4a0733829b4d290d96fccae) Thanks [@jordmccord](https://github.com/jordmccord)! - 💔 [BREAKING CHANGE]: Extract navigation-presented modal behaviour into `NavModal`
590
-
591
- `Modal` now only supports the bottom-sheet modal behaviour. The React Navigation screen-based API that was previously exposed through `inNavModal`, `background`, and `scrollable` has moved to the new `NavModal` component.
592
-
593
- `NavModal` also adds a `presentation` prop so the component can match the React Navigation screen presentation style for sheet-style and full-screen modal routes.
594
-
595
- The package-owned `SafeAreaView` component has also been removed in favour of the `react-native-safe-area-context` `SafeAreaView`. Hearth now re-exports that implementation from the package root.
596
-
597
- **Components affected**:
598
- - `Modal`
599
- - `NavModal`
600
- - `SafeAreaView`
601
-
602
- **Developer changes**:
603
-
604
- Update navigation modal screens to use `NavModal` instead of `Modal`:
605
-
606
- ```diff
607
- - import { Modal } from '@utilitywarehouse/hearth-react-native';
608
- + import { NavModal, type NavModalRef } from '@utilitywarehouse/hearth-react-native';
609
-
610
- - const modalRef = useRef<Modal>(null);
611
- + const modalRef = useRef<NavModalRef>(null);
612
-
613
- - <Modal inNavModal background="brand" scrollable={false}>
614
- + <NavModal background="brand" scrollable={false} presentation="modal">
615
- {/* content */}
616
- - </Modal>
617
- + </NavModal>
618
- ```
619
-
620
- If you are using the bottom-sheet modal API, no changes are required.
621
-
622
- If you were importing the old component from the component path, update it to use the package root re-export or import directly from `react-native-safe-area-context`:
623
-
624
- ```diff
625
- - import { SafeAreaView } from '@utilitywarehouse/hearth-react-native';
626
- + import { SafeAreaView } from 'react-native-safe-area-context';
627
- ```
628
-
629
- ## 0.28.6
630
-
631
- ### Patch Changes
632
-
633
- - [#1050](https://github.com/utilitywarehouse/hearth/pull/1050) [`13d2cca`](https://github.com/utilitywarehouse/hearth/commit/13d2ccab3abda60a35202847e3895017496c4dcf) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Expand react peer dependency to allow any React 19.x version for compatibility with all React 19 releases.
634
-
635
- ## 0.28.5
636
-
637
- ### Patch Changes
638
-
639
- - [#1045](https://github.com/utilitywarehouse/hearth/pull/1045) [`3778061`](https://github.com/utilitywarehouse/hearth/commit/37780613890221368edb74c0ce83b8bf3d03e5b3) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: The `BannerIllustration` now stays centered in vertical banners and no longer inherits image border styling or horizontal stretching.
640
-
641
- ## 0.28.4
642
-
643
- ### Patch Changes
644
-
645
- - [#1034](https://github.com/utilitywarehouse/hearth/pull/1034) [`76598eb`](https://github.com/utilitywarehouse/hearth/commit/76598eb0374c79f9e6c2c23c421f2b9602fbb113) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: The `CheckboxTile` spacing now uses the tile gap token instead of the base checkbox gap token.
646
-
647
- - [#1034](https://github.com/utilitywarehouse/hearth/pull/1034) [`76598eb`](https://github.com/utilitywarehouse/hearth/commit/76598eb0374c79f9e6c2c23c421f2b9602fbb113) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: The `Combobox` trigger outline so it is only shown when the control is focused.
648
-
649
- - [#1034](https://github.com/utilitywarehouse/hearth/pull/1034) [`76598eb`](https://github.com/utilitywarehouse/hearth/commit/76598eb0374c79f9e6c2c23c421f2b9602fbb113) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: The `RadioTile` spacing now uses the tile gap token instead of the base radio gap token.
650
-
651
- - [#1036](https://github.com/utilitywarehouse/hearth/pull/1036) [`b7636e6`](https://github.com/utilitywarehouse/hearth/commit/b7636e6185879264e8d929c3be44fd0d1a354c22) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: The `CurrencyInput` font size.
652
-
653
- - [#1039](https://github.com/utilitywarehouse/hearth/pull/1039) [`3a895bc`](https://github.com/utilitywarehouse/hearth/commit/3a895bcb8dcceb7d55a454ec63de9256d2d8322f) Thanks [@jordmccord](https://github.com/jordmccord)! - 💅 [ENHANCEMENT]: Align all `Radio` and `Checkbox` default and tile gap sizes.
654
-
655
- - [#1035](https://github.com/utilitywarehouse/hearth/pull/1035) [`01633a7`](https://github.com/utilitywarehouse/hearth/commit/01633a73153563d9b2286f42b764ad771e48ff82) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: The `Pill` component no longer applies extra vertical padding and fixes vertical alignment.
656
-
657
- ## 0.28.3
658
-
659
- ### Patch Changes
660
-
661
- - [#1028](https://github.com/utilitywarehouse/hearth/pull/1028) [`dccffe1`](https://github.com/utilitywarehouse/hearth/commit/dccffe16342b22e58078dfc0aadfe9a482bfcc74) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: The `Combobox` trigger outline so it is only shown when the control is focused.
662
-
663
- ## 0.28.2
664
-
665
- ### Patch Changes
666
-
667
- - [#1024](https://github.com/utilitywarehouse/hearth/pull/1024) [`23b6767`](https://github.com/utilitywarehouse/hearth/commit/23b67672b89198a483ddcef88f9c6207b684c4d9) Thanks [@fillyD](https://github.com/fillyD)! - 🐛 [FIX]: Adds missing `testID` to `Select` component
668
-
669
- ## 0.28.1
670
-
671
- ### Patch Changes
672
-
673
- - [#1018](https://github.com/utilitywarehouse/hearth/pull/1018) [`1c5e02e`](https://github.com/utilitywarehouse/hearth/commit/1c5e02ea4b61329e7c55e52f9aa4ae44abc0da23) Thanks [@fillyD](https://github.com/fillyD)! - 🐛 [FIX]: Adds missing `testID` to `Select`, `SelectOption` and `VerificationInput` component
674
-
675
- ## 0.28.0
676
-
677
- ### Minor Changes
678
-
679
- - [#1014](https://github.com/utilitywarehouse/hearth/pull/1014) [`c10ff82`](https://github.com/utilitywarehouse/hearth/commit/c10ff82243265217acd95f687d48d803b3c7a4bd) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `Combobox` and `SafeAreaView` to the React Native library
680
-
681
- The React Native package now includes a `Combobox` component for searchable selection in a bottom sheet, plus a `SafeAreaView` primitive that applies Unistyles runtime insets only when a view actually overlaps a screen edge. `Combobox` supports the built-in options API for fixed lists, controlled search values for dynamic results, and custom bottom sheet content for cases where you need to bring your own `BottomSheetFlatList` or bespoke option layout. `Modal` now uses `SafeAreaView` in its full-screen navigation modal path so content like search inputs no longer sits behind the dynamic island on iOS.
682
-
683
- **Components affected**:
684
- - `Combobox`
685
- - `ComboboxOption`
686
- - `SafeAreaView`
687
- - `Modal`
688
-
689
- **Developer changes**:
690
-
691
- Import the new components from `@utilitywarehouse/hearth-react-native` and choose the API that fits your layout. Use `options` for straightforward searchable lists, render custom sheet content when you need virtualised or dynamic results, and wrap full-screen content in `SafeAreaView` when it should only pick up edge insets if it actually touches that edge.
692
-
693
- - [`8e37595`](https://github.com/utilitywarehouse/hearth/commit/8e375958559357ce5c1703505fa7438887d9e18e) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `Pagination` component
694
-
695
- The package now includes a `Pagination` component for moving between pages of content. It supports numbered pagination, a condensed layout for smaller spaces, optional skip buttons for jumping to the first and last page, and controlled page state so it can be wired into lists, tables, or other paged views.
696
-
697
- **Components affected**:
698
- - `Pagination`
699
-
700
- **Developer changes**:
701
-
702
- Import `Pagination` from `@utilitywarehouse/hearth-react-native` and control the current page in your screen or feature state.
703
-
704
- ```tsx
705
- import { useState } from 'react';
706
- import { Pagination } from '@utilitywarehouse/hearth-react-native';
707
-
708
- const MyComponent = () => {
709
- const [page, setPage] = useState(1);
710
-
711
- return <Pagination currentPage={page} onPageChange={setPage} totalPages={10} />;
712
- };
713
- ```
714
-
715
- - [`8e37595`](https://github.com/utilitywarehouse/hearth/commit/8e375958559357ce5c1703505fa7438887d9e18e) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `Table` component
716
-
717
- The package now includes a composable `Table` API for presenting structured data with headers, rows, cells, optional card-style containers, horizontal scrolling for narrow viewports, configurable column widths, and pagination support through `TablePagination`. Header cells support trailing actions such as sort controls, and the API is split into smaller building blocks so layouts can be assembled to fit different datasets.
718
-
719
- **Components affected**:
720
- - `Table`
721
- - `TableHeader`
722
- - `TableHeaderCell`
723
- - `TableBody`
724
- - `TableRow`
725
- - `TableCell`
726
- - `TablePagination`
727
-
728
- **Developer changes**:
729
-
730
- Import the table primitives from `@utilitywarehouse/hearth-react-native` and compose them to match your data shape. Add `columnWidths` when you need fixed or weighted columns, and pass `pagination` when rows should be paged.
731
-
732
- ```tsx
733
- import {
734
- Table,
735
- TableBody,
736
- TableCell,
737
- TableHeader,
738
- TableHeaderCell,
739
- TableRow,
740
- } from '@utilitywarehouse/hearth-react-native';
741
-
742
- const MyComponent = () => (
743
- <Table columnWidths={[180, '2fr', '1fr']} container="subtle">
744
- <TableHeader color="purple">
745
- <TableHeaderCell>Name</TableHeaderCell>
746
- <TableHeaderCell>Email</TableHeaderCell>
747
- <TableHeaderCell>Status</TableHeaderCell>
748
- </TableHeader>
749
- <TableBody>
750
- <TableRow>
751
- <TableHeaderCell row>Alex Morgan</TableHeaderCell>
752
- <TableCell>alex@example.com</TableCell>
753
- <TableCell>Active</TableCell>
754
- </TableRow>
755
- </TableBody>
756
- </Table>
757
- );
758
- ```
759
-
760
- - [#1016](https://github.com/utilitywarehouse/hearth/pull/1016) [`33baa9e`](https://github.com/utilitywarehouse/hearth/commit/33baa9e8edb091bbd1d17c9a3838352a7f1b87ea) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Adds `Timeline` and `TimelineItem`
761
-
762
- The package now includes `Timeline` and `TimelineItem` components for showing a sequence of static stops or progress steps. The new API supports labelled items, optional helper text, progress states for complete or active steps, and custom content within an item when you need to show extra context or actions.
763
-
764
- **Components affected**:
765
- - `Timeline`
766
- - `TimelineItem`
767
-
768
- **Developer changes**:
769
-
770
- Import `Timeline` and `TimelineItem` from `@utilitywarehouse/hearth-react-native`. Use `variant="static"` for simple ordered events, or `variant="progress"` with item `state` values to communicate step progress.
771
-
772
- ```tsx
773
- import { Timeline, TimelineItem } from '@utilitywarehouse/hearth-react-native';
774
-
775
- const MyComponent = () => (
776
- <Timeline variant="progress">
777
- <TimelineItem label="Ordered" helperText="We have received your order" state="complete" />
778
- <TimelineItem label="Packed" helperText="Your items are ready" state="complete" />
779
- <TimelineItem label="Out for delivery" helperText="Arriving today" state="active" />
780
- <TimelineItem label="Delivered" helperText="Pending" state="incomplete" />
781
- </Timeline>
782
- );
783
- ```
784
-
785
- ## 0.27.3
786
-
787
- ### Patch Changes
788
-
789
- - [#1006](https://github.com/utilitywarehouse/hearth/pull/1006) [`1996112`](https://github.com/utilitywarehouse/hearth/commit/1996112864146e86972ef6b9b07a8be5a72b552f) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Make `paddingNone` remove horizontal padding for ghost buttons in `md` size
790
-
791
- Fixed an issue where setting `paddingNone` on a ghost button did not remove horizontal padding when using `md` size. The prop now removes horizontal padding for both `sm` and `md` ghost buttons.
792
-
793
- **Components affected**:
794
- - `Button`
795
-
796
- **Developer changes**:
797
-
798
- No changes required.
799
-
800
- - [#1012](https://github.com/utilitywarehouse/hearth/pull/1012) [`4fda116`](https://github.com/utilitywarehouse/hearth/commit/4fda116c2a1bec383df7e630180ab57166ab9da4) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Prevent outlines from being clipped for scrollable children in `Modal`
801
-
802
- Fixed an issue in in-nav modals where child components with outlines could be visually clipped at the horizontal edges when content was scrollable.
803
-
804
- **Components affected**:
805
- - `Modal`
806
-
807
- **Developer changes**:
808
-
809
- No changes required.
810
-
811
- - [#1012](https://github.com/utilitywarehouse/hearth/pull/1012) [`4fda116`](https://github.com/utilitywarehouse/hearth/commit/4fda116c2a1bec383df7e630180ab57166ab9da4) Thanks [@jordmccord](https://github.com/jordmccord)! - 💅 [ENHANCEMENT]: Update horizontal padding values for scrollable in-nav `Modal` content
812
-
813
- Adjusted horizontal padding behaviour in scrollable in-nav modals to preserve child outlines while keeping visual spacing consistent.
814
-
815
- **Components affected**:
816
- - `Modal`
817
-
818
- **Developer changes**:
819
-
820
- No changes required.
821
-
822
- - [#1009](https://github.com/utilitywarehouse/hearth/pull/1009) [`3d65ef2`](https://github.com/utilitywarehouse/hearth/commit/3d65ef2f8f7701b128a9c679f1910cd3d0f5c0c3) Thanks [@fillyD](https://github.com/fillyD)! - 🐛 [FIX]: testID for `List` component
823
-
824
- ## 0.27.2
825
-
826
- ### Patch Changes
827
-
828
- - [#1003](https://github.com/utilitywarehouse/hearth/pull/1003) [`cdb95ea`](https://github.com/utilitywarehouse/hearth/commit/cdb95eabb279adaf348487ae3fb4a20e600e039e) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Correct `VerificationInput` focus progression after editing an empty slot
829
-
830
- Fixed an issue where entering a value after selecting an empty verification slot could move focus to the wrong slot. Focus now moves to the slot immediately after the one that was actually updated.
831
-
832
- **Components affected**:
833
- - `VerificationInput`
834
-
835
- **Developer changes**:
836
-
837
- No changes required.
838
-
839
- ## 0.27.1
840
-
841
- ### Patch Changes
842
-
843
- - [#990](https://github.com/utilitywarehouse/hearth/pull/990) [`958e0e1`](https://github.com/utilitywarehouse/hearth/commit/958e0e1a9d5451d1e11fecadc69ae3c5ad9d42ca) Thanks [@declanelcocks](https://github.com/declanelcocks)! - 🐛 [FIX]: Fix `Modal` layout when `inNavModal` and `stickyFooter={false}`.
844
-
845
- Corrects the container flex style for `inNavModal` modals with a non-sticky footer, where the UX was not great when scrolling.
846
-
847
- **Components affected**:
848
- - `Modal`
849
-
850
- **Developer changes**:
851
-
852
- No changes required.
853
-
854
- - [#992](https://github.com/utilitywarehouse/hearth/pull/992) [`2560b3d`](https://github.com/utilitywarehouse/hearth/commit/2560b3dcba7ed4981fad585628f96afd07d8de4f) Thanks [@jordmccord](https://github.com/jordmccord)! - 💅 [ENHANCEMENT]: Add optional leading `icon` support to `SegmentedControlOption`.
855
-
856
- This adds an optional `icon` prop to `SegmentedControlOption`, allowing icons to be displayed before option labels in segmented controls.
857
-
858
- Docs and stories were updated to include icon usage examples.
859
-
860
- **Components affected**:
861
- - `SegmentedControlOption`
862
-
863
- **Developer changes**:
864
-
865
- No changes required for existing usage.
866
-
867
- To use the new optional icon prop:
868
-
869
- ```tsx
870
- import { SegmentedControl, SegmentedControlOption } from '@utilitywarehouse/hearth-react-native';
871
- import { ElectricitySmallIcon } from '@utilitywarehouse/hearth-react-native-icons';
872
-
873
- <SegmentedControl defaultValue="energy">
874
- <SegmentedControlOption value="energy" icon={ElectricitySmallIcon}>
875
- Energy
876
- </SegmentedControlOption>
877
- <SegmentedControlOption value="broadband">Broadband</SegmentedControlOption>
878
- </SegmentedControl>;
879
- ```
880
-
881
- ## 0.27.0
882
-
883
- ### Minor Changes
884
-
885
- - [#987](https://github.com/utilitywarehouse/hearth/pull/987) [`eb962d2`](https://github.com/utilitywarehouse/hearth/commit/eb962d2f33b63fa3aeda0b291fd41ace90d04c41) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `SegmentedControl` and `SegmentedControlOption` components.
886
-
887
- This introduces a new segmented control component for switching between a small set of related options.
888
- The component includes controlled and uncontrolled usage, size variants (`sm`, `md`), animated selected indicator movement, and improved accessibility semantics for screen readers.
889
-
890
- **Components affected**:
891
- - `SegmentedControl`
892
- - `SegmentedControlOption`
893
-
894
- **Developer changes**:
895
-
896
- Import and compose the new components as follows:
897
-
898
- ```tsx
899
- import { SegmentedControl, SegmentedControlOption } from '@utilitywarehouse/hearth-react-native';
900
-
901
- <SegmentedControl defaultValue="day" size="sm">
902
- <SegmentedControlOption value="day">Day</SegmentedControlOption>
903
- <SegmentedControlOption value="week">Week</SegmentedControlOption>
904
- <SegmentedControlOption value="month">Month</SegmentedControlOption>
905
- </SegmentedControl>;
906
- ```
907
-
908
- ### Patch Changes
909
-
910
- - [#989](https://github.com/utilitywarehouse/hearth/pull/989) [`c97122e`](https://github.com/utilitywarehouse/hearth/commit/c97122eb429ec4adef656fb245a9256a5619df61) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Ensure horizontal `Banner` fills available width when `onPress` is not provided.
911
-
912
- Fixed a layout issue where a horizontal `Banner` without `onPress` could fail to stretch correctly within its parent container.
913
-
914
- **Components affected**:
915
- - `Banner`
916
-
917
- **Developer changes**:
918
-
919
- No changes required.
920
-
921
- ## 0.26.0
922
-
923
- ### Minor Changes
924
-
925
- - [#981](https://github.com/utilitywarehouse/hearth/pull/981) [`df56387`](https://github.com/utilitywarehouse/hearth/commit/df563872e6bf040d419f6c7fce2343ebe560edb9) Thanks [@declanelcocks](https://github.com/declanelcocks)! - 🌟 [ENHANCEMENT]: Improve `Modal` behaviour when used inside a React Navigation modal (`inNavModal`).
926
-
927
- The following improvements have been made to the `Modal` component when used in a navigation context with `inNavModal={true}`:
928
- - **`scrollable` prop**: Content is now rendered inside a `ScrollView` by default. Set `scrollable={false}` to opt out, for example when you need to centre content or use a custom layout.
929
- - **`stickyFooter` support**: The `stickyFooter` prop now works correctly in `inNavModal` mode.
930
- - **Auto full-screen detection**: When the modal fills the entire screen (e.g. with `presentation: 'fullScreenModal'`), the `fullscreen` style is applied automatically. The `fullscreen` prop is no longer available when `inNavModal` is `true`.
931
-
932
- **Components affected**:
933
- - `Modal`
934
-
935
- **Developer changes**:
936
-
937
- No changes are required for existing usage. If you were passing `fullscreen` alongside `inNavModal={true}`, remove the `fullscreen` prop — full-screen styling is now detected automatically:
938
-
939
- ```diff
940
- - <Modal inNavModal fullscreen>
941
- + <Modal inNavModal>
942
- ```
943
-
944
- To disable the default `ScrollView` wrapping in `inNavModal` mode:
945
-
946
- ```tsx
947
- <Modal inNavModal scrollable={false}>
948
- {/* custom layout */}
949
- </Modal>
950
- ```
951
-
952
- ## 0.25.0
953
-
954
- ### Minor Changes
955
-
956
- - [#982](https://github.com/utilitywarehouse/hearth/pull/982) [`506b388`](https://github.com/utilitywarehouse/hearth/commit/506b388ae1ef1065f013024a14bd9e2599a6442d) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `TimePicker` and `TimePickerInput` components with 12/24-hour support and minute intervals.
957
-
958
- Includes a shared time picker view, updated wheel behavior for native platforms, and polished visuals like gradient fades.
959
-
960
- **Components affected**:
961
- - `TimePicker`
962
- - `TimePickerInput`
963
-
964
- ```tsx
965
- import { TimePicker, TimePickerInput } from '@utilitywarehouse/hearth-react-native';
966
- import { useRef, useState } from 'react';
967
- import type { DateType } from '@utilitywarehouse/hearth-react-native';
968
-
969
- const Example = () => {
970
- const [value, setValue] = useState<DateType>();
971
- const pickerRef = useRef(null);
972
-
973
- return (
974
- <>
975
- <TimePickerInput
976
- value={value}
977
- onChange={({ date }) => setValue(date ?? undefined)}
978
- onClear={() => setValue(undefined)}
979
- timePickerProps={{ use12Hours: true, minuteInterval: 5 }}
980
- />
981
- <TimePicker
982
- ref={pickerRef}
983
- date={value}
984
- onChange={({ date }) => setValue(date)}
985
- use12Hours
986
- minuteInterval={5}
987
- />
988
- </>
989
- );
990
- };
991
- ```
992
-
993
- ## 0.24.0
994
-
995
- ### Minor Changes
996
-
997
- - [#977](https://github.com/utilitywarehouse/hearth/pull/977) [`9d2b534`](https://github.com/utilitywarehouse/hearth/commit/9d2b5348a5748cb613f537808069de2e86bd21d7) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `ProgressBar` component with linear and circular variants.
998
-
999
- **Developer changes**:
1000
-
1001
- Use `ProgressBar` with a default percentage label, or override the label to show a custom value:
1002
-
1003
- ```tsx
1004
- import { ProgressBar } from '@utilitywarehouse/hearth-react-native';
1005
-
1006
- <ProgressBar value={42} label="Uploading documents" />
1007
-
1008
- <ProgressBar
1009
- value={68}
1010
- max={100}
1011
- label="Data allowance"
1012
- variant="circular"
1013
- formatValueText={(value, { max }) => `${max - value}GB remaining`}
1014
- />
1015
- ```
1016
-
1017
- ### Patch Changes
1018
-
1019
- - [#978](https://github.com/utilitywarehouse/hearth/pull/978) [`26a1173`](https://github.com/utilitywarehouse/hearth/commit/26a11731a493a8b92ac2a3a183516376ab54663b) Thanks [@jordmccord](https://github.com/jordmccord)! - 💅 [ENHANCEMENT]: Tighten `Modal` prop types and fix brand background text styling
1020
-
1021
- Improves TypeScript safety so `stickyFooter` is not allowed when `inNavModal` is true, and `background` can only be set when `inNavModal` is true. Also ensures headings, body text, and button content are correctly inverted when using the brand background.
1022
-
1023
- **Components affected**:
1024
- - `Modal`
1025
-
1026
- **Developer changes**:
1027
- No changes required unless you were relying on invalid prop combinations.
1028
-
1029
- ## 0.23.0
1030
-
1031
- ### Minor Changes
1032
-
1033
- - [#975](https://github.com/utilitywarehouse/hearth/pull/975) [`102f04e`](https://github.com/utilitywarehouse/hearth/commit/102f04e0d560cf0faa21da5020c230e88e857251) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add a `background` option for Modal when used inside navigation modals
1034
-
1035
- Modal now supports a `background` prop with `default` and `brand` values. When `background="brand"` is used in a navigation modal, the buttons and close icon invert for contrast, and the content area is scrollable.
1036
-
1037
- **Components affected**:
1038
- - `Modal`
1039
-
1040
- **Developer changes**:
1041
-
1042
- No changes required. To opt in to the brand background:
1043
-
1044
- ```tsx
1045
- <Modal background="brand" inNavModal>
1046
- ...
1047
- </Modal>
1048
- ```
1049
-
1050
- ## 0.22.1
1051
-
1052
- ### Patch Changes
1053
-
1054
- - [#971](https://github.com/utilitywarehouse/hearth/pull/971) [`be1dfeb`](https://github.com/utilitywarehouse/hearth/commit/be1dfebd4b43f2df8ef6c5eaa42a88364e796479) Thanks [@jordmccord](https://github.com/jordmccord)! - 💅 [ENHANCEMENT]: Improve VerificationInput OTP handling and accessibility
1055
-
1056
- VerificationInput now uses a single hidden input to manage focus, selection, and paste behaviour across platforms, improving caret handling and bulk entry. Accessibility labels and hints are now derived from the form field to provide clearer screen reader output.
1057
-
1058
- **Components affected**:
1059
- - `VerificationInput`
1060
-
1061
- **Developer changes**:
1062
-
1063
- No changes required.
1064
-
1065
- ## 0.22.0
1066
-
1067
- ### Minor Changes
1068
-
1069
- - [#968](https://github.com/utilitywarehouse/hearth/pull/968) [`cee5811`](https://github.com/utilitywarehouse/hearth/commit/cee5811020af02fe754d8311ec8313c1793f108a) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `badge` support to Radio and Checkbox (including tiles).
1070
-
1071
- **Components affected**:
1072
- - `Radio`
1073
- - `RadioTile`
1074
- - `Checkbox`
1075
- - `CheckboxTile`
1076
-
1077
- **Developer changes**:
1078
- You can now pass a `badge` React node to render beneath helper text. No changes required unless you want to use the new prop.
1079
-
1080
- ### Patch Changes
1081
-
1082
- - [#966](https://github.com/utilitywarehouse/hearth/pull/966) [`4e9f3f0`](https://github.com/utilitywarehouse/hearth/commit/4e9f3f0284e50da5ba4e49e132dac745a1a8a68d) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Allow Card layout props and remove forced alignment
1083
-
1084
- Card now accepts flex layout and display props, and it no longer forces `alignItems: flex-start` on the root, so custom alignment works as expected.
1085
-
1086
- - [#969](https://github.com/utilitywarehouse/hearth/pull/969) [`c5c988b`](https://github.com/utilitywarehouse/hearth/commit/c5c988b65f1133b85b822037b086a524bc1255e3) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Render the Modal footer in navigation modals
1087
-
1088
- ## 0.21.0
1089
-
1090
- ### Minor Changes
1091
-
1092
- - [#917](https://github.com/utilitywarehouse/hearth/pull/917) [`6a016dc`](https://github.com/utilitywarehouse/hearth/commit/6a016dca0d1a06e40a877da15aced590d0c68112) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add 2xl size variant to Heading component
1093
-
1094
- The `Heading` component now supports a `2xl` size option, providing a larger heading size for prominent page titles and hero sections. This size is responsive across device sizes with appropriate font sizes and line heights for mobile, tablet, and desktop viewports.
1095
-
1096
- **Components affected**:
1097
- - `Heading`
1098
-
1099
- **Developer changes**:
1100
-
1101
- Use the new `2xl` size prop:
1102
-
1103
- ```tsx
1104
- <Heading size="2xl">Welcome to Hearth</Heading>
1105
- ```
1106
-
1107
- The `2xl` size will render with:
1108
- - Mobile: 44px font size, 52px line height
1109
- - Tablet: 44px font size, 52px line height
1110
- - Desktop: 54px font size, 62px line height
1111
-
1112
- - [#949](https://github.com/utilitywarehouse/hearth/pull/949) [`e1aacf0`](https://github.com/utilitywarehouse/hearth/commit/e1aacf06a58fd8358e9e7546ec35d8194a0d8d74) Thanks [@MichalCiesliczka](https://github.com/MichalCiesliczka)! - 🌟 [FEATURE]: Add segment refs to `DateInput` for programmatic focus control
1113
-
1114
- The `DateInput` component now supports direct refs for each segment input via `dayRef`, `monthRef`, and `yearRef`.
1115
- This makes it easier to move focus between segments from custom flows (for example, advancing focus after validation or from custom buttons).
1116
-
1117
- Documentation and Storybook examples are also updated to show how to use segment refs in real usage.
1118
-
1119
- **Components affected**:
1120
- - `DateInput`
1121
-
1122
- **Developer changes**:
1123
-
1124
- You can now pass refs to each segment and call `.focus()` when needed:
1125
-
1126
- ```tsx
1127
- import { useRef, useState } from 'react';
1128
- import { TextInput } from 'react-native';
1129
- import { Button, DateInput } from '@utilitywarehouse/hearth-react-native';
1130
-
1131
- const DateWithSegmentFocus = () => {
1132
- const [day, setDay] = useState('');
1133
- const [month, setMonth] = useState('');
1134
- const [year, setYear] = useState('');
1135
-
1136
- const dayRef = useRef<TextInput>(null);
1137
- const monthRef = useRef<TextInput>(null);
1138
- const yearRef = useRef<TextInput>(null);
1139
-
1140
- return (
1141
- <>
1142
- <DateInput
1143
- label="Date of birth"
1144
- dayValue={day}
1145
- monthValue={month}
1146
- yearValue={year}
1147
- onDayChange={setDay}
1148
- onMonthChange={setMonth}
1149
- onYearChange={setYear}
1150
- dayRef={dayRef}
1151
- monthRef={monthRef}
1152
- yearRef={yearRef}
1153
- />
1154
-
1155
- <Button onPress={() => monthRef.current?.focus()}>Focus month</Button>
1156
- </>
1157
- );
1158
- };
1159
- ```
1160
-
1161
- This is a non-breaking enhancement, so existing `DateInput` usage continues to work without any changes.
1162
-
1163
- - [#918](https://github.com/utilitywarehouse/hearth/pull/918) [`2db4dbe`](https://github.com/utilitywarehouse/hearth/commit/2db4dbe273583239b148c4399af829df596a00c1) Thanks [@jordmccord](https://github.com/jordmccord)! - 💔 [BREAKING CHANGE]: Simplify semantic token naming and introduce utility prop types
1164
-
1165
- This release simplifies the semantic token naming convention and introduces a new utility prop system to make the API more intuitive and consistent across components.
1166
-
1167
- **Components affected**:
1168
- - `Box`
1169
- - `Container`
1170
- - `Card`
1171
- - `Flex`
1172
- - `Grid`
1173
- - `Center`
1174
- - `BodyText`
1175
- - `Heading`
1176
- - `DetailText`
1177
- - `Carousel`
1178
- - `CarouselItem`
1179
-
1180
- **Developer changes**:
1181
-
1182
- ### Background Colors
1183
-
1184
- Background color props now accept simplified semantic tokens. Update your code as follows:
1185
-
1186
- ```diff
1187
- - <Box backgroundColor="backgroundPrimary">
1188
- + <Box backgroundColor="primary">
1189
-
1190
- - <Box backgroundColor="backgroundSecondary">
1191
- + <Box backgroundColor="secondary">
1192
-
1193
- - <Box backgroundColor="backgroundBrand">
1194
- + <Box backgroundColor="brand">
1195
-
1196
- - <Container bg="backgroundPrimary">
1197
- + <Container bg="primary">
1198
- ```
1199
-
1200
- You can still use full color tokens (e.g., `backgroundColor={color.blue[400]}`) by using a `StyleSheet`, the `useTheme` hook, or directly importing from the tokens library:
1201
-
1202
- ```tsx
1203
- import { StyleSheet } from 'react-native';
1204
-
1205
- const styles = StyleSheet.create(theme => ({
1206
- customBackground: {
1207
- backgroundColor: theme.color.blue[400],
1208
- },
1209
- }));
1210
-
1211
- <Box style={styles.customBackground} />;
1212
- ```
1213
-
1214
- ```tsx
1215
- import { useTheme } from '@utilitywarehouse/hearth-react-native';
1216
-
1217
- const theme = useTheme();
1218
-
1219
- <Box backgroundColor={theme.color.purple[800]} />;
1220
- ```
1221
-
1222
- ```tsx
1223
- import { color } from '@utilitywarehouse/hearth-tokens';
1224
-
1225
- <Box backgroundColor={color.blue[400]} />;
1226
- ```
1227
-
1228
- ### Text Colors
1229
-
1230
- Text color props now accept simplified semantic tokens:
1231
-
1232
- ```diff
1233
- - <BodyText color="white">Text</BodyText>
1234
- + <BodyText color="inverted">Text</BodyText>
1235
-
1236
- - <BodyText color="grey1000">Text</BodyText>
1237
- + <BodyText color="primary">Text</BodyText>
1238
-
1239
- - <Heading color="textSecondary">Heading</Heading>
1240
- + <Heading color="secondary">Heading</Heading>
1241
- ```
1242
-
1243
- ### Border Colors
1244
-
1245
- Border color props now accept simplified semantic tokens:
1246
-
1247
- ```diff
1248
- - <Box borderColor="grey800">
1249
- + <Box borderColor="strong">
1250
-
1251
- - <Box borderColor="borderSubtle">
1252
- + <Box borderColor="subtle">
1253
- ```
1254
-
1255
- ### Utility Props
1256
-
1257
- Components now support consistent utility props through shared type interfaces. The following components have been updated to support additional utility props:
1258
- - **Container**: Added `MarginProps`, `PaddingProps`, `GapProps`, and `BackgroundColorProps`
1259
- - **Card**: Added `MarginProps` and `GapProps`
1260
- - **Flex**: Now properly supports `MarginProps`, `PaddingProps`, and `GapProps`
1261
- - **Text components** (BodyText, Heading, DetailText): Now support `MarginProps`
1262
-
1263
- This means you can now use margin utilities directly on these components:
1264
-
1265
- ```tsx
1266
- <BodyText mt="200" mb="100">Text with margin utilities</BodyText>
1267
- <Container mx="300" py="200">Container with spacing utilities</Container>
1268
- <Card mt="200" gap="100">Card with margin and gap utilities</Card>
1269
- ```
1270
-
1271
- **Migration guide**:
1272
- 1. Replace semantic background color tokens:
1273
- - `backgroundPrimary` → `primary`
1274
- - `backgroundSecondary` → `secondary`
1275
- - `backgroundBrand` → `brand`
1276
- 2. Replace semantic text color tokens:
1277
- - `white` → `inverted` (for text on dark backgrounds)
1278
- - `grey1000` / `textPrimary` → `primary`
1279
- - `textSecondary` → `secondary`
1280
- 3. Replace semantic border color tokens:
1281
- - `grey800` / `borderStrong` → `strong`
1282
- - `borderSubtle` → `subtle`
1283
- 4. For non-semantic colors, use a `StyleSheet` and use the full color token from the theme:
1284
-
1285
- ```tsx
1286
- import { StyleSheet } from 'react-native';
1287
-
1288
- const styles = StyleSheet.create(theme => ({
1289
- customBackground: {
1290
- backgroundColor: theme.color.blue[400],
1291
- },
1292
- }));
1293
-
1294
- <Box style={styles.customBackground} />;
1295
- ```
1296
-
1297
- or the `useTheme` hook:
1298
-
1299
- ```tsx
1300
- import { useTheme } from '@utilitywarehouse/hearth-react-native';
1301
-
1302
- const theme = useTheme();
1303
- <Box backgroundColor={theme.color.purple[800]} />;
1304
- ```
1305
-
1306
- or use the tokens library:
1307
-
1308
- ```tsx
1309
- import { color } from '@utilitywarehouse/hearth-tokens';
1310
-
1311
- <Box backgroundColor={color.purple[800]} />;
1312
- ```
1313
-
1314
- **Backwards compatibility**:
1315
-
1316
- The full color tokens (e.g., `backgroundPrimary`, `grey1000`) are still supported as fallbacks but are deprecated and will cause type errors. We recommend migrating to the simplified tokens for a cleaner API.
1317
-
1318
- **References**:
1319
- - [Semantic tokens documentation](https://github.com/utilitywarehouse/hearth/blob/main/packages/tokens/src/semantic-light.ts)
1320
-
1321
- ### Patch Changes
1322
-
1323
- - [#917](https://github.com/utilitywarehouse/hearth/pull/917) [`6a016dc`](https://github.com/utilitywarehouse/hearth/commit/6a016dca0d1a06e40a877da15aced590d0c68112) Thanks [@jordmccord](https://github.com/jordmccord)! - 💅 [ENHANCEMENT]: Update design tokens from Figma
1324
-
1325
- Updated design tokens to include new font sizes, line heights, and component-specific tokens:
1326
- - Added `background.loading` colour token for both light and dark modes
1327
- - Added new font sizes: 575 (44px) and 650 (54px)
1328
- - Added new line heights: 975 (52px) and 1050 (62px)
1329
- - Updated `Modal` component tokens with `mobile.paddingBottom` and `handle.paddingBottom` properties
1330
- - Added `borderBottom` property to `Navigation` component tokens
1331
- - Updated `Skeleton` component `loadingColor` value in light mode
1332
-
1333
- **Developer changes**:
1334
-
1335
- No changes required. These tokens are automatically applied to components that use them.
1336
-
1337
- ## 0.20.0
1338
-
1339
- ### Minor Changes
1340
-
1341
- - [#898](https://github.com/utilitywarehouse/hearth/pull/898) [`d32a188`](https://github.com/utilitywarehouse/hearth/commit/d32a18840c04222b7b1348133137dc5e56745fe3) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add validation and helper text props to `Select` component
1342
-
1343
- The `Select` component now supports built-in validation messages and helper text through new props: `invalidText`, `validText`, `helperText`, and `helperIcon`. This provides a more integrated validation experience without needing to wrap the component in FormField.
1344
-
1345
- **Components affected**:
1346
- - `Select`
1347
-
1348
- **Developer changes**:
1349
-
1350
- You can now add helper text and validation messages directly to Select:
1351
-
1352
- ```tsx
1353
- import { Select } from '@utilitywarehouse/hearth-react-native';
1354
-
1355
- <Select
1356
- label="Choose an option"
1357
- placeholder="Select an option"
1358
- helperText="This is some helper text for the select component."
1359
- validationStatus="invalid"
1360
- invalidText="Please select a valid option"
1361
- options={[
1362
- { label: 'Option 1', value: '1' },
1363
- { label: 'Option 2', value: '2' },
1364
- { label: 'Option 3', value: '3' },
1365
- ]}
1366
- value={value}
1367
- onValueChange={setValue}
1368
- />;
1369
- ```
1370
-
1371
- The component now also supports a `labelVariant` prop to control label styling:
1372
-
1373
- ```tsx
1374
- <Select
1375
- label="Choose an option"
1376
- labelVariant="heading"
1377
- // ... other props
1378
- />
1379
- ```
1380
-
1381
- These new props work seamlessly alongside the existing FormField wrapper if you prefer that approach. No changes are required to existing Select implementations.
1382
-
1383
- ## 0.19.1
1384
-
1385
- ### Patch Changes
1386
-
1387
- - [#886](https://github.com/utilitywarehouse/hearth/pull/886) [`7a948de`](https://github.com/utilitywarehouse/hearth/commit/7a948dea0d15ce7ca34e4d405e86984213c96196) Thanks [@jordmccord](https://github.com/jordmccord)! - 💅 [ENHANCEMENT]: Add `loadingHeading` prop to `Modal` component
1388
-
1389
- The `Modal` component now supports a `loadingHeading` prop to customise the heading text displayed during loading states. If not provided, it defaults to 'Loading...'.
1390
-
1391
- **Components affected**:
1392
- - `Modal`
1393
-
1394
- **Developer changes**:
1395
-
1396
- No changes required. To customise the loading heading text, use the new `loadingHeading` prop:
1397
-
1398
- ```tsx
1399
- <Modal
1400
- loading={isLoading}
1401
- loadingHeading="Processing your request..."
1402
- heading="Confirm Action"
1403
- description="Please wait while we process your request"
1404
- />
1405
- ```
1406
-
1407
- - [#888](https://github.com/utilitywarehouse/hearth/pull/888) [`9b3e172`](https://github.com/utilitywarehouse/hearth/commit/9b3e172f9964026f4f3ba140731432ac63550256) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Align `Toast` icon and dismiss button to the top
1408
-
1409
- ## 0.19.0
1410
-
1411
- ### Minor Changes
1412
-
1413
- - [#882](https://github.com/utilitywarehouse/hearth/pull/882) [`7e5338c`](https://github.com/utilitywarehouse/hearth/commit/7e5338c75bf051897a5384fe4ce0f65533b7e1a7) Thanks [@jordmccord](https://github.com/jordmccord)! - 💅 [ENHANCEMENT]: Add `safeAreaPadding` option to `ToastProvider`
1414
-
1415
- `ToastProvider` now supports an optional `safeAreaPadding` prop to control whether toasts respect safe-area inset padding. This can be useful when you want to disable additional safe-area inset space while keeping the base toast padding.
1416
-
1417
- **Components affected**:
1418
- - `ToastProvider`
1419
-
1420
- **Developer changes**:
1421
-
1422
- No changes required. To disable safe-area inset padding (while preserving the base bottom padding), set `safeAreaPadding` to `false`:
1423
-
1424
- ```tsx
1425
- <ToastProvider safeAreaPadding={false}>{children}</ToastProvider>
1426
- ```
1427
-
1428
- - [`da893ff`](https://github.com/utilitywarehouse/hearth/commit/da893ff8a9d576a6ca69021737056c7289f8c6aa) Thanks [@jordmccord](https://github.com/jordmccord)! - 💅 [ENHANCEMENT]: Unify spacing prop naming across layout components
1429
-
1430
- The `space` prop has been renamed to `spacing` across all layout components for improved consistency and clarity. The `space` prop is now deprecated but will continue to work alongside the new `spacing` prop to maintain backward compatibility.
1431
-
1432
- **Components affected**:
1433
- - `Box`
1434
- - `ButtonGroup`
1435
- - `Card`
1436
- - `Container`
1437
- - `Divider`
1438
- - `Flex`
1439
- - `Grid`
1440
-
1441
- **Developer changes**:
1442
-
1443
- No immediate changes are required. The `space` prop will continue to work as before. However, we recommend migrating to the `spacing` prop at your convenience:
1444
-
1445
- ```diff
1446
- - <Flex space="md">
1447
- + <Flex spacing="md">
1448
- <Box>...</Box>
1449
- <Box>...</Box>
1450
- </Flex>
1451
- ```
1452
-
1453
- ```diff
1454
- - <Grid columns={2} space="lg">
1455
- + <Grid columns={2} spacing="lg">
1456
- <Box>...</Box>
1457
- <Box>...</Box>
1458
- </Grid>
1459
- ```
1460
-
1461
- ```diff
1462
- - <Container space="xl">
1463
- + <Container spacing="xl">
1464
- <Box>...</Box>
1465
- </Container>
1466
- ```
1467
-
1468
- The deprecated `space` prop will be removed in a future major version release.
1469
-
1470
- - [#877](https://github.com/utilitywarehouse/hearth/pull/877) [`2cdf3a2`](https://github.com/utilitywarehouse/hearth/commit/2cdf3a2f4251b24f34c260f3f5da39f8c330fff5) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `autoFocus` prop to `VerificationInput`
1471
-
1472
- `VerificationInput` now supports an `autoFocus` prop to control whether the first slot should focus on mount.
1473
- Default is `false` to avoid unexpected focus when the component is used.
1474
-
1475
- **Developer changes**:
1476
-
1477
- ```tsx
1478
- <VerificationInput autoFocus={false} />
1479
- ```
1480
-
1481
- - [#877](https://github.com/utilitywarehouse/hearth/pull/877) [`2cdf3a2`](https://github.com/utilitywarehouse/hearth/commit/2cdf3a2f4251b24f34c260f3f5da39f8c330fff5) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `VerificationInput` ref methods and improve rapid input handling
1482
-
1483
- `VerificationInput` now forwards a ref with `focus`, `blur`, `clear`, and `focusIndex` helpers. Input updates also use the latest value to avoid dropped digits when typing quickly.
1484
-
1485
- **Developer changes**:
1486
-
1487
- If you want to control focus programmatically, pass a ref:
1488
-
1489
- ```tsx
1490
- import { useRef } from 'react';
1491
- import {
1492
- VerificationInput,
1493
- type VerificationInputHandle,
1494
- } from '@utilitywarehouse/hearth-react-native';
1495
-
1496
- const inputRef = useRef<VerificationInputHandle>(null);
1497
-
1498
- <VerificationInput ref={inputRef} onChangeText={setCode} />;
1499
- ```
1500
-
1501
- ### Patch Changes
1502
-
1503
- - [#880](https://github.com/utilitywarehouse/hearth/pull/880) [`a52bb03`](https://github.com/utilitywarehouse/hearth/commit/a52bb03352dd8b83c9cfd3311aaa390e96e75662) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Remove the unsupported `colorScheme` prop from `Banner` types so the API matches the `Card` component.
1504
-
1505
- - [#879](https://github.com/utilitywarehouse/hearth/pull/879) [`383b686`](https://github.com/utilitywarehouse/hearth/commit/383b6860c1b68da139f10a67cd001dd884143df0) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Make `Banner` button full width in vertical layout
1506
-
1507
- - [#878](https://github.com/utilitywarehouse/hearth/pull/878) [`b31b8c3`](https://github.com/utilitywarehouse/hearth/commit/b31b8c3d37d4d1ec3df2f187ec18d00b3e663b49) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Fix `Modal` bottom padding
1508
-
1509
- - [#881](https://github.com/utilitywarehouse/hearth/pull/881) [`5681b8f`](https://github.com/utilitywarehouse/hearth/commit/5681b8fd4bcc73ad532229018049f959f06f77ec) Thanks [@jordmccord](https://github.com/jordmccord)! - 📦 [DEPS]: Bump `@utilitywarehouse/hearth-react-native-icons` peerDependency to 0.8.0
1510
-
1511
- ## 0.18.0
1512
-
1513
- ### Minor Changes
1514
-
1515
- - [#869](https://github.com/utilitywarehouse/hearth/pull/869) [`89231c8`](https://github.com/utilitywarehouse/hearth/commit/89231c818dfd694f53b50f4cc961a38d0a50999e) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add color override props to `IconButton` for service-specific branding
1516
-
1517
- The `IconButton` component now supports custom color overrides through three new optional props: `backgroundColor`, `activeBackgroundColor`, and `shadowColor`. These props enable service-specific branding for use cases like service buttons (Electricity, Broadband, Mobile, Insurance, Cashback Card).
1518
-
1519
- ⚠️ **Important**: These props should be used sparingly and only for specific use cases where brand-specific colors are required. For most use cases, continue using the standard `colorScheme` and `variant` props to maintain design system consistency.
1520
-
1521
- **Components affected**:
1522
- - `IconButton`
1523
-
1524
- **Developer changes**:
1525
-
1526
- You can now customise `IconButton` colors for service-specific branding:
1527
-
1528
- ```tsx
1529
- import { IconButton } from '@utilitywarehouse/hearth-react-native';
1530
- import { ElectricityMediumIcon } from '@utilitywarehouse/hearth-react-native-icons';
1531
-
1532
- <IconButton
1533
- icon={ElectricityMediumIcon}
1534
- backgroundColor="energyBlue200"
1535
- activeBackgroundColor="energyBlue300"
1536
- shadowColor="energyBlue300"
1537
- variant="emphasis"
1538
- onPress={handlePress}
1539
- />;
1540
- ```
1541
-
1542
- The new props are:
1543
- - `backgroundColor` - Sets the base background color, overriding the color scheme's default
1544
- - `activeBackgroundColor` - Sets the background color when pressed or in an active state
1545
- - `shadowColor` - Sets the shadow/elevation color
1546
-
1547
- These overrides work alongside the existing `variant` and `colorScheme` props, allowing you to maintain structural styling while customising colors for specific branding requirements.
1548
-
1549
- ### Patch Changes
1550
-
1551
- - [#871](https://github.com/utilitywarehouse/hearth/pull/871) [`8984335`](https://github.com/utilitywarehouse/hearth/commit/89843355d268aaa184bea75784e6841568c4784f) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Fix style ordering in `BodyText` to ensure color props properly override custom styles
1552
-
1553
- ## 0.17.0
1554
-
1555
- ### Minor Changes
1556
-
1557
- - [#867](https://github.com/utilitywarehouse/hearth/pull/867) [`9a15eb8`](https://github.com/utilitywarehouse/hearth/commit/9a15eb8c659aa541988da6f28f6c50261f3557f9) Thanks [@jordmccord](https://github.com/jordmccord)! - 💔 [BREAKING CHANGE]: Require `CardActions` wrapper for `CardAction` groups.
1558
-
1559
- `Card` now only treats actions as such when they are wrapped in `CardActions`. This removes wrapper heuristics and makes action grouping explicit while keeping automatic content wrapping.
1560
-
1561
- **Components affected**:
1562
- - `Card`
1563
- - `CardActions`
1564
- - `CardAction`
1565
-
1566
- **Developer changes**:
1567
-
1568
- Wrap all `CardAction` items in `CardActions`:
1569
-
1570
- ```diff
1571
- - <Card>
1572
- - <CardAction heading="Action 1" onPress={() => {}} />
1573
- - <CardAction heading="Action 2" onPress={() => {}} />
1574
- - </Card>
1575
- + <Card>
1576
- + <CardActions>
1577
- + <CardAction heading="Action 1" onPress={() => {}} />
1578
- + <CardAction heading="Action 2" onPress={() => {}} />
1579
- + </CardActions>
1580
- + </Card>
1581
- ```
1582
-
1583
- - [#860](https://github.com/utilitywarehouse/hearth/pull/860) [`ec44a9d`](https://github.com/utilitywarehouse/hearth/commit/ec44a9d3d7a2d95ab69b6e4c461104402d82659d) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `prefix` and `suffix` props to `Input` component
1584
-
1585
- The `Input` component now supports `prefix` and `suffix` props, allowing you to display text or custom content before and after the input field. This is useful for adding units, currency symbols, or other contextual information.
1586
-
1587
- **Components affected**:
1588
- - `Input`
1589
-
1590
- **Developer changes**:
1591
-
1592
- Use the `prefix` and `suffix` props to add content before or after the input:
1593
-
1594
- ```tsx
1595
- <Input label="Amount" prefix="£" suffix="GBP" placeholder="0.00" />
1596
- ```
1597
-
1598
- You can also pass custom React nodes:
1599
-
1600
- ```tsx
1601
- <Input label="Email" prefix={<CustomIcon />} suffix={<BodyText>@example.com</BodyText>} />
1602
- ```
1603
-
1604
- **Note**: The `prefix` and `suffix` props are not available on `password` and `search` input types, as these have specific UI patterns.
1605
-
1606
- - [#862](https://github.com/utilitywarehouse/hearth/pull/862) [`654552e`](https://github.com/utilitywarehouse/hearth/commit/654552e33d56e4b2b2ba8fb783b7f9a7c57ba212) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `loading` prop to `ListAction` component
1607
-
1608
- The `ListAction` component now supports a `loading` prop that displays a skeleton loading state while content is being fetched. This provides better user feedback during asynchronous operations.
1609
-
1610
- **Components affected**:
1611
- - `ListAction`
1612
-
1613
- **Developer changes**:
1614
-
1615
- Use the `loading` prop to show a loading state:
1616
-
1617
- ```tsx
1618
- <List>
1619
- <ListItem heading="Account details" />
1620
- <ListAction heading="View transactions" loading={isLoading} onPress={handlePress} />
1621
- </List>
1622
- ```
1623
-
1624
- When `loading` is true, the action will display skeleton placeholders instead of the heading and icon.
1625
-
1626
- - [#862](https://github.com/utilitywarehouse/hearth/pull/862) [`654552e`](https://github.com/utilitywarehouse/hearth/commit/654552e33d56e4b2b2ba8fb783b7f9a7c57ba212) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Add `invalidText` prop to `List` component
1627
-
1628
- The `List` component now supports an `invalidText` prop for displaying validation error messages in the section header. This provides consistent validation feedback across list-based forms and grouped content.
1629
-
1630
- **Components affected**:
1631
- - `List`
1632
-
1633
- **Developer changes**:
1634
-
1635
- Use the `invalidText` prop to display validation errors:
1636
-
1637
- ```tsx
1638
- <List
1639
- heading="Payment methods"
1640
- helperText="Select at least one payment method"
1641
- invalidText="You must select a payment method"
1642
- >
1643
- <ListItem heading="Credit card" />
1644
- <ListItem heading="Direct debit" />
1645
- </List>
1646
- ```
1647
-
1648
- ### Patch Changes
1649
-
1650
- - [#845](https://github.com/utilitywarehouse/hearth/pull/845) [`9c034f9`](https://github.com/utilitywarehouse/hearth/commit/9c034f98f9d6aa4596a45296d02e01703ef1c762) Thanks [@jordmccord](https://github.com/jordmccord)! - 💅 [ENHANCEMENT]: Add `invalidText` prop to `ExpandableCardGroup`
1651
-
1652
- The `ExpandableCardGroup` component now supports an `invalidText` prop that displays validation text below the helper text when the group is in an invalid state.
1653
-
1654
- **Components affected**:
1655
- - `ExpandableCardGroup`
1656
-
1657
- **Developer changes**:
1658
-
1659
- No changes required. If you want to display validation text, you can now use the `invalidText` prop:
1660
-
1661
- ```tsx
1662
- <ExpandableCardGroup
1663
- heading="Select an option"
1664
- helperText="Choose one of the options below"
1665
- invalidText="Please select at least one option"
1666
- >
1667
- {/* ExpandableCard components */}
1668
- </ExpandableCardGroup>
1669
- ```
1670
-
1671
- - [#867](https://github.com/utilitywarehouse/hearth/pull/867) [`9a15eb8`](https://github.com/utilitywarehouse/hearth/commit/9a15eb8c659aa541988da6f28f6c50261f3557f9) Thanks [@jordmccord](https://github.com/jordmccord)! - 💅 [ENHANCEMENT]: Improve first-item border detection in `Card` and `List` components
1672
-
1673
- The `Card` and `List` components now use a more reliable method to detect and style the first rendered `CardAction`, `ListItem`, or `ListAction`. This fixes edge cases where wrapper components that conditionally render `null` would previously interfere with first-item border removal.
1674
-
1675
- **Components affected**:
1676
- - `Card` / `CardAction`
1677
- - `List` / `ListItem` / `ListAction`
1678
-
1679
- **Developer changes**:
1680
-
1681
- No changes required. The improvement is automatic and maintains the same visual behavior. Components that wrap card actions or list items will now work correctly even when some wrappers return `null` conditionally.
1682
-
1683
- **Note**: The `useCardFirstActionContext` hook has been removed as it was an internal implementation detail.
1684
-
1685
- ## 0.16.2
1686
-
1687
- ### Patch Changes
1688
-
1689
- - [#837](https://github.com/utilitywarehouse/hearth/pull/837) [`126657c`](https://github.com/utilitywarehouse/hearth/commit/126657cd96008625f9573ed5cc1588709c00f7da) Thanks [@jordmccord](https://github.com/jordmccord)! - 💅 [ENHANCEMENT]: Add style customisation props to `DateInput` component
1690
-
1691
- The `DateInput` component now supports three new style props for customising the appearance of date segments: `inputContainerStyle`, `inputStyle`, and `inputLabelStyle`. This allows for greater flexibility when integrating DateInput into different layouts.
1692
-
1693
- **Components affected**:
1694
- - `DateInput`
1695
-
1696
- **Developer changes**:
1697
-
1698
- No changes required. To customise the appearance of date input segments, use the new style props:
1699
-
1700
- ```tsx
1701
- <DateInput
1702
- label="Custom date input"
1703
- inputContainerStyle={{ maxWidth: 'auto' }}
1704
- inputStyle={{ fontSize: 16 }}
1705
- inputLabelStyle={{ fontWeight: 'bold' }}
1706
- />
1707
- ```
1708
-
1709
- ## 0.16.1
1710
-
1711
- ### Patch Changes
1712
-
1713
- - [#817](https://github.com/utilitywarehouse/hearth/pull/817) [`fb4f4d0`](https://github.com/utilitywarehouse/hearth/commit/fb4f4d034e5b67b0c75dc093f7fdd8d3ab26edde) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: `DateInput` height issue
1714
-
1715
- ## 0.16.0
1716
-
1717
- ### Minor Changes
1718
-
1719
- - [#810](https://github.com/utilitywarehouse/hearth/pull/810) [`eae4c24`](https://github.com/utilitywarehouse/hearth/commit/eae4c24a421415247c720f88bb8341133340cc7b) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: All `Input` components accessibility improvements and you can now pass a label, helper text and validation to the `Input` component directly.
1720
-
1721
- ### Input accessibility improvements and FormField integration
1722
-
1723
- The `Input` component has been updated to internally use `FormField`. This allows you to pass props like `label`, `helperText`, and validation status directly to the `Input` component, streamlining its usage.
1724
-
1725
- We have also greatly improved accessibility behavior. The `Input` component now intelligently constructs `aria-label` and `accessibilityHint` based on the provided label, helper text, and validation state. To support this, `FormField` now has a mechanism to hide its own accessibility elements when a child component is handling them, preventing duplicate announcements.
1726
-
1727
- #### Affected components
1728
- - `Input`
1729
- - `CurrencyInput`
1730
- - `DatePickerInput`
1731
- - `Textarea`
1732
- - `FormField`
1733
-
1734
- #### Developer changes
1735
-
1736
- You can now use `Input`, `CurrencyInput`, `DatePickerInput`, and `Textarea` without explicitly wrapping them in `FormField` for standard layouts:
1737
-
1738
- ```tsx
1739
- // Before
1740
- <FormField label="Email" helperText="Enter email">
1741
- <Input />
1742
- </FormField>
1743
-
1744
- // After
1745
- <Input label="Email" helperText="Enter email" />
1746
- ```
1747
-
1748
- No breaking changes. The `Input` component continues to support being wrapped externally by `FormField`.
1749
-
1750
- #### References
1751
- - UWDS-4179
1752
-
1753
- - [#803](https://github.com/utilitywarehouse/hearth/pull/803) [`8e96af6`](https://github.com/utilitywarehouse/hearth/commit/8e96af69f3a3498f264f2a6dc2416cdb6a298275) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE]: Adds `labelVariant` prop to components with a label
1754
-
1755
- ### Adds `labelVariant` prop to components with a label
1756
-
1757
- Added a `labelVariant` prop to allow consumers to choose between a body or heading style for component labels. Defaults to `body`.
1758
-
1759
- #### Affected components
1760
- - `CheckboxGroup`
1761
- - `FormField`
1762
- - `Label`
1763
- - `RadioGroup`
1764
- - `RadioCard`
1765
- - `Select`
1766
- - `VerificationInput`
1767
- - `Input`
1768
- - `CurrencyInput`
1769
- - `DatePickerInput`
1770
- - `Textarea`
1771
-
1772
- #### Developer changes
1773
-
1774
- You can now pass `labelVariant="heading"` to these components to render the label as a heading instead of body text.
1775
-
1776
- ```tsx
1777
- <FormField label="My Label" labelVariant="heading">
1778
- <Input />
1779
- </FormField>
1780
- ```
1781
-
1782
- ## 0.15.3
1783
-
1784
- ### Patch Changes
1785
-
1786
- - [#801](https://github.com/utilitywarehouse/hearth/pull/801) [`6d11339`](https://github.com/utilitywarehouse/hearth/commit/6d1133997b28efa104c282522a5708f1d4d8614c) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: `Modal` without handle heading padding issue
1787
-
1788
- - [#796](https://github.com/utilitywarehouse/hearth/pull/796) [`f0ccadb`](https://github.com/utilitywarehouse/hearth/commit/f0ccadbb48fb7a7a70520d7521746a63421e01cc) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: `CheckboxTile` text wrapping issue
1789
-
1790
- ## 0.15.2
1791
-
1792
- ### Patch Changes
1793
-
1794
- - [#771](https://github.com/utilitywarehouse/hearth/pull/771) [`5320be5`](https://github.com/utilitywarehouse/hearth/commit/5320be544992c137e201be7750d30ea098a7d399) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Adds missing `ref` prop to the `CurrencyInput` component
1795
-
1796
- ## 0.15.1
1797
-
1798
- ### Patch Changes
1799
-
1800
- - [#768](https://github.com/utilitywarehouse/hearth/pull/768) [`570f240`](https://github.com/utilitywarehouse/hearth/commit/570f240a448eae546b893ed3ad69235213ee5fac) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Makes `Modal` footer sticky by default
1801
-
1802
- This change updates the `Modal` component to have a sticky footer by default, enhancing user experience by keeping action buttons accessible. The `stickyFooter` prop has been added to allow developers to disable this behavior if needed.
1803
-
1804
- ## 0.15.0
1805
-
1806
- ### Minor Changes
1807
-
1808
- - [#766](https://github.com/utilitywarehouse/hearth/pull/766) [`183155a`](https://github.com/utilitywarehouse/hearth/commit/183155a1aaf7713f0ab8a39ab1e5684ef6190d0c) Thanks [@jordmccord](https://github.com/jordmccord)! - 🌟 [FEATURE] Custom `ListItem` styles for `UL` and `OL` components
1809
-
1810
- Added new props to `UL`, `OL`, and `ListItem` components to support custom list markers, including icons, images, and colors. This brings the functionality closer to CSS-like list styling. We also fixed a layout issue where list item text could overflow the container.
1811
-
1812
- **Components affected**:
1813
- - `UL` (UnorderedList)
1814
- - `OL` (OrderedList)
1815
- - `ListItem`
1816
-
1817
- **Developer changes**:
1818
-
1819
- You can now customise list bullets/markers using the new `listStyle*` props. These can be set on the list container to apply to all items, or overridden on individual list items.
1820
-
1821
- ```tsx
1822
- import { UL, LI } from '@utilitywarehouse/hearth-react-native';
1823
- import { TickIcon } from '@utilitywarehouse/hearth-react-native-icons';
1824
-
1825
- <UL listStyleColour="feedbackPositiveSurfaceDefault" listStyleIcon={TickIcon}>
1826
- <LI>Success item 1</LI>
1827
- <LI listStyleColour="feedbackDangerSurfaceDefault">Error item override</LI>
1828
- </UL>;
1829
- ```
1830
-
1831
- Supported props:
1832
- - `listStyleImage`: React Element (e.g. `<Image />`)
1833
- - `listStyleIcon`: Icon component
1834
- - `listStyleWidth` / `listStyleHeight`: Dimensions for the marker (default: 20)
1835
- - `listStyleColour`: Color token or value for the marker
1836
-
1837
- ### Patch Changes
1838
-
1839
- - [#762](https://github.com/utilitywarehouse/hearth/pull/762) [`2d2bbd2`](https://github.com/utilitywarehouse/hearth/commit/2d2bbd2ba109b9acb2e0b220766eb02c0ad5710e) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Fixes Android error when passing boolean or number as a `Checkbox` value
1840
-
1841
- - [#764](https://github.com/utilitywarehouse/hearth/pull/764) [`46f115d`](https://github.com/utilitywarehouse/hearth/commit/46f115dd4bd9da824496e8ec19e29276523931a1) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Fixes `HelperText` wrapping issue
1842
-
1843
- - [#762](https://github.com/utilitywarehouse/hearth/pull/762) [`2d2bbd2`](https://github.com/utilitywarehouse/hearth/commit/2d2bbd2ba109b9acb2e0b220766eb02c0ad5710e) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Fixes `PillGroup` `onChange` prop types
1844
-
1845
- - [#764](https://github.com/utilitywarehouse/hearth/pull/764) [`46f115d`](https://github.com/utilitywarehouse/hearth/commit/46f115dd4bd9da824496e8ec19e29276523931a1) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: `DescriptionListItem` description disappearing when direction is `column`
1846
-
1847
- - [#762](https://github.com/utilitywarehouse/hearth/pull/762) [`2d2bbd2`](https://github.com/utilitywarehouse/hearth/commit/2d2bbd2ba109b9acb2e0b220766eb02c0ad5710e) Thanks [@jordmccord](https://github.com/jordmccord)! - 🐛 [FIX]: Input styles are now passed to the correct View
1848
-
1849
- ## 0.14.1
1850
-
1851
- ### Patch Changes
1852
-
1853
- - [#749](https://github.com/utilitywarehouse/hearth/pull/749) [`ded4b2e`](https://github.com/utilitywarehouse/hearth/commit/ded4b2e3dcad9c1cc4860a13120e44a43e5f0dde) Thanks [@jordmccord](https://github.com/jordmccord)! - Fixes `CardAction` padding
1854
-
1855
- ## 0.14.0
1856
-
1857
- ### Minor Changes
1858
-
1859
- - [#741](https://github.com/utilitywarehouse/hearth/pull/741) [`acf081a`](https://github.com/utilitywarehouse/hearth/commit/acf081a8e10722ea1e9106f8111f5d9548815646) Thanks [@jordmccord](https://github.com/jordmccord)! - Renames `ListItemText` to `ListItemHeading` (`ListItemText` is deprecated and will be removed in a later release)
1860
-
1861
- ### Patch Changes
1862
-
1863
- - [#741](https://github.com/utilitywarehouse/hearth/pull/741) [`acf081a`](https://github.com/utilitywarehouse/hearth/commit/acf081a8e10722ea1e9106f8111f5d9548815646) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `truncateHeading` and `truncateHelperText` props to `ListItem`
1864
-
1865
- - [#740](https://github.com/utilitywarehouse/hearth/pull/740) [`16f1ce0`](https://github.com/utilitywarehouse/hearth/commit/16f1ce073d62c4e72693e7e07233a7498c0d0602) Thanks [@jordmccord](https://github.com/jordmccord)! - Fixes custom `ListItem` first child border issue
1866
-
1867
- - [#737](https://github.com/utilitywarehouse/hearth/pull/737) [`85f76db`](https://github.com/utilitywarehouse/hearth/commit/85f76dbbf7c90db96d7e89e5f5e353a772dd84c2) Thanks [@jordmccord](https://github.com/jordmccord)! - Fixes `Radio` and `Checkbox` Groups row direction issue
1868
-
1869
- - [#741](https://github.com/utilitywarehouse/hearth/pull/741) [`acf081a`](https://github.com/utilitywarehouse/hearth/commit/acf081a8e10722ea1e9106f8111f5d9548815646) Thanks [@jordmccord](https://github.com/jordmccord)! - Fixes `ListItemText` and `ListItemHelperText` prop types
1870
-
1871
- ## 0.13.0
1872
-
1873
- ### Minor Changes
1874
-
1875
- - [#682](https://github.com/utilitywarehouse/hearth/pull/682) [`57d6c71`](https://github.com/utilitywarehouse/hearth/commit/57d6c71baedeaa0bc914ff5163e73bbf4281aa79) Thanks [@Utakato](https://github.com/Utakato)! - Add Verification Input component
1876
-
1877
- ## 0.12.0
1878
-
1879
- ### Minor Changes
1880
-
1881
- - [#685](https://github.com/utilitywarehouse/hearth/pull/685) [`10f5209`](https://github.com/utilitywarehouse/hearth/commit/10f52095e5f36e58f9821e3fec3fdf43f4578fbb) Thanks [@jordmccord](https://github.com/jordmccord)! - [BREAKING] Component props moved from objects to React Nodes
1882
-
1883
- ### Patch Changes
1884
-
1885
- - [#687](https://github.com/utilitywarehouse/hearth/pull/687) [`11e8176`](https://github.com/utilitywarehouse/hearth/commit/11e8176ced40b0a8b2d27e07c482ed10a7b7ce7a) Thanks [@jordmccord](https://github.com/jordmccord)! - Fixes `Input` refs
1886
-
1887
- ## 0.11.0
1888
-
1889
- ### Minor Changes
1890
-
1891
- - [#674](https://github.com/utilitywarehouse/hearth/pull/674) [`c617257`](https://github.com/utilitywarehouse/hearth/commit/c617257974b11c39d706d6fd46712a284ff5fe10) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `DateInput` component
1892
-
1893
- - [#663](https://github.com/utilitywarehouse/hearth/pull/663) [`8889a07`](https://github.com/utilitywarehouse/hearth/commit/8889a07e347e9289928e679cee495d7656a4e9aa) Thanks [@Utakato](https://github.com/Utakato)! - Add Avatar component
1894
-
1895
- ## 0.10.0
1896
-
1897
- ### Minor Changes
1898
-
1899
- - [#659](https://github.com/utilitywarehouse/hearth/pull/659) [`99afbed`](https://github.com/utilitywarehouse/hearth/commit/99afbed95df550d5d5a8bb6e04f7640077bf4883) Thanks [@MichalCiesliczka](https://github.com/MichalCiesliczka)! - Adds `Pill` and `PillGroup` components
1900
-
1901
- - [#671](https://github.com/utilitywarehouse/hearth/pull/671) [`706448d`](https://github.com/utilitywarehouse/hearth/commit/706448d91f354cb96a71a5f3acc9d17aaa767078) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `Toast` component
1902
-
1903
- ## 0.9.0
1904
-
1905
- ### Minor Changes
1906
-
1907
- - [#658](https://github.com/utilitywarehouse/hearth/pull/658) [`2ac2366`](https://github.com/utilitywarehouse/hearth/commit/2ac2366aaa7f3b253fd9336664a73a64f1ab91a5) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `Menu` component
1908
-
1909
- - [#656](https://github.com/utilitywarehouse/hearth/pull/656) [`a01a49a`](https://github.com/utilitywarehouse/hearth/commit/a01a49a49ec1dd3c04684ce010281030d45c77a1) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `fullscreen` and `inNavModal` props to `Modal`
1910
-
1911
- ## 0.8.2
1912
-
1913
- ### Patch Changes
1914
-
1915
- - [#652](https://github.com/utilitywarehouse/hearth/pull/652) [`5119703`](https://github.com/utilitywarehouse/hearth/commit/5119703a31f663cc8c0a8bb2c6ba5b10f9bf72d6) Thanks [@jordmccord](https://github.com/jordmccord)! - Fixes `RadioCard` label wrapping issue
1916
-
1917
- - [#648](https://github.com/utilitywarehouse/hearth/pull/648) [`c90ea5c`](https://github.com/utilitywarehouse/hearth/commit/c90ea5ce165f27ccfc9774ec58ac642d02b349d1) Thanks [@jordmccord](https://github.com/jordmccord)! - Fixes `ListAction` icon size
1918
-
1919
- - [#648](https://github.com/utilitywarehouse/hearth/pull/648) [`c90ea5c`](https://github.com/utilitywarehouse/hearth/commit/c90ea5ce165f27ccfc9774ec58ac642d02b349d1) Thanks [@jordmccord](https://github.com/jordmccord)! - Fixes `Banner` text gap size
1920
-
1921
- - [#651](https://github.com/utilitywarehouse/hearth/pull/651) [`4ee77b7`](https://github.com/utilitywarehouse/hearth/commit/4ee77b75e58ac4abbeba375ecb367d8899c7f1a0) Thanks [@jordmccord](https://github.com/jordmccord)! - Fixes `Banner` image and height issue
1922
-
1923
- - [#649](https://github.com/utilitywarehouse/hearth/pull/649) [`7374535`](https://github.com/utilitywarehouse/hearth/commit/737453598ad5e885b35b5fcd2e4c4ccff4910c43) Thanks [@jordmccord](https://github.com/jordmccord)! - Fixes `List` to only show `Card` container if it has children
1924
-
1925
- - [#648](https://github.com/utilitywarehouse/hearth/pull/648) [`c90ea5c`](https://github.com/utilitywarehouse/hearth/commit/c90ea5ce165f27ccfc9774ec58ac642d02b349d1) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `shadowColor` prop to `Card` and exposes helpers in theme
1926
-
1927
- ## 0.8.1
1928
-
1929
- ### Patch Changes
1930
-
1931
- - [#641](https://github.com/utilitywarehouse/hearth/pull/641) [`251242e`](https://github.com/utilitywarehouse/hearth/commit/251242e218c0b24589c3fb6fb6963b53bda8a367) Thanks [@jordmccord](https://github.com/jordmccord)! - Fixes `HighlightBanner` when no image is provided
1932
-
1933
- ## 0.8.0
1934
-
1935
- ### Minor Changes
1936
-
1937
- - [#635](https://github.com/utilitywarehouse/hearth/pull/635) [`4cac2f2`](https://github.com/utilitywarehouse/hearth/commit/4cac2f28c12279557e2133d67cd75783f30c89ff) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `Expandable` component
1938
-
1939
- - [#631](https://github.com/utilitywarehouse/hearth/pull/631) [`57b4991`](https://github.com/utilitywarehouse/hearth/commit/57b49912c90dce3d88a699bd50217df08dab601a) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `Banner` component
1940
-
1941
- - [#636](https://github.com/utilitywarehouse/hearth/pull/636) [`a363352`](https://github.com/utilitywarehouse/hearth/commit/a363352dbfbc44245c64e2a16347463b89ff519a) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `ExpandableCard` component
1942
-
1943
- - [#631](https://github.com/utilitywarehouse/hearth/pull/631) [`57b4991`](https://github.com/utilitywarehouse/hearth/commit/57b49912c90dce3d88a699bd50217df08dab601a) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `HighlightBanner` component
1944
-
1945
- ## 0.7.0
1946
-
1947
- ### Minor Changes
1948
-
1949
- - [#613](https://github.com/utilitywarehouse/hearth/pull/613) [`0bdfbe4`](https://github.com/utilitywarehouse/hearth/commit/0bdfbe41ed8b30e5abf49de6ea4cb3a12194921e) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `CardAction` component
1950
-
1951
- ## 0.6.0
1952
-
1953
- ### Minor Changes
1954
-
1955
- - [#603](https://github.com/utilitywarehouse/hearth/pull/603) [`3f292e9`](https://github.com/utilitywarehouse/hearth/commit/3f292e9960dc708dd6932cff04671dd7ef375c1a) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `Container` component
1956
-
1957
- - [#605](https://github.com/utilitywarehouse/hearth/pull/605) [`f52e0f5`](https://github.com/utilitywarehouse/hearth/commit/f52e0f57eff5f1cfa36dacc45576c08771ca12df) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `ThemedImage` component
1958
-
1959
- ## 0.5.0
1960
-
1961
- ### Minor Changes
1962
-
1963
- - [#583](https://github.com/utilitywarehouse/hearth/pull/583) [`a31ab40`](https://github.com/utilitywarehouse/hearth/commit/a31ab40e4ccf4533aae2df16cc456d6db92d4e7b) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `Carousel` component
1964
-
1965
- - [#567](https://github.com/utilitywarehouse/hearth/pull/567) [`b6869cf`](https://github.com/utilitywarehouse/hearth/commit/b6869cfaca7b3a5aacb27c06733f0243b6faa02a) Thanks [@MichalCiesliczka](https://github.com/MichalCiesliczka)! - Adds `ProgressStepper` component
1966
-
1967
- - [#596](https://github.com/utilitywarehouse/hearth/pull/596) [`61f1073`](https://github.com/utilitywarehouse/hearth/commit/61f10735a42445b6e4eb90282a2b340317f1ec08) Thanks [@jordmccord](https://github.com/jordmccord)! - `List` component updates:
1968
- - [BREAKING] The `text` prop in `ListItem` is now `heading`.
1969
- - Added `ListAction` component.
1970
- - Added `badge` prop to `ListItem`.
1971
- - Added `numericValue` prop to `ListItem`.
1972
- - Removes `divider` prop from `List` and `ListItem`; dividers are now handled automatically.
1973
-
1974
- - [#585](https://github.com/utilitywarehouse/hearth/pull/585) [`4894c34`](https://github.com/utilitywarehouse/hearth/commit/4894c34acaadcbbaba78fd64be2f8ae862200e1f) Thanks [@dorota-uw](https://github.com/dorota-uw)! - [BREAKING] `DescriptionListItem` updates:
1975
- - Removed `Link` props: `linkText`, `linkHref`, `linkIcon`, `linkIconPosition`, `linkOnPress`, `linkTarget`, `linkShowIcon`.
1976
- - Added `trailingContent` prop to allow custom trailing content (e.g. Link, Button).
1977
- - Added validation text support to `DescriptionListItem` via `invalidText` prop.
1978
-
1979
- - [#572](https://github.com/utilitywarehouse/hearth/pull/572) [`9fa6499`](https://github.com/utilitywarehouse/hearth/commit/9fa6499b6eb1534c2ce7dc4352b1f848b94786ec) Thanks [@MichalCiesliczka](https://github.com/MichalCiesliczka)! - Adds `IndicatorIconButton` component
1980
-
1981
- - [#596](https://github.com/utilitywarehouse/hearth/pull/596) [`61f1073`](https://github.com/utilitywarehouse/hearth/commit/61f10735a42445b6e4eb90282a2b340317f1ec08) Thanks [@jordmccord](https://github.com/jordmccord)! - [BREAKING] `SectionHeader` updates:
1982
- - Removed `Link` props: `linkText`, `linkOnPress`, `linkAccessibilityLabel`.
1983
- - Added `trailingContent` prop to allow custom trailing content (e.g. Link, Button).
1984
- - Added `badge` prop to display a `Badge` next to the heading.
1985
- - Adds `invalidText` prop for validation messages.
1986
-
1987
- - [#596](https://github.com/utilitywarehouse/hearth/pull/596) [`61f1073`](https://github.com/utilitywarehouse/hearth/commit/61f10735a42445b6e4eb90282a2b340317f1ec08) Thanks [@jordmccord](https://github.com/jordmccord)! - [BREAKING] Migrates `DescriptionList` `SectionHeader` to use `headerTrailingContent`
1988
-
1989
- ### Patch Changes
1990
-
1991
- - [#596](https://github.com/utilitywarehouse/hearth/pull/596) [`61f1073`](https://github.com/utilitywarehouse/hearth/commit/61f10735a42445b6e4eb90282a2b340317f1ec08) Thanks [@jordmccord](https://github.com/jordmccord)! - Updates all interactive components fonts
1992
-
1993
- - [#589](https://github.com/utilitywarehouse/hearth/pull/589) [`635a392`](https://github.com/utilitywarehouse/hearth/commit/635a392c80e883790e3fe2cae3b22453288911f1) Thanks [@dorota-uw](https://github.com/dorota-uw)! - Added underline to Ghost button
1994
-
1995
- - [#596](https://github.com/utilitywarehouse/hearth/pull/596) [`61f1073`](https://github.com/utilitywarehouse/hearth/commit/61f10735a42445b6e4eb90282a2b340317f1ec08) Thanks [@jordmccord](https://github.com/jordmccord)! - Upgrade `@utilitywarehouse/hearth-react-native-icons` to `0.6.0`
1996
-
1997
- - Updated dependencies [[`e707eec`](https://github.com/utilitywarehouse/hearth/commit/e707eec790550cab71f2541c26a38c5691e9cbca)]:
1998
- - @utilitywarehouse/hearth-react-native-icons@0.7.0
1999
-
2000
- ## 0.4.2
2001
-
2002
- ### Patch Changes
2003
-
2004
- - [#570](https://github.com/utilitywarehouse/hearth/pull/570) [`364e1ac`](https://github.com/utilitywarehouse/hearth/commit/364e1ac1ee6c83327b0614d90bf280e283144ae6) Thanks [@dorota-uw](https://github.com/dorota-uw)! - Switched the logic for enabling/disabling comma separator in CurrencyInput
2005
-
2006
- - [#573](https://github.com/utilitywarehouse/hearth/pull/573) [`2c28614`](https://github.com/utilitywarehouse/hearth/commit/2c28614b5a9335dda15895c90e08774574d82d85) Thanks [@jordmccord](https://github.com/jordmccord)! - Fixes `Radio` and `Checkbox` helper overflow issue
2007
-
2008
- - [#573](https://github.com/utilitywarehouse/hearth/pull/573) [`2c28614`](https://github.com/utilitywarehouse/hearth/commit/2c28614b5a9335dda15895c90e08774574d82d85) Thanks [@jordmccord](https://github.com/jordmccord)! - Fixes semantic text colour issue
2009
-
2010
- ## 0.4.1
2011
-
2012
- ### Patch Changes
2013
-
2014
- - [#544](https://github.com/utilitywarehouse/hearth/pull/544) [`98e6423`](https://github.com/utilitywarehouse/hearth/commit/98e642347a0aca8c23babb15ea6b5c70b6adca0f) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds legacy colour palette for backwards compatibility
2015
-
2016
- ## 0.4.0
2017
-
2018
- ### Minor Changes
2019
-
2020
- - [#511](https://github.com/utilitywarehouse/hearth/pull/511) [`04f804c`](https://github.com/utilitywarehouse/hearth/commit/04f804ca93d6e8881f649a0374a3b878c3217623) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `DatePicker` and `DatePickerInput` components
2021
-
2022
- ### Patch Changes
2023
-
2024
- - [#511](https://github.com/utilitywarehouse/hearth/pull/511) [`04f804c`](https://github.com/utilitywarehouse/hearth/commit/04f804ca93d6e8881f649a0374a3b878c3217623) Thanks [@jordmccord](https://github.com/jordmccord)! - Fixes `useTheme` typing
2025
-
2026
- ## 0.3.1
2027
-
2028
- ### Patch Changes
2029
-
2030
- - [#472](https://github.com/utilitywarehouse/hearth/pull/472) [`009fe4b`](https://github.com/utilitywarehouse/hearth/commit/009fe4bff4fc54e424f22629040f715d3d4714ea) Thanks [@jordmccord](https://github.com/jordmccord)! - Add `image` prop to `Checkbox` and `Radio` components
2031
-
2032
- - [#500](https://github.com/utilitywarehouse/hearth/pull/500) [`cc49e74`](https://github.com/utilitywarehouse/hearth/commit/cc49e74e3736b9647e8c5576ce45020add258625) Thanks [@jordmccord](https://github.com/jordmccord)! - - Updated dependencies [[`8dac8c1`](https://github.com/utilitywarehouse/hearth/commit/8dac8c1def9083d8e4efa1385e0ee7be23428c46)]:
2033
- - @utilitywarehouse/hearth-react-native-icons@0.4.0
2034
-
2035
- - [#499](https://github.com/utilitywarehouse/hearth/pull/499) [`7b6781c`](https://github.com/utilitywarehouse/hearth/commit/7b6781cc054cf9f1ed4969a2c663abceb526c249) Thanks [@jordmccord](https://github.com/jordmccord)! - Fixes dark mode styles for several components
2036
-
2037
- ## 0.3.0
2038
-
2039
- ### Minor Changes
2040
-
2041
- - [`ce2b445`](https://github.com/utilitywarehouse/hearth/commit/ce2b445dfdd11a2912b4328d8259a604a77b31cd) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `IconContainer` component
2042
-
2043
- - [#423](https://github.com/utilitywarehouse/hearth/pull/423) [`af2deea`](https://github.com/utilitywarehouse/hearth/commit/af2deea62be55d6e40fe5bbb41700e054082b583) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `DescriptionList` component
2044
-
2045
- - [#421](https://github.com/utilitywarehouse/hearth/pull/421) [`a7974df`](https://github.com/utilitywarehouse/hearth/commit/a7974df554cb0eb499923a140ebea523fa49761c) Thanks [@jordmccord](https://github.com/jordmccord)! - [BREAKING] Removes `date` and `currency` type from the `Input` component
2046
-
2047
- - [#426](https://github.com/utilitywarehouse/hearth/pull/426) [`997e7cb`](https://github.com/utilitywarehouse/hearth/commit/997e7cb847e4f70de7b995c00aeeee18f1a0a1cd) Thanks [@jordmccord](https://github.com/jordmccord)! - [BREAKING] Adds updated `Badge` colour schemes and variants, replaces `solid` with `emphasis`
2048
-
2049
- - [#429](https://github.com/utilitywarehouse/hearth/pull/429) [`1a818ff`](https://github.com/utilitywarehouse/hearth/commit/1a818ffc97a04f412deac4e892fc2400b8ad8735) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `Tabs` component
2050
-
2051
- - [#421](https://github.com/utilitywarehouse/hearth/pull/421) [`a7974df`](https://github.com/utilitywarehouse/hearth/commit/a7974df554cb0eb499923a140ebea523fa49761c) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `CurrencyInput` component
2052
-
2053
- ### Patch Changes
2054
-
2055
- - [#430](https://github.com/utilitywarehouse/hearth/pull/430) [`a151f3a`](https://github.com/utilitywarehouse/hearth/commit/a151f3a116b97ce2756b89c07f2ac3f3105c3ff7) Thanks [@jordmccord](https://github.com/jordmccord)! - Added `autoFormatThousands` prop to `CurrencyInput` component
2056
-
2057
- - [#426](https://github.com/utilitywarehouse/hearth/pull/426) [`997e7cb`](https://github.com/utilitywarehouse/hearth/commit/997e7cb847e4f70de7b995c00aeeee18f1a0a1cd) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds 2 new layout spacing sizes, '2xs' and '2xl'
2058
-
2059
- ## 0.2.0
2060
-
2061
- ### Minor Changes
2062
-
2063
- - [#419](https://github.com/utilitywarehouse/hearth/pull/419) [`8b5d1fb`](https://github.com/utilitywarehouse/hearth/commit/8b5d1fbe44d7d7e6dd70d79011d273dbf868c5a6) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `fullscreen` prop to `Modal`
2064
-
2065
- - [#410](https://github.com/utilitywarehouse/hearth/pull/410) [`22cf96c`](https://github.com/utilitywarehouse/hearth/commit/22cf96c17d8ebf4f3c90264b1345a2a2131d7722) Thanks [@jordmccord](https://github.com/jordmccord)! - [BREAKING] Updates the `colorScheme` component props to semantic meaning
2066
-
2067
- - [#412](https://github.com/utilitywarehouse/hearth/pull/412) [`bc92ff1`](https://github.com/utilitywarehouse/hearth/commit/bc92ff1ef2e1527fa5f8639a8367b039d14cd30b) Thanks [@dorota-uw](https://github.com/dorota-uw)! - Added SectionHeader component
2068
-
2069
- - [#415](https://github.com/utilitywarehouse/hearth/pull/415) [`614839e`](https://github.com/utilitywarehouse/hearth/commit/614839efec9c7eb7aaed59b4a4289439c170156f) Thanks [@jordmccord](https://github.com/jordmccord)! - [BREAKING] Removed `AccordionHeading` and `ListHeading` components in favour of `SectionHeader`
2070
-
2071
- - [#417](https://github.com/utilitywarehouse/hearth/pull/417) [`2df513f`](https://github.com/utilitywarehouse/hearth/commit/2df513f6f4fd0d695816badf254486f917996a93) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds `Modal` component
2072
-
2073
- ### Patch Changes
2074
-
2075
- - [#420](https://github.com/utilitywarehouse/hearth/pull/420) [`960ab43`](https://github.com/utilitywarehouse/hearth/commit/960ab436ee5da9359849ff40557171a9c4edb192) Thanks [@jordmccord](https://github.com/jordmccord)! - Adds our semantic colours to the color value types so they can be accessed in things like the `Box` props
2076
-
2077
- - [#410](https://github.com/utilitywarehouse/hearth/pull/410) [`22cf96c`](https://github.com/utilitywarehouse/hearth/commit/22cf96c17d8ebf4f3c90264b1345a2a2131d7722) Thanks [@jordmccord](https://github.com/jordmccord)! - Moves components to use semantic tokens and exposes the new semantic tokens via the color object in the theme
2078
-
2079
- ## 0.1.0
2080
-
2081
- ### Minor Changes
2082
-
2083
- - [`f6366c4`](https://github.com/utilitywarehouse/hearth/commit/f6366c4da2676c535dca90be570d6e6bae5a0349) Thanks [@jordmccord](https://github.com/jordmccord)! - Initial Release 🎉