@ssa-ui-kit/core 0.0.1-alpha → 0.0.3-alpha

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 (593) hide show
  1. package/.babelrc.js +4 -4
  2. package/.storybook/main.ts +43 -43
  3. package/.storybook/preview.tsx +22 -22
  4. package/.storybook/style.css +31 -31
  5. package/custom-shots/components-popover--hint-opened__[w1920px].png +0 -0
  6. package/custom-shots/components-table-filters--opened__[w1920px].png +0 -0
  7. package/customTest.tsx +46 -46
  8. package/dist/components/AccordionGroup/index.d.ts +1 -0
  9. package/dist/components/AccordionGroup/types.d.ts +4 -1
  10. package/dist/components/Button/fixtures.d.ts +8 -8
  11. package/dist/components/Checkbox/Checkbox.d.ts +1 -1
  12. package/dist/components/Checkbox/types.d.ts +2 -2
  13. package/dist/components/Icon/icons/Chart.d.ts +2 -0
  14. package/dist/components/Icon/icons/Clock.d.ts +2 -0
  15. package/dist/components/Icon/icons/Email.d.ts +2 -0
  16. package/dist/components/Icon/icons/Lock.d.ts +2 -0
  17. package/dist/components/Icon/icons/LogIn.d.ts +2 -0
  18. package/dist/components/Icon/icons/Robot.d.ts +2 -0
  19. package/dist/components/Icon/icons/iconsList.d.ts +1 -1
  20. package/dist/components/Modal/types.d.ts +2 -7
  21. package/dist/components/ModalDialog/index.d.ts +1 -0
  22. package/dist/components/ModalDialog/types.d.ts +1 -0
  23. package/dist/components/MultipleDropdown/stories/consts.d.ts +5 -0
  24. package/dist/components/Popover/stories/StoryComponent.d.ts +2 -1
  25. package/dist/components/Popover/types.d.ts +2 -0
  26. package/dist/components/TextField/types.d.ts +2 -10
  27. package/dist/index.d.ts +9 -0
  28. package/dist/index.js +1 -1
  29. package/dist/index.js.map +1 -1
  30. package/jest-setup.ts +17 -17
  31. package/lostpixel.config.ts +26 -26
  32. package/package.json +3 -3
  33. package/playwright.config.ts +7 -7
  34. package/src/components/AccordionGroup/Accordion.tsx +30 -30
  35. package/src/components/AccordionGroup/AccordionContent.tsx +21 -21
  36. package/src/components/AccordionGroup/AccordionContext.tsx +66 -66
  37. package/src/components/AccordionGroup/AccordionGroup.spec.tsx +191 -191
  38. package/src/components/AccordionGroup/AccordionGroup.tsx +71 -71
  39. package/src/components/AccordionGroup/AccordionTitle.tsx +41 -39
  40. package/src/components/AccordionGroup/index.ts +9 -8
  41. package/src/components/AccordionGroup/stories/AccordionGroup.stories.tsx +107 -107
  42. package/src/components/AccordionGroup/stories/helpers.tsx +86 -86
  43. package/src/components/AccordionGroup/styles.ts +120 -120
  44. package/src/components/AccordionGroup/types.ts +59 -54
  45. package/src/components/Avatar/Avatar.tsx +15 -15
  46. package/src/components/Avatar/index.ts +1 -1
  47. package/src/components/Badge/Badge.spec.tsx +113 -113
  48. package/src/components/Badge/Badge.stories.tsx +156 -156
  49. package/src/components/Badge/Badge.tsx +45 -45
  50. package/src/components/Badge/BadgeBase.tsx +19 -19
  51. package/src/components/Badge/helpers.ts +49 -49
  52. package/src/components/Badge/index.ts +1 -1
  53. package/src/components/Badge/styles.ts +20 -20
  54. package/src/components/Badge/types.ts +7 -7
  55. package/src/components/Button/Button.spec.tsx +529 -529
  56. package/src/components/Button/Button.stories.tsx +124 -124
  57. package/src/components/Button/Button.tsx +121 -121
  58. package/src/components/Button/ButtonBase.tsx +14 -14
  59. package/src/components/Button/ButtonText.tsx +67 -67
  60. package/src/components/Button/fixtures.ts +165 -165
  61. package/src/components/Button/helpers.ts +30 -30
  62. package/src/components/Button/index.ts +1 -1
  63. package/src/components/Button/styles.ts +168 -168
  64. package/src/components/Button/types.ts +48 -48
  65. package/src/components/ButtonGroup/ButtonGroup.spec.tsx +37 -37
  66. package/src/components/ButtonGroup/ButtonGroup.stories.tsx +42 -42
  67. package/src/components/ButtonGroup/ButtonGroup.tsx +39 -39
  68. package/src/components/ButtonGroup/helpers.ts +7 -7
  69. package/src/components/ButtonGroup/index.ts +2 -2
  70. package/src/components/ButtonGroup/styles.ts +53 -53
  71. package/src/components/ButtonGroup/types.ts +13 -13
  72. package/src/components/Card/Card.spec.tsx +94 -94
  73. package/src/components/Card/Card.stories.tsx +253 -253
  74. package/src/components/Card/Card.tsx +13 -13
  75. package/src/components/Card/CardBase.tsx +20 -20
  76. package/src/components/Card/index.ts +2 -2
  77. package/src/components/Card/types.ts +8 -8
  78. package/src/components/CardContent/CardContent.tsx +17 -17
  79. package/src/components/CardContent/CardContentBase.tsx +12 -12
  80. package/src/components/CardContent/index.ts +1 -1
  81. package/src/components/CardHeader/CardHeader.tsx +26 -26
  82. package/src/components/CardHeader/CardHeaderBase.tsx +21 -21
  83. package/src/components/CardHeader/index.ts +1 -1
  84. package/src/components/Checkbox/Checkbox.spec.tsx +193 -193
  85. package/src/components/Checkbox/Checkbox.stories.tsx +93 -93
  86. package/src/components/Checkbox/Checkbox.tsx +79 -77
  87. package/src/components/Checkbox/CheckboxBase.tsx +71 -71
  88. package/src/components/Checkbox/index.ts +3 -3
  89. package/src/components/Checkbox/styles.tsx +70 -70
  90. package/src/components/Checkbox/types.ts +32 -26
  91. package/src/components/ColorPicker/ColorPicker.spec.tsx +58 -58
  92. package/src/components/ColorPicker/ColorPicker.stories.tsx +48 -48
  93. package/src/components/ColorPicker/ColorPicker.tsx +47 -47
  94. package/src/components/ColorPicker/index.ts +1 -1
  95. package/src/components/ColorPicker/styles.ts +14 -14
  96. package/src/components/ColorPicker/types.ts +21 -21
  97. package/src/components/Dropdown/Dropdown.context.ts +16 -16
  98. package/src/components/Dropdown/Dropdown.spec.tsx +326 -326
  99. package/src/components/Dropdown/Dropdown.stories.tsx +155 -155
  100. package/src/components/Dropdown/Dropdown.tsx +135 -135
  101. package/src/components/Dropdown/index.ts +1 -1
  102. package/src/components/Dropdown/types.ts +17 -17
  103. package/src/components/DropdownArrow/DropdownArrow.tsx +17 -17
  104. package/src/components/DropdownArrow/index.ts +1 -1
  105. package/src/components/DropdownBase/DropdownBase.tsx +10 -10
  106. package/src/components/DropdownBase/index.ts +1 -1
  107. package/src/components/DropdownOption/DropdownOption.tsx +56 -56
  108. package/src/components/DropdownOption/index.ts +1 -1
  109. package/src/components/DropdownOptions/DropdownOptions.tsx +102 -102
  110. package/src/components/DropdownOptions/index.ts +2 -2
  111. package/src/components/DropdownOptions/types.ts +9 -9
  112. package/src/components/DropdownToggle/DropdownToggle.tsx +147 -147
  113. package/src/components/DropdownToggle/index.ts +1 -1
  114. package/src/components/DropdownToggle/types.ts +22 -22
  115. package/src/components/Form/Form.stories.mdx +118 -118
  116. package/src/components/Form/Form.stories.tsx +432 -432
  117. package/src/components/Form/Form.tsx +9 -9
  118. package/src/components/Form/index.ts +1 -1
  119. package/src/components/FormAction/FormAction.tsx +8 -8
  120. package/src/components/FormAction/index.ts +1 -1
  121. package/src/components/FormCheckbox/FormCheckbox.tsx +33 -33
  122. package/src/components/FormCheckbox/index.ts +1 -1
  123. package/src/components/FormCheckbox/types.ts +10 -10
  124. package/src/components/FormGroup/FormGroup.tsx +15 -15
  125. package/src/components/FormGroup/index.ts +1 -1
  126. package/src/components/FormHelperText/FormHelperText.tsx +18 -18
  127. package/src/components/FormHelperText/FormHelperTextBase.tsx +22 -22
  128. package/src/components/FormHelperText/index.ts +1 -1
  129. package/src/components/FormHelperText/types.ts +8 -8
  130. package/src/components/FormRadioGroup/FormRadioGroup.spec.tsx +74 -74
  131. package/src/components/FormRadioGroup/FormRadioGroup.stories.tsx +90 -90
  132. package/src/components/FormRadioGroup/FormRadioGroup.tsx +35 -35
  133. package/src/components/FormRadioGroup/index.ts +1 -1
  134. package/src/components/FormRadioGroup/types.ts +12 -12
  135. package/src/components/Icon/Icon.tsx +7 -7
  136. package/src/components/Icon/Icons.spec.tsx +63 -63
  137. package/src/components/Icon/Icons.stories.tsx +56 -56
  138. package/src/components/Icon/icons/Archive.tsx +35 -35
  139. package/src/components/Icon/icons/ArrowDown.tsx +26 -26
  140. package/src/components/Icon/icons/ArrowUp.tsx +26 -26
  141. package/src/components/Icon/icons/Attention.tsx +22 -22
  142. package/src/components/Icon/icons/Bin.tsx +28 -28
  143. package/src/components/Icon/icons/Calendar.tsx +16 -16
  144. package/src/components/Icon/icons/CarrotDown.tsx +20 -20
  145. package/src/components/Icon/icons/CarrotLeft.tsx +20 -20
  146. package/src/components/Icon/icons/CarrotRight.tsx +20 -20
  147. package/src/components/Icon/icons/CarrotUp.tsx +20 -20
  148. package/src/components/Icon/icons/Change.tsx +16 -16
  149. package/src/components/Icon/icons/Chart.tsx +37 -0
  150. package/src/components/Icon/icons/Check.tsx +20 -20
  151. package/src/components/Icon/icons/CheckCircle.tsx +26 -26
  152. package/src/components/Icon/icons/Circle.tsx +22 -22
  153. package/src/components/Icon/icons/Clock.tsx +31 -0
  154. package/src/components/Icon/icons/Copy.tsx +23 -23
  155. package/src/components/Icon/icons/Cross.tsx +27 -27
  156. package/src/components/Icon/icons/Diet.tsx +16 -16
  157. package/src/components/Icon/icons/Email.tsx +19 -0
  158. package/src/components/Icon/icons/Filter.tsx +18 -18
  159. package/src/components/Icon/icons/Home.tsx +16 -16
  160. package/src/components/Icon/icons/Information.tsx +24 -24
  161. package/src/components/Icon/icons/Invisible.tsx +55 -55
  162. package/src/components/Icon/icons/Lock.tsx +17 -0
  163. package/src/components/Icon/icons/LogIn.tsx +21 -0
  164. package/src/components/Icon/icons/LogOut.tsx +21 -21
  165. package/src/components/Icon/icons/Measurements.tsx +18 -18
  166. package/src/components/Icon/icons/Minus.tsx +20 -20
  167. package/src/components/Icon/icons/More.tsx +24 -24
  168. package/src/components/Icon/icons/MoreVertical.tsx +15 -15
  169. package/src/components/Icon/icons/Notification.tsx +18 -18
  170. package/src/components/Icon/icons/Plus.tsx +27 -27
  171. package/src/components/Icon/icons/RadioOn.tsx +23 -23
  172. package/src/components/Icon/icons/Robot.tsx +18 -0
  173. package/src/components/Icon/icons/Search.tsx +18 -18
  174. package/src/components/Icon/icons/Settings.tsx +24 -24
  175. package/src/components/Icon/icons/Sleep.tsx +20 -20
  176. package/src/components/Icon/icons/Stats.tsx +20 -20
  177. package/src/components/Icon/icons/Trainings.tsx +16 -16
  178. package/src/components/Icon/icons/Union.tsx +19 -19
  179. package/src/components/Icon/icons/User.tsx +34 -34
  180. package/src/components/Icon/icons/Visible.tsx +27 -27
  181. package/src/components/Icon/icons/Warning.tsx +22 -22
  182. package/src/components/Icon/icons/iconsList.tsx +55 -49
  183. package/src/components/Icon/icons/index.tsx +115 -103
  184. package/src/components/Icon/index.ts +2 -2
  185. package/src/components/Icon/types.ts +18 -18
  186. package/src/components/Indicator/Indicator.spec.tsx +67 -67
  187. package/src/components/Indicator/Indicator.stories.tsx +106 -106
  188. package/src/components/Indicator/Indicator.tsx +86 -86
  189. package/src/components/Indicator/IndicatorBase.tsx +27 -27
  190. package/src/components/Indicator/index.ts +1 -1
  191. package/src/components/Indicator/types.ts +9 -9
  192. package/src/components/Input/Input.spec.tsx +95 -95
  193. package/src/components/Input/Input.stories.tsx +215 -215
  194. package/src/components/Input/Input.tsx +70 -70
  195. package/src/components/Input/InputBase.tsx +42 -42
  196. package/src/components/Input/InputGroup.tsx +12 -12
  197. package/src/components/Input/InputStatusError.tsx +20 -20
  198. package/src/components/Input/InputStatusSuccess.tsx +16 -16
  199. package/src/components/Input/index.ts +1 -1
  200. package/src/components/Input/styles.ts +111 -111
  201. package/src/components/Input/types.ts +35 -35
  202. package/src/components/Label/Label.spec.tsx +57 -57
  203. package/src/components/Label/Label.tsx +20 -20
  204. package/src/components/Label/LabelBase.tsx +14 -14
  205. package/src/components/Label/index.ts +1 -1
  206. package/src/components/Label/types.ts +9 -9
  207. package/src/components/LargeTab/LargeTab.tsx +38 -38
  208. package/src/components/LargeTab/LargeTabBase.tsx +39 -39
  209. package/src/components/LargeTab/index.ts +1 -1
  210. package/src/components/LargeTab/styles.ts +17 -17
  211. package/src/components/Link/Link.tsx +10 -10
  212. package/src/components/Link/Link.types.ts +4 -4
  213. package/src/components/Link/LinkBase.ts +5 -5
  214. package/src/components/Link/index.tsx +1 -1
  215. package/src/components/Modal/Modal.context.tsx +9 -9
  216. package/src/components/Modal/Modal.spec.tsx +154 -154
  217. package/src/components/Modal/Modal.stories.tsx +97 -98
  218. package/src/components/Modal/Modal.tsx +12 -12
  219. package/src/components/Modal/index.ts +2 -2
  220. package/src/components/Modal/types.ts +4 -8
  221. package/src/components/ModalContent/ModalContent.tsx +21 -21
  222. package/src/components/ModalContent/index.ts +1 -1
  223. package/src/components/ModalDialog/ModalDialog.tsx +67 -67
  224. package/src/components/ModalDialog/index.ts +2 -1
  225. package/src/components/ModalDialog/types.ts +7 -6
  226. package/src/components/ModalDismissButton/ModalDismissButton.tsx +15 -15
  227. package/src/components/ModalDismissButton/index.ts +1 -1
  228. package/src/components/ModalOpenButton/ModalOpenButton.tsx +15 -15
  229. package/src/components/ModalOpenButton/index.ts +1 -1
  230. package/src/components/MultipleDropdown/MultipleDropdown.context.ts +20 -20
  231. package/src/components/MultipleDropdown/MultipleDropdown.spec.tsx +414 -381
  232. package/src/components/MultipleDropdown/MultipleDropdown.tsx +217 -217
  233. package/src/components/MultipleDropdown/index.ts +1 -1
  234. package/src/components/MultipleDropdown/{MultipleDropdown.stories.tsx → stories/MultipleDropdown.stories.tsx} +239 -206
  235. package/src/components/MultipleDropdown/stories/consts.ts +5 -0
  236. package/src/components/MultipleDropdown/types.ts +20 -20
  237. package/src/components/MultipleDropdown/utils.ts +32 -32
  238. package/src/components/MultipleDropdownNotification/MultipleDropdownNotification.tsx +13 -13
  239. package/src/components/MultipleDropdownNotification/index.ts +1 -1
  240. package/src/components/MultipleDropdownOptions/MultipleDropdownOptions.tsx +156 -156
  241. package/src/components/MultipleDropdownOptions/index.ts +2 -2
  242. package/src/components/MultipleDropdownOptions/types.ts +7 -7
  243. package/src/components/Popover/Popover.e2e.ts +26 -26
  244. package/src/components/Popover/Popover.spec.tsx +17 -17
  245. package/src/components/Popover/Popover.tsx +21 -21
  246. package/src/components/Popover/PopoverClose.tsx +21 -21
  247. package/src/components/Popover/PopoverContent.tsx +37 -37
  248. package/src/components/Popover/PopoverDescription.tsx +21 -21
  249. package/src/components/Popover/PopoverHeading.tsx +25 -25
  250. package/src/components/Popover/PopoverTrigger.tsx +47 -47
  251. package/src/components/Popover/hooks/usePopover.tsx +109 -84
  252. package/src/components/Popover/hooks/usePopoverContext.tsx +16 -16
  253. package/src/components/Popover/index.ts +6 -6
  254. package/src/components/Popover/stories/Popover.stories.tsx +39 -18
  255. package/src/components/Popover/stories/StoryComponent.tsx +42 -39
  256. package/src/components/Popover/types.ts +45 -42
  257. package/src/components/Progress/Progress.spec.tsx +85 -85
  258. package/src/components/Progress/Progress.stories.tsx +234 -234
  259. package/src/components/Progress/Progress.tsx +7 -7
  260. package/src/components/Progress/index.ts +1 -1
  261. package/src/components/Progress/types.ts +5 -5
  262. package/src/components/ProgressBar/ProgressBar.tsx +68 -68
  263. package/src/components/ProgressBar/index.ts +1 -1
  264. package/src/components/ProgressBar/styles.ts +15 -15
  265. package/src/components/ProgressBar/types.ts +7 -7
  266. package/src/components/ProgressCircle/ProgressCircle.spec.tsx +37 -37
  267. package/src/components/ProgressCircle/ProgressCircle.stories.tsx +96 -96
  268. package/src/components/ProgressCircle/ProgressCircle.tsx +60 -60
  269. package/src/components/ProgressCircle/ProgressCircleBase.tsx +45 -45
  270. package/src/components/ProgressCircle/ProgressCircleInner.tsx +16 -16
  271. package/src/components/ProgressCircle/ProgressCircleOuter.tsx +14 -14
  272. package/src/components/ProgressCircle/index.ts +1 -1
  273. package/src/components/ProgressCircle/styles.ts +20 -20
  274. package/src/components/ProgressCircle/types.ts +7 -7
  275. package/src/components/ProgressLegend/ProgressLegend.tsx +41 -41
  276. package/src/components/ProgressLegend/index.ts +1 -1
  277. package/src/components/ProgressLegend/types.ts +12 -12
  278. package/src/components/ProgressLegendItem/ProgressLegendItem.tsx +52 -52
  279. package/src/components/ProgressLegendItem/index.ts +1 -1
  280. package/src/components/ProgressLegendItem/types.ts +6 -6
  281. package/src/components/ProgressVertical/ProgressVertical.tsx +23 -23
  282. package/src/components/ProgressVertical/index.ts +1 -1
  283. package/src/components/ProgressVertical/types.ts +5 -5
  284. package/src/components/Radio/Radio.spec.tsx +234 -234
  285. package/src/components/Radio/Radio.stories.tsx +52 -52
  286. package/src/components/Radio/Radio.tsx +56 -56
  287. package/src/components/Radio/RadioBase.tsx +36 -36
  288. package/src/components/Radio/index.ts +1 -1
  289. package/src/components/Radio/types.ts +11 -11
  290. package/src/components/RadioGroup/RadioGroup.spec.tsx +116 -116
  291. package/src/components/RadioGroup/RadioGroup.stories.tsx +84 -84
  292. package/src/components/RadioGroup/RadioGroup.tsx +49 -49
  293. package/src/components/RadioGroup/RadioGroupBase.tsx +3 -3
  294. package/src/components/RadioGroup/index.ts +1 -1
  295. package/src/components/RadioGroup/types.ts +10 -10
  296. package/src/components/ResponsiveImage/ResponsiveImage.spec.tsx +43 -43
  297. package/src/components/ResponsiveImage/ResponsiveImage.stories.tsx +33 -33
  298. package/src/components/ResponsiveImage/ResponsiveImage.tsx +14 -14
  299. package/src/components/ResponsiveImage/index.tsx +1 -1
  300. package/src/components/ResponsiveImage/types.ts +7 -7
  301. package/src/components/Step/Step.context.ts +21 -21
  302. package/src/components/Step/Step.tsx +58 -58
  303. package/src/components/Step/index.ts +2 -2
  304. package/src/components/StepConnector/StepConnector.tsx +34 -34
  305. package/src/components/StepConnector/index.ts +1 -1
  306. package/src/components/StepConnector/style.ts +24 -24
  307. package/src/components/StepLabel/StepLabel.tsx +65 -65
  308. package/src/components/StepLabel/index.ts +1 -1
  309. package/src/components/StepLabel/styles.ts +38 -38
  310. package/src/components/Stepper/Stepper.context.ts +16 -16
  311. package/src/components/Stepper/Stepper.spec.tsx +128 -128
  312. package/src/components/Stepper/Stepper.stories.tsx +292 -292
  313. package/src/components/Stepper/Stepper.tsx +49 -49
  314. package/src/components/Stepper/index.ts +5 -5
  315. package/src/components/Stepper/types.ts +17 -17
  316. package/src/components/Switch/Switch.spec.tsx +181 -181
  317. package/src/components/Switch/Switch.stories.tsx +64 -64
  318. package/src/components/Switch/Switch.tsx +21 -21
  319. package/src/components/Switch/SwitchBase.tsx +62 -62
  320. package/src/components/Switch/SwitchContext.tsx +38 -38
  321. package/src/components/Switch/index.ts +6 -6
  322. package/src/components/Switch/types.ts +4 -4
  323. package/src/components/Tab/Tab.tsx +31 -31
  324. package/src/components/Tab/TabBase.tsx +31 -31
  325. package/src/components/Tab/index.ts +1 -1
  326. package/src/components/TabBar/TabBar.spec.tsx +290 -290
  327. package/src/components/TabBar/TabBar.tsx +43 -43
  328. package/src/components/TabBar/TabBarContext.tsx +43 -43
  329. package/src/components/TabBar/index.ts +6 -6
  330. package/src/components/TabBar/stories/TimePeriodTabBar.stories.tsx +84 -84
  331. package/src/components/TabBar/stories/WeekTabBar.stories.tsx +136 -136
  332. package/src/components/TabBar/stories/helpers.tsx +69 -69
  333. package/src/components/TabBar/types.ts +39 -39
  334. package/src/components/Table/Table.spec.tsx +86 -86
  335. package/src/components/Table/Table.tsx +13 -13
  336. package/src/components/Table/index.ts +1 -1
  337. package/src/components/Table/stories/SortableTable.tsx +78 -78
  338. package/src/components/Table/stories/Table.stories.tsx +94 -94
  339. package/src/components/Table/stories/consts.ts +6 -6
  340. package/src/components/Table/stories/mock.ts +16 -16
  341. package/src/components/Table/stories/types.ts +9 -9
  342. package/src/components/Table/stories/utils.ts +2 -2
  343. package/src/components/TableBody/TableBody.tsx +8 -8
  344. package/src/components/TableBody/index.ts +1 -1
  345. package/src/components/TableCell/TableCell.tsx +16 -16
  346. package/src/components/TableCell/index.ts +1 -1
  347. package/src/components/TableHead/TableHead.tsx +15 -15
  348. package/src/components/TableHead/index.ts +1 -1
  349. package/src/components/TableRow/TableRow.tsx +12 -12
  350. package/src/components/TableRow/index.ts +1 -1
  351. package/src/components/Tag/Tag.spec.tsx +121 -121
  352. package/src/components/Tag/Tag.stories.tsx +96 -96
  353. package/src/components/Tag/Tag.tsx +47 -47
  354. package/src/components/Tag/index.ts +1 -1
  355. package/src/components/Tag/styles.ts +123 -123
  356. package/src/components/Tag/types.ts +7 -7
  357. package/src/components/TextField/TextField.spec.tsx +171 -171
  358. package/src/components/TextField/TextField.stories.tsx +221 -221
  359. package/src/components/TextField/TextField.tsx +61 -61
  360. package/src/components/TextField/index.ts +1 -1
  361. package/src/components/TextField/types.ts +14 -20
  362. package/src/components/Textarea/Textarea.spec.tsx +56 -56
  363. package/src/components/Textarea/Textarea.stories.tsx +58 -58
  364. package/src/components/Textarea/Textarea.tsx +35 -35
  365. package/src/components/Textarea/TextareaBase.tsx +44 -44
  366. package/src/components/Textarea/index.ts +1 -1
  367. package/src/components/Textarea/types.ts +15 -15
  368. package/src/components/Tooltip/ProgressChartTooltip.tsx +48 -48
  369. package/src/components/Tooltip/SimpleChartTooltip.tsx +20 -20
  370. package/src/components/Tooltip/Tooltip.spec.tsx +305 -305
  371. package/src/components/Tooltip/Tooltip.stories.tsx +160 -160
  372. package/src/components/Tooltip/Tooltip.tsx +22 -22
  373. package/src/components/Tooltip/TooltipArrow.tsx +26 -26
  374. package/src/components/Tooltip/TooltipContentBase.tsx +9 -9
  375. package/src/components/Tooltip/index.ts +5 -5
  376. package/src/components/Tooltip/styles.ts +16 -16
  377. package/src/components/Tooltip/types.ts +88 -88
  378. package/src/components/Tooltip/useTooltip.tsx +74 -74
  379. package/src/components/Tooltip/useTooltipContext.tsx +16 -16
  380. package/src/components/Tooltip/utils.tsx +8 -8
  381. package/src/components/TooltipContent/TooltipContent.tsx +49 -49
  382. package/src/components/TooltipContent/index.ts +1 -1
  383. package/src/components/TooltipTrigger/TooltipTrigger.tsx +21 -21
  384. package/src/components/TooltipTrigger/index.ts +1 -1
  385. package/src/components/Typography/Typography.spec.tsx +259 -259
  386. package/src/components/Typography/Typography.stories.tsx +68 -68
  387. package/src/components/Typography/Typography.tsx +52 -52
  388. package/src/components/Typography/index.ts +1 -1
  389. package/src/components/Typography/styles.ts +85 -85
  390. package/src/components/Typography/types.ts +22 -22
  391. package/src/components/Wrapper/Wrapper.spec.tsx +15 -15
  392. package/src/components/Wrapper/Wrapper.tsx +19 -19
  393. package/src/components/Wrapper/index.ts +1 -1
  394. package/src/consts.ts +18 -18
  395. package/src/index.ts +94 -85
  396. package/src/injectGlobal.ts +41 -41
  397. package/src/styles/global.ts +91 -91
  398. package/src/styles/safari-focus-outline.ts +37 -37
  399. package/src/styles/styles.spec.tsx +42 -42
  400. package/src/themes/main.ts +116 -116
  401. package/src/types/emotion.d.ts +7 -7
  402. package/src/types/emotion.ts +132 -132
  403. package/src/types/global.d.ts +7 -7
  404. package/src/types/global.ts +19 -19
  405. package/storybook-static/1283.a11004a1.iframe.bundle.js +1 -0
  406. package/storybook-static/1326.74edde53.iframe.bundle.js +1 -0
  407. package/storybook-static/2912.4c6e14cb.iframe.bundle.js +1 -0
  408. package/storybook-static/3547.515f04ab.iframe.bundle.js +1 -0
  409. package/storybook-static/3624.1414516c.iframe.bundle.js +1 -0
  410. package/storybook-static/3753.bd2e2900.iframe.bundle.js +1 -0
  411. package/storybook-static/4106.7f1435f2.iframe.bundle.js +402 -0
  412. package/storybook-static/{138.8c2d65fc.iframe.bundle.js.LICENSE.txt → 4106.7f1435f2.iframe.bundle.js.LICENSE.txt} +0 -2
  413. package/storybook-static/4106.7f1435f2.iframe.bundle.js.map +1 -0
  414. package/storybook-static/4166.6fdf56d2.iframe.bundle.js +1 -0
  415. package/storybook-static/4339.437b4af1.iframe.bundle.js +1 -0
  416. package/storybook-static/4995.d16abbf0.iframe.bundle.js +1 -0
  417. package/storybook-static/5199.6867eb61.iframe.bundle.js +1 -0
  418. package/storybook-static/{306.af359eab.iframe.bundle.js → 5374.19c2f606.iframe.bundle.js} +4 -4
  419. package/storybook-static/5374.19c2f606.iframe.bundle.js.map +1 -0
  420. package/storybook-static/5417.e7b726cc.iframe.bundle.js +1 -0
  421. package/storybook-static/{106.778a645c.iframe.bundle.js → 5497.0b734124.iframe.bundle.js} +4 -4
  422. package/storybook-static/5497.0b734124.iframe.bundle.js.map +1 -0
  423. package/storybook-static/5521.fbe15eea.iframe.bundle.js +1 -0
  424. package/storybook-static/5540.fa362783.iframe.bundle.js +1 -0
  425. package/storybook-static/5938.713bc0f1.iframe.bundle.js +1 -0
  426. package/storybook-static/6092.0baa0be2.iframe.bundle.js +1 -0
  427. package/storybook-static/6216.8da65c4d.iframe.bundle.js +1 -0
  428. package/storybook-static/6374.b662bb7e.iframe.bundle.js +1 -0
  429. package/storybook-static/7076.fc69dc87.iframe.bundle.js +1 -0
  430. package/storybook-static/7263.784ad817.iframe.bundle.js +1 -0
  431. package/storybook-static/7609.fa84d5d0.iframe.bundle.js +1 -0
  432. package/storybook-static/7633.6d7427ee.iframe.bundle.js +1 -0
  433. package/storybook-static/7767.2ce7411d.iframe.bundle.js +1 -0
  434. package/storybook-static/8069.7d70ab4a.iframe.bundle.js +1 -0
  435. package/storybook-static/8251.01f55356.iframe.bundle.js +1 -0
  436. package/storybook-static/9134.27efc9b6.iframe.bundle.js +1 -0
  437. package/storybook-static/9185.5e034211.iframe.bundle.js +133 -0
  438. package/storybook-static/9185.5e034211.iframe.bundle.js.map +1 -0
  439. package/storybook-static/9661.7fb349c2.iframe.bundle.js +1 -0
  440. package/storybook-static/9672.98d487be.iframe.bundle.js +1 -0
  441. package/storybook-static/973.378dae04.iframe.bundle.js +1 -0
  442. package/storybook-static/components-AccordionGroup-stories-AccordionGroup-stories.c8781719.iframe.bundle.js +1 -0
  443. package/storybook-static/components-Badge-Badge-stories.34ed507d.iframe.bundle.js +1 -0
  444. package/storybook-static/components-Button-Button-stories.42cf6ebc.iframe.bundle.js +1 -0
  445. package/storybook-static/components-Card-Card-stories.dce075fe.iframe.bundle.js +1 -0
  446. package/storybook-static/components-Checkbox-Checkbox-stories.c3b0ba2a.iframe.bundle.js +1 -0
  447. package/storybook-static/{components-ColorPicker-ColorPicker-stories.2ab41812.iframe.bundle.js → components-ColorPicker-ColorPicker-stories.227d5d28.iframe.bundle.js} +1 -1
  448. package/storybook-static/components-Dropdown-Dropdown-stories.a86e6d8b.iframe.bundle.js +1 -0
  449. package/storybook-static/components-Form-Form-stories-mdx.febb9417.iframe.bundle.js +2 -0
  450. package/storybook-static/components-Form-Form-stories.1030ead7.iframe.bundle.js +1 -0
  451. package/storybook-static/components-FormRadioGroup-FormRadioGroup-stories.9d91e8c9.iframe.bundle.js +1 -0
  452. package/storybook-static/components-Icon-Icons-stories.fe368cd9.iframe.bundle.js +1 -0
  453. package/storybook-static/components-Input-Input-stories.ecfd89af.iframe.bundle.js +1 -0
  454. package/storybook-static/components-Modal-Modal-stories.bd406807.iframe.bundle.js +1 -0
  455. package/storybook-static/components-MultipleDropdown-MultipleDropdown-stories.80762ee2.iframe.bundle.js +1 -0
  456. package/storybook-static/components-Popover-stories-Popover-stories.5bbb9c19.iframe.bundle.js +1 -0
  457. package/storybook-static/components-Progress-Progress-stories.924b6ce3.iframe.bundle.js +1 -0
  458. package/storybook-static/components-ProgressCircle-ProgressCircle-stories.abf7a711.iframe.bundle.js +1 -0
  459. package/storybook-static/components-Radio-Radio-stories.ea10f6ac.iframe.bundle.js +1 -0
  460. package/storybook-static/components-RadioGroup-RadioGroup-stories.8be03b3f.iframe.bundle.js +1 -0
  461. package/storybook-static/components-ResponsiveImage-ResponsiveImage-stories.d6d0fc31.iframe.bundle.js +1 -0
  462. package/storybook-static/components-Stepper-Stepper-stories.55fe429d.iframe.bundle.js +1 -0
  463. package/storybook-static/{components-TabBar-stories-WeekTabBar-stories.9e080c9e.iframe.bundle.js → components-Switch-Switch-stories.760b85d7.iframe.bundle.js} +1 -1
  464. package/storybook-static/components-TabBar-stories-TimePeriodTabBar-stories.6f0ee7ee.iframe.bundle.js +1 -0
  465. package/storybook-static/components-TabBar-stories-WeekTabBar-stories.1d8887da.iframe.bundle.js +1 -0
  466. package/storybook-static/components-Table-Table-stories.cf62219e.iframe.bundle.js +1 -0
  467. package/storybook-static/components-Tag-Tag-stories.dc89b8dd.iframe.bundle.js +1 -0
  468. package/storybook-static/components-TextField-TextField-stories.23ab264d.iframe.bundle.js +1 -0
  469. package/storybook-static/components-Textarea-Textarea-stories.5d16dfd0.iframe.bundle.js +1 -0
  470. package/storybook-static/components-Tooltip-Tooltip-stories.4cf83194.iframe.bundle.js +1 -0
  471. package/storybook-static/components-Typography-Typography-stories.b04f7644.iframe.bundle.js +1 -0
  472. package/storybook-static/iframe.html +4 -4
  473. package/storybook-static/index.html +4 -0
  474. package/storybook-static/index.json +1 -1
  475. package/storybook-static/main.17671a9a.iframe.bundle.js +1 -0
  476. package/storybook-static/project.json +1 -1
  477. package/storybook-static/runtime~main.a44b94df.iframe.bundle.js +1 -0
  478. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js +1 -1
  479. package/storybook-static/sb-addons/essentials-actions-2/manager-bundle.js.map +4 -4
  480. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js +5 -5
  481. package/storybook-static/sb-addons/essentials-backgrounds-3/manager-bundle.js.map +4 -4
  482. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js +49 -51
  483. package/storybook-static/sb-addons/essentials-controls-1/manager-bundle.js.map +4 -4
  484. package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js +1 -1
  485. package/storybook-static/sb-addons/essentials-measure-6/manager-bundle.js.map +4 -4
  486. package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js +1 -1
  487. package/storybook-static/sb-addons/essentials-outline-7/manager-bundle.js.map +4 -4
  488. package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js +1 -1
  489. package/storybook-static/sb-addons/essentials-toolbars-5/manager-bundle.js.map +3 -3
  490. package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js +1 -1
  491. package/storybook-static/sb-addons/essentials-viewport-4/manager-bundle.js.map +4 -4
  492. package/storybook-static/sb-addons/interactions-8/manager-bundle.js +11 -11
  493. package/storybook-static/sb-addons/interactions-8/manager-bundle.js.map +4 -4
  494. package/storybook-static/sb-addons/links-0/manager-bundle.js +1 -1
  495. package/storybook-static/sb-addons/links-0/manager-bundle.js.map +3 -3
  496. package/storybook-static/sb-addons/pseudo-states-9/manager-bundle.js +4 -0
  497. package/storybook-static/sb-addons/pseudo-states-9/manager-bundle.js.LEGAL.txt +0 -0
  498. package/storybook-static/sb-addons/pseudo-states-9/manager-bundle.js.map +7 -0
  499. package/storybook-static/sb-manager/CRUD-I5EZL2FS-LBZVDZXV.js +1 -0
  500. package/storybook-static/sb-manager/Communicate-7JXCND2Z-6SIVXWT4.js +1 -0
  501. package/storybook-static/sb-manager/Devices-SUYACUPO-DMGV6ENX.js +1 -0
  502. package/storybook-static/sb-manager/Documents-SGWAY3KW-XZRZ6I6S.js +1 -0
  503. package/storybook-static/sb-manager/Editing-7QFB6ZMG-J5U6QGB6.js +1 -0
  504. package/storybook-static/sb-manager/Git-DZ2D5ZUL-VKBWYJHE.js +1 -0
  505. package/storybook-static/sb-manager/GlobalScrollAreaStyles-4LLX2B3H-DOBSPBNW.js +7 -0
  506. package/storybook-static/sb-manager/Images-S2WTXNGG-NXAYS4VP.js +1 -0
  507. package/storybook-static/sb-manager/Logos-SJTNNI74-F3IVL4UV.js +1 -0
  508. package/storybook-static/sb-manager/OS-YZ2Y4VYS-KGSGCOHC.js +1 -0
  509. package/storybook-static/sb-manager/OverlayScrollbars-OL4C4TVX-FNYA4OIC.js +1 -0
  510. package/storybook-static/sb-manager/People-OD4EV7WZ-DBPUNUXW.js +1 -0
  511. package/storybook-static/sb-manager/Wayfinding-BB4H7CHP-N2QAVLVA.js +1 -0
  512. package/storybook-static/sb-manager/WithTooltip-YBG737T3-GLWUADFI.js +1 -0
  513. package/storybook-static/sb-manager/{chunk-AA6TEL5N.js → chunk-6KNXZZZ5.js} +1 -1
  514. package/storybook-static/sb-manager/{chunk-3FAXWWKG.js → chunk-DP4DR4LA.js} +1 -1
  515. package/storybook-static/sb-manager/chunk-GBCXFRBK.js +1 -0
  516. package/storybook-static/sb-manager/chunk-IFNK3PLJ.js +1 -0
  517. package/storybook-static/sb-manager/chunk-JMPBYCHU.js +1 -0
  518. package/storybook-static/sb-manager/{chunk-R5BIZIS3.js → chunk-JSPL73I3.js} +1 -1
  519. package/storybook-static/sb-manager/{chunk-AM2ZNZZH.js → chunk-SJD7EFYL.js} +1 -1
  520. package/storybook-static/sb-manager/chunk-UBXIQABM.js +447 -0
  521. package/storybook-static/sb-manager/{chunk-IPZYHIL3.js → chunk-V7GYLJLR.js} +2 -2
  522. package/storybook-static/sb-manager/chunk-Z4NRYNHR.js +1 -0
  523. package/storybook-static/sb-manager/{formatter-OJ5LH2CX-IQX6U4TO.js → formatter-6736J7QO-TGL2ZGQC.js} +2 -2
  524. package/storybook-static/sb-manager/globals.js +1 -1
  525. package/storybook-static/sb-manager/index.js +1 -1
  526. package/storybook-static/sb-manager/runtime.js +1 -1
  527. package/storybook-static/sb-manager/syntaxhighlighter-4OVWVELQ-5IZ45DZY.js +1 -0
  528. package/storybook-static/sb-preview/runtime.js +4 -4
  529. package/storybook-static/stories.json +1 -1
  530. package/tasks/create.js +45 -45
  531. package/tasks/firebase-import-meal-nutrients.js +66 -66
  532. package/tsbuildcache +1 -1
  533. package/tsconfig.build.json +44 -44
  534. package/tsconfig.json +20 -20
  535. package/tsconfig.tsbuildinfo +1 -1
  536. package/webpack.config.js +26 -26
  537. package/storybook-static/106.778a645c.iframe.bundle.js.map +0 -1
  538. package/storybook-static/138.8c2d65fc.iframe.bundle.js +0 -402
  539. package/storybook-static/138.8c2d65fc.iframe.bundle.js.map +0 -1
  540. package/storybook-static/147.4bde027d.iframe.bundle.js +0 -1
  541. package/storybook-static/162.50651ae2.iframe.bundle.js +0 -1
  542. package/storybook-static/17.5d9bd250.iframe.bundle.js +0 -1
  543. package/storybook-static/291.09d4c667.iframe.bundle.js +0 -1
  544. package/storybook-static/306.af359eab.iframe.bundle.js.map +0 -1
  545. package/storybook-static/362.4cbbd69f.iframe.bundle.js +0 -1
  546. package/storybook-static/420.42d7bc14.iframe.bundle.js +0 -1
  547. package/storybook-static/576.29e7ae1a.iframe.bundle.js +0 -1
  548. package/storybook-static/577.1d2cbd23.iframe.bundle.js +0 -1
  549. package/storybook-static/710.062ccd5f.iframe.bundle.js +0 -1
  550. package/storybook-static/768.33e53fd0.iframe.bundle.js +0 -1
  551. package/storybook-static/828.5ae0e882.iframe.bundle.js +0 -1
  552. package/storybook-static/829.683a9f42.iframe.bundle.js +0 -133
  553. package/storybook-static/829.683a9f42.iframe.bundle.js.map +0 -1
  554. package/storybook-static/866.50e11952.iframe.bundle.js +0 -1
  555. package/storybook-static/92.83dcbe4b.iframe.bundle.js +0 -1
  556. package/storybook-static/945.3489a74d.iframe.bundle.js +0 -1
  557. package/storybook-static/958.d966bb86.iframe.bundle.js +0 -1
  558. package/storybook-static/components-Badge-Badge-stories.f86fca97.iframe.bundle.js +0 -1
  559. package/storybook-static/components-Button-Button-stories.f9b820e6.iframe.bundle.js +0 -1
  560. package/storybook-static/components-Card-Card-stories.53c865e0.iframe.bundle.js +0 -1
  561. package/storybook-static/components-Checkbox-Checkbox-stories.831f01fd.iframe.bundle.js +0 -1
  562. package/storybook-static/components-Dropdown-Dropdown-stories.7167f777.iframe.bundle.js +0 -1
  563. package/storybook-static/components-Form-Form-stories-mdx.9836b75e.iframe.bundle.js +0 -2
  564. package/storybook-static/components-Form-Form-stories.3de6bf7e.iframe.bundle.js +0 -1
  565. package/storybook-static/components-FormRadioGroup-FormRadioGroup-stories.0502eda0.iframe.bundle.js +0 -1
  566. package/storybook-static/components-Icon-Icons-stories.1acf0324.iframe.bundle.js +0 -1
  567. package/storybook-static/components-Input-Input-stories.6eb48766.iframe.bundle.js +0 -1
  568. package/storybook-static/components-Modal-Modal-stories.86f65df0.iframe.bundle.js +0 -1
  569. package/storybook-static/components-Progress-Progress-stories.77e171cd.iframe.bundle.js +0 -1
  570. package/storybook-static/components-ProgressCircle-ProgressCircle-stories.859f52ec.iframe.bundle.js +0 -1
  571. package/storybook-static/components-Radio-Radio-stories.71a0eb7a.iframe.bundle.js +0 -1
  572. package/storybook-static/components-RadioGroup-RadioGroup-stories.c5e954b8.iframe.bundle.js +0 -1
  573. package/storybook-static/components-ResponsiveImage-ResponsiveImage-stories.0865df1e.iframe.bundle.js +0 -1
  574. package/storybook-static/components-Stepper-Stepper-stories.7627cd7c.iframe.bundle.js +0 -1
  575. package/storybook-static/components-Switch-Switch-stories.a4a76d7f.iframe.bundle.js +0 -1
  576. package/storybook-static/components-TabBar-stories-TimePeriodTabBar-stories.70f1a14c.iframe.bundle.js +0 -1
  577. package/storybook-static/components-Table-Table-stories.f316f6a3.iframe.bundle.js +0 -1
  578. package/storybook-static/components-Tag-Tag-stories.4f4974ab.iframe.bundle.js +0 -1
  579. package/storybook-static/components-TextField-TextField-stories.af04f7d8.iframe.bundle.js +0 -1
  580. package/storybook-static/components-Textarea-Textarea-stories.90376002.iframe.bundle.js +0 -1
  581. package/storybook-static/components-Tooltip-Tooltip-stories.63785818.iframe.bundle.js +0 -1
  582. package/storybook-static/components-Typography-Typography-stories.3cdf669d.iframe.bundle.js +0 -1
  583. package/storybook-static/main.4d06409e.iframe.bundle.js +0 -1
  584. package/storybook-static/runtime~main.dcd9f3c1.iframe.bundle.js +0 -1
  585. package/storybook-static/sb-manager/GlobalScrollAreaStyles-DZEYMYDM-UAEZM2KF.js +0 -7
  586. package/storybook-static/sb-manager/OverlayScrollbars-OGE3XJTA-T3S33YR7.js +0 -1
  587. package/storybook-static/sb-manager/WithTooltip-I4CCNYWD-ZW5IOTVO.js +0 -1
  588. package/storybook-static/sb-manager/chunk-AS2AMEUR.js +0 -1
  589. package/storybook-static/sb-manager/chunk-FPTBIX6P.js +0 -403
  590. package/storybook-static/sb-manager/chunk-QPL63VNK.js +0 -1
  591. package/storybook-static/sb-manager/syntaxhighlighter-SIPZPD4I-WOB5MYBW.js +0 -1
  592. /package/storybook-static/{306.af359eab.iframe.bundle.js.LICENSE.txt → 5374.19c2f606.iframe.bundle.js.LICENSE.txt} +0 -0
  593. /package/storybook-static/{components-Form-Form-stories-mdx.9836b75e.iframe.bundle.js.LICENSE.txt → components-Form-Form-stories-mdx.febb9417.iframe.bundle.js.LICENSE.txt} +0 -0
