@heliosgraphics/ui 2.0.0-alpha.100

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 (441) hide show
  1. package/LICENSE.md +21 -0
  2. package/components/Alert/Alert.meta.ts +45 -0
  3. package/components/Alert/Alert.module.css +41 -0
  4. package/components/Alert/Alert.tsx +54 -0
  5. package/components/Alert/Alert.types.ts +15 -0
  6. package/components/Alert/index.ts +1 -0
  7. package/components/Breadcrumb/Breadcrumb.meta.ts +17 -0
  8. package/components/Breadcrumb/Breadcrumb.tsx +55 -0
  9. package/components/Breadcrumb/Breadcrumb.types.ts +13 -0
  10. package/components/Breadcrumb/index.ts +2 -0
  11. package/components/Browser/Browser.meta.ts +27 -0
  12. package/components/Browser/Browser.module.css +3 -0
  13. package/components/Browser/Browser.tsx +16 -0
  14. package/components/Browser/Browser.types.ts +9 -0
  15. package/components/Browser/index.ts +1 -0
  16. package/components/Button/Button.meta.ts +46 -0
  17. package/components/Button/Button.module.css +337 -0
  18. package/components/Button/Button.spec.tsx +6 -0
  19. package/components/Button/Button.tsx +207 -0
  20. package/components/Button/Button.types.ts +30 -0
  21. package/components/Button/index.ts +2 -0
  22. package/components/ButtonGroup/ButtonGroup.meta.ts +37 -0
  23. package/components/ButtonGroup/ButtonGroup.module.css +55 -0
  24. package/components/ButtonGroup/ButtonGroup.spec.tsx +6 -0
  25. package/components/ButtonGroup/ButtonGroup.tsx +41 -0
  26. package/components/ButtonGroup/ButtonGroup.types.ts +11 -0
  27. package/components/ButtonGroup/index.ts +2 -0
  28. package/components/Checkbox/Checkbox.meta.ts +54 -0
  29. package/components/Checkbox/Checkbox.module.css +99 -0
  30. package/components/Checkbox/Checkbox.tsx +80 -0
  31. package/components/Checkbox/Checkbox.types.ts +17 -0
  32. package/components/Checkbox/index.ts +1 -0
  33. package/components/Clock/Clock.meta.ts +14 -0
  34. package/components/Clock/Clock.module.css +27 -0
  35. package/components/Clock/Clock.tsx +66 -0
  36. package/components/Clock/Clock.types.ts +1 -0
  37. package/components/Clock/Clock.utils.ts +16 -0
  38. package/components/Clock/index.ts +1 -0
  39. package/components/Column/Column.meta.ts +22 -0
  40. package/components/Column/Column.tsx +21 -0
  41. package/components/Column/Column.types.ts +8 -0
  42. package/components/Column/index.ts +2 -0
  43. package/components/Confirm/Confirm.meta.ts +51 -0
  44. package/components/Confirm/Confirm.tsx +40 -0
  45. package/components/Confirm/Confirm.types.ts +17 -0
  46. package/components/Confirm/index.ts +1 -0
  47. package/components/DatePicker/DatePicker.meta.ts +25 -0
  48. package/components/DatePicker/DatePicker.module.css +72 -0
  49. package/components/DatePicker/DatePicker.tsx +126 -0
  50. package/components/DatePicker/DatePicker.types.ts +8 -0
  51. package/components/DatePicker/DatePicker.utils.ts +53 -0
  52. package/components/DatePicker/index.ts +1 -0
  53. package/components/Debug/Debug.meta.ts +22 -0
  54. package/components/Debug/Debug.module.css +17 -0
  55. package/components/Debug/Debug.tsx +48 -0
  56. package/components/Debug/Debug.types.ts +6 -0
  57. package/components/Debug/Debug.utils.ts +23 -0
  58. package/components/Debug/index.ts +1 -0
  59. package/components/Details/Details.meta.ts +22 -0
  60. package/components/Details/Details.module.css +36 -0
  61. package/components/Details/Details.tsx +21 -0
  62. package/components/Details/Details.types.ts +8 -0
  63. package/components/Details/index.ts +1 -0
  64. package/components/Dialog/Dialog.meta.ts +48 -0
  65. package/components/Dialog/Dialog.module.css +109 -0
  66. package/components/Dialog/Dialog.tsx +100 -0
  67. package/components/Dialog/Dialog.types.ts +13 -0
  68. package/components/Dialog/index.ts +1 -0
  69. package/components/Donut/Donut.meta.ts +25 -0
  70. package/components/Donut/Donut.module.css +8 -0
  71. package/components/Donut/Donut.tsx +63 -0
  72. package/components/Donut/Donut.types.ts +12 -0
  73. package/components/Donut/Donut.utils.ts +11 -0
  74. package/components/Donut/index.ts +2 -0
  75. package/components/Dot/Dot.meta.ts +26 -0
  76. package/components/Dot/Dot.module.css +24 -0
  77. package/components/Dot/Dot.spec.tsx +6 -0
  78. package/components/Dot/Dot.tsx +46 -0
  79. package/components/Dot/Dot.types.ts +8 -0
  80. package/components/Dot/index.ts +1 -0
  81. package/components/Dropdown/Dropdown.meta.ts +30 -0
  82. package/components/Dropdown/Dropdown.module.css +92 -0
  83. package/components/Dropdown/Dropdown.tsx +117 -0
  84. package/components/Dropdown/Dropdown.types.ts +10 -0
  85. package/components/Dropdown/index.ts +2 -0
  86. package/components/Fieldset/Fieldset.meta.ts +18 -0
  87. package/components/Fieldset/Fieldset.module.css +3 -0
  88. package/components/Fieldset/Fieldset.tsx +14 -0
  89. package/components/Fieldset/Fieldset.types.ts +7 -0
  90. package/components/Fieldset/index.ts +1 -0
  91. package/components/Flex/Flex.meta.ts +47 -0
  92. package/components/Flex/Flex.tsx +40 -0
  93. package/components/Flex/Flex.types.ts +38 -0
  94. package/components/Flex/Flex.utils.spec.ts +97 -0
  95. package/components/Flex/Flex.utils.ts +162 -0
  96. package/components/Flex/index.ts +4 -0
  97. package/components/Grid/Grid.meta.ts +22 -0
  98. package/components/Grid/Grid.tsx +17 -0
  99. package/components/Grid/Grid.types.ts +8 -0
  100. package/components/Grid/index.ts +1 -0
  101. package/components/Heading/Heading.meta.ts +23 -0
  102. package/components/Heading/Heading.module.css +19 -0
  103. package/components/Heading/Heading.tsx +69 -0
  104. package/components/Heading/Heading.types.ts +9 -0
  105. package/components/Heading/components/H0/H0.meta.ts +11 -0
  106. package/components/Heading/components/H0/H0.module.css +4 -0
  107. package/components/Heading/components/H0/H0.tsx +12 -0
  108. package/components/Heading/components/H0/H0.types.ts +3 -0
  109. package/components/Heading/components/H0/index.ts +1 -0
  110. package/components/Heading/components/H1/H1.meta.ts +11 -0
  111. package/components/Heading/components/H1/H1.tsx +9 -0
  112. package/components/Heading/components/H1/H1.types.ts +3 -0
  113. package/components/Heading/components/H1/index.ts +1 -0
  114. package/components/Heading/components/H2/H2.meta.ts +11 -0
  115. package/components/Heading/components/H2/H2.tsx +9 -0
  116. package/components/Heading/components/H2/H2.types.ts +3 -0
  117. package/components/Heading/components/H2/index.ts +1 -0
  118. package/components/Heading/components/H3/H3.meta.ts +11 -0
  119. package/components/Heading/components/H3/H3.tsx +9 -0
  120. package/components/Heading/components/H3/H3.types.ts +3 -0
  121. package/components/Heading/components/H3/index.ts +1 -0
  122. package/components/Heading/components/H4/H4.meta.ts +11 -0
  123. package/components/Heading/components/H4/H4.tsx +9 -0
  124. package/components/Heading/components/H4/H4.types.ts +3 -0
  125. package/components/Heading/components/H4/index.ts +1 -0
  126. package/components/Heading/components/H5/H5.meta.ts +11 -0
  127. package/components/Heading/components/H5/H5.tsx +9 -0
  128. package/components/Heading/components/H5/H5.types.ts +3 -0
  129. package/components/Heading/components/H5/index.ts +1 -0
  130. package/components/Heading/components/H6/H6.meta.ts +11 -0
  131. package/components/Heading/components/H6/H6.tsx +9 -0
  132. package/components/Heading/components/H6/H6.types.ts +3 -0
  133. package/components/Heading/components/H6/index.ts +1 -0
  134. package/components/Heading/index.ts +2 -0
  135. package/components/Icon/Icon.meta.ts +28 -0
  136. package/components/Icon/Icon.module.css +22 -0
  137. package/components/Icon/Icon.tsx +32 -0
  138. package/components/Icon/Icon.types.ts +9 -0
  139. package/components/Icon/index.ts +1 -0
  140. package/components/Input/Input.meta.ts +53 -0
  141. package/components/Input/Input.module.css +82 -0
  142. package/components/Input/Input.tsx +124 -0
  143. package/components/Input/Input.types.ts +28 -0
  144. package/components/Input/index.ts +1 -0
  145. package/components/Layout/Layout.meta.ts +19 -0
  146. package/components/Layout/Layout.module.css +7 -0
  147. package/components/Layout/Layout.tsx +33 -0
  148. package/components/Layout/Layout.types.ts +19 -0
  149. package/components/Layout/components/LayoutAside/LayoutAside.meta.ts +15 -0
  150. package/components/Layout/components/LayoutAside/LayoutAside.module.css +40 -0
  151. package/components/Layout/components/LayoutAside/LayoutAside.tsx +27 -0
  152. package/components/Layout/components/LayoutAside/LayoutAside.types.ts +14 -0
  153. package/components/Layout/components/LayoutAside/components/LayoutAsideContent/LayoutAsideContent.meta.ts +15 -0
  154. package/components/Layout/components/LayoutAside/components/LayoutAsideContent/LayoutAsideContent.module.css +5 -0
  155. package/components/Layout/components/LayoutAside/components/LayoutAsideContent/LayoutAsideContent.tsx +19 -0
  156. package/components/Layout/components/LayoutAside/components/LayoutAsideContent/LayoutAsideContent.types.ts +5 -0
  157. package/components/Layout/components/LayoutAside/components/LayoutAsideContent/index.ts +1 -0
  158. package/components/Layout/components/LayoutAside/components/LayoutAsideFooter/LayoutAsideFooter.meta.ts +15 -0
  159. package/components/Layout/components/LayoutAside/components/LayoutAsideFooter/LayoutAsideFooter.module.css +10 -0
  160. package/components/Layout/components/LayoutAside/components/LayoutAsideFooter/LayoutAsideFooter.tsx +19 -0
  161. package/components/Layout/components/LayoutAside/components/LayoutAsideFooter/LayoutAsideFooter.types.ts +5 -0
  162. package/components/Layout/components/LayoutAside/components/LayoutAsideFooter/index.ts +1 -0
  163. package/components/Layout/components/LayoutAside/components/LayoutAsideToggle/LayoutAsideToggle.meta.ts +14 -0
  164. package/components/Layout/components/LayoutAside/components/LayoutAsideToggle/LayoutAsideToggle.tsx +31 -0
  165. package/components/Layout/components/LayoutAside/components/LayoutAsideToggle/LayoutAsideToggle.types.ts +1 -0
  166. package/components/Layout/components/LayoutAside/components/LayoutAsideToggle/index.ts +1 -0
  167. package/components/Layout/components/LayoutAside/index.ts +13 -0
  168. package/components/Layout/components/LayoutMain/LayoutMain.meta.ts +15 -0
  169. package/components/Layout/components/LayoutMain/LayoutMain.module.css +15 -0
  170. package/components/Layout/components/LayoutMain/LayoutMain.tsx +23 -0
  171. package/components/Layout/components/LayoutMain/LayoutMain.types.ts +12 -0
  172. package/components/Layout/components/LayoutMain/components/LayoutMainContent/LayoutMainContent.meta.ts +15 -0
  173. package/components/Layout/components/LayoutMain/components/LayoutMainContent/LayoutMainContent.module.css +4 -0
  174. package/components/Layout/components/LayoutMain/components/LayoutMainContent/LayoutMainContent.tsx +49 -0
  175. package/components/Layout/components/LayoutMain/components/LayoutMainContent/LayoutMainContent.types.ts +5 -0
  176. package/components/Layout/components/LayoutMain/components/LayoutMainContent/LayoutMainContent.utils.ts +65 -0
  177. package/components/Layout/components/LayoutMain/components/LayoutMainContent/index.ts +1 -0
  178. package/components/Layout/components/LayoutMain/index.ts +9 -0
  179. package/components/Layout/components/LayoutNavigation/LayoutNavigation.meta.ts +15 -0
  180. package/components/Layout/components/LayoutNavigation/LayoutNavigation.module.css +12 -0
  181. package/components/Layout/components/LayoutNavigation/LayoutNavigation.tsx +24 -0
  182. package/components/Layout/components/LayoutNavigation/LayoutNavigation.types.ts +5 -0
  183. package/components/Layout/components/LayoutNavigation/index.ts +1 -0
  184. package/components/Layout/components/LayoutSubNavigation/LayoutSubNavigation.meta.ts +15 -0
  185. package/components/Layout/components/LayoutSubNavigation/LayoutSubNavigation.module.css +12 -0
  186. package/components/Layout/components/LayoutSubNavigation/LayoutSubNavigation.tsx +24 -0
  187. package/components/Layout/components/LayoutSubNavigation/LayoutSubNavigation.types.ts +5 -0
  188. package/components/Layout/components/LayoutSubNavigation/index.ts +1 -0
  189. package/components/Layout/index.ts +17 -0
  190. package/components/Loading/Loading.meta.ts +20 -0
  191. package/components/Loading/Loading.module.css +65 -0
  192. package/components/Loading/Loading.tsx +57 -0
  193. package/components/Loading/Loading.types.ts +7 -0
  194. package/components/Loading/index.ts +1 -0
  195. package/components/Markdown/Markdown.meta.ts +28 -0
  196. package/components/Markdown/Markdown.module.css +274 -0
  197. package/components/Markdown/Markdown.tsx +27 -0
  198. package/components/Markdown/Markdown.types.ts +7 -0
  199. package/components/Markdown/Markdown.utils.spec.ts +11 -0
  200. package/components/Markdown/Markdown.utils.ts +10 -0
  201. package/components/Markdown/index.ts +1 -0
  202. package/components/Masonry/Masonry.meta.ts +24 -0
  203. package/components/Masonry/Masonry.tsx +49 -0
  204. package/components/Masonry/Masonry.types.ts +10 -0
  205. package/components/Masonry/index.ts +1 -0
  206. package/components/Menu/Menu.meta.ts +15 -0
  207. package/components/Menu/Menu.tsx +18 -0
  208. package/components/Menu/Menu.types.ts +15 -0
  209. package/components/Menu/components/MenuCategory/MenuCategory.meta.ts +32 -0
  210. package/components/Menu/components/MenuCategory/MenuCategory.module.css +73 -0
  211. package/components/Menu/components/MenuCategory/MenuCategory.tsx +88 -0
  212. package/components/Menu/components/MenuCategory/MenuCategory.types.ts +10 -0
  213. package/components/Menu/components/MenuCategory/index.ts +1 -0
  214. package/components/Menu/components/MenuFilter/MenuFilter.meta.ts +24 -0
  215. package/components/Menu/components/MenuFilter/MenuFilter.module.css +11 -0
  216. package/components/Menu/components/MenuFilter/MenuFilter.tsx +25 -0
  217. package/components/Menu/components/MenuFilter/MenuFilter.types.ts +7 -0
  218. package/components/Menu/components/MenuFilter/index.ts +1 -0
  219. package/components/Menu/components/MenuItem/MenuItem.meta.ts +42 -0
  220. package/components/Menu/components/MenuItem/MenuItem.module.css +37 -0
  221. package/components/Menu/components/MenuItem/MenuItem.tsx +73 -0
  222. package/components/Menu/components/MenuItem/MenuItem.types.ts +12 -0
  223. package/components/Menu/components/MenuItem/index.ts +1 -0
  224. package/components/Menu/index.ts +14 -0
  225. package/components/Overlay/Overlay.meta.ts +25 -0
  226. package/components/Overlay/Overlay.module.css +85 -0
  227. package/components/Overlay/Overlay.tsx +47 -0
  228. package/components/Overlay/Overlay.types.ts +9 -0
  229. package/components/Overlay/index.ts +1 -0
  230. package/components/Pie/Pie.meta.ts +23 -0
  231. package/components/Pie/Pie.module.css +5 -0
  232. package/components/Pie/Pie.tsx +47 -0
  233. package/components/Pie/Pie.types.ts +12 -0
  234. package/components/Pie/index.ts +2 -0
  235. package/components/Pill/Pill.meta.ts +64 -0
  236. package/components/Pill/Pill.module.css +64 -0
  237. package/components/Pill/Pill.tsx +89 -0
  238. package/components/Pill/Pill.types.ts +19 -0
  239. package/components/Pill/index.ts +1 -0
  240. package/components/Placeholder/Placeholder.meta.ts +25 -0
  241. package/components/Placeholder/Placeholder.module.css +3 -0
  242. package/components/Placeholder/Placeholder.tsx +24 -0
  243. package/components/Placeholder/Placeholder.types.ts +7 -0
  244. package/components/Placeholder/index.ts +1 -0
  245. package/components/Progress/Progress.meta.ts +35 -0
  246. package/components/Progress/Progress.module.css +22 -0
  247. package/components/Progress/Progress.tsx +30 -0
  248. package/components/Progress/Progress.types.ts +9 -0
  249. package/components/Progress/index.ts +1 -0
  250. package/components/Radio/Radio.meta.ts +21 -0
  251. package/components/Radio/Radio.module.css +101 -0
  252. package/components/Radio/Radio.tsx +73 -0
  253. package/components/Radio/Radio.types.ts +8 -0
  254. package/components/Radio/index.ts +1 -0
  255. package/components/Range/Range.meta.ts +26 -0
  256. package/components/Range/Range.module.css +68 -0
  257. package/components/Range/Range.tsx +49 -0
  258. package/components/Range/Range.types.ts +13 -0
  259. package/components/Range/index.ts +1 -0
  260. package/components/Segments/Segments.meta.ts +27 -0
  261. package/components/Segments/Segments.module.css +46 -0
  262. package/components/Segments/Segments.tsx +79 -0
  263. package/components/Segments/Segments.types.ts +15 -0
  264. package/components/Segments/Segments.utils.ts +19 -0
  265. package/components/Segments/components/SegmentButton/SegmentButton.meta.ts +32 -0
  266. package/components/Segments/components/SegmentButton/SegmentButton.module.css +34 -0
  267. package/components/Segments/components/SegmentButton/SegmentButton.tsx +61 -0
  268. package/components/Segments/components/SegmentButton/SegmentButton.types.ts +10 -0
  269. package/components/Segments/components/SegmentButton/index.ts +1 -0
  270. package/components/Segments/index.ts +9 -0
  271. package/components/Select/Select.meta.ts +43 -0
  272. package/components/Select/Select.module.css +76 -0
  273. package/components/Select/Select.tsx +53 -0
  274. package/components/Select/Select.types.ts +18 -0
  275. package/components/Select/index.ts +2 -0
  276. package/components/Separator/Separator.meta.ts +69 -0
  277. package/components/Separator/Separator.module.css +11 -0
  278. package/components/Separator/Separator.spec.tsx +6 -0
  279. package/components/Separator/Separator.tsx +36 -0
  280. package/components/Separator/Separator.types.ts +10 -0
  281. package/components/Separator/components/HRMarkup/HRMarkup.meta.ts +15 -0
  282. package/components/Separator/components/HRMarkup/HRMarkup.tsx +10 -0
  283. package/components/Separator/components/HRMarkup/HRMarkup.types.ts +5 -0
  284. package/components/Separator/components/HRMarkup/index.ts +1 -0
  285. package/components/Separator/components/HorizontalSeparator/HorizontalSeparator.meta.ts +22 -0
  286. package/components/Separator/components/HorizontalSeparator/HorizontalSeparator.module.css +22 -0
  287. package/components/Separator/components/HorizontalSeparator/HorizontalSeparator.tsx +22 -0
  288. package/components/Separator/components/HorizontalSeparator/HorizontalSeparator.types.ts +3 -0
  289. package/components/Separator/components/HorizontalSeparator/index.ts +1 -0
  290. package/components/Separator/components/VerticalSeparator/VerticalSeparator.meta.ts +22 -0
  291. package/components/Separator/components/VerticalSeparator/VerticalSeparator.module.css +20 -0
  292. package/components/Separator/components/VerticalSeparator/VerticalSeparator.tsx +22 -0
  293. package/components/Separator/components/VerticalSeparator/VerticalSeparator.types.ts +3 -0
  294. package/components/Separator/components/VerticalSeparator/index.ts +1 -0
  295. package/components/Separator/index.ts +1 -0
  296. package/components/Setup/Setup.global.css +14 -0
  297. package/components/Setup/Setup.meta.ts +22 -0
  298. package/components/Setup/Setup.tsx +53 -0
  299. package/components/Setup/Setup.types.ts +13 -0
  300. package/components/Setup/Setup.utils.ts +61 -0
  301. package/components/Setup/css/core.colors-helpers.css +322 -0
  302. package/components/Setup/css/core.colors.css +428 -0
  303. package/components/Setup/css/core.scale.css +49 -0
  304. package/components/Setup/css/core.setup.css +28 -0
  305. package/components/Setup/css/core.typography.css +57 -0
  306. package/components/Setup/css/feat.atomics.css +126 -0
  307. package/components/Setup/css/feat.markdown.css +39 -0
  308. package/components/Setup/css/feat.responsive.css +590 -0
  309. package/components/Setup/index.ts +1 -0
  310. package/components/Shimmer/Shimmer.meta.ts +32 -0
  311. package/components/Shimmer/Shimmer.module.css +24 -0
  312. package/components/Shimmer/Shimmer.tsx +31 -0
  313. package/components/Shimmer/Shimmer.types.ts +7 -0
  314. package/components/Shimmer/index.ts +1 -0
  315. package/components/Slider/Slider.meta.ts +22 -0
  316. package/components/Slider/Slider.module.css +49 -0
  317. package/components/Slider/Slider.tsx +18 -0
  318. package/components/Slider/Slider.types.ts +6 -0
  319. package/components/Slider/index.ts +1 -0
  320. package/components/Spacer/Spacer.meta.ts +17 -0
  321. package/components/Spacer/Spacer.tsx +8 -0
  322. package/components/Spacer/Spacer.types.ts +3 -0
  323. package/components/Spacer/index.ts +1 -0
  324. package/components/Table/Table.meta.ts +36 -0
  325. package/components/Table/Table.module.css +53 -0
  326. package/components/Table/Table.tsx +21 -0
  327. package/components/Table/Table.types.ts +8 -0
  328. package/components/Table/index.ts +1 -0
  329. package/components/Tabs/Tabs.meta.ts +24 -0
  330. package/components/Tabs/Tabs.module.css +43 -0
  331. package/components/Tabs/Tabs.tsx +63 -0
  332. package/components/Tabs/Tabs.types.ts +14 -0
  333. package/components/Tabs/index.ts +1 -0
  334. package/components/Text/Text.meta.ts +38 -0
  335. package/components/Text/Text.module.css +41 -0
  336. package/components/Text/Text.tsx +59 -0
  337. package/components/Text/Text.types.ts +20 -0
  338. package/components/Text/Text.utils.spec.ts +13 -0
  339. package/components/Text/Text.utils.ts +50 -0
  340. package/components/Text/components/Div/Div.meta.ts +11 -0
  341. package/components/Text/components/Div/Div.tsx +9 -0
  342. package/components/Text/components/Div/Div.types.ts +3 -0
  343. package/components/Text/components/Div/index.ts +1 -0
  344. package/components/Text/components/Micro/Micro.meta.ts +11 -0
  345. package/components/Text/components/Micro/Micro.tsx +9 -0
  346. package/components/Text/components/Micro/Micro.types.ts +3 -0
  347. package/components/Text/components/Micro/index.ts +1 -0
  348. package/components/Text/components/P/P.meta.ts +11 -0
  349. package/components/Text/components/P/P.tsx +9 -0
  350. package/components/Text/components/P/P.types.ts +3 -0
  351. package/components/Text/components/P/index.ts +1 -0
  352. package/components/Text/components/Small/Small.meta.ts +11 -0
  353. package/components/Text/components/Small/Small.tsx +9 -0
  354. package/components/Text/components/Small/Small.types.ts +3 -0
  355. package/components/Text/components/Small/index.ts +1 -0
  356. package/components/Text/components/Tiny/Tiny.meta.ts +11 -0
  357. package/components/Text/components/Tiny/Tiny.tsx +9 -0
  358. package/components/Text/components/Tiny/Tiny.types.ts +3 -0
  359. package/components/Text/components/Tiny/index.ts +1 -0
  360. package/components/Text/index.ts +2 -0
  361. package/components/Textarea/Textarea.meta.ts +26 -0
  362. package/components/Textarea/Textarea.module.css +52 -0
  363. package/components/Textarea/Textarea.tsx +68 -0
  364. package/components/Textarea/Textarea.types.ts +16 -0
  365. package/components/Textarea/index.ts +1 -0
  366. package/components/Tile/Tile.meta.ts +24 -0
  367. package/components/Tile/Tile.module.css +35 -0
  368. package/components/Tile/Tile.tsx +70 -0
  369. package/components/Tile/Tile.types.ts +16 -0
  370. package/components/Tile/index.ts +1 -0
  371. package/components/Timestamp/Timestamp.meta.ts +22 -0
  372. package/components/Timestamp/Timestamp.tsx +21 -0
  373. package/components/Timestamp/Timestamp.types.ts +6 -0
  374. package/components/Timestamp/index.ts +1 -0
  375. package/components/Toggle/Toggle.meta.ts +40 -0
  376. package/components/Toggle/Toggle.module.css +137 -0
  377. package/components/Toggle/Toggle.tsx +62 -0
  378. package/components/Toggle/Toggle.types.ts +9 -0
  379. package/components/Toggle/index.ts +1 -0
  380. package/components/Tooltip/Tooltip.meta.ts +78 -0
  381. package/components/Tooltip/Tooltip.module.css +63 -0
  382. package/components/Tooltip/Tooltip.tsx +115 -0
  383. package/components/Tooltip/Tooltip.types.ts +31 -0
  384. package/components/Tooltip/Tooltip.utils.ts +14 -0
  385. package/components/Tooltip/components/TooltipContent/TooltipContent.meta.ts +12 -0
  386. package/components/Tooltip/components/TooltipContent/TooltipContent.tsx +27 -0
  387. package/components/Tooltip/components/TooltipContent/TooltipContent.types.ts +3 -0
  388. package/components/Tooltip/components/TooltipContent/index.ts +1 -0
  389. package/components/Tooltip/components/TooltipTrigger/TooltipTrigger.meta.ts +12 -0
  390. package/components/Tooltip/components/TooltipTrigger/TooltipTrigger.tsx +19 -0
  391. package/components/Tooltip/components/TooltipTrigger/TooltipTrigger.types.ts +3 -0
  392. package/components/Tooltip/components/TooltipTrigger/index.ts +1 -0
  393. package/components/Tooltip/index.ts +6 -0
  394. package/components/shared/InputLabel/InputLabel.meta.ts +22 -0
  395. package/components/shared/InputLabel/InputLabel.module.css +14 -0
  396. package/components/shared/InputLabel/InputLabel.tsx +20 -0
  397. package/components/shared/InputLabel/InputLabel.types.ts +6 -0
  398. package/components/shared/InputLabel/index.ts +1 -0
  399. package/components/shared/ResultList/ResultList.meta.ts +20 -0
  400. package/components/shared/ResultList/ResultList.module.css +71 -0
  401. package/components/shared/ResultList/ResultList.tsx +67 -0
  402. package/components/shared/ResultList/ResultList.types.ts +19 -0
  403. package/components/shared/ResultList/index.ts +2 -0
  404. package/constants/animations.ts +5 -0
  405. package/constants/colors.ts +14 -0
  406. package/constants/components.ts +101 -0
  407. package/constants/emphasis.ts +3 -0
  408. package/constants/hooks.ts +1 -0
  409. package/constants/icons.ts +4 -0
  410. package/constants/intentions.ts +28 -0
  411. package/constants/meta.ts +60 -0
  412. package/constants/positions.ts +3 -0
  413. package/constants/scale.ts +5 -0
  414. package/constants/scope.ts +151 -0
  415. package/contexts/LayoutContext/LayoutContext.tsx +93 -0
  416. package/contexts/LayoutContext/LayoutContext.types.ts +11 -0
  417. package/contexts/LayoutContext/index.ts +2 -0
  418. package/globals.d.ts +14 -0
  419. package/hooks/useChatScroll.tsx +98 -0
  420. package/hooks/useDebounce.tsx +19 -0
  421. package/hooks/useIntersection.tsx +19 -0
  422. package/hooks/useInterval.tsx +27 -0
  423. package/hooks/useKeyPress.tsx +33 -0
  424. package/hooks/useLayoutContext.tsx +23 -0
  425. package/hooks/usePrevious.tsx +13 -0
  426. package/hooks/usePrint.tsx +31 -0
  427. package/hooks/useResizeObserver.tsx +38 -0
  428. package/hooks/useTheme.tsx +40 -0
  429. package/index.ts +96 -0
  430. package/package.json +67 -0
  431. package/types/colors.ts +13 -0
  432. package/types/icons.ts +3 -0
  433. package/types/intentions.ts +13 -0
  434. package/types/meta.ts +24 -0
  435. package/types/positions.ts +3 -0
  436. package/types/scale.ts +29 -0
  437. package/types/scope.ts +67 -0
  438. package/types/themes.ts +2 -0
  439. package/types/typography.ts +1 -0
  440. package/utils/colors.ts +11 -0
  441. package/utils/date.ts +54 -0
