@goodhood-web/ui 0.0.4 → 0.0.5

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 (292) hide show
  1. package/{src/index.ts → index.d.ts} +1 -24
  2. package/index.js +48 -0
  3. package/index.mjs +2331 -0
  4. package/lib/BaseButton/BaseButton.d.ts +11 -0
  5. package/lib/Card/Card.d.ts +3 -0
  6. package/lib/Card/Card.types.d.ts +10 -0
  7. package/lib/Card/Card.utils.d.ts +3 -0
  8. package/lib/Card/CardBody/CardBody.d.ts +3 -0
  9. package/lib/Card/CardBody/CardBody.types.d.ts +5 -0
  10. package/lib/Card/CardHeader/CardHeader.d.ts +3 -0
  11. package/lib/Card/CardHeader/CardHeader.type.d.ts +10 -0
  12. package/lib/ContentCreatorButton/ContentCreatorButton.d.ts +3 -0
  13. package/{src/lib/ContentCreatorButton/ContentCreatorButton.types.ts → lib/ContentCreatorButton/ContentCreatorButton.types.d.ts} +2 -3
  14. package/lib/Divider/Divider.d.ts +3 -0
  15. package/lib/Divider/Divider.types.d.ts +6 -0
  16. package/lib/Fieldset/Fieldset.d.ts +3 -0
  17. package/lib/Fieldset/Fieldset.types.d.ts +8 -0
  18. package/lib/Form/Form.d.ts +3 -0
  19. package/lib/Form/Form.types.d.ts +10 -0
  20. package/lib/Icon/Icon.d.ts +4 -0
  21. package/lib/Icon/Icon.types.d.ts +18 -0
  22. package/lib/Icon/icons/24x24/index.d.ts +130 -0
  23. package/lib/Icon/icons/32x32/index.d.ts +265 -0
  24. package/lib/Icon/icons/index.d.ts +395 -0
  25. package/lib/IconButton/IconButton.d.ts +3 -0
  26. package/{src/lib/IconButton/IconButton.types.ts → lib/IconButton/IconButton.types.d.ts} +10 -10
  27. package/lib/IconButton/utils.d.ts +3 -0
  28. package/lib/Image/Image.d.ts +3 -0
  29. package/lib/Image/Image.type.d.ts +5 -0
  30. package/lib/LabelPill/LabelPill.d.ts +3 -0
  31. package/lib/LabelPill/LabelPill.types.d.ts +4 -0
  32. package/lib/Legend/Legend.d.ts +3 -0
  33. package/lib/Legend/Legend.types.d.ts +5 -0
  34. package/lib/MenuItem/MenuItem.d.ts +3 -0
  35. package/lib/MenuItem/MenuItem.types.d.ts +9 -0
  36. package/lib/NotificationBubble/NotificationBubble.d.ts +3 -0
  37. package/{src/lib/NotificationBubble/NotificationBubble.types.tsx → lib/NotificationBubble/NotificationBubble.types.d.ts} +2 -3
  38. package/lib/Thumbnail/Thumbnail.d.ts +3 -0
  39. package/{src/lib/Thumbnail/Thumbnail.type.tsx → lib/Thumbnail/Thumbnail.type.d.ts} +6 -9
  40. package/lib/Toggle/Toggle.d.ts +3 -0
  41. package/{src/lib/Toggle/Toggle.types.ts → lib/Toggle/Toggle.types.d.ts} +2 -3
  42. package/lib/ToggleInput/ToggleInput.d.ts +3 -0
  43. package/{src/lib/ToggleInput/ToggleInput.types.ts → lib/ToggleInput/ToggleInput.types.d.ts} +3 -5
  44. package/lib/Typography/Typography.d.ts +3 -0
  45. package/lib/Typography/Typography.types.d.ts +8 -0
  46. package/package.json +1 -1
  47. package/style.css +1 -0
  48. package/.babelrc +0 -12
  49. package/.eslintrc.json +0 -25
  50. package/.storybook/main.ts +0 -31
  51. package/.storybook/manager-head.html +0 -1
  52. package/.storybook/manager.ts +0 -7
  53. package/.storybook/nebenanTheme.ts +0 -17
  54. package/.storybook/preview.ts +0 -9
  55. package/.stylelintrc.json +0 -14
  56. package/README.md +0 -7
  57. package/__mocks__/svg.js +0 -2
  58. package/images/favicon.ico +0 -0
  59. package/images/logo.svg +0 -11
  60. package/jest.config.ts +0 -16
  61. package/project.json +0 -88
  62. package/src/lib/BaseButton/BaseButton.module.scss +0 -11
  63. package/src/lib/BaseButton/BaseButton.spec.tsx +0 -12
  64. package/src/lib/BaseButton/BaseButton.stories.tsx +0 -26
  65. package/src/lib/BaseButton/BaseButton.tsx +0 -39
  66. package/src/lib/Card/Card.module.scss +0 -15
  67. package/src/lib/Card/Card.spec.tsx +0 -15
  68. package/src/lib/Card/Card.stories.tsx +0 -159
  69. package/src/lib/Card/Card.tsx +0 -31
  70. package/src/lib/Card/Card.types.ts +0 -12
  71. package/src/lib/Card/Card.utils.spec.tsx +0 -51
  72. package/src/lib/Card/Card.utils.ts +0 -23
  73. package/src/lib/Card/CardBody/CardBody.module.scss +0 -4
  74. package/src/lib/Card/CardBody/CardBody.spec.tsx +0 -15
  75. package/src/lib/Card/CardBody/CardBody.stories.tsx +0 -108
  76. package/src/lib/Card/CardBody/CardBody.tsx +0 -9
  77. package/src/lib/Card/CardBody/CardBody.types.ts +0 -4
  78. package/src/lib/Card/CardHeader/CardHeader.module.scss +0 -12
  79. package/src/lib/Card/CardHeader/CardHeader.spec.tsx +0 -72
  80. package/src/lib/Card/CardHeader/CardHeader.stories.tsx +0 -77
  81. package/src/lib/Card/CardHeader/CardHeader.tsx +0 -29
  82. package/src/lib/Card/CardHeader/CardHeader.type.ts +0 -14
  83. package/src/lib/ContentCreatorButton/ContentCreatorButton.module.scss +0 -13
  84. package/src/lib/ContentCreatorButton/ContentCreatorButton.spec.tsx +0 -14
  85. package/src/lib/ContentCreatorButton/ContentCreatorButton.stories.tsx +0 -29
  86. package/src/lib/ContentCreatorButton/ContentCreatorButton.tsx +0 -35
  87. package/src/lib/Divider/Divider.module.scss +0 -10
  88. package/src/lib/Divider/Divider.spec.tsx +0 -46
  89. package/src/lib/Divider/Divider.stories.tsx +0 -35
  90. package/src/lib/Divider/Divider.tsx +0 -17
  91. package/src/lib/Divider/Divider.types.ts +0 -6
  92. package/src/lib/Fieldset/Fieldset.module.scss +0 -3
  93. package/src/lib/Fieldset/Fieldset.spec.tsx +0 -68
  94. package/src/lib/Fieldset/Fieldset.stories.tsx +0 -60
  95. package/src/lib/Fieldset/Fieldset.tsx +0 -28
  96. package/src/lib/Fieldset/Fieldset.types.ts +0 -7
  97. package/src/lib/Form/Form.spec.tsx +0 -15
  98. package/src/lib/Form/Form.stories.tsx +0 -53
  99. package/src/lib/Form/Form.tsx +0 -14
  100. package/src/lib/Form/Form.types.ts +0 -11
  101. package/src/lib/Icon/Icon.module.scss +0 -7
  102. package/src/lib/Icon/Icon.spec.tsx +0 -28
  103. package/src/lib/Icon/Icon.stories.tsx +0 -88
  104. package/src/lib/Icon/Icon.tsx +0 -29
  105. package/src/lib/Icon/Icon.types.ts +0 -23
  106. package/src/lib/Icon/icons/24x24/index.ts +0 -89
  107. package/src/lib/Icon/icons/24x24/svg/arrow_left.svg +0 -1
  108. package/src/lib/Icon/icons/24x24/svg/arrow_right.svg +0 -1
  109. package/src/lib/Icon/icons/24x24/svg/bookmark.svg +0 -1
  110. package/src/lib/Icon/icons/24x24/svg/bookmarked.svg +0 -1
  111. package/src/lib/Icon/icons/24x24/svg/burger_menu.svg +0 -1
  112. package/src/lib/Icon/icons/24x24/svg/camera.svg +0 -1
  113. package/src/lib/Icon/icons/24x24/svg/checkmark.svg +0 -1
  114. package/src/lib/Icon/icons/24x24/svg/checkmark_circle.svg +0 -1
  115. package/src/lib/Icon/icons/24x24/svg/chevron_down.svg +0 -1
  116. package/src/lib/Icon/icons/24x24/svg/chevron_left.svg +0 -1
  117. package/src/lib/Icon/icons/24x24/svg/chevron_right.svg +0 -1
  118. package/src/lib/Icon/icons/24x24/svg/chevron_up.svg +0 -1
  119. package/src/lib/Icon/icons/24x24/svg/comment_bubble.svg +0 -1
  120. package/src/lib/Icon/icons/24x24/svg/cross.svg +0 -1
  121. package/src/lib/Icon/icons/24x24/svg/cross_circle.svg +0 -1
  122. package/src/lib/Icon/icons/24x24/svg/envelope.svg +0 -1
  123. package/src/lib/Icon/icons/24x24/svg/event_calendar.svg +0 -1
  124. package/src/lib/Icon/icons/24x24/svg/external_link.svg +0 -1
  125. package/src/lib/Icon/icons/24x24/svg/eye.svg +0 -1
  126. package/src/lib/Icon/icons/24x24/svg/eye_crossed.svg +0 -1
  127. package/src/lib/Icon/icons/24x24/svg/filter.svg +0 -1
  128. package/src/lib/Icon/icons/24x24/svg/globe.svg +0 -1
  129. package/src/lib/Icon/icons/24x24/svg/heart.svg +0 -1
  130. package/src/lib/Icon/icons/24x24/svg/image.svg +0 -1
  131. package/src/lib/Icon/icons/24x24/svg/loudspeaker.svg +0 -1
  132. package/src/lib/Icon/icons/24x24/svg/marketplace.svg +0 -1
  133. package/src/lib/Icon/icons/24x24/svg/more_dots.svg +0 -1
  134. package/src/lib/Icon/icons/24x24/svg/more_dots_alt.svg +0 -1
  135. package/src/lib/Icon/icons/24x24/svg/mute.svg +0 -1
  136. package/src/lib/Icon/icons/24x24/svg/notification_bell.svg +0 -1
  137. package/src/lib/Icon/icons/24x24/svg/paperclip.svg +0 -1
  138. package/src/lib/Icon/icons/24x24/svg/pencil.svg +0 -1
  139. package/src/lib/Icon/icons/24x24/svg/pin.svg +0 -1
  140. package/src/lib/Icon/icons/24x24/svg/plus.svg +0 -1
  141. package/src/lib/Icon/icons/24x24/svg/plus_circle.svg +0 -1
  142. package/src/lib/Icon/icons/24x24/svg/privacy_lock.svg +0 -1
  143. package/src/lib/Icon/icons/24x24/svg/search.svg +0 -1
  144. package/src/lib/Icon/icons/24x24/svg/share_arrow.svg +0 -1
  145. package/src/lib/Icon/icons/24x24/svg/share_arrow_outline.svg +0 -1
  146. package/src/lib/Icon/icons/24x24/svg/sort.svg +0 -1
  147. package/src/lib/Icon/icons/24x24/svg/thanks.svg +0 -1
  148. package/src/lib/Icon/icons/24x24/svg/trash_can.svg +0 -1
  149. package/src/lib/Icon/icons/32x32/index.ts +0 -179
  150. package/src/lib/Icon/icons/32x32/svg/address_book.svg +0 -1
  151. package/src/lib/Icon/icons/32x32/svg/baby_toy.svg +0 -1
  152. package/src/lib/Icon/icons/32x32/svg/bicycle.svg +0 -1
  153. package/src/lib/Icon/icons/32x32/svg/bookmark.svg +0 -1
  154. package/src/lib/Icon/icons/32x32/svg/books.svg +0 -1
  155. package/src/lib/Icon/icons/32x32/svg/bubble_heart_filled.svg +0 -1
  156. package/src/lib/Icon/icons/32x32/svg/bubble_heart_outline.svg +0 -1
  157. package/src/lib/Icon/icons/32x32/svg/buildings.svg +0 -1
  158. package/src/lib/Icon/icons/32x32/svg/burger_menu.svg +0 -1
  159. package/src/lib/Icon/icons/32x32/svg/business.svg +0 -1
  160. package/src/lib/Icon/icons/32x32/svg/business_profile.svg +0 -1
  161. package/src/lib/Icon/icons/32x32/svg/camera.svg +0 -1
  162. package/src/lib/Icon/icons/32x32/svg/camera_crossed.svg +0 -1
  163. package/src/lib/Icon/icons/32x32/svg/car.svg +0 -1
  164. package/src/lib/Icon/icons/32x32/svg/carrot.svg +0 -1
  165. package/src/lib/Icon/icons/32x32/svg/chat.svg +0 -1
  166. package/src/lib/Icon/icons/32x32/svg/checkmark_circle.svg +0 -1
  167. package/src/lib/Icon/icons/32x32/svg/christmas_tree.svg +0 -1
  168. package/src/lib/Icon/icons/32x32/svg/clipboard.svg +0 -1
  169. package/src/lib/Icon/icons/32x32/svg/clothing.svg +0 -1
  170. package/src/lib/Icon/icons/32x32/svg/cocktail.svg +0 -1
  171. package/src/lib/Icon/icons/32x32/svg/comment_bubble.svg +0 -1
  172. package/src/lib/Icon/icons/32x32/svg/compass.svg +0 -1
  173. package/src/lib/Icon/icons/32x32/svg/computer.svg +0 -1
  174. package/src/lib/Icon/icons/32x32/svg/couch.svg +0 -1
  175. package/src/lib/Icon/icons/32x32/svg/credit_card.svg +0 -1
  176. package/src/lib/Icon/icons/32x32/svg/cross_circle.svg +0 -1
  177. package/src/lib/Icon/icons/32x32/svg/cutlery.svg +0 -1
  178. package/src/lib/Icon/icons/32x32/svg/drill_tool.svg +0 -1
  179. package/src/lib/Icon/icons/32x32/svg/email.svg +0 -1
  180. package/src/lib/Icon/icons/32x32/svg/envelope.svg +0 -1
  181. package/src/lib/Icon/icons/32x32/svg/event_calendar_check.svg +0 -1
  182. package/src/lib/Icon/icons/32x32/svg/event_calendar_date.svg +0 -1
  183. package/src/lib/Icon/icons/32x32/svg/event_calendar_plus.svg +0 -1
  184. package/src/lib/Icon/icons/32x32/svg/exchange.svg +0 -1
  185. package/src/lib/Icon/icons/32x32/svg/eye.svg +0 -1
  186. package/src/lib/Icon/icons/32x32/svg/eye_crossed.svg +0 -1
  187. package/src/lib/Icon/icons/32x32/svg/gift.svg +0 -1
  188. package/src/lib/Icon/icons/32x32/svg/group.svg +0 -1
  189. package/src/lib/Icon/icons/32x32/svg/healthcare.svg +0 -1
  190. package/src/lib/Icon/icons/32x32/svg/heart.svg +0 -1
  191. package/src/lib/Icon/icons/32x32/svg/house.svg +0 -1
  192. package/src/lib/Icon/icons/32x32/svg/image.svg +0 -1
  193. package/src/lib/Icon/icons/32x32/svg/info.svg +0 -1
  194. package/src/lib/Icon/icons/32x32/svg/invite_neighbour.svg +0 -1
  195. package/src/lib/Icon/icons/32x32/svg/key.svg +0 -1
  196. package/src/lib/Icon/icons/32x32/svg/kitchen_pot.svg +0 -1
  197. package/src/lib/Icon/icons/32x32/svg/list.svg +0 -1
  198. package/src/lib/Icon/icons/32x32/svg/log_out.svg +0 -1
  199. package/src/lib/Icon/icons/32x32/svg/loudspeaker.svg +0 -1
  200. package/src/lib/Icon/icons/32x32/svg/map.svg +0 -1
  201. package/src/lib/Icon/icons/32x32/svg/marketplace.svg +0 -1
  202. package/src/lib/Icon/icons/32x32/svg/miscellaneous_other.svg +0 -1
  203. package/src/lib/Icon/icons/32x32/svg/more_dots.svg +0 -1
  204. package/src/lib/Icon/icons/32x32/svg/more_dots_alt.svg +0 -1
  205. package/src/lib/Icon/icons/32x32/svg/music.svg +0 -1
  206. package/src/lib/Icon/icons/32x32/svg/nebenan.de.svg +0 -1
  207. package/src/lib/Icon/icons/32x32/svg/neighbour.svg +0 -1
  208. package/src/lib/Icon/icons/32x32/svg/notification_bell.svg +0 -1
  209. package/src/lib/Icon/icons/32x32/svg/organisation.svg +0 -1
  210. package/src/lib/Icon/icons/32x32/svg/paper_form_empty.svg +0 -1
  211. package/src/lib/Icon/icons/32x32/svg/paper_form_filled.svg +0 -1
  212. package/src/lib/Icon/icons/32x32/svg/paperclip.svg +0 -1
  213. package/src/lib/Icon/icons/32x32/svg/paw.svg +0 -1
  214. package/src/lib/Icon/icons/32x32/svg/pencil.svg +0 -1
  215. package/src/lib/Icon/icons/32x32/svg/pin.svg +0 -1
  216. package/src/lib/Icon/icons/32x32/svg/pins.svg +0 -1
  217. package/src/lib/Icon/icons/32x32/svg/plant.svg +0 -1
  218. package/src/lib/Icon/icons/32x32/svg/plus.svg +0 -1
  219. package/src/lib/Icon/icons/32x32/svg/plus_circle.svg +0 -1
  220. package/src/lib/Icon/icons/32x32/svg/post.svg +0 -1
  221. package/src/lib/Icon/icons/32x32/svg/privacy_lock.svg +0 -1
  222. package/src/lib/Icon/icons/32x32/svg/qr_code.svg +0 -1
  223. package/src/lib/Icon/icons/32x32/svg/search.svg +0 -1
  224. package/src/lib/Icon/icons/32x32/svg/settings_cog.svg +0 -1
  225. package/src/lib/Icon/icons/32x32/svg/shopping_bag.svg +0 -1
  226. package/src/lib/Icon/icons/32x32/svg/shopping_cart.svg +0 -1
  227. package/src/lib/Icon/icons/32x32/svg/special_place.svg +0 -1
  228. package/src/lib/Icon/icons/32x32/svg/suitcase.svg +0 -1
  229. package/src/lib/Icon/icons/32x32/svg/supporter.svg +0 -1
  230. package/src/lib/Icon/icons/32x32/svg/tennis_ball.svg +0 -1
  231. package/src/lib/Icon/icons/32x32/svg/thanks.svg +0 -1
  232. package/src/lib/Icon/icons/32x32/svg/trash_can.svg +0 -1
  233. package/src/lib/Icon/icons/32x32/svg/truck.svg +0 -1
  234. package/src/lib/Icon/icons/32x32/svg/user.svg +0 -1
  235. package/src/lib/Icon/icons/32x32/svg/user_profile.svg +0 -1
  236. package/src/lib/Icon/icons/32x32/svg/wellness.svg +0 -1
  237. package/src/lib/Icon/icons/index.ts +0 -9
  238. package/src/lib/IconButton/IconButton.module.scss +0 -36
  239. package/src/lib/IconButton/IconButton.spec.tsx +0 -56
  240. package/src/lib/IconButton/IconButton.stories.tsx +0 -36
  241. package/src/lib/IconButton/IconButton.tsx +0 -25
  242. package/src/lib/IconButton/utils.ts +0 -6
  243. package/src/lib/Image/Image.spec.tsx +0 -10
  244. package/src/lib/Image/Image.tsx +0 -7
  245. package/src/lib/Image/Image.type.tsx +0 -5
  246. package/src/lib/LabelPill/LabelPill.module.scss +0 -33
  247. package/src/lib/LabelPill/LabelPill.spec.tsx +0 -23
  248. package/src/lib/LabelPill/LabelPill.stories.tsx +0 -31
  249. package/src/lib/LabelPill/LabelPill.tsx +0 -16
  250. package/src/lib/LabelPill/LabelPill.types.ts +0 -4
  251. package/src/lib/Legend/Legend.module.scss +0 -9
  252. package/src/lib/Legend/Legend.spec.tsx +0 -39
  253. package/src/lib/Legend/Legend.stories.ts +0 -39
  254. package/src/lib/Legend/Legend.tsx +0 -19
  255. package/src/lib/Legend/Legend.types.ts +0 -5
  256. package/src/lib/MenuItem/MenuItem.module.scss +0 -70
  257. package/src/lib/MenuItem/MenuItem.spec.tsx +0 -47
  258. package/src/lib/MenuItem/MenuItem.stories.tsx +0 -97
  259. package/src/lib/MenuItem/MenuItem.tsx +0 -34
  260. package/src/lib/MenuItem/MenuItem.types.ts +0 -10
  261. package/src/lib/NotificationBubble/NotificationBubble.module.scss +0 -30
  262. package/src/lib/NotificationBubble/NotificationBubble.spec.tsx +0 -36
  263. package/src/lib/NotificationBubble/NotificationBubble.stories.tsx +0 -56
  264. package/src/lib/NotificationBubble/NotificationBubble.tsx +0 -34
  265. package/src/lib/Thumbnail/Thumbnail.module.scss +0 -67
  266. package/src/lib/Thumbnail/Thumbnail.spec.tsx +0 -51
  267. package/src/lib/Thumbnail/Thumbnail.stories.tsx +0 -242
  268. package/src/lib/Thumbnail/Thumbnail.tsx +0 -28
  269. package/src/lib/Toggle/Toggle.module.scss +0 -53
  270. package/src/lib/Toggle/Toggle.spec.tsx +0 -23
  271. package/src/lib/Toggle/Toggle.stories.tsx +0 -38
  272. package/src/lib/Toggle/Toggle.tsx +0 -32
  273. package/src/lib/ToggleInput/ToggleInput.module.scss +0 -33
  274. package/src/lib/ToggleInput/ToggleInput.spec.tsx +0 -45
  275. package/src/lib/ToggleInput/ToggleInput.stories.tsx +0 -62
  276. package/src/lib/ToggleInput/ToggleInput.tsx +0 -40
  277. package/src/lib/Typography/Typography.module.scss +0 -61
  278. package/src/lib/Typography/Typography.spec.tsx +0 -60
  279. package/src/lib/Typography/Typography.stories.tsx +0 -45
  280. package/src/lib/Typography/Typography.tsx +0 -26
  281. package/src/lib/Typography/Typography.types.ts +0 -28
  282. package/src/styles/_design-tokens.scss +0 -1
  283. package/src/styles/_fonts.scss +0 -0
  284. package/src/styles/_functions.scss +0 -17
  285. package/src/styles/_mixins.scss +0 -33
  286. package/src/styles/index.scss +0 -3
  287. package/src/styles/reset.scss +0 -65
  288. package/tsconfig.json +0 -24
  289. package/tsconfig.lib.json +0 -35
  290. package/tsconfig.spec.json +0 -20
  291. package/tsconfig.storybook.json +0 -31
  292. package/vite.config.ts +0 -57