@@ -1,253 +1,253 @@
1
- import type { Meta, StoryObj } from '@storybook/react';
2
-
3
- import Typography from '@components/Typography';
4
- import Icon from '@components/Icon';
5
- import Switch, { SwitchContextProvider } from '@components/Switch';
6
- import Button from '@components/Button';
7
- import ProgressCircle from '@components/ProgressCircle';
8
- import CardHeader from '@components/CardHeader';
9
- import CardContent from '@components/CardContent';
10
- import Avatar from '@components/Avatar';
11
- import Wrapper from '@components/Wrapper';
12
-
13
- import Card from './index';
14
- import { CardProps } from './types';
15
- import ResponsiveImage from '@components/ResponsiveImage';
16
- import { useTheme } from '@emotion/react';
17
-
18
- export default {
19
- title: 'Components/Card',
20
- component: Card,
21
- parameters: {
22
- docs: {
23
- description: {
24
- component: 'A card is a container that holds information',
25
- },
26
- },
27
- },
28
- argTypes: {
29
- noShadow: {
30
- control: 'boolean',
31
- },
32
- },
33
- } as Meta<typeof Card>;
34
-
35
- const flexContainer = {
36
- display: 'flex',
37
-
38
- justifyContent: 'space-between',
39
- alignItems: 'center',
40
-
41
- width: '100%',
42
-
43
- paddingLeft: 15,
44
- };
45
-
46
- export const Basic: StoryObj<typeof Card> = ({ noShadow }: CardProps) => {
47
- return (
48
- <Card noShadow={noShadow}>
49
- <CardHeader>
50
- <Typography variant="h2">Card</Typography>
51
- </CardHeader>
52
-
53
- <CardContent>
54
- <Typography variant="body1">
55
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris
56
- eleifend, dui in commodo porttitor, neque metus lobortis sem, at
57
- suscipit arcu ligula non enim.
58
- </Typography>
59
- </CardContent>
60
- </Card>
61
- );
62
- };
63
- Basic.args = {};
64
-
65
- export const IconHeader: StoryObj<typeof Card> = ({ noShadow }: CardProps) => {
66
- const theme = useTheme();
67
- return (
68
- <Card noShadow={noShadow}>
69
- <CardHeader
70
- icon={
71
- <ResponsiveImage
72
- css={{
73
- filter: `drop-shadow(0px 5px 5px ${theme.colors.purpleDark}`,
74
- }}
75
- srcSet="https://firebasestorage.googleapis.com/v0/b/admin-themes.appspot.com/o/img%2Fheart%2Fheart_64.png?alt=media&token=aca1639b-62f5-44ed-a0d1-3cea8e4797e2 64w, https://firebasestorage.googleapis.com/v0/b/admin-themes.appspot.com/o/img%2Fheart%2Fheart_48.png?alt=media&token=7ef68a25-5362-48b9-b359-c46b48d1db54 48w"
76
- sizes="(min-width: 1440px) 64px, 48px"
77
- src="https://firebasestorage.googleapis.com/v0/b/admin-themes.appspot.com/o/img%2Fheart%2Fheart_48.png?alt=media&token=7ef68a25-5362-48b9-b359-c46b48d1db54"
78
- alt="Heart"
79
- />
80
- }>
81
- <Typography variant="h2">Card</Typography>
82
- </CardHeader>
83
-
84
- <CardContent>
85
- <Typography variant="body1">
86
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris
87
- eleifend, dui in commodo porttitor, neque metus lobortis sem, at
88
- suscipit arcu ligula non enim.
89
- </Typography>
90
- </CardContent>
91
- </Card>
92
- );
93
- };
94
-
95
- IconHeader.args = {};
96
-
97
- export const FloatHeader: StoryObj<typeof Card> = ({ noShadow }: CardProps) => {
98
- return (
99
- <div>
100
- <CardHeader transparent>
101
- <Typography variant="h2">Card</Typography>
102
- </CardHeader>
103
-
104
- <Card noShadow={noShadow}>
105
- <CardContent>
106
- <Typography variant="body1">
107
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris
108
- eleifend, dui in commodo porttitor, neque metus lobortis sem, at
109
- suscipit arcu ligula non enim.
110
- </Typography>
111
- </CardContent>
112
- </Card>
113
- </div>
114
- );
115
- };
116
- FloatHeader.args = {};
117
-
118
- export const ItemCard: StoryObj<typeof Card> = ({ noShadow }: CardProps) => {
119
- const image = 'https://via.placeholder.com/42x42';
120
- const name = 'John Doe';
121
-
122
- return (
123
- <Card noShadow={noShadow}>
124
- <Wrapper direction="row" avatarSize={42}>
125
- <Avatar size={42} image={image} className="lostpixel-ignore" />
126
-
127
- <CardContent
128
- style={{
129
- width: `calc(100% - 42px)`,
130
- paddingLeft: 15,
131
- }}>
132
- <div>
133
- <Typography variant="subtitle">{name}</Typography>
134
- <Typography variant="body1">Goal 25 km | 19,7 km</Typography>
135
- </div>
136
-
137
- <ProgressCircle
138
- {...{
139
- size: 50,
140
- max: 100,
141
- currentValue: 70,
142
- infoContent: <Typography variant="body1">70%</Typography>,
143
- color: 'purple',
144
- }}
145
- />
146
- </CardContent>
147
- </Wrapper>
148
- </Card>
149
- );
150
- };
151
- ItemCard.args = {};
152
-
153
- export const ItemCardAction: StoryObj<typeof Card> = ({
154
- noShadow,
155
- }: CardProps) => {
156
- const image = 'https://via.placeholder.com/42x42';
157
- const name = 'John Doe';
158
-
159
- return (
160
- <SwitchContextProvider initialState={true}>
161
- <Card noShadow={noShadow}>
162
- <Wrapper direction="row">
163
- <Avatar size={42} image={image} className="lostpixel-ignore" />
164
-
165
- <CardContent
166
- style={{
167
- width: 'calc(100% - 42px)',
168
- }}>
169
- <Wrapper direction="column">
170
- <div style={flexContainer}>
171
- <Typography variant="h6">{name}</Typography>
172
- <Button
173
- variant="tertiary"
174
- size="small"
175
- onClick={() => console.log}
176
- endIcon={<Icon name="more" />}
177
- />
178
- </div>
179
-
180
- <div style={flexContainer}>
181
- <Typography variant="body1">Goal 25 km | 19,7 km</Typography>
182
-
183
- <Switch label="switch" />
184
- </div>
185
- </Wrapper>
186
- </CardContent>
187
- </Wrapper>
188
- </Card>
189
- </SwitchContextProvider>
190
- );
191
- };
192
- ItemCardAction.args = {};
193
-
194
- export const ItemCardAvatar: StoryObj<typeof Card> = ({
195
- noShadow,
196
- }: CardProps) => {
197
- const image = 'https://via.placeholder.com/64x64';
198
-
199
- return (
200
- <Card noShadow={noShadow}>
201
- <Avatar size={64} image={image} className="lostpixel-ignore" />
202
-
203
- <CardContent>
204
- <Typography variant="body1">
205
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris
206
- eleifend, dui in commodo porttitor, neque metus lobortis sem, at
207
- suscipit arcu ligula non enim.
208
- </Typography>
209
- </CardContent>
210
- </Card>
211
- );
212
- };
213
- ItemCardAvatar.args = {};
214
-
215
- export const NoShadow: StoryObj<typeof Card> = ({ noShadow }: CardProps) => {
216
- return (
217
- <Card noShadow={noShadow}>
218
- <CardHeader>
219
- <Typography variant="h2">Card</Typography>
220
- </CardHeader>
221
-
222
- <CardContent>
223
- <Typography variant="body1">
224
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris
225
- eleifend, dui in commodo porttitor, neque metus lobortis sem, at
226
- suscipit arcu ligula non enim.
227
- </Typography>
228
- </CardContent>
229
- </Card>
230
- );
231
- };
232
- NoShadow.args = {};
233
-
234
- export const Clickable: StoryObj<typeof Card> = ({ onClick }: CardProps) => {
235
- return (
236
- <Card onClick={onClick}>
237
- <CardHeader>
238
- <Typography variant="h2">A clickable card</Typography>
239
- </CardHeader>
240
-
241
- <CardContent>
242
- <Typography variant="body1">
243
- Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris
244
- eleifend, dui in commodo porttitor, neque metus lobortis sem, at
245
- suscipit arcu ligula non enim.
246
- </Typography>
247
- </CardContent>
248
- </Card>
249
- );
250
- };
251
- Clickable.args = {
252
- onClick: () => alert('Clicked!'),
253
- };
1
+ import type { Meta, StoryObj } from '@storybook/react';
2
+
3
+ import Typography from '@components/Typography';
4
+ import Icon from '@components/Icon';
5
+ import Switch, { SwitchContextProvider } from '@components/Switch';
6
+ import Button from '@components/Button';
7
+ import ProgressCircle from '@components/ProgressCircle';
8
+ import CardHeader from '@components/CardHeader';
9
+ import CardContent from '@components/CardContent';
10
+ import Avatar from '@components/Avatar';
11
+ import Wrapper from '@components/Wrapper';
12
+
13
+ import Card from './index';
14
+ import { CardProps } from './types';
15
+ import ResponsiveImage from '@components/ResponsiveImage';
16
+ import { useTheme } from '@emotion/react';
17
+
18
+ export default {
19
+ title: 'Components/Card',
20
+ component: Card,
21
+ parameters: {
22
+ docs: {
23
+ description: {
24
+ component: 'A card is a container that holds information',
25
+ },
26
+ },
27
+ },
28
+ argTypes: {
29
+ noShadow: {
30
+ control: 'boolean',
31
+ },
32
+ },
33
+ } as Meta<typeof Card>;
34
+
35
+ const flexContainer = {
36
+ display: 'flex',
37
+
38
+ justifyContent: 'space-between',
39
+ alignItems: 'center',
40
+
41
+ width: '100%',
42
+
43
+ paddingLeft: 15,
44
+ };
45
+
46
+ export const Basic: StoryObj<typeof Card> = ({ noShadow }: CardProps) => {
47
+ return (
48
+ <Card noShadow={noShadow}>
49
+ <CardHeader>
50
+ <Typography variant="h2">Card</Typography>
51
+ </CardHeader>
52
+
53
+ <CardContent>
54
+ <Typography variant="body1">
55
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris
56
+ eleifend, dui in commodo porttitor, neque metus lobortis sem, at
57
+ suscipit arcu ligula non enim.
58
+ </Typography>
59
+ </CardContent>
60
+ </Card>
61
+ );
62
+ };
63
+ Basic.args = {};
64
+
65
+ export const IconHeader: StoryObj<typeof Card> = ({ noShadow }: CardProps) => {
66
+ const theme = useTheme();
67
+ return (
68
+ <Card noShadow={noShadow}>
69
+ <CardHeader
70
+ icon={
71
+ <ResponsiveImage
72
+ css={{
73
+ filter: `drop-shadow(0px 5px 5px ${theme.colors.purpleDark}`,
74
+ }}
75
+ srcSet="https://firebasestorage.googleapis.com/v0/b/admin-themes.appspot.com/o/img%2Fheart%2Fheart_64.png?alt=media&token=aca1639b-62f5-44ed-a0d1-3cea8e4797e2 64w, https://firebasestorage.googleapis.com/v0/b/admin-themes.appspot.com/o/img%2Fheart%2Fheart_48.png?alt=media&token=7ef68a25-5362-48b9-b359-c46b48d1db54 48w"
76
+ sizes="(min-width: 1440px) 64px, 48px"
77
+ src="https://firebasestorage.googleapis.com/v0/b/admin-themes.appspot.com/o/img%2Fheart%2Fheart_48.png?alt=media&token=7ef68a25-5362-48b9-b359-c46b48d1db54"
78
+ alt="Heart"
79
+ />
80
+ }>
81
+ <Typography variant="h2">Card</Typography>
82
+ </CardHeader>
83
+
84
+ <CardContent>
85
+ <Typography variant="body1">
86
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris
87
+ eleifend, dui in commodo porttitor, neque metus lobortis sem, at
88
+ suscipit arcu ligula non enim.
89
+ </Typography>
90
+ </CardContent>
91
+ </Card>
92
+ );
93
+ };
94
+
95
+ IconHeader.args = {};
96
+
97
+ export const FloatHeader: StoryObj<typeof Card> = ({ noShadow }: CardProps) => {
98
+ return (
99
+ <div>
100
+ <CardHeader transparent>
101
+ <Typography variant="h2">Card</Typography>
102
+ </CardHeader>
103
+
104
+ <Card noShadow={noShadow}>
105
+ <CardContent>
106
+ <Typography variant="body1">
107
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris
108
+ eleifend, dui in commodo porttitor, neque metus lobortis sem, at
109
+ suscipit arcu ligula non enim.
110
+ </Typography>
111
+ </CardContent>
112
+ </Card>
113
+ </div>
114
+ );
115
+ };
116
+ FloatHeader.args = {};
117
+
118
+ export const ItemCard: StoryObj<typeof Card> = ({ noShadow }: CardProps) => {
119
+ const image = 'https://via.placeholder.com/42x42';
120
+ const name = 'John Doe';
121
+
122
+ return (
123
+ <Card noShadow={noShadow}>
124
+ <Wrapper direction="row" avatarSize={42}>
125
+ <Avatar size={42} image={image} className="lostpixel-ignore" />
126
+
127
+ <CardContent
128
+ style={{
129
+ width: `calc(100% - 42px)`,
130
+ paddingLeft: 15,
131
+ }}>
132
+ <div>
133
+ <Typography variant="subtitle">{name}</Typography>
134
+ <Typography variant="body1">Goal 25 km | 19,7 km</Typography>
135
+ </div>
136
+
137
+ <ProgressCircle
138
+ {...{
139
+ size: 50,
140
+ max: 100,
141
+ currentValue: 70,
142
+ infoContent: <Typography variant="body1">70%</Typography>,
143
+ color: 'purple',
144
+ }}
145
+ />
146
+ </CardContent>
147
+ </Wrapper>
148
+ </Card>
149
+ );
150
+ };
151
+ ItemCard.args = {};
152
+
153
+ export const ItemCardAction: StoryObj<typeof Card> = ({
154
+ noShadow,
155
+ }: CardProps) => {
156
+ const image = 'https://via.placeholder.com/42x42';
157
+ const name = 'John Doe';
158
+
159
+ return (
160
+ <SwitchContextProvider initialState={true}>
161
+ <Card noShadow={noShadow}>
162
+ <Wrapper direction="row">
163
+ <Avatar size={42} image={image} className="lostpixel-ignore" />
164
+
165
+ <CardContent
166
+ style={{
167
+ width: 'calc(100% - 42px)',
168
+ }}>
169
+ <Wrapper direction="column">
170
+ <div style={flexContainer}>
171
+ <Typography variant="h6">{name}</Typography>
172
+ <Button
173
+ variant="tertiary"
174
+ size="small"
175
+ onClick={() => console.log}
176
+ endIcon={<Icon name="more" />}
177
+ />
178
+ </div>
179
+
180
+ <div style={flexContainer}>
181
+ <Typography variant="body1">Goal 25 km | 19,7 km</Typography>
182
+
183
+ <Switch label="switch" />
184
+ </div>
185
+ </Wrapper>
186
+ </CardContent>
187
+ </Wrapper>
188
+ </Card>
189
+ </SwitchContextProvider>
190
+ );
191
+ };
192
+ ItemCardAction.args = {};
193
+
194
+ export const ItemCardAvatar: StoryObj<typeof Card> = ({
195
+ noShadow,
196
+ }: CardProps) => {
197
+ const image = 'https://via.placeholder.com/64x64';
198
+
199
+ return (
200
+ <Card noShadow={noShadow}>
201
+ <Avatar size={64} image={image} className="lostpixel-ignore" />
202
+
203
+ <CardContent>
204
+ <Typography variant="body1">
205
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris
206
+ eleifend, dui in commodo porttitor, neque metus lobortis sem, at
207
+ suscipit arcu ligula non enim.
208
+ </Typography>
209
+ </CardContent>
210
+ </Card>
211
+ );
212
+ };
213
+ ItemCardAvatar.args = {};
214
+
215
+ export const NoShadow: StoryObj<typeof Card> = ({ noShadow }: CardProps) => {
216
+ return (
217
+ <Card noShadow={noShadow}>
218
+ <CardHeader>
219
+ <Typography variant="h2">Card</Typography>
220
+ </CardHeader>
221
+
222
+ <CardContent>
223
+ <Typography variant="body1">
224
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris
225
+ eleifend, dui in commodo porttitor, neque metus lobortis sem, at
226
+ suscipit arcu ligula non enim.
227
+ </Typography>
228
+ </CardContent>
229
+ </Card>
230
+ );
231
+ };
232
+ NoShadow.args = {};
233
+
234
+ export const Clickable: StoryObj<typeof Card> = ({ onClick }: CardProps) => {
235
+ return (
236
+ <Card onClick={onClick}>
237
+ <CardHeader>
238
+ <Typography variant="h2">A clickable card</Typography>
239
+ </CardHeader>
240
+
241
+ <CardContent>
242
+ <Typography variant="body1">
243
+ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris
244
+ eleifend, dui in commodo porttitor, neque metus lobortis sem, at
245
+ suscipit arcu ligula non enim.
246
+ </Typography>
247
+ </CardContent>
248
+ </Card>
249
+ );
250
+ };
251
+ Clickable.args = {
252
+ onClick: () => alert('Clicked!'),
253
+ };
@@ -1,13 +1,13 @@
1
- import CardBase from './CardBase';
2
-
3
- import { CardProps } from './types';
4
-
5
- const Card = ({ children, onClick, ...props }: CardProps) => {
6
- return (
7
- <CardBase {...props} as={onClick ? 'button' : 'div'} onClick={onClick}>
8
- {children}
9
- </CardBase>
10
- );
11
- };
12
-
13
- export default Card;
1
+ import CardBase from './CardBase';
2
+
3
+ import { CardProps } from './types';
4
+
5
+ const Card = ({ children, onClick, ...props }: CardProps) => {
6
+ return (
7
+ <CardBase {...props} as={onClick ? 'button' : 'div'} onClick={onClick}>
8
+ {children}
9
+ </CardBase>
10
+ );
11
+ };
12
+
13
+ export default Card;
@@ -1,20 +1,20 @@
1
- import styled from '@emotion/styled';
2
-
3
- const CardBase = styled.div<{ noShadow?: boolean }>`
4
- display: flex;
5
- flex-direction: column;
6
- align-items: center;
7
-
8
- padding: 20px;
9
-
10
- background: #fff;
11
-
12
- box-shadow: ${({ theme, noShadow }) =>
13
- !noShadow && `0px 10px 40px ${theme.colors.greyDarker60}`};
14
- border-radius: 10px;
15
- border: none;
16
-
17
- cursor: ${({ onClick }) => (onClick ? 'pointer' : 'default')};
18
- `;
19
-
20
- export default CardBase;
1
+ import styled from '@emotion/styled';
2
+
3
+ const CardBase = styled.div<{ noShadow?: boolean }>`
4
+ display: flex;
5
+ flex-direction: column;
6
+ align-items: center;
7
+
8
+ padding: 20px;
9
+
10
+ background: #fff;
11
+
12
+ box-shadow: ${({ theme, noShadow }) =>
13
+ !noShadow && `0px 10px 40px ${theme.colors.greyDarker60}`};
14
+ border-radius: 10px;
15
+ border: none;
16
+
17
+ cursor: ${({ onClick }) => (onClick ? 'pointer' : 'default')};
18
+ `;
19
+
20
+ export default CardBase;
@@ -1,2 +1,2 @@
1
- export { default } from './Card';
2
- export * from './CardBase';
1
+ export { default } from './Card';
2
+ export * from './CardBase';
@@ -1,8 +1,8 @@
1
- import { CommonProps } from '@global-types/emotion';
2
-
3
- export interface CardProps extends CommonProps {
4
- noShadow?: boolean;
5
- children: React.ReactNode;
6
- className?: string;
7
- onClick?: () => void;
8
- }
1
+ import { CommonProps } from '@global-types/emotion';
2
+
3
+ export interface CardProps extends CommonProps {
4
+ noShadow?: boolean;
5
+ children: React.ReactNode;
6
+ className?: string;
7
+ onClick?: () => void;
8
+ }
@@ -1,17 +1,17 @@
1
- import { CommonProps } from '@global-types/emotion';
2
- import CardContentBase from './CardContentBase';
3
-
4
- export interface CardProps extends CommonProps {
5
- children: React.ReactNode;
6
- style?: React.CSSProperties;
7
- direction?: 'row' | 'row-reverse' | 'column' | 'column-reverse';
8
- className?: string;
9
- ariaLabelledby?: string;
10
- role?: string;
11
- }
12
-
13
- const CardContent = ({ children, ...props }: CardProps) => (
14
- <CardContentBase {...props}>{children}</CardContentBase>
15
- );
16
-
17
- export default CardContent;
1
+ import { CommonProps } from '@global-types/emotion';
2
+ import CardContentBase from './CardContentBase';
3
+
4
+ export interface CardProps extends CommonProps {
5
+ children: React.ReactNode;
6
+ style?: React.CSSProperties;
7
+ direction?: 'row' | 'row-reverse' | 'column' | 'column-reverse';
8
+ className?: string;
9
+ ariaLabelledby?: string;
10
+ role?: string;
11
+ }
12
+
13
+ const CardContent = ({ children, ...props }: CardProps) => (
14
+ <CardContentBase {...props}>{children}</CardContentBase>
15
+ );
16
+
17
+ export default CardContent;
@@ -1,12 +1,12 @@
1
- import styled from '@emotion/styled';
2
-
3
- const CardContentBase = styled.div<{ direction?: string }>`
4
- display: flex;
5
- justify-content: space-between;
6
-
7
- flex-direction: ${({ direction }) => (direction ? direction : 'row')};
8
- align-items: ${({ direction }) =>
9
- direction === 'column' ? 'normal' : 'center'};
10
- `;
11
-
12
- export default CardContentBase;
1
+ import styled from '@emotion/styled';
2
+
3
+ const CardContentBase = styled.div<{ direction?: string }>`
4
+ display: flex;
5
+ justify-content: space-between;
6
+
7
+ flex-direction: ${({ direction }) => (direction ? direction : 'row')};
8
+ align-items: ${({ direction }) =>
9
+ direction === 'column' ? 'normal' : 'center'};
10
+ `;
11
+
12
+ export default CardContentBase;
@@ -1 +1 @@
1
- export { default } from './CardContent';
1
+ export { default } from './CardContent';