@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
@@ -1,35 +1,13 @@
1
- import { Canvas, Controls, Meta, Story } from '@storybook/addon-docs/blocks';
2
- import {
3
- BodyText,
4
- BottomSheetModal,
5
- Box,
6
- Button,
7
- Center,
8
- Flex,
9
- Heading,
10
- InlineLink,
11
- Modal,
12
- } from '../../';
13
- import StorybookLink from '../../../../../shared/storybook/StorybookLink';
14
- import { BackToTopButton, UsageWrap, ViewFigmaButton } from '../../../docs/components';
15
- import * as Stories from './Modal.stories';
16
-
17
- <Meta title="Components / Modal" />
18
-
19
- <ViewFigmaButton url="https://www.figma.com/design/6NKZXZhFSExXrcbBgc6zTR/Hearth-Components---Tokens?node-id=6300-2825&t=JmfcCbdIvO3jcjc3-4" />
20
-
21
- <BackToTopButton />
22
-
23
1
  # Modal
24
2
 
25
3
  The `Modal` component provides a versatile dialog interface that slides up from the bottom of the screen. It's built on top of
26
- the <StorybookLink to="components-bottom-sheet">`BottomSheetModal`</StorybookLink>
4
+ the `BottomSheetModal`
27
5
  component and includes pre-configured layouts for common modal patterns including headers, content areas, and action buttons.
28
6
 
29
7
  The Modal component is ideal for displaying important information, collecting user input, or presenting choices that require user attention
30
8
  without navigating away from the current screen.
31
9
 
32
- If you need a modal layout inside a React Navigation modal screen, use <StorybookLink to="components-nav-modal">`NavModal`</StorybookLink> instead.
10
+ If you need a modal layout inside a React Navigation modal screen, use `NavModal` instead.
33
11
 
