@hyphen/hyphen-components 2.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (319) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +70 -0
  3. package/package.json +138 -0
  4. package/src/components/Alert/Alert.constants.ts +19 -0
  5. package/src/components/Alert/Alert.mdx +29 -0
  6. package/src/components/Alert/Alert.module.scss +74 -0
  7. package/src/components/Alert/Alert.stories.tsx +102 -0
  8. package/src/components/Alert/Alert.test.tsx +187 -0
  9. package/src/components/Alert/Alert.tsx +157 -0
  10. package/src/components/Alert/Alert.types.ts +14 -0
  11. package/src/components/Badge/Badge.mdx +28 -0
  12. package/src/components/Badge/Badge.module.scss +155 -0
  13. package/src/components/Badge/Badge.stories.tsx +52 -0
  14. package/src/components/Badge/Badge.test.tsx +74 -0
  15. package/src/components/Badge/Badge.tsx +70 -0
  16. package/src/components/Box/Box.mdx +259 -0
  17. package/src/components/Box/Box.module.scss +16 -0
  18. package/src/components/Box/Box.stories.tsx +1679 -0
  19. package/src/components/Box/Box.test.tsx +478 -0
  20. package/src/components/Box/Box.tsx +636 -0
  21. package/src/components/Button/Button.constants.ts +10 -0
  22. package/src/components/Button/Button.mdx +71 -0
  23. package/src/components/Button/Button.module.scss +312 -0
  24. package/src/components/Button/Button.stories.tsx +117 -0
  25. package/src/components/Button/Button.test.tsx +460 -0
  26. package/src/components/Button/Button.tsx +241 -0
  27. package/src/components/Card/Card.mdx +46 -0
  28. package/src/components/Card/Card.module.scss +6 -0
  29. package/src/components/Card/Card.stories.tsx +101 -0
  30. package/src/components/Card/Card.test.tsx +11 -0
  31. package/src/components/Card/Card.tsx +61 -0
  32. package/src/components/Card/components/CardFooter/CardFooter.test.tsx +11 -0
  33. package/src/components/Card/components/CardFooter/CardFooter.tsx +35 -0
  34. package/src/components/Card/components/CardHeader/CardHeader.test.tsx +23 -0
  35. package/src/components/Card/components/CardHeader/CardHeader.tsx +54 -0
  36. package/src/components/Card/components/CardSection/CardSection.test.tsx +28 -0
  37. package/src/components/Card/components/CardSection/CardSection.tsx +102 -0
  38. package/src/components/Card/components/index.ts +3 -0
  39. package/src/components/CheckboxInput/CheckboxInput.mdx +98 -0
  40. package/src/components/CheckboxInput/CheckboxInput.stories.tsx +254 -0
  41. package/src/components/CheckboxInput/CheckboxInput.test.tsx +436 -0
  42. package/src/components/CheckboxInput/CheckboxInput.tsx +171 -0
  43. package/src/components/CheckboxInput/components/Checkbox.module.scss +174 -0
  44. package/src/components/CheckboxInput/components/Checkbox.test.tsx +201 -0
  45. package/src/components/CheckboxInput/components/Checkbox.tsx +176 -0
  46. package/src/components/CheckboxInput/components/CheckboxIcon.tsx +71 -0
  47. package/src/components/DateInput/DateInput.mdx +61 -0
  48. package/src/components/DateInput/DateInput.stories.tsx +168 -0
  49. package/src/components/DateInput/DateInput.test.tsx +258 -0
  50. package/src/components/DateInput/DateInput.tsx +189 -0
  51. package/src/components/DatePicker/DatePicker.mdx +52 -0
  52. package/src/components/DatePicker/DatePicker.module.scss +603 -0
  53. package/src/components/DatePicker/DatePicker.stories.tsx +199 -0
  54. package/src/components/DatePicker/DatePicker.test.tsx +26 -0
  55. package/src/components/DatePicker/DatePicker.tsx +138 -0
  56. package/src/components/Details/Details.mdx +30 -0
  57. package/src/components/Details/Details.module.scss +32 -0
  58. package/src/components/Details/Details.stories.tsx +38 -0
  59. package/src/components/Details/Details.test.tsx +189 -0
  60. package/src/components/Details/Details.tsx +51 -0
  61. package/src/components/Details/DetailsSummary.tsx +65 -0
  62. package/src/components/Drawer/Drawer.mdx +117 -0
  63. package/src/components/Drawer/Drawer.module.scss +96 -0
  64. package/src/components/Drawer/Drawer.stories.tsx +380 -0
  65. package/src/components/Drawer/Drawer.test.tsx +90 -0
  66. package/src/components/Drawer/Drawer.tsx +249 -0
  67. package/src/components/FormControl/FormControl.tsx +78 -0
  68. package/src/components/FormLabel/FormLabel.mdx +24 -0
  69. package/src/components/FormLabel/FormLabel.module.scss +19 -0
  70. package/src/components/FormLabel/FormLabel.stories.tsx +20 -0
  71. package/src/components/FormLabel/FormLabel.test.tsx +35 -0
  72. package/src/components/FormLabel/FormLabel.tsx +96 -0
  73. package/src/components/Formik/Formik.mdx +10 -0
  74. package/src/components/Formik/Formik.stories.tsx +307 -0
  75. package/src/components/Formik/FormikCheckboxInput/FormikCheckboxInput.test.tsx +172 -0
  76. package/src/components/Formik/FormikCheckboxInput/FormikCheckboxInput.tsx +41 -0
  77. package/src/components/Formik/FormikRadioGroup/FormikRadioGroup.test.tsx +205 -0
  78. package/src/components/Formik/FormikRadioGroup/FormikRadioGroup.tsx +37 -0
  79. package/src/components/Formik/FormikSelectInput/FormikSelectInput.test.tsx +210 -0
  80. package/src/components/Formik/FormikSelectInput/FormikSelectInput.tsx +41 -0
  81. package/src/components/Formik/FormikSelectInputInset/FormikSelectInputInset.test.tsx +153 -0
  82. package/src/components/Formik/FormikSelectInputInset/FormikSelectInputInset.tsx +44 -0
  83. package/src/components/Formik/FormikSelectInputNative/FormikSelectInputNative.test.tsx +161 -0
  84. package/src/components/Formik/FormikSelectInputNative/FormikSelectInputNative.tsx +46 -0
  85. package/src/components/Formik/FormikTextInput/FormikTextInput.test.tsx +176 -0
  86. package/src/components/Formik/FormikTextInput/FormikTextInput.tsx +38 -0
  87. package/src/components/Formik/FormikTextInputInset/FormikTextInputInset.test.tsx +170 -0
  88. package/src/components/Formik/FormikTextInputInset/FormikTextInputInset.tsx +42 -0
  89. package/src/components/Formik/FormikTextareaInput/FormikTextareaInput.test.tsx +186 -0
  90. package/src/components/Formik/FormikTextareaInput/FormikTextareaInput.tsx +42 -0
  91. package/src/components/Formik/FormikTextareaInputInset/FormikTextareaInputInset.test.tsx +179 -0
  92. package/src/components/Formik/FormikTextareaInputInset/FormikTextareaInputInset.tsx +42 -0
  93. package/src/components/Formik/FormikTimePicker/FormikTimePicker.test.tsx +224 -0
  94. package/src/components/Formik/FormikTimePicker/FormikTimePicker.tsx +37 -0
  95. package/src/components/Formik/FormikTimePickerNative/FormikTimePickerNative.test.tsx +175 -0
  96. package/src/components/Formik/FormikTimePickerNative/FormikTimePickerNative.tsx +38 -0
  97. package/src/components/Formik/FormikToggle/FormikToggle.test.tsx +172 -0
  98. package/src/components/Formik/FormikToggle/FormikToggle.tsx +38 -0
  99. package/src/components/Heading/Heading.constants.ts +19 -0
  100. package/src/components/Heading/Heading.mdx +35 -0
  101. package/src/components/Heading/Heading.module.scss +5 -0
  102. package/src/components/Heading/Heading.stories.tsx +90 -0
  103. package/src/components/Heading/Heading.test.tsx +67 -0
  104. package/src/components/Heading/Heading.tsx +67 -0
  105. package/src/components/HelpText/HelpText.module.scss +14 -0
  106. package/src/components/HelpText/HelpText.tsx +33 -0
  107. package/src/components/Icon/Icon.mdx +40 -0
  108. package/src/components/Icon/Icon.stories.tsx +72 -0
  109. package/src/components/Icon/Icon.test.tsx +30 -0
  110. package/src/components/Icon/Icon.tsx +61 -0
  111. package/src/components/InputValidationMessage/InputValidationMessage.module.scss +3 -0
  112. package/src/components/InputValidationMessage/InputValidationMessage.tsx +27 -0
  113. package/src/components/Modal/Modal.mdx +60 -0
  114. package/src/components/Modal/Modal.module.scss +135 -0
  115. package/src/components/Modal/Modal.stories.tsx +194 -0
  116. package/src/components/Modal/Modal.test.tsx +81 -0
  117. package/src/components/Modal/Modal.tsx +174 -0
  118. package/src/components/Modal/components/ModalBody/ModalBody.test.tsx +20 -0
  119. package/src/components/Modal/components/ModalBody/ModalBody.tsx +24 -0
  120. package/src/components/Modal/components/ModalFooter/ModalFooter.test.tsx +32 -0
  121. package/src/components/Modal/components/ModalFooter/ModalFooter.tsx +37 -0
  122. package/src/components/Modal/components/ModalHeader/ModalHeader.test.tsx +29 -0
  123. package/src/components/Modal/components/ModalHeader/ModalHeader.tsx +58 -0
  124. package/src/components/Modal/components/index.ts +5 -0
  125. package/src/components/Pagination/Pagination.mdx +26 -0
  126. package/src/components/Pagination/Pagination.stories.tsx +55 -0
  127. package/src/components/Pagination/Pagination.test.tsx +225 -0
  128. package/src/components/Pagination/Pagination.tsx +162 -0
  129. package/src/components/Pagination/Pagination.utilities.test.ts +133 -0
  130. package/src/components/Pagination/Pagination.utilities.ts +101 -0
  131. package/src/components/Popover/Popover.mdx +104 -0
  132. package/src/components/Popover/Popover.module.scss +74 -0
  133. package/src/components/Popover/Popover.stories.tsx +471 -0
  134. package/src/components/Popover/Popover.test.tsx +128 -0
  135. package/src/components/Popover/Popover.tsx +277 -0
  136. package/src/components/RadioGroup/RadioGroup.mdx +81 -0
  137. package/src/components/RadioGroup/RadioGroup.module.scss +23 -0
  138. package/src/components/RadioGroup/RadioGroup.stories.tsx +375 -0
  139. package/src/components/RadioGroup/RadioGroup.test.tsx +282 -0
  140. package/src/components/RadioGroup/RadioGroup.tsx +145 -0
  141. package/src/components/RadioGroup/RadioInput/RadioInput.module.scss +114 -0
  142. package/src/components/RadioGroup/RadioInput/RadioInput.test.tsx +156 -0
  143. package/src/components/RadioGroup/RadioInput/RadioInput.tsx +148 -0
  144. package/src/components/RadioGroup/RadioInput/RadioInputIcon.tsx +59 -0
  145. package/src/components/ResponsiveProvider/ResponsiveProvider.mdx +36 -0
  146. package/src/components/ResponsiveProvider/ResponsiveProvider.stories.tsx +54 -0
  147. package/src/components/ResponsiveProvider/ResponsiveProvider.test.tsx +70 -0
  148. package/src/components/ResponsiveProvider/ResponsiveProvider.tsx +73 -0
  149. package/src/components/SelectInput/SelectInput.mdx +115 -0
  150. package/src/components/SelectInput/SelectInput.module.scss +357 -0
  151. package/src/components/SelectInput/SelectInput.stories.tsx +373 -0
  152. package/src/components/SelectInput/SelectInput.test.tsx +403 -0
  153. package/src/components/SelectInput/SelectInput.tsx +245 -0
  154. package/src/components/SelectInputInset/SelectInputInset.mdx +56 -0
  155. package/src/components/SelectInputInset/SelectInputInset.module.scss +397 -0
  156. package/src/components/SelectInputInset/SelectInputInset.stories.tsx +189 -0
  157. package/src/components/SelectInputInset/SelectInputInset.test.tsx +305 -0
  158. package/src/components/SelectInputInset/SelectInputInset.tsx +235 -0
  159. package/src/components/SelectInputNative/SelectInputNative.mdx +87 -0
  160. package/src/components/SelectInputNative/SelectInputNative.module.scss +356 -0
  161. package/src/components/SelectInputNative/SelectInputNative.stories.tsx +282 -0
  162. package/src/components/SelectInputNative/SelectInputNative.test.tsx +341 -0
  163. package/src/components/SelectInputNative/SelectInputNative.tsx +121 -0
  164. package/src/components/Spinner/Spinner.mdx +29 -0
  165. package/src/components/Spinner/Spinner.module.scss +16 -0
  166. package/src/components/Spinner/Spinner.stories.tsx +48 -0
  167. package/src/components/Spinner/Spinner.test.tsx +47 -0
  168. package/src/components/Spinner/Spinner.tsx +116 -0
  169. package/src/components/Table/Table.mdx +216 -0
  170. package/src/components/Table/Table.module.scss +61 -0
  171. package/src/components/Table/Table.stories.tsx +884 -0
  172. package/src/components/Table/Table.test.tsx +437 -0
  173. package/src/components/Table/Table.tsx +171 -0
  174. package/src/components/Table/TableBody/TableBody.module.scss +19 -0
  175. package/src/components/Table/TableBody/TableBody.test.tsx +38 -0
  176. package/src/components/Table/TableBody/TableBody.tsx +96 -0
  177. package/src/components/Table/TableBody/TableBodyCell/TableBodyCell.module.scss +47 -0
  178. package/src/components/Table/TableBody/TableBodyCell/TableBodyCell.test.tsx +81 -0
  179. package/src/components/Table/TableBody/TableBodyCell/TableBodyCell.tsx +94 -0
  180. package/src/components/Table/TableHead/TableHead.test.tsx +20 -0
  181. package/src/components/Table/TableHead/TableHead.tsx +78 -0
  182. package/src/components/Table/TableHead/TableHeaderCell/TableHeaderCell.module.scss +72 -0
  183. package/src/components/Table/TableHead/TableHeaderCell/TableHeaderCell.test.tsx +187 -0
  184. package/src/components/Table/TableHead/TableHeaderCell/TableHeaderCell.tsx +192 -0
  185. package/src/components/Table/common/TableRow/TableRow.module.scss +5 -0
  186. package/src/components/Table/common/TableRow/TableRow.test.tsx +52 -0
  187. package/src/components/Table/common/TableRow/TableRow.tsx +155 -0
  188. package/src/components/TextInput/TextInput.mdx +96 -0
  189. package/src/components/TextInput/TextInput.module.scss +405 -0
  190. package/src/components/TextInput/TextInput.stories.tsx +268 -0
  191. package/src/components/TextInput/TextInput.test.tsx +231 -0
  192. package/src/components/TextInput/TextInput.tsx +263 -0
  193. package/src/components/TextInputInset/TextInputInset.mdx +62 -0
  194. package/src/components/TextInputInset/TextInputInset.module.scss +418 -0
  195. package/src/components/TextInputInset/TextInputInset.stories.tsx +213 -0
  196. package/src/components/TextInputInset/TextInputInset.test.tsx +222 -0
  197. package/src/components/TextInputInset/TextInputInset.tsx +261 -0
  198. package/src/components/TextareaInput/TextareaInput.mdx +117 -0
  199. package/src/components/TextareaInput/TextareaInput.module.scss +275 -0
  200. package/src/components/TextareaInput/TextareaInput.stories.tsx +293 -0
  201. package/src/components/TextareaInput/TextareaInput.test.tsx +195 -0
  202. package/src/components/TextareaInput/TextareaInput.tsx +182 -0
  203. package/src/components/TextareaInputInset/TextareaInputInset.mdx +55 -0
  204. package/src/components/TextareaInputInset/TextareaInputInset.module.scss +337 -0
  205. package/src/components/TextareaInputInset/TextareaInputInset.stories.tsx +160 -0
  206. package/src/components/TextareaInputInset/TextareaInputInset.test.tsx +199 -0
  207. package/src/components/TextareaInputInset/TextareaInputInset.tsx +213 -0
  208. package/src/components/ThemeProvider/ThemeProvider.mdx +11 -0
  209. package/src/components/ThemeProvider/ThemeProvider.stories.tsx +56 -0
  210. package/src/components/ThemeProvider/ThemeProvider.tsx +75 -0
  211. package/src/components/TimePicker/TimePicker.mdx +75 -0
  212. package/src/components/TimePicker/TimePicker.stories.tsx +149 -0
  213. package/src/components/TimePicker/TimePicker.test.tsx +97 -0
  214. package/src/components/TimePicker/TimePicker.tsx +83 -0
  215. package/src/components/TimePickerNative/TimePickerNative.mdx +67 -0
  216. package/src/components/TimePickerNative/TimePickerNative.stories.tsx +151 -0
  217. package/src/components/TimePickerNative/TimePickerNative.test.tsx +117 -0
  218. package/src/components/TimePickerNative/TimePickerNative.tsx +93 -0
  219. package/src/components/Toast/Toast.mdx +134 -0
  220. package/src/components/Toast/Toast.store.ts +280 -0
  221. package/src/components/Toast/Toast.stories.tsx +283 -0
  222. package/src/components/Toast/Toast.test.tsx +784 -0
  223. package/src/components/Toast/Toast.types.ts +98 -0
  224. package/src/components/Toast/ToastContainer.tsx +170 -0
  225. package/src/components/Toast/ToastNotification.module.scss +63 -0
  226. package/src/components/Toast/ToastNotification.tsx +176 -0
  227. package/src/components/Toast/index.ts +4 -0
  228. package/src/components/Toast/toast.ts +102 -0
  229. package/src/components/Toast/useToasts.ts +102 -0
  230. package/src/components/Toggle/Toggle.mdx +51 -0
  231. package/src/components/Toggle/Toggle.module.scss +294 -0
  232. package/src/components/Toggle/Toggle.stories.tsx +128 -0
  233. package/src/components/Toggle/Toggle.test.tsx +308 -0
  234. package/src/components/Toggle/Toggle.tsx +184 -0
  235. package/src/constants/keyCodes.ts +2 -0
  236. package/src/docs/Brands.mdx +153 -0
  237. package/src/docs/Colors.mdx +158 -0
  238. package/src/docs/DesignTokens.mdx +415 -0
  239. package/src/docs/GetStarted.mdx +47 -0
  240. package/src/docs/intro.mdx +12 -0
  241. package/src/fonts/AvenirBold.otf +0 -0
  242. package/src/fonts/AvenirBold.woff +0 -0
  243. package/src/fonts/AvenirBold.woff2 +0 -0
  244. package/src/fonts/AvenirLight.otf +0 -0
  245. package/src/fonts/AvenirLight.woff +0 -0
  246. package/src/fonts/AvenirLight.woff2 +0 -0
  247. package/src/fonts/AvenirRegular.otf +0 -0
  248. package/src/fonts/AvenirRegular.woff +0 -0
  249. package/src/fonts/AvenirRegular.woff2 +0 -0
  250. package/src/fonts/Geist-Bold.otf +0 -0
  251. package/src/fonts/Geist-Bold.woff +0 -0
  252. package/src/fonts/Geist-Bold.woff2 +0 -0
  253. package/src/fonts/Geist-Medium.otf +0 -0
  254. package/src/fonts/Geist-Medium.woff +0 -0
  255. package/src/fonts/Geist-Medium.woff2 +0 -0
  256. package/src/fonts/Geist-Regular.otf +0 -0
  257. package/src/fonts/Geist-Regular.woff +0 -0
  258. package/src/fonts/Geist-Regular.woff2 +0 -0
  259. package/src/fonts/Geist-SemiBold.otf +0 -0
  260. package/src/fonts/Geist-SemiBold.woff +0 -0
  261. package/src/fonts/Geist-SemiBold.woff2 +0 -0
  262. package/src/fonts/GeistMono-Regular.otf +0 -0
  263. package/src/fonts/GeistMono-Regular.woff +0 -0
  264. package/src/fonts/GeistMono-Regular.woff2 +0 -0
  265. package/src/hooks/index.ts +4 -0
  266. package/src/hooks/useBreakpoint/useBreakpoint.mdx +26 -0
  267. package/src/hooks/useBreakpoint/useBreakpoint.stories.tsx +30 -0
  268. package/src/hooks/useBreakpoint/useBreakpoint.test.tsx +19 -0
  269. package/src/hooks/useBreakpoint/useBreakpoint.ts +50 -0
  270. package/src/hooks/useIsomorphicLayoutEffect/useIsomorphicLayouEffect.ts +5 -0
  271. package/src/hooks/useOpenClose/useOpenClose.mdx +15 -0
  272. package/src/hooks/useOpenClose/useOpenClose.stories.tsx +41 -0
  273. package/src/hooks/useOpenClose/useOpenClose.test.tsx +119 -0
  274. package/src/hooks/useOpenClose/useOpenClose.tsx +95 -0
  275. package/src/hooks/useWindowSize/useWindowSize.mdx +25 -0
  276. package/src/hooks/useWindowSize/useWindowSize.stories.tsx +35 -0
  277. package/src/hooks/useWindowSize/useWindowSize.ts +24 -0
  278. package/src/index.ts +48 -0
  279. package/src/lib/cssShorthandToClasses.test.ts +149 -0
  280. package/src/lib/cssShorthandToClasses.ts +133 -0
  281. package/src/lib/doesStringIncludeCssUnit.ts +6 -0
  282. package/src/lib/generateResponsiveClasses.test.ts +24 -0
  283. package/src/lib/generateResponsiveClasses.ts +30 -0
  284. package/src/lib/getAutoCompleteValue.test.ts +27 -0
  285. package/src/lib/getAutoCompleteValue.ts +12 -0
  286. package/src/lib/getColumnKeys.ts +27 -0
  287. package/src/lib/getDimensionCss.test.ts +148 -0
  288. package/src/lib/getDimensionCss.ts +73 -0
  289. package/src/lib/getElementType.test.tsx +42 -0
  290. package/src/lib/getElementType.ts +42 -0
  291. package/src/lib/getFlexCss.test.ts +122 -0
  292. package/src/lib/getFlexCss.ts +67 -0
  293. package/src/lib/index.ts +15 -0
  294. package/src/lib/isFunction.ts +6 -0
  295. package/src/lib/mergeRefs.ts +15 -0
  296. package/src/lib/prefersReducedMotion.ts +12 -0
  297. package/src/lib/react-children-utilities/filter.ts +12 -0
  298. package/src/lib/react-children-utilities/index.ts +1 -0
  299. package/src/lib/reactRouterClickHandler.ts +37 -0
  300. package/src/lib/resolveValue.ts +7 -0
  301. package/src/lib/tokens.ts +139 -0
  302. package/src/modes.ts +8 -0
  303. package/src/styles/animation.scss +152 -0
  304. package/src/styles/cursor.scss +43 -0
  305. package/src/styles/display.scss +119 -0
  306. package/src/styles/flex.scss +453 -0
  307. package/src/styles/fonts.scss +44 -0
  308. package/src/styles/globals/utilities.scss +4 -0
  309. package/src/styles/mixins.scss +14 -0
  310. package/src/styles/overflow.scss +41 -0
  311. package/src/styles/position.scss +45 -0
  312. package/src/styles/reset.scss +108 -0
  313. package/src/styles/text-align.scss +21 -0
  314. package/src/styles/utilities.scss +9 -0
  315. package/src/styles/variables/forms.scss +71 -0
  316. package/src/styles/variables/index.scss +3 -0
  317. package/src/styles/white-space.scss +21 -0
  318. package/src/types/index.ts +201 -0
  319. package/src/types/lib.types.ts +3 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Hyphen AI
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,70 @@
1
+ <p align="center">
2
+ <a href="https://hyphen.ai" rel="noopener" target="_blank"><img width="150" src="./public/images/logo.png" alt="Hyphen logo"></a></p>
3
+ </p>
4
+
5
+ <h1 align="center" style="border-bottom: none;">Hyphen Component Library</h1>
6
+ <h3 align="center">
7
+
8
+ A [React](https://reactjs.org/) component library to power all Hyphen UI
9
+
10
+ </h3>
11
+
12
+ ## Quick Start
13
+
14
+ ### 1. Install
15
+
16
+ `npm install @hyphen/hyphen-components`
17
+
18
+ ### 2. Import Global CSS
19
+
20
+ ```jsx
21
+ import '@hyphen/hyphen-components/dist/css/utilities.css'; // Utility classes -- REQUIRED
22
+ import '@hyphen/hyphen-components/dist/css/variables.css'; // CSS Variables -- REQUIRED
23
+ import '@hyphen/hyphen-components/dist/css/index.css'; // Component CSS -- REQUIRED
24
+ import '@hyphen/hyphen-components/dist/css/fonts.css'; // Included Font files -- OPTIONAL BUT ENCOURAGED
25
+ ```
26
+
27
+ We recommend importing our global reset in order to maintain a consistent
28
+ look of all components across applications.
29
+
30
+ ```jsx
31
+ import '@hyphen/hyphen-components/dist/css/reset.css' // A Basic CSS Reset -- OPTIONAL BUT ENCOURAGED.
32
+ ```
33
+
34
+ ### 3. Usage
35
+
36
+ ```jsx
37
+ import React from 'react';
38
+ import ReactDOM from 'react-dom';
39
+ import { Box } from '@hyphen/hyphen-components';
40
+
41
+ function App() {
42
+ return <Box>Hello World</Box>;
43
+ }
44
+
45
+ ReactDOM.render(<App />, document.querySelector('#app'));
46
+ ```
47
+
48
+ ## Documentation
49
+
50
+ [SEE FULL DOCS HERE](https://ux.hyphen.ai)
51
+
52
+ ## Contributing
53
+
54
+ Issues and PRs welcome! See [HERE](./CONTRIBUTING.md) for our Contribution Guide.
55
+
56
+ ## Raising an Issue
57
+
58
+ When raising an issue:
59
+
60
+ * Make sure the issue hasn't been raised yet.
61
+ * Tag issue accordingly using your best judgement. Do NOT create new tags. If you feel a new one is needed, raise it in your issue.
62
+ * If your issue is a bug, include **screenshots** or animated GIFs in your issue whenever needed (if issue is visual in nature).
63
+ * If your issue is a bug, include steps to reproduce, or link to reproducible issue, e.g.: Code Sandbox or similar. Please also provide any additional details including device, OS, browser, browser version etc.
64
+
65
+ [Issues can be raised here](https://github.com/hyphen/hyphen-components/issues).
66
+
67
+ ## License
68
+
69
+ This project is licensed under the terms of the
70
+ [MIT license](./LICENSE).
package/package.json ADDED
@@ -0,0 +1,138 @@
1
+ {
2
+ "name": "@hyphen/hyphen-components",
3
+ "version": "2.9.0",
4
+ "license": "MIT",
5
+ "author": {
6
+ "name": "@hyphen"
7
+ },
8
+ "description": "A React component library to power all Hyphen UI.",
9
+ "main": "dist/index.js",
10
+ "module": "dist/hyphen-components.esm.js",
11
+ "typings": "dist/index.d.ts",
12
+ "files": [
13
+ "dist",
14
+ "src"
15
+ ],
16
+ "scripts": {
17
+ "build": "cross-env-shell BABEL_ENV=build IS_PUBLISHING=true \"dts build && webpack --config webpack.config.js\"",
18
+ "rollup": "cross-env-shell BABEL_ENV=build IS_PUBLISHING=true \"dts build\"",
19
+ "build-storybook": "storybook build",
20
+ "build-storybook-docs": "storybook build --docs",
21
+ "storybook-docs": "storybook dev --docs",
22
+ "lint": "dts lint",
23
+ "lint-fix": "dts lint --fix",
24
+ "size": "size-limit",
25
+ "start": "dts watch",
26
+ "storybook": "storybook dev -p 6006",
27
+ "test": "dts test --passWithNoTests",
28
+ "test-watch": "dts test --watch",
29
+ "semantic-release": "semantic-release",
30
+ "chromatic": "npx chromatic --project-token=chpt_8fddffb5556f0b7 --only-changed"
31
+ },
32
+ "husky": {
33
+ "hooks": {
34
+ "pre-commit": "dts lint"
35
+ }
36
+ },
37
+ "prettier": {
38
+ "printWidth": 80,
39
+ "semi": true,
40
+ "singleQuote": true,
41
+ "trailingComma": "es5"
42
+ },
43
+ "jest": {
44
+ "testEnvironment": "jsdom"
45
+ },
46
+ "peerDependencies": {
47
+ "react": ">=16"
48
+ },
49
+ "engines": {
50
+ "node": ">=12"
51
+ },
52
+ "size-limit": [
53
+ {
54
+ "path": "dist/hyphen-components.cjs.production.min.js",
55
+ "limit": "10 KB"
56
+ },
57
+ {
58
+ "path": "dist/hyphen-components.esm.js",
59
+ "limit": "10 KB"
60
+ }
61
+ ],
62
+ "devDependencies": {
63
+ "@babel/core": "^7.23.7",
64
+ "@chromatic-com/storybook": "^1.3.3",
65
+ "@semantic-release/commit-analyzer": "^11.1.0",
66
+ "@size-limit/preset-small-lib": "^11.0.1",
67
+ "@storybook/addon-essentials": "^8.0.9",
68
+ "@storybook/addon-mdx-gfm": "^8.0.9",
69
+ "@storybook/addon-themes": "^8.0.9",
70
+ "@storybook/blocks": "^8.0.9",
71
+ "@storybook/manager-api": "^8.0.9",
72
+ "@storybook/react": "^8.0.9",
73
+ "@storybook/react-vite": "^8.0.9",
74
+ "@storybook/theming": "^8.0.9",
75
+ "@testing-library/jest-dom": "^6.2.1",
76
+ "@testing-library/react": "^14.1.2",
77
+ "@testing-library/user-event": "^14.5.2",
78
+ "@tsconfig/recommended": "^1.0.3",
79
+ "@tsconfig/vite-react": "^3.0.0",
80
+ "@types/react": "^18.2.47",
81
+ "@types/react-datepicker": "^6.2.0",
82
+ "@types/react-dom": "^18.2.18",
83
+ "@types/react-modal": "^3.16.3",
84
+ "autoprefixer": "^10.4.17",
85
+ "babel-loader": "^9.1.3",
86
+ "chromatic": "^11.3.0",
87
+ "clean-webpack-plugin": "^4.0.0",
88
+ "cross-env": "^7.0.3",
89
+ "css-loader": "^6.9.0",
90
+ "css-minimizer-webpack-plugin": "^5.0.1",
91
+ "cssnano": "^6.0.3",
92
+ "csstype": "^3.1.3",
93
+ "dts-cli": "^2.0.4",
94
+ "husky": "^8.0.3",
95
+ "identity-obj-proxy": "^3.0.0",
96
+ "jest-preview": "^0.3.1",
97
+ "mini-css-extract-plugin": "^2.7.7",
98
+ "postcss-loader": "^7.3.4",
99
+ "react": "^18.2.0",
100
+ "react-dom": "^18.2.0",
101
+ "react-is": "^18.2.0",
102
+ "rollup-plugin-postcss": "^4.0.2",
103
+ "rollup-plugin-scss": "^4.0.0",
104
+ "sass": "^1.69.7",
105
+ "sass-loader": "^13.3.3",
106
+ "semantic-release": "^23.0.0",
107
+ "size-limit": "^11.0.1",
108
+ "storybook": "^8.0.9",
109
+ "ts-jest": "^29.1.2",
110
+ "tslib": "^2.6.2",
111
+ "typescript": "^5.3.3",
112
+ "url-loader": "^4.1.1",
113
+ "vite": "^5.1.6",
114
+ "webpack": "^5.89.0",
115
+ "webpack-cli": "^5.1.4",
116
+ "webpack-fix-style-only-entries": "^0.6.1"
117
+ },
118
+ "optionalDependencies": {
119
+ "@rollup/rollup-linux-x64-gnu": "^4.9.6"
120
+ },
121
+ "dependencies": {
122
+ "@hyphen/hyphen-design-tokens": "^4.4.1",
123
+ "@popperjs/core": "^2.11.8",
124
+ "@types/react-modal": "^3.16.3",
125
+ "classnames": "^2.5.1",
126
+ "date-fns": "^2.16.1",
127
+ "focus-trap-react": "^10.2.3",
128
+ "formik": "^2.4.5",
129
+ "react-datepicker": "^6.3.0",
130
+ "react-focus-lock": "^2.11.2",
131
+ "react-modal": "^3.16.1",
132
+ "react-popper": "^2.3.0",
133
+ "react-remove-scroll": "^2.5.9",
134
+ "react-router-dom": "^6.22.3",
135
+ "react-select": "^5.8.0",
136
+ "react-select-event": "^5.5.1"
137
+ }
138
+ }
@@ -0,0 +1,19 @@
1
+ import { IconName } from '../../types';
2
+ import { AlertVariant } from './Alert.types';
3
+
4
+ // eslint-disable-next-line import/prefer-default-export
5
+ export const ALERT_VARIANTS: AlertVariant[] = [
6
+ 'info',
7
+ 'success',
8
+ 'warning',
9
+ 'danger',
10
+ 'default',
11
+ ];
12
+
13
+ export const ALERT_ICONS_MAP: { [key in AlertVariant]: { icon: IconName } } = {
14
+ default: { icon: 'c-warning' },
15
+ info: { icon: 'c-info' },
16
+ success: { icon: 'c-check' },
17
+ warning: { icon: 't-warning' },
18
+ danger: { icon: 'c-remove' },
19
+ };
@@ -0,0 +1,29 @@
1
+ import { Canvas, Meta, ArgTypes } from '@storybook/blocks';
2
+ import { Alert } from './Alert';
3
+ import * as Stories from './Alert.stories';
4
+
5
+ <Meta of={Stories} />
6
+
7
+ # Overview
8
+
9
+ Use alerts to display feedback for users about specific actions, or states of an application.
10
+
11
+ <Canvas of={Stories.Overview} />
12
+
13
+ ## Props
14
+
15
+ <ArgTypes of={Alert} />
16
+
17
+ ## Variants
18
+
19
+ Alerts come in different variants based on the kind of feedback being delivered to the user. Additionally, a combination of icon, title, and message can be used depending on your content needs.
20
+
21
+ <Canvas of={Stories.Variants} />
22
+
23
+ ## Closable
24
+
25
+ The alert can be made closable by passing the `isClosable` prop. Note that this only controls the presence of
26
+ the close icon, but closing actually happens programmatically with a callback passed to the `onClose` prop.
27
+ If you need custom close text, pass it in the `closeText` prop.
28
+
29
+ <Canvas of={Stories.Closable} />
@@ -0,0 +1,74 @@
1
+ .alert {
2
+ border-width: var(--size-border-width-sm);
3
+ border-style: solid;
4
+ box-shadow: var(--size-box-shadow-0);
5
+ font-family: var(--assets-font-family-body);
6
+
7
+ .close-icon {
8
+ > button {
9
+ border: 0;
10
+ background: none;
11
+ cursor: pointer;
12
+ padding: 0;
13
+ color: inherit;
14
+ font: inherit;
15
+
16
+ &:hover {
17
+ color: var(--color-base-grey-600);
18
+ }
19
+ }
20
+ }
21
+ }
22
+
23
+ .alert-heading {
24
+ line-height: var(--size-line-height-heading);
25
+ }
26
+
27
+ .alert__default {
28
+ color: var(--color-base-grey-500);
29
+ background: var(--color-base-grey-100);
30
+ border-color: var(--color-base-grey-200);
31
+ }
32
+
33
+ .alert__info {
34
+ color: var(--color-base-grey-500);
35
+ background: var(--color-base-blue-50);
36
+ border-color: var(--color-base-blue-200);
37
+ }
38
+
39
+ .alert__success {
40
+ color: var(--color-base-grey-500);
41
+ background: var(--color-base-green-50);
42
+ border-color: var(--color-base-green-200);
43
+ }
44
+
45
+ .alert__warning {
46
+ color: var(--color-base-grey-500);
47
+ background: var(
48
+ --alert-warning-background-color,
49
+ var(--color-base-yellow-50)
50
+ );
51
+ border-color: var(--color-base-yellow-200);
52
+ }
53
+
54
+ .alert__danger {
55
+ color: var(--color-base-grey-500);
56
+ background: var(--color-base-red-50);
57
+ border-color: var(--color-base-red-200);
58
+ }
59
+
60
+ .alert__icon__default {
61
+ color: var(--color-base-grey-600);
62
+ }
63
+ .alert__icon__info {
64
+ color: var(--color-base-blue-500);
65
+ }
66
+ .alert__icon__success {
67
+ color: var(--color-base-green-500);
68
+ }
69
+ .alert__icon__warning {
70
+ color: var(--color-base-yellow-500);
71
+ }
72
+ .alert__icon__danger {
73
+ color: var(--color-base-red-500);
74
+ }
@@ -0,0 +1,102 @@
1
+ import { Alert } from './Alert';
2
+ import { AlertVariant } from './Alert.types';
3
+ import { Button } from '../Button/Button';
4
+
5
+ import type { Meta } from '@storybook/react';
6
+ import React from 'react';
7
+ import { useState } from 'react';
8
+
9
+ const meta: Meta<typeof Alert> = {
10
+ title: 'Components/Alert',
11
+ component: Alert,
12
+ };
13
+
14
+ export default meta;
15
+
16
+ export const Overview = () => (
17
+ <Alert
18
+ title="Contact Created"
19
+ message="The contact was saved on December 3, 2020 at 6:10pm PDT"
20
+ variant="success"
21
+ isClosable
22
+ hasIcon
23
+ />
24
+ );
25
+
26
+ export const Variants = () =>
27
+ (() => {
28
+ const variants: AlertVariant[] = [
29
+ 'default',
30
+ 'info',
31
+ 'success',
32
+ 'warning',
33
+ 'danger',
34
+ ];
35
+ const message = (variant: AlertVariant) => `
36
+ This is a ${variant} alert. It also has longer text to see what these alerts
37
+ can look like when broken into multiple lines. This one will definitely
38
+ break into multiple lines in most standard screen resolutions.
39
+ `;
40
+ return (
41
+ <>
42
+ {variants.map((variant: AlertVariant) => (
43
+ <Alert
44
+ message={message(variant)}
45
+ key={variant}
46
+ title={variant.charAt(0).toUpperCase() + variant.slice(1)}
47
+ variant={variant}
48
+ hasIcon
49
+ className="m-bottom-md"
50
+ />
51
+ ))}
52
+ </>
53
+ );
54
+ })();
55
+
56
+ export const Closable = () => {
57
+ const [isAlertTwoShowing, setAlertTwoShowing] = useState(true);
58
+ const [isAlertThreeShowing, setAlertThreeShowing] = useState(true);
59
+
60
+ return (
61
+ <>
62
+ <Alert
63
+ title="Won't Close"
64
+ message="Closable, but with no onClose callback so nothing happens when clicked."
65
+ variant="warning"
66
+ isClosable
67
+ className="m-bottom-md"
68
+ />
69
+ {isAlertTwoShowing ? (
70
+ <Alert
71
+ title="Closable"
72
+ message="This one works!"
73
+ variant="info"
74
+ isClosable
75
+ onClose={() => setAlertTwoShowing(false)}
76
+ className="m-bottom-md"
77
+ />
78
+ ) : (
79
+ <div className="m-bottom-md">
80
+ <Button onClick={() => setAlertTwoShowing(true)} size="sm">
81
+ Give me the second alert back!
82
+ </Button>
83
+ </div>
84
+ )}
85
+ {isAlertThreeShowing ? (
86
+ <Alert
87
+ message="With custom close text!"
88
+ variant="info"
89
+ isClosable
90
+ onClose={() => setAlertThreeShowing(false)}
91
+ closeText="Close me!"
92
+ />
93
+ ) : (
94
+ <div className="m-bottom-md">
95
+ <Button onClick={() => setAlertThreeShowing(true)} size="sm">
96
+ Give me the third alert back!
97
+ </Button>
98
+ </div>
99
+ )}
100
+ </>
101
+ );
102
+ };
@@ -0,0 +1,187 @@
1
+ import React, { ReactNode } from 'react';
2
+ import { render, screen, fireEvent } from '@testing-library/react';
3
+ import { Alert } from './Alert';
4
+ import { ALERT_VARIANTS } from './Alert.constants';
5
+
6
+ describe('Alert', () => {
7
+ describe('Default', () => {
8
+ test('It renders an alert with a simple text message', () => {
9
+ const message = 'Hello world!';
10
+ render(<Alert message={message} />);
11
+
12
+ const alert = screen.getByRole('alert');
13
+ expect(alert).toBeInTheDocument();
14
+ const alertMessage = screen.getByText(message);
15
+ expect(alertMessage).toBeInTheDocument();
16
+ });
17
+ });
18
+
19
+ describe('Variants', () => {
20
+ ALERT_VARIANTS.map((variant, index) =>
21
+ test(`renders variant background color ${ALERT_VARIANTS[index]}`, () => {
22
+ const { getByRole } = render(
23
+ <Alert variant={variant} message={variant} key={variant} />
24
+ );
25
+ expect(getByRole('alert').classList).toContain(`alert__${variant}`);
26
+ })
27
+ );
28
+ });
29
+
30
+ describe('Custom Class', () => {
31
+ test('It renders with a custom class if provided', () => {
32
+ const message = 'Hello world!';
33
+ render(<Alert message={message} className="custom-class" />);
34
+
35
+ const alert = screen.getByRole('alert');
36
+ expect(alert).toHaveClass('custom-class');
37
+ });
38
+ });
39
+
40
+ describe('With Icon', () => {
41
+ test('It shows a relevant icon when passed the `hasIcon` prop', () => {
42
+ const message = 'Hello world!';
43
+ const variants = [
44
+ 'info' as const,
45
+ 'success' as const,
46
+ 'warning' as const,
47
+ 'danger' as const,
48
+ ];
49
+
50
+ const { rerender } = render(<Alert message={message} />);
51
+
52
+ variants.forEach((variant) => {
53
+ rerender(<Alert message={message} variant={variant} hasIcon />);
54
+ const alertIcon = screen.getByTestId(`alert-icon-${variant}-test-id`);
55
+ expect(alertIcon).toBeInTheDocument();
56
+ });
57
+ });
58
+ });
59
+
60
+ describe('With Title', () => {
61
+ test('It renders an alert with a title if passed', () => {
62
+ const message = 'Hello world!';
63
+ const title = 'title';
64
+ render(<Alert title={title} message={message} />);
65
+
66
+ const alert = screen.getByRole('alert');
67
+ expect(alert).toBeInTheDocument();
68
+ const alertTitle = screen.getByText(title);
69
+ expect(alertTitle).toBeInTheDocument();
70
+ });
71
+ });
72
+
73
+ describe('With Custom JSX', () => {
74
+ test('It renders custom JSX if passed to the message prop', () => {
75
+ const jsxMessage: ReactNode = (
76
+ <button type="button">I am a button!</button>
77
+ );
78
+
79
+ render(<Alert message={jsxMessage} />);
80
+
81
+ const alertButton = screen.getByRole('button');
82
+ expect(alertButton).toBeInTheDocument();
83
+ expect(alertButton.textContent).toBe('I am a button!');
84
+ });
85
+
86
+ test('It renders custom JSX if a render prop is passed with a render function', () => {
87
+ const jsxRenderProp = (): ReactNode => (
88
+ <button type="button">I am a button!</button>
89
+ );
90
+
91
+ render(<Alert render={jsxRenderProp} />);
92
+
93
+ const alertButton = screen.getByRole('button');
94
+ expect(alertButton).toBeInTheDocument();
95
+ expect(alertButton.textContent).toBe('I am a button!');
96
+ });
97
+
98
+ test('Render prop supersedes message prop', () => {
99
+ const jsxRenderProp = (): ReactNode => (
100
+ <button type="button">I am a button!</button>
101
+ );
102
+ const message = 'Hello world!';
103
+
104
+ render(<Alert render={jsxRenderProp} message={message} />);
105
+
106
+ const alertButton = screen.getByRole('button');
107
+ expect(alertButton).toBeInTheDocument();
108
+ expect(alertButton.textContent).toBe('I am a button!');
109
+
110
+ expect(screen.queryByText(message)).not.toBeInTheDocument();
111
+ });
112
+ });
113
+
114
+ describe('Closable Alert', () => {
115
+ test('It renders a close icon if `isClosable` prop is passed', () => {
116
+ const message = 'I am closable!';
117
+ const { rerender } = render(<Alert message={message} />);
118
+
119
+ const noCloseButton = screen.queryByTestId('alert-close-icon-test-id');
120
+ expect(noCloseButton).not.toBeInTheDocument();
121
+
122
+ rerender(<Alert message={message} isClosable />);
123
+ const closeButton = screen.queryByTestId('alert-close-icon-test-id');
124
+ expect(closeButton).toBeInTheDocument();
125
+ });
126
+
127
+ test('It renders with custom close text if closeText prop is passed', () => {
128
+ const message = 'I am closable too!';
129
+ render(<Alert message={message} isClosable closeText="Close me!" />);
130
+
131
+ const closeButton = screen.queryByText('Close me!');
132
+ expect(closeButton).toBeInTheDocument();
133
+ });
134
+
135
+ test('It fires a callback if onClose prop is passed', () => {
136
+ const message = 'I am closable too!';
137
+ const mockOnClose = jest.fn();
138
+
139
+ const { rerender } = render(
140
+ <Alert message={message} isClosable onClose={mockOnClose} />
141
+ );
142
+
143
+ const closeButton = screen.queryByTestId('alert-close-icon-test-id');
144
+ if (closeButton) fireEvent.click(closeButton);
145
+ expect(mockOnClose).toBeCalledTimes(1);
146
+ mockOnClose.mockReset();
147
+
148
+ rerender(
149
+ <Alert
150
+ message={message}
151
+ isClosable
152
+ onClose={mockOnClose}
153
+ closeText="close"
154
+ />
155
+ );
156
+ const closeButtonSpan = screen.getByText('close');
157
+ if (closeButtonSpan) {
158
+ fireEvent.click(closeButtonSpan); // 1
159
+ fireEvent.keyUp(closeButtonSpan, { keyCode: 13 }); // 2
160
+ fireEvent.keyUp(closeButtonSpan, { keyCode: 13 }); // 3
161
+ fireEvent.keyUp(closeButtonSpan, { keyCode: 30 }); // No-op
162
+ fireEvent.keyUp(closeButtonSpan, { keyCode: 30 }); // No-op
163
+ }
164
+ expect(mockOnClose).toBeCalledTimes(3);
165
+ mockOnClose.mockReset();
166
+
167
+ rerender(<Alert message={message} isClosable closeText="close" />);
168
+ const closeButtonNotClickable = screen.getByText('close');
169
+ if (closeButtonNotClickable) {
170
+ fireEvent.click(closeButtonSpan); // No-op
171
+ fireEvent.keyUp(closeButtonSpan, { keyCode: 13 }); // No-op
172
+ fireEvent.keyUp(closeButtonSpan, { keyCode: 30 }); // No-op
173
+ }
174
+ expect(mockOnClose).toBeCalledTimes(0);
175
+ });
176
+ });
177
+
178
+ describe('Compact', () => {
179
+ test('It renders with the compact class when isCompact prop is true', () => {
180
+ const message = 'Hello world!';
181
+ render(<Alert message={message} isCompact />);
182
+
183
+ const alert = screen.getByRole('alert');
184
+ expect(alert).toHaveClass('p-xs');
185
+ });
186
+ });
187
+ });