@@ -0,0 +1,47 @@
1
+ import type { HeliosAttributeMeta } from "../../types/meta"
2
+ import type { FlexBaseProps } from "./Flex.types"
3
+
4
+ export const meta: HeliosAttributeMeta<FlexBaseProps> = {
5
+ _extends: ["PropsWithChildren", 'Omit<HTMLAttributes<HTMLDivElement>, "color" | "results">'],
6
+ _patterns: [
7
+ {
8
+ id: "ui-flex-default",
9
+ description: "default",
10
+ content: `<Flex gap={GAP} isColumn={IS_COLUMN}>{CHILDREN}</Flex>`,
11
+ },
12
+ {
13
+ id: "ui-flex-responsive-padding",
14
+ description: "with responsive padding",
15
+ content: `<Flex padding={[0, 16, 24]}>{CHILDREN}</Flex>`,
16
+ },
17
+ ],
18
+ _status: "nominal",
19
+ _category: "layout",
20
+ className: { type: "string", isOptional: true },
21
+ gap: { type: "HeliosScale", isOptional: true },
22
+ grow: { type: "1 | 2 | 3 | 4 | 5 | 6 | 7 | 8", isOptional: true },
23
+ elevation: { type: '"small" | "medium" | "large"', isOptional: true },
24
+ isAround: { type: "boolean", isOptional: true },
25
+ isBetween: { type: "boolean", isOptional: true },
26
+ isCentered: { type: "boolean", isOptional: true },
27
+ isColumn: { type: "boolean", isOptional: true },
28
+ isFullHeight: { type: "boolean", isOptional: true },
29
+ isFullWidth: { type: "boolean", isOptional: true },
30
+ isInline: { type: "boolean", isOptional: true },
31
+ isNoWrap: { type: "boolean", isOptional: true },
32
+ isStretch: { type: "boolean", isOptional: true },
33
+ isWrapped: { type: "boolean", isOptional: true },
34
+ isXCentered: { type: "boolean", isOptional: true },
35
+ isYCentered: { type: "boolean", isOptional: true },
36
+ onClick: { type: "HeliosOnClickType", isOptional: true },
37
+ padding: { type: "ResponsiveScaleType", isOptional: true },
38
+ paddingBlock: { type: "ResponsiveScaleType", isOptional: true },
39
+ paddingInline: { type: "ResponsiveScaleType", isOptional: true },
40
+ paddingX: { type: "HeliosScale", isOptional: true },
41
+ paddingY: { type: "HeliosScale", isOptional: true },
42
+ ref: { type: "RefObject<HTMLDivElement>", isOptional: true },
43
+ withBackground: { type: "HeliosEmphasisType", isOptional: true },
44
+ withRadius: { type: "ResponsiveRadiusType", isOptional: true },
45
+ xAlign: { type: '"start" | "end" | "center"', isOptional: true },
46
+ yAlign: { type: '"start" | "end" | "baseline"', isOptional: true },
47
+ }
@@ -0,0 +1,40 @@
1
+ import { getFlexUtility, getSafeFlexProps } from "../Flex/Flex.utils"
2
+ import type { FlexProps } from "./Flex.types"
3
+ import type { FC, KeyboardEvent } from "react"
4
+
5
+ export const Flex: FC<FlexProps> = (props) => {
6
+ const { ref, ...restProps } = props
7
+ const flexClasses: string = getFlexUtility(restProps)
8
+ const safeProps = getSafeFlexProps(restProps)
9
+
10
+ const handleKeyDown = (event: KeyboardEvent<HTMLDivElement>): void => {
11
+ if (restProps.onClick && (event.key === "Enter" || event.key === " ")) {
12
+ event.preventDefault()
13
+ restProps.onClick(event as unknown as React.MouseEvent<HTMLDivElement>)
14
+ }
15
+ }
16
+
17
+ const a11yProps = restProps.onClick
18
+ ? {
19
+ role: (restProps.role ?? "button") as string,
20
+ tabIndex: restProps.tabIndex ?? 0,
21
+ onKeyDown: handleKeyDown,
22
+ "aria-label": restProps["aria-label"],
23
+ }
24
+ : {}
25
+
26
+ return (
27
+ <div
28
+ {...safeProps}
29
+ className={flexClasses}
30
+ onClick={restProps.onClick}
31
+ ref={ref}
32
+ data-ui-component="Flex"
33
+ {...a11yProps}
34
+ >
35
+ {restProps.children}
36
+ </div>
37
+ )
38
+ }
39
+
40
+ Flex.displayName = "Flex"
@@ -0,0 +1,38 @@
1
+ import type { HTMLAttributes, MouseEventHandler, PropsWithChildren, Ref } from "react"
2
+ import type { HeliosScaleType, HeliosRadiusType } from "../../types/scale"
3
+ import type { HeliosEmphasisType } from "../../types/intentions"
4
+
5
+ export type ResponsiveScaleType = HeliosScaleType | [HeliosScaleType, HeliosScaleType, HeliosScaleType]
6
+ export type ResponsiveRadiusType = HeliosRadiusType | [HeliosRadiusType, HeliosRadiusType, HeliosRadiusType]
7
+
8
+ export interface FlexBaseProps {
9
+ className?: string
10
+ elevation?: "small" | "medium" | "large"
11
+ gap?: ResponsiveScaleType
12
+ grow?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8
13
+ isAround?: boolean
14
+ isBetween?: boolean
15
+ isCentered?: boolean
16
+ isColumn?: boolean
17
+ isFullHeight?: boolean
18
+ isFullWidth?: boolean
19
+ isInline?: boolean
20
+ isNoWrap?: boolean
21
+ isStretch?: boolean
22
+ isWrapped?: boolean
23
+ isXCentered?: boolean
24
+ isYCentered?: boolean
25
+ onClick?: MouseEventHandler<HTMLDivElement>
26
+ padding?: ResponsiveScaleType
27
+ paddingBlock?: ResponsiveScaleType
28
+ paddingInline?: ResponsiveScaleType
29
+ paddingX?: HeliosScaleType
30
+ paddingY?: HeliosScaleType
31
+ ref?: Ref<HTMLDivElement>
32
+ withBackground?: HeliosEmphasisType
33
+ withRadius?: ResponsiveRadiusType
34
+ xAlign?: "start" | "end" | "center"
35
+ yAlign?: "start" | "end" | "baseline"
36
+ }
37
+
38
+ export type FlexProps = PropsWithChildren<FlexBaseProps> & Omit<HTMLAttributes<HTMLElement>, "color" | "results">
@@ -0,0 +1,97 @@
1
+ import { it, describe, expect } from "bun:test"
2
+ import { getFlexUtility, getSafeFlexProps } from "./Flex.utils"
3
+ import type { FlexProps } from "./Flex.types"
4
+
5
+ describe("getFlexUtility", () => {
6
+ const MOCK_FLEX_COLUMN_CLASSES = `flex flex-center flex-column flex-wrap`
7
+ const MOCK_FLEX_COLUMN: FlexProps = {
8
+ children: null,
9
+ isColumn: true,
10
+ isWrapped: true,
11
+ isCentered: true,
12
+ }
13
+
14
+ it("Generates simple wrapping column classes", () =>
15
+ expect(getFlexUtility(MOCK_FLEX_COLUMN)).toEqual(MOCK_FLEX_COLUMN_CLASSES))
16
+
17
+ const MOCK_FLEX_INLINE_CLASSES = `inline-flex gap-16`
18
+ const MOCK_FLEX_INLINE: FlexProps = {
19
+ children: null,
20
+ isInline: true,
21
+ gap: 16,
22
+ }
23
+
24
+ it("Generates inline classes", () => expect(getFlexUtility(MOCK_FLEX_INLINE)).toEqual(MOCK_FLEX_INLINE_CLASSES))
25
+
26
+ const MOCK_FLEX_CLASSES = `flex`
27
+ const MOCK_FLEX: FlexProps = { children: null }
28
+
29
+ it("Generates empty flex without attrs", () => expect(getFlexUtility(MOCK_FLEX)).toEqual(MOCK_FLEX_CLASSES))
30
+ it("Generates empty flex with undefined", () => expect(getFlexUtility(undefined)).toEqual(MOCK_FLEX_CLASSES))
31
+
32
+ const MOCK_FLEX_DUPLICATE_CLASSES = `flex flex-center ui-bg-primary`
33
+ const MOCK_FLEX_DUPLICATE: FlexProps = {
34
+ children: null,
35
+ isCentered: true,
36
+ className: "flex",
37
+ withBackground: "primary",
38
+ }
39
+
40
+ it("Generates without duplicated classes", () =>
41
+ expect(getFlexUtility(MOCK_FLEX_DUPLICATE)).toEqual(MOCK_FLEX_DUPLICATE_CLASSES))
42
+
43
+ it("Generates xAlign center class", () =>
44
+ expect(getFlexUtility({ children: null, xAlign: "center" })).toEqual("flex flex-x-center"))
45
+
46
+ const MOCK_FLEX_RESPONSIVE_CLASSES = `flex mobile:p-0 tablet:p-8 p-16`
47
+ const MOCK_FLEX_RESPONSIVE: FlexProps = {
48
+ children: null,
49
+ padding: [0, 8, 16],
50
+ }
51
+
52
+ it("Generates responsive padding scale", () =>
53
+ expect(getFlexUtility(MOCK_FLEX_RESPONSIVE)).toEqual(MOCK_FLEX_RESPONSIVE_CLASSES))
54
+
55
+ const MOCK_FLEX_RADIUS_CLASSES = `flex mobile:radius-none tablet:radius-small radius-normal`
56
+ const MOCK_FLEX_RADIUS: FlexProps = {
57
+ children: null,
58
+ withRadius: ["none", "small", "normal"],
59
+ }
60
+
61
+ it("Generates responsive radius scale", () =>
62
+ expect(getFlexUtility(MOCK_FLEX_RADIUS)).toEqual(MOCK_FLEX_RADIUS_CLASSES))
63
+ })
64
+
65
+ describe("getSafeFlexProps", () => {
66
+ const MOCK_FLEX_ATTRIBUTES: Record<string, unknown> = {
67
+ children: null,
68
+ className: "xo",
69
+ draggable: true,
70
+ gap: 24,
71
+ isAround: true,
72
+ isBetween: true,
73
+ isCentered: true,
74
+ isColumn: true,
75
+ isColumnCentered: true,
76
+ isInline: true,
77
+ isStretch: true,
78
+ isWrapped: true,
79
+ isXCentered: true,
80
+ isYCentered: true,
81
+ padding: 16,
82
+ paddingX: 16,
83
+ paddingY: 16,
84
+ withBackground: true,
85
+ withRadius: "normal",
86
+ xAlign: "start",
87
+ yAlign: "start",
88
+ }
89
+ const MOCK_FLEX_ATTRIBUTES_SAFE = {
90
+ children: null,
91
+ className: "xo",
92
+ draggable: true,
93
+ } as Record<string, unknown>
94
+
95
+ it("Generates without invalid attributes", () =>
96
+ expect(getSafeFlexProps(MOCK_FLEX_ATTRIBUTES)).toEqual(MOCK_FLEX_ATTRIBUTES_SAFE))
97
+ })
@@ -0,0 +1,162 @@
1
+ import type { HeliosScaleType, HeliosRadiusType } from "../../types/scale"
2
+ import type { FlexProps } from "./Flex.types"
3
+ import type { ResponsiveScaleType, ResponsiveRadiusType } from "./Flex.types"
4
+
5
+ export const getFlexUtility = (props?: FlexProps): string => {
6
+ if (!props) return "flex"
7
+
8
+ const flexClasses: Set<string> = new Set<string>()
9
+ const flexBase: "flex" | "inline-flex" = props?.isInline ? "inline-flex" : "flex"
10
+ const flexGrow: number = props.grow ?? 0
11
+
12
+ flexClasses.add(flexBase)
13
+
14
+ if (props.isStretch) flexClasses.add("align-stretch")
15
+ if (props.isCentered) flexClasses.add("flex-center")
16
+ if (props.isColumn) flexClasses.add("flex-column")
17
+ if (props.isWrapped) flexClasses.add("flex-wrap")
18
+ if (props.isYCentered) flexClasses.add("flex-y-center")
19
+ if (props.isXCentered) flexClasses.add("flex-x-center")
20
+ if (props.yAlign === "baseline") flexClasses.add("align-baseline")
21
+ if (props.yAlign === "start") flexClasses.add("align-flex-start")
22
+ if (props.yAlign === "end") flexClasses.add("align-flex-end")
23
+ if (props.xAlign === "start") flexClasses.add("justify-flex-start")
24
+ if (props.xAlign === "center") flexClasses.add("flex-x-center")
25
+ if (props.xAlign === "end") flexClasses.add("justify-flex-end")
26
+ if (props.isBetween) flexClasses.add("space-between")
27
+ if (props.isAround) flexClasses.add("space-around")
28
+ if (props.onClick) flexClasses.add("cursor-pointer")
29
+ if (props.isFullHeight) flexClasses.add("hp-100")
30
+ if (props.isFullWidth) flexClasses.add("wp-100")
31
+ if (props.isNoWrap) flexClasses.add("nowrap")
32
+ if (props.elevation === "small") flexClasses.add("elevation-sm")
33
+ if (props.elevation === "medium") flexClasses.add("elevation-md")
34
+ if (props.elevation === "large") flexClasses.add("elevation-lg")
35
+ if (flexGrow > 0 && flexGrow <= 8) flexClasses.add(`grow-${props.grow}`)
36
+
37
+ if (props.withRadius) {
38
+ const responsiveRadius = getRadius(props.withRadius)
39
+ flexClasses.add(responsiveRadius)
40
+ }
41
+
42
+ if (props.padding) {
43
+ const responsivePadding: string = getPadding(props.padding)
44
+ flexClasses.add(responsivePadding)
45
+ }
46
+
47
+ if (props.gap) {
48
+ const responsiveGap: string = getResponsiveScale(props.gap, "gap")
49
+ flexClasses.add(responsiveGap)
50
+ }
51
+
52
+ if (props.paddingBlock) {
53
+ const responsivePaddingBlock: string = getResponsiveScale(props.paddingBlock, "py")
54
+ flexClasses.add(responsivePaddingBlock)
55
+ }
56
+
57
+ if (props.paddingInline) {
58
+ const responsivePaddingInline: string = getResponsiveScale(props.paddingInline, "px")
59
+ flexClasses.add(responsivePaddingInline)
60
+ }
61
+
62
+ if (props.paddingY) flexClasses.add(`py-${props.paddingY}`)
63
+ if (props.paddingX) flexClasses.add(`px-${props.paddingX}`)
64
+
65
+ if (props.className) flexClasses.add(props.className)
66
+ if (props.withBackground === "primary") flexClasses.add("ui-bg-primary")
67
+ if (props.withBackground === "secondary") flexClasses.add("ui-bg-secondary")
68
+ if (props.withBackground === "tertiary") flexClasses.add("ui-bg-tertiary")
69
+
70
+ return Array.from(flexClasses).join(" ")
71
+ }
72
+
73
+ export const getResponsiveScale = (value?: ResponsiveScaleType, prefix: string = "p"): string => {
74
+ if (!value) return ""
75
+
76
+ const isArray: boolean = Boolean(value && value instanceof Array)
77
+ const classes = new Set<string>()
78
+
79
+ if (!isArray) return `${prefix}-${value}`
80
+
81
+ for (let index: number = 0; index < 3; index++) {
82
+ const element = (value as [HeliosScaleType, HeliosScaleType, HeliosScaleType])[index]
83
+
84
+ if (index === 0) classes.add(`mobile:${prefix}-${element ?? 0}`)
85
+ if (index === 1) classes.add(`tablet:${prefix}-${element ?? 0}`)
86
+ if (index === 2) classes.add(`${prefix}-${element ?? 0}`)
87
+ }
88
+
89
+ return Array.from(classes).join(" ")
90
+ }
91
+
92
+ export const getPadding = (paddingValue?: ResponsiveScaleType): string => {
93
+ if (!paddingValue) return ""
94
+
95
+ const isArray: boolean = Boolean(paddingValue && paddingValue instanceof Array)
96
+ const paddingClasses = new Set<string>()
97
+
98
+ if (!isArray) return `p-${paddingValue}`
99
+
100
+ for (let index: number = 0; index < 3; index++) {
101
+ const element = (paddingValue as [HeliosScaleType, HeliosScaleType, HeliosScaleType])[index]
102
+
103
+ if (index === 0) paddingClasses.add(`mobile:p-${element ?? 0}`)
104
+ if (index === 1) paddingClasses.add(`tablet:p-${element ?? 0}`)
105
+ if (index === 2) paddingClasses.add(`p-${element ?? 0}`)
106
+ }
107
+
108
+ return Array.from(paddingClasses).join(" ")
109
+ }
110
+
111
+ export const getRadius = (radiusValue?: ResponsiveRadiusType): string => {
112
+ if (!radiusValue) return ""
113
+
114
+ const isArray: boolean = Boolean(radiusValue && radiusValue instanceof Array)
115
+ const radiusClasses = new Set<string>()
116
+
117
+ if (!isArray) return `radius-${radiusValue}`
118
+
119
+ for (let index: number = 0; index < 3; index++) {
120
+ const element: HeliosRadiusType | undefined = (
121
+ radiusValue as [HeliosRadiusType, HeliosRadiusType, HeliosRadiusType]
122
+ )[index]
123
+
124
+ if (index === 0 && !!element) radiusClasses.add(`mobile:radius-${element}`)
125
+ if (index === 1 && !!element) radiusClasses.add(`tablet:radius-${element}`)
126
+ if (index === 2 && !!element) radiusClasses.add(`radius-${element}`)
127
+ }
128
+
129
+ return Array.from(radiusClasses).join(" ")
130
+ }
131
+
132
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
133
+ export const getSafeFlexProps = (props: Record<string, any>): Record<string, unknown> => {
134
+ const {
135
+ gap: _gap,
136
+ isAround: _isAround,
137
+ isBetween: _isBetween,
138
+ isCentered: _isCentered,
139
+ isColumn: _isColumn,
140
+ isColumnCentered: _isColumnCentered,
141
+ isFullHeight: _isFullHeight,
142
+ isFullWidth: _isFullWidth,
143
+ isInline: _isInline,
144
+ isStretch: _isStretch,
145
+ isJoined: _isJoined,
146
+ isWrapped: _isWrapped,
147
+ isXCentered: _isXCentered,
148
+ isYCentered: _isYCentered,
149
+ padding: _padding,
150
+ paddingBlock: _paddingBlock,
151
+ paddingInline: _paddingInline,
152
+ paddingX: _paddingX,
153
+ paddingY: _paddingY,
154
+ withBackground: _withBackground,
155
+ withRadius: _withRadius,
156
+ xAlign: _xAlign,
157
+ yAlign: _yAlign,
158
+ ...safeProps
159
+ } = props
160
+
161
+ return safeProps
162
+ }
@@ -0,0 +1,4 @@
1
+ import { Flex } from "./Flex"
2
+
3
+ export { Flex }
4
+ export type { FlexProps, ResponsiveRadiusType } from "./Flex.types"
@@ -0,0 +1,22 @@
1
+ import type { HeliosAttributeMeta } from "../../types/meta"
2
+ import type { GridBaseProps } from "./Grid.types"
3
+
4
+ export const meta: HeliosAttributeMeta<GridBaseProps> = {
5
+ _extends: ["PropsWithChildren"],
6
+ _patterns: [
7
+ {
8
+ id: "ui-grid-default",
9
+ description: "default",
10
+ content: `<Grid columns={4}>{CHILDREN}</Grid>`,
11
+ },
12
+ ],
13
+ _status: "experimental",
14
+ _category: "core",
15
+ columns: {
16
+ type: "number",
17
+ },
18
+ isResponsive: {
19
+ type: "boolean",
20
+ isOptional: true,
21
+ },
22
+ }
@@ -0,0 +1,17 @@
1
+ import type { GridProps } from "./Grid.types"
2
+ import { getClasses } from "@heliosgraphics/utils"
3
+ import type { FC } from "react"
4
+
5
+ export const Grid: FC<GridProps> = ({ columns, children }) => {
6
+ const gridClasses = getClasses("grid", {
7
+ [`grid-cols-${columns}`]: columns,
8
+ })
9
+
10
+ return (
11
+ <div className={gridClasses} data-ui-component="Grid">
12
+ {children}
13
+ </div>
14
+ )
15
+ }
16
+
17
+ Grid.displayName = "Grid"
@@ -0,0 +1,8 @@
1
+ import type { PropsWithChildren } from "react"
2
+
3
+ export interface GridBaseProps {
4
+ columns: number
5
+ isResponsive?: boolean
6
+ }
7
+
8
+ export type GridProps = PropsWithChildren<GridBaseProps>
@@ -0,0 +1 @@
1
+ export { Grid } from "./Grid"
@@ -0,0 +1,23 @@
1
+ import type { HeliosAttributeMeta } from "../../types/meta"
2
+ import type { HeadingBaseProps } from "./Heading.types"
3
+
4
+ export const meta: HeliosAttributeMeta<HeadingBaseProps> = {
5
+ _patterns: [
6
+ {
7
+ id: "ui-heading-default",
8
+ description: "default",
9
+ content: `<Heading level={1}>{CHILDREN}</Heading>`,
10
+ },
11
+ ],
12
+ _extends: ['Omit<BaseTextProps, "type">', "HTMLAttributes<HTMLHeadingElement>"],
13
+ _status: "nominal",
14
+ _category: "content",
15
+ level: {
16
+ type: "0 | 1 | 2 | 3 | 4 | 5 | 6",
17
+ },
18
+ lineHeight: {
19
+ type: "number",
20
+ isOptional: true,
21
+ description: "Overrides the default line-height",
22
+ },
23
+ }
@@ -0,0 +1,19 @@
1
+ .heading {
2
+ white-space: break-spaces;
3
+ }
4
+
5
+ .headingPrimary {
6
+ color: var(--ui-text-primary);
7
+ }
8
+
9
+ .headingSecondary {
10
+ color: var(--ui-text-secondary);
11
+ }
12
+
13
+ .headingTertiary {
14
+ color: var(--ui-text-tertiary);
15
+ }
16
+
17
+ .heading a {
18
+ text-decoration: none;
19
+ }
@@ -0,0 +1,69 @@
1
+ import { getTypographyUtility } from "../Text/Text.utils"
2
+ import { getClasses } from "@heliosgraphics/utils"
3
+ import { H0 } from "./components/H0"
4
+ import { H1 } from "./components/H1"
5
+ import { H2 } from "./components/H2"
6
+ import { H3 } from "./components/H3"
7
+ import { H4 } from "./components/H4"
8
+ import { H5 } from "./components/H5"
9
+ import { H6 } from "./components/H6"
10
+ import styles from "./Heading.module.css"
11
+ import type { HeadingProps } from "./Heading.types"
12
+ import type { FC, CSSProperties } from "react"
13
+
14
+ export const Heading: FC<HeadingProps> = (props) => {
15
+ const { level, lineClamp, lineHeight, style, className, ...rest } = props
16
+
17
+ const headingClasses: string = getClasses(className, styles.heading, {
18
+ [styles.headingPrimary]: props.emphasis === "primary",
19
+ [styles.headingSecondary]: props.emphasis === "secondary",
20
+ [styles.headingTertiary]: props.emphasis === "tertiary",
21
+ })
22
+ const utility: string = getTypographyUtility({
23
+ ...props,
24
+ className: headingClasses,
25
+ })
26
+ const lineClampStyle: CSSProperties | undefined = lineClamp
27
+ ? {
28
+ display: "-webkit-box",
29
+ WebkitLineClamp: lineClamp,
30
+ WebkitBoxOrient: "vertical",
31
+ overflow: "hidden",
32
+ }
33
+ : undefined
34
+
35
+ const lineHeightStyle: CSSProperties | undefined = lineHeight !== undefined ? { lineHeight } : undefined
36
+
37
+ const mergedStyle: CSSProperties | undefined =
38
+ style || lineClampStyle || lineHeightStyle
39
+ ? { ...(style || {}), ...(lineClampStyle || {}), ...(lineHeightStyle || {}) }
40
+ : undefined
41
+
42
+ const allProps: Omit<HeadingProps, "level"> = {
43
+ ...rest,
44
+ children: props.children,
45
+ style: mergedStyle,
46
+ className: utility,
47
+ }
48
+
49
+ switch (level) {
50
+ case 0:
51
+ return <H0 {...allProps} data-ui-component="Heading" />
52
+ case 1:
53
+ return <H1 {...allProps} data-ui-component="Heading" />
54
+ case 2:
55
+ return <H2 {...allProps} data-ui-component="Heading" />
56
+ case 3:
57
+ return <H3 {...allProps} data-ui-component="Heading" />
58
+ case 4:
59
+ return <H4 {...allProps} data-ui-component="Heading" />
60
+ case 5:
61
+ return <H5 {...allProps} data-ui-component="Heading" />
62
+ case 6:
63
+ return <H6 {...allProps} data-ui-component="Heading" />
64
+ default:
65
+ return null
66
+ }
67
+ }
68
+
69
+ Heading.displayName = "Heading"
@@ -0,0 +1,9 @@
1
+ import type { HTMLAttributes } from "react"
2
+ import type { TextBaseProps } from "../Text/Text.types"
3
+
4
+ export interface HeadingBaseProps {
5
+ level: 0 | 1 | 2 | 3 | 4 | 5 | 6
6
+ lineHeight?: number
7
+ }
8
+
9
+ export type HeadingProps = HeadingBaseProps & Omit<TextBaseProps, "type"> & HTMLAttributes<HTMLHeadingElement>
@@ -0,0 +1,11 @@
1
+ import type { HeliosAttributeMeta } from "../../../../types/meta"
2
+ import type { H0Props } from "./H0.types"
3
+ import { SHARED_TEXT_META } from "../../../Text/Text.meta"
4
+
5
+ export const meta: HeliosAttributeMeta<H0Props> = {
6
+ ...(SHARED_TEXT_META as unknown as HeliosAttributeMeta<H0Props>),
7
+ _category: "core",
8
+ _extends: ['Omit<HeadingProps, "level">'],
9
+ _patterns: [],
10
+ _status: "internal",
11
+ }
@@ -0,0 +1,4 @@
1
+ .h0 {
2
+ font-size: 60px;
3
+ line-height: 72px;
4
+ }
@@ -0,0 +1,12 @@
1
+ import { getClasses } from "@heliosgraphics/utils"
2
+ import styles from "./H0.module.css"
3
+ import type { FC } from "react"
4
+ import type { H0Props } from "./H0.types"
5
+
6
+ export const H0: FC<H0Props> = (props) => {
7
+ const h0Classes: string = getClasses(props.className, styles.h0)
8
+
9
+ return <h1 {...props} className={h0Classes} data-ui-component="Heading.H0" />
10
+ }
11
+
12
+ H0.displayName = "H0"
@@ -0,0 +1,3 @@
1
+ import type { HeadingProps } from "../../Heading.types"
2
+
3
+ export interface H0Props extends Omit<HeadingProps, "level"> {}
@@ -0,0 +1 @@
1
+ export { H0 } from "./H0"
@@ -0,0 +1,11 @@
1
+ import type { HeliosAttributeMeta } from "../../../../types/meta"
2
+ import type { H1Props } from "./H1.types"
3
+ import { SHARED_TEXT_META } from "../../../Text/Text.meta"
4
+
5
+ export const meta: HeliosAttributeMeta<H1Props> = {
6
+ ...(SHARED_TEXT_META as unknown as HeliosAttributeMeta<H1Props>),
7
+ _category: "core",
8
+ _extends: ['Omit<HeadingProps, "level">'],
9
+ _patterns: [],
10
+ _status: "internal",
11
+ }
@@ -0,0 +1,9 @@
1
+ import { getClasses } from "@heliosgraphics/utils"
2
+ import type { FC } from "react"
3
+ import type { H1Props } from "./H1.types"
4
+
5
+ export const H1: FC<H1Props> = (props) => {
6
+ return <h1 {...props} className={getClasses("h1", props.className)} data-ui-component="Heading.H1" />
7
+ }
8
+
9
+ H1.displayName = "H1"
@@ -0,0 +1,3 @@
1
+ import type { HeadingProps } from "../../Heading.types"
2
+
3
+ export interface H1Props extends Omit<HeadingProps, "level"> {}
@@ -0,0 +1 @@
1
+ export { H1 } from "./H1"
@@ -0,0 +1,11 @@
1
+ import type { HeliosAttributeMeta } from "../../../../types/meta"
2
+ import type { H2Props } from "./H2.types"
3
+ import { SHARED_TEXT_META } from "../../../Text/Text.meta"
4
+
5
+ export const meta: HeliosAttributeMeta<H2Props> = {
6
+ ...(SHARED_TEXT_META as unknown as HeliosAttributeMeta<H2Props>),
7
+ _category: "core",
8
+ _extends: ['Omit<HeadingProps, "level">'],
9
+ _patterns: [],
10
+ _status: "internal",
11
+ }
@@ -0,0 +1,9 @@
1
+ import { getClasses } from "@heliosgraphics/utils"
2
+ import type { FC } from "react"
3
+ import type { H2Props } from "./H2.types"
4
+
5
+ export const H2: FC<H2Props> = (props) => {
6
+ return <h2 {...props} className={getClasses("h2", props.className)} data-ui-component="Heading.H2" />
7
+ }
8
+
9
+ H2.displayName = "H2"
@@ -0,0 +1,3 @@
1
+ import type { HeadingProps } from "../../Heading.types"
2
+
3
+ export interface H2Props extends Omit<HeadingProps, "level"> {}