34
12
  - [Playground](#playground)
35
13
  - [Usage](#usage)
@@ -53,21 +31,21 @@ If you need a modal layout inside a React Navigation modal screen, use <Storyboo
53
31
 
54
32
  ## Playground
55
33
 
56
- <Canvas of={Stories.Playground} />
57
-
58
- <Controls of={Stories.Playground} />
59
-
60
- ## Usage
34
+ ```tsx
35
+ // Example usage
36
+ <View style={Platform.OS === 'web' ? { width: 400, height: 400 } : {}}>
37
+ <ViewWrap>
38
+ <Button onPress={openModal}>Open Modal</Button>
39
+
40
+ <Modal ref={modalRef} {...args} />
41
+ </ViewWrap>
42
+ </View>
43
+ ```
61
44
 
62
45
  ### Basic Usage
63
46
 
64
- <UsageWrap>
65
- <Center>
66
- <Button onPress={() => {}}>Open Modal</Button>
67
- </Center>
68
- </UsageWrap>
69
-
70
47
  ```tsx
48
+ // Example usage
71
49
  import { useRef, useCallback } from 'react';
72
50
  import { Modal, Button, BottomSheetModal } from '@utilitywarehouse/hearth-react-native';
73
51
 
@@ -144,9 +122,7 @@ The `ModalImage` component can be used to display an image within the Modal. It
144
122
  | `dark` | `ImageSourcePropType` | The source of the image to display in dark mode (use instead of source) |
145
123
  | `...rest` | `ImageProps` | Additional props to pass to the underlying Image component |
146
124
 
147
- For more details about the ThemedImage component used internally, refer to the <StorybookLink to="utility-components-themed-image">`ThemedImage` documentation</StorybookLink>.
148
-
149
- ## Features
125
+ For more details about the ThemedImage component used internally, refer to the `ThemedImage` documentation.
150
126
 
151
127
  ### Automatic Layout Management
152
128
 
@@ -188,6 +164,7 @@ The Modal component is built with comprehensive accessibility support to ensure
188
164
  The Modal component automatically manages focus to provide a seamless experience:
189
165
 
190
166
  ```tsx
167
+ // Example usage
191
168
  // Focus is automatically set when modal opens
192
169
  const MyModal = () => {
193
170
  const modalRef = useRef<BottomSheetModal>(null);
@@ -210,6 +187,7 @@ const MyModal = () => {
210
187
  You can enhance accessibility by providing custom labels for buttons and close actions:
211
188
 
212
189
  ```tsx
190
+ // Example usage
213
191
  <Modal
214
192
  ref={modalRef}
215
193
  heading="Delete Item"
@@ -234,6 +212,7 @@ You can enhance accessibility by providing custom labels for buttons and close a
234
212
  Loading states are fully accessible with proper announcements:
235
213
 
236
214
  ```tsx
215
+ // Example usage
237
216
  <Modal
238
217
  ref={modalRef}
239
218
  heading="Processing Payment"
@@ -258,6 +237,7 @@ Loading states are fully accessible with proper announcements:
258
237
  To test accessibility in your Modal implementation:
259
238
 
260
239
  ```tsx
240
+ // Example usage
261
241
  import { AccessibilityInfo } from 'react-native';
262
242
 
263
243
  const TestableModal = () => {
@@ -294,19 +274,39 @@ The Modal component handles platform-specific accessibility differences:
294
274
  - **Android**: Implements TalkBack-specific accessibility patterns
295
275
  - **Cross-platform**: Consistent behavior across both platforms
296
276
 
297
- ## Examples
298
-
299
277
  ### Basic Modal
300
278
 
301
- <Canvas of={Stories.Playground} />
279
+ ```tsx
280
+ // Example usage
281
+ <View style={Platform.OS === 'web' ? { width: 400, height: 400 } : {}}>
282
+ <ViewWrap>
283
+ <Button onPress={openModal}>Open Modal</Button>
284
+
285
+ <Modal ref={modalRef} {...args} />
286
+ </ViewWrap>
287
+ </View>
288
+ ```
302
289
 
303
290
  ### Modal with Image
304
291
 
305
292
  Use the `image` prop to display an image-centric modal with centered content:
306
293
 
307
- <Canvas of={Stories.WithImage} />
294
+ ```tsx
295
+ // Example usage
296
+ <Modal
297
+ heading="Modal Heading"
298
+ description="This is a modal description"
299
+ showCloseButton
300
+ primaryButtonText="Primary"
301
+ secondaryButtonText="Cancel"
302
+ onPressCloseButton={() => null}
303
+ onPressPrimaryButton={() => null}
304
+ onPressSecondaryButton={() => null}
305
+ />
306
+ ```
308
307
 
309
308
  ```tsx
309
+ // Example usage
310
310
  import { Modal, ModalImage, Button } from '@utilitywarehouse/hearth-react-native';
311
311
 
312
312
  const ImageModal = () => {
@@ -335,9 +335,34 @@ const ImageModal = () => {
335
335
 
336
336
  Create a modal that takes up the full screen height:
337
337
 
338
- <Canvas of={Stories.FullscreenModal} />
338
+ ```tsx
339
+ // Example usage
340
+ <View style={Platform.OS === 'web' ? { width: 400, height: 800 } : { flex: 1 }}>
341
+ <ViewWrap>
342
+ <Button onPress={openModal}>Open Fullscreen Modal</Button>
343
+
344
+ <Modal
345
+ ref={modalRef}
346
+ heading="Fullscreen Modal Heading"
347
+ description="This is a fullscreen modal description"
348
+ onPressCloseButton={closeModal}
349
+ primaryButtonText="Primary"
350
+ onPressPrimaryButton={closeModal}
351
+ secondaryButtonText="Cancel"
352
+ onPressSecondaryButton={closeModal}
353
+ fullscreen
354
+ >
355
+ <Box gap="200">
356
+ <BodyText>This is a fullscreen modal with content.</BodyText>
357
+ <BodyText>You can swipe it up and down to close.</BodyText>
358
+ </Box>
359
+ </Modal>
360
+ </ViewWrap>
361
+ </View>
362
+ ```
339
363
 
340
364
  ```tsx
365
+ // Example usage
341
366
  const FullscreenModal = () => {
342
367
  const modalRef = useRef<BottomSheetModal>(null);
343
368
 
@@ -362,9 +387,22 @@ const FullscreenModal = () => {
362
387
 
363
388
  Add custom content between the header and footer sections:
364
389
 
365
- <Canvas of={Stories.WithCustomContent} />
390
+ ```tsx
391
+ // Example usage
392
+ <Modal
393
+ heading="Modal Heading"
394
+ description="This is a modal description"
395
+ showCloseButton
396
+ primaryButtonText="Primary"
397
+ secondaryButtonText="Cancel"
398
+ onPressCloseButton={() => null}
399
+ onPressPrimaryButton={() => null}
400
+ onPressSecondaryButton={() => null}
401
+ />
402
+ ```
366
403
 
367
404
  ```tsx
405
+ // Example usage
368
406
  const CustomContentModal = () => {
369
407
  const modalRef = useRef<BottomSheetModal>(null);
370
408
 
@@ -397,6 +435,7 @@ const CustomContentModal = () => {
397
435
  `description` accepts a string for the default text styling, or JSX when you need custom content such as a link:
398
436
 
399
437
  ```tsx
438
+ // Example usage
400
439
  <Modal
401
440
  ref={modalRef}
402
441
  heading="Update available"
@@ -412,9 +451,22 @@ const CustomContentModal = () => {
412
451
 
413
452
  Replace the built-in buttons with a custom sticky footer when you need custom layouts or button arrangements:
414
453
 
415
- <Canvas of={Stories.StickyCustomFooter} />
454
+ ```tsx
455
+ // Example usage
456
+ <Modal
457
+ heading="Modal Heading"
458
+ description="This is a modal description"
459
+ showCloseButton
460
+ primaryButtonText="Primary"
461
+ secondaryButtonText="Cancel"
462
+ onPressCloseButton={() => null}
463
+ onPressPrimaryButton={() => null}
464
+ onPressSecondaryButton={() => null}
465
+ />
466
+ ```
416
467
 
417
468
  ```tsx
469
+ // Example usage
418
470
  const StickyCustomFooterModal = () => {
419
471
  const modalRef = useRef<BottomSheetModal>(null);
420
472
 
@@ -458,9 +510,22 @@ const StickyCustomFooterModal = () => {
458
510
 
459
511
  Show a loading spinner while processing:
460
512
 
461
- <Canvas of={Stories.Loading} />
513
+ ```tsx
514
+ // Example usage
515
+ <Modal
516
+ heading="Modal Heading"
517
+ description="This is a modal description"
518
+ showCloseButton
519
+ primaryButtonText="Primary"
520
+ secondaryButtonText="Cancel"
521
+ onPressCloseButton={() => null}
522
+ onPressPrimaryButton={() => null}
523
+ onPressSecondaryButton={() => null}
524
+ />
525
+ ```
462
526
 
463
527
  ```tsx
528
+ // Example usage
464
529
  const LoadingModal = () => {
465
530
  const modalRef = useRef<BottomSheetModal>(null);
466
531
  const [isLoading, setIsLoading] = useState(false);
@@ -496,6 +561,7 @@ const LoadingModal = () => {
496
561
  Remove the close button for critical actions:
497
562
 
498
563
  ```tsx
564
+ // Example usage
499
565
  const CriticalModal = () => {
500
566
  const modalRef = useRef<BottomSheetModal>(null);
501
567
 
@@ -523,6 +589,7 @@ const CriticalModal = () => {
523
589
  Create a modal with only one action button:
524
590
 
525
591
  ```tsx
592
+ // Example usage
526
593
  const AlertModal = () => {
527
594
  const modalRef = useRef<BottomSheetModal>(null);
528
595
 
@@ -544,7 +611,7 @@ const AlertModal = () => {
544
611
 
545
612
  ### Navigation Modals
546
613
 
547
- For React Navigation modal screens, use <StorybookLink to="components-navmodal">`NavModal`</StorybookLink>. It contains the extracted screen-based modal layout, background variants, scrollable content handling, and the Android `triggerCloseAnimation()` ref used during navigation dismissal.
614
+ For React Navigation modal screens, use `NavModal`. It contains the extracted screen-based modal layout, background variants, scrollable content handling, and the Android `triggerCloseAnimation()` ref used during navigation dismissal.
548
615
 
549
616
  ### Close handlers and state management
550
617
 
@@ -556,6 +623,7 @@ The Modal component provides multiple ways to handle closing the modal and manag
556
623
  - Use the `onChange` prop to detect when the modal is opened or closed based on the index parameter (0 for open, -1 for closed) and manage state accordingly.
557
624
 
558
625
  ```tsx
626
+ // Example usage
559
627
  const MyModal = () => {
560
628
  const modalRef = useRef<BottomSheetModal>(null);
561
629
  const [isSubmitting, setIsSubmitting] = useState(false);
@@ -593,13 +661,12 @@ const MyModal = () => {
593
661
  };
594
662
  ```
595
663
 
596
- ## Integration Notes
597
-
598
664
  ### BottomSheetModalProvider
599
665
 
600
666
  When using the Modal component, ensure your app is wrapped with `BottomSheetModalProvider`:
601
667
 
602
668
  ```tsx
669
+ // Example usage
603
670
  import { BottomSheetModalProvider } from '@utilitywarehouse/hearth-react-native';
604
671
 
605
672
  const App = () => {
@@ -610,6 +677,7 @@ const App = () => {
610
677
  If your app already handles safe-area padding around modal content, you can disable Hearth's bottom-sheet safe-area spacing:
611
678
 
612
679
  ```tsx
680
+ // Example usage
613
681
  import { BottomSheetModalProvider } from '@utilitywarehouse/hearth-react-native';
614
682
 
615
683
  const App = () => {
@@ -632,6 +700,7 @@ The Modal component forwards its ref to the underlying `BottomSheetModal`, givin
632
700
  - `snapToPosition(position)` - Snap to a specific position
633
701
 
634
702
  ```tsx
703
+ // Example usage
635
704
  const modalRef = useRef<BottomSheetModal>(null);
636
705
 
637
706
  // Open modal
@@ -647,5 +716,5 @@ modalRef.current?.snapToIndex(1);
647
716
  ## External Resources
648
717
 
649
718
  This component is built on top of [@gorhom/bottom-sheet](https://gorhom.github.io/react-native-bottom-sheet/) (v5). For more information about the
650
- underlying BottomSheet functionality, please refer to the <StorybookLink to="components-bottomsheet">BottomSheet documentation</StorybookLink> and
719
+ underlying BottomSheet functionality, please refer to the BottomSheet documentation and
651
720
  the [official documentation](https://gorhom.dev/react-native-bottom-sheet/).
@@ -1,22 +1,8 @@
1
- import { Canvas, Controls, Meta } from '@storybook/addon-docs/blocks';
2
- import { BodyText, Button, Flex, InlineLink } from '../../';
3
- import StorybookLink from '../../../../../shared/storybook/StorybookLink';
4
- import modalAndroidVideo from '../../../docs/assets/modal-android.mp4';
5
- import modaliOSVideo from '../../../docs/assets/modal-ios.mp4';
6
- import { BackToTopButton, ViewFigmaButton } from '../../../docs/components';
7
- import * as Stories from './NavModal.stories';
8
-
9
- <Meta title="Components / Nav Modal" />
10
-
11
- <ViewFigmaButton url="https://www.figma.com/design/dLI9bmyMr42LV7dtFeW27J/Hearth-Patterns---Guides?node-id=6314-9103&t=oq3NaPLaAu3di6Db-4" />
12
-
13
- <BackToTopButton />
14
-
15
1
  # Nav Modal
16
2
 
17
3
  The `NavModal` component is the screen-based modal layout for navigation flows. Use it when a screen is already being presented by React Navigation with `presentation: 'modal'` or `presentation: 'fullScreenModal'` and you want Hearth's modal structure, actions, and Android close animation support.
18
4
 
19
- If you need a bottom-sheet modal that you present with a ref, use <StorybookLink to="components-modal">`Modal`</StorybookLink> instead.
5
+ If you need a bottom-sheet modal that you present with a ref, use `Modal` instead.
20
6
 
21
7
  - [Playground](#playground)
22
8
  - [Usage](#usage)
@@ -27,13 +13,22 @@ If you need a bottom-sheet modal that you present with a ref, use <StorybookLink
27
13
 
28
14
  ## Playground
29
15
 
30
- <Canvas of={Stories.Playground} />
31
-
32
- <Controls of={Stories.Playground} />
16
+ ```tsx
17
+ // Example usage
18
+ <View style={Platform.OS === 'web' ? { width: 400, height: 720 } : { flex: 1 }}>
19
+ <NavModal {...args}>
20
+ <Box gap="200">
21
+ <BodyText>This is a navigation modal with content.</BodyText>
22
+ <BodyText>Use it for React Navigation modal screens instead of bottom sheets.</BodyText>
23
+ </Box>
24
+ </NavModal>
25
+ </View>
26
+ ```
33
27
 
34
28
  ## Usage
35
29
 
36
30
  ```tsx
31
+ // Example usage
37
32
  import { useNavigation } from '@react-navigation/native';
38
33
  import type { NavigationAction } from '@react-navigation/native';
39
34
  import { useCallback, useEffect, useRef } from 'react';
@@ -171,23 +166,68 @@ When `footer` is provided, the primary and secondary button props are not availa
171
166
 
172
167
  ## Examples
173
168
 
174
- | ios | android |
175
- | ------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------- |
176
- | <video src={modaliOSVideo} width={300} height="auto" controls loop autoPlay /> | <video src={modalAndroidVideo} width={300} height="auto" controls loop autoPlay /> |
169
+ | ios | android |
170
+ | --- | ------- |
171
+ | | |
177
172
 
178
173
  ### Brand Background
179
174
 
180
- <Canvas of={Stories.BrandBackground} />
175
+ ```tsx
176
+ // Example usage
177
+ <View style={Platform.OS === 'web' ? { width: 400, height: 720 } : { flex: 1 }}>
178
+ <NavModal {...args}>
179
+ <Box gap="200">
180
+ <BodyText inverted>Brand background content stays readable with inverted text.</BodyText>
181
+ <BodyText inverted>Buttons and the close icon also invert automatically.</BodyText>
182
+ </Box>
183
+ </NavModal>
184
+ </View>
185
+ ```
181
186
 
182
187
  ### Full-Screen Presentation
183
188
 
184
- <Canvas of={Stories.FullScreenPresentation} />
189
+ ```tsx
190
+ // Example usage
191
+ <View style={Platform.OS === 'web' ? { width: 400, height: 720 } : { flex: 1 }}>
192
+ <NavModal {...args}>
193
+ <Box gap="200">
194
+ <BodyText>This uses the full-screen navigation modal presentation.</BodyText>
195
+ <BodyText>The content switches away from the sheet-style card treatment.</BodyText>
196
+ </Box>
197
+ </NavModal>
198
+ </View>
199
+ ```
185
200
 
186
201
  ### Sticky Custom Footer
187
202
 
188
- <Canvas of={Stories.StickyCustomFooter} />
203
+ ```tsx
204
+ // Example usage
205
+ <View style={Platform.OS === 'web' ? { width: 400, height: 720 } : { flex: 1 }}>
206
+ <NavModal
207
+ heading="Confirm changes"
208
+ description="This example replaces the default buttons with a custom sticky footer."
209
+ footer={
210
+ <Flex direction="row" spacing="md">
211
+ <Button variant="outline" colorScheme="functional" style={{ flex: 1 }}>
212
+ Back
213
+ </Button>
214
+ <Button style={{ flex: 1 }}>Continue</Button>
215
+ </Flex>
216
+ }
217
+ footerStyle={{
218
+ boxShadow: '0px -6px 12px rgba(16, 24, 40, 0.12)',
219
+ }}
220
+ >
221
+ <Box gap="200">
222
+ <BodyText>This sticky footer stays pinned while the body content scrolls.</BodyText>
223
+ <BodyText>Use the footer prop when you need custom layouts or custom buttons.</BodyText>
224
+ </Box>
225
+ </NavModal>
226
+ </View>
227
+ ```
189
228
 
190
229
  ```tsx
230
+ // Example usage
191
231
  <NavModal
192
232
  heading="Confirm changes"
193
233
  description="Use a custom sticky footer when your actions need a custom layout."
@@ -212,6 +252,7 @@ When `footer` is provided, the primary and secondary button props are not availa
212
252
  `description` accepts a string for the default text styling, or JSX when you need custom content such as a link.
213
253
 
214
254
  ```tsx
255
+ // Example usage
215
256
  <NavModal
216
257
  heading="Update available"
217
258
  description={
@@ -1,14 +1,3 @@
1
- import { Canvas, Controls, Meta } from '@storybook/addon-docs/blocks';
2
- import { Box, Center, Pagination } from '../..';
3
- import { BackToTopButton, UsageWrap, ViewFigmaButton } from '../../../docs/components';
4
- import * as Stories from './Pagination.stories';
5
-
6
- <Meta title="Components / Pagination" />
7
-
8
- <BackToTopButton />
9
-
10
- <ViewFigmaButton url="https://www.figma.com/design/6NKZXZhFSExXrcbBgc6zTR/Hearth-Components---Tokens?node-id=6416-5836&t=pZwKJYFo1y1QRQD1-4" />
11
-
12
1
  # Pagination
13
2
 
14
3
  Pagination helps users move between pages of content while keeping the current position visible. It supports both a full page list and a condensed “Page X of Y” layout.
@@ -20,21 +9,15 @@ Pagination helps users move between pages of content while keeping the current p
20
9
 
21
10
  ## Playground
22
11
 
23
- <Canvas of={Stories.Playground} />
24
-
25
- <Controls of={Stories.Playground} />
12
+ ```tsx
13
+ // Example usage
14
+ <Pagination {...args} currentPage={currentPage} onPageChange={setCurrentPage} />
15
+ ```
26
16
 
27
17
  ## Usage
28
18
 
29
- <UsageWrap>
30
- <Center>
31
- <Box style={{ width: 520, maxWidth: '100%' }}>
32
- <Pagination currentPage={3} totalPages={10} onPageChange={() => {}} />
33
- </Box>
34
- </Center>
35
- </UsageWrap>
36
-
37
19
  ```tsx
20
+ // Example usage
38
21
  import { Pagination } from '@utilitywarehouse/hearth-react-native';
39
22
  import { useState } from 'react';
40
23
 
@@ -55,13 +38,15 @@ const MyComponent = () => {
55
38
  | `condensed` | `boolean` | Displays “Page X of Y” instead of numbered items. | `false` |
56
39
  | `hideSkipButtons` | `boolean` | Hides the first and last page controls. | `false` |
57
40
 
58
- ## Examples
59
-
60
41
  ### Condensed
61
42
 
62
- <Canvas of={Stories.Condensed} />
43
+ ```tsx
44
+ // Example usage
45
+ <Pagination condensed currentPage={currentPage} onPageChange={setCurrentPage} totalPages={10} />
46
+ ```
63
47
 
64
48
  ```tsx
49
+ // Example usage
65
50
  const [currentPage, setCurrentPage] = useState(1);
66
51
 
67
52
  <Pagination condensed currentPage={currentPage} onPageChange={setCurrentPage} totalPages={10} />;
@@ -69,9 +54,18 @@ const [currentPage, setCurrentPage] = useState(1);
69
54
 
70
55
  ### Without skip buttons
71
56
 
72
- <Canvas of={Stories.WithoutSkipButtons} />
57
+ ```tsx
58
+ // Example usage
59
+ <Pagination
60
+ currentPage={currentPage}
61
+ hideSkipButtons
62
+ onPageChange={setCurrentPage}
63
+ totalPages={10}
64
+ />
65
+ ```
73
66
 
74
67
  ```tsx
68
+ // Example usage
75
69
  const [currentPage, setCurrentPage] = useState(3);
76
70
 
77
71
  <Pagination
@@ -84,9 +78,26 @@ const [currentPage, setCurrentPage] = useState(3);
84
78
 
85
79
  ### Edge cases
86
80
 
87
- <Canvas of={Stories.EdgeCases} />
81
+ ```tsx
82
+ // Example usage
83
+ <Flex direction="column" spacing="lg" style={{ width: '100%', maxWidth: 520 }}>
84
+ <Flex direction="column" spacing="xs">
85
+ <BodyText size="sm">Near start</BodyText>
86
+ <Pagination currentPage={nearStartPage} onPageChange={setNearStartPage} totalPages={10} />
87
+ </Flex>
88
+ <Flex direction="column" spacing="xs">
89
+ <BodyText size="sm">Middle</BodyText>
90
+ <Pagination currentPage={middlePage} onPageChange={setMiddlePage} totalPages={10} />
91
+ </Flex>
92
+ <Flex direction="column" spacing="xs">
93
+ <BodyText size="sm">Near end</BodyText>
94
+ <Pagination currentPage={nearEndPage} onPageChange={setNearEndPage} totalPages={10} />
95
+ </Flex>
96
+ </Flex>
97
+ ```
88
98
 
89
99
  ```tsx
100
+ // Example usage
90
101
  const [nearStartPage, setNearStartPage] = useState(2);
91
102
  const [middlePage, setMiddlePage] = useState(5);
92
103
  const [nearEndPage, setNearEndPage] = useState(9);