@@ -0,0 +1,395 @@
1
+ /// <reference types="react" />
2
+ declare const iconsMap: {
3
+ '24': {
4
+ readonly arrow_left: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
5
+ title?: string | undefined;
6
+ }>;
7
+ readonly arrow_right: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
8
+ title?: string | undefined;
9
+ }>;
10
+ readonly bookmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
11
+ title?: string | undefined;
12
+ }>;
13
+ readonly bookmarked: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
14
+ title?: string | undefined;
15
+ }>;
16
+ readonly burger_menu: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
17
+ title?: string | undefined;
18
+ }>;
19
+ readonly camera: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
20
+ title?: string | undefined;
21
+ }>;
22
+ readonly checkmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
23
+ title?: string | undefined;
24
+ }>;
25
+ readonly checkmark_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
26
+ title?: string | undefined;
27
+ }>;
28
+ readonly chevron_down: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
29
+ title?: string | undefined;
30
+ }>;
31
+ readonly chevron_left: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
32
+ title?: string | undefined;
33
+ }>;
34
+ readonly chevron_right: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
35
+ title?: string | undefined;
36
+ }>;
37
+ readonly chevron_up: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
38
+ title?: string | undefined;
39
+ }>;
40
+ readonly comment_bubble: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
41
+ title?: string | undefined;
42
+ }>;
43
+ readonly cross: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
44
+ title?: string | undefined;
45
+ }>;
46
+ readonly cross_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
47
+ title?: string | undefined;
48
+ }>;
49
+ readonly envelope: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
50
+ title?: string | undefined;
51
+ }>;
52
+ readonly event_calendar: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
53
+ title?: string | undefined;
54
+ }>;
55
+ readonly external_link: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
56
+ title?: string | undefined;
57
+ }>;
58
+ readonly eye: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
59
+ title?: string | undefined;
60
+ }>;
61
+ readonly eye_crossed: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
62
+ title?: string | undefined;
63
+ }>;
64
+ readonly filter: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
65
+ title?: string | undefined;
66
+ }>;
67
+ readonly globe: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
68
+ title?: string | undefined;
69
+ }>;
70
+ readonly heart: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
71
+ title?: string | undefined;
72
+ }>;
73
+ readonly image: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
74
+ title?: string | undefined;
75
+ }>;
76
+ readonly loudspeaker: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
77
+ title?: string | undefined;
78
+ }>;
79
+ readonly marketplace: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
80
+ title?: string | undefined;
81
+ }>;
82
+ readonly more_dots: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
83
+ title?: string | undefined;
84
+ }>;
85
+ readonly more_dots_alt: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
86
+ title?: string | undefined;
87
+ }>;
88
+ readonly mute: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
89
+ title?: string | undefined;
90
+ }>;
91
+ readonly notification_bell: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
92
+ title?: string | undefined;
93
+ }>;
94
+ readonly paperclip: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
95
+ title?: string | undefined;
96
+ }>;
97
+ readonly pencil: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
98
+ title?: string | undefined;
99
+ }>;
100
+ readonly pin: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
101
+ title?: string | undefined;
102
+ }>;
103
+ readonly plus: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
104
+ title?: string | undefined;
105
+ }>;
106
+ readonly plus_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
107
+ title?: string | undefined;
108
+ }>;
109
+ readonly privacy_lock: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
110
+ title?: string | undefined;
111
+ }>;
112
+ readonly search: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
113
+ title?: string | undefined;
114
+ }>;
115
+ readonly share_arrow: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
116
+ title?: string | undefined;
117
+ }>;
118
+ readonly share_arrow_outline: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
119
+ title?: string | undefined;
120
+ }>;
121
+ readonly sort: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
122
+ title?: string | undefined;
123
+ }>;
124
+ readonly thanks: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
125
+ title?: string | undefined;
126
+ }>;
127
+ readonly trash_can: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
128
+ title?: string | undefined;
129
+ }>;
130
+ };
131
+ '32': {
132
+ readonly address_book: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
133
+ title?: string | undefined;
134
+ }>;
135
+ readonly baby_toy: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
136
+ title?: string | undefined;
137
+ }>;
138
+ readonly bicycle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
139
+ title?: string | undefined;
140
+ }>;
141
+ readonly bookmark: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
142
+ title?: string | undefined;
143
+ }>;
144
+ readonly books: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
145
+ title?: string | undefined;
146
+ }>;
147
+ readonly bubble_heart_filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
148
+ title?: string | undefined;
149
+ }>;
150
+ readonly bubble_heart_outline: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
151
+ title?: string | undefined;
152
+ }>;
153
+ readonly buildings: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
154
+ title?: string | undefined;
155
+ }>;
156
+ readonly burger_menu: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
157
+ title?: string | undefined;
158
+ }>;
159
+ readonly business: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
160
+ title?: string | undefined;
161
+ }>;
162
+ readonly business_profile: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
163
+ title?: string | undefined;
164
+ }>;
165
+ readonly camera: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
166
+ title?: string | undefined;
167
+ }>;
168
+ readonly camera_crossed: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
169
+ title?: string | undefined;
170
+ }>;
171
+ readonly car: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
172
+ title?: string | undefined;
173
+ }>;
174
+ readonly carrot: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
175
+ title?: string | undefined;
176
+ }>;
177
+ readonly chat: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
178
+ title?: string | undefined;
179
+ }>;
180
+ readonly checkmark_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
181
+ title?: string | undefined;
182
+ }>;
183
+ readonly christmas_tree: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
184
+ title?: string | undefined;
185
+ }>;
186
+ readonly clipboard: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
187
+ title?: string | undefined;
188
+ }>;
189
+ readonly clothing: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
190
+ title?: string | undefined;
191
+ }>;
192
+ readonly cocktail: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
193
+ title?: string | undefined;
194
+ }>;
195
+ readonly comment_bubble: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
196
+ title?: string | undefined;
197
+ }>;
198
+ readonly compass: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
199
+ title?: string | undefined;
200
+ }>;
201
+ readonly computer: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
202
+ title?: string | undefined;
203
+ }>;
204
+ readonly couch: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
205
+ title?: string | undefined;
206
+ }>;
207
+ readonly credit_card: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
208
+ title?: string | undefined;
209
+ }>;
210
+ readonly cross_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
211
+ title?: string | undefined;
212
+ }>;
213
+ readonly cutlery: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
214
+ title?: string | undefined;
215
+ }>;
216
+ readonly drill_tool: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
217
+ title?: string | undefined;
218
+ }>;
219
+ readonly email: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
220
+ title?: string | undefined;
221
+ }>;
222
+ readonly envelope: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
223
+ title?: string | undefined;
224
+ }>;
225
+ readonly event_calendar_check: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
226
+ title?: string | undefined;
227
+ }>;
228
+ readonly event_calendar_date: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
229
+ title?: string | undefined;
230
+ }>;
231
+ readonly event_calendar_plus: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
232
+ title?: string | undefined;
233
+ }>;
234
+ readonly exchange: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
235
+ title?: string | undefined;
236
+ }>;
237
+ readonly eye: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
238
+ title?: string | undefined;
239
+ }>;
240
+ readonly eye_crossed: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
241
+ title?: string | undefined;
242
+ }>;
243
+ readonly gift: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
244
+ title?: string | undefined;
245
+ }>;
246
+ readonly group: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
247
+ title?: string | undefined;
248
+ }>;
249
+ readonly healthcare: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
250
+ title?: string | undefined;
251
+ }>;
252
+ readonly heart: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
253
+ title?: string | undefined;
254
+ }>;
255
+ readonly house: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
256
+ title?: string | undefined;
257
+ }>;
258
+ readonly image: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
259
+ title?: string | undefined;
260
+ }>;
261
+ readonly info: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
262
+ title?: string | undefined;
263
+ }>;
264
+ readonly invite_neighbour: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
265
+ title?: string | undefined;
266
+ }>;
267
+ readonly key: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
268
+ title?: string | undefined;
269
+ }>;
270
+ readonly kitchen_pot: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
271
+ title?: string | undefined;
272
+ }>;
273
+ readonly list: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
274
+ title?: string | undefined;
275
+ }>;
276
+ readonly log_out: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
277
+ title?: string | undefined;
278
+ }>;
279
+ readonly loudspeaker: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
280
+ title?: string | undefined;
281
+ }>;
282
+ readonly map: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
283
+ title?: string | undefined;
284
+ }>;
285
+ readonly marketplace: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
286
+ title?: string | undefined;
287
+ }>;
288
+ readonly miscellaneous_other: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
289
+ title?: string | undefined;
290
+ }>;
291
+ readonly more_dots: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
292
+ title?: string | undefined;
293
+ }>;
294
+ readonly more_dots_alt: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
295
+ title?: string | undefined;
296
+ }>;
297
+ readonly music: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
298
+ title?: string | undefined;
299
+ }>;
300
+ readonly nebenan_de: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
301
+ title?: string | undefined;
302
+ }>;
303
+ readonly neighbour: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
304
+ title?: string | undefined;
305
+ }>;
306
+ readonly notification_bell: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
307
+ title?: string | undefined;
308
+ }>;
309
+ readonly organisation: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
310
+ title?: string | undefined;
311
+ }>;
312
+ readonly paper_form_empty: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
313
+ title?: string | undefined;
314
+ }>;
315
+ readonly paper_form_filled: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
316
+ title?: string | undefined;
317
+ }>;
318
+ readonly paperclip: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
319
+ title?: string | undefined;
320
+ }>;
321
+ readonly paw: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
322
+ title?: string | undefined;
323
+ }>;
324
+ readonly pencil: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
325
+ title?: string | undefined;
326
+ }>;
327
+ readonly pin: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
328
+ title?: string | undefined;
329
+ }>;
330
+ readonly pins: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
331
+ title?: string | undefined;
332
+ }>;
333
+ readonly plant: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
334
+ title?: string | undefined;
335
+ }>;
336
+ readonly plus: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
337
+ title?: string | undefined;
338
+ }>;
339
+ readonly plus_circle: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
340
+ title?: string | undefined;
341
+ }>;
342
+ readonly post: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
343
+ title?: string | undefined;
344
+ }>;
345
+ readonly privacy_lock: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
346
+ title?: string | undefined;
347
+ }>;
348
+ readonly qr_code: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
349
+ title?: string | undefined;
350
+ }>;
351
+ readonly search: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
352
+ title?: string | undefined;
353
+ }>;
354
+ readonly settings_cog: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
355
+ title?: string | undefined;
356
+ }>;
357
+ readonly shopping_bag: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
358
+ title?: string | undefined;
359
+ }>;
360
+ readonly shopping_cart: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
361
+ title?: string | undefined;
362
+ }>;
363
+ readonly special_place: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
364
+ title?: string | undefined;
365
+ }>;
366
+ readonly suitcase: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
367
+ title?: string | undefined;
368
+ }>;
369
+ readonly supporter: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
370
+ title?: string | undefined;
371
+ }>;
372
+ readonly tennis_ball: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
373
+ title?: string | undefined;
374
+ }>;
375
+ readonly thanks: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
376
+ title?: string | undefined;
377
+ }>;
378
+ readonly trash_can: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
379
+ title?: string | undefined;
380
+ }>;
381
+ readonly truck: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
382
+ title?: string | undefined;
383
+ }>;
384
+ readonly user: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
385
+ title?: string | undefined;
386
+ }>;
387
+ readonly user_profile: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
388
+ title?: string | undefined;
389
+ }>;
390
+ readonly wellness: import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
391
+ title?: string | undefined;
392
+ }>;
393
+ };
394
+ };
395
+ export default iconsMap;
@@ -0,0 +1,3 @@
1
+ import { IconButtonProps } from './IconButton.types';
2
+ declare const IconButton: ({ icon, size, ...baseButtonProps }: IconButtonProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default IconButton;
@@ -1,17 +1,17 @@
1
1
  import { BaseButtonProps } from '../BaseButton/BaseButton';
2
2
  import { Icon24, Icon32 } from '../Icon/Icon.types';
3
-
4
- type BaseIconButtonProps = Omit<BaseButtonProps, 'children' | 'ref' | 'className'> &
5
- ({ ariaLabel: string } | { ariaLabelledBy: string });
6
-
3
+ type BaseIconButtonProps = Omit<BaseButtonProps, 'children' | 'ref' | 'className'> & ({
4
+ ariaLabel: string;
5
+ } | {
6
+ ariaLabelledBy: string;
7
+ });
7
8
  type IconButtonIcon24Props = {
8
- icon: Icon24;
9
- size?: 'small';
9
+ icon: Icon24;
10
+ size?: 'small';
10
11
  } & BaseIconButtonProps;
11
-
12
12
  type IconButtonIcon32Props = {
13
- icon: Icon32;
14
- size: 'medium' | 'large';
13
+ icon: Icon32;
14
+ size: 'medium' | 'large';
15
15
  } & BaseIconButtonProps;
16
-
17
16
  export type IconButtonProps = IconButtonIcon32Props | IconButtonIcon24Props;
17
+ export {};
@@ -0,0 +1,3 @@
1
+ type IconButtonSize = 'large' | 'medium' | 'small';
2
+ export declare const getIconSize: (size: IconButtonSize) => "32" | "24";
3
+ export {};
@@ -0,0 +1,3 @@
1
+ import { ImageProps } from './Image.type';
2
+ declare const Image: ({ alt, className, src }: ImageProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default Image;
@@ -0,0 +1,5 @@
1
+ export interface ImageProps {
2
+ alt: string;
3
+ className?: string;
4
+ src: string;
5
+ }
@@ -0,0 +1,3 @@
1
+ import { LabelPillProps } from './LabelPill.types';
2
+ declare const LabelPill: ({ label, size }: LabelPillProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default LabelPill;
@@ -0,0 +1,4 @@
1
+ export interface LabelPillProps {
2
+ label: string;
3
+ size: 'small' | 'medium';
4
+ }
@@ -0,0 +1,3 @@
1
+ import { LegendProps } from './Legend.types';
2
+ declare const Legend: ({ className, headline, text }: LegendProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default Legend;
@@ -0,0 +1,5 @@
1
+ export type LegendProps = {
2
+ className?: string;
3
+ headline: string;
4
+ text?: string;
5
+ };
@@ -0,0 +1,3 @@
1
+ import { MenuItemProps } from './MenuItem.types';
2
+ declare const MenuItem: ({ isSelected, labelPillText, leftIcon, onClick, rightIcon, text, }: MenuItemProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default MenuItem;
@@ -0,0 +1,9 @@
1
+ import { ReactNode } from 'react';
2
+ export interface MenuItemProps {
3
+ isSelected?: boolean;
4
+ labelPillText: string;
5
+ leftIcon: ReactNode;
6
+ onClick: () => void;
7
+ rightIcon: ReactNode;
8
+ text: string;
9
+ }
@@ -0,0 +1,3 @@
1
+ import { NotificationBubbleProps } from './NotificationBubble.types';
2
+ declare const NotificationBubble: (props: NotificationBubbleProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default NotificationBubble;
@@ -1,6 +1,5 @@
1
1
  import { BadgeOwnProps } from '@mui/base';
2
-
3
2
  export interface NotificationBubbleProps extends BadgeOwnProps {
4
- ariaLabel?: string;
5
- value?: number;
3
+ ariaLabel?: string;
4
+ value?: number;
6
5
  }
@@ -0,0 +1,3 @@
1
+ import { ThumbnailCircularProps, ThumbnailSquareProps } from './Thumbnail.type';
2
+ declare const Thumbnail: ({ alt, isPlaceholder, shape, size, src, }: ThumbnailCircularProps | ThumbnailSquareProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default Thumbnail;
@@ -1,18 +1,15 @@
1
1
  import { ImageProps } from '../Image/Image.type';
2
-
3
2
  interface ThumbnailProps extends ImageProps {
4
- isPlaceholder?: boolean;
3
+ isPlaceholder?: boolean;
5
4
  }
6
-
7
5
  export type TCircularSize = '28' | '32' | '40' | '48' | '56' | '80' | '120' | '280';
8
6
  export type TSquareSize = '24' | '32' | '40' | '48' | '56' | '64' | '80' | '120';
9
-
10
7
  export interface ThumbnailCircularProps extends ThumbnailProps {
11
- shape: 'circular';
12
- size: TCircularSize;
8
+ shape: 'circular';
9
+ size: TCircularSize;
13
10
  }
14
-
15
11
  export interface ThumbnailSquareProps extends ThumbnailProps {
16
- shape: 'square';
17
- size: TSquareSize;
12
+ shape: 'square';
13
+ size: TSquareSize;
18
14
  }
15
+ export {};
@@ -0,0 +1,3 @@
1
+ import { ToggleProps } from './Toggle.types';
2
+ declare const Toggle: (props: ToggleProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default Toggle;
@@ -1,6 +1,5 @@
1
1
  import { UseSwitchParameters } from '@mui/base';
2
-
3
2
  export interface ToggleProps extends UseSwitchParameters {
4
- className?: string;
5
- id?: string;
3
+ className?: string;
4
+ id?: string;
6
5
  }
@@ -0,0 +1,3 @@
1
+ import { ToggleInputProps } from './ToggleInput.types';
2
+ declare const ToggleInput: ({ checked, defaultChecked, disabled, icon, label, onChange, withBorder, }: ToggleInputProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default ToggleInput;
@@ -1,9 +1,7 @@
1
1
  import { UseSwitchParameters } from '@mui/base';
2
-
3
2
  import { Icon32 } from '../Icon/Icon.types';
4
-
5
3
  export interface ToggleInputProps extends UseSwitchParameters {
6
- icon?: Icon32;
7
- label: string;
8
- withBorder?: boolean;
4
+ icon?: Icon32;
5
+ label: string;
6
+ withBorder?: boolean;
9
7
  }
@@ -0,0 +1,3 @@
1
+ import { TypographyProps } from './Typography.types';
2
+ declare function Typography({ as, children, className, type }: TypographyProps): import("react/jsx-runtime").JSX.Element;
3
+ export default Typography;
@@ -0,0 +1,8 @@
1
+ import { JSX } from 'react';
2
+ export type TypographyType = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'h7' | 'h8' | 'body-large' | 'body-regular' | 'body-semibold' | 'body-italic' | 'detail-medium' | 'detail-bold' | 'detail-upper-case';
3
+ export interface TypographyProps {
4
+ as?: Extract<keyof JSX.IntrinsicElements, 'span' | 'p' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'>;
5
+ children: string;
6
+ className?: string;
7
+ type: TypographyType;
8
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {
package/style.css ADDED
@@ -0,0 +1 @@
1
+ ._baseBtn_zswm1_5{min-width:2rem;min-height:2rem;border:none;border-radius:0;cursor:pointer}._baseBtn--active_zswm1_12{background:#b1b1b1}._root_1j4wx_5{display:flex;overflow:hidden;width:100%;flex-direction:column;padding:16px;box-shadow:0 2px 8px #0000001a;color:#201649;background-color:#fff}._root--border-radius_1j4wx_15{border-radius:8px}._root_1e05n_5{padding:8px 0;color:inherit}._root_hi7eb_5{display:flex;align-items:center;padding-bottom:12px;color:inherit;gap:8px}._title_hi7eb_13{flex-grow:1;margin:0}._h1_41s3w_5{margin-bottom:0;font-family:Inter;font-size:32px;font-weight:500;letter-spacing:0;line-height:40px;text-decoration:none;text-indent:0px;text-transform:none}._h2_41s3w_17{margin-bottom:0;font-family:Inter;font-size:24px;font-weight:Semi Bold;letter-spacing:0;line-height:32px;text-decoration:none;text-indent:0px;text-transform:none}._h3_41s3w_29{margin-bottom:0;font-family:Inter;font-size:20px;font-weight:Semi Bold;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._h4_41s3w_41{margin-bottom:0;font-family:Inter;font-size:18px;font-weight:700;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._h5_41s3w_53{margin-bottom:0;font-family:Inter;font-size:16px;font-weight:Semi Bold;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._h6_41s3w_65{margin-bottom:0;font-family:Inter;font-size:14px;font-weight:700;letter-spacing:1;line-height:24px;text-decoration:none;text-indent:0px;text-transform:uppercase}._h7_41s3w_77{margin-bottom:0;font-family:Inter;font-size:12px;font-weight:Extra Bold;letter-spacing:1;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._h8_41s3w_89{margin-bottom:0;font-family:Inter;font-size:10px;font-weight:Extra Bold;letter-spacing:1.5;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._body-large_41s3w_101{margin-bottom:0;font-family:Inter;font-size:16px;font-weight:500;letter-spacing:0;line-height:24px;text-decoration:none;text-indent:0px;text-transform:none}._body-regular_41s3w_113{margin-bottom:0;font-family:Inter;font-size:14px;font-weight:400;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._body-semibold_41s3w_125{margin-bottom:0;font-family:Inter;font-size:14px;font-weight:Semi Bold;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._body-italic_41s3w_137{margin-bottom:0;font-family:Inter;font-size:14px;font-weight:Italic;letter-spacing:0;line-height:20px;text-decoration:none;text-indent:0px;text-transform:none}._detail-medium_41s3w_149{margin-bottom:0;font-family:Inter;font-size:12px;font-weight:500;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}._detail-bold_41s3w_161{margin-bottom:0;font-family:Inter;font-size:12px;font-weight:700;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:none}._detail-upper-case_41s3w_173{margin-bottom:0;font-family:Inter;font-size:10px;font-weight:Extra Bold;letter-spacing:0;line-height:16px;text-decoration:none;text-indent:0px;text-transform:uppercase}._ccBtn_16mkd_5{display:flex;height:40px;align-items:center;align-self:stretch;padding:8px 16px;border-color:transparent;border-radius:12px;background-color:#f4f3f6;color:#201649;cursor:pointer;font-size:14px}._dividerContainer_8gb8e_5{display:flex;align-items:center}._dividerLine_8gb8e_10{height:1px;flex-grow:1;background-color:#d2d0db}._fieldset_npxkg_5{border:none}._iconComponent_1d5h6_5{display:block}._iconComponent_1d5h6_5 path{stroke:currentColor}._iconButton_1i2oc_5{display:flex;align-items:center;justify-content:center;border-radius:50%;background:#cae85d}._iconButton_1i2oc_5:disabled{background:#ffffff}._iconButton_1i2oc_5:hover{background:#b5d622}._iconButton_1i2oc_5:active{background:#cae85d}._iconButton--small_1i2oc_21{width:40px;height:40px}._iconButton--medium_1i2oc_25{width:48px;height:48px}._iconButton--large_1i2oc_29{width:56px;height:56px}._labelPill_9l179_5{display:inline-flex;align-items:center;justify-content:center;border-radius:16px;background:#01819C}._labelPill_9l179_5 span{color:#fff;line-height:16px;text-align:center}._labelPill--small_9l179_17{height:20px;padding:0 8px}._labelPill--small_9l179_17 span{font-size:10px;font-weight:800;text-transform:uppercase}._labelPill--medium_9l179_26{padding:4px 8px}._labelPill--medium_9l179_26 span{font-size:12px;font-weight:700}._legend_1vmcd_5{display:flex;flex-direction:column;padding-bottom:12px;gap:8px}._legend_1vmcd_5 ._text_1vmcd_11{color:#635c80}._menuItem_agrmt_5{display:flex;width:280px;flex-shrink:0;align-items:center;padding:0 8px;background-color:#fff;color:#201649;gap:8px;text-decoration:none}._menuItem_agrmt_5 ._highlightFrame_agrmt_16{display:flex;flex:1;align-items:center;padding:8px;border-radius:8px;gap:8px}._menuItem_agrmt_5 ._rightIcon_agrmt_24{display:inherit;margin-left:auto}._menuItem_agrmt_5 ._rightIcon_agrmt_24 svg path{stroke:#635c80!important}._menuItem--selected_agrmt_31 ._highlightFrame_agrmt_16{background-color:#f2fbc4}._menuItem--selected_agrmt_31 ._highlightFrame_agrmt_16 svg path{stroke:#738c00}._menuItem--selected_agrmt_31:hover{color:#738c00}._menuItem_agrmt_5:not(._menuItem--selected_agrmt_31):active{background-color:#f4f3f6}._menuItem_agrmt_5:not(._menuItem--selected_agrmt_31):hover{color:#635c80}._menuItem_agrmt_5:not(._menuItem--selected_agrmt_31):hover svg path{stroke:#635c80}._menuItem_agrmt_5:not(._menuItem--selected_agrmt_31):hover ._highlightFrame_agrmt_16{background-color:#f4f3f6}._bubbleContent_11xi8_5{position:relative;display:inline-block}._bubble_11xi8_5{position:absolute;z-index:auto;top:6px;right:6px;display:flex;width:20px;height:20px;align-items:center;justify-content:center;border-radius:50%;background-color:#ff9de2;color:#201649;font-size:12px;font-weight:700;text-align:center;transform:translate(50%,-50%);transform-origin:100% 0;white-space:nowrap}._bubble--empty_11xi8_30{width:12px;height:12px}._root_gikho_12{position:relative;overflow:hidden;border:solid 1px #d2d0db;background-color:#d2d0db}._root--24_gikho_18{width:24px;height:24px}._root--28_gikho_22{width:28px;height:28px}._root--32_gikho_26{width:32px;height:32px}._root--40_gikho_30{width:40px;height:40px}._root--48_gikho_34{width:48px;height:48px}._root--56_gikho_38{width:56px;height:56px}._root--64_gikho_42{width:64px;height:64px}._root--80_gikho_46{width:80px;height:80px}._root--120_gikho_50{width:120px;height:120px}._root--280_gikho_54{width:280px;height:280px}._root--square_gikho_58._root--24_gikho_18,._root--square_gikho_58._root--32_gikho_26{border-radius:4px}._root--square_gikho_58._root--40_gikho_30,._root--square_gikho_58._root--48_gikho_34{border-radius:8px}._root--square_gikho_58._root--56_gikho_38,._root--square_gikho_58._root--64_gikho_42{border-radius:12px}._root--square_gikho_58._root--80_gikho_46,._root--square_gikho_58._root--120_gikho_50{border-radius:16px}._root--circular_gikho_70{border-radius:50%}._root--isPlaceholder_gikho_73:before{position:absolute;z-index:1;width:100%;height:100%;background-color:#d2d0db;content:"";opacity:.4}._root_gikho_12 img{width:100%;height:100%;object-fit:cover}._switch_12zil_5{position:relative;display:inline-block;width:48px;height:28px}._switch_12zil_5 input{position:absolute;z-index:2;width:48px;height:28px;cursor:pointer;opacity:0}._switch_12zil_5 ._slider_12zil_19{z-index:1;display:block;width:100%;height:100%;border-radius:34px;background-color:#e9e8ed;box-shadow:0 1px 3px #0003 inset;cursor:pointer;transition:.4s}._switch_12zil_5 ._slider_12zil_19:before{position:absolute;right:3px;bottom:2px;width:24px;height:24px;border-radius:50%;background-color:#fff;box-shadow:0 0 2px #0003;content:"";transform:translate(-18px);transition:.4s}._switch_12zil_5 ._slider_12zil_19._focusVisible_12zil_43{box-shadow:0 0 0 3px #cae85d}._switch_12zil_5 input:checked+._slider_12zil_19{background-color:#b5d622}._switch_12zil_5 input:checked+._slider_12zil_19:before{transform:translate(0)}._toggleInput_7jw98_5{display:flex;align-items:center;padding:8px 16px;background-color:#fff;gap:12px;color:#635c80;cursor:pointer;width:100%}._toggleInput_7jw98_5 svg{flex-shrink:0}._toggleInput_7jw98_5 ._textLabel_7jw98_18{flex-grow:1}._toggleInput_7jw98_5 ._switch_7jw98_21{flex-shrink:0}._toggleInput--checked_7jw98_24{color:#201649}._toggleInput--withBorder_7jw98_27{padding:12px 16px;border-radius:16px;box-shadow:inset 0 0 0 1px #d2d0db}
package/.babelrc DELETED
@@ -1,12 +0,0 @@
1
- {
2
- "presets": [
3
- [
4
- "@nx/react/babel",
5
- {
6
- "runtime": "automatic",
7
- "useBuiltIns": "usage"
8
- }
9
- ]
10
- ],
11
- "plugins": []
12